/* Import Google Font - Poppins */


.RangeDiv {
    width: 315px;
    background: #fff;
    margin: 0 auto;
    height: 132px;
}
    .RangeDiv .price-input .field span {
        font-weight: bold;
    }
    .RangeDiv header p {
        margin-top: 5px;
        font-size: 16px;
        font-size: 1rem;
        font-weight: bold;
    }
.RangeDiv .price-input{
  width: 100%;
  display: flex;
  margin: 30px 0 35px;
}
    .RangeDiv .price-input .field {
        display: flex;
        width: 100%;
        height: 24px;
        align-items: center;
        font-size: 1rem;
    }
.RangeDiv .field input{
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 19px;
  margin-left: 12px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #999;
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.RangeDiv .price-input .separator{
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}
.RangeDiv .slider{
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}
.RangeDiv .slider .progress{
  height: 100%;
  left: 5%;
  right: 5%;
  position: absolute;
  border-radius: 5px;
  background: #222 ;
}
.RangeDiv .range-input{
  position: relative;
}
.RangeDiv .range-input input{
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type="range"]::-webkit-slider-thumb{
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #222 ;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}
input[type="range"]::-moz-range-thumb{
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #222 ;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}