.lg-image {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: scale-down;
}

.lg-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
  cursor: pointer;
}
.lg-hotspot:hover .lg-hotspot__button, .lg-hotspot:active .lg-hotspot__button {
  border-color: #ff774c;
}
.lg-hotspot:hover .lg-hotspot__button:after, .lg-hotspot:active .lg-hotspot__button:after {
  background-color: #ff774c;
}
.lg-hotspot--selected {
  z-index: 999;
}
.lg-hotspot--selected .lg-hotspot__label {
  opacity: 1;
}
.lg-hotspot__button {
  height: 10px;
  width: 10px;
  padding: 0px;
  border-radius: 100%;
  border: 1px solid #e35205;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  -webkit-animation: button-pulse 1000ms ease-out infinite;
          animation: button-pulse 1000ms ease-out infinite;
}
.lg-hotspot__button:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  content: "";
  display: block;
  height: 9px;
  width: 9px;
  border-radius: 100%;
  /*border: 3px solid white;*/
  background-color: #e35205;
  transition: border-color 1s linear;
}

.lg-hotspot__label {
  position: absolute;
  padding: 0 0 1.1em 0;
  width: 16em;
  max-width: 50vw;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: -1;
  pointer-events: none;
  border-radius: 2px;
  user-select: none;
  opacity: 0;
  transition: all 0.1s linear;
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .lg-hotspot__label {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(5px);
    background-color: rgb(22 22 22 / 16%); 
  }
}

.lg-hotspot__label h4 {
  margin: 0;
  padding: 3px 10px;
  background-color: #22326e;
  font-size: 1.1em;
  font-weight: normal;
  letter-spacing: 0.02em;
  color: white;
  border-radius: 2px 2px 0 0;
}
.lg-hotspot__label ul {
  margin: 0;
  font-size:12px;
  padding: 10px 10px;
  color: #221515;
}

.lg-hotspot--top-left .lg-hotspot__label {
  top: 17px;
  left: 13px;
}

.lg-hotspot--top-right .lg-hotspot__label {
  top: 17px;
  right: 13px;
}

.lg-hotspot--bottom-right .lg-hotspot__label {
  right: 17px;
  bottom: 13px;
}

.lg-hotspot--bottom-left .lg-hotspot__label {
  bottom: 17px;
  left: 13px;
}


@-webkit-keyframes button-pulse {
  from {
    box-shadow: 0 0 0 0 #e35205, 0 0 4px 2px rgba(0, 0, 0, 0.4);
  }
  to {
    box-shadow: 0 0 0 8px rgba(255, 147, 223, 0), 0 0 4px 2px rgba(0, 0, 0, 0.4);
  }
}
@keyframes button-pulse {
  from {
    box-shadow: 0 0 0 0 #e35205, 0 0 4px 2px rgba(0, 0, 0, 0.4);
  }
  to {
    box-shadow: 0 0 0 8px rgba(255, 147, 223, 0), 0 0 4px 2px rgba(0, 0, 0, 0.4);
  }
}

@media screen and (max-width: 991px){
	.lg-hotspot__button {
		  height: 3px;
		  width: 3px;
	}
	.lg-hotspot__button:after {
		  height: 3px;
		  width: 3px;
	}	
	@-webkit-keyframes button-pulse {
  from {
		box-shadow: 0 0 0 0 #e35205, 0 0 4px 2px rgba(0, 0, 0, 0.4);
		}
  to {
		box-shadow: 0 0 0 4px rgba(255, 147, 223, 0), 0 0 4px 2px rgba(0, 0, 0, 0.4);
	  }
	}
	@keyframes button-pulse {
  from {
		box-shadow: 0 0 0 0 #e35205, 0 0 4px 2px rgba(0, 0, 0, 0.4);
	  }
  to {
		box-shadow: 0 0 0 4px rgba(255, 147, 223, 0), 0 0 4px 2px rgba(0, 0, 0, 0.4);
	  }
	}
}
/*Hotspot styles END*/