.login-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
    text-decoration: none;
    flex-shrink: 0;
}

.login-link:hover {
    background: var(--btn_background_hover_color);
}

.login-door-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    line-height: 1;
}

.login-door-icon::before {
    display: block;
}

.login-link:hover .login-door-icon::before {
    content: "\f308";
}


#avatar {
    padding: 0px;
    overflow: hidden;
    width: 38px;
    height: 38px;
    background: var(--accent-soft);
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
}

.profile-avatar-img-lp {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 991px) {
    #avatar ~ .dropdown-menu {
        left: 0 !important;
        right: auto !important;
        transform: none !important;
    }
}
