.mii-wrapper {
	--mii-max-width: 100%;
	width: 100%;
	max-width: var(--mii-max-width);
}

.mii-align-center {
	margin-right: auto;
	margin-left: auto;
}

.mii-align-left {
	margin-right: auto;
	margin-left: 0;
}

.mii-align-right {
	margin-right: 0;
	margin-left: auto;
}

.mii-map-container {
	position: relative;
	width: 100%;
	line-height: 0;
}

.mii-map-image {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	user-select: none;
}

.mii-status {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	width: min(88%, 460px);
	padding: 14px 16px;
	color: #1f2933;
	font-size: 15px;
	line-height: 1.45;
	text-align: center;
	background: #ffffff;
	border: 1px solid rgba(31, 41, 51, 0.12);
	border-radius: 8px;
	box-shadow: 0 14px 40px rgba(31, 41, 51, 0.14);
	transform: translate(-50%, -50%);
}

.mii-status[hidden] {
	display: none;
}

.mii-hotspot {
	position: absolute;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	color: transparent;
	background: transparent;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	appearance: none;
	transform: translate(-50%, -50%);
	transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mii-hotspot::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	content: "";
	display: none;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(17, 24, 39, 0.2);
	border-radius: 50%;
	opacity: 0;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.22);
	transform: translate(-50%, -50%) scale(0.85);
	transition: opacity 160ms ease, transform 160ms ease;
}

.mii-hotspot:hover::before,
.mii-hotspot:focus-visible::before {
	opacity: 0;
	transform: translate(-50%, -50%) scale(1);
}

.mii-hotspot:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 3px;
	box-shadow: 0 0 0 5px rgba(17, 24, 39, 0.45);
}

.mii-hotspot-label {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	color: #111827;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	background: #ffdb16;
	border: 1px solid rgba(17, 24, 39, 0.18);
	border-radius: 999px;
	box-shadow: 0 2px 7px rgba(15, 23, 42, 0.22);
	opacity: 0;
	pointer-events: none;
	transform: scale(0.9);
	transition: opacity 160ms ease, transform 160ms ease;
}

.mii-hotspot:hover .mii-hotspot-label,
.mii-hotspot:focus-visible .mii-hotspot-label {
	transform: scale(1);
}

.mii-wrapper[data-debug="1"] .mii-hotspot {
	width: 42px;
	height: 42px;
	color: #ffffff;
	background: rgba(220, 38, 38, 0.78);
	border: 2px solid #ffffff;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.32);
}

.mii-wrapper[data-debug="1"] .mii-hotspot-label {
	display: inline-flex;
	min-width: 0;
	height: auto;
	padding: 0;
	color: #ffffff;
	background: transparent;
	border: 0;
	box-shadow: none;
	opacity: 1;
	transform: none;
}

.mii-wrapper[data-debug="1"] .mii-hotspot::before {
	top: -7px;
	right: -7px;
	bottom: -7px;
	left: -7px;
	width: auto;
	height: auto;
	display: block;
	opacity: 1;
	background: transparent;
	border: 1px dashed rgba(255, 255, 255, 0.8);
	box-shadow: none;
	transform: none;
}

[type=button]:hover, button:hover {
    background-color: transparent;
}

.mii-modal-open {
	overflow: hidden;
}

.mii-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 180ms ease;
}

.mii-modal.is-open {
	pointer-events: auto;
	opacity: 1;
}

.mii-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.72);
}

.mii-modal-content {
	position: relative;
	z-index: 1;
	width: min(860px, 100%);
	max-height: min(88vh, 900px);
	color: #17202a;
	font-family: Montserrat, Arial, Helvetica, sans-serif;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
	overflow: auto;
	transform: translateY(10px) scale(0.98);
	transition: transform 180ms ease;
}

.mii-modal.is-open .mii-modal-content {
	transform: translateY(0) scale(1);
}

.mii-modal-close {
	position: sticky;
	top: 12px;
	float: right;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 12px 12px 0 0;
	color: #17202a;
	font-size: 30px;
	line-height: 1;
	background: #ffffff;
	border: 1px solid rgba(23, 32, 42, 0.18);
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
}

.mii-modal-close:hover,
.mii-modal-close:focus-visible {
	color: #ffffff;
	background: #17202a;
	outline: none;
}

.mii-modal-body {
	clear: both;
	padding: 0 34px 34px;
}

.mii-modal-title {
	margin: 0 52px 12px 0;
	color: #111827;
	font-family: "Berthold Baskerville Bold", sans-serif;
	font-weight: 700;
	font-size: clamp(26px, 3vw, 40px);
	line-height: 1.12;
	letter-spacing: 0;
}

.mii-modal-summary {
	margin: 0 0 22px;
	color: #485465;
	font-size: 17px;
	line-height: 1.55;
}

.mii-modal-summary[hidden] {
	display: none;
}

.mii-modal-image {
	display: block;
	width: 100%;
	max-height: 360px;
	margin: 0 0 24px;
	object-fit: cover;
	border-radius: 8px;
}

.mii-modal-image[hidden] {
	display: none;
}

.mii-modal-html {
	color: #24303f;
	font-size: 16px;
	line-height: 1.68;
}

.mii-modal-html > *:first-child {
	margin-top: 0;
}

.mii-modal-html > *:last-child {
	margin-bottom: 0;
}

.mii-modal-html h2,
.mii-modal-html h3,
.mii-modal-html h4,
.mii-modal-html h5,
.mii-modal-html h6 {
	margin: 24px 0 10px;
	color: #111827;
	line-height: 1.22;
	letter-spacing: 0;
}

.mii-modal-html a {
	color: #0f6bba;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mii-modal-html img {
	width: auto;
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

@media (max-width: 767px) {
	.mii-modal {
		align-items: flex-end;
		padding: 14px;
	}

	.mii-modal-content {
		width: 100%;
		max-height: 92vh;
	}

	.mii-modal-body {
		padding: 24px 20px 28px;
	}

	.mii-modal-title {
		margin-right: 48px;
		font-size: 28px;
	}

	.mii-hotspot {
		width: 34px;
		height: 34px;
	}

	.mii-wrapper[data-debug="1"] .mii-hotspot {
		width: 38px;
		height: 38px;
	}
}