/* Style the app of body */
.AppBodyIdentification {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;

    background: rgb(255, 255, 255);
    border-radius: var(--size-07);

    width: 100%;
    max-width: calc(var(--size-170) * 1.1);
    max-height: calc(var(--size-170) * 2);

    box-shadow: 0px 7px 77px rgba(57, 57, 57, 0.1);
}

@media screen and (max-width: 900px){
    .AppBodyIdentification {
        height: 100%;
        max-height: unset;

        box-shadow: unset;
    }
}

    .AppBodyIdentification > app-data {
        background: unset;
    }