/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 6 Sep, 2024, 11:27:46 AM
    Author     : Admin
*/

.range-slider {
  height: 5px;
  position: relative;
  background-color: #e1e9f6;
  border-radius: 2px;
  cursor: pointer;
}
.range-selected {
  height: 100%;
  left: 30%;
  right: 30%;
  position: absolute;
  border-radius: 5px;
  background-color: #40A0F1;//#1b53c0;
  transition: none !important;
  cursor: pointer;
}

.range-input {
  position: relative;
   
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -7px;
  background: none;
  pointer-events: none;
  
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range-input input::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 3px solid #40A0F1;//#1b53c0;
  background-color: #fff;
  pointer-events: auto;
  cursor:w-resize;
  -webkit-appearance: none;
}
.range-input input::-moz-range-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 3px solid #40A0F1;//#1b53c0;
  background-color: #fff;
  pointer-events: auto;
  cursor:w-resize;
  
  -moz-appearance: none;
}

.range-price {
    margin: 5px 0;
    width: 100%;
    //display: flex;
    justify-content: center;
    align-items: center;
     transition: none !important;
  }
  .range-price label {
    margin-right: 5px;
  }
  .range-price input {
    width: 40px;
    padding: 5px;
  }
  .range-price input:first-of-type {
    margin-right: 15px;
  }
