.range-slider {
  height: 3px;
  position: relative;
  background-color: #FFBC59;
  border-radius: 2px;
}
.range-selected {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background-color: #FFBC59;
}

.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -3px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range-input input::-webkit-slider-thumb {
  height: 24px;
  width: 24px; left: 40px;
  border-radius: 50%;
  border: 2px solid #FFBC59;
  background-color: #FFBC59;
  pointer-events: auto;
  -webkit-appearance: none;
}
.range-input input::-moz-range-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 3px solid #1b53c0;
  background-color: #fff;
  pointer-events: auto;
  -moz-appearance: none;
}

.range-price {
    margin: 15px 0;
    width: 100%;
    display: flex; font-size: 18px; padding-top: 20px;
    justify-content: flex-start;
    align-items: center;
  }
  .range-price label {
    margin-right: 5px;
  }
  .range-price input {
    width: calc(50% - 15px); height: 24px;
    padding: 5px; border: 1px solid #D1D1D1; font-size: 10px;
  }
  .range-price input:first-of-type {
    margin-right: 0px;
  }
.ll {width: 30px; height: 30px; display: flex; align-content: center; justify-content: center; }