
.filter_wrapper {
max-width: 63vw;
    height: auto;
    background: #fff;
    margin: auto;
    margin-top: -4rem;
    padding: 35px 20px;
    z-index: 33;
    border-radius: 50px;
    position: relative;
    /* backdrop-filter: blur(8px); */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;

}
.search-filters {
  font-family: "Metropolis-Regular";
  /* border: 2px solid black; */

}


.search-filters select {

  border: none;

  margin: 0px !important;

  background-color: transparent;

  padding: 0px !important;
  
}





.search-filters .select {

  border: 1px solid rgb(240, 238, 239);

  color: gray;

  border-radius: 30px;

}



.search-filters .filters {
font-size: 16px;
  color: #e5040e;

  background-color: rgb(255, 255, 255);
font-family: "Metropolis-Bold";
  border-radius: 30px;

  border: none;

  outline: none;
  padding: 10px;

}



.search-filters .search-button {
    background: linear-gradient(45deg, #fb5e19, #e5040e, #e51800, #ff4b00, #ff1616);
    max-width: 265px;
    margin: auto;
    position: absolute;
    bottom: -22px;
      left: 0;
    color: #fff;
    padding: 5px 30px;
    right: 0;

}



.custom-dropdown {

  position: relative;

  display: inline-block;

}
.custom-dropdown::before {
     content: "";
    display: inline-block;
    width: 1.6em;
    height: 1.6em;
    margin-left: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="url(%23grad)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><defs><linearGradient id="grad" x1="0" y1="0" x2="1" y2="1"><stop offset="0%" stop-color="%23FF0000"/><stop offset="100%" stop-color="%23FFA500"/></linearGradient></defs><path d="M6 9L12 15L18 9"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    position: absolute;
    right: 2em;
    top: 0.5em;
    pointer-events: none;
}


.dropdown-button {
  font-family: "Metropolis-Bold";
  font-size: 16px;

  color: #e5040e;

  align-content: center;

  border: none;

  outline: none;

  padding: 10px;

  cursor: pointer;
  width: 100%;
    text-align: left;

}



.dropdown-menu {
border-radius: 25px;
  display: none;

  min-width: 350px;

  left: 0;

  padding: 12px;

  position: absolute;

  background-color: #fff;

  border: 1px solid #ccc;

  list-style: none;

  animation: fadeIn 0.3s ease;

}



.dropdown-menu p {

  color: gray;

  font-weight: 600;

}



/* Animation */

@keyframes fadeIn {

  from {

    opacity: 0;

  }



  to {

    opacity: 1;

  }

}







/* Range slider */

.range_container {

  display: flex;

  flex-direction: column;

  margin-top: 25px;

}



.sliders_control {

  position: relative;

  min-height: 50px;

}



.sliders_control input[type=range]::-webkit-slider-thumb {

  -webkit-appearance: none;

  pointer-events: all;

  width: 24px;

  height: 24px;

  background-color: rgb(228, 61, 50);

  border-radius: 50%;

  box-shadow: 0 0 0 1px #C6C6C6;

  cursor: pointer;

}



.sliders_control input[type=range]::-moz-range-thumb {

  -webkit-appearance: none;

  pointer-events: all;

  width: 24px;

  height: 24px;

  background-color: #fff;

  border-radius: 50%;

  box-shadow: 0 0 0 1px #C6C6C6;

  cursor: pointer;

}



.sliders_control input[type=range]::-webkit-slider-thumb:hover {

  background: #f7f7f7;

}



.sliders_control input[type=range]::-webkit-slider-thumb:active {

  box-shadow: inset 0 0 3px rgb(228, 61, 50), 0 0 9px rgb(228, 61, 50);

  -webkit-box-shadow: inset 0 0 3px rgb(228, 61, 50), 0 0 9px rgb(228, 61, 50);

}





.sliders_control input[type="range"] {

  -webkit-appearance: none;

  appearance: none;

  height: 2px;

  width: 100%;

  position: absolute;

  background-color: #C6C6C6;

  pointer-events: none;

}



.sliders_control .from {

  height: 0 !important;

  z-index: 1 !important;

}



.sliders-label {

  color: gray;

  font-size: 20px;

  margin-bottom: 12px;

  display: flex;

  justify-content: space-between;

}



#filter-info {

  display: none;

}





/* custom-select */

.custom-select {

  position: relative;

}

.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  padding: 2px; /* Border thickness (adjust this for thin border) */
 background: linear-gradient(45deg, #cc0009 56%, #ff4b00, #ff7900);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none; /* So it doesn’t block clicks */
}
      

.custom-select.ddd::after {
     content: "";
    display: inline-block;
    width: 1.6em;
    height: 1.6em;
    margin-left: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="url(%23grad)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><defs><linearGradient id="grad" x1="0" y1="0" x2="1" y2="1"><stop offset="0%" stop-color="%23FF0000"/><stop offset="100%" stop-color="%23FFA500"/></linearGradient></defs><path d="M6 9L12 15L18 9"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    position: absolute;
    right: 2em;
    top: 0.8em;
    pointer-events: none;
}
      
.dropdown-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  padding: 2px; /* Border thickness (adjust this for thin border) */
 background: linear-gradient(45deg, #cc0009 56%, #ff4b00, #ff7900);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none; /* So it doesn’t block clicks */
}
      


.custom-select-options {

  position: absolute;

  top: 100%;

  left: 0;

  list-style: none;

  margin: 5px 0;

  padding: 7px 5px;

  background-color: #fff;

  border: 1px solid #ccc;

  display: none;

  z-index: 999;

  border-radius: 12px;

}
.custom-select::after {
     content: "";
    display: inline-block;
    width: 1.6em;
    height: 1.6em;
    margin-left: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="url(%23grad)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><defs><linearGradient id="grad" x1="0" y1="0" x2="1" y2="1"><stop offset="0%" stop-color="%23FF0000"/><stop offset="100%" stop-color="%23FFA500"/></linearGradient></defs><path d="M6 9L12 15L18 9"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    position: absolute;
    right: 2em;
    top: 0.5em;
    pointer-events: none;
}


span.custom_list {
    width: 0.7em;
    height: 0.7em;
    border-radius: 50%;
    background: linear-gradient(45deg, red, orange);
    display: inline-block;
    margin-right: 10px;
    animation: pulse 1.5s infinite;
}


.custom-select-options li {
    padding: 1px 5px;
    cursor: pointer;
    display: flex
;
    align-items: center;

}



.custom-select-options li:hover {

  background-color: red;

  color: white;

}
@media only screen and (max-width: 1024px) {
    .filter_wrapper {
        max-width: 92%;
        border-radius: 20px;
    }
    .search-filters .search-button {
     background: linear-gradient(45deg, #fb5e19, #e5040e, #e51800, #ff4b00, #ff1616);
    max-width: 265px;
    margin: auto;
    position: absolute;
    bottom: -22px;
    left: 0;
    color: #fff;
    padding: 5px 30px;
    right: 0;
    }
   
}