/*.input-between {

  &__controls {
    position: relative;
    height: 24px;
    width: calc(100% - 24px);
    margin-inline: auto;
    margin-top: 10px;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: -12px;
      right: 0;
      bottom: 0;
      margin: auto;
      width: calc(100% + 24px);
      height: 2px;
      background-color: $orange;
    }
  }

  &__control {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-block: auto;
    border-radius: 100%;
    background-color: $orange;
    width: 24px;
    height: 24px;
    cursor: pointer;
    border: 2px solid $white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;

    !*&::before, &::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background-color: $orange;
    }
    &::before {
      background-color: $orange;
    }
    &::after {
      background-color: $gray-background;
    }*!

    &.from {
      left: 0;
    }
    &.before {
      right: 0;
    }
  }

  &__fields {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 8px 1fr;
    gap: 6px;
    align-items: center;
  }

  &__field {
    position: relative;
  }

  &__label {
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    margin: auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  &__input {
    border: 1px solid $grey-light;
    border-radius: 10px;
    padding: 12px 25px 12px 36px;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.36;
    color: $black-text;
  }

  &__separator {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.36;
    color: $grey;
  }

  &__symbol {
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    margin: auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.36;
    color: $grey;
  }
}*/
.rs .rs-slider {
  display: flex;
  align-items: center;
}
.rs .rs-slider range-slider {
  --track-size: 2px;
  --thumb-size: 22px;
  display: flex;
  margin: 0;
}
.rs .rs-slider range-slider:not([orientation=vertical]) {
  inline-size: 100%;
}
.rs .rs-slider range-slider:active {
  opacity: 0.8;
}
.rs .rs-slider range-slider[disabled] {
  filter: grayscale(1);
  opacity: 0.4;
}
.rs .rs-slider range-slider [data-track] {
  background-color: #eaeaea;
}
.rs .rs-slider range-slider [data-track-fill] {
  background-color: #ff7100;
}
.rs .rs-slider range-slider [data-thumb] {
  background-color: #ff7100;
  border-radius: 100%;
}
.rs .rs-slider range-slider [data-runnable-track] {
  inset: 0;
  width: calc(100% - 22px);
}
.rs .rs-out {
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 8px auto;
  gap: 6px;
  align-items: center;
}
.rs .rs-out__separator {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.36;
  color: #959595;
}
.rs .rs-out__field {
  position: relative;
}
.rs .rs-out__field_label {
  position: absolute;
  top: 0;
  left: 12px;
  bottom: 0;
  margin: auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.36;
  color: #959595;
}
.rs .rs-out__field_input {
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 12px 25px 12px 36px;
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.36;
  color: #3f4041;
}
.rs .rs-out__field_symbol {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.36;
  color: #959595;
}