html {
	scroll-behavior: smooth;
}

body {
	--green: #3a7c3c;
	--orange: #df542f;
	--blue: #283583;
	--fat-shadow: 0px 0px 4px rgba(0, 0, 0, 0.05), 0px 0px 20px rgba(0, 0, 0, 0.1);
	--shadow-inset: inset -2px -2px 4px rgba(255, 255, 255, 0.5),
		inset 2px 2px 4px rgba(70, 70, 70, 0.12);
}

.cg_wrapper {
	margin-bottom: 2em;
}

/***************/
/* Les filters */

/* Global */
.cs_toolbar {
	display: flex;
	gap: 1em;
	justify-content: space-between;
	margin-bottom: 20px;
	flex-direction: column-reverse;
}

@media screen and (min-width: 1100px) {
	.cs_toolbar {
		flex-direction: row;
	}

	.cs_primary_filters,
	.cs_secondary_filters {
		display: flex;
		gap: 1em;
	}
}

.active {
	font-weight: bold;
}

.filter-button {
	display: inline-block;
	height: fit-content;
	font-size: 16px;
	border-radius: 4px;
	border: 1px solid #000;
	padding: 2px 12px;
	background-color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.1s ease-in;
}

.filter-button:hover,
.filter-button.active,
.filter-button:focus {
	color: #fff !important;
	transition: all 0.1s ease-out;
}
.filter-button:focus {
	outline: 1px dashed var(--green);
}

.filter-button.disabled {
	pointer-events: none;
	filter: grayscale(100);
	opacity: 0.8;
}

.filter-button.tout {
	color: var(--green);
	border-color: var(--green);
}

.filter-button.tout:hover,
.filter-button.tout.active,
.filter-button.tout:focus {
	background-color: var(--green);
}
.filter-button.actualites {
	color: var(--orange);
	border-color: var(--orange);
}

.filter-button.actualites:hover,
.filter-button.actualites.active,
.filter-button.actualites:focus {
	background-color: var(--orange);
	border-color: var(--orange);
}

.filter-button.evenements {
	color: var(--green);
	border-color: var(--green);
}

.filter-button.evenements:hover,
.filter-button.evenements.active,
.filter-button.evenements:focus {
	background-color: var(--green);
	border-color: var(--green);
}

.filter-button.formations {
	color: var(--blue);
	border-color: var(--blue);
}

.filter-button.formations:hover,
.filter-button.formations.active,
.filter-button.formations:focus {
	background-color: var(--blue);
	border-color: var(--blue);
}

/* Primary */
@media screen and (max-width: 1100px) {
	.cs_primary_filters {
		display: flex;
		gap: 0.5em;

		justify-content: stretch;
	}

	.cs_primary_filters button {
		font-size: 0.8em;
		padding: 0;
	}
}

/* Secondary */
.cs_mode {
	display: flex;
	gap: 1em;
}

@media screen and (min-width: 1100px) {
	.cs_secondary_filters {
		margin-left: auto;
	}
}

@media screen and (max-width: 1100px) {
	.cs_secondary_filters {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5em;
		justify-content: end;
	}

	.cs_secondary_filters button {
		width: max-content;
	}

	.cs_secondary_filters .filter_select {
		min-width: 35%;
	}

	.cs_secondary_filters .filter_select input {
		font-size: 0.8em !important;
	}
}

.selectContainer {
	border-color: var(--green) !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	color: var(--green) !important;
}
.selectContainer:focus-within {
	outline: 1px dashed var(--green);
}

.filter_by_location {
	min-width: 160px;
}

.filter_by_location {
	--height: 32px;
	--inputFontSize: 16px;
	--inputLeft: 12px;
	--inputColor: var(--green);
	--border-color: var(--green);
	--borderRadius: 4px;

	--clearSelectTop: 0;

	--indicatorTop: 0;
	--indicatorColor: var(--green);

	--listBorderRadius: 0;
	--itemHoverBG: #d8ead8;

	--itemIsActiveBG: var(--green);
	--itemIsActiveColor: #fff;
}

.filter_by_location input[type="text"] {
	text-transform: uppercase;
	color: var(--green) !important;
	font-weight: 600;
}

.filter_by_location input[type="text"]::placeholder {
	color: var(--green) !important;
}

.filter_by_categories,
.filter_by_formations {
	min-width: 260px;
}

