/* Tabs mit radio-Buttons */
.tabbed figure {
    display: block;
    margin-left: 0;
    clear: both;
}

.tabbed > input,
.tabbed figure > div { display: none; }

.tabbed figure > div {
    padding: 20px;
    width: 100%;
    border: 1px solid #bfbfbf;
    background: #ffffff73;
    line-height: 1.5em;
    letter-spacing: 0.3px;
    color: #444;
}

#tab1:checked ~ figure .tab1,
#tab2:checked ~ figure .tab2,
#tab3:checked ~ figure .tab3 { display: block; }

nav label {
    float: left;
    border-top: 1px solid silver;
    border-right: 1px solid silver;
    font-size: 15px;
    padding: 16px 55px;
    color: #2e2e2e;
    border-radius: 0;
    letter-spacing: 2px;
    font-style: normal;
    font-weight: 700;
    font-family: Open Sans;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.2);
}

nav label:nth-child(1) { border-left: 1px solid silver; }
nav label:hover { background-color: #e7e7e7;color: #fdfdfe; }
nav label:active { background: #fdfdfe; }

#tab1:checked ~ nav label[for="tab1"],
#tab2:checked ~ nav label[for="tab2"],
#tab3:checked ~ nav label[for="tab3"] {
    /*background: white;
    color: #111;
    position: relative;
    border-bottom: none;*/
    color: #fdfdfe;
    background-color: #ffffff;;
    border-color: #c0c2c7;
    position: relative;
}

#tab1:checked ~ nav label[for="tab1"]:after,
#tab2:checked ~ nav label[for="tab2"]:after,
#tab3:checked ~ nav label[for="tab3"]:after {
    content: "";
    display: block;
    position: absolute;
    height: 0px;
    width: 100%;
    background: white;
    left: 0;
    bottom: -1px;
}