/* Facet */
.facetwp-facet {
    position: relative;
    margin-bottom: 0;
}

/* Facet - Loading */
.facetwp-facet.is-loading:before {
    display: none;
}

/* Facet - Dropdown - Hierarchy */

/* Facet - User Selection */
.facetwp-selections {}

.facetwp-selections ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.facetwp-selections ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    padding-left: 0;
}

.facetwp-selections ul li::before {
    display: none;
}

.facetwp-selections .facetwp-selection-value {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px 10px 16px;
    font-size: 22px;
    line-height: 28px;
    border-radius: 4px;
    background: #f7f7f7;
    color: #1e441e;
    transition: background-color 0.3s;
}

.facetwp-selections .facetwp-selection-value:hover {
    background-color: #e6e6e5;
}

.facetwp-selection-value:before {
    content: "\e909";
    font-family: "heartland-icon";
    font-size: 12px;
    color: #000;
}

/* Facet - fSelect */
.facetwp-type-fselect {}

.fs-wrap {
    display: block;
    width: auto;
}

.fs-label-wrap {
    border-radius: 4px;
    border: none;
}

.fs-label-wrap .fs-label {
    padding: 10px 32px 10px 16px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #416858;
    background-color: #e5eae6;
    font-size: 22px;
    line-height: 28px;
    color: #1e441e;
    cursor: pointer;
}

.fs-open .fs-label-wrap .fs-label {
    background-color: #fff;
}

.fs-open .fs-label-wrap .fs-label {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.fs-arrow {
    right: 16px;
}

.fs-dropdown {
    position: relative;
    overflow: hidden;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-color: #1e441e;
    background-color: #f7f7f7;
}

.facetwp-type-fselect.is-loading .fs-dropdown {
    border-color: rgba(30, 68, 30, 0.6);
}

.fs-option,
.fs-search,
.fs-no-results {
    padding: 5px 16px;
    font-size: 18px;
    line-height: 28px;
}

.fs-option {
    padding-top: 11px;
    padding-bottom: 11px;
    transition: background-color 0.3s;
}

.fs-option:hover {
    background-color: #e5eae6;
}

.fs-search {
    background-color: #e5eae6;
}

.fs-wrap .fs-search input {
    
}

.fs-wrap.multiple .fs-option {
    padding-left: 44px;
}

.fs-wrap.multiple .fs-option .fs-option-label {
    white-space: normal;
    word-break: break-word;
}

.fs-wrap.multiple .fs-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    top: 16px;
    left: 16px;
    border-radius: 2px;
    border: 1px solid #1E441E;
    transition-property: border-color, background-color;
    transition-duration: 0.3s;
}

.fs-wrap.multiple .fs-option:hover .fs-checkbox,
.fs-wrap.multiple .fs-option.selected .fs-checkbox {
    border-color: #1e441e;
    background-color: #1e441e;
}

.fs-wrap.multiple .fs-option .fs-checkbox i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: static;
    border-radius: 0;
    border: none;
    font-family: "heartland-icon";
    font-size: 12px;
    font-style: normal;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.fs-wrap.multiple .fs-option.selected .fs-checkbox i {
    background-color: transparent;
    opacity: 1;
}

.fs-wrap.multiple .fs-option.selected .fs-checkbox i::after {
    content: "\e907";
}

/* Facet - ChoicesJS */
.facetwp-facet .choices__inner {
    padding-left: 16px !important;
    border-color: #1e441e;
    background-color: #fff;
    color: #1e441e;
}

.facetwp-facet .choices__inner,
.facetwp-facet .choices__list--dropdown .choices__item {
    font-size: 18px;
    line-height: 28px;
}

.facetwp-facet .choices__list--single .choices__item {
    font-size: 22px;
}

.facetwp-facet .choices__list--dropdown .choices__placeholder {
    display: none;
}

/* Facet - Reset */
.facetwp-type-reset .facetwp-reset {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    color: #1e441e;
}

.facetwp-type-reset .facetwp-reset,
.facetwp-type-reset .facetwp-reset:hover {
    background: none;
}

.facetwp-type-reset .facetwp-reset:before {
    content: "\e928";
    transform-origin: center;
    font-family: "heartland-icon";
    font-size: 30px;
    line-height: 1;
    transition: transform 0.3s;
}

.facetwp-type-reset .facetwp-reset:hover:before {
    transform: rotateZ(-180deg);
}

/* Facet - Pagination */
.facetwp-facet-pagination {
    margin: 0 auto;
    max-width: max-content;
}

.facetwp-facet-pagination .facetwp-pager:not(:empty) {
    margin-top: 50px;
}

.facetwp-pager {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.facetwp-page {
    margin-right: 0;
    padding: 10px 12px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #416858;
    background: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    transition: background 0.3s;
}

.facetwp-page.active,
.facetwp-page:hover {
    background: #e5eae6;
    font-weight: 400;
    color: #416858;
}

.facetwp-page:is(.prev, .next) {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 32px;
    height: 32px;
    font-size: 0;
    border-radius: 50%;
}

.facetwp-page:is(.prev, .next):after {
    font-family: 'heartland-icon';
    font-size: 18px;
    font-weight: normal;
}

.facetwp-page.prev {
    margin-right: 0;
}

.facetwp-page.prev::after {
    content: "\e902";
}

.facetwp-page.next {
    margin-left: 0;
}

.facetwp-page.next:after {
    content: "\e91d";
}

@media (min-width: 375px) {
    .facetwp-pager {
        gap: 8px;
    }

    .facetwp-page:is(.prev, .next) {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 425px) {
    .facetwp-pager {
        gap: 12px;
    }

    .facetwp-page {
        font-size: 22px;
    }

    .facetwp-page:is(.prev, .next) {
        width: 43px;
        height: 43px;
    }
}

@media (min-width: 480px) {
    .facetwp-pager {
        gap: 18px;
    }

    .facetwp-page {
        padding: 10px 16px;
        font-size: 22px;
    }

    .facetwp-page:is(.prev, .next) {
        width: 43px;
        height: 43px;
    }

    .facetwp-page:is(.prev, .next)::after {
        font-size: 22px;
    }
}

@media (min-width: 600px) {
    .facetwp-page.prev {
        margin-right: 12px;
    }

    .facetwp-page.next {
        margin-left: 12px;
    }
}