.user-name-actions{
    float: right;
}

#sticky-bar{
    background-color: white;
    display: flex;
    height: 75px;
    align-items: center;
    justify-content: end;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 2;
}

#drop-menu{
    cursor: pointer;
}

.drop-submenu{
    background-color: white;
    width: fit-content;
    position: fixed;
    right: 32px;
    list-style: none;
    padding: 0;
    top: 85px;
}
.hidden-submenu{
    opacity: 0;
    transition: opacity 0.5s;
}
.show-submenu{
    opacity: 1;
    transition: opacity 0.5s;
}
.d-none{
    display: none
}

.drop-submenu-item{
    padding: 10px 20px;
    text-align: left;
}

.sticky-menu-item{
    padding: 0 15px;
}

#notification{
    cursor: pointer;
}