/* Change flex-direction to column-reverse to move dropdown to bottom of map */
.thematic-map .stage {
	display: flex;
	flex-direction: column;
}

.thematic-map {
	--font-family-title: var(--font-display);
	--font-family-body: var(--font-body);
	--text-color-title: var(--gray-900);
	--text-color-body: #211E1C;
	--text-color-accent: #4A90BF;
	--text-color-accent-dark: #005A8B;
	--accent-dark-blue: #005A8B;
	--temp-bg: rgba(150, 140, 131, 0.25);

	--btn-bg-color: var(--white);
	--btn-bg-color-hover: #E57200;
	--btn-text-color: #E57200;
	--btn-text-color-hover: var(--white);

	width: 100%;
	max-width: var(--width-feature);
	margin: 0 auto var(--space-12);
	padding-top: var(--space-8);
	color: var(--text-color-body);
}

.thematic-map h2,
.thematic-map h3 {
	margin: 0;
	margin-bottom: var(--space-1);
	font-family: var(--font-family-title);
	font-size: 2.5rem;
	font-weight: 400;
	color: var(--text-color-accent);
	line-height: 42px;
	text-transform: uppercase;
}

.thematic-map h3.subtitle {
	font-weight: 600;
	color: var(--text-color-accent-dark);
}

.thematic-map .description {
	color: var(--text-color-body);
	font-family: var(--font-body);
	line-height: 20px;
	font-size: 15px;
}

/***
	Map Stage
****/
.thematic-map .stage {
	position: relative;
	width: 100%;
	box-shadow: var(--shadow-lg);
	background-color: var(--temp-bg);
	background-image: url('https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/omaha-redesign/bg_2x_22e5c219-c921-43a7-8a57-48642d1ee7e7.png');
	background-size: cover;
}

.thematic-map.top-dropdown .stage {
	flex-direction: column;
}

.thematic-map .stage .explore-text {
	max-width: 335px;
	padding-top: 20px;
	margin-bottom: -27px;
}

/***
	Map List
****/

.thematic-map .list {
	width: 100%;
}

.thematic-map .list ul {
	display: none;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
	flex: 0 1 auto;
	padding: var(--space-5);
	padding-right: var(--space-3);
}

.thematic-map .list ul.active {
	display: flex;
	justify-content: flex-start;
	position: absolute;
	z-index: 2;
	width: 100%;
	min-height: fit-content;
	background: var(--white);
}

.thematic-map .mobile-dropdown-close {
	display: none;
}

.thematic-map .mobile-dropdown-buttons {
	display: flex;
	justify-content: center;
}

.thematic-map .mobile-dropdown-trigger {
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: space-between;
	padding: 0 var(--space-5);
	font-size: 14px;
	font-weight: 900;
	font-family: var(--font-body);
	color: var(--white);
	border: 2px solid var(--accent-dark-blue);
	background-color: var(--accent-dark-blue);
	line-height: 44px;
	width: 100%;
	text-transform: uppercase;
}

.thematic-map .mobile-dropdown-trigger i {
	position: relative;
	top: 2px;
	line-height: 44px;
}

@media(hover:hover) {
	.thematic-map .mobile-dropdown-trigger:hover {
		background-color: var(--primary-color-200);
		text-decoration: none;
		color: var(--gray-700);
	}
}

.thematic-map .mobile-dropdown-buttons i.fa-angle-up {
	display: none;
}

.thematic-map .mobile-dropdown-buttons.active i.fa-angle-down {
	display: none;
}

.thematic-map .mobile-dropdown-buttons.active i.fa-angle-up {
	display: block;
}

.thematic-map .mobile-dropdown-buttons i.fa-angle-down {
	display: block;
}

.thematic-map .list ul {
	height: auto;
	overflow-y: auto;
	margin-bottom: var(--space-6);
}

.thematic-map .list li {
	margin-bottom: var(--space-5);
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.thematic-map .list li .poi-toggle {
	font-family: var(--font-family-body);
	font-size: var(--text-sm);
	font-weight: 400;
	line-height: var(--leading-none);
	text-align: left;
	background-color: transparent;
	flex: 1 1 auto;
	color: var(--accent-dark-blue);
	text-transform: uppercase;
}

.thematic-map .list li .poi-toggle.hover,
.thematic-map .list li .poi-toggle.active {
	text-decoration: underline;
}

.thematic-map a.view-all {
	color: var(--btn-text-color);
	font-family: var(--font-family-body);
	font-size: var(--text-base);
	font-weight: 500;
	text-transform: uppercase;
	border-radius: var(--rounded-full);
	background-color: var(--btn-bg-color);
	padding: var(--space-1) var(--space-5) var(--space-1) var(--space-4);
}

.thematic-map .list li .qv-btn {
	display: inline;
	color: var(--btn-text-color);
	background: var(--btn-bg-color);
	font-size: var(--text-sm);
	display: inline-block;
	padding: var(--space-1) var(--space-2);
	border-radius: var(--rounded-full);
	white-space: nowrap;
}

/***
	Map SVG
****/
.thematic-map .map {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.thematic-map .map svg {
	position: relative;
	width: 150%;
	height: auto;
	top: 0;
	left: -50%;
	transform: none;
	margin: 0px;
}

.thematic-map .map svg [data-map-beacon] {
	cursor: pointer;
}

.thematic-map .map svg .region-active {
	display: none;
	transition: display ease 0.6s;
}

.thematic-map .map .region-active.active,
.thematic-map .map .region-active.hover {
	display: block;
}
.thematic-map .map .region-active:hover {
	display: block;
}

@media (hover: hover) {
	.thematic-map a.view-all:hover {
		background-color: var(--btn-bg-color-hover);
		color: var(--btn-text-color-hover);
	}
}

.thematic-map .region-list-cont {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 1.25rem 1.25rem;
	z-index: 1;
}

.thematic-map .region-list-cont a.view-all {
	font-family: var(--font-display);
	box-sizing: border-box;
	font-weight: 600;
	font-size: 19px;
	line-height: 41px;
	letter-spacing: 0.38px;
	text-transform: uppercase;
	color: var(--btn-text-color);
	background-color: var(--btn-bg-color);
	border: 1px solid var(--btn-text-color);
	border-radius: 24px;
	padding: 2px 23.5px;
	margin: 20px 0 40px;
}

.thematic-map .region-list-cont a.view-all:hover {
	background-color: var(--btn-text-color);
	color: var(--btn-bg-color);
	text-decoration: none;
}

/*
	Desktop Overwrites
*/
@media (min-width: 50em) {
	.thematic-map .stage {
		display: grid;
		grid-template-columns: 2fr 3fr;	
		grid-template-rows: 200px 1fr;	
	}
	
	.thematic-map .stage .explore-text {
		max-width: 533px;
		padding-top: 38px;
		grid-column: 1 / span 1;	
		grid-row: 1 / span 1;
	}

	.thematic-map .region-list-cont {
		grid-column: 1 / span 1;	
		grid-row: 2 / span 1;
		padding-left: 50px;
	}

	.thematic-map .map {
		grid-column: 1 / span 2;	
		grid-row: 1 / span 2;
	}

	.thematic-map h2,
	.thematic-map h3 {
		font-size: 3.125rem;
		line-height: 55px;
	}

	.thematic-map h3.subtitle {
		margin-bottom: 1.25rem;
	}
	
	.thematic-map .description {
		line-height: 24px;
		font-size: 1rem;
		padding-right: 50px;
	}

	.thematic-map .list {
		display: none;
	}

	.thematic-map .map svg {
		position: absolute;
		width: 100%;
		height: auto;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		margin: 0px;
	}
	
	.thematic-map .mobile-dropdown-buttons {
		display: none;
	}

	.thematic-map .list ul,
	.thematic-map .list ul.active {
		display: flex;
	}

	.thematic-map .list .view-all {
		display: block;
		max-width: fit-content;
		margin-left: var(--space-5);
	}

	.thematic-map .list ul {
		justify-content: center;
	}

	.thematic-map .list li .poi-toggle {
		font-size: var(--text-lg);
	}

	.thematic-map .region-list-cont {
		flex-direction: column;
		justify-content: flex-start;
	}

	.thematic-map .region-list-cont a.view-all {
		font-size: 18px;
		line-height: 50px;
		letter-spacing: 0.46px;
		border-radius: 28px;
		margin: 20px 0;
	}
}

@media (min-width: 64em) {
	.thematic-map .stage {
		height: 670px;
	}

	.thematic-map .region-list-cont {
		flex: 0 1 24%;
		align-items: flex-start;
	}
	.thematic-map .region-list-cont a.view-all {
		font-size: 23px;
		padding: 5px 28px;
	}
}

@media only screen and (min-width: 90.063em) {
	.thematic-map .map svg {
		transform: translate(-49.5%, -50%);
	}
}

/* QV SLIDER */
.quickview-detail.pois .slider-section .head {
	padding: 0 var(--space-8);
	border-bottom: none;
}

.quickview-detail.pois .slider-section .slider-wrapper {
	padding-left: var(--space-8);
}

.quickview-detail.pois .slider-section .content .title, .quickview-detail.pois .slider-section .content .title a {
	font-size: 28px;
	color: #005A8B;
}

.quickview-detail.pois .slider-section .glide__arrows {
	padding: 0;
	margin-left: -17px;
	width: 105%;
}

.quickview-detail.pois .slider-section .glide__arrow {
	width: 32px;
	height: 32px;
}

.quickview-detail.pois .slider-section .content {
	padding: var(--space-3) var(--space-5) var(--space-3) 0;
}

.quickview-detail.pois .slider-section .content .description {
	font-size: 16px;
	color: #000;
}

.quickview-detail.pois .slider-section .content > a {
	background-color: transparent;
	color: #E57200;
	border: none;
	font-size: 1rem;
	font-weight: 900;
	padding: 0;
	display: flex;
	align-items: center;
}

.quickview-detail.pois .slider-section .content a.button-default img {
	padding-left: 5px;
}

@media (min-width: 64em) {
	.quickview-detail.pois .slider-section .glide__arrows {
		width: 99%;
	}
}