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

.klappbox .secondary_content_news_box{
	border-radius:0;
}

.klappbox .klappboxelement:last-child .secondary_content_news_box{
	border-bottom-right-radius:0.3rem;
	border-bottom-left-radius:0.3rem;
}
.klappbox input {
	display: none;
	visibility:hidden;
}
.klappbox label {
	background-color: var(--bg-color-marginal-title);
	font-weight:var(--font-weight-bold);
	line-height: initial;
	cursor: pointer;
	display: block;
	margin-bottom: 1px;
	padding: .3rem 0.75rem;
	z-index: 20;
	position: relative;
	transition:all var(--transition-duration);
}
.klappbox label:hover,
.klappbox label:active
.klappbox label:focus{
	background-color:var(--bg-color-marginal-title-hover);
}

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

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

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

.klappbox .klappboxelement:last-child label{
	border-bottom-right-radius:0.3rem;
	border-bottom-left-radius:0.3rem;
}

.klappbox input:checked + label {
	margin-bottom: 0;
	border-bottom-right-radius:0!important;
	border-bottom-left-radius:0!important;
}
.klappbox article {
	max-height:0;
	overflow:hidden;
	z-index:10;
	transition: max-height 0.3s ease-in-out;
}
.klappbox_light article {
	background: #fcfcfc;
}

.klappbox input:checked ~ article {
	max-height: 1000px;
	margin-bottom: 1px;
	transition: max-height 0.8s ease-in-out;
}

.klappbox div.bild_box,
.klappbox .bild_link img {
	border: none;
	border-radius: 0;
}

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

.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;
}