.range {
  background: linear-gradient(to left, #e2e2ea 100%, #423089 0%);
  height: 6px;
  max-width: 100%;
  width: 100%;
  position: relative;
  border: none;
  border-radius: 20px;
  margin: 12px 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.range [type=range] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 18px;
}
.range [type=range]:focus {
  outline: none;
}
.range [type=range]::-webkit-slider-runnable-track {
  background: transparent;
}
.range [type=range]::-moz-range-track {
  background: transparent;
}
.range [type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F05A2A;
  cursor: pointer;
  border: none;
}
.range [type=range]::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F05A2A;
  cursor: pointer;
  border: none;
}
.range [type=range]::-ms-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F05A2A;
  cursor: pointer;
  border: none;
}
.range [type=range]::-ms-fill-lower {
  background: #423089;
}
.range [type=range]::-ms-fill-upper {
  background: #e2e2ea;
}
.range [type=range]::-ms-track {
  color: transparent;
  border: 0 solid transparent;
  background: transparent;
}
.range [type=range]::-ms-tooltip {
  display: none;
}

.range {
  max-width: 100%;
}
@media (max-width: 1000px) {
  .range {
    max-width: 100%;
  }
}/*# sourceMappingURL=range.css.map */