/*Toggle Switch*/
.unity_switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 30px;
}
.unity_switch .unity_input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.unity_toggle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.unity_toggle:before {
  position: absolute;
  content: "";
  height: 23px;
  width: 23px;
  left: 3px;
  bottom: 3.4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.unity_input:checked + .unity_toggle {
  background-color: #2196F3;
}
.unity_input:focus + .unity_toggle {
  box-shadow: 0 0 1px #2196F3;
}
.unity_input:checked + .unity_toggle:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}