/* -- Anfahrt -- */
#karte, #mapstoggle, .anfahrt {
	float: left;
	clear: both;
	width: 100%;
}

#karte .rahmen {
	width: 100%;
	max-width: none;
	margin: 0;
}

#mapstoggle {
	padding: 7px 0;
	font-size: 16px;
	font-weight: 300;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	background: #19466e;
	position: relative;
	z-index: 2;
}

.mapsschalter {
	display: block;
    width: 100px;
    height: 75px;
    position: absolute;
    top: -42px;
    left: 50%;
    margin-left: -50px;
    z-index: 2;
    cursor: pointer;
}

.mapsschalter::before {
	content: '';
    position: absolute;
    display: block;
    left: 50%;
    margin-left: -16px;
    border-radius: 50%;
    border: 11px solid #19466e;
    width: 10px;
	height: 10px;
	background: #FFFFFF;
}

.mapsschalter::after {
	position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    top: 25px;
    left: 50%;
    margin-left: -13px;
	border: 13.2px solid transparent;
    border-top: 22px solid #19466e;
  }

.mapstext {
	font-size: 14px;
	position: relative;
	z-index: 3;
	cursor: pointer;
}

.anfahrt {
	height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.anfahrt.animate {
	height: 350px;
}

#mapstoggle.auf + .anfahrt {
	height: 350px;
}

#mapstoggle.auf + .anfahrt.animate {
	height: 0;
}

.anfahrt iframe {
	float: left;
	clear: both;
	width: 100%;
	height: 350px;
}