.img-grop{
    overflow: hidden;
}
.img-crop img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.SignUpFormLabelText{
    text-align: right;
}

.TextWarning{
    color: #ffc107;
}

.TextPrimary{
    color: #3763f4;
}

.TextDanger{
    color: #dc3545;
}

.MenuFisso{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
    align-items: center;
}

#LellerixMainMenu{
    padding: 5px;
    border-radius: 15px;
}

#FooterMyInfo{
    align-items: center;
}


.LellerixMainMenuBtn{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    gap: 5px;
}

.PageTitle{
    font-size: 2rem;
}


.PageTitleSmall{
    font-size: 1.5rem;
}

.PageDescription{
    font-size: 1rem;
}

.TableText td, th{
    font-size: 0.8rem;
    color: white;
    text-align: center;
    vertical-align: middle;
}

.EditAvatarViewer{
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, 1fr);
}


.EditAvatarViewer div{
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.AvatarSelected{
    background-color: #0c3ee1;
}

.AvatarSelectorPlus{
    background-color: orange;
}


.swap{
    position: relative;
    width: 3vh;
    height: 3vh;
    overflow: hidden;
    margin: auto;
}

.swap img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* prima immagine */
.swap img:first-child{
    opacity: 1;
    animation: aFade 6s infinite linear;
}

/* seconda immagine */
.swap img:nth-of-type(2){
    opacity: 0;
    animation: bFade 6s infinite linear;
}


@keyframes aFade{
    /* 0-2s: a visibile */
    0%   { opacity: 1; }
    33%  { opacity: 1; }

    /* 2-3s: crossfade (a scende) */
    50%  { opacity: 0; }

    /* 3-5s: a invisibile */
    83%  { opacity: 0; }

    /* 5-6s: crossfade (a sale) */
    100% { opacity: 1; }
}

@keyframes bFade{
    /* 0-2s: b invisibile */
    0%   { opacity: 0; }
    33%  { opacity: 0; }

    /* 2-3s: crossfade (b sale) */
    50%  { opacity: 1; }

    /* 3-5s: b visibile */
    83%  { opacity: 1; }

    /* 5-6s: crossfade (b scende) */
    100% { opacity: 0; }
}