.lpm-map-app {
	--lpm-purple: #5236b8;
	--lpm-yellow: #f0bf4a;
	--lpm-green: #189451;
	--lpm-dark: #2e2e2e;
	--lpm-muted: #4c4c4d;
	--lpm-border: #e5e3df;
	--lpm-soft: #e6e8ff;
	--lpm-scroll-track: #eeeaf8;
	align-items: stretch;
	box-sizing: border-box;
	color: var(--lpm-dark);
	display: grid;
	grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
	font-family: "TT Norms", Helvetica, Arial, sans-serif;
	gap: 0.75rem;
	margin: 0;
	max-width: none;
	overflow: visible;
	position: relative;
	width: 100%;
}

.lpm-map-app *,
.lpm-map-app *::before,
.lpm-map-app *::after {
	box-sizing: inherit;
}

.lpm-app-loader {
	align-items: center;
	background: rgba(255, 255, 255, 0.92);
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	pointer-events: auto;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10000;
}

.lpm-app-loader[hidden] {
	display: none;
}

.lpm-app-loader-inner {
	align-items: center;
	color: var(--lpm-purple);
	display: flex;
	flex-direction: column;
	font-size: 0.95rem;
	font-weight: 600;
	gap: 0.75rem;
	max-width: 90%;
	text-align: center;
}

.lpm-app-loader-inner img {
	display: block;
	flex-shrink: 0;
}

.lpm-app-loader-progress {
	margin-top: 0.25rem;
	width: 100%;
	max-width: 240px;
}

.lpm-app-loader-bar-wrap {
	background: #e8e4f0;
	border-radius: 3px;
	height: 5px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.lpm-app-loader-bar {
	background: linear-gradient(90deg, #9b7fd4, var(--lpm-purple));
	border-radius: 3px;
	height: 100%;
	transition: width 0.12s ease-out;
	width: 0%;
}

.lpm-app-loader-bar-indeterminate {
	animation: lpm-loader-indeterminate 1.25s ease-in-out infinite;
	background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--lpm-purple) 95%, transparent), transparent);
	border-radius: 3px;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 38%;
	z-index: 1;
}

.lpm-app-loader-stats {
	color: var(--lpm-muted);
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.35;
	margin-top: 0.45rem;
	min-height: 1.1em;
	text-align: center;
}

@keyframes lpm-loader-indeterminate {
	0% {
		transform: translateX(-120%);
	}

	100% {
		transform: translateX(320%);
	}
}

.lpm-filter-panel,
.lpm-results,
.lpm-map {
	background: #fff;
	border: 0 !important;
	border-radius: 0;
	box-shadow: none;
	min-width: 0;
	overflow: hidden;
}

.lpm-results,
.lpm-map {
	border: 0 !important;
}

.lpm-filter-panel {
	display: flex;
	flex-direction: column;
	height: auto;
	min-height: 0;
	min-width: 0;
	overflow: visible;
	padding: 0;
	scrollbar-color: var(--lpm-purple) var(--lpm-scroll-track);
	scrollbar-width: thin;
}

.lpm-filter-panel::-webkit-scrollbar,
.lpm-result-list::-webkit-scrollbar {
	width: 10px;
}

.lpm-filter-panel::-webkit-scrollbar-thumb,
.lpm-result-list::-webkit-scrollbar-thumb {
	background: var(--lpm-purple);
	border-radius: 999px;
}

.lpm-filter-panel::-webkit-scrollbar-track,
.lpm-result-list::-webkit-scrollbar-track {
	background: var(--lpm-scroll-track);
	border-radius: 999px;
}

