.price-filter-wrapper {
    max-width: 320px;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-slider {
    position: relative;
    height: 30px;
    margin-top: 12px;
}

.price-slider-track {
    position: absolute;
    height: 4px;
    width: 100%;
    background: #4de1f6;
    top: 50%;
    transform: translateY(-50%);
}

.price-slider input[type=range] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    appearance: none;
    background: transparent;
}

.price-slider input[type=range]::-webkit-slider-thumb {
    pointer-events: auto;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
}

.epf-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Horizontal (default) */
.epf-layout-horizontal {
    flex-direction: row;
}

/* Vertical */
.epf-layout-vertical {
    flex-direction: column;
}

.epf-category {
    display: flex;
    align-items: center;
    gap: 6px;
}

.epf-category-count {
    opacity: 0.6;
    font-size: 0.85em;
}

.price-inputs {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-input {
    width: 100%;
    max-width: 120px;
}

.epf-toolbar {
    display: flex;
    gap: 20px;
}
.epf-search {
    width: 70%;
}
span.epf-search-icon {
    font-size: 19px;
    height: 16px;
    width:16px;
    display: flex;
    fill: #a9acb2;
    position: absolute;
    left: 18px;
    top: 18px;
}
input.epf-search-input {
    padding-left: 50px !important;
    background: #fff !important;
}
.epf-dropdown-icon {
    height: 30px !important;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 14px;
    fill: #4de1f6;
    pointer-events: none;
}
select.epf-order-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff !important;
    color:black;
}
.epf-filter {
    transition: all 0.3s;
}
.filter_closed {
    height: 56px;
    display: block;
    min-height: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.filter_closed .epf-filter{
    height: 0px;
    overflow: hidden;
}
.epf-order {
    position: relative;
}
@media(max-width:640px){
    .epf-search {
        width: 100%;
    }
    .epf-actions {
        display: flex;
        flex-flow: column;
        gap: 13px;
    }
    .epf-toolbar {
        display: flex;
        flex-direction: column;
    }
}