.filter-bar {
    background: #fff;
    width: 100%;
    padding: 20px 40px;
    font-family: "Montserrat-Normal", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #717171;
}

.filter-bar .filter-slider-container {
    margin-bottom: 10px;
}

.filter-bar .filter-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.filter-bar .filter-container .filter-wrapper {
    display: flex;
    flex: 1; 
    align-items: center;
}

.filter-bar .filter-container .filter-wrapper .icon-wrapper .icon {
    width: 20px;
    margin-right: 10px;
}

.filter-bar .filter-container .filter-wrapper .filter-field-wrapper {
    flex: 1;
    width: 100%;
    max-width: 140px;
    border: 1px solid #C1C1C1;
    border-radius: 20px;
    padding: 0;
}

.filter-bar .filter-container .filter-wrapper .filter-field-wrapper .filter-input-field {   
    margin-bottom: 0;
    border: 0;
    border-radius: 20px;
    outline: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    height: 40px;
}

.filter-bar .filter-container .filter-wrapper .btn-filter {
    display: flex;
    flex: 1;
    gap: 10px;
    align-items: center;
    justify-content: center; 
    background-color: white;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    border: 1px solid #C1C1C1;
    border-radius: 20px;
    height: 40px;
} 

.filter-bar .filter-container .filter-wrapper .btn-filter .icon {
    width: 20px;
}

/* Multiselect filter css */
.filter-bar .multi-select {
    padding-right: 30px;
}

.filter-bar .multi-select * {
    font-size: inherit !important;
}

.filter-bar .multi-select .multi-select-header,
.filter-bar .multi-select .multi-select-header .multi-select-header-placeholder {
    border: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.filter-bar .multi-select .multi-select-header .multi-select-header-option {
    background-color: transparent;
}

.filter-bar .multi-select .multi-select-options {
    right: -30%;
}

.filter-bar .slider-container .slider-label {
    width: 40px;
    color: inherit;
}

.filter-bar .slider-container .progress-bar-container {
    /* position: relative; */
    height: 10px;
    background: #eee;
    /* border-radius: 5px; */
}

.filter-bar .slider-container .progress-bar-container .progress-bar {
    /* position: absolute;
    border: 0;
    height: 100%; */
    background: #aaa;
    border: 0;
    filter: drop-shadow(5px 0px 3px grey);
    /* background: 
        url('https://d34za4dk7fsfj6.cloudfront.net/a21e2158-fbfe-43b7-9edf-383c247e784a/images/icons/icon-smoke.png') repeat-x 0 0,
        url('https://d34za4dk7fsfj6.cloudfront.net/a21e2158-fbfe-43b7-9edf-383c247e784a/images/icons/icon-smoke.png') repeat-x 35px 0;
    background-size: 70px 70px;
    width: 100%; /* or desired width */
    /* height: 70px;
    margin-top: -30px;
    filter: drop-shadow(5px 0px 3px grey); */ */
}

/* Webkit thumb */
.filter-bar .custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 50px;
    height: 50px;
    background: url('https://d34za4dk7fsfj6.cloudfront.net/a21e2158-fbfe-43b7-9edf-383c247e784a/images/icons/icon-car.svg') no-repeat center center;
    background-size: 50px 50px;
    border-radius: 0;
    box-shadow: 0 0;
    margin-top: -37px;
}

/* Firefox thumb */
.filter-bar .custom-slider::-moz-range-thumb {
    width: 50px;
    height: 50px;
    background: url('https://d34za4dk7fsfj6.cloudfront.net/a21e2158-fbfe-43b7-9edf-383c247e784a/images/icons/icon-car.svg') no-repeat center center;
    background-size: 50px 50px;
    border-radius: 0;
    box-shadow: 0 0;
    margin-top: -35px;
}