
.theatre_flex_start_start_row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
}

.theatre_flex_center_center_row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.theatre_flex_end_end_row {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: row;
}

.theatre_flex_center_start_row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
}

.theatre_flex_between_center_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.theatre_flex_between_start_row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}

.theatre_flex_around_center_row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

.theatre_flex_evenly_center_row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
}

.theatre_flex_start_stretch_row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
}

.theatre_flex_center_baseline_row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: row;
}

/* === COLUMN === */
.theatre_flex_start_start_column {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.theatre_flex_center_center_column {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.theatre_flex_end_end_column {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.theatre_flex_between_stretch_column {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: column;
}

.theatre_flex_evenly_center_column {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

.theatre_flex_start_baseline_column {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    flex-direction: column;
}
