.flex {
	display: flex;
}
.flex-1 {
	flex:1 1 0px; min-width: 0px; -webkit-flex: 1;
}
.flex-2 {
	flex:2 1 0px; min-width: 0px; -webkit-flex: 2;
}
.flex-grow-1 {
	flex-grow: 1; -webkit-flex-grow: 1;
}
.flex-wrap {
	flex-wrap: wrap; -webkit-flex-wrap: wrap;
}
.flex-row {
	flex-direction: row;
}
.flex-row-reverse {
	flex-direction: row-reverse;
}
.flex-col {
	flex-direction: column;
}
.flex-col-reverse {
	flex-direction: column-reverse;
}
.flex-left {
	justify-content: flex-start;
}
.flex-center {
	justify-content: center;
}
.flex-right {
	justify-content: flex-end;
}
.flex-between {
	justify-content: space-between;
}
.flex-around {
	justify-content: space-around;
}
.align-items-stretch {
	align-items: stretch;
}
.align-items-baseline {
	align-items: baseline;
}
.align-items-center {
	align-items: center;
}
.align-items-start {
	align-items: flex-start;
}
.align-items-end {
	align-items: flex-end;
}
