.toggle_switch_container {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.toggle_switch_container .toggle_switch {
    width: 65px;
    height: 30px;
    border-radius: 20px;
    border: 1px solid #111;
    background-color: #fff;
    margin: 0 10px;
    position: relative;
}
.toggle_switch_container .toggle_switch:after {
    content: " ";
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #111;
    left: 2px;
    top: 2px;
    transition: all 0.2s linear;
}

.toggle_switch_container.toggled .toggle_switch {
    background-color: #eee;
}
.toggle_switch_container.toggled .toggle_switch:after {
    left: 37px;
}

.toggle_switch_container .label_inactive {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .toggle_switch_container .toggle_switch {
        height: 25px;
        width: 40px;
    }
    .toggle_switch_container .toggle_switch:after {
        width: 19px;
        height: 19px;
    }
    .toggle_switch_container.toggled .toggle_switch:after {
        left: 17px;
    } 
}