/* 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: 300%;
}


#hotspotImg .hot-spot {
	position: absolute;
	width: 22px;
	height: 22px;
	top: 5px;
	left: 5px;
	text-align: center;
	background-color: rgba(0, 115, 229, 0.);
	color: #ffbf00;
	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: 1.5px solid rgba(0, 115, 229, 1);
	opacity: 0;
	-webkit-animation: pulsate 2s ease-out infinite;
	animation: pulsate 2s ease-out infinite;
}

#hotspotImg .hot-spot .square {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border-color: rgba(0, 108, 26, 0.5);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
}
    
#hotspotImg .hot-spot .tooltip {
	background-color: rgba(0, 115, 229, 0.85);

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #ffffff;
	display: none;
	font-size: 15px;
	opacity: 1.0;
	left: 100px;
	padding: 15px 5px;
	position: absolute;
	text-align: left;
	top: -180px;
	width: 300px;
	z-index: 999;
}

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

#hotspotImg .hot-spot .tooltip .text-row {
    padding: 15px;
    	margin-top: -30px;

}

#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;
}

