.lg-container {
  width: 100%;
  position: relative;
  padding: 0;
  z-index: 2;
}

.lg-image {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: scale-down;
  height: 600px;
  background-size: cover!important;
  background-position: center center!important;
}

.lg-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.lg-hotspot:hover .lg-hotspot-button, .lg-hotspot:active .lg-hotspot-button {
  border-color: #ffad00;
}
.lg-hotspot:hover .lg-hotspot-button:after, .lg-hotspot:active .lg-hotspot-button:after {
  background-color: #ffad00;
}
.lg-hotspot-button {
 	display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2em;
    height: 2em;
    margin: -1em auto auto -1em;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    border-radius: 50%;
    border: 1px solid #E5008A;
    opacity: 0;
    -webkit-animation: pulsate 3s ease-out infinite;
    animation: pulsate 3s ease-out infinite;
    display: block;
    position: absolute;    
    margin-top: -7px;
    margin-left: -7px;
} 
.hotpot-warp{
	position: absolute;
    width: 20px;
    height: 20px;
    top: 5px;
    left: 5px;
    text-align: center;
    background-color: rgba(229, 0, 137, 0.6);
    color: #fff;
    border-radius: 100%;
    cursor: pointer;
    transition: all .3s ease;
}
.lg-hotspot-label {
  	position: absolute;
    padding: 0 0 1.1em 0;
    width: 16em;
    background-color: #fff;
    box-shadow: 0 8px 24px rgb(0 0 0 / 20%);
    z-index: 99999;
    pointer-events: none;
    /* border-radius: 2px; */
    /* user-select: none; */
    display: none;
    transition: all 0.1s linear;
}
.lg-hotspot-label h4 {
    margin: 0;
    padding: 25px 24px 0;
    /* background-color: #555; */
    font-size: 15px;
    text-transform: uppercase;
}
.lg-hotspot-label p {
  margin: 0;
  padding: 10px 24px 24px 24px;
}

.top-left .lg-hotspot-label {
  top: 24px;
  right: auto;
  bottom: auto;
  left: 24px;
}

.top-right .lg-hotspot-label {
  top: 24px;
  right: 24px;
  bottom: auto;
  left: auto;
}

.bottom-right .lg-hotspot-label {
  top: auto;
  right: 24px;
  bottom: 24px;
  left: auto;
}

.bottom-left .lg-hotspot-label {
  top: auto;
  right: auto;
  bottom: 24px;
  left: 24px;
}

@keyframes button-pulse {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  30% {
    transform: scale(1.1, 1.1);
    opacity: 1;
  }
  60% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}

@-webkit-keyframes 
pulsate {  0% {
 -webkit-transform: scale(1);
 transform: scale(1);
 opacity: 0.8;
}
 45% {
 -webkit-transform: scale(1.75);
 transform: scale(1.75);
 opacity: 0;
}
}
@keyframes 
pulsate {  0% {
 -webkit-transform: scale(1);
 transform: scale(1);
 opacity: 0.8;
}
 45% {
 -webkit-transform: scale(1.75);
 transform: scale(1.75);
 opacity: 0;
}
}