.ptabs input[type=radio] {
         position: absolute;
          display: none; /* blendet die Radio-Punkte aus, die wir nicht brauchen */
}

.ptabs {
        width: 900px; /*könnt ihr anpassen */
        float: none;
        list-style: none;
        position: relative;
        padding: 0;
        margin:auto;      
        margin-bottom: 30px;
    height: 1300px;
}

.ptabs li{
        float: left;
}

.ptabs label {
 /* Defintion der anklickbaren Felder */
    display: block;
        width: 203px;
    padding: 10px;
    text-align: center;
    font-family: 'Rufina', serif;
    font-size: 15px;
    color: #b3b3b3;
     border: 1px #b3b3b3 solid;
    font-weight: 700;
        -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;
}

.ptabs label:hover {
       top: 0;
}

[type=radio]:checked ~ label {
 /* Defintion des ausgewählten Feldes */
       color: #b3b3b3;
       top: 0;
}

[type=radio]:checked ~ label ~ .ptab-content {
         display: block;
}

.ptab-content{
 /* Hier wird des ganz normale Inhalt des Tabs definiert wie Schrift, Farbe, Zeilenhöhe etc */
    z-index: 2;
    display: none;
    font-family: 'Oxygen', sans-serif;
    font-size: 10px;
    color: #b3b3b3;
    text-align: left;
    width: 100%;
    height: 1300px;
    overflow: scroll; /*Höhe (muss ca 50px kleiner sein als bei .tabs vorgegeben und Overflow sollten definiert werden, da ansonsten überschüssiger Text verschluckt wird */
    padding-top: 10px;
    padding: 5px;
    background: #192d38;
    position: absolute; 
        left: 0;
    top: 40px;
}

.ptab-content::-webkit-scrollbar {
    width: 2px;
    background: #192d38;
    border-radius: 5px;
}

.ptab-content::-webkit-scrollbar-thumb {
    background: #192d38;
}
		
		
		