.filter_by_categories {
	--inputColor: var(--orange);
	--border-color: var(--orange);
	--indicatorColor: var(--orange);
	--itemIsActiveBG: var(--orange);
	--itemHoverBG: #fadcd4;
}

.filter_by_categories input[type="text"] {
	color: var(--orange) !important;
}

.filter_by_categories input[type="text"]::placeholder {
	color: var(--orange) !important;
}

.filter_by_categories .selectContainer,
.filter_by_categories .listContainer {
	border-color: var(--orange) !important;
	color: var(--orange) !important;
}

.filter_by_categories .clearSelect path {
	fill: var(--orange) !important;
}

.filter_by_formations {
	--inputColor: var(--blue);
	--border-color: var(--blue);
	--indicatorColor: var(--blue);
	--itemIsActiveBG: var(--blue);
	--itemHoverBG: #eff1ff;
}

.filter_by_formations input[type="text"] {
	color: var(--blue) !important;
}

.filter_by_formations input[type="text"]::placeholder {
	color: var(--blue) !important;
}

.filter_by_formations .selectContainer,
.filter_by_formations .listContainer {
	border-color: var(--blue) !important;
	color: var(--blue) !important;
}

.filter_by_formations .clearSelect path {
	fill: var(--blue) !important;
}

.selectContainer .first {
	margin: 0;
}

.selectedItem {
	font-size: 16px;
}

.clearSelect path {
	fill: var(--green) !important;
}

.listContainer {
	border-radius: 4px !important;
	border: 1px solid var(--green) !important;
	transform: translate(-1px, -9px);
	padding-top: 5px;
	width: max-content !important;
	overflow-x: visible !important;
}
.listContainer .item {
	text-overflow: unset !important;
}

/* / Les filters */
/*****************/

/*****************/
/* La grid de posts */
.cs_post_grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

/* Les cards des posts */
.cs_post {
	overflow: hidden;
	background: #ffffff;
	width: 100%;
	box-shadow: var(--fat-shadow);
	border-radius: 8px;
	position: relative;
	transition: all 0.1s ease-in;
}

@media screen and (min-width: 768px) {
	.cs_post_grid .cs_post {
		width: calc(1 / 2 * 100% - (1 - 1 / 2) * 30px);
	}
}

@media screen and (min-width: 1100px) {
	.cs_post_grid .cs_post {
		width: calc(1 / 3 * 100% - (1 - 1 / 3) * 30px);
	}
	.cs_post_grid.cs_post_grid_2cols .cs_post {
		width: calc(1 / 2 * 100% - (1 - 1 / 2) * 30px);
	}
}

.cs_pin {
	display: flex;
	position: absolute;
	top: 10px;
	right: 10px;
	justify-content: end;
	align-items: center;
	background-color: #2d2d2d;
	padding: 0.4em 0.5em;
	border-radius: 3px;
}

.cs_pin svg {
	max-width: 16px;
	height: 16px;
}

.cs_pin svg path {
	fill: #fff;
}

.cs_pin span {
	display: block;
	width: 0;
	height: 1em;
	line-height: 1em;
	color: #fff;
	font-size: 0.7em;
	overflow: hidden;
	transition: all 0.3s ease-in;
}

.cs_pin:hover span {
	margin-right: 0.5em;
	width: auto;
	transition: all 0.3s ease-out;
}

.cs_thumbnail {
	height: 230px;
	overflow: hidden;
	display: flex;
	align-items: center;
	position: relative;
}
.cs_thumbnail img {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
}
.cs_post_list .cs_thumbnail {
	min-width: 180px !important;
	max-width: 180px !important;
}
@media screen and (max-width: 768px) {
	.cs_post_list .cs_thumbnail {
		min-width: 100% !important;
		max-width: 180px !important;
	}
}
.cs_post_list .cs_thumbnail img {
	object-fit: contain;
	object-position: center;
	background-color: #f3f3f3;
}

.cs_post_bottom {
	padding: 20px;
	padding-top: 10px;
}

.cs_post h2 {
	font-size: 20.8px;
	margin: 0;
	line-height: 1.2em;
	text-transform: uppercase;
	font-weight: 600;
	text-align: left !important;
}
body .cs_post {
	position: relative;
}
.cs_post:focus-within {
	transform: scale(1.1);
	outline: 1px dashed var(--green);
}
.cs_post h2 a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

