.filter-menu-selected{
  background-color: #00102F;
  color: white;
}
.hidden {
  display: none;
}

.arrow-up::before {
  content: "\f077";
  cursor: pointer;
}

.arrow-down::before {
  content: "\f078"; 
  cursor: pointer;

}
.hotsale-dropdown{
  position: absolute;
}
.hotsale-dropdown li{
  padding: 10px 10px;
  cursor: pointer;

}
.hotsale-dropdown li:hover{
  background-color: rgb(226, 221, 221);
}






.wrapper-slider {
  position: relative;
  background-color: #ffffff;
  
}
.container-slider {
  position: relative;
  width: 100%;
  height: 100px;
  margin-top: 0px;
}
.slider-track {
  width: 98%;
  height: 5px;
  position: absolute;
  margin: auto;
  top: 0;
  left: 3px;
  bottom: -18px;
  border-radius: 5px;
  background-color: #00102F;
  background: linear-gradient(
    to right,
    #dadae5 27%, /* Màu ở 10% */
    #030303 27%, /* Màu bắt đầu từ 10% */
    #0f0f0f 60%, /* Màu kết thúc ở 90% */
    #dadae5 60% /* Màu ở 90% */
);
}
input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
  z-index: 2;
}
input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 5px;
  background: transparent;
}
input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  height: 5px;
  background: transparent;
}
input[type="range"]::-ms-track {
  appearance: none;
  height: 5px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 1.7em;
  width: 1.7em;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  position: relative;
  z-index: 3;
}
input[type="range"]::-moz-range-thumb {
  height: 1.7em;
  width: 1.7em;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  position: relative;
  z-index: 3;
}
input[type="range"]::-ms-thumb {
  height: 1.7em;
  width: 1.7em;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(115, 115, 115, 0.3);
  pointer-events: auto;
  position: relative;
  z-index: 3;
}
input[type="range"]:active::-webkit-slider-thumb {
  background-color: #ffffff;
}
