/* Flexboxes */
.flexCol
	{
	display: flex;
	flex-direction: column;
	}

.flexRow
	{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	}

.flexList > *
	{
	margin: 0.5em;
	}