.lpm-search-form {
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.lpm-intro {
	color: var(--lpm-muted);
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.45;
	margin: 0 0 0.75rem;
}

.lpm-field {
	margin-bottom: 0.65rem;
}

.lpm-field > label {
	color: var(--lpm-purple);
	display: block;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 0.28rem;
}

.lpm-field input,
.lpm-field select {
	background: #fff;
	border: 1px solid var(--lpm-border) !important;
	border-radius: 0;
	color: var(--lpm-dark);
	font-family: inherit;
	font-size: 0.92rem;
	line-height: 1.4;
	min-height: 2.55rem;
	padding: 0.55rem 0.85rem;
	width: 100%;
}

.lpm-field input:focus,
.lpm-multiselect-button:focus {
	border-color: var(--lpm-purple) !important;
	box-shadow: 0 0 0 3px rgba(82, 54, 184, 0.14);
	outline: none;
}

.lpm-native-multiselect {
	clip: rect(0 0 0 0);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.lpm-multiselect {
	position: relative;
	z-index: 1;
}

.lpm-multiselect.is-open {
	z-index: 100000;
}

.lpm-multiselect-button {
	background: #fff;
	border: 1px solid var(--lpm-border) !important;
	border-radius: 0;
	color: var(--lpm-muted);
	cursor: pointer;
	display: block;
	font-family: inherit;
	font-size: 0.92rem;
	line-height: 1.4;
	min-height: 2.55rem;
	overflow: hidden;
	padding: 0.55rem 2.2rem 0.55rem 0.85rem;
	position: relative;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.lpm-multiselect-button::after {
	border-left: 0.35rem solid transparent;
	border-right: 0.35rem solid transparent;
	border-top: 0.4rem solid var(--lpm-purple);
	content: "";
	position: absolute;
	right: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
}

.lpm-multiselect-button.has-selection {
	color: var(--lpm-dark);
}

.lpm-multiselect-menu {
	background: #fff;
	border: 1px solid var(--lpm-border);
	border-radius: 0;
	box-shadow: none;
	left: 0;
	margin-top: 0.35rem;
	max-height: 15rem;
	overflow: auto;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 100000;
}

.lpm-multiselect-menu.opens-up {
	bottom: 100%;
	margin-bottom: 0.35rem;
	margin-top: 0;
	top: auto;
}

.lpm-multiselect-menu[hidden] {
	display: none;
}

.lpm-multiselect-option {
	align-items: center;
	color: var(--lpm-purple);
	cursor: pointer;
	display: flex !important;
	font-size: 0.88rem;
	font-weight: 600;
	gap: 0.5rem;
	line-height: 1.25;
	margin: 0;
	min-height: 2.25rem;
	padding: 0.35rem 0.65rem;
	white-space: nowrap;
	width: 100%;
}

.lpm-multiselect-option:focus-within,
.lpm-multiselect-option:hover {
	background: var(--lpm-soft);
}

.lpm-multiselect-option input {
	display: inline-block;
	flex: 0 0 auto;
	height: 1rem;
	margin: 0 !important;
	min-height: auto;
	position: relative;
	top: 0;
	transform: none;
	vertical-align: middle;
	width: 1rem;
}

.lpm-multiselect-option-label {
	color: var(--lpm-purple);
	display: inline-block !important;
	flex: 1 1 0;
	font-size: inherit;
	font-weight: 700;
	line-height: 1.25;
	min-width: 0;
	overflow: hidden;
	padding: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lpm-multiselect-option-icon-wrap {
	align-items: center;
	align-self: center;
	display: inline-flex !important;
	flex: 0 0 auto;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.lpm-multiselect-option-icon {
	display: block;
	height: 1.35rem;
	width: 1.35rem;
}

.lpm-keyword-field {
	position: relative;
}

.lpm-keyword-field input {
	box-sizing: border-box;
	padding-right: 2.25rem;
}

.lpm-search-icon {
	border: 2px solid currentColor;
	border-radius: 50%;
	height: 0.85rem;
	pointer-events: none;
	position: absolute;
	right: 0.8rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.85rem;
}

.lpm-search-icon::after {
	background: currentColor;
	content: "";
	height: 0.45rem;
	position: absolute;
	right: -0.25rem;
	top: 0.55rem;
	transform: rotate(45deg);
	width: 2px;
}

.lpm-required {
	color: #b00020;
}

.lpm-actions {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.15rem;
}

.lpm-turnstile {
	margin-top: 1rem;
	max-width: 100%;
	min-height: 65px;
	overflow-x: hidden;
}

.lpm-turnstile:empty {
	min-height: 0;
}

.lpm-button {
	border: 1px solid var(--lpm-purple);
	border-radius: 0;
	background: #fff;
	color: var(--lpm-purple);
	cursor: pointer;
	font-family: inherit;
	font-weight: 800;
	line-height: 1.2;
	font-size: 0.92rem;
	min-height: 2.55rem;
	padding: 0.55rem 1.1rem;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.lpm-button:hover,
.lpm-button:focus {
	background: var(--lpm-yellow);
	border-color: var(--lpm-yellow);
	color: var(--lpm-dark);
	outline: none;
	transform: translateY(-1px);
}

.lpm-button-primary {
	background: var(--lpm-purple);
	border-color: var(--lpm-purple);
	color: #fff;
}

.lpm-button-primary:hover,
.lpm-button-primary:focus {
	background: var(--lpm-green);
	border-color: var(--lpm-green);
	color: #fff;
}

.lpm-button:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.lpm-map-panel {
	align-items: stretch;
	border: 1px solid var(--lpm-purple) !important;
	display: grid;
	grid-template-columns: minmax(210px, 26%) minmax(0, 1fr);
	height: var(--lpm-panel-height, 640px);
	max-height: var(--lpm-panel-height, 640px);
	min-width: 0;
	overflow: hidden;
}

.lpm-results {
	display: flex;
	flex-direction: column;
	height: 100%;
	max-height: 100%;
	min-height: 0;
	min-width: 0;
	overflow: hidden;
	padding: 0;
}

.lpm-results h2 {
	background: var(--lpm-border);
	color: var(--lpm-purple);
	flex: 0 0 auto;
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.25;
	margin: 0;
	padding: 0.65rem 0.75rem;
}

.lpm-results [data-lpm-message] {
	flex: 0 0 auto;
}

.lpm-result-list {
	flex: 1 1 auto;
	min-height: 0;
	min-width: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 0.45rem 0.5rem 0.45rem 0.45rem;
	scrollbar-color: var(--lpm-purple) var(--lpm-scroll-track);
	scrollbar-width: thin;
}

.lpm-map {
	border-left: 1px solid var(--lpm-purple) !important;
	height: 100%;
	min-height: 0;
	min-width: 0;
	overflow: hidden;
	position: relative;
}

.lpm-map-canvas {
	height: 100%;
	min-height: inherit;
	width: 100%;
}

.lpm-map-notice {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 1rem;
	pointer-events: none;
	position: absolute;
	z-index: 5;
}

.lpm-map-notice[hidden] {
	display: none;
}

.lpm-map-notice-inner {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid var(--lpm-purple);
	border-radius: 0.5rem;
	box-shadow: 0 4px 16px rgba(46, 46, 46, 0.18);
	color: var(--lpm-purple);
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
	max-width: 30rem;
	padding: 1rem 1.25rem;
	text-align: center;
}

.lpm-required {
	color: var(--lpm-purple);
	font-weight: 800;
}

.lpm-result-card {
	border: 1px solid transparent;
	border-radius: 0;
	color: var(--lpm-dark);
	display: block;
	margin: 0 0 0.35rem;
	min-width: 0;
	overflow-wrap: break-word;
	padding: 0.65rem 0.75rem;
	text-decoration: none;
	text-decoration-line: none;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	word-break: break-word;
}

#wrapper .lpm-map-app a.lpm-result-card,
#wrapper .lpm-map-app a.lpm-result-card:hover,
#wrapper .lpm-map-app a.lpm-result-card:focus,
.awb-link-decoration #wrapper .lpm-map-app a.lpm-result-card,
.awb-link-decoration #wrapper .lpm-map-app a.lpm-result-card:hover,
.awb-link-decoration #wrapper .lpm-map-app a.lpm-result-card:focus {
	text-decoration: none;
	text-decoration-line: none;
}

.lpm-result-card:focus,
.lpm-result-card:hover {
	background: var(--lpm-soft);
	border-color: rgba(82, 54, 184, 0.22);
	box-shadow: none;
	outline: none;
	transform: translateY(-1px);
}

.lpm-result-title {
	color: var(--lpm-purple);
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 0.2rem;
}

.lpm-result-meta,
.lpm-result-address {
	font-size: 0.84rem;
	line-height: 1.35;
	margin-bottom: 0.35rem;
	overflow-wrap: break-word;
	word-break: break-word;
}

.lpm-badge {
	border-radius: 999px;
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1;
	margin: 0.2rem 0 0.35rem;
	padding: 0.28rem 0.5rem;
}

.lpm-online-badge {
	background: var(--lpm-soft);
	color: var(--lpm-purple);
}

.lpm-journey-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	margin-top: 0.35rem;
}

.lpm-journey-icon {
	align-items: center;
	border-radius: 50%;
	display: inline-flex;
	font-size: 0.7rem;
	font-weight: 700;
	height: 1.7rem;
	justify-content: center;
	line-height: 1;
	text-align: center;
	width: 1.7rem;
}

.lpm-journey-icon img {
	display: block;
	height: 1.7rem;
	width: 1.7rem;
}

.lpm-info-window {
	max-width: 270px;
}

.lpm-info-window h3 {
	color: var(--lpm-purple);
	font-size: 1rem;
	margin: 0 0 0.4rem;
}

.lpm-info-window-group {
	max-width: 320px;
}

.lpm-info-group-header {
	color: var(--lpm-purple);
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.lpm-info-group-location,
.lpm-info-group-address {
	color: var(--lpm-muted);
	font-size: 0.85rem;
	margin-bottom: 0.25rem;
}

.lpm-info-group-list {
	list-style: none;
	margin: 0.5rem 0 0;
	max-height: 240px;
	overflow-y: auto;
	padding: 0;
}

.lpm-info-group-item {
	border-top: 1px solid var(--lpm-border);
	padding: 0.45rem 0;
}

.lpm-info-group-item:first-child {
	border-top: 0;
	padding-top: 0;
}

.lpm-info-group-link {
	color: var(--lpm-purple);
	display: inline-block;
	font-weight: 700;
	text-decoration: none;
}

.lpm-info-group-link:hover,
.lpm-info-group-link:focus {
	text-decoration: underline;
}

.lpm-detail {
	--lpm-purple: #5236b8;
	--lpm-yellow: #f0bf4a;
	--lpm-green: #189451;
	--lpm-dark: #2e2e2e;
	--lpm-muted: #4c4c4d;
	--lpm-ash: #a5a098;
	--lpm-border: #e5e3df;
	--lpm-soft: #e6e8ff;
	color: var(--lpm-dark);
	font-family: "TT Norms", "TTNormsPro", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	margin: 0;
}

.lpm-single-program .fusion-row {
	max-width: 1140px;
}

.lpm-single-program h1 {
	color: var(--lpm-purple);
	font-size: clamp(1.8rem, 3.2vw, 2.65rem);
	line-height: 1.15;
	margin: 0 0 0.55rem;
}

.lpm-detail-layout {
	display: grid;
	gap: 3rem;
	grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
}

.lpm-detail-main,
.lpm-detail-side {
	background: #fff;
	border: 0;
	border-radius: 0;
	padding: 0;
}

.lpm-detail-location-lede,
#wrapper .post-content .lpm-detail .lpm-detail-location-lede {
	color: var(--lpm-purple);
	font-family: "TT Norms", "TTNormsPro-Light", Helvetica, Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 300;
	line-height: 1.55;
	margin: 0 0 1.5rem;
}

.lpm-detail-location-lede .lpm-badge {
	margin-left: 0.6rem;
	vertical-align: middle;
}

.lpm-detail-description,
#wrapper .post-content .lpm-detail .lpm-detail-description {
	color: var(--lpm-dark);
	font-family: "TT Norms", "TTNormsPro-Light", Helvetica, Arial, sans-serif;
	font-size: 1.02rem;
	font-weight: 300;
	line-height: 1.7;
}

.lpm-detail-description p,
.lpm-detail-description li,
#wrapper .post-content .lpm-detail .lpm-detail-description p,
#wrapper .post-content .lpm-detail .lpm-detail-description li {
	color: var(--lpm-dark);
	font-weight: 300;
}

.lpm-detail-description img,
.lpm-detail-description iframe {
	max-width: 100%;
}

.lpm-detail-description a,
.lpm-detail-description a:link,
.lpm-detail-description a:visited,
#wrapper .post-content .lpm-detail .lpm-detail-description a,
#wrapper .post-content .lpm-detail .lpm-detail-description a:link,
#wrapper .post-content .lpm-detail .lpm-detail-description a:visited {
	color: var(--lpm-purple) !important;
	text-decoration: none !important;
}

.lpm-detail-description a:hover,
.lpm-detail-description a:focus,
#wrapper .post-content .lpm-detail .lpm-detail-description a:hover,
#wrapper .post-content .lpm-detail .lpm-detail-description a:focus {
	color: var(--lpm-purple) !important;
	text-decoration: none !important;
}

