@charset "UTF-8";

.switch-checkbox {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch-checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-checkbox-slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 34px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.2s;
}

.switch-checkbox-slider::before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    top: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.2s;
}

.switch-checkbox input:checked+.switch-checkbox-slider {
    background-color: #2196F3;
}

.switch-checkbox input:checked+.switch-checkbox-slider::before {
    transform: translateX(22px);
}