
.tabellaInfo{
    background-color: #a07649;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    font-weight: 300;
    font-size: 11pt;
    line-height: 16px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    justify-content: center;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.tabellaInfo > .infoLeft{
    flex: 1;
}
.tabellaInfo > .infoRight{
    flex: 1;
}
.tabellaInfo > .infoLeft > .field > span{
    font-weight: 700;
}
.tabellaInfo > .infoRight > .field > span{
    font-weight: 700;
}

@media screen and (max-width: 550px) {
    .tabellaInfo{
        flex-flow: column;
        font-size: 10pt;
        line-height: 14px;
    }
}

/* PORTRAIT MODE */
@media screen and (max-height: 641px) {
    .tabellaInfo{
        flex-flow: column;
        font-size: 10pt;
        line-height: 14px;
    }
}