/* generic class */
.simple-row {
	display: flex;
	flex-direction: row;
}

.simple-column {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.display-row {
	justify-content: space-between;
	align-items: center;
}

.display-row label {
	min-width: 90px;
	margin: 0 10px;
}
