#price-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 0.5rem;
    border-radius: 0.5rem;
    background-color: var(--gray-5); 
    cursor: pointer;
    outline: none;
    margin-bottom: 40px;
}

#price-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    border-radius: 0.5rem;
    background: transparent; 
}

#price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gray-0);
    border: 0.3rem solid var(--brand-1);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -7px;
    position: relative;
}

#price-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gray-0);
    border: 0.3rem solid var(--brand-1);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.price-number{
    color: var(--gray-1);
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    padding-bottom: 32px;
    align-items: center; 
}

.price-input {
    color: var(--gray-1);
    font-family: Inter;
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
}

.price-value {
    color: var(--brand-2);
    font-family: Inter;
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
}