.flex-row {
	display: flex; /* or inline-flex */
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start; /* flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe;*/
/*	align-items: stretch;*/
	gap: 10px 20px;
}
.flex-row > div {
	height: 100%;
/*	flex-grow: 1;*/
}