body .cs_post.evenement h2,
body .cs_post.evenement h2 a {
	color: var(--green) !important;
}

.cs_post.post h2 {
	color: var(--orange);
	text-align: left;
}

body .cs_post.formation h2,
body .cs_post.formation h2 a {
	color: var(--blue) !important;
}

.cs_excerpt {
	font-size: 1em;
	line-height: 1.2em;
	margin: 0;
}

.cs_post_meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.4em;
}

.cs_post_date {
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: 1em;
}

.cs_post_type {
	font-size: 0.9em;
	display: inline-block;
	background-color: var(--orange);
	color: #fff;
	height: fit-content;
	border-radius: 3px;
	padding: 0 5px;
	text-transform: lowercase;
}

.cs_post_type.evenement {
	background-color: var(--green);
}

.cs_post_type.post {
	background-color: var(--orange);
}

.cs_post_type.formation {
	background-color: var(--blue);
}

/* le block social */
.cs_social {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cs_socialGrid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 30px;
	padding: 5% 0;
}

@media screen and (min-width: 768px) {
	.cs_social {
		width: calc(1 / 2 * 100% - (1 - 1 / 2) * 30px);
	}

	.cs_socialGrid {
		row-gap: 60px;
		padding: 0 10%;
	}
}

@media screen and (min-width: 1100px) {
	.cs_social {
		width: calc(1 / 3 * 100% - (1 - 1 / 3) * 30px);
	}
}

.cs_socialGrid a {
	display: flex;
	justify-content: center;
	width: 33%;
}

.cs_socialGrid a:hover {
	filter: contrast(1.6);
	transition: all 0.1s ease-in;
}

.cs_socialGrid a.rss {
	transform: translateY(15px) rotate(-5deg);
}

.cs_socialGrid a.twitter {
	transform: rotate(10deg);
}

.cs_socialGrid a.mastodont {
	transform: translateY(15px) rotate(10deg);
}

.cs_socialGrid a.instagram {
	transform: translateY(20px) translateX(10px) rotate(-8deg);
}

.cs_socialGrid a.linkedin {
	transform: rotate(10deg);
}

.cs_socialGrid a.facebook {
	transform: translateY(25px) translateX(-15px) rotate(8deg);
}

.cs_socialGrid a.youtube {
	transform: rotate(8deg);
}

.cs_social b {
	font-size: 32px;
	color: var(--blue);
	font-weight: 600;
	text-transform: uppercase;
	display: block;
	text-align: center;
	transform: rotate(3deg);
	margin-top: 40px;
}

.cg_paginate {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin: 20px 0;
}

.cg_paginate button {
	display: inline;
	width: fit-content;
	font-size: 16px;
	background-color: #fff;
	color: #3a7c3c;
	border: 1px solid #3a7c3c;
	border-radius: 3px;
	padding: 0 0.4em;
	height: fit-content;
	line-height: 1.5em;
}

.cg_paginate button.active,
.cg_paginate button:hover,
.cg_paginate button:focus {
	cursor: pointer;
	background-color: #3a7c3c;
	color: #fff;
}
.cg_paginate button:focus {
	outline: 1px dashed var(--green);
}
/* / La grid de posts */
/*****************/

/*****************/
/* La list de posts */
.cs_post_list {
	display: flex;
	flex-direction: column-reverse;
	gap: 1em;
}

.cg_posts_group {
	display: flex;
	background-color: #84bf42;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--fat-shadow);
}

.cg_posts_group_title {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	text-align: center;
	text-transform: uppercase;
	font-size: 1.6em;
	font-weight: 800;
	color: #fff;
	padding: 1em 0;
}

.cg_posts_group_posts {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 3em;
	padding: 2em;
	background-color: #fff;
}

.cg_posts_group_posts .cs_post {
	box-shadow: none;
	border-radius: 0;
	display: flex;
	align-items: flex-start;
	gap: 1em;
}

@media screen and (max-width: 768px) {
	.cs_post_list .cs_post {
		flex-direction: column;
	}
	.cs_post_list .cg_posts_group_posts .cs_post .cs_thumbnail {
		width: 100%;
	}
}

.cg_posts_group_posts .cs_post .cs_post_bottom {
	padding: 0;
}

.cg_posts_group_posts .cs_post .cs_thumbnail {
	width: 33%;
	max-width: 120px;
	height: 120px;
}

