:root{
    --nb-header-user-links-3-image-border-radius: var(--nb-border-radius-full);
    --nb-header-user-links-3-image-width: 40px;
    --nb-header-user-links-3-image-height: 40px;
}
.nb-header-user-links-3 .nb-user-register-link{
    margin-left: 10px;
    width: calc(50% - 5px);
    display: inline-block;
}
.nb-header-user-links-3 .nb-user-login-link{
    width: calc(50% - 5px);
    display: inline-block;
}
.nb-header-user-links-3{
    display: none;
}
/* logged user */
.nb-logged-user-wrapper{
    display: flex;
    justify-content: space-between;
}
.nb-logged-user-wrapper .nb-user-info-wrapper .nb-link{
    display: flex;
    gap: 10px;
    align-items: center;
}
.nb-logged-user-wrapper .nb-user-info-wrapper .nb-link .custom-text{
    width: min-content;
    text-align: left;
}
.nb-logged-user-wrapper .nb-user-info-wrapper .nb-img{
    max-width: var(--nb-header-user-links-3-image-width);
    max-height: var(--nb-header-user-links-3-image-height);
    border-radius: var(--nb-header-user-links-3-image-border-radius);
}
@media screen and (max-width: 992px) {
    .nb-header-user-links-3{
        display: block;
    }
}