.flex-align {
    max-height: 100% !important;
}

.flex-row{
    display: flex;
    /* flex-direction: row; */
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-around;
}

.flex-column {
    max-height: 100% !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}