/**
 * nut-tat-bat-hien-thi-san-pham.css
 * Giao diện công tắc bật/tắt tồn kho
 */

.wd-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.wd-switch input {
  display: none;
}
.wd-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  border-radius: 34px;
}
.wd-slider:before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  transition: 0.3s;
  border-radius: 50%;
}
.wd-switch input:checked + .wd-slider {
  background: #007cba;
}
.wd-switch input:checked + .wd-slider:before {
  transform: translateX(20px);
}
