section.range-slider {
  position: relative;
  width: 100%;
  height: 50px;
  float: left;
  text-align: center;
}
section.range-slider input[type=range] {
  pointer-events: none;
  position: absolute;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  border: none;
  border-radius: 2px;
  background: #F1EFEF;
  left: 0;
  top: 7px;
  width: 100%;
  outline: none;
  height: 8px;
  margin: 0;
  padding: 0;
}
section.range-slider .rangeValues{
	display:block;
	margin-top:20px;
	width:100%;
	height:30px;
}
section.range-slider .rangeValues span{
	display:inline-block;
	width:50%;
	float:left;
	text-align:left;
    line-height: 30px;
	padding:0 3px;
}
section.range-slider .rangeValues span:last-of-type{
	float:right;	
	text-align:right;
}

section.range-slider input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  position: relative;
  z-index: 1;
  outline: 0;
  -webkit-appearance: none;
  width: 5px;
  height: 15px;
  border: none;
  border-radius: 2px;
  background-color:var(--themeColor);
}
section.range-slider input[type=range]::-moz-range-thumb {
  pointer-events: all;
  position: relative;
  z-index: 10;
  -ms-appearance: none;
  width: 5px;
  height: 15px;
  border-radius: 2px;
  border: 0;
  background-color:var(--themeColor);
}
section.range-slider input[type=range]::-ms-thumb {
  pointer-events: all;
  position: relative;
  z-index: 10;
  -ms-appearance: none;
  width: 5px;
  height: 15px;
  border-radius: 2px;
  border: 0;
  padding:4px;
  background-color:var(--themeColor);
}
section.range-slider input[type=range]::-moz-range-track {
  position: relative;
  z-index: -1;
  background-color: black;
  border: 0;
}
section.range-slider input[type=range]:last-of-type::-moz-range-track {
  -moz-appearance: none;
  background: none transparent;
  border: 0;
}
section.range-slider input[type=range]::-moz-focus-outer {
  border: 0;
}
section.range-slider .rangeFiller{
	position:absolute;
	top: 8px;
	left:0;
	right:0;
	height: 7px;
	background-color:var(--themeColor);
}