.range {
	position: relative;
	display:table;
	margin:0 auto; 
}

.range-slider {
  height: 5px;
  position: relative;
  background-color: #FFF;
  border-radius: 2px;
}

.range-selected {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  background-color: #FFF;
}

.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -1px;
  z-index:1;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range-input input::-webkit-slider-thumb {
  height: 25px;
  width: 10px;


  background-color: #000000;
  pointer-events: auto;
  -webkit-appearance: none;
}
.range-input input::-moz-range-thumb {
  height: 15px;
  width: 15px;

  border: 3px solid #235383;
  background-color: #fff;
  pointer-events: auto;
  -moz-appearance: none;
}

.range-price {
    margin: 0px 0px 8px 0px;
    width: 100%;
    display: flex;
    color:#FFF;
    font-weight:500;
    justify-content: center;
    align-items: center;
  }
  .range-price label {
    margin-right: 5px;
  }
  .range-price input {
    width: 90px;
    padding: 0px 5px;
    background:transparent;
    border:none;
    color:#FFF;
    font-weight:500;
    outline:none;
  }
  .range-price input:first-of-type {
    margin-right: 15px;
  }
