.credit-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    to right,
    #f90000 0%,
    #f90000 var(--progress, 0%),
    #e5e7eb var(--progress, 0%),
    #e5e7eb 100%
  );
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.credit-slider.desktop {
  height: 21px;
}
.credit-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 21px;
  height: 21px;
  border-radius: 0 50% 50% 0;
  background: #f90000;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.credit-slider::-moz-range-thumb {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #f90000;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease;
}
.credit-slider::-webkit-slider-thumb:hover,
.credit-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
}
.credit-slider::-webkit-slider-thumb:active,
.credit-slider::-moz-range-thumb:active {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .credit-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 21px;
    height: 21px;
    border-radius: 0 50% 50% 0;
    background: #f90000;
    cursor: pointer;
    transition: transform 0.15s ease;
  }
}

@media (max-width: 1200px) {
  .auto__calculator-section {
    margin-top: 40px;
  }
}
