/* Animation */
@-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;
  }
}

.responsive-hotspot-wrap{position: relative;}

/* Hotspot */

.hotspotImg {
  background-size: cover;
  background-position: center center;
  position: relative;
}



.hotspotImg .hot-spot {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 5px;
  left: 5px;
  text-align: center;
  background-color: rgb(0, 172, 172,0.6);
  color: #00ACAC;
  border-radius: 100%;
  cursor: pointer;
  transition: all .3s ease;
}

.hotspotImg .hot-spot .circle {
  display: block;
  position: absolute;
  top: 50%;
  left: 49.5%;
  width: 2em;
  height: 2em;
  margin: -1em auto auto -1em;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  border-radius: 50%;
  border: 1px solid #00ACAC;
  opacity: 0;
  -webkit-animation: pulsate 3s ease-out infinite;
  animation: pulsate 3s ease-out infinite;
}

.hotspotImg .hot-spot .tooltip {
  background-color: #fff;
  border:1px solid #00ACAC;
  color: #00ACAC;
  display: none;
  opacity: 1.0;
  right: 50px;
  padding: 0px 5px;
  position: absolute;
  text-align: left;
  top: 0px;
  z-index: 999;
  min-width: 80px;
  border-radius: 7px;
  white-space: nowrap;
}


.hotspotImg .hot-spot .tooltip::after {
  content:'';
  width: 0; 
  height: 0; 
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent; 
  border-left:10px solid #00ACAC;
  position: absolute;right:-10px;top:8px; 
}

.hotspotImg .hot-spot .tooltip .img-row {
  padding: 10px;
  text-align: center;
}

.text-row h4 {
  font: normal normal bold 15px/22px Jost;
  Color: #1D3056;
  display: block;padding: 8px;
}


@media(max-width:768px){
  .hotspotImg .hot-spot{width: 20px!important;height: 20px!important;}
  .hotspotImg .hot-spot .tooltip{left:0px;right: 0px;margin:auto;top:40px;width: 90px;text-align: center;white-space: inherit;}
  .text-row h4{font: normal normal bold 8px/14px Jost;}
  .hotspotImg .hot-spot .tooltip::after{border-right: 10px solid transparent;border-bottom: 10px solid #00ACAC;border-left: 10px solid transparent;top: -20px;
  left:0px;right:0px;margin:auto}
}