/* 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;
  top: 5px;
  left: 5px;
  text-align: center;
  /* background-color: rgba(229, 0, 137, 0.6); */
  background-color: #c3a323;
  color: #000;
  border-radius: 100%;
  cursor: pointer;
  transition: all .3s ease;
}

#hotspotImg .hot-spot .circle {
  display: block;
  position: absolute;
  top: 45%;
  left: 45%;
  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; */
  border: 2px solid #c3a323;
  opacity: 0;
  -webkit-animation: pulsate 3s ease-out infinite;
  animation: pulsate 3s ease-out infinite;
}

#hotspotImg .hot-spot .tooltip {
  /* background-color: rgba(58, 95, 150, 0.7); */
  background-color: rgb(255 255 255 / 100%);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #000;
  display: none;
  font-size: 14px;
  opacity: 1.0;
  left: 0px;
  padding: 7px 7px;
  position: absolute;
  text-align: left;
  top: 30px;
  width: 450px;
  z-index: 999;
}

#hotspotImg .hot-spot .tooltip .img-row {
  padding: 10px;
  text-align: center;
}

#hotspotImg .hot-spot .tooltip .text-row { 
    padding: 0px 15px; 
    }

#hotspotImg .hot-spot .tooltip h4 {
  margin-bottom: 10px;
  border-bottom: 1px solid #ffffff;
  font-size: 22px;
  color: #000;
  font-weight: 700;
  padding-left: 5px;
  margin-top: 0px;
  font-family: "Nunito Sans", sans-serif;
}

#hotspotImg .hot-spot .tooltip p {
  font-size: 15px;
  line-height: 1em;
  margin-bottom: 10px;
}

#hotspotImg .hot-spot .tooltip p:last-child { margin-bottom: 0; }

.rowContent {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px dashed #d6d6d6;
    background: #f5f6f7;
    margin: 5px;
}
.lastText {
   margin-bottom: 10px!important;
}

.tooltip {
   box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.closeBtn {
    float: right;
    margin-right: 5px;
    font-size: 18px;
    color: #787575;
}

 /* icons */
.imgSpot { 
  width: 90px;
  height: 90px;
}

@media all and (max-width: 600px) {
	.tooltip {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 380px!important;
        margin: auto!important;
	}
    .hot-spot {
        width: 16px!important;
        height: 16px!important;
    }
}