@charset "UTF-8";
/* flow */
.flow-wrap {
	display: block;
	flex-direction: column;
	flex-wrap: nowrap;
	
}
.flow-box {
	flex: 0 1 100%;
	margin-bottom: 10px;
	text-align: center;
}
/*Small devices (landscape phones, 576px and up)*/
@media only screen and (min-width: 576px) {
	.flow-wrap {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.flow-box {
		flex: 0 1 31.3%;
		margin-right: 10px;
	}
	.flow-box:last-child {
		flex: 0 1 31.3%;
		margin-right: 0;
	}
}
/*Medium devices (tablets, 768px and up)*/
@media only screen and (min-width: 768px) {
	
	.flow-wrap {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.flow-box {
		flex: 0 1 32.29%;
		margin-right: 1%;
	}
	.flow-box:last-child {
		flex: 0 1 31.3%;
		margin-right: 0;
	}
}
/*Large devices (desktops, 992px and up)*/
@media only screen and (min-width: 992px) {
	
	.flow-wrap {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.flow-box {
		flex: 0 1 19%;
		margin-right: 1%;
		text-align: center;
	}
	.flow-box:last-child {
		flex: 0 1 19%;
		margin-right: 0;
		text-align: center;
	}
}
/*X-Large devices (large desktops, 1200px and up)*/
@media only screen and (min-width: 1200px) {}
/*XX-Large devices (larger desktops, 1400px and up)*/
@media only screen and (min-width: 1400px) {}