/* 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 { /* Defintion der anklickbaren Felder */
         display: inline-block;
background: #848484;
color: #3b3439;
font-size: 13px;
font-family: Calibri;
text-transform: uppercase;
border: 1px solid #7f7f7f;
padding: 4px 8px;
margin: 3px;
position: relative;
top: 0;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-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: #ccc;
border: 1px solid #ccc;
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 {
         display: block;
     }

.profiltab-content{ /* Hier wird des 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: #abaaaa;
       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: #797674;
    border: 0px dashed #1e1e1e;
    border-radius: 2px;
    text-align: center;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-left: -8px;
    color: #3b3439;
     }


.profilklein {
    padding: 5px;
    background-color: #797674;
    border: 0px dashed #1e1e1e;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: 3px;
    color: #3b3439;
     }