#MainMenu {
    background: #fff;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 44px;
}

.header-menu__item {
    border: none;
    padding: 0 11px;
}

.header-menu__item .x-btn-inner {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #1E1E1E;
    padding: 0;
}

.header-menu__item:hover {
    border: none;
    background: #fff;
}

.header-menu__item:hover .x-btn-inner {
    font-weight: 500;
}

.header-menu__logo {
    width: 140px;
    height: 24px;
    background: url("/static/branding/logo.svg") center/contain no-repeat;
    border: none;
    margin-right: 40px !important;
}

.header-menu-account {
    width: 61px;
    display: flex;
    align-items: center;
}

.header-menu-account__avatar {
    border-radius: 50%;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(30, 30, 30, 0.15);
    background: url("../../../../img/user-icon.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.header-menu-account__avatar__counter {
    position: absolute;
    top: -4px;
    right: -12px;
    background-color: red;
    color: #fff;
    border-radius: 9px;
    padding: 0 4px;
    min-width: 18px;
    height: 18px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 9px;
}

.header-menu-account__chevron-down {
    background: url("../../../../img/chevron_down-icon.svg");
    width: 13px;
    height: 13px;
    margin-left: 5px;
}

.pointer {
    cursor: pointer;
}

.header-menu-account__wrapper {
    position: relative;
}

#userCardTooltip {
    width: 320px;
    height: 364px;
    background: #fff;
    z-index: 99999;
    /*box-shadow: 0 4px 4px -1px #1E1E1E0A;*/
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border-radius: 16px;
    padding: 16px;
    font-family: "Inter", sans-serif;
}

.user-card__info {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.user-card__info *{
    color: #1E1E1E;
}

.user-card__info__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(30, 30, 30, 0.15);
    background: url("../../../../img/user-icon.png");
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 8px;
}

.user-card__info__name {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    margin-bottom: 4px;
}

.user-card__info__email {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    opacity: 0.8;
    margin-bottom: 8px;
}

.user-card__menu__item {
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
    cursor: pointer;
    color: rgba(30, 30, 30, 1);
}

.user-card__hr {
    height: 1px;
    display: flex;
    width: 100%;
    background-color: #1E1E1E14;
    margin-bottom: 8px;
}

.exit-icon {
    width: 12px;
    height: 12px;
    background: url("../../../../img/exit-icon.svg");
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 14px;
}
