.tggl-btn{
    position: relative;
    width: 60px;
    height: 30px;
    background: #C74800;
    -webkit-appearance: none;
    border-radius: 15px;
    outline: none;
    transition: .4s;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.tggl-btn:checked{
    background: #04C700;
}

.tggl-btn::before{
    z-index: 2;
    position: absolute;
    content: "";
    top: 2.5px;
    left: 3px;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    transform: scale(0.9);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: .4s;
}

.tggl-btn:checked::before{
    left: 32px;
}

.tmbl-tggl{
    position: relative;
    display: inline;
    top: 3px;
    left: 10px;
}

/* label{
    position: absolute;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    pointer-events: none;
} */

.onbtn{
    position: absolute;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    pointer-events: none;
    bottom: 3px;
    left: 8px;
}

.offbtn{
    position: absolute;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    pointer-events: none;
    bottom: 3px;
    right: 8px;
}
