@media (min-width: 1420px) {
    body header .right nav ul.signed li.user {
        display: flex;
        align-items: center;
        gap: 10px;

        padding: 8px;

        box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
    }

    body header .right nav ul.signed li.mobile {
        display: none;
    }


    body header .right nav ul.signed li.user img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    body header .right nav ul.signed.hide {
        display: none;
    }

    body header .right nav ul.notsign.hide {
        display: none;
    }
}

@media (max-width: 1420px) {
    body header .right nav ul.signed li.user {
        display: flex;
        align-items: center;
        gap: 10px;

        margin-left: 10px;
        padding: 8px;
        width: 0%;

        box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
    }

    body header .right nav ul.signed li.user img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }


    body header .right nav ul.signed.hide {
        display: none;
    }

    body header .right nav ul.notsign.hide {
        display: none;
    }
}