.flex-item {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
}

.flex-col {
	-webkit-box-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex-100 {
	flex-basis: 100%;
}

.just-center {
	justify-content: center;
}
.align-center {
	align-items: center;
}

/*th,
td {
	flex-basis: 100%;
}*/