.flex {
	display: flex;
}
.wrap {
	flex-wrap: wrap;
}

.flex-column {
	flex-direction: column;
}

.flex-items-center {
	align-items: center;
}

.flex-justify-center {
	justify-content: center;
}

.flex-justify-end {
	justify-content: flex-end;
}

.flex-space-between {
	justify-content: space-between;
}
