.displayFlex {
    display: flex;
}

.flexDirectionColum {
    flex-direction: column;
}

.flexDirectionRow {
    flex-direction: row;
}

.flexJustifySpaceBetween {
    justify-content: space-between;
}
.flexJustifySpaceAround {
    justify-content: space-around;
}

/*.flex{*/
/*justify-content: ;*/
/*}*/
.flexAlginItemsCenter {
    align-items: center;
}

.flexAlginContentCenter {
    align-content: center;
}

.flexJustifyCenter {
    justify-content: center;
}

.flexAlignContentSpaceBetween {
    align-content: space-between;
}

.flexJustifyEnd {
    justify-content: end;
}

.flexWrapWrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
}

.flex-3 {
    flex: 3;
}

.flex-7 {
    flex: 7;
}
.flex-8 {
    flex: 8;
}
.flex-2 {
    flex: 2;
}

.justify-content-flex-end{
    justify-content: flex-end;
}
