/**
 * All of the CSS for your public-facing functionality should be included in this file.
 *
 * The file is enqueued from inc/frontend/class-frontend.php.
 */

.dot-banner {
	display: block;
	position: relative;
}
.dot-banner-image {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
}
.dot-banner-pin {
	display: block;
	position: absolute;
	z-index: 2;
	background: var(--accent);
	width: 23px;
	height: 23px;
	border-radius: 50%;
	border: 2px solid white;
	padding: 0;
	margin: 0;
	transform: translate(-50%, -50%);
	outline: 0 solid rgba(255, 255, 255, .35);
	transition: all .5s;
	animation: 1s infinite alternate pulsing;
}
.dot-banner-pin:hover {
	outline: 10px solid rgba(255, 255, 255, .35);
	animation: none;
}

@keyframes pulsing {
	0% {
		opacity: .35;
		width: 23px;
		height: 23px;
	}
	100% {
		opacity: 1;
		width: 23px;
		height: 23px;
	}
}

.dot-banner-tooltip {
	display: none;
	position: absolute;
	z-index: 3;
	gap: 1px;
	width: fit-content;
	font-size: 18px;
	align-items: stretch;
	transform: translate(-50%, 20px);
}
.dot-banner-text {
	display: flex;
	flex-direction: column;
	padding: 10px;
	background: white;
}
.dot-banner-price {
	font-weight: bold;
}
.dot-banner-link {
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	color: #4C4C4C;
	background: white;
}
.dot-banner-link:hover {
	color: var(--accent);
}