/******************* GRUNDGERÜST *******************/

.tab-headline {
background: #55402c;
padding: 10px;
text-align: center;
font-size: 20px;
color:#b4a984;
text-transform: lowercase;
	width:290px;
}

.tab-body {
height: 160px;
overflow: auto;
background-color: #41301f;
padding: 15px;  
font-family: verdana;
font-size: 10px;
color: #ddd7c6;
text-align: justify;
}

.tab-body b {
color: #ddd7c6;
font-weight: bold;
text-transform: uppercase;
}

/******************* FAKTEN & DROPDOWN *******************/

.tab-facts {
    min-width: 90px;
    background: #b3a682;
    font-size: 9px;
    color: #41301f;
    text-align: center;
    padding: 4px 8px 3px 8px;
    display: inline-block;
    margin: 5px 5px 0px 5px;
}

.tab-facts-l {
min-width: 90px;
background: #b3a682;
font-size: 9px;
 color: #41301f;
text-align: center;
padding: 4px 8px 3px 8px;
display: inline-block;
margin: 5px 10px 0px 5px;
float: left;
}

.tab-facts-r {
min-width: 90px;
background: #2d3236;
font-family: 'Kite One', sans-serif;
font-size: 9px;
color: #ececec;
text-transform: uppercase;
text-align: center;
padding: 4px 8px 3px 8px;
display: inline-block;
margin: 5px 5px 0px 10px;
float: right;
}

.tab-links {
width: 140px;
background: #2d3236;
font-family: 'Kite One', sans-serif;
font-size: 9px;
color: #ececec;
text-transform: uppercase;
padding: 2px 8px 1px 8px;
margin: 5px 5px 0px 5px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}


/******************* TABS BEI 'INPLAY' *******************/

.tabs input[type=radio] {
position: absolute;
display: none;
}

.tabs {
width:282px;
height: 160px;
float: none;
list-style: none;
position: relative;
padding: 0;
margin: auto;
}

.tabs li{
text-align: center;
display: inline;
}

/* Schrift-Icons für versch. Tabs */
.tabs label {
display: inline;
color: #b2a782;
font-size: 35px;
font-weight: bold;
border: 2px solid #b2a782;
padding: 3px 7px;
margin: 5px;
position: relative;
top: 0;
-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;
}

  
/* Ausgewählter Tab */
[type=radio]:checked ~ label {
color: #ddd7c6;
top: 0;
}
      
[type=radio]:checked ~ label ~ .tab-content {
display: block;
}

    
/* Tab-Inhalt */
.tab-content{
    width: 290px;
    height: 90px;
    overflow: auto;
    font-size: 10px;
    color: #ddd7c6;
    text-align: justify;
    padding-right: 5px;
    z-index: 2;
    display: none;
    position: absolute;
    top: 70px;
    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;
}


/******************* SCROLLBARS *******************/

.tab-scroll::-webkit-scrollbar {
width:6px;
}

.tab-scroll::-webkit-scrollbar-track-piece {
background-color:#41301f ;
}

.tab-scroll::-webkit-scrollbar-thumb:vertical {
height:10px;
background-color:#4e3a26;
}