.flex-row-center{
	display: flex;
	flex-direction: row;
    justify-content: center;
}
.flex-row-start{
	display: flex;
	flex-direction: row;
    justify-content: flex-start;
}
.flex-row-end{
	display: flex;
	flex-direction: row;
    justify-content: flex-end;
}
.flex-row-sb{
	display: flex;
	flex-direction: row;
    justify-content:space-between;
}
.flex-row-sa{
	display: flex;
	flex-direction: row;
    justify-content:space-around;
}
.flex-row-se{
	display: flex;
	flex-direction: row;
    justify-content:space-evenly;
}
/*---COLUMN---*/
.flex-column-center{
    display: flex;
	flex-direction: column;
    justify-content:center;
}
.flex-column-start{
    display: flex;
	flex-direction: column;
    justify-content:flex-start;
}
.flex-column-end{
    display: flex;
	flex-direction: column;
    justify-content:flex-end;
}
.flex-column-sb{
    display: flex;
	flex-direction: column;
    justify-content:space-between;
}
.flex-column-sa{
    display: flex;
	flex-direction: column;
    justify-content:space-around;
}
.flex-column-se{
    display: flex;
	flex-direction: column;
    justify-content:space-evenly;
}
.flex-align-center{
    align-items: center;
}
.flex-align-start{
    align-items:flex-start;
}
.flex-align-end{
    align-items:flex-end;
}
.flex-align-baseline{
    align-items:baseline;
}
.flex-wrap{
	display: flex;
	flex-wrap: wrap;
	display:-webkit-flex;
	-webkit-flex-wrap:wrap;
}