
/* versteckt den input Button */
#fn-acc-tab input {
    display: none;
}
#fn-acc-tab {
	margin-bottom: 3px;
	box-shadow: 3px 3px 4px Plum;
}

/* CSS styles for the label tag */
#fn-acc-tab label {
    display: block;    
    padding: 16px 32px;
    margin: 0;
    cursor: pointer;
    background: LightPink;
    border-radius: 6px 6px 0px 0px;
    color: #FFF;
	font-weight: bold;
    transition: ease .5s;
	position: relative;
}
#fn-acc-tab label:hover {
    background: hotpink;
}


/* add + and - behind the label + styling*/
#fn-acc-tab label::after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
	position: absolute; /* absolut platziert das + hinten, relative vorne */ 
	padding: 0 0 0 0; /* padding um das + herum */
    right: 20px; /* Abstand Rechts*/
    top: 14; /* vertikale Ausrichtung, bei relative unnötig */
}
#fn-acc-tab input:checked ~ label::after {
    content: '-'!Important;
}
/* CSS styles for the div tag with the content class */
#acc-content {
    background: Lavender;
	color: #444 !important;
    padding: 16px 32px;
    border-left:1px solid LightPink;
	border-right:1px solid LightPink;
	border-bottom:1px solid LightPink;
    margin: 0px 0 8px 0;
    border-radius: 0px 0px 6px 6px;
	position: relative;
	width: 100%
}
#acc-content .acc-inner {
	position: relative;
	width: 100%
}
/* CSS styles for hiding and showing content */
#fn-acc-tab input ~ label ~ #acc-content {
    display: none;
}
#fn-acc-tab input:checked ~ label ~ #acc-content {
    display: block !Important;
}







/* Tabs mit radio-Buttons */
.fn-tabs .tab-content { 
	display: block; 
	margin: 0; 
	border-bottom: 1px solid white;
	clear: both;
}

.fn-tabs > input,
.fn-tabs .tab-content > div {
	display: none;
}

.fn-tabs .tab-content>div {
	padding: 20px;
	width: 100%;
	border: 1px solid white;
	background: lavender;
	line-height: 1.5em;
	letter-spacing: 0.3px;
	color: #444;
	margin: 0;
	border-radius: 0 0 20px 20px;
}
#tab1:checked ~ .tab-content .tab1,
#tab2:checked ~ .tab-content .tab2,
#tab3:checked ~ .tab-content .tab3 { 
	display: block; 
}
.tab-head {
	display: flex;
}
.tab-head label {
	float: left;
	padding: 16px 16px;
	border-top: 1px solid white;
	border-right: 1px solid white;
	background: lightpink;
	color: #000;
	width: 20%;
		border-radius: 20px 20px 0 0;
}

.tab-head label:nth-child(1) {
	border-left: 1px solid white;
}
.tab-head label:hover {
	background: pink;
}
.tab-head label:active {
	background: lavender;
}

#tab1:checked ~ .tab-head label[for="tab1"],
#tab2:checked ~ .tab-head label[for="tab2"],
#tab3:checked ~ .tab-head label[for="tab3"] {
	background: lavender;
	color: #000;
	position: relative;
	border-bottom: none;
}

#tab1:checked ~ .tab-head label[for="tab1"]:after,
#tab2:checked ~ .tab-head label[for="tab2"]:after,
#tab3:checked ~ .tab-head label[for="tab3"]:after {
	content: "";
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: purple;
	left: 0;
	bottom: -1px;
}