/* The switch - the box around the slider */
.switch {
 margin-top:23px;
 position: relative;
 display: inline-block;
 width: 40px;
 height: 16px;
 margin-bottom:0 !important;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

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

.slider:before {
 position: absolute;
 height: 22px;
 width: 22px;
 left: -3px;
 bottom: -4px;
 background-color: #000;
 -webkit-transition: .4s;
 transition: .4s;
 color:#fff;
}

.clear:before{
  content: "\f185";
  font-family: Font Awesome\ 5 Free;
  background:#1B7DA0
}

.dark:before{
  content: "\f186";
  font-family: Font Awesome\ 5 Free;
  background:#000000
}

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

input:focus + .slider {
 box-shadow: 0 0 1px #ccc;
}

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

/* Rounded sliders */
.slider.round {
 border-radius: 34px;
}

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

.switch-icon{
  text-align:center;
}
