.radio input {
    display: none;
}
.radio label{
    display: block;
    float: left;
    cursor: pointer;
    width: 60px;
    margin: 0;
    padding: 10px;
    background: #bdc3c7;
    color: #869198;
    font-size: 16px;
    text-align: center;
    line-height: 1;
    transition: .2s;
}
.radio label:first-of-type{
    border-radius: 3px 0 0 3px;
}
.radio label:last-of-type{
    border-radius: 0 3px 3px 0;
}
.radio input[type="radio"]:checked + .switch-on {
    background-color: #0fa334;
    color: #fff;
}
.radio input[type="radio"]:checked + .switch-off {
    background-color: #e67168;
    color: #fff;
}


