.switch-button-label {
    display: none !important;
    float: left;
    font-size: 10pt;
    cursor: pointer;
}

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

.switch-button-label.on {
    color: #0088CC;
}

.switch-button-background {
    float: left;
    position: relative;
    background: var(--green);
    margin: 1px 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
}

.switch-disabled .switch-button-background {
    background: #ccc;
}

.switch-button-button {
    position: absolute;
    left: 1;
    top : -1px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
}