.bsid-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    vertical-align: middle;
}

.bsid-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.bsid-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d63638;
    transition: .4s;
    border-radius: 34px;
}

.bsid-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.bsid-switch input:checked+.bsid-slider {
    background-color: #008a20;
}

.bsid-switch input:checked+.bsid-slider:before {
    transform: translateX(20px);
}

.bsid-switch input:focus+.bsid-slider {
    box-shadow: 0 0 1px #008a20;
}
