.rangeSlider1 {
  margin: 10px 0;
  width: 100%;
  transition: 0.3s;
  opacity:0.8;
  text-align:center;
}
.rangeSlider1:hover{
    opacity:1;
}
.rangeSlider1 input {
  -webkit-appearance: none;
  width: calc(100% - (75px));
  height: 10px;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 0;
}
.rangeSlider1 input::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  transition: .15s ease-in-out;
}
.rangeSlider1 input::-webkit-slider-thumb:hover {
  background: #1abc9c;
}
.rangeSlider1 input:active::-webkit-slider-thumb {
  background: #1abc9c;
}
.rangeSlider1 input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  transition: .15s ease-in-out;
}
.rangeSlider1 input::-moz-range-thumb:hover {
  background: #1abc9c;
}
.rangeSlider1 input:active::-moz-range-thumb {
  background: #1abc9c;
}
.rangeSlider1 input:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #1abc9c;
}
.rangeSlider1 output {
  display: inline-block;
  position: relative;
  width: 60px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: #2c3e50;
  padding: 5px 10px;
  margin-left: 10px;
  min-height:30px;
  vertical-align:middle;
}
.rangeSlider1 output:after {
  position: absolute;
  top: 8px;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid #2c3e50;
  border-bottom: 7px solid transparent;
  content: '';
}
.rtl .rangeSlider1 output {
  margin-left: initial;
  margin-right: 10px;
}
.rtl .rangeSlider1 output:after {
  left: initial;
  right: -7px;
  border-right: none;
  border-left: 7px solid #2c3e50;
}
.rangeSlider1 ::-moz-range-track {
  background: #d7dcdf;
  border: 0;
}
.rangeSlider1 input::-moz-focus-inner,
.rangeSlider1 input::-moz-focus-outer {
  border: 0;
}

