/* Element - Routenplaner */

h2 + .gMapPlaner {
	margin-top: -35px;
}
.gMapPlaner > p {
	padding: 0 0 10px;
}
.gMapPlaner > form {
	align-items: center;
	display: flex;
}
.gMapPlaner > form:after {
	clear: both;
	content: "";
	display: block;
}
.gMapPlaner > form > * {
	float: left;
}
.gMapPlaner > form > input[type="text"] {
    padding: 0 10px;
    width: 100%;
}
.gMapPlaner > form > input[type="submit"] {
    align-items: center;
	background: var(--mw-color-button-background);
	border: 1px solid transparent;
	border-radius: 0;
	color: var(--mw-color-button);
	cursor: pointer;
	display: flex;
	font-size: var(--mw-font-button-size);
	font-weight: var(--mw-font-button-weight);
	height: 45px;
	justify-content: center;
	line-height: 1;
	margin: 0;
	max-width: 250px;
	outline: 0;
	padding: 0 20px;
	text-transform: uppercase;
	transition: 300ms ease all;
}
.gMapPlaner > form > input[type="submit"]:hover {
	background: var(--mw-color-button-background-hover);
}
.gMapPlaner > form > select {
	margin: 0 15px;
}
.gMapPlaner > img {
    display: block;
	margin: 30px 0 0;
	max-width: 850px;
    position: relative;
    width: 100%;
}

@media all and (max-width: 768px){

	.gMapPlaner > form {
		flex-wrap: wrap;
	}
	.gMapPlaner > form > input[type="text"] {
		width: 49%;
	}
	.gMapPlaner > form > select {
		margin: 0 0 0 2%;
		width: 49%;
	}
	.gMapPlaner > form > input[type="submit"] {
		margin-top: 15px;
	}

}

@media all and (max-width: 500px){

	.gMapPlaner > form {
		flex-wrap: wrap;
	}
	.gMapPlaner > form > input[type="text"] {
		margin-bottom: 10px;
		width: 100%;
	}
	.gMapPlaner > form > select {
		margin: 0;
		width: 100%;
	}
	.gMapPlaner > form > input[type="submit"] {
		margin-top: 10px;
		max-width: none;
		width: 100%;
	}

}