.clear,
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.h5 { height: 5px !important;}
.h10 { height: 10px !important;}
/* The switch - the box around the slider */
.wns_switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 20px;
}

/* Hide default HTML checkbox */
.wns_switch input {display:none;}

/* The slider */
.wns_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d84a38;
    -webkit-transition: .4s;
    transition: .4s;
}

.wns_slider:hover {
    box-shadow: 0px 1px 4px #888;
}

.wns_slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    /* border-radius: 12px; */
}

input:checked + .wns_slider {
    background-color: #35aa47;
}

input:focus + .wns_slider {
    box-shadow: 0 0 1px #35aa47;
}

input:checked + .wns_slider:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}

/* Rounded sliders */
.wns_slider.round {
    border-radius: 34px;
}

.wns_slider.round:before {
    border-radius: 50%;
}