.lpm-detail-side {
	color: var(--lpm-dark);
	font-family: "TTNormsPro-Light", "TT Norms", Helvetica, Arial, sans-serif;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.5;
}

.lpm-detail-logo {
	display: block;
	margin: 0 0 1rem;
	max-height: none;
	max-width: 250px;
	object-fit: contain;
	padding: 1rem 0;
	width: 100%;
}

.lpm-detail-meta {
	margin: 0 0 1rem;
}

.lpm-detail-meta dt {
	color: var(--lpm-dark);
	font-family: "TTNormsPro-Bold", "TT Norms", Helvetica, Arial, sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 0;
	padding-top: 0.85rem;
	text-transform: uppercase;
}

.lpm-detail-meta dd {
	color: var(--lpm-ash);
	font-family: "TTNormsPro-Medium", "TT Norms", Helvetica, Arial, sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	margin: 0;
	padding-bottom: 0.85rem;
	text-transform: uppercase;
}

.lpm-detail-meta dd span,
.lpm-detail-meta dd a {
	display: block;
}

.lpm-detail-meta a,
.lpm-detail-meta a:link,
.lpm-detail-meta a:visited {
	color: var(--lpm-purple) !important;
	text-decoration: none !important;
	text-transform: none;
}

.lpm-detail-journey-icons {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	padding-top: 0.35rem;
}

