@charset "UTF-8";
.price-slider {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-400);
  min-width: 264px;
  max-width: 749px;
}
.price-slider__range {
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
}
.price-slider__track {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 9999px;
  background: var(--color-primary-essential-200);
}
.price-slider__progress {
  position: absolute;
  height: 100%;
  background: var(--typography-color-default);
}
.price-slider__input {
  position: absolute;
  width: 100%;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 100%;
  background: none;
  outline: none;
  margin: 0;
}
.price-slider__input.is-over {
  z-index: 2;
}
.price-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--typography-color-default);
  cursor: pointer;
  margin-top: -1px;
}
.price-slider__inputs {
  display: flex;
  align-items: center;
  gap: var(--spacing-200);
  justify-content: space-between;
}
.price-slider__field {
  position: relative;
}
.price-slider__currency {
  position: absolute;
  left: var(--spacing-300);
  top: 50%;
  transform: translateY(-50%);
  color: var(--typography-color-secondary);
  pointer-events: none;
  line-height: 35px;
}
.price-slider__field input {
  text-align: left;
  display: flex;
  width: fit-content;
  height: 32px;
  padding: 5px 10px 5px 20px;
  align-items: center;
  gap: var(--spacing-200);
  border-radius: var(--borders-radius-default);
  border: var(--borders-width-standard, 1px) solid
    var(--borders-color-medium, var(--border-color-light, #c9c9c9));
  color: #000000;
}
.price-slider__field input::-webkit-inner-spin-button,
.price-slider__field input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
