#map a {
	color: inherit;
	text-decoration: none;
}
.map-wrapper,
#map {
	position: relative;
	background-color: #fff;
	text-align: left;
}
#map .marker,
#map .marker-logo {
	-webkit-user-select: none;
	-moz-user-select: none;  
	user-select: none;
	font-weight: bold;
	text-align: center;
}
#map .marker {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	border: #F77635 4px solid;
	cursor: pointer;
}
#map .marker:hover {
	background-color: #F77635;
}

#map .marker-logo {
	display: block;
	width: 5rem;
	height: 5rem;
	background-repeat: no-repeat;
	background-image: url('../img/map-marker.svg');
	background-size: cover;
}

#map .marker .marker-content {
	display: none;
	position: absolute;
	z-index: 1;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 20px 30px;
	text-align: center;
	background: #F77635;
	color: #fff;
	text-transform: uppercase;
	font-family: 'Jeko Bold';
    font-weight: bold;
    font-style: normal;
	font-size: 1.1rem;
	white-space: nowrap;
	line-height: 1.3;
}


#map .marker .marker-content:after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -5px;
	margin: 0 0 -5px 0px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #F77635;
}

#map .marker .marker-content h3 {
	margin: 10px 0 5px;
	line-height: inherit;
	font-size: 20px;;
	font-size:20px;
	letter-spacing:0;
}

#map .marker .marker-content a:hover {
	text-decoration: underline;
}

