.tabs {
    width: 100%;
    height: 220px;
    color: #565656;
    margin-top: 7px;
    font-weight: 300;
}

.tabs ul,
.tabs li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tabs,
.tabs input[type="radio"]:checked + label {
    position: relative;
}

.tabs li,
.tabs input[type="radio"] + label {
    display: inline-block;
}

.tabs li > div,
.tabs input[type="radio"] {
    position: absolute;
}

.tabs li {
    vertical-align: top;
}

.tabs li > div {
    top: 42px;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    overflow: auto;
    background: #fff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.tabs input[type="radio"] + label {
    margin: 0 2px 0 0;
    padding: 5px 25px;
    line-height: 32px;
    background: #f1f1f1;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    font-size: 18px;
}

.tabs input[type="radio"]:checked + label {
    z-index: 1;
    background: #fff;
    border-bottom-color: #fff;
    cursor: default;
}

.tabs input[type="radio"] {
    opacity: 0;
}

.tabs input[type="radio"] ~ div {
    display: none;
}

.tabs input[type="radio"]:checked:not(:disabled) ~ div {
    display: block;
    min-height: 100px;
}

.tabs input[type="radio"]:disabled + label {
    opacity: .5;
    cursor: no-drop;
}