.header-top {
    display: flex;
    align-items: center;
    height: 75px;
    font-family: AvenirRoman, sans-serif;
}

.header-top__navigation {
    height: 100%;
}
.header-top__person-image {
    width: 20px;
    height: 20px;
    margin: 0 8px 7px 0;
}
.header-top__menu {
    display: flex;
    align-items: center;
    height: 100%;

}
.header-top__menu-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.header-top__menu-item:hover {
    background: var(--blue);
}
.header-top__menu-item.with-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.header-top__updates-count {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--light-blue);
    font-size: 14px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: AvenirHeavy, sans-serif;
}

@media screen and (max-width: 1279px){
    .header-top__updates-count {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
}
