.fcl-agency-map {
	--fcl-map-max-width: 900px;
	box-sizing: border-box;
	width: 100%;
	max-width: var(--fcl-map-max-width);
	margin-inline: auto;
	padding: 0;
	background: transparent !important;
	box-shadow: none !important;
}

.fcl-agency-map *,
.fcl-agency-map *::before,
.fcl-agency-map *::after {
	box-sizing: border-box;
}

.fcl-agency-map__viewport {
	position: relative;
	isolation: isolate;
	width: 100%;
	aspect-ratio: 1150 / 1367;
	overflow: visible;
	background: transparent !important;
	box-shadow: none !important;
	filter: none;
	-webkit-tap-highlight-color: transparent;
}

.fcl-agency-map__viewport.is-near-light {
	cursor: pointer;
}

.fcl-agency-map__base {
	position: absolute;
	z-index: 1;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	user-select: none;
	pointer-events: none;
	background: transparent !important;
	box-shadow: none !important;
	filter: none !important;
}

.fcl-agency-map__source {
	max-width: 74ch;
	margin: 14px auto 0;
	padding: 0;
	color: inherit;
	font-size: 12px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	opacity: 0.68;
}

.fcl-agency-map__source a,
.fcl-agency-map__source a:visited {
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.fcl-agency-map__source a:hover,
.fcl-agency-map__source a:focus-visible {
	opacity: 1;
}

.fcl-agency-map__lights {
	position: absolute;
	z-index: 2;
	inset: 0;
	pointer-events: none;
}

.fcl-agency-map__marker,
.fcl-agency-map__marker:hover,
.fcl-agency-map__marker:focus,
.fcl-agency-map__marker:active {
	position: absolute !important;
	z-index: 3;
	left: var(--fcl-display-x, var(--fcl-x)) !important;
	top: var(--fcl-display-y, var(--fcl-y)) !important;
	display: block !important;
	width: 30px !important;
	min-width: 0 !important;
	max-width: none !important;
	height: 30px !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	transform: translate(-50%, -50%) !important;
	color: #ffffff !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 50% !important;
	box-shadow: none !important;
	font: inherit !important;
	line-height: 1 !important;
	text-align: left !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	appearance: none !important;
	overflow: visible !important;
	cursor: pointer;
	pointer-events: none;
	touch-action: manipulation;
	transition: opacity 220ms ease, filter 220ms ease;
}

.fcl-agency-map__marker:focus {
	outline: none;
}

.fcl-agency-map__beacon {
	position: absolute;
	z-index: 3;
	left: 50%;
	top: 50%;
	display: block;
	width: 9px;
	height: 9px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	filter:
		drop-shadow(0 0 2px rgba(255, 255, 255, 0.95))
		drop-shadow(0 0 4px rgba(255, 255, 255, 0.42));
}

.fcl-agency-map__halo,
.fcl-agency-map__core {
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}

.fcl-agency-map__halo {
	width: 14px;
	height: 14px;
	border: 1px solid rgba(255, 255, 255, 0.76);
	box-shadow:
		0 0 2px 1px rgba(255, 255, 255, 0.72),
		0 0 5px 1px rgba(255, 255, 255, 0.2);
	animation: fcl-agency-light-breathe 3.6s ease-in-out var(--fcl-pulse-delay) infinite;
}

.fcl-agency-map__core {
	width: 4px;
	height: 4px;
	background: #ffffff;
	box-shadow:
		0 0 2px 1px #ffffff,
		0 0 4px 1px rgba(255, 255, 255, 0.72),
		0 0 7px 2px rgba(255, 255, 255, 0.24);
}

.fcl-agency-map__marker::after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 18px;
	height: 18px;
	transform: translate(-50%, -50%);
	border: 1px solid rgba(255, 255, 255, 0);
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(8, 12, 15, 0), 0 0 0 6px rgba(255, 255, 255, 0);
	content: "";
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.fcl-agency-map__marker:focus-visible::after {
	border-color: rgba(8, 12, 15, 0.92);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.98), 0 0 0 6px rgba(8, 12, 15, 0.82);
}

.fcl-agency-map__callout {
	position: absolute;
	z-index: 2;
	top: 50%;
	display: flex;
	align-items: center;
	width: max-content;
	max-width: min(360px, 48vw);
	transform: translateY(-50%);
	pointer-events: none;
}

.fcl-agency-map__marker--right .fcl-agency-map__callout {
	left: 50%;
	padding-left: 12px;
}

.fcl-agency-map__marker--left .fcl-agency-map__callout {
	right: 50%;
	flex-direction: row-reverse;
	padding-right: 12px;
}

.fcl-agency-map__leader {
	position: relative;
	z-index: 1;
	display: block;
	flex: 0 0 clamp(22px, 4.2vw, 48px);
	height: 2px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow:
		0 0 3px 1px rgba(255, 255, 255, 1),
		0 0 10px 3px rgba(255, 255, 255, 0.92),
		0 0 22px 7px rgba(255, 255, 255, 0.48);
	opacity: 0;
	transform: scaleX(0);
	transition:
		transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 140ms ease;
}

.fcl-agency-map__marker--right .fcl-agency-map__leader {
	transform-origin: left center;
}

