.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: stretch;
}

.align-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.space-around {
    justify-content: space-around;
}

.space-between {
    justify-content: space-between;
}

.space-evently {
    justify-content: space-evenly;
}

.v-middle {
    vertical-align: middle;
    padding: 15px;
}

.solid-table {
    width: 100%;
}