.lpm-detail-side .lpm-journey-icon img {
	height: 24px;
	width: 24px;
}

.lpm-detail-map-section {
	border-top: 1px solid var(--lpm-border);
	margin: 3rem 0 0;
	padding-top: 1rem;
}

.lpm-detail-map-info {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
	margin: 0 0 1.5rem;
}

.lpm-detail-map-info-label {
	color: var(--lpm-dark);
	font-family: "TTNormsPro-Bold", "TT Norms", Helvetica, Arial, sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.3;
	text-transform: uppercase;
}

.lpm-detail-map-info-value {
	color: var(--lpm-ash);
	font-family: "TT Norms", "TTNormsPro", Helvetica, Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.45;
	margin-top: 0.25rem;
}

.lpm-detail-map {
	height: 360px;
	width: 100%;
}

@media (max-width: 1024px) {
	.lpm-map-app,
	.lpm-map-panel,
	.lpm-detail-layout {
		grid-template-columns: 1fr;
	}

	.lpm-map-app {
		gap: 0.75rem;
		margin: 0;
	}

	.lpm-filter-panel {
		height: auto;
		max-height: none;
		overflow: visible;
	}

	.lpm-map-panel {
		height: auto;
		max-height: none;
		min-height: 0;
		overflow: visible;
	}

	.lpm-results {
		height: auto;
		max-height: clamp(20rem, 58vh, 31rem);
		order: 2;
	}

	.lpm-result-list {
		max-height: none;
	}

	.lpm-map {
		border-left: 0 !important;
		border-top: 1px solid var(--lpm-purple) !important;
		min-height: 400px;
		order: 1;
	}

	.lpm-detail-layout {
		gap: 1.25rem;
	}

	.lpm-detail-map {
		height: 380px;
	}
}

@media (max-width: 640px) {
	.lpm-filter-panel,
	.lpm-results,
	.lpm-map {
		border-radius: 0;
	}

	.lpm-filter-panel,
	.lpm-results {
		padding: 0;
	}

	.lpm-actions {
		flex-direction: column;
	}

	.lpm-button {
		justify-content: center;
		text-align: center;
		width: 100%;
	}

	.lpm-multiselect-option {
		gap: 0.55rem;
	}

	.lpm-multiselect-option-icon {
		height: 1.45rem;
		width: 1.45rem;
	}

	.lpm-map {
		min-height: 320px;
	}

	.lpm-detail-map-info {
		grid-template-columns: 1fr;
	}

	.lpm-detail-map {
		height: 320px;
	}
}
