
   
/* range slider styles */

.range-slider-rs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding-block: 20px;
}

.range-slider-rs.dragging {
  cursor: ew-resize;
}

.range-slider-rs .price-div,
.range-slider-rs .price-div input {
  border: none;
  outline: none;
  background: red;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 0;
  background-color: #ed5565;
  border-radius: 4px;
  position: relative;

}

.price-div span{
  margin-right: 5px;
}

.min-price::before{
      position: absolute;
      display: block;
      content: "azn";
      bottom: -6px;
       top: 0;
      width: 0;
      height: 0;
      margin-left: -3px;
      overflow: hidden;
      border: 3px solid transparent;
      border-top-color: #ed5565;
      background-color: #CE1E24;
      color: white;

}


.range-rs {
  width: 100%;
  display: grid;
  position: relative;
  z-index: 5;
}

.range-rs input {
  grid-row: 2;
  grid-column: 1;
  pointer-events: none;
  appearance: none;
  background: transparent;
}

.range-rs input::-webkit-slider-thumb {
  pointer-events: auto;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #DF2027; /* Replace var(--blue-color) */
  border-radius: 50%;
  cursor: pointer;
}

.slider-rs {
  position: absolute;
  height: 10px;
  width: 100%;
  background: rgba(119, 136, 153, 0.15); /* Replace var(--gray-color) */
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  overflow: hidden;
  z-index: -1;
}

.progress-rs {
  position: absolute;
  height: 100%;
  background: #CE1E24; /* Kırmızı renk */
  cursor: ew-resize;
}

.range-rs input::-webkit-slider-thumb {
  pointer-events: auto;
  appearance: none;
  width: 1px;
  height: 16px;
  background: #CE1E24; /* Kırmızı renk */
  border-radius: 0; /* Yuvarlaklığı kaldırdık, dörtgen oldu */
  cursor: pointer;
}