.f-c {
	display: flex;
	align-items: center;
}

.f-c-c {
	display: flex;
	align-items: center;
	justify-content: center;
}

.f-c-e {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.f-c-a {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.f-c-b {
	display: flex;
	align-items: center;
	justify-content: space-between;

}

.f-cl {
	display: flex;
	flex-direction: column;
}

.f-cl-c {
	display: flex;
	flex-direction: column;
	align-items: center;
}