/* Positioning */
/* Box model */
/* Typographic */
/* Visual */

.f {
	/* Box model */
	display: flex;
}

.f-row {
	/* Box model */
	flex-direction: row;
}

.f-col {
	/* Box model */
	flex-direction: column;
}

.f-main-center {
	/* Box model */
	justify-content: center;
}

.f-main-start {
	/* Box model */
	justify-content: flex-start;
}

.f-main-end {
	/* Box model */
	justify-content: flex-end;
}

.f-cross-center {
	/* Box model */
	align-items: center;
}

.f-cross-start {
	/* Box model */
	align-items: flex-start;
}

.f-cross-end {
	/* Box model */
	align-items: flex-end;
}

.f-fit-basis {
	/* Box model */
	flex: 1;
}