.btn--underline {
    display: inline-block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #7BC21F;
    cursor: pointer;
    user-select: none;
}
.btn--underline:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #7BC21F;
}
.facade {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}
.facade-banner {
    width: 100%;
    max-height: 360px;
    background-size: contain;
}
.facade-title-section {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 48px 112px;
}
.facade-title {
    font-size: 40px;
    line-height: 56px;
    white-space: nowrap;
}
.facade-btn-filter {
    width: 164px;
    height: 40px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 32px;
    border-radius: 16px;
    background: #3C3C3C;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
    cursor: pointer;
}
.facade-btn-filter__icon {
    width: 24px;
    height: 24px;
    background: url(/images/settings-white.svg) 0 0 no-repeat;
    background-size: contain;
}
.facade-btn-filter__icon.loading {
    background: url(/images/loading.gif) center no-repeat;
    background-size: contain;
}
.facade-list {
    width: 100%;
    padding: 0 112px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 48px;
}
.facade-loading {
    width: 35px;
    height: 35px;
    background: url(/images/loading.gif) center no-repeat;
    background-size: contain;
    margin: auto;
    display: none;
}
.facade-item {
    width: 49%;
    display: flex;
    gap: 50px;
    padding: 40px;
    border-radius: 32px;
    background: #F9F9F9;
}
.facade-item__imgs {
    width: 216px;
    min-width: 216px;
    max-width: 216px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.facade-item__imgs a {
    width: 100%;
    display: flex;
    justify-content: center;
}
.facade-item__description {
    flex-grow: 1;
}
.facade-item__title {
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    background: #7BC21F;
    border-radius: 8px;
    font-size: 24px;
    color: #fff;
}
.facade-item__title--pc {
    margin-bottom: 24px;
}
.facade-item__title--mob {
    display: none;
}
.facade-item__img--top {
    width: 216px;
    height: 160px;
}
.facade-item__img--bottom {
    width: 136px;
    height: 242px;
}
.facade-item__text {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.facade-item__parameters-btn {
    margin-bottom: 24px;
}
/*.facade-item__parameters-btn.loading {*/
/*    background: url(/images/loading.gif) center no-repeat;*/
/*    background-size: contain;*/
/*}*/
.facade-variants__title {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
}
.facade-variants__list {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    column-gap: 24px;
}
.facade-variants__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
}
.facade-variants__item-img-wrap {
    display: flex;
    flex-grow: 1;
}
.facade-variants__item img {
    display: block;
    margin-bottom: 8px;
    align-self: center;
    object-fit: contain;
}
.facade-variants__item h4 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}
.facade-item-parameters-popup {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    padding: 24px 40px 24px 32px;
    gap: 10px;
    border-radius: 32px;
    box-shadow: 2px 2px 16px 0 #CDCDCD29;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .3s;
}
.facade-item-parameters-popup.active {
    visibility: visible;
    opacity: 1;
    width: auto;
    height: auto;
    overflow: visible;
}
.facade-parameter {
    margin-bottom: 24px;
}
.facade-parameter:last-child {
    margin-bottom: 0;
}
.facade-parameter__title {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}
.facade-parameter__value-list {
    padding-left: 36px;
    margin-bottom: 0;
    list-style-type: none;
}
.facade-parameter__value-item {
    position: relative;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
}
.facade-parameter__value-item:last-child {
    margin-bottom: 0;
}
.facade-parameter__value-item:before {
    content: '•';
    position: absolute;
    left: -28px;
    top: -2px;
    font-size: 24px;
    color: #7bc21f;
}
.facade-filter-overlay {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #1D1D1B52;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.facade-filter-overlay.active {
    visibility: visible;
    opacity: 1;
}
.facade-filter-wrap {
    position: absolute;
    top: 0;
    right: 0;
}
.facade-filter {
    position: absolute;
    top: 0;
    right: 0;
    width: 436px;
    z-index: 1001;
    border-radius: 0 0 0 32px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.facade-filter.active {
    visibility: visible;
    opacity: 1;
}
.facade-filter-count {
    margin-left: 5px;
}
.facade-filter-count.loading {
    width: 24px;
    height: 24px;
    background: url(/images/loading.gif) center no-repeat;
    background-size: contain;
}
.facade-filter__clear {
    margin-bottom: 16px;
}
.facade-filter__body {
    position: relative;
    padding: 40px;
    padding-bottom: 16px;
    z-index: 1001;
    background: #FFFFFF;
}
.facade-filter__title {
    margin-bottom: 8px;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
}
.facade-filter__close-icon {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 56px;
    right: 40px;
    background: url(/images/cross-menu.svg) 0 0 no-repeat;
    background-size: contain;
    cursor: pointer;
}
.facade-filter__close-text {
    display: none;
}
.facade-filter__group-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    cursor: pointer;
    user-select: none;
}
.facade-filter__group-title:after {
    content: '';
    display: block;
    width: 10px;
    height: 5px;
    background: url(/images/arrow_down.svg) 0 0 no-repeat;
    background-size: contain;
    transition: transform .3s;
}
.facade-filter__group-title.active:after {
    transform: rotate(180deg);
}
.facade-filter__group-body {
    overflow: hidden;
    transition: height .3s;
    font-size: 16px;
    line-height: 24px;
}
.facade-filter__group-subtitle {
    margin-bottom: 16px;
    font-weight: 500;
}
.facade-filter__parameter-group label {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    font-weight: 500;
}
.facade-filter__apply {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 112px;
    background: #3C3C3C;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #fff;
    border-radius: 0 0 0 32px;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 1001;
}
@media (min-width: 769px) {
    .facade-filter__parameter-group {
        margin-top: 16px;
    }
}
@media (max-width: 1800px) {
    .facade-item {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .facade-banner {
        display: none;
    }
    .facade-title-section {
        padding: 8px 16px;
    }
    .facade-title {
        width: 100%;
        font-size: 24px;
        line-height: 32px;
    }
    .facade-btn-filter {
        width: auto;
        padding: 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 24px;
        background: none;
        color: #1D1D1B;
    }
    .facade-btn-filter__icon {
        order: -1;
        background: url(/images/settings-black.svg) 0 0 no-repeat;
        background-size: contain;
    }
    .facade-filter {
        width: 100vw;
        height: 100vh;
        position: fixed;
        border-radius: 0;
    }
    .facade-filter__close {
        display: flex;
        align-items: center;
        column-gap: 8px;
        margin-bottom: 16px;
    }
    .facade-filter__close-icon {
        position: static;
        width: 18px;
        height: 18px;
        background: url(/images/arrow_down.svg) center no-repeat;
        background-size: 8px 4px;
        border: 0.7px solid #1D1D1B;
        border-radius: 50%;
        transform: rotate(90deg);
    }
    .facade-filter__close-text {
        position: relative;
        display: block;
        font-size: 14px;
        line-height: 24px;
        color: #1D1D1B;
    }
    .facade-filter__close-text:after {
        content: '';
        position: absolute;
        display: inline-block;
        width: 100%;
        height: 1px;
        left: 0;
        bottom: 0;
        background: #1D1D1B;
    }
    .facade-filter__title {
        font-size: 22px;
        line-height: 32px;
    }
    .facade-filter__clear {
        position: absolute;
        top: 60px;
        right: 16px;
        color: #1D1D1B;
        font-size: 14px;
        line-height: 24px;
    }
    .facade-filter__clear-text-pc {
        display: none;
    }
    .facade-filter__group-title {
        font-size: 16px;
        line-height: 24px;
    }
    .facade-filter__group-body {
        font-size: 14px;
        line-height: 24px;
    }
    .facade-filter__body {
        height: 100%;
        padding: 16px;
        padding-bottom: 56px;
        overflow: auto;
    }
    .facade-filter__apply {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 56px;
        border-radius: 0;
        font-size: 16px;
        line-height: 24px;
    }
    .facade-list {
        padding: 0 16px;
        row-gap: 40px;
    }
    .facade-item {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        background: none;
        padding: 0;
    }
    .facade-item__title--mob {
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }
    .facade-item__title--pc {
        display: none;
    }
    .facade-item__img:not(.facade-item__img--mob) {
        display: none;
    }
    .facade-item__description {
        text-align: center;
    }
    .facade-variants__list {
        width: 100%;
    }
    .facade-variants__item h4 {
        font-size: 12px;
        line-height: 16px;
    }
}