.cont-radio-toggle {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: rgba(0,0,0,.1);
    cursor: pointer;
}
.cont-radio-toggle::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    opacity: 1;
    border: 0;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.6);
    transition: all 0.2s ease;
    left: 2px;
}

.cont-radio-toggle.S::after {
    left: 15px;
}
.cont-radio-toggle.S {
    background: var(--bgcolor1);
}
.cont-radio-toggle.N::after {
    left: 2px;
}
