.mapPin,
.mapPoi,
.mapProjectPin {
	width: var(--hotspotSize);
	height: var(--hotspotSize);
	cursor: default;
	z-index: 1;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: var(--hotspotIconSize);
}

.mapPin {
	cursor: pointer;
}



.mapPoi {
	width: var(--hotspotSize);
	height: var(--hotspotSize);
	background-color: black;
	cursor: pointer;
	box-sizing: unset;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

body.hasHover .mapPoi:hover {
	box-shadow: var(--buttonOverOutline);
	transition: width 0.1s ease, height 0.1s ease !important;
	width: calc(var(--hotspotSize) + var(--hotspotSize) / 5);
	height: calc(var(--hotspotSize) + var(--hotspotSize) / 5);
}

.poiTitle {
	font-weight: bold;
	text-transform: uppercase;
}

.poiLink {
	font-weight: bold;
	color: white;
}

.mapProjectPin {
	width: calc(var(--hotspotSize) / 2  + var(--hotspotSize) / 10);
	height: calc(var(--hotspotSize) / 2  + var(--hotspotSize) / 10);
	z-index: 2;
}

.mapProjectPinInside {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	border: solid 4px var(--colorGreenLight);
	background-color: var(--colorGreenDark);
	box-sizing: border-box;
	box-shadow: 0 0 30px var(--colorGreenLight);
	border-radius: 50%;
}


.mapPinInside {
	width: 100%;
	height: 100%;
	background-color: black;
	box-sizing: border-box;
	border: solid 2px rgba(255,255,255,0.2);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	transition: all 0.2s ease;
}
.mapPin.completed .mapPinInside{
	background-color: var(--colorGreen);
}
.mapPin.featured .mapPinInside{
	background-color: var(--colorBeige);
}
.mapPinSelected{
	box-shadow: var(--pinSelectedOutline);
	z-index: 1000 !important;
}

body.hasHover .mapPin:hover {
	z-index: 1001 !important;
}

body.hasHover .mapPin:hover .mapPinInside {
	box-shadow: var(--buttonOverOutline);
	border: none;
}

.mapPinInsideNumber {
	color: white;
	width: 100%;
	transform: translate(0, -50%);
	top: 50%;
	position: absolute;
	font-size: 12px;
	left: 0;
	pointer-events: none;
	transition: color 0.2s ease;
	text-align: center;
}

body.hasHover .mapPin:hover .mapPinInsideNumber {
	color: #fff;
}


#map {
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
}

.mapboxgl-ctrl-top-right {
	top: 50% !important;
	transform: translateY(-50%) !important;
}




.mapPinContentImage {
	background-position: center;
	min-height: 260px;
	max-height: 100%;
	background-size: cover;
	width:calc(50% - 20px) !important;
	margin-right:20px;
}
.mapPinContentText h4{
	text-align: left !important;
}


.mapTitle {
	z-index: 1;
	pointer-events: none;
	text-align: left;
	position: relative;
	left: 5%;
	width: 20%;
	opacity: 0.5;
}

div[map="map"] .mainContentBlock {
	pointer-events: none;
	position: absolute;
	display: flex;
	flex-direction: row;
}



.mapLabelIcon {
	font-size: 22px;
	line-height: 0px;
	vertical-align: middle;
	font-weight: 100;
}


.routeTimeMarker {
	width: 0;
	height: 0;
	visibility: hidden;
}

.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right {
	margin-bottom: 60px;
}


.mapElementAnimated {
	transition: all 0.5s ease;
}

.mapboxgl-ctrl-bottom-right{
	margin-bottom: var(--footerHeight);
	display: flex;
    align-items: flex-end;
}