.fstufftabs input[type=radio] {
         position: absolute;
          display: none; /* blendet die Radio-Punkte aus, die wir nicht brauchen */
}

.fstufftabs {
	width: 800px;
	float: left;
	list-style: none;
	position: relative;
	padding: 0;
	margin: auto;
	height: 400px;
}

.fstufftabs li{
       float: right; /* entweder rechts oder links */
}

.fstufftabs label {
	background: var(--links);
	width: 40px;
	color: var(--links);
	display: block;
	cursor: pointer;
	position: relative;
	top: 0;
	left: 0;
	margin-right: 20px;
	height: 40px;
	margin-top: 430px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	
}

.fstufftabs label:hover {
	background: var(--bronze);
	color: var(--bronze);
	top: 0;
}

.fstufftabs [type=radio]:checked ~ label{
 /* Defintion des ausgewählten Feldes */
       background: var(--bronze);
       color: var(--bronze);
       top: 0;
}

.fstufftabs [type=radio]:checked ~ label~ .fstufftab-fstuffcontent {
         display: block;
}

.fstufftab-fstuffcontent{
 /* Hier wird des ganz normale Inhalt des Tabs definiert wie Schrift, Farbe, Zeilenhöhe etc */
       z-index: 2;
       display: none;
       text-align: left;
       width: 800px;
    height: 350px;
    overflow: hidden; /*Höhe (muss ca 50px kleiner sein als bei .tabs vorgegeben und Overflow sollten definiert werden, da ansonsten überschüssiger Text verschluckt wird */
       font-size: 10px;
       color: var(--fontdark);
	background-color: var(--white);
       position: absolute;
       top: 25px;
       left: 0;
       box-sizing: border-box;
       -webkit-animation-duration: 0.5s;
       -o-animation-duration: 0.5s;
       -moz-animation-duration: 0.5s;
       animation-duration: 0.5s;
}
		
		
		
		
		
		
		
		
		
		