.switch {
    background: #fff;
    border: 1px solid #dfdfdf;
    position: relative;
    display: inline-block;
    box-sizing: content-box;
    overflow: visible;
    padding: 0;
    margin: 0;
    cursor: pointer;
    box-shadow: rgb(223 223 223) 0 0 0 0 inset;
    transition: 0.3s ease-out all;
    -webkit-transition: 0.3s ease-out all;
}

input#enabled:checked~.switch {
    background-color: rgb(0, 156, 75) !important;
    border-color: rgb(223, 223, 223);
}

input#enabled:checked~.switch small {
    left: 20px !important;
}


.switch-medium {
    width: 50px;
    height: 30px;
    border-radius: 30px;
    margin-left: 10px;
    margin-right: 10px;
}

.switch-medium small {
    width: 30px;
    height: 30px;
}
.switch small {
    border-radius: 100%;
    box-shadow: 0 1px 3px rgb(0 0 0 / 40%);
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-out all;
    -webkit-transition: 0.3s ease-out all;
}