/* 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: 12px;
  height: 12px;
  top: 5px;
  left: 5px;
  text-align: center;
  background-color: rgba(221, 219, 105, 0.8);
  border: 1px solid #FFF;
  border-radius: 100%;
  transition: transform .3s ease;
}

#hotspotImg .hot-spot .circle {
	display: block;
	position: absolute;
	top: 47%;
	left: 47%;
	width: 2em;
	height: 2em;
	margin: -1em auto auto -1em;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	border-radius: 50%;
	background: #dbdbad;
	opacity: 0;
	-webkit-animation: pulsate 3.5s ease-out infinite;
	animation: pulsate 3.5s ease-out infinite;
}


#hotspotImg .hot-spot:nth-child(2) .circle { animation-delay: 2s; }
#hotspotImg .hot-spot:nth-child(3) .circle { animation-delay: 3.5s; }
#hotspotImg .hot-spot:nth-child(4) .circle { animation-delay: 5.2s; }
#hotspotImg .hot-spot:nth-child(5) .circle { animation-delay: 6.4s; }
#hotspotImg .hot-spot:nth-child(6) .circle { animation-delay: 8s; }
#hotspotImg .hot-spot:nth-child(7) .circle { animation-delay: 9.2s; }
#hotspotImg .hot-spot:nth-child(8) .circle { animation-delay: 11s; }
#hotspotImg .hot-spot:nth-child(9) .circle { animation-delay: 13s; }
#hotspotImg .hot-spot:nth-child(10) .circle { animation-delay: 15s; }

#hotspotImg .hot-spot .tooltip {
	background-color: rgba(58, 95, 150, 0.7);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #fff;
	display: none;
	font-size: 14px;
	opacity: 1.0;
	left: 0px;
	padding: 10px;
	position: absolute;
	text-align: left;
	top: 15px;
	width: 280px;
	z-index: 999;
}

#hotspotImg .hot-spot .tooltip .img-row {
	text-align: center;
}

#hotspotImg .hot-spot .tooltip .img-row img {max-width:100%;}

#hotspotImg .hot-spot .tooltip .text-row { padding-top: 10px; text-align:center;}

#hotspotImg .hot-spot .tooltip h4 {
	margin-bottom: 10px;
	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; }


@-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;
	}
}
