.range-slider__range {
  -webkit-appearance: none;
  width: calc(100% - (#{$range-label-width + 13px}));
  height: 10px;
  border-radius: 5px;
  background: var(--background-color); // Cor sólida para a faixa do slider
  outline: none;
  padding: 0;
  margin: 0;


 &::-webkit-slider-thumb {
        box-shadow: none;
        border: 2px solid var(--background-color);
        box-shadow: 0px 10px 10px rgba(0,0,0,0.25);
        height: 15px;
        width: 15px;
        border-radius: 50%;
        background: var(--primary-color);
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: 0px;
    }
  &::-moz-range-thumb{
        box-shadow: none;
        border: 2px solid var(--background-color);
        box-shadow: 0px 10px 10px rgba(0,0,0,0.50);
        height: 15px;
        width: 15px;
        border-radius: 50%;
        background: var(--primary-color);
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: 0px;
  }
}

.range-slider__value {
  display: inline-block;
  position: relative;
  width: $range-label-width;
  color: var(--text-color); // Cor do texto conforme o tema
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: var(--background-color-2); // Cor de fundo do label
  padding: 5px 10px;
  margin-left: 8px;
  padding-right: 4px;
  padding-left: 4px;


  &:after {

    position: absolute;
    top: 8px;
    left: -6px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 7px solid var(--background-color-2); // Cor da seta alinhada com o label
    border-bottom: 7px solid transparent;
    content: '';


  }
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Define o grid com 5 colunas */
    gap: 10px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: var(--background-color-2);

}

.filters-sub-container{
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
}


.range-slider__range {
    flex: 1;
}

.range-slider__value {
    width: 20px;
    text-align: right;
}