/* FV-CMS-VENDORED v0.7.2 — DO NOT EDIT IN PLACE. Source: github.com/avidtech6/freshvibe-cms. To update, run: fvcms-update */
:root {
  --bg: #0b0d11; --panel: #14181f; --panel-2: #1a1f27;
  --border: #2a3038; --text: #e6e9ef; --text-mid: #b8bfca;
  --text-dim: #7a8290; --accent: #7cf0a0; --accent-2: #5fa8ff;
  --r-sm: 6px;
}

.fes-control-switch {
  display: flex;
  align-items: center;
  height: 44px;
  cursor: pointer;
}

.fes-switch-track {
  position: relative;
  width: 44px;
  height: 24px;
  background-color: var(--panel-2);
  border-radius: 12px;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.fes-switch-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--text-mid);
  border-radius: 50%;
  transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.fes-switch-active {
  background-color: var(--accent);
}

.fes-switch-active .fes-switch-thumb {
  background-color: #fff;
  transform: translateX(20px);
}

.fes-switch-track:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent-2);
}