.RangeSliderBase {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "rangePlace";
  position: relative;
}

.RangeSliderBase:before {
  content: ' ';
  display: block;
  width: calc(100% - 1px);
  height: 50%;
  position: absolute;
  top: 25%;
  left: 0;
  background: gray;
}

.RangeSliderBase input[type='range'] {
  grid-area: rangePlace;
  z-index: var(--layerPageZIndex);
  top: 0;
  left: 0;
  margin: 0;
  background: none;
  color: #000;
  pointer-events: none;
  width: 100%;
  outline: none;
}

.RangeSliderBase input[type='range']::-webkit-slider-runnable-track {
  width: 100%;
  height: 100%;
  background: none;
  z-index: --layerPageSecondaryZIndex;
  position: relative;
}

.RangeSliderBase input[type='range']::-moz-range-track {
  width: 100%;
  height: 100%;
  background: none;
  z-index: --layerPageSecondaryZIndex;
  position: relative;
}

.RangeSliderBase input[type='range']::-webkit-slider-thumb {
  border: none;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 4px;
  background: var(--colorBrand);
  pointer-events: auto;
  z-index: --layerPageZIndex;
}

.RangeSliderBase input[type='range']::-moz-range-thumb {
  border: none;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 4px;
  background: var(--colorBrand);
  pointer-events: auto;
  z-index: --layerPageZIndex;
}

.RangeSliderBase input[type='range']::-webkit-slider-runnable-track, .RangeSliderBase input[type='range']::-webkit-slider-thumb, .RangeSliderBase input[type='range'] {
  -webkit-appearance: none;
}

.RangeSliderBase input[type='range']:focus {
  z-index: var(--layerPageSecondaryZIndex);
  outline: none;
  color: var(--colorBrand);
}

.RangeSliderBase span {
  grid-area: rangePlace;
  z-index: var(--layerNullZIndex);
  display: block;
  position: absolute;
  top: 25%;
  height: 50%;
  background: hsl(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 0.8 * 1%));
}

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