/* Contact form budget range — thin track, large circular thumb */
.contact-form .input-group-budget #pi_input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: visible;
  height: 32px;
  background: transparent !important;
  box-sizing: border-box;
  --p: 100%;
}

/* WebKit */
.contact-form .input-group-budget #pi_input::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(
    to right,
    #fff 0%,
    #fff var(--p),
    #2a2a2a var(--p),
    #2a2a2a 100%
  );
}

.contact-form .input-group-budget #pi_input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  margin-top: -13px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(67, 141, 255, 0.85);
  cursor: ew-resize;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.contact-form .input-group-budget #pi_input:focus::-webkit-slider-thumb {
  border-color: #438dff;
}

/* Firefox */
.contact-form .input-group-budget #pi_input::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  border: none;
  background: #2a2a2a;
}

.contact-form .input-group-budget #pi_input::-moz-range-progress {
  height: 4px;
  border-radius: 999px 0 0 999px;
  background: #fff;
}

.contact-form .input-group-budget #pi_input::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(67, 141, 255, 0.85);
  cursor: ew-resize;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.contact-form .input-group-budget #pi_input:focus::-moz-range-thumb {
  border-color: #438dff;
}
