.custom-range {
  -webkit-appearance: none;
  width: 100%;
  height: 12px;
  background: transparent;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

/* Для Chrome, Safari, Edge */
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 12px;
  background: linear-gradient(
    to right,
    var(--black) 0%,
    var(--black) var(--range-progress),
    var(--surface-tertiary) var(--range-progress),
    var(--surface-tertiary) 100%
  );
  border-radius: 999px;
  transition: all 0.3s ease;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 0px;
  width: 0px;
}

/* Для Firefox */
.custom-range::-moz-range-track {
  width: 100%;
  height: 12px;
  background: #d9d9d9;
  border-radius: 999px;
}

.custom-range::-moz-range-progress {
  height: 12px;
  background: var(--primary);
  border-radius: 999px;
}

.custom-range::-moz-range-thumb {
  height: 0px;
  width: 0px;
}

/* Focus */
.custom-range:focus {
  outline: none;
}
