.ktex-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ktex-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.ktex-switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ktex-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #b8c0cc;
  transition: 0.2s;
  border-radius: 24px;
}

.ktex-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  transition: 0.2s;
  border-radius: 50%;
}

.ktex-switch-input:checked + .ktex-slider {
  background: #2271b1;
}

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