/***Flex Start ***/
	.flex{
		display: flex;
	}
	.flex-row{
		flex-direction: row;
	}
	.flex-column{
		flex-direction: column;
	}
	.flex-row-rev{
		flex-direction: row-reverse;
	}
	.flex-column-rev{
		flex-direction: column-reverse;
	}
	.flex-content-center, .content-center{
		justify-content: center;
	}
	.space-around{
		justify-content: space-around;
	}
	.space-between{
		justify-content: space-between;
	}
	.flex-item-stretch{
		align-items: stretch;
	}
	.align-item-start{
		align-items: flex-start;
	}
	.align-item-end{
		align-items: flex-end;
	}
	.v-align-bottom{
		justify-content: end;
	}
	.flex-item-center, .item-center{
		align-items: center;
	}
	.flex-wrap{
		flex-wrap: wrap;
	}
	.flex-g-1{
		flex-grow: 1;
	}
/*** Flex End ***/