#map {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	bottom: 0;
	top: 21px;
	z-index:80;
}

.hideOverlayer #map {
	top: 0;
}


.mapboxgl-ctrl-attrib {
	display: none;
}

.mapboxgl-ctrl-logo {
	display: none !important;
}

#marker {
	width: 10px;
	height: 10px;
	background-color: #fff;
}


#map i.point {
	cursor: pointer;
	display: block;
	transition: opacity ease-out .3s;
}

#map i.point > i {
	cursor: pointer;
	display: block;
	box-sizing: border-box;
	width: 24px;
	height: 24px;
	border: 3px solid;
	border-radius: 50px;
	padding: 3px;
}
#map i.point.hasIcon > i {
	border-color: rgba(0,0,0,0);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;

}

#map i.point:hover > i,
#map i.point.active > i{
	width: 32px;
	height: 32px;
}

#map i.point:hover,
#map i.point.active {
	z-index: 80;
}


#map i.point:hover > i,
#map i.point.active > i {
	transition: all ease-out .2s;
	padding: 0;
	pointer-events: none;
}

#map i.point:not(.hasIcon):hover > i,
#map i.point.active:not(.hasIcon) > i {
	border-color: inherit !important;
	border-color: #FC1B1C !important;
}

#map i.point.hide {
	opacity: 0;
	pointer-events: none;
}

#map i.point > i > i {
	pointer-events: none;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 50px;
	display: block;
	transition: background-color ease-out .3s;
}

#map i.point:not(.hasIcon):hover > i > i,
#map i.point.active:not(.hasIcon) > i > i {
	background-color: #FC1B1C !important;
}
#map i.point.hasIcon > i{
	border: 4px solid;
	border-color:rgba(0,0,0,0)!important;
}
#map i.point.hasIcon > i > i {
	background-color: rgba(0,0,0,0)!important;
}


#map i.point label {
	pointer-events: none;
	opacity: 0;
	position: absolute;
	top: 3px;
	left: 33px;
	background-color: rgba(255,255,255,.8);
	padding: 3px 5px;
	white-space: nowrap;
	font-style: normal;
}

#map i.point:hover label {
	opacity: 1;
}

#map i.point label p {
	line-height: 1.2;
	margin: 0;
	padding: 0;
	display: block;
}

#map i.point label p:first-child {
	text-transform: uppercase;
	font-size: 9px;
	font-weight: bold;
}

#map i.point label p + p {
	font-size: 8px;
}