.thematic-map .stage {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
}

.thematic-map {
	--font-family-title: var(--font-display-black);
	--font-family-body: var(--font-body);
	--text-color-title: var(--gray-900);
	--text-color-body: var(--gray-900);

	width: 100%;
	margin: 0 auto var(--space-16);
	position: relative;
	padding-top: var(--space-8);
	color: var(--text-color-body);
	background-color: #faf2e8;
}

.thematic-map h2 {
	margin: 0;
	position: relative;
	letter-spacing: -1.5px;
	line-height: 32px;
	color: var(--red-alt);
	font-size: 42px;
	font-family: var(--font-burford-inline);
	text-transform: uppercase;
	padding: 0 var(--space-3);
}


.thematic-map.slides .header {
	display: flex;
	flex-direction: column;
	margin-bottom: var(--space-12);
	position: relative;
	z-index: 1;
}

/***
	Map when no hero is present
****/

.thematic-map .static-map-mobile {
	display: none;
}

.thematic-map.show-static-map-mobile .stage {
	display: none;
}

.thematic-map.show-static-map-mobile .header {
	display: none;
}

.thematic-map.show-static-map-mobile .static-map-mobile {
	display: block;
}

@media (min-width: 48em) {
	
	.thematic-map.show-static-map-mobile .stage {
		display: grid;
	}
	
	.thematic-map.show-static-map-mobile .header {
		display: block;
	}
	
	.thematic-map.show-static-map-mobile .static-map-mobile {
		display: none;
	}
	
	.thematic-map.show-static-map-mobile .static-map-mobile {
		display: none;
	}
}

/***
	End map when no hero is present
****/

.thematic-map.slides .header .description > span {
	color: var(--red-alt);
	font-style: italic;
	font-size: 16px;
	font-weight: bold;
}

.thematic-map.slides .header .description  {
	margin: 0;
	position: relative;
	gap: 10px;
	line-height: 23px;
	color: var(--gray-dark);
	font-size: 16px;
	font-family: var(--font-body);
	padding: 0 var(--space-4);
}

/***
	Map SVG
****/
.thematic-map .map {
	position: relative;
	min-height: 400px;
	overflow: hidden;
}

.thematic-map .map > svg {
    transform: translate(-28%, 16%) scale(2);
}

#bg {
	display: none;
}

#downtown-highlight {
	opacity: 0
}

#downtown-inset-container {
	display: none;
}

#downtown-inset-container.active {
	display: block;
	transform: translate(-75px, 175px) scale(1.5);
}

#downtown-inset-container.active #inset-gradient {
	opacity: 0;
}

#downtown-inset-container.active #title {
	transform: translate(70px, -80px);
}

#downtown-inset-container.active #downtown_00000163074410626405676000000014851835031468709033_ {
	fill: #f78b8b;
}

.thematic-map .map > svg {
	position: relative;
}

.thematic-map .map #POIs.active,
.thematic-map .map #texas-map.active {
	opacity: 0.5;
}

.thematic-map .map > svg [data-map-beacon] {
	cursor: pointer;
	pointer-events: all;
}

.thematic-map .map > svg [data-map-poi] {
	transition: display ease 0.6s;
	pointer-events: all;
}

.thematic-map .map [data-map-poi].active,
.thematic-map .map [data-unique-poi-id].active,
.thematic-map .map [data-map-poi].hover,
.thematic-map .map [data-unique-poi-id].hover {
	opacity: 1;
}

.thematic-map .map [data-map-poi]: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 .map #state_of_texas {
	display: none;
}

/*** 
	Slider Layout 
***/

.thematic-map .regions [data-poi] {
	margin-bottom: var(--space-10);
	max-width: 100vw;
	padding: var(--space-2) 26px;
	margin-left: auto;
	margin-right: auto;
}

.thematic-map .regions .image  {
	position: relative;
}

.thematic-map .regions .image img {
	width: 100%;
}

.thematic-map .regions .image::after {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}


.thematic-map .regions .slide-info {
	position: absolute;
	top: 0;
    display: flex;
    z-index: 5;
    padding: 30px 30px 10px;
    flex-direction: column;
    height: 100%;
	justify-content: space-between;
	align-items: self-start;
}

.thematic-map .regions {
	position: relative;
}

.thematic-map .dropdown-list-container {
    margin: 0 25px;
}

.thematic-map .dropdown-list {
    position: relative;
	display: flex;
	justify-content: center;
	height: 30px;
}

.thematic-map .dropdown-list > i {
    position: relative;
    color: var(--red-alt);
	font-size: 14px;
	padding: 10px 15px 0px 5px;
	background-color: var(--white);
}

.thematic-map .dropdown-selected {
    background-color: var(--white);
    padding: 5px 10px;
	width: 100%;
	font-size: 14px;
	line-height: 23px;
	color: var(--red-alt);
	font-family: var(--font-frutiger-bold-condensed);
    cursor: pointer;
}

.thematic-map .dropdown-selected[data-value] {
	font-size: 13.5px;
	line-height: 23px;
}

.thematic-map .dropdown-options {
    display: none; 
    position: absolute;
    width: 100%;
    top: 100%;
	left: 0px;
	padding: 15px;
	color: var(--red-alt);
	font-size: 14px;
	line-height: 23px;
    background-color: var(--white);
    z-index: 1000;
}

.thematic-map .dropdown-option {
    padding: 2px 0px;
	font-size: 14px;
	line-height: 23px;
	font-family: var(--font-frutiger-bold-condensed);
    cursor: pointer;
}

.thematic-map .dropdown-option[data-value="Henry B. Gonzalez Convention Center"],
.thematic-map .dropdown-option[data-value="Historic La Villita"],
.thematic-map .dropdown-option[data-value="Historic Market Square"],
.thematic-map .dropdown-option[data-value="San Fernando Cathedral"],
.thematic-map .dropdown-option[data-value="The Alamo"],
.thematic-map .dropdown-option[data-value="The River Walk"],
.thematic-map .dropdown-option[data-value="San Antonio Missions National Historic Park"],
.thematic-map .dropdown-option[data-value="Tower of the Americas"] {
    margin-left: 15px;
}

.thematic-map .dropdown-option:hover {
    background-color: white;
}

.thematic-map .regions .content {
	background-color: white;
}

.thematic-map .regions h3 {
	font-family: var(--font-burford);
    font-size: 31.92px;
    line-height: 27.13px;
    color: var(--white);
	margin-bottom: 70px;
    text-transform: uppercase;
}

.thematic-map .regions .slide-description {
	margin-bottom: 15px;
	color: #FFF;
	position: relative;
	top: -55px;
	font-size: 14px;
	font-style: normal;
	line-height: 25px; 
}

.thematic-map .regions .col-right {
    position: absolute;
    bottom: 0px;
    width: 100%;
    z-index: 5;
    height: 70px;
    background-color: var(--red-alt);
}

.thematic-map .regions .read-more-button-mobile,
.thematic-map .regions .read-more-button-desktop {
	--text-color: var(--white);
    --shape-color: var(--salmon-alt);
    position: relative;
    z-index: 2;
	display: flex;
	align-items: center;
    padding: 12px 20px;
    margin: 0;
	left: 10px;
	min-width: 90px;
	border-left-width: 20px;
	height: 33px;
    font-family: var(--font-display);
    font-weight: normal !important;
    font-size: 16px;
    line-height: 26px;
    text-decoration: none !important;
    text-align: center;
	text-transform: uppercase;
    white-space: nowrap;
    color: var(--text-color);
    background: none;
	background-color: var(--salmon-alt);
    border: none;
	top: -130px;
    border-radius: 0;
    transition: color var(--transition);
}

.thematic-map .regions .read-more-button-mobile::before,
.thematic-map .regions .read-more-button-desktop::before {
	position: absolute;
    inset: 0;
    z-index: -1;
	top: 0;
	height: 40px;
    display: block;
	left: 130px;
    content: '';
    background: url(/includes/client_public/assets/shared/leisure-map-vector-right.svg) no-repeat;
    width: 30px;
}

.thematic-map .regions .read-more-button-mobile::after,
.thematic-map .regions .read-more-button-desktop::after {
	position: absolute;
    inset: 0;
    z-index: -1;
	left: -15px;
	top: 0;
	height: 40px;
    display: block;
    content: '';
    background: url(/includes/client_public/assets/shared/leisure-map-vector-left.svg) no-repeat;
    width: 30px;
}

.thematic-map .regions .read-more-button-desktop {
    display: none;
}

.thematic-map .regions .col-right .listing-details {
	display: flex;
	position: relative;
    justify-content: center;
    bottom: 50px;
    gap: 10px;
}

.thematic-map .regions .col-right .listing-details > div {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thematic-map .regions .col-right .listing-details > div .feature {
	width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    background-color: #FF5959;
    clip-path: circle(50% at 50% 50%);
}

.thematic-map .regions .col-right .listing-details > div .feature .rating {
	font-family: var(--font-burford);
    font-size: 21.33px;
    line-height: 21.33px;
    text-align: center;
    align-self: center;
    color: var(--white);
}

.thematic-map .regions .col-right .listing-details > div .title {
	font-family: var(--font-frutiger);
    color: var(--white);
    text-transform: uppercase;
    margin-top: 5px;
	font-size: 11.17px;
    line-height: 13.41px;
}

.thematic-map .regions .col-right .listing-details > div .icon {
	width: 25.69px;
	height: 22.86px;
	margin-bottom: 5px;
	display: flex;
    justify-content: center;
    align-items: center;
}

.thematic-map .regions .arrows {
	display: none;
}

.thematic-map .regions .arrows .arrow {
	background-color: transparent;
	box-shadow: none;
	font-size: 45px;
	margin: 0px;
	width: var(--space-6);
	height: var(--space-6);
}

.thematic-map .regions .arrows .arrow:hover {
	color: #141414;
}

.thematic-map .regions .arrows .arrow:focus {
	outline: none;
}

.thematic-map .regions a i {
	margin-left: var(--space-1);
}

.thematic-map #title {
	display: none;
}

@media (min-width: 25em) {
	.thematic-map .map > svg {
		transform: translate(-28%, 0%) scale(2);
	}
}

@media (min-width: 30em) {
	.thematic-map .map {
		min-height: 450px;
	}
	.thematic-map .map > svg {
		transform: translate(-30%, -5%) scale(1.9);
	}
}

@media (min-width: 35em) {
	.thematic-map .map > svg {
		transform: translate(-30%, -5%) scale(1.8);
	}
}

@media (min-width: 37em) {
	.thematic-map .map > svg {
		transform: translate(-30%, -20%) scale(1.9);
	}

	.thematic-map.slides .header {
		margin-bottom: 130px;
	}
}

@media (min-width: 40em) {
	.thematic-map .map {
		width: 100%; 
		transform: translateX(0px);
	}

	.thematic-map .map > svg {
		transform: translate(-30%, -20%) scale(1.8);
	}

	.thematic-map .stage-bottom {
		display: flex;
		flex-direction: column;
	}

	.thematic-map .dropdown-list-container {
		margin: 0 0px;
		align-self: center;
		min-width: 600px;
		max-width: 700px;
	}

	.thematic-map .dropdown-list {
		left: 0px; 
		width: 100%;
    	margin: 0 0px;
	}

	.thematic-map .dropdown-selected {
		width: 100%;
	}

	.thematic-map .dropdown-options {
		width: 100%;
	}

	.thematic-map .dropdown-list > i {
		right: 0px;
	}
}

@media (min-width: 42em) {
	.thematic-map .map > svg {
		transform: translate(-200px, -100px) scale(1.7);
	}
}

@media (min-width: 45em) {
	.thematic-map .map > svg {
		transform: translate(-30%, -30%) scale(1.7);
	}

	.thematic-map.slides .header {
		margin-bottom: 160px;
	}
}

/*
	Desktop Overwrites
*/

@media (min-width: 48em) {
	.thematic-map .dropdown-list {
		display: none;
	}
	

	.thematic-map .regions .read-more-button-mobile,
	.thematic-map .regions .read-more-button-desktop {
		top: -45px;
	}

	.thematic-map .dropdown-list-container {
		display: none;
	}

	.thematic-map .map > svg {
		width: 100%;
		transform: unset;
		width: auto;
		margin: 0px;
		transform: translate(5%, -16%);
	}

	.thematic-map .stage {
		height: 700px;
		position: relative;
		display: grid;
		grid-template-columns: 1fr 2fr;
		grid-template-rows: 1fr;
		max-width: 100vw;
	}

	.thematic-map.slides .stage-bottom {
		grid-column: 1 / span 1;
		grid-row: 1/ span 2;
		justify-self: end;
		align-self: center;
		position: absolute;
		width: 45vw;
		left: -15px;
		top: 10%;
		max-width: 475px;
		margin: 0px 0px 0px var(--space-4);
		z-index: 10;
	}

	.thematic-map .regions .slide-info {
		justify-content: flex-start;
	}

	.thematic-map .regions .read-more-button {
		top: -50px;
	}

	.thematic-map .regions [data-poi] {
		padding: var(--space-2) 18px;
	}

	.thematic-map.slides .map {
		overflow: hidden;
		grid-column: 1 / span 2;
		grid-row: 1/ span 1;
	}

	#downtown-inset-container {
		display: block;
	}

	.thematic-map.slides .header {
		margin-bottom: 50px;
	}

	.thematic-map .map #state_of_texas {
		display: block;
	}
}

@media (min-width: 64em) {
	.thematic-map.slides .header {
		display: flex;
		flex-direction: column;
		max-width: 375px;
		position: absolute;
		left: 10px;
		margin-bottom: var(--space-12);
	}

	.thematic-map .regions .read-more-button-mobile::before, .thematic-map .regions .read-more-button-desktop::before {
		left: 212px;
		width: 30px;
	}

	.thematic-map .regions .read-more-button-desktop {
		display: block;
		padding: 3px 20px 9px;
		top: -50px;
	}

	.thematic-map .regions .read-more-button-mobile {
		display: none;
	}

	.thematic-map .regions .col-right .listing-details > div .icon {
		width: 25.86px;
		height: 23.02px;
	}

	.thematic-map.slides .stage-bottom {
		width: 55vw;
		left: -15px;
		top: 40%;
		max-width: 575px;
	}

	.thematic-map .regions .arrows {
		position: static;
		transform: none;
		display: flex;
		justify-content: flex-start;
		position: relative;
    	z-index: 6;
		gap: 20px;
		margin: 15px 0px;
	}

	.thematic-map .regions .arrows .glide__arrow {
		display: block;
		width: auto;
		height: auto;
		aspect-ratio: unset;
		padding: 0;
		margin: 0;
		border: none;
		border-radius: 0;
	}

	.thematic-map .regions .col-right {
		height: 50px;
	}

	.thematic-map .regions .col-right .listing-details {
		margin-right: 20px;
		bottom: 50px;
		justify-content: flex-end;
		margin-right: 20px;
	}

	.thematic-map .regions h3 {
		align-self: start;
		text-align: left;
	}

	.thematic-map .regions .slide-info {
		justify-content: flex-end;
		top: 30px;
		z-index: 6;
		max-width: 50%;
		padding: 30px 20px 10px;
	}

	.thematic-map #title {
		display: block;
	}
}

@media (min-width: 75em) {
	.thematic-map.slides .header {
		top: 120px;
	}

	.thematic-map.slides .header h2 {
		line-height: 42px;
		font-size: 50px;
		margin-bottom: 0;
	}

	.thematic-map.slides .header .description {
		line-height: 24px;
	}

	.thematic-map.slides .stage-bottom {
		width: 60vw;
		left: 30px;
		top: 350px;
		max-width: 600px;
	}

	.thematic-map.slides .header {
		display: flex;
		flex-direction: column;
		max-width: 450px;
		position: absolute;
		left: 50px;
		margin-bottom: 0;
	}

	.thematic-map .stage {
		height: 800px;
	}

	.thematic-map .regions h3 {
		size: 30px;
		line-height: 24px;
		margin-bottom: 60px;
	}

	.thematic-map .regions a:hover, 
	.thematic-map .regions a > h3:hover {
		color: var(--white);
		text-decoration: none;
		font-weight: normal;
	}

	.thematic-map .regions .slide-description {
		font-size: 12px;
		line-height: 22px;
	}
}

@media (min-width: 90em) {

	.thematic-map.slides .stage-bottom {
		width: 65vw;
		left: 55px;
		top: 350px;
		max-width: 650px;
	}

	.thematic-map.slides .header {
		max-width: 450px;
		left: 75px;
	}
}

@media (min-width: 95em) {

	.thematic-map .stage {
		height: 850px;
	}

	.thematic-map .map > svg {
		transform: translate(100px, -240px);
	}
}

@media (min-width: 100em) {

	.thematic-map .stage {
		height: 950px;
	}

	.thematic-map.slides .stage-bottom {
		width: 75vw;
		max-width: 750px;
		top: 350px;
	}

	.thematic-map.slides .header {
		top: 100px;
	}
}

@media (min-width: 120em) {

	.thematic-map .stage {
		height: 975px;
	}
}

@media (min-width: 125em) {

	.thematic-map .stage {
		height: 1120px;
	}
}

@media (min-width: 137em) {
	.thematic-map .stage {
		height: 1220px;
	}
}

@media (min-width: 156em) {
	.thematic-map .stage {
		height: 1350px;
	}
}

