.common-page__header {
    padding: 5px 20px;
    height: 70px;
    position: relative;
    z-index: 2;
    background-color: var(--primary-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2),0 4px 5px 0 rgba(0, 0, 0, .14),0 1px 10px 0 rgba(0, 0, 0, .12);

    @media (max-width: 468px) {
        gap: 8px;
    }
}

.common-page__header-logo {
    display: inline-block;
    background: url('../image/logo-white.svg') no-repeat center center / contain;
    min-width: 227px;
    height: 40px;
    cursor: pointer;

    @media (max-width: 991px) {
        min-width: 186px;
    }

    @media (max-width: 767px) {
        width: 186px;
        min-width: unset;
    }
}

.common-page__header-right {
    height: 100%;
    font-size: .9rem;
    color: var(--neutral-white);
    display: flex;
    align-items: flex-start;
    flex: 0 0 auto;
    justify-self: flex-end;
    gap: 10px;
}

.common-page__top-profile {
    display: flex;
    gap: 10px;
    margin-left: 10px;

    @media (max-width: 480px) {
        margin-left: 0;
    }
}

.common-page__main-manager {
    height: 60px;
    color: var(--neutral-white);

    @media (max-width: 1480px) {
        display: none;
    }
}

.common-page__top-profile .common-page__main-manager {
    display: none;

    @media (max-width: 576px) {
        display: block;
        cursor: pointer;
        width: 32px;
        height: 32px;
        padding: 9px 5px;
        font-weight: 500;
        font-size: 14px;
        line-height: 120%;
        text-align: center;
        vertical-align: middle;
        border-radius: 100%;
        background: var(--gray);
        color: var(--neutral-white);
    }
}

.common-page__main-manager-visible {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 8px;
    width: 180px;
    overflow: hidden;
    background-color: var(--secondary-blue-transparent);
    border-left: 4px solid var(--primary-perano);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    padding: 4px 12px;
}

.manager-name {
    font-weight: 500;
}

.common-page__top-profile-icon {
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 9px 5px;
    margin: 10px 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    vertical-align: middle;
    border-radius: 100%;
    background: var(--gray);
    color: var(--neutral-white);

    @media (max-width: 576px) {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin: 14px 0;
    }
}

.common-page__top-profile-info {
    border: 1px solid #e7e9f0;
    border-radius: 4px;
    box-shadow: 0 4px 6px -2px rgba(13, 17, 28, 0.03), 0 12px 16px -4px rgba(13, 17, 28, 0.08);
    background: var(--neutral-white);
    width: 224px;
    position: absolute;
    z-index: 10;
    right: 6px;
    top: 6px;
    display: none;
}

.common-page__main-top-profile-manager {
    display: none;

    @media (max-width: 1480px) {
        padding: 8px 16px;
        display: block;
        font-weight: 500;
        font-size: 12px;
        color: var(--neutral-top-shelf);
        text-decoration: none;
    }
}

.common-page__main-top-profile-manager .manager-phone a {
    padding: 8px 0;
    color: var(--neutral-top-shelf);
}

.common-page__top-profile-icon:hover .common-page__top-profile-info {
    display: block;
}

.common-page__top-profile-head {
    padding: 14px 16px;
    background: var(--neutral-marble);
}

.common-page__top-profile-head-avatar {
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 100%;
    background: var(--gray);
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    color: var(--neutral-white);
    margin-right: 8px;
}

.common-page__top-profile-head-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: var(--neutral-black);

    @media (max-width: 991px) {
        font-size: 12px;
    }
}

.common-page__top-profile-head-role {
    font-size: 12px;
    color: var(--neutral-black);
}

.common-page__top-profile-menu {
    padding: 4px 0;
}

.common-page__top-profile-menu a {
    padding: 8px 16px;
    height: 32px;
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--neutral-black);
    text-decoration: none;

    @media (max-width: 991px) {
        font-size: 12px;
    }
}

.common-page__top-profile-menu a:hover {
    background: #f5f5f5;
}