.range_container {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 100px auto;
    z-index: 3;
  }
  
  .slider-container {
    width: 150px;
    position: relative;
    margin: 50px auto;
  }
  
  .range-slider {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 5px;
    background: transparent;
    -webkit-appearance: none;
    z-index: 5;
  }
  
  .range-slider::-webkit-slider-runnable-track {
    height: 5px;
    background: #d3d3d3; /* base line color */
    border-radius: 5px;
  }
  
  .range-slider::-moz-range-track {
    height: 5px;
    background: #d3d3d3;
    border-radius: 5px;
  }
  
  .range-slider::-webkit-slider-thumb {
    pointer-events: all;
    position: relative;
    z-index: 6;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: floating look */

  }
  
  .range-slider::-moz-range-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
    border: none;
  }
  
  
  .range-values {
    text-align: center;
    margin-top: 50px;
    font-size: 18px;
  }
  
.accordion-button:not(.collapsed) {
  background-color: #f36911; 
  color: white;              
}

.accordion-button.collapsed {
  background-color: #f8f9fa; 
  color: #212529;            
}

.bottom-left-card{
  position: absolute;
  bottom: 10px;
  left: 16px;
  z-index: 1;
  color: white;
  
  
}

.img_top{
  height: 17rem;
}

.img_cat{
  height: 12rem;
}

.card{
  border-radius: 5%;
}

.main{
  /* background-color: rgb(240, 240, 240); */
  background-color: #fff4f1f0;
}


.btn-search{
  background-color: #f36911;
  color: white;
  font-weight: bold;
}

.catalog_on_hover{
  /* border-radius: 1%;  */
  box-shadow: 5px 10px 18px #888888;
  transition: 0.2s; 
}

  

