.map {
	border: 0px solid orange;
	display: flex;
	flex-wrap: wrap;
	width: 700px;
}
.map_list td {
	vertical-align: top;
	padding: 5px;
}
.level_frame {
	border: 0px solid red;
	width: 735px;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	padding: 15px;
}
.level_wrapper {
	border: 0px solid blue;
	height: 500px;
	width: 800px;
	position: relative;
}
.level_toggle {
	border: 0px solid black;
	padding-left: 5px;
	position: relative;
	width: 100%;
}
.level_toggle p {
	font-size: 14pt;
	top: 0px;
	border: 0px solid black;
	margin: 0px;
}
#show:not(target) .level_icon {
	display: none;
}
/*Einbindung Ebenenbild*/
/*Formatierung Ebenen*/
div.img_parkplan {
	border: 0px solid red;
	position: absolute;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-size: contain;
}
div.level_bg {
	background-image: url("../img/parkplan/park_bg.jpg");
}
div.level_park {
	background-image: url("../img/parkplan/park_plan.png");
}
div.level_stieleiche {
	background-image: url("../img/parkplan/stieleiche.png");
}
div.level_rotetraubeneiche {
	background-image: url("../img/parkplan/rotetraubeneiche.png");
}
div.level_traubeneiche {
	background-image: url("../img/parkplan/traubeneiche.png");
}
div.level_friedenseiche {
	background-image: url("../img/parkplan/friedenseiche.png");
}
div.level_winterlinde {
	background-image: url("../img/parkplan/winterlinde.png");
}
div.level_rotbuche {
	background-image: url("../img/parkplan/rotbuche.png");
}
div.level_schwarzesche {
	background-image: url("../img/parkplan/schwarzesche.png");
}
div.level_gelbetrauerweide {
	background-image: url("../img/parkplan/gelbetrauerweide.png");
}
div.level_blutbuche {
	background-image: url("../img/parkplan/blutbuche.png");
}
div.level_kastanie {
	background-image: url("../img/parkplan/kastanie.png");
}
div.level_ulme {
	background-image: url("../img/parkplan/ulme.png");
}
div.level_spitzahorn {
	background-image: url("../img/parkplan/spitzahorn.png");
}
div.level_bergahorn {
	background-image: url("../img/parkplan/bergahorn.png");
}
div.level_schwarzerle {
	background-image: url("../img/parkplan/schwarzerle.png");
}
div.level_erle {
	background-image: url("../img/parkplan/erle.png");
}
div.level_sommerlinde {
	background-image: url("../img/parkplan/sommerlinde.png");
}
div.level_birke {
	background-image: url("../img/parkplan/birke.png");
}
div.level_traubeneiche {
	background-image: url("../img/parkplan/traubeneiche.png");
}
div.level_japtrompetenbaum {
	background-image: url("../img/parkplan/japtrompetenbaum.png");
}
div.level_robinie {
	background-image: url("../img/parkplan/robinie.png");
}
div.level_platane {
	background-image: url("../img/parkplan/platane.png");
}
div.level_stumpf {
	background-image: url("../img/parkplan/stumpf.png");
}
.switch_list {
	float: left;
	width: 250px;
}
/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 28px;
	height: 14px;
}
/* Hide default HTML checkbox */
.switch input {
	display: none;
}
/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}
.slider:before {
	position: absolute;
	content: "";
	height: 10px;
	width: 10px;
	left: 3px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .slider {
	background-color: #99cc33;
}
input:focus + .slider {
	box-shadow: 0 0 1px #99cc33;
}
input:checked + .slider:before {
	-webkit-transform: translateX(12px);
	-ms-transform: translateX(12px);
	transform: translateX(12px);
}
/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}
.slider.round:before {
	border-radius: 50%;
}