:root {
    --color-green: #00a878;
    --color-button: #fdffff;
}

.contenedor-switch
{
    width: 50px;
}

.switch-button, .switch-button__checkbox {
    display: none;
}
.switch-button, .switch-button__label {
    width: 100%;
    height: 20px;
    border-radius: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.224);
    display: inline-block;
    position: relative;
}
.switch-button, .switch-button__label:before {
    transition: .2s;
    display: block;
    position: absolute;
    top: 0px;
    width: 21px;
    height: 21px;
    background-color: var(--color-button);
    content: '';
    border-radius: 50%;
}
.switch-button, .switch-button__checkbox:checked + .switch-button__label {
    background-color: var(--color-green);
    border: 1px solid transparent;
   
}
.switch-button, .switch-button__checkbox:checked + .switch-button__label:before {
    transform: translateX(1.8rem);
}
.label-switch
{
    width: calc((100% - 50px - ((20px * 2 ) * 2)) / 2);
    margin: 0px 20px;
}