
.f-row {
	display: flex;
	flex-direction: row;
}
.f-row-start {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.f-row-end {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}
.f-row-center {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.f-row-Hcenter {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.f-row-Wcenter {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.f-row-WHcenter {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.f-row-between {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	/* align-items: center; */
}
.align-items_baseline {
	display: flex;
	align-items: baseline;
}
.f-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.f-column {
	display: flex;
	flex-direction: column;
}

.f-column-Wcenter {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.f-column-WHcenter {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
 
.f-column-Hcenter {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.f-column-between{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.f-column-Wcenter-start {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.f-column-Wcenter-end {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}
.f-column-start {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	/* align-items: flex-start; */
}
.f-column-end {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	/* align-items: flex-end; */
}
