.input-switch {
/* Rounded sliders */ }
.input-switch .switch {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 14px; }
.input-switch .switch input {
    opacity: 0;
    width: 0;
    height: 0; }
.input-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc !important;
    -webkit-transition: .4s;
    transition: .4s; }
.input-switch .slider:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s; }
.input-switch input:checked + .slider {
    background-color: #FFF !important;
    border: 1px solid #165D3A;
}
.input-switch input:focus + .slider {
    box-shadow: 0 0 1px #2196F3; }
.input-switch input:checked + .slider:before {
    -webkit-transform: translateX(8px);
    -ms-transform: translateX(8px);
    transform: translateX(8px);
    background: #165D3A;
}
.input-switch .slider.round {
    border-radius: 34px; }
.input-switch .slider.round:before {
    border-radius: 50%; }