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


/* Hotspot */
#hotspotImg {
	background-size: cover;
	background-position: center center;
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 100%;
}
#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(0, 57, 113, 0.8);
	color: #fff;
	border-radius: 100%;
	cursor: pointer;
	transition: all .3s ease;
}

#hotspotImg .arrow-up {
    position: absolute;
    top: -7px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid white;
}


#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 rgb(0, 57, 113);
	opacity: 0;
	-webkit-animation: pulsate 1s ease-out infinite;
	animation: pulsate 1s ease-out infinite;
}

#hotspotImg .hot-spot .aas-tooltip {
	position: absolute;
    display: none;
    top: 30px;
    width: 280px;
    z-index: 999;
}

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

#hotspotImg .hot-spot .aas-tooltip .img-row img{
	width: 100%;
	height:auto;
	max-width: 500px;
    max-height: 200px;
}

#hotspotImg .caption {
    background-color: rgba(0,0,0,0.8);
    position: absolute;
    color: #fff;
    z-index: 100;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    left: 0;
}

#hotspotImg .simple-caption {
    height: 30px;
    width: 100%;
    display: block;
    bottom: 10px;
    padding-bottom: 10px;
    text-align: center;
}

#hotspotImg .hot-spot .aas-tooltip p {
	font-size: 14px;
	line-height: 1.4em;
	margin-bottom: 10px;
}
#hotspotImg .hot-spot .aas-tooltip p:last-child {
	margin-bottom: 0;
}
