.accordion_container {
	border: 0px solid red;
	color: #0e3a2f;
}

.accordion {
	background-color: #0e3a2f;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-family: "SkodaNext";
	font-size: 100%;
	font-weight: bold;
	transition: 0.2s;
	margin-bottom: 10px;
}

.active {
	background-color: #78faae;
	color: #0e3a2f;
}

.accordion:after {
	content: '\002B';
	font-weight: bold;
	float: right;
	margin-left: 5px;
	color: white;
}

.active:after {
content: "\2212";
}

.panel {
padding: 0px 70px 0px 70px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
border: 0px solid red;
}

.panel p {
margin: 0px 0px 20px 0px;	
width: 100%;
border: 0px solid red;
}

.bild_accordion {
float: right;
width: 100%;
height: auto;
margin: 0px 0px 0px 0px;
}

.content_panel_links {
width: 48%;
height: auto;
border: 0px solid red;	
float: left;
margin-top: 20px;
margin-bottom: 30px;
}

.content_panel_rechts {
width: 48%;
height: auto;
border: 0px solid black;
float: right;
margin-left: 4%;
margin-top: 20px;
margin-bottom: 30px;
}


@media screen and (max-width: 768px) {
.content_panel_links {
width: 100%;
height: auto;
border: 0px solid red;	
float: left;
margin-top: 20px;
margin-bottom: 20px;
}

.content_panel_rechts {
width: 100%;
height: auto;
border: 0px solid black;
float: left;
margin-left: 0%;
margin-top: 20px;
margin-bottom: 0px;
}

.panel {
padding: 0px 10px 0px 10px;
}

.accordion {
font-size: 90%;
}
	
}



