@media not all and (min-width: 64rem) {
    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open .site-header-container {
        z-index: 10001;
    }

    .b-header .burger {
        appearance: none;
        align-items: center;
        padding: 0;
        border: 0;
        background: transparent;
        color: #fff;
        cursor: pointer;
    }

    .b-header .burger span {
        margin-left: 18px;
        text-transform: uppercase;
        font: 700 14px/1 "Roboto", sans-serif;
    }

    .b-header .burger__close {
        display: none;
    }

    .b-header .burger[aria-expanded="true"] .burger__open {
        display: none;
    }

    .b-header .burger[aria-expanded="true"] .burger__close {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        z-index: 10000;
        inset: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        padding: 91px 20px 24px;
        overflow-y: auto;
        background: #0f0f10;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s;
    }

    .mobile-menu.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu__divider {
        flex: 0 0 auto;
        width: 100%;
        height: 1px;
        margin: 0 0 24px;
        background: rgba(255, 255, 255, .2);
    }

    .mobile-menu__personal {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 32px;
        padding-top: 20px;
        color: #fff;
        font: 400 16px/1.4 "Roboto", sans-serif;
        text-decoration: none;
    }

    .mobile-menu__avatar {
        display: flex;
        flex: 0 0 48px;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 50%;
    }

    .mobile-menu__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-menu__nav {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }

    .mobile-menu__nav a {
        color: #fff;
        text-decoration: none;
    }

    .mobile-menu__nav a.active {
        color: #de2626;
    }

    .mobile-menu__label {
        position: relative;
        display: inline-block;
    }

    .mobile-menu__nav .menu-badge {
        position: absolute;
        top: -9px;
        right: -13px;
        pointer-events: none;
    }

    .mobile-menu__social,
    .mobile-menu__social .social {
        display: flex !important;
    }

    .mobile-menu__social .item {
        margin-right: 8px;
    }
}

@media (min-width: 64rem) {
    .mobile-menu {
        display: none;
    }
}
