/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    float: right;
}

.switch.normal {
    width: 58px;
    height: 24px;
}

.switch.small {
    width: 28px;
    height: 12px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0px;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    left: 1px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider.normal:before {
    height: 22px;
    width: 22px;
}

.slider.small:before {
    height: 12px;
    width: 12px;
}

input:checked + .slider {
    background-color: #EF7D00;
}

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

  /* Rounded sliders */
.slider.normal.round {
    border-radius: 14px;
}
.slider.small.round {
    border-radius: 12px;
}


.slider.round:before {
    border-radius: 50%;
}

div.sliderContainer {
    display: block;
}
div.sliderContainer.sliderGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
div.sliderContainer label {
    width: 198px;
    line-height: 24px;
    margin-right: 0px;
}
div.sliderContainer span.txt {
    text-align: left;
    margin-left: 10px;
    display: inline-block;
}