.header__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    max-height: 80px;
}

.header__buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 16px;
}

.header__buttons .btn {
    flex: 0 0 auto;
}

.header__buttons .btn_favorite .btn__bubble {
    display: none;
}

.header__menu {
    padding: 0 21px;
    flex: 1 1 0;
    align-self: stretch;
/*    align-items: center;
    display: flex;
    justify-content: space-between;*/

    [id^=bx_incl_area_]{height: 100%;}

    @media (max-width: 1023px) {
        display: none;
    }
}

#mobile-menu {
    /* display: none; */
    width: 100%;
    max-width: 768px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    /* transform: translateX(-100vw); */
    transition: left .3s ease;
    z-index: 110;
    background-color: var(--color-white);
}

body.mobile-menu-opened {
    overflow: hidden;
}

body.mobile-menu-opened #mobile-menu {
    @media (max-width: 1023px) {
        left: 0;
    }
}

.mobile-menu__background {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 109;
}

.mobile-menu-opened .mobile-menu__background {
    display: block;
}