.ihm-map {
	max-width: 100%;
	overflow: auto;
}

.ihm-map-image-wrap {
	position: relative;
	display: inline-block;
	max-width: 100%;
	min-width: 1024px;
}

.ihm-map-image {
	display: block;
	max-width: 100%;
	height: auto;
}

.ihm-hotspot-area {
	position: absolute;
	border: 2px solid #0d6efd;
	background: rgba(13, 110, 253, 0.18);
	cursor: pointer;
	z-index: 3;
	padding: 0;
	transition: background 0.15s ease, box-shadow 0.15s ease;
}

.ihm-hotspot-area:hover,
.ihm-hotspot-area:focus {
	background: rgba(13, 110, 253, 0.28);
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.18);
}

.ihm-hotspot-area-label {
	position: absolute;
	top: 6px;
	left: 6px;
	/* min-width: 24px; */
	height: 24px;
	border-radius: 999px;
	background: #0d6efd;
	color: #fff;
	font-size: 1px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* padding: 0 6px; */
	line-height: 1;
}

.ihm-offcanvas .offcanvas-body {
	padding-top: 0;
}

.ihm-featured-image,
.ihm-gallery-image {
	display: block;
	width: 100%;
	height: auto;
}

.ihm-hotspot-text p:last-child {
	margin-bottom: 0;
}


/** Customize front end appearance **/
.ihm-hotspot-area,
.ihm-hotspot-area:hover,
.ihm-hotspot-area:focus {
	background: rgba(0,0,0,0);
	border-width: 0;
	box-shadow: none;
}
.ihm-hotspot-area-label {
	--hotspot-size: 10px;
	top: calc(50% - (var(--hotspot-size) / 2));
	left: calc(50% - (var(--hotspot-size) / 2));
	width: var(--hotspot-size);
	height: var(--hotspot-size);
	background-color: rgba(255, 51, 0, 0);
	color: rgba(255, 51, 0, 0);
}
.ihm-hotspot-area:hover .ihm-hotspot-area-label {
	background-color: rgba(255, 51, 0, 1);
	color: rgba(255, 51, 0, 1);
	animation: pulse-red 1.1s infinite;
}

.ihm-offcanvas {
	--bs-offcanvas-padding-x: 2rem;
	font-family: "Helvetica Neue","Helvetica",Arial,sans-serif;
}
.ihm-offcanvas .offcanvas-header {
	flex-direction: column-reverse;
	align-items: flex-start;
	gap: 3.75rem;
	padding-top: 5rem;
}
.ihm-offcanvas .offcanvas-header .btn-close {
	--bs-btn-close-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
	--bs-btn-close-opacity: 1;
	margin-left: 0;
	border-radius: 999px;
	width: 1.5rem;
	height: 1.5rem;
	box-shadow: 0 0 12px 4px rgba(0,0,0,.2);
	background-size: 1.5rem;
	padding: 1rem;
}
.ihm-offcanvas .offcanvas-header .offcanvas-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--bs-body);
}


@keyframes pulse-red {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 51, 0, 0.9);
	}

	70% {
		transform: scale(1.1);
		box-shadow: 0 0 0 32px rgba(255, 51, 0, 0);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 51, 0, 0);
	}
}