.dashpls-toggle-wrapper {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;

}
.dashpls-toggle-wrapper input {
  display: none;
}
.dashpls-toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #ccc;
  border-radius: 24px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: .4s;
}
.dashpls-toggle-slider:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 2px;
  bottom: 2px;
  background: white;
  border-radius: 50%;
  transition: .4s;
}
.dashpls-toggle-wrapper input:checked + .dashpls-toggle-slider {
  background: #0073aa;
}
.dashpls-toggle-wrapper input:checked + .dashpls-toggle-slider:before {
  transform: translateX(26px);
}
