.gf-range-slider {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gf-range-slider input[type="range"] {
  --range-progress: 0%;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    #c80b0f 0%,
    #c80b0f var(--range-progress),
    #d8d8d8 var(--range-progress),
    #d8d8d8 100%
  );
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  margin: 8px 0;
}

.gf-range-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: transparent;
}

.gf-range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  margin-top: -3px;
  border-radius: 999px;
  border: 0;
  background: #d00c13;
  cursor: pointer;
}

.gf-range-slider input[type="range"]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #d00c13;
  cursor: pointer;
}

.gf-range-slider input[type="range"]::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: #d8d8d8;
}

.gf-range-slider input[type="range"]::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: #d00c13;
}

.gf-range-slider-labels {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.gf-range-slider-labels span {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #322f30;
}
