.wrapper {
    width: 34%;
    height: 50%;
    display: flex;
    justify-content: center;
    padding: 6px 0;
    margin: 0 auto;
}

.custom-toggle {
    -webkit-appearance: none;
    appearance: none;
    height: 14px;
    width: 40px;
    background-color: #333;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 0 2px;
    margin: 0;
    justify-content: center;
    cursor: pointer;
}

.custom-toggle.tgl-def {
    background-color: #333;
}

.custom-toggle.tgl-def::-webkit-slider-thumb {
    background-color: white;
}

.custom-toggle.tgl-on {
    background-color: green;
}

.custom-toggle.tgl-on::-webkit-slider-thumb {
    background-color: white;
}

.custom-toggle.tgl-off {
    background-color: red;
}

.custom-toggle.tgl-off::-webkit-slider-thumb {
    background-color: white;
}

.custom-toggle::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
}

.custom-toggle:focus {
    outline: none;
}

.rangeActive {
    background-color: green;
}