.klappbox {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.klappbox input {
	display: none;
}
.klappbox label {
	background: #E0E2E3;
	font-weight:var(--font-weight-bold);
	line-height: 1.2rem;
	cursor: pointer;
	display: block;
	margin-bottom: 1px;
	padding: .3rem 0.75rem;
	z-index: 20;
	position: relative;
	transition:all .5s;
}
.klappbox label:hover {
	background: #D5D7D7;
}

.klappbox_light label {
	background: #eeeeee;
	border-top: 1px solid #cfcfcf;
	margin-bottom: 0;
}

.klappbox_light label:hover {
	background: #e0e0e0;
}

.klappbox .pos1 label {
	border-top-left-radius: .25em;
	border-top-right-radius: .25em;
}

.klappbox input:checked + label {
	/*background: #ccc;*/
	/*border-bottom-right-radius: 0;*/
	/*border-bottom-left-radius: 0;*/
	/*color: white;*/
	margin-bottom: 0;
}
.klappbox article {
	background: #f7f7f7;
	max-height:0px;
	overflow:hidden;
	z-index:10;
	/*-webkit-transition: height 1s ease-in-out;  Safari */
	transition: max-height 0.3s ease-in-out;
}
.klappbox_light article {
	background: #fcfcfc;
}

.klappbox input:checked ~ article {
	/*border-bottom-left-radius: .25em;*/
	/*border-bottom-right-radius: .25em;*/
	max-height: 1000px;
	margin-bottom: 1px;
	/*-webkit-transition: height 1s ease-in-out;  Safari */
	transition: max-height 0.8s ease-in-out;
}

.klappbox div.bild_box,
.klappbox .bild_link img {
	border: none;
	/*border-left:   #E0E2E3 solid 1px;*/
	/*border-right: #E0E2E3 solid 1px;*/
	border-radius: 0;
}

.klappbox .newbox-title {
	display: none;
}

.klappbox_pfeil {
	position: absolute;
	line-height: 0.9;
	font-size: 1.4rem;
	right: 0.5rem;
	transition: transform 0.2s;
}
.klappbox input:checked + label .klappbox_pfeil {
	transform:rotate(90deg);
	transition: transform 0.2s;
}
/* .klappbox_pfeil:before {
	line-height: 0.9;
	font-size: 1.4rem;
	content: "\2023";
}*/