.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(--primary) 0%,
    var(--primary) var(--range-progress),
    #d9d9d9 var(--range-progress),
    #d9d9d9 100%
  );
  border-radius: 999px;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 32px;
  width: 32px;
  background: var(--primary);
  border: 1px solid white;
  border-radius: 999px;
  margin-top: -10px;
  cursor: pointer;

  @media (width <= 768px) {
    height: 24px;
    width: 24px;
    margin-top: -6px;
  }
}

/* Для 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: 32px;
  width: 32px;
  background: var(--primary);
  border: 1px solid white;
  border-radius: 999px;
  cursor: pointer;
  border: none;

  @media (width <= 768px) {
    height: 24px;
    width: 24px;
  }
}

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