.flex {
	display: flex;
}

.flex-v {
	flex-direction: column;
}

.flex-center {
	align-items: center;
	justify-content: center;
}

.flex-center-v {
	align-items: center;
}

.flex-center-h {
	justify-content: center;
}

.flex-grow {
	flex-grow: 1;
}

.flex-column {
	flex-direction: column !important;
}

.flex-nowrap {
	flex-wrap: nowrap !important;
}

.flex-wrap {
	flex-wrap: wrap !important;
}

.flex-top {
	align-items: flex-start !important;
}

.flex-bottom {
	align-items: flex-end !important;
}

.flex-start {
	justify-content: flex-start !important;
}

.flex-end {
	justify-content: flex-end !important;
}

.flex-between {
	justify-content: space-between !important;
}

.flex-around {
	justify-content: space-around !important;
}