.regularcase .block-title {text-transform:none;} 

.gf-toggle .gfield_checkbox li {
    position: relative;
}
/* Simple CSS Toggle logic */
.gf-toggle input[type="checkbox"] {
    display: none !important;
    opacity: 0 !important;
    width: 0;
    height: 0;
}
.gf-toggle label {
    cursor: pointer;
    padding-left: 50px;
    position: relative;
}
/* Create the slider background */
.gf-toggle label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 25px;
    background-color: #d47979;
    border-radius: 20px;
    transition: 0.4s;
}
/* Create the sliding knob */
.gf-toggle label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 17px;
    height: 17px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}
/* Change color and move knob when checked */
.gf-toggle input:checked + label::before {
    background-color: #a7af39;
}
.gf-toggle input:checked + label::after {
    transform: translateX(20px);
}