/* FV-CMS-VENDORED v0.7.2 — DO NOT EDIT IN PLACE. Source: github.com/avidtech6/freshvibe-cms. To update, run: fvcms-update */
/* === background-color.css === */
: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: 4px;
  --r-md: 6px;
}

.fes-control-bg-color {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0;
}

.fes-label {
  font-size: 12px;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.fes-swatch-wrap {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  position: relative;
}

.fes-swatch {
  width: 100%;
  height: 100%;
}

.fes-input {
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 8px;
  border-radius: var(--r-sm);
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}

.fes-input:focus {
  border-color: var(--accent-2);
}

.fes-alpha-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.fes-slider {
  flex: 1;
  height: 4px;
  background: var(--panel-2);
  border-radius: 2px;
  appearance: none;
  outline: none;
}

.fes-slider::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  background: var(--text);
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid var(--panel);
}

.fes-alpha-val {
  font-size: 11px;
  color: var(--text-dim);
  width: 30px;
  text-align: right;
}