
.flex{display:flex}
.flex-col{display: flex;flex-direction:column;}
.flex-center{display:flex;justify-content:center;}
.flex-between{display:flex;justify-content:space-between;}
.flex-start{display:flex;justify-content:flex-start;}
.flex-end{display:flex;justify-content:flex-end;}
.flex-dir-col{flex-direction:column}
.items-center{align-items:center;}
.items-bottom{align-items:bottom;}
.items-start{align-items: start;}
.items-end{align-items: flex-end;}
.justify-start{justify-content: flex-start;}
.justify-center{justify-content: center;}
.self-align-start{align-self: flex-start;}
.self-align-center{align-self: center;}
.justify-between{justify-content:space-between;}

.flex-wrap{flex-wrap : wrap;}
.flex-nowrap{flex-wrap:nowrap}
.flex-grow{flex-grow : 1}
.flex-no-grow{flex-grow : 0}
.flex-shrink{flex-shrink : 1}
.flex-no-shrink{flex-shrink: 0;}
.flex-basis-min{flex-basis: min-content}