.editor-range-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.editor-range-control__label {
  font-size: 12px;
  font-weight: 700;
  color: #2f3541;
}

.editor-range-control__input {
  width: 100%;
}

.editor-range-control__footer {
  display: flex;
  justify-content: flex-end;
}

.editor-range-control__value {
  min-width: 32px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #eef2f6;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  color: #354052;
  box-sizing: border-box;
}

.editor-range-control.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.editor-range-control.is-mixed .editor-range-control__value {
  background: #f7efe1;
  color: #926f2e;
}
