
.switch_se {
    position: relative;
    width: 30px;
    min-height: 16px;
    display: inline-block;
}

.switch_se input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider_se {
    position: absolute;
    cursor: pointer;
    border-radius: 99999px;
    top: 0;
    right: 3px;
    width: 80%;
    height: 5px;
    margin: auto;
    bottom: 0;
    background-color: rgb(162, 160, 163);
    -webkit-transition: .4s;
    transition: .4s;
}

.slider_se:before {
    position: absolute;
    content: "";
    width: 13px;
    height: 13px;
    bottom: -4px;
    left: -2px;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider_se{
    background-color: #9ee6ab;
}

input:checked + .slider_se:before {
    -webkit-transform: translateX(17px);
    -ms-transform: translateX(17px);
    transform: translateX(17px);
    background-color: #3dcd58;
}