button.product-filter-trigger {
    border: none;
    padding: 15px 25px 15px 20px;
    border-radius: var(--border-radius-button);
    background-color: var(--color-primary-light);
    color: var(--color-white);
    cursor: pointer;
    transition: .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.product-filter-trigger:hover {
    background-color: var(--color-primary);
}

button.product-filter-trigger:before {
    content: "";
    margin-right: 5px;
    background-image: url(../../images/icons/filter-white.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    width: 20px;
    height: 20px;
    display: inline-flex;
}

@media (max-width:767px) {
    button.product-filter-trigger {
        width: 100%;
    }
}

/* Sidebar */

.product-filter-sidebar {
    min-width: 400px;
}

.product-filter-sidebar-inner_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background-color: var(--color-white);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 2;
    margin-bottom: 20px;
}

button.sidebar-close {
    font-size: 0;
    border: none;
    width: 25px;
    height: 25px;
    background-color: transparent;
    background-image: url(../../images/icons/close.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

.product-filter-sidebar span.filter-heading {
    font-size: 20px;
    font-weight: 600;
}

.product-filter-sidebar .facet-group {
    padding: 0 30px;
}

.product-filter-sidebar .facet-group:last-of-type {
    margin-bottom: 40px;
}

.product-filter-sidebar .facet-group:not(:last-of-type) {
    margin-bottom: 20px;
}

.product-filter-sidebar .facet-group .facetwp-facet {
    margin: 0;
}

.product-filter-sidebar h3.facet-group__title {
    border-bottom: solid 1px var(--color-grey);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.facetwp-checkbox {
    background: none !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    margin-bottom: 6px !important;
}

.facetwp-checkbox.checked {
    font-weight: 700;
}

.facetwp-checkbox:before {
    content: "";
    margin-right: 5px;
    border: solid 1px var(--color-border);
    width: 25px;
    height: 25px;
    display: inline-flex;
    border-radius: var(--border-radius-checkbox);
}

.facetwp-checkbox.checked:before {
    background-image: url(../../images/icons/check-white.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

@media (max-width:767px) {
    .product-filter-sidebar .facet-group {
        padding: 0 20px;
    }

    .product-filter-sidebar-inner_heading {
        padding: 20px;
    }

    .product-filter-sidebar {
        min-width: 95vw;
    }
}