/* .nav-bar{
    justify-content: normal;
}  */

.profile-img {
    cursor: pointer;
}

.nav-sub-menu-wrap {
    position: absolute;
    top: 100%;
    right: 1%;
    width: 320px;
    max-width: 0px;
    overflow: hidden;
    /* transition: max-height 5s; */
}

.nav-sub-menu-wrap.open-menu {
    max-width: 400px;
}

.nav-sub-menu {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px 0 rgba(68, 68, 68, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.10);
    padding: 20px;
    margin: 10px;
}

.nav-user-info {
    display: flex;
    align-items: center;
}

.nav-user-info h3 {
    font-weight: 500;
    overflow: hidden;
}

.nav-user-info img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.nav-sub-menu hr {
    border: 0;
    height: 1px;
    width: 100%;
    background: #ccc;
    margin: 15px 0 10px;
}

.nav-sub-menu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #525252;
    margin: 12px 0;
}

.nav-sub-menu-link p {
    width: 100%;
}

.nav-sub-menu-link img {
    width: 20px;
    background: #e5e5e5;
    border-radius: 50%;
    padding: 8px;
    margin-right: 15px;
}

.nav-sub-menu-link:hover p {
    font-weight: 600;
}