.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(--primary-color-100);
	--btn-bg-color-hover: var(--primary-color-200);
	--btn-text-color: var(--primary-color-700);

	width: 100%;
	max-width: var(--width-feature);
	margin: 0 auto var(--space-12);
	color: var(--text-color-body);
	opacity: 1 !important;
	position: relative;
	
	background-color: #f8f8f2;
}

.thematic-map h2 {
	margin: 0;
	margin-bottom: var(--space-4);
	color: var(--text-color-title);
	font-family: var(--font-family-title);
	font-size: var(--text-6xl);
	font-weight: 400;
}

.thematic-map .region-list-title {
	font-family: var(--font-pulpo);
	font-size: 30px;
	line-height: 38px;
}

/***
	Map Stage
****/
.thematic-map .stage {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column-reverse;
}

/***
	Map List
****/
.thematic-map .list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	flex: 0 1 auto;
	padding: var(--space-5);
	padding-right: var(--space-3);
	background-image: url('https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/kalamazoo/white_dot_texture_171cd7ab-7f83-4753-8e6a-27f598e2d619.png');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center 5%;
}

.thematic-map .list img {
	align-self: center;
	width: 150px;
	margin-bottom: 20px;
}

.thematic-map .list ul {
	display: none;
}

.thematic-map .list li {
	margin-bottom: var(--space-5);
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	font-size: 22px;
	line-height: 26px;
	font-family: var(--font-montserrat);
	text-transform: uppercase;
	font-weight: 900;
	cursor: pointer;
	transition: color 0.3s;
}

.thematic-map .list li:hover {
	color: var(--green);
}

.thematic-map .list li i {
	font-size: 20px;
	margin-left: 10px;
}

.thematic-map .list li .poi-toggle {
	/*! display: inline; */
	font-family: var(--font-family-body);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: var(--leading-none);
	text-align: left;
	background-color: transparent;
	flex: 1 1 auto;
}

.thematic-map .list li .poi-toggle.hover,
.thematic-map .list li .poi-toggle.active {
	text-decoration: underline;
}

.thematic-map .list .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;
}

.thematic-map .list .view-all:hover {
	background-color: var(--btn-bg-color-hover);
}

/***
	Map SVG
****/
.thematic-map .map {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.thematic-map .map svg {
	position: relative;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	transform: none;
	margin: 0px;
}

.thematic-map .map svg [data-map-beacon] {
	cursor: pointer;
}

.thematic-map .map svg .flag {
	display: none;
	transition: display ease 0.6s;
}

.thematic-map .map .flag.active,
.thematic-map .map .flag.hover {
	display: block;
}
.thematic-map .map .flag:hover {
	display: block;
}

/* Slider */
.thematic-map .region-content {
	width: 100%;
	display: block;
}

.thematic-map .slider-cont {
	position: relative;
}

.thematic-map .slider-cont .glide__slides {
	min-height: 741px;
	position: relative;
}

.thematic-map .glide__arrows {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
	width: 300px;
	opacity: 1;
	pointer-events: none;
}

.thematic-map .glide__arrow {
	color: var(--green);
	font-size: 36px;
}

.thematic-map .region-slide {
	background-image: url('https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/kalamazoo/BG_1204071e-fd0c-44aa-b2c4-e8d0d1f4ac78.png');
	background-repeat: no-repeat;
	background-size: cover;
	height: auto;
	padding-bottom: 15px;
	position: relative;
	box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.15);
}

.thematic-map .glide__slide--active {
	opacity: 1;
	pointer-events: all;
}

.thematic-map .glide__arrows.active {
	opacity: 1;
	pointer-events: all;
}

.thematic-map .region-slide .close-btn {
	display: none;
}

.thematic-map .region-slide .close-btn:hover {
	color: black;
}

.thematic-map .region-slide .close-btn p {
	font-family: var(--font-montserrat);
	font-weight: 900;
}

.thematic-map .region-slide .close-btn i {
	margin-right: 10px;
}

.thematic-map .data-cont {
	padding-top: 0;
}

.thematic-map .data-top {
	display: flex;
	margin: 0 auto;
}

.thematic-map .left {
	display: none;
}

.thematic-map .left svg {
	width: 225px;
	height: 189px;
}

.thematic-map .right {
	padding: 0;
	width: 100%;
}

.thematic-map .right h2 {
	text-transform: capitalize;
	font-family: var(--font-pulpo);
	font-size: 24px;
	line-height: 64px;
	margin-bottom: 0;
	background-color: var(--beige);
	text-align: center;
}

.thematic-map .region-desc {
	width: 100%;
	white-space: normal;
	font-family: var(--font-karla);
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 18px;
	padding: 35px 35px 12px 35px;
}

.thematic-map .region-more {
	text-decoration: none;
	text-transform: uppercase;
	font-family: var(--font-montserrat);
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
	padding-left: 35px;
}

.thematic-map .image-cont {
	margin: 0 auto;
	max-width: 1170px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	justify-items: center;
	grid-gap: 10px;
	margin-top: 10px;
}

.thematic-map .image-cont.hidden-mobile, .thematic-map .region-desc.hidden-mobile, .thematic-map .region-more.hidden-mobile {
	display: none;
}

.thematic-map .image-cont img {
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	border-bottom-left-radius: 40px;
	margin-bottom: 5px;
}

.thematic-map .image-cont a {
	font-size: 12px;
	font-family: var(--font-montserrat);
	font-weight: 700;
	line-height: 16px;
	text-decoration: none;
	max-width: 150px;
	white-space: normal;
}

.thematic-map .image-cont a:hover {
	color: var(--green);
}

.thematic-map .buttons {
	display: grid;
	width: 100%;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}

.thematic-map .buttons .mobile-btn {
	background-color: #629242;
	font-family: var(--font-karla);
	font-weight: bold;
	color: black;
	text-transform: none;
	border-radius: 0;
	padding: 15px;
}

.thematic-map .buttons .mobile-btn.active {
	background-color: var(--green);
}

.thematic-map .buttons .mobile-btn:hover {
	background-color:  var(--green);
	color: black;
}

/*
	Desktop Overwrites
*/
@media (min-width: 50em) {
	.thematic-map .list {
		padding: 20px 50px;
	}

	.thematic-map .map svg {
		margin: 0px;
	}

	.thematic-map .image-cont a {
		max-width: 200px;
	}

	.thematic-map .glide__arrows {
		width: 460px;
	}
}

@media (min-width: 64em) {
	.thematic-map .region-content {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		display: block;
	}

	.thematic-map .glide__arrows {
		position: absolute;
		top: 220px;
		left: 80px;
		display: flex;
		justify-content: space-between;
		width: 460px;
		opacity: 0;
		pointer-events: none;
	}

	.thematic-map .region-content.hidden {
		display: none;
	}

	.thematic-map .stage {
		height: 730px;
		flex-direction: row;
	}

	.thematic-map .list {
		align-items: flex-start;
		min-width: 380px;
		background-image: url('https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/kalamazoo/white_dot_texture_desktop_ba453fa1-b13e-4d0c-8d48-31da290d2600.png');
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: center -10%;
	}

	.thematic-map .list ul {
		height: auto;
		margin-bottom: var(--space-6);
		display: block;
	}

	.thematic-map .map svg {
		width: 100%;
	}

	.thematic-map .list li {
		font-size: 18px;
		line-height: 22px;
	}

	.thematic-map .region-list-title {
		font-size: 38px;
		line-height: 50px;
	}

	
	.thematic-map .list img {
		width: 200px;
		margin-bottom: 20px;
	}

	.thematic-map .list {
		justify-content: flex-start;
	}

	.thematic-map .left {
		width: 343px;
		height: 343px;
		border-radius: 50%;
		background-color: var(--violet);
		display: flex;
		justify-content: center;
		align-items: center;
		flex: 1 0 auto;
	}

	.thematic-map .region-slide {
		background-image: url('https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/kalamazoo/slide_bg_dc64c2b3-80b0-4c2b-a96c-add841b52a90.png');
		background-repeat: no-repeat;
		background-size: auto;
		height: 100%;
		padding-bottom: 0;
		position: relative;
		box-shadow: none;
	}

	.thematic-map .region-slide .close-btn {
		border-top-left-radius: 25px;
		border-top-right-radius: 25px;
		border-bottom-left-radius: 25px;
		background-color: var(--green);
		text-transform: uppercase;
		font-size: 20px;
		position: absolute;
		right: 50px;
		top: 100px;
		padding: 15px;
		display: block;
	}

	.thematic-map .right {
		padding: 60px;
		padding-left: 80px;
		padding-bottom: 55px;
		width: auto;
	}

	.thematic-map .right h2 {
		text-transform: capitalize;
		font-family: var(--font-pulpo);
		font-size: 45px;
		line-height: 50px;
		margin-bottom: 10px;
		background-color: transparent;
		text-align: left;
	}

	.thematic-map .data-cont {
		padding-top: 75px;
	}

	.thematic-map .glide__arrows {
		position: absolute;
		top: 220px;
		left: calc((100vw - 900px)/2 + 170px);
		display: flex;
		justify-content: space-between;
		width: 460px;
		opacity: 1;
		pointer-events: none;
	}

	.thematic-map .region-desc {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 18px;
		padding: 0;
	}

	.thematic-map .buttons {
		display: none;
	}

	.thematic-map .region-more {
		font-size: 20px;
		line-height: 24px;
		font-weight: 700;
		padding-left: 0;
	}

	.thematic-map .image-cont {
		margin: 0 auto;
		max-width: 900px;
		display: flex;
		width: 100%;
		justify-content: space-between;
	}

	.thematic-map .image-cont a {
		font-size: 20px;
		font-weight: 700;
		line-height: 24px;
		max-width: 200px;
	}

	.thematic-map .region-desc.hidden-mobile, .thematic-map .region-more.hidden-mobile {
		display: block;
	}

	.thematic-map .image-cont.hidden-mobile {
		display: flex;
	}

	.thematic-map .data-top {
		max-width: 900px;
	}

	.thematic-map .glide__arrow {
		font-size: 48px;
	}
}

@media (min-width: 75em) {
	.thematic-map .image-cont {
		margin: 0 auto;
		max-width: 1170px;
		display: flex;
		width: 100%;
		justify-content: space-between;
	}

	.thematic-map .image-cont a {
		max-width: 250px;
	}

	.thematic-map .region-desc {
		font-size: 18px;
	}
}

@media only screen and (min-width: 90.063em) {
	.thematic-map .list {
		justify-content: space-between;
		min-width: 576px;
	}

	.thematic-map .list li {
		font-size: 22px;
		line-height: 26px;
	}

	.thematic-map .region-list-title {
		font-size: 43px;
		line-height: 56px;
	}

	.thematic-map .list img {
		width: 237px;
		flex: 1 0 auto;
		margin-bottom: 0;
	}

	.thematic-map .right {
		padding-left: 130px;
	}

	.thematic-map .data-top {
		max-width: 1170px;
	}

	.thematic-map .glide__arrows {
		left: 310px;
	}
}