.thematic-map {
	--font-family-title: var(--font-display);
	--font-family-body: var(--font-body);
	--text-color-title: var(--gray-900);
	--text-color-body: var(--gray-900);

	--btn-bg-color: var(--sw-button-secondary-bg);
	--btn-bg-color-hover: var(--sw-button-secondary-bg-hover);
	--btn-text-color: var(--sw-button-secondary-color);
	--btn-text-color-hover: var(--sw-button-secondary-color-hover);

	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 {
	margin: 0;
	margin-bottom: var(--space-5);
	color: var(--text-color-title);
	font-family: var(--font-family-title);
	font-size: var(--text-6xl);
	font-weight: 400;
	padding: 0 var(--space-5);
}

/***
	Map Stage
****/
.thematic-map .stage {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-rows: 3fr 2fr 5fr;
	grid-template-columns: 1fr;
}

/***
	Map SVG
****/
.thematic-map .map {
	position: relative;
	overflow: hidden;
	width: 100%;
	grid-row: 1 / span 2;
	grid-column: 1 / span 1;
}

.thematic-map .map svg #POIs path:not([data-map-beacon]), 
.thematic-map .map svg #Baseline_Map,
.thematic-map .map svg #Landmarks {
	pointer-events: none;
}

.thematic-map .map svg #POIs path[data-map-beacon]{
	pointer-events: all;
	cursor: pointer;
}

.thematic-map .map svg {
	position: relative;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	transform: none;
	margin: 0px;
}

.thematic-map .map svg [data-map-poi] {
	transition: opacity ease 0.6s;
}

.thematic-map .map svg [data-map-poi].active,
.thematic-map .map svg [data-map-poi].hover {
	opacity: 1;
}

/* Slider */
.thematic-map .region-slides .region {
	padding: 20px 20px 0 20px;
}

.thematic-map .region-slides .slider-cont {
	display: flex;
	flex-direction: column-reverse;
}

.thematic-map .region-slides {
	background-color:var(--light-blue);
	overflow: hidden;
	grid-row: 2 / span 2;
	grid-column: 1 / span 1;
	padding: 50px 0 30px 0;
}

.thematic-map .region-slides .slide {
	height: 100%;
}

.thematic-map .slide h4 {
	margin-bottom: 8px;
}

.thematic-map .slide h4 a {
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: var(--text-3xl-1);
	line-height: var(--leading-none);
	color: var(--text-black);
}

.thematic-map .slide .description {
	padding-bottom: 6px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.25px;
	color: var(--text-black);
	line-height: var(--leading-relaxed);
}

.thematic-map .slide .read-more {
	font-family: var(--font-body);
	font-weight: 700;
	text-decoration: none;
	font-size: 14px;
	color: var(--text-black);
	line-height: 3;
	padding-bottom: 3px;
	border-bottom: 5px solid var(--orange);
}

/* Slider Arrows */
.thematic-map .region-slides .slider-cont .arrows-count-container {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-bottom: 30px;
}

.thematic-map .region-slides .slider-cont .slide-count {
	font-family: var(--font-display-wide);
	text-transform: uppercase;
}

.thematic-map .region-slides .slider-cont .slide-count .of {
	padding: 0 3px;
}

.thematic-map .region-slides .slider-cont .glide__arrows {
	display: flex;
	gap: 21px;
	z-index: 1;
}

.thematic-map .glide__arrows .glide__arrow {
	color: var(--text-black);
	outline: 2px solid var(--text-black);
	background-color: transparent;
	margin: 0;
	width: 32px;
	height: 32px;
}

.thematic-map .glide__arrows .glide__arrow:hover {
	background-color: transparent;
}

@media (min-width: 25em) {
	.thematic-map .stage {
		grid-template-rows: 3fr 0.5fr 5fr;
	}
}

/*
	Desktop Overwrites
*/
@media (min-width: 50em) {
	.thematic-map .stage {
		position: relative;
		align-items: center;
		grid-template-columns: 8fr 85px 5fr;
		grid-template-rows: 1fr;
		max-width: 1440px;
		min-height: 500px;
	}

	.thematic-map .map {
		grid-column: 1 / span 2;
		grid-row: 1 / span 1;
	}

	.thematic-map .map svg {
		padding-left: 20px;
	}

	.thematic-map .region-slides {
		grid-column: 2 / span 2;
		grid-row: 1 / span 1;
		height: 100%;		
		margin: 0;
		display: grid;
		align-items: center;
		grid-template-columns: 85px 1fr;
		grid-template-rows: 1fr;
		padding: 0;
	}

	.thematic-map .region-slides .region {
		padding: unset;
	}
	
	.thematic-map .region-slides .slider-cont {
		display: flex;
		flex-direction: column;
	}

	.thematic-map .region-slide {
		grid-column: 2 / span 1;
		grid-row: 1 / span 1;
		max-width: 350px;
		padding-left: 15px;
		width: 80%;
	}

	.thematic-map .region-slides .slider-cont .arrows-count-container {
		margin: 30px 0;
	}
}

@media (min-width: 64em) {
	.thematic-map .stage {
		height: 700px;
	}

	.thematic-map .region-slide {
		max-width: 400px;
		padding-left: 25px;
	}

	/* Slider */
	.thematic-map .region-slides div.glide__slide {
		width: 100%;
	}
		
	.thematic-map .slide h4 a {
		font-size: 42px;
	}
		
	.thematic-map .slide .description {
		font-size: 16px;
	}
	
	.thematic-map .slide .read-more {
		font-size: 16px;
	}
}

@media (min-width: 90em) {
	.thematic-map .stage {
		height: 700px;
	}

	.thematic-map .region-slide {
		max-width: 550px;
		width: 85%;
		height: 100%;
	}

	.contentRender_name_plugins_collections_type_custom_map_slides,
	.thematic-map .region-slide .region {
		height: 100%;
	}

	.thematic-map .region-slides .slider-cont {
		display: grid;
    grid-template-rows: 4fr 1fr;
    gap: 20px;
		padding-left: 6px;
		height: 100%;
	}

	.thematic-map .region-slides .slider-cont .arrows-count-container {
		margin-bottom: 35px;
		align-self: end;
	}

	.thematic-map .region-slides .slider-cont .glide__track {
		align-self: end;
	}

	.thematic-map .slide h4 a {
		font-size: 60px;
	}
}