.switch-button-label {
    float: left;

    font-size: 12px;
    cursor: pointer;
    position: relative;
    top:2px;
}

.switch-button-label.off {
    color: #d3d3d3;
}

.switch-button-label.on {
    color: #2b292e;
}

.switch-button-background {
    float: left;
    position: relative;

    background: #f5f5f5;
    border: 1px solid #aaa;

    margin: 1px 10px;

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;

    cursor: pointer;
}


.switch-button-button {
    position: absolute;

    left: -1px;
    top : -1px;

    background: #bfbfbf;
    border: 1px solid #aaa;

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.checked .switch-button-button{background: #d71f27;}