
.flex {
    display: flex !important;
}

/* Direction */
.flex-direction-column {
    flex-direction: column;
}

.flex-direction-column-reverse {
    flex-direction: column-reverse;
}

.flex-direction-row {
    flex-direction: row;
}

.flex-direction-row-reverse {
    flex-direction: row-reverse;
}

.flex-direction-revert {
    flex-direction: revert;
}

/* Content */
.justify-content-space-between {
    justify-content: space-between
}

.justify-content-space-around {
    justify-content: space-around
}

.justify-content-space-evenly {
    justify-content: space-evenly
}

.justify-content-center {
    justify-content: center
}

.justify-content-and {
    justify-content: and
}

.justify-content-flex-end {
    justify-content: flex-end
}

.justify-content-flex-start {
    justify-content: flex-start
}

.justify-content-left {
    justify-content: left
}

.justify-content-right {
    justify-content: right
}


/* Item */
.align-items-center {
    align-items: center;
}

.align-items-and {
    align-items: and;
}

.align-items-and {
    align-items: and;
}

.align-items-flex-and {
    align-items: flex-and;
}

.align-items-flex-start {
    align-items: flex-start;
}

.flex-wrap-wrap {
    flex-wrap: wrap
}
