
label.switchify.switchify-label {
    display: inline-block;
}

label.switchify.switchify-label>input.switchified {
    display: none;
}

label.switchify.switchify-label>span.switchify-switch {
    display: block;
    background-color: #cecece;
    height: 1.15em;
    width: 1.8em;
    position: relative;
    border-radius: 1em;
    transition: background-color 0.25s, border-color 0.25s;
    cursor: pointer;
}

label.switchify.switchify-label>input.switchified:checked+span.switchify-switch::after {
    left: calc(100% - 0.8em);
}

label.switchify.switchify-label>span.switchify-switch::after {
    content: "";
    background-color: #343541;
    display: block;
    height: 0.6em;
    width: 0.6em;
    position: absolute;
    border-radius: 1em;
    left: 3px;
    transition: left 0.25s;
    top: 4px;
}

.popup_content label.switchify.switchify-label>span.switchify-switch::after {
    content: "";
    background-color: #343541;
    display: block;
    height: 0.5em;
    width: 0.5em;
    position: absolute;
    border-radius: 1em;
    left: 4px;
    transition: left 0.25s;
    top: 5px;
}

label.switchify.switchify-label>input.switchified:checked+span.switchify-switch {
    background-color: #2997FF;
    border-color: #2997FF;
}

#formpopup .form-group.sin-stock label.switchify.switchify-label>input.switchified:checked+span.switchify-switch {
    background-color: #ff680f;
    border-color: #ff680f;
}

