.box {
	flex: 1;
	margin: 2px;
}

.box_grow {
	flex-grow: 1;
	margin: 2px;
}

.flex_row {
	flex-direction: row;
}

.flex__reverse {
	flex-direction: row-reverse;
}

.column {
	flex-direction: column;
}

.flex--row--column {
	flex-direction: row;
}

.flex {
	display: flex;
}

.center__flex {
	align-items: center;
}

.item {
	flex: 1;
	text-align: center;
	font-size: 12px;
}

.item__grow {
	text-align: center;
	font-size: 10px;
	margin-right: 3px;
}

.item__grow>span {
	text-align: center;
	font-size: 10px;
	margin-right: 3px;
	color: #c7c4c4;
}

.wrap {
	flex-wrap: wrap;
}

.grow1 {
	height: 30px;
	flex-grow: 1;
	margin-bottom: 5px;
}

.grow__0 {
	flex-grow: 0;
}

.space-around {
	align-content: space-around;
}

.grow__basis50 {
	flex-grow: 0;
	flex-basis: 50%;
}

@media screen and (max-width: 766px) {
	.flex--row--column {
		flex-direction: column;
	}
	.flex__reverse--mobile {
		flex-direction: row-reverse;
	}
}