.tl_hotspot_map,
.tl_hotspot_map .et_pb_module_inner {
	overflow: visible !important;
}

.tl-hotspot-map__stage {
	position: relative;
	width: 100%;
	line-height: 0;
	overflow: visible;
}

.tl-hotspot-map__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.tl-hotspot-map__empty {
	display: grid;
	min-height: 280px;
	place-items: center;
	padding: 32px;
	border: 2px dashed rgba(0, 0, 0, 0.25);
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.035);
	color: #333;
	font-size: 16px;
	line-height: 1.45;
	text-align: center;
}

.tl_hotspot_item {
	display: contents !important;
}

.tl-hotspot-item__position {
	--tlhm-x: 50%;
	--tlhm-y: 50%;
	--tlhm-marker-color: #111111;
	--tlhm-marker-pulse-color: var(--tlhm-marker-color);
	--tlhm-marker-icon-color: #ffffff;
	--tlhm-marker-border-color: #ffffff;
	--tlhm-marker-size-desktop: 34px;
	--tlhm-marker-size-tablet: var(--tlhm-marker-size-desktop);
	--tlhm-marker-size-phone: var(--tlhm-marker-size-tablet);
	--tlhm-marker-size: var(--tlhm-marker-size-desktop);
	--tlhm-marker-radius: calc(var(--tlhm-marker-size) / 2);
	--tlhm-tooltip-bg: #111111;
	--tlhm-tooltip-shift-x: 0px;
	--tlhm-tooltip-arrow-x: 50%;
	position: absolute;
	z-index: 20;
	left: var(--tlhm-x);
	top: var(--tlhm-y);
	width: 0;
	height: 0;
	line-height: normal;
	transform: translate(-50%, -50%);
}

.tl-hotspot-item__button {
	position: absolute;
	left: 0;
	top: 0;
	display: inline-grid;
	width: var(--tlhm-marker-size);
	height: var(--tlhm-marker-size);
	place-items: center;
	padding: 0;
	border: 3px solid var(--tlhm-marker-border-color);
	border-radius: 50%;
	background: var(--tlhm-marker-color);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
	color: var(--tlhm-marker-icon-color);
	font: inherit;
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
	appearance: none;
	-webkit-appearance: none;
}


.tl-hotspot-item__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	line-height: 1;
	pointer-events: none;
}

.tl-hotspot-item__icon {
	display: inline-block;
	color: inherit;
	font-size: clamp(12px, calc(var(--tlhm-marker-size) - 17px), 48px);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}

.tl-hotspot-item__icon--divi {
	font-family: ETmodules, sans-serif !important;
}

.tl-hotspot-item__icon--fa,
.tl-hotspot-item__icon.et-pb-fa-icon {
	font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", FontAwesome, sans-serif !important;
}

.tl-hotspot-item__icon--fallback {
	font-family: Arial, sans-serif;
	font-size: clamp(14px, calc(var(--tlhm-marker-size) - 12px), 56px);
	font-weight: 700;
}

.tl-hotspot-item__button::after {
	position: absolute;
	inset: -8px;
	content: "";
	border: 2px solid var(--tlhm-marker-pulse-color);
	border-radius: 50%;
	opacity: .28;
	animation: tlhm-pulse 2s ease-out infinite;
}

.tl-hotspot-item__button:hover,
.tl-hotspot-item__button:focus-visible,
.tl-hotspot-item__position.is-open .tl-hotspot-item__button {
	background: var(--tlhm-marker-color);
	box-shadow: 0 6px 20px rgba(0, 0, 0, .36);
	transform: translate(-50%, -50%) scale(1.08);
}

.tl-hotspot-item__button:focus-visible {
	outline: 3px solid rgba(255, 255, 255, .92);
	outline-offset: 3px;
}

.tl-hotspot-item__tooltip {
	position: absolute;
	z-index: 30;
	left: 0;
	bottom: calc(var(--tlhm-marker-radius) + 7px);
	width: min(230px, calc(100vw - 32px));
	padding: 8px;
	border-radius: 10px;
	background: var(--tlhm-tooltip-bg);
	box-shadow: 0 12px 35px rgba(0, 0, 0, .32);
	color: #fff;
	opacity: 0;
	pointer-events: none;
	transform: translate(calc(-50% + var(--tlhm-tooltip-shift-x)), 10px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
	visibility: hidden;
}

.tl-hotspot-item__tooltip::after {
	position: absolute;
	left: var(--tlhm-tooltip-arrow-x);
	bottom: -7px;
	width: 14px;
	height: 14px;
	content: "";
	background: var(--tlhm-tooltip-bg);
	transform: translateX(-50%) rotate(45deg);
}

.tl-hotspot-item__position:hover .tl-hotspot-item__tooltip,
.tl-hotspot-item__position:focus-within .tl-hotspot-item__tooltip,
.tl-hotspot-item__position.is-open .tl-hotspot-item__tooltip {
	opacity: 1;
	pointer-events: auto;
	transform: translate(calc(-50% + var(--tlhm-tooltip-shift-x)), 0);
	visibility: visible;
}

.tl-hotspot-item__position:hover,
.tl-hotspot-item__position:focus-within,
.tl-hotspot-item__position.is-open {
	z-index: 1000;
}

.tl-hotspot-item__position.is-tooltip-below .tl-hotspot-item__tooltip {
	top: calc(var(--tlhm-marker-radius) + 7px);
	bottom: auto;
	transform: translate(calc(-50% + var(--tlhm-tooltip-shift-x)), -10px);
}

.tl-hotspot-item__position.is-tooltip-below:hover .tl-hotspot-item__tooltip,
.tl-hotspot-item__position.is-tooltip-below:focus-within .tl-hotspot-item__tooltip,
.tl-hotspot-item__position.is-tooltip-below.is-open .tl-hotspot-item__tooltip {
	transform: translate(calc(-50% + var(--tlhm-tooltip-shift-x)), 0);
}

.tl-hotspot-item__position.is-tooltip-below .tl-hotspot-item__tooltip::after {
	top: -7px;
	bottom: auto;
}

.tl-hotspot-item__image {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 7px;
	object-fit: cover;
}

.tl-hotspot-item__title {
	position: relative;
	z-index: 1;
	padding: 10px 8px 7px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}

@keyframes tlhm-pulse {
	0% {
		opacity: .38;
		transform: scale(.7);
	}
	75%,
	100% {
		opacity: 0;
		transform: scale(1.55);
	}
}


@media (max-width: 980px) {
	.tl-hotspot-item__position {
		--tlhm-marker-size: var(--tlhm-marker-size-tablet);
	}
}

@media (max-width: 767px) {
	.tl-hotspot-item__position {
		--tlhm-marker-size: var(--tlhm-marker-size-phone);
	}
}

@media (prefers-reduced-motion: reduce) {
	.tl-hotspot-item__button::after {
		animation: none;
	}

	.tl-hotspot-item__button,
	.tl-hotspot-item__tooltip {
		transition: none;
	}
}

