/* Tabs für die Profilansicht */

.profiltabs input[type=radio] {
         position: absolute;
          display: none; /* blendet die Radio-Punkte aus, die wir nicht brauchen */
}

.profiltabs {
       width: 85%; /*könnt ihr anpassen */
       float: none;
       list-style: none;
       position: relative;
       padding: 0;
       margin:auto;
overflow: visible;
 height: 1200px; /* Höhe muss definiert werden, damit Inhalt nicht überlappt */
}

.profiltabs li{
       float: left; /* entweder rechts oder links */
}

.profiltabs label {
	background: #8b2e2e;
	width: 150px;
	color: #ffffff;
	float: left;
	box-sizing: border-box;
	margin: 2.5px;
	margin-top: 2.5px;
	margin-top: 5px;
	padding: 8px;
	text-align: center;
	line-height: 1.2em;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'Calibri', 'Verdana';
	font-size: 10px;
	-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;
}

.profiltabs label:hover {
	color: #999999;
	border: 2px solid #999999;
	top: 0;
}

[type=radio]:checked ~ label {
 /* Defintion des ausgewählten Feldes */
color: #999999;
border: 2px solid #999999;
top: 0;
}

[type=radio]:checked ~ label ~ .profiltab-content {
	background: #222021;
	display: block;
}

.profiltab-content{
 /* Hier wird der ganz normale Inhalt des Tabs definiert wie Schrift, Farbe, Zeilenhöhe etc */
       z-index: 2;
       display: none;
       text-align: justify;
       width: 100%;
    height: 85%;
    overflow: auto; /*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;
       padding-top: 10px;
       padding: 5px;
       color: #101010;
    background: #000000;
       position: absolute;
       top: 60px;
       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;
}

.profillist {
    width: 820px;
    padding: 10px;
    background-color: #101010;
    border: 1px dashed #1e1e1e;
    border-radius: 2px;
    text-align: center;
    font-family: 'Yeseva One', cursive;
    font-size: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-left: -8px;
    color: #808080;
}

.profilklein {
	color: #808080;
	padding: 5px;
	background-color:
	border: 1px dashed #1e1e1e;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
	
	font-family: Verdana, cursive;
	font-size: 15px;
}


		