/* 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;
}
}

body { margin: 0; }

/* Hotspot */

#hotspotImg {
  /*background-color: #ededed;*/
  background-size: cover;
  background-position: center center;
  position: relative;
}

#hotspotImg .img-responsive { max-width: 100%; }

#hotspotImg .hot-spot {
  position: absolute;
  width: 25px;
  height: 25px;
  text-align: center;
  background-color: var(--iq-light-primary);
  color: #fff;
  border-radius: 100%;
  cursor: pointer;
  transition: all .3s ease;
  z-index:9
}
#hotspotImg .point1 {
top: 20%;
  left: 40%;
  background-color:var(--iq-light-primary);
}

#hotspotImg .point2 {
bottom: 36%;
left: 30%;
background-color:var(--iq-warning);
}

#hotspotImg .point3 {
top: 10%;
right: 20%;
background-color:var(--iq-warning);
}
#hotspotImg .point4 {
bottom: 10%;
right: 30%;background-color:var(--iq-warning);
}
#hotspotImg .point5 {
top: 50%;
right: 10%;
}  
#hotspotImg .point1 .circle,#hotspotImg .point2 .circle,#hotspotImg .point3 .circle{
      border: 1px solid #ed8a53 !important;
}
#hotspotImg .point1 .tooltip,#hotspotImg .point2 .tooltip,#hotspotImg .point3 .tooltip{
      background-color: #ed8a53 !important;
}

#hotspotImg .point1 .tooltip p,#hotspotImg .point2 .tooltip p,#hotspotImg .point3 .tooltip p{
  color: #fff !important;
}


#hotspotImg .hot-spot .circle {
  display: block;
  position: absolute;
  top: 46%;
  left: 46%;
  width: 2em;
  height: 2em;
  margin: -1em auto auto -1em;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  border-radius: 50%;
  border: 1px solid #d2fdbb;
  opacity: 0;
  -webkit-animation: pulsate 3s ease-out infinite;
  animation: pulsate 3s ease-out infinite;
}

#hotspotImg .hot-spot .tooltip {
  background-color: #d2fdbb;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  display: none;
  font-size: 14px;
  opacity: 1.0;
  right: 0px;
  /*padding: 15px 5px;*/
  position: absolute;
  text-align: left;
  top: 30px;
  width: auto;
  z-index: 999;
}

#hotspotImg .hot-spot .tooltip .img-row {
  padding: 10px;
  text-align: center;
}

#hotspotImg .hot-spot .tooltip .text-row { padding: 15px; }

#hotspotImg .hot-spot .tooltip h4 {
  padding-bottom: 5px;
  border-bottom: 1px solid #ffffff;
}

#hotspotImg .hot-spot .tooltip p {
  font-size: 14px;
  line-height: 1.4em;
  margin-bottom: 10px;
}

#hotspotImg .hot-spot .tooltip p:last-child { margin-bottom: 0; }
