#bpf-sidebar-filters {
    font-size: 14px;
}

.bpf-group {
    margin-bottom: 20px;
}

#bpf-sidebar-filters label {
    display: block;
    margin-bottom: 6px;
    cursor: pointer;
}

#bpf-top-filters button {
    border-radius: 30px;
    padding: 6px 14px;
    margin: 5px;
    background: #f3f3f3;
    border: none;
}

#bpf-top-filters .active {
    background: #000;
    color: #fff;
}

/* ACCORDION */

.bpf-group {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.bpf-group-header {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.bpf-group-content {
    display: none;
    margin-top: 10px;
}

.bpf-group.active .bpf-group-content {
    display: block;
}

/* plus / minus */

.bpf-toggle {
    font-size: 18px;
    transition: 0.3s;
}

.bpf-group.active .bpf-toggle {
    transform: rotate(45deg); /* robi z + → X */
}