.range-slider {
  width: 100%;
  margin-top: 8px;
}

.price-input {
  width: 100%;
  display: flex;
  margin-top: 24px;
}
.price-input .range-field {
  position: relative;
  display: flex;
  width: 50%;
}
.price-input input {
  width: 100%;
  height: 100%;
  outline: none;
  -moz-appearance: textfield;
  background: transparent;
  padding: 9px 32px 9px 38px;
  border: 1px solid #CED4DA;
}

.range-field span {
  position: absolute;
  left: 15px;
  bottom: 9px;
}
.range-field:first-child input {
  border-radius: 8px 0 0 8px;
}
.range-field:last-child input {
  border-radius: 0 8px 8px 0;
  border-left: none;
}

.slider {
  height: 2px;
  position: relative;
  background: #CED4DA;
  border-radius: 2px;
}
.slider .progress {
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 2px;
  background: #2F2F3E;
}

.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -4px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=range]::-webkit-slider-thumb {
  height: 14px;
  width: 14px;
  border: 1px solid #CED4DA;
  border-radius: 50%;
  background: #FFFFFF;
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
  transition: 0.3s;
  background: #2F2F3E;
}
input[type=range]::-moz-range-thumb {
  height: 14px;
  width: 14px;
  border: 1px solid #CED4DA;
  top: 5px;
  border-radius: 50%;
  background: #17A2B8;
  pointer-events: auto;
  -moz-appearance: none;
  cursor: pointer;
  transition: 0.3s;
  background: #2F2F3E;
}

/*# sourceMappingURL=range-slider.css.map */