.fcl-agency-map__marker--left .fcl-agency-map__leader {
	transform-origin: right center;
}

.fcl-agency-map__label {
	position: relative;
	z-index: 2;
	display: block;
	width: max-content;
	max-width: min(300px, 42vw);
	padding: 8px 11px 7px;
	color: #ffffff;
	background: rgba(8, 11, 14, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 8px;
	box-shadow:
		0 6px 20px rgba(0, 0, 0, 0.28),
		0 0 7px rgba(255, 255, 255, 0.72),
		0 0 22px rgba(255, 255, 255, 0.3);
	opacity: 0;
	-webkit-backdrop-filter: blur(7px) saturate(0.8);
	backdrop-filter: blur(7px) saturate(0.8);
	transition:
		transform 320ms cubic-bezier(0.22, 1, 0.36, 1) 90ms,
		opacity 180ms ease 80ms;
}

.fcl-agency-map__marker--right .fcl-agency-map__label {
	transform: translateX(-10px) scale(0.88);
	transform-origin: left center;
}

.fcl-agency-map__marker--left .fcl-agency-map__label {
	transform: translateX(10px) scale(0.88);
	transform-origin: right center;
	text-align: right !important;
}

.fcl-agency-map__label strong,
.fcl-agency-map__label small {
	display: block;
	margin: 0;
	padding: 0;
	color: inherit;
	font-family: inherit;
	font-style: normal;
	text-decoration: none;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.72), 0 0 7px rgba(255, 255, 255, 0.22);
}

.fcl-agency-map__label strong {
	font-size: clamp(11px, 1.45vw, 16px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.01em;
}

.fcl-agency-map__label small {
	margin-top: 3px;
	font-size: clamp(9px, 1.1vw, 12px);
	font-weight: 500;
	line-height: 1.2;
	opacity: 0.78;
}

.fcl-agency-map__label .fcl-agency-map__region {
	font-weight: 700;
	letter-spacing: 0.035em;
	opacity: 0.96;
}

.fcl-agency-map__marker.is-open {
	z-index: 100;
}

.fcl-agency-map__marker.is-open .fcl-agency-map__beacon {
	filter:
		drop-shadow(0 0 3px rgba(255, 255, 255, 1))
		drop-shadow(0 0 8px rgba(255, 255, 255, 1))
		drop-shadow(0 0 16px rgba(255, 255, 255, 0.84))
		drop-shadow(0 0 26px rgba(255, 255, 255, 0.52));
}

.fcl-agency-map__marker.is-open .fcl-agency-map__halo {
	animation: fcl-agency-light-ignite 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fcl-agency-map__marker.is-open .fcl-agency-map__leader {
	opacity: 1;
	transform: scaleX(1);
}

.fcl-agency-map__marker.is-open .fcl-agency-map__label {
	opacity: 1;
	transform: translateX(0) scale(1);
}

.fcl-agency-map.has-open-marker .fcl-agency-map__marker:not(.is-open) {
	opacity: 0.34;
	filter: saturate(0.72) brightness(0.82);
}

.fcl-agency-map.is-pinned .fcl-agency-map__marker.is-open .fcl-agency-map__label {
	border-color: rgba(255, 255, 255, 0.9);
	box-shadow:
		0 7px 22px rgba(0, 0, 0, 0.32),
		0 0 9px rgba(255, 255, 255, 0.88),
		0 0 30px rgba(255, 255, 255, 0.4);
}

.fcl-agency-map__sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

@keyframes fcl-agency-light-breathe {
	0%,
	100% {
		opacity: 0.58;
		transform: translate(-50%, -50%) scale(0.72);
	}
	48% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.18);
	}
}

@keyframes fcl-agency-light-ignite {
	0% {
		opacity: 0.45;
		transform: translate(-50%, -50%) scale(0.7);
	}
	55% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.85);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.28);
	}
}

@media (max-width: 620px) {
	.fcl-agency-map__marker,
	.fcl-agency-map__marker:hover,
	.fcl-agency-map__marker:focus,
	.fcl-agency-map__marker:active {
		width: 34px !important;
		height: 34px !important;
	}

	.fcl-agency-map__callout {
		max-width: 58vw;
	}

	.fcl-agency-map__leader {
		flex-basis: 20px;
	}

	.fcl-agency-map__label {
		max-width: 50vw;
		padding: 6px 8px;
	}

	.fcl-agency-map__label strong,
	.fcl-agency-map__label small {
		white-space: normal;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fcl-agency-map__marker,
	.fcl-agency-map__leader,
	.fcl-agency-map__label {
		transition: none;
	}

	.fcl-agency-map__halo,
	.fcl-agency-map__marker.is-open .fcl-agency-map__halo {
		animation: none;
		opacity: 0.92;
		transform: translate(-50%, -50%) scale(1);
	}
}

@media (forced-colors: active) {
	.fcl-agency-map__marker:focus-visible {
		outline: 3px solid ButtonText;
		outline-offset: 2px;
	}

	.fcl-agency-map__core,
	.fcl-agency-map__leader {
		background: ButtonText;
	}

	.fcl-agency-map__label {
		color: CanvasText;
		background: Canvas;
		border-color: CanvasText;
	}
}
