#map {
	height: 0;
	padding-bottom: 50%;
}
#map2 {
	height: 0;
	padding-bottom: 120vw;
}

#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 {
	border-radius: 50%;
	cursor: pointer;
}

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

#map .marker .marker-content {
	position: absolute;
	z-index: 1;
	left: 50%;
	bottom: 3rem !important;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: .5rem 1rem;
	min-width: 8rem;
	text-align: center;
	font-size: .75rem;
	font-family: 'DIN Pro Medium';
	font-weight: 500;
  	font-style: normal;
	background-color: #fff;
	box-shadow: 0 2px 7px 1px rgba(0,0,0,.3);
	opacity: 0;
}

#map .marker.active .marker-content {
	opacity: 1;
}