.switch-section {
    padding: 12px 24px 13px 16px;
    border-radius: 12px;
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / 5%);
    border: solid 1px #e8e8e8;
    background-color: #ffffff;
    max-width: 187px;
    width: 100%;
    display: flex;
    align-items: center;
}
    
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
    border-radius: 12px; 
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c5c5c5;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.toggle:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 6%;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle {
    background-color: #20daa0;
    border-color: #20daa0;
}

input:focus + .toggle {
    box-shadow: 0 0 1px #20daa0;
}

input:checked + .toggle:before {
    -webkit-transform: translateX(21px);
    -ms-transform: translateX(21px);
    transform: translateX(21px);
}

.switch:hover input:not([disabled]):checked ~ .toggle,
.switch input:checked:focus ~ .toggle {
  background: #20daa0;
}

.switch input:disabled ~ .toggle {
  background:#c5c5c5;
  border: 1px solid #c5c5c5;
  opacity: 0.5;
  pointer-events: none;
}
.switch input:disabled ~ .toggle:before {
    left: 4%;
    bottom: 2px;
}
    
.switch-section .switch-text {
    font-size: 18px !important;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #222222;
    margin-left: 10px;
    margin-top: 0px !important; 
}

.switch-section .switch-text.off {
    opacity: 0.5;
}