/* Animation */
@-webkit-keyframes pulsate {
	0% {
		-webkit-transform: scale(1.75);
		transform: scale(1.75);
		opacity: 0.8;
	}

	45% {
		-webkit-transform: scale(1);
		transform: scale(1);
		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;
}

#hotspotImg .img-responsive {
	max-width: 100%;
	padding: 0;
}

#hotspotImg .hot-spot {
	position: absolute;
	width: 18px;
	height: 18px;
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
	top: 5px;
	left: 5px;
	text-align: center;
	background-color: var(--bs-blue);
	color: #fff;
	box-shadow: 0 0 10px rgb(0 0 0 / 50%);
	border-radius: 100%;
	cursor: pointer;
	transition: all .3s ease;
	display: none;
}


#hotspotImg .hot-spot .circle {

	position: absolute;
	top: 50%;
	left: 50%;
	width: 2em;
	height: 2em;
	margin: -1em auto auto -1em;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	border-radius: 50%;
	border: 2px solid var(--bs-blue);
	filter: brightness(1.5);
	opacity: 0;
	-webkit-animation: pulsate 3s ease-out infinite;
	animation: pulsate 3s ease-out infinite;
}

#hotspotImg .hot-spot .tooltip {
	background-color: var(--bs-blue);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: var(--bs-menu-color);
	display: none;
	font-size: 14px;
	opacity: 1.0;
	left: 0px;
	position: absolute;
	text-align: left;
	top: 30px;
	width: 200px;
	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 {
	margin-bottom: 10px;
	border-bottom: 1px solid var(--bs-menu-color);
	font-size: 18px;
}

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

#hotspotImg .circle:hover .tooltip {
	background: #000;
	display: block;
	animation: fade_in_show 0.5s;
}

@keyframes fade_in_show {
	0% {
		opacity: 0.1;
		transform: scale(.5)
	}

	100% {
		opacity: 1;
		transform: scale(1)
	}
}