<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.filter {
    font-family: 'Univers LT Std';
}

.filter__body {
    width: 100%;

    display: flex;
    flex-direction: column;
}

.filter__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.filter__sticky.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    padding: 20px 30px;
    background: #fff;
}

.filter__results-counter {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 21px;
    color: #212121;

    margin-right: 20px;
}

.filter__btn {
    margin-right: 20px;
    height: 51px;
}

.filter__btn-open {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 21px;
    color: #FFFFFF;
    text-transform: uppercase;
    background: #212121;
    border: 2px solid #212121;
    border-radius: 4px;

    width: 135px;
    padding: 13px 20px 13px 43px;
    text-align: start;
    color: #fff;
    position: relative;
}


.filter-modal__tabs-body .section-name:first-letter {
    text-transform: uppercase;
}


.filter__btn-open::before {
    display: block;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.filter__btn-open::before {
    content: "";
    background: url("filter-btn-white.svg") no-repeat 0 0 / cover;
    width: 16px;
    height: 10px;

    left: 23px;
}

.filter-modal__title:not([data-counter="0"])::after,
.filter__btn-open:not([data-counter="0"])::after {
    content: attr(data-counter);
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 21px;
    text-align: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    position: absolute;
}

.filter-modal__title:not([data-counter="0"])::after {
    right: 0;
    display: none;
    color: #fff;
    background: #212121;
    line-height: 17px;
}

.filter__btn-open:not([data-counter="0"])::after {
    right: 20px;
    color: #212121;
    background: #fff;
    line-height: 17px;
}

.filter__list {
    display: flex;
    list-style: none;

    margin-right: auto;

    color: #000000;
}

.filter__list-item {
    font-style: normal;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    margin-right: 30px;
    display: flex;
    align-items: center;
    padding-right: 20px;
    cursor: pointer;
    position: relative;
}

.filter__list-item.show span {
    display: inline-block;
}

.filter__list-item span {
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 18px;
    text-align: center;

    color: #212121;

    display: none;
    margin-left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #DEDEDE;
}

.filter__list-item::after {
    content: "";
    display: block;
    width: 10px;
    height: 6px;

    background: url("chevrone.svg") no-repeat 0 0 / cover;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.view-mode {
    width: 50%;
    display: none;
}

.view-mode__text {
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 22px;
    color: #212121;

    margin-right: 22px;
}

.view-mode__items {
    display: flex;
    gap: 22px;
}

.view-mode-item {
    height: 22px;
}

.view-mode-item__img {
    display: block;
}


.filter-modal__content-categories {
    justify-content: center;
    display: flex;
}

.filter-modal__content-categories .category {
    text-align: center;
    border: 1px solid #b8babd;
    cursor: pointer;
    background-color: #fff;
    color: #000;
    transition: all 0.2s;
    padding: 2rem;
    margin: 1rem;
}

.filter-modal__content-categories .category:hover {
    background-color: #e9ecef;
}

.filter-modal__content-categories .category.active {
    background-color: #000;
    color: #fff;
}

.filter-modal__content-categories .icon {
    font-size: 38px;
}

.filter-modal__content-categories .title {
    font-size: 16px;
    margin-top: 1rem;
}

.select2-dropdown--below {
    border: 0 none;
}

.filter-sort .select2-selection--single {
    height: 48px!important;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    border: 0 none!important;
    background-color: #fff!important;
}

.no-filter-options {
    display: none;
}

.filter-popular__item.popular-item {
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.5s all;
    padding: 5px;
    padding-bottom: 1px;
}

.filter-popular__item.popular-item:hover,
.filter-popular__item.popular-item.active {
    border-color: #dfdfdf;
}</pre></body></html>