/* flex */
.flex {
    display: flex!important;
}
.flex-row {
    flex-direction:row!important;
}
.flex-column {
    flex-direction:column!important;
}
.flex-wrap {
    flex-wrap:wrap!important;
}
.flex-nowrap {
    flex-wrap:nowrap!important;
}
.justify-content-center {
    justify-content:center!important;
}
.justify-content-between {
    justify-content:space-between!important;
}
.justify-content-around {
    justify-content:space-around!important;
}
.align-item-center {
    align-items:center!important;
}
.flex-1 {
    flex: 1;
}
.margin-left{
    margin-left: 10%;
}