div.flex_container,
div.flex_row,
div.flex_cell {
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
}
div.flex_container {
	width:100%;
	flex-wrap:wrap;
}
div.flex_wrap {
	flex-wrap:wrap;
}
div.flex_row {
	width:100%;
}
div.flex_outer_row:nth-child(even) {
	background:rgba(200,200,200,0.5);
}
div.flex_cell {
	
}
div.flex_txt {
	flex:1;
}
div.flex_inp {
	flex:10;
}
div.flex_cell>input,
div.flex_cell>select {
	width:100%;
}
label.flex_lbl {
	width:100%;
	height:100%;
}
input:checked~label.flex_lbl {
	background:green;
	color:white;
}
div.flex_h_lmt {
	max-height: 500px;
	overflow:auto;
}
div.flex_hdn {
	display:none;
}
div.flex_dropdown_row {
	border-bottom: 1px solid white;
}
div.flex_bottom_spacer {
	margin-bottom: 5px;
}
div.flex_small_container,
div.flex_small_row {
	width:50%;
}