.cg_posts_group_posts .cs_post .cs_post_meta {
	justify-content: left;
	align-items: center;
	gap: 1em;
}

/* / La list de posts */
/*****************/

/*****************/
/* La search */
.cs_search {
	padding: 2em;
	margin-bottom: 2em;
	box-shadow: var(--fat-shadow);
	border-radius: 4px;
}

.cs_search l {
	color: var(--green);
	font-weight: bold;
	font-size: 1.2em;
}

.cs_search input {
	background-color: #f7f7f7;
	border: 1px solid #ccc;
	box-shadow: var(--shadow-inset);
	font-size: 1.2em;
	padding: 0.5em !important;
	border-radius: 4px;
	font-weight: 200;
	color: var(--green);
}

.cs_search input:focus {
	background-color: #fff;
}

/* / La search */
/*****************/

/*****************/
/* La map */
/*****************/
.post_grid_map__popup {
	min-width: 200px;
}
.mapboxgl-popup-close-button {
	text-align: right;
	padding-right: 0.5rem;
}
.post_grid_map__popup h3 {
	font-size: 1.3em;
	margin: 0;
}
.post_grid_map__popup p {
	font-size: 0.9rem;
	margin: 0;
}
.post_grid_map__popup b {
	background-color: var(--green);
	color: #fff;
	padding: 0.1em 0.3em;
	border-radius: 3px;
}
#map .mapboxgl-ctrl-logo,
#map .mapboxgl-ctrl-bottom-right {
	display: none !important;
}
/*****************/
/* Default map styles */
/*****************/
.mapboxgl-map {
	font:
		12px/20px Helvetica Neue,
		Arial,
		Helvetica,
		sans-serif;
	overflow: hidden;
	position: relative;
	-webkit-tap-highlight-color: rgb(0 0 0/0);
}
.mapboxgl-canvas {
	position: absolute;
	left: 0;
	top: 0;
}
.mapboxgl-map:-webkit-full-screen {
	width: 100%;
	height: 100%;
}
.mapboxgl-canary {
	background-color: salmon;
}
.mapboxgl-canvas-container.mapboxgl-interactive,
.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass {
	cursor: grab;
	-webkit-user-select: none;
	user-select: none;
}
.mapboxgl-canvas-container.mapboxgl-interactive.mapboxgl-track-pointer {
	cursor: pointer;
}
.mapboxgl-canvas-container.mapboxgl-interactive:active,
.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass:active {
	cursor: grabbing;
}
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate,
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate .mapboxgl-canvas {
	touch-action: pan-x pan-y;
}
.mapboxgl-canvas-container.mapboxgl-touch-drag-pan,
.mapboxgl-canvas-container.mapboxgl-touch-drag-pan .mapboxgl-canvas {
	touch-action: pinch-zoom;
}
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan,
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan
	.mapboxgl-canvas {
	touch-action: none;
}
.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right,
.mapboxgl-ctrl-top-left,
.mapboxgl-ctrl-top-right {
	position: absolute;
	pointer-events: none;
	z-index: 2;
}
.mapboxgl-ctrl-top-left {
	top: 0;
	left: 0;
}
.mapboxgl-ctrl-top-right {
	top: 0;
	right: 0;
}
.mapboxgl-ctrl-bottom-left {
	bottom: 0;
	left: 0;
}
.mapboxgl-ctrl-bottom-right {
	right: 0;
	bottom: 0;
}
.mapboxgl-ctrl {
	clear: both;
	pointer-events: auto;
	transform: translate(0);
}
.mapboxgl-ctrl-top-left .mapboxgl-ctrl {
	margin: 10px 0 0 10px;
	float: left;
}
.mapboxgl-ctrl-top-right .mapboxgl-ctrl {
	margin: 10px 10px 0 0;
	float: right;
}
.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl {
	margin: 0 0 10px 10px;
	float: left;
}
.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl {
	margin: 0 10px 10px 0;
	float: right;
}
.mapboxgl-ctrl-group {
	border-radius: 4px;
	background: #fff;
}
.mapboxgl-ctrl-group:not(:empty) {
	box-shadow: 0 0 0 2px rgb(0 0 0/10%);
}
@media (-ms-high-contrast: active) {
	.mapboxgl-ctrl-group:not(:empty) {
		box-shadow: 0 0 0 2px ButtonText;
	}
}
.mapboxgl-ctrl-group button {
	width: 29px;
	height: 29px;
	display: block;
	padding: 0;
	outline: none;
	border: 0;
	box-sizing: border-box;
	background-color: transparent;
	cursor: pointer;
	overflow: hidden;
}
.mapboxgl-ctrl-group button + button {
	border-top: 1px solid #ddd;
}
.mapboxgl-ctrl button .mapboxgl-ctrl-icon {
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 50%;
}
@media (-ms-high-contrast: active) {
	.mapboxgl-ctrl-icon {
		background-color: transparent;
	}
	.mapboxgl-ctrl-group button + button {
		border-top: 1px solid ButtonText;
	}
}
.mapboxgl-ctrl-attrib-button:focus,
.mapboxgl-ctrl-group button:focus {
	box-shadow: 0 0 2px 2px rgb(0 150 255/100%);
}
.mapboxgl-ctrl button:disabled {
	cursor: not-allowed;
}
.mapboxgl-ctrl button:disabled .mapboxgl-ctrl-icon {
	opacity: 0.25;
}
.mapboxgl-ctrl-group button:first-child {
	border-radius: 4px 4px 0 0;
}
.mapboxgl-ctrl-group button:last-child {
	border-radius: 0 0 4px 4px;
}
.mapboxgl-ctrl-group button:only-child {
	border-radius: inherit;
}
.mapboxgl-ctrl button:not(:disabled):hover {
	background-color: rgb(0 0 0/5%);
}
.mapboxgl-ctrl-group button:focus:focus-visible {
	box-shadow: 0 0 2px 2px rgb(0 150 255/100%);
}
.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
	box-shadow: none;
}
.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E %3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E %3C/svg%3E");
}
@media (-ms-high-contrast: active) {
	.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E %3C/svg%3E");
	}
	.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E %3C/svg%3E");
	}
}
@media (-ms-high-contrast: black-on-white) {
	.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E %3C/svg%3E");
	}
	.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E %3C/svg%3E");
	}
}
.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E %3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E %3C/svg%3E");
}
@media (-ms-high-contrast: active) {
	.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E %3C/svg%3E");
	}
	.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E %3C/svg%3E");
	}
}
@media (-ms-high-contrast: black-on-white) {
	.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E %3C/svg%3E");
	}
	.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E %3C/svg%3E");
	}
}
.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E %3C/svg%3E");
}
@media (-ms-high-contrast: active) {
	.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23999'/%3E %3C/svg%3E");
	}
}
@media (-ms-high-contrast: black-on-white) {
	.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E %3C/svg%3E");
	}
}
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='red'/%3E %3C/svg%3E");
}
.mapboxgl-ctrl
	button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active
	.mapboxgl-ctrl-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
}
.mapboxgl-ctrl
	button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error
	.mapboxgl-ctrl-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
}
.mapboxgl-ctrl
	button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background
	.mapboxgl-ctrl-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
}
.mapboxgl-ctrl
	button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error
	.mapboxgl-ctrl-icon {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
}
.mapboxgl-ctrl
	button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-waiting
	.mapboxgl-ctrl-icon {
	animation: mapboxgl-spin 2s linear infinite;
}
@media (-ms-high-contrast: active) {
	.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
	}
	.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23999'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='red'/%3E %3C/svg%3E");
	}
	.mapboxgl-ctrl
		button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active
		.mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
	}
	.mapboxgl-ctrl
		button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error
		.mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
	}
	.mapboxgl-ctrl
		button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background
		.mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
	}
	.mapboxgl-ctrl
		button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error
		.mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
	}
}
@media (-ms-high-contrast: black-on-white) {
	.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
	}
	.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='red'/%3E %3C/svg%3E");
	}
}
@keyframes mapboxgl-spin {
	0% {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(1turn);
	}
}
a.mapboxgl-ctrl-logo {
	width: 88px;
	height: 23px;
	margin: 0 0 -4px -4px;
	display: block;
	background-repeat: no-repeat;
	cursor: pointer;
	overflow: hidden;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='0.3' stroke='%23000' stroke-width='3'%3E %3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='0.9' fill='%23fff'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E");
}
a.mapboxgl-ctrl-logo.mapboxgl-compact {
	width: 23px;
}
@media (-ms-high-contrast: active) {
	a.mapboxgl-ctrl-logo {
		background-color: transparent;
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='1' stroke='%23000' stroke-width='3'%3E %3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='1' fill='%23fff'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E");
	}
}
@media (-ms-high-contrast: black-on-white) {
	a.mapboxgl-ctrl-logo {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='1' stroke='%23fff' stroke-width='3' fill='%23fff'%3E %3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='1' fill='%23000'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E");
	}
}
.mapboxgl-ctrl.mapboxgl-ctrl-attrib {
	padding: 0 5px;
	background-color: rgb(255 255 255/50%);
	margin: 0;
}
@media screen {
	.mapboxgl-ctrl-attrib.mapboxgl-compact {
		min-height: 20px;
		padding: 2px 24px 2px 0;
		margin: 10px;
		position: relative;
		background-color: #fff;
		border-radius: 12px;
	}
	.mapboxgl-ctrl-attrib.mapboxgl-compact-show {
		padding: 2px 28px 2px 8px;
		visibility: visible;
	}
	.mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show,
	.mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show {
		padding: 2px 8px 2px 28px;
		border-radius: 12px;
	}
	.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner {
		display: none;
	}
	.mapboxgl-ctrl-attrib-button {
		display: none;
		cursor: pointer;
		position: absolute;
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E %3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E %3C/svg%3E");
		background-color: rgb(255 255 255/50%);
		width: 24px;
		height: 24px;
		box-sizing: border-box;
		border-radius: 12px;
		outline: none;
		top: 0;
		right: 0;
		border: 0;
	}
	.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl-attrib-button,
	.mapboxgl-ctrl-top-left .mapboxgl-ctrl-attrib-button {
		left: 0;
	}
	.mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner,
	.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button {
		display: block;
	}
	.mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-button {
		background-color: rgb(0 0 0/5%);
	}
	.mapboxgl-ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
		bottom: 0;
		right: 0;
	}
	.mapboxgl-ctrl-top-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
		top: 0;
		right: 0;
	}
	.mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
		top: 0;
		left: 0;
	}
	.mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
		bottom: 0;
		left: 0;
	}
}
@media screen and (-ms-high-contrast: active) {
	.mapboxgl-ctrl-attrib.mapboxgl-compact:after {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23fff'%3E %3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E %3C/svg%3E");
	}
}
@media screen and (-ms-high-contrast: black-on-white) {
	.mapboxgl-ctrl-attrib.mapboxgl-compact:after {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E %3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E %3C/svg%3E");
	}
}
.mapboxgl-ctrl-attrib a {
	color: rgb(0 0 0/75%);
	text-decoration: none;
}
.mapboxgl-ctrl-attrib a:hover {
	color: inherit;
	text-decoration: underline;
}
.mapboxgl-ctrl-attrib .mapbox-improve-map {
	font-weight: 700;
	margin-left: 2px;
}
.mapboxgl-attrib-empty {
	display: none;
}
.mapboxgl-ctrl-scale {
	background-color: rgb(255 255 255/75%);
	font-size: 10px;
	border: 2px solid #333;
	border-top: #333;
	padding: 0 5px;
	color: #333;
	box-sizing: border-box;
	white-space: nowrap;
}
.mapboxgl-popup {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	will-change: transform;
	pointer-events: none;
}
.mapboxgl-popup-anchor-top,
.mapboxgl-popup-anchor-top-left,
.mapboxgl-popup-anchor-top-right {
	flex-direction: column;
}
.mapboxgl-popup-anchor-bottom,
.mapboxgl-popup-anchor-bottom-left,
.mapboxgl-popup-anchor-bottom-right {
	flex-direction: column-reverse;
}
.mapboxgl-popup-anchor-left {
	flex-direction: row;
}
.mapboxgl-popup-anchor-right {
	flex-direction: row-reverse;
}
.mapboxgl-popup-tip {
	width: 0;
	height: 0;
	border: 10px solid transparent;
	z-index: 1;
}
.mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
	align-self: center;
	border-top: none;
	border-bottom-color: #fff;
}
.mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip {
	align-self: flex-start;
	border-top: none;
	border-left: none;
	border-bottom-color: #fff;
}
.mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip {
	align-self: flex-end;
	border-top: none;
	border-right: none;
	border-bottom-color: #fff;
}
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
	align-self: center;
	border-bottom: none;
	border-top-color: #fff;
}
.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip {
	align-self: flex-start;
	border-bottom: none;
	border-left: none;
	border-top-color: #fff;
}
.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip {
	align-self: flex-end;
	border-bottom: none;
	border-right: none;
	border-top-color: #fff;
}
.mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
	align-self: center;
	border-left: none;
	border-right-color: #fff;
}
.mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
	align-self: center;
	border-right: none;
	border-left-color: #fff;
}
.mapboxgl-popup-close-button {
	position: absolute;
	right: 0;
	top: 0;
	border: 0;
	border-radius: 0 3px 0 0;
	cursor: pointer;
	background-color: transparent;
}
.mapboxgl-popup-close-button:hover {
	background-color: rgb(0 0 0/5%);
}
.mapboxgl-popup-content {
	position: relative;
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgb(0 0 0/10%);
	padding: 10px 10px 15px;
	pointer-events: auto;
}
.mapboxgl-popup-anchor-top-left .mapboxgl-popup-content {
	border-top-left-radius: 0;
}
.mapboxgl-popup-anchor-top-right .mapboxgl-popup-content {
	border-top-right-radius: 0;
}
.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-content {
	border-bottom-left-radius: 0;
}
.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-content {
	border-bottom-right-radius: 0;
}
.mapboxgl-popup-track-pointer {
	display: none;
}
.mapboxgl-popup-track-pointer * {
	pointer-events: none;
	user-select: none;
}
.mapboxgl-map:hover .mapboxgl-popup-track-pointer {
	display: flex;
}
.mapboxgl-map:active .mapboxgl-popup-track-pointer {
	display: none;
}
.mapboxgl-marker {
	position: absolute;
	top: 0;
	left: 0;
	will-change: transform;
	opacity: 1;
	transition: opacity 0.2s;
}
.mapboxgl-user-location-dot,
.mapboxgl-user-location-dot:before {
	background-color: #1da1f2;
	width: 15px;
	height: 15px;
	border-radius: 50%;
}
.mapboxgl-user-location-dot:before {
	content: "";
	position: absolute;
	animation: mapboxgl-user-location-dot-pulse 2s infinite;
}
.mapboxgl-user-location-dot:after {
	border-radius: 50%;
	border: 2px solid #fff;
	content: "";
	height: 19px;
	left: -2px;
	position: absolute;
	top: -2px;
	width: 19px;
	box-sizing: border-box;
	box-shadow: 0 0 3px rgb(0 0 0/35%);
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading {
	width: 0;
	height: 0;
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after,
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
	content: "";
	border-bottom: 7.5px solid #4aa1eb;
	position: absolute;
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
	border-left: 7.5px solid transparent;
	transform: translateY(-28px) skewY(-20deg);
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after {
	border-right: 7.5px solid transparent;
	transform: translate(7.5px, -28px) skewY(20deg);
}
@keyframes mapboxgl-user-location-dot-pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	70% {
		transform: scale(3);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 0;
	}
}
.mapboxgl-user-location-dot-stale {
	background-color: #aaa;
}
.mapboxgl-user-location-dot-stale:after {
	display: none;
}
.mapboxgl-user-location-accuracy-circle {
	background-color: rgba(29, 161, 242, 0.2);
	width: 1px;
	height: 1px;
	border-radius: 100%;
}
.mapboxgl-crosshair,
.mapboxgl-crosshair .mapboxgl-interactive,
.mapboxgl-crosshair .mapboxgl-interactive:active {
	cursor: crosshair;
}
.mapboxgl-boxzoom {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	background: #fff;
	border: 2px dotted #202020;
	opacity: 0.5;
}
@media print {
	.mapbox-improve-map {
		display: none;
	}
}
.mapboxgl-scroll-zoom-blocker,
.mapboxgl-touch-pan-blocker {
	color: #fff;
	font-family:
		-apple-system,
		BlinkMacSystemFont,
		Segoe UI,
		Helvetica,
		Arial,
		sans-serif;
	justify-content: center;
	text-align: center;
	position: absolute;
	display: flex;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0/70%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.75s ease-in-out;
	transition-delay: 1s;
}
.mapboxgl-scroll-zoom-blocker-show,
.mapboxgl-touch-pan-blocker-show {
	opacity: 1;
	transition: opacity 0.1s ease-in-out;
}
.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page,
.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page
	.mapboxgl-canvas {
	touch-action: pan-x pan-y;
}
