/**
 * Conductor Flexbox Stylesheet
 */

/* Row */
.conductor-flex {
	width: 100%;
	margin: auto;

	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-align-content: flex-start;
	align-content: flex-start;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Columns */
.conductor-flex .conductor-col {
	width: 100%;
	padding: 0 1em;
	position: relative;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.conductor-flex-1-columns .conductor-col {
	width: 100%;
}

.conductor-flex-2-columns .conductor-col {
	width: 50%;
}

.conductor-flex-3-columns .conductor-col {
	width: 33%;
}

.conductor-flex-4-columns .conductor-col {
	width: 25%;
}

.conductor-flex-5-columns .conductor-col {
	width: 20%;
}

.conductor-flex-6-columns .conductor-col {
	width: 16.667%;
}

/* Responsive Structure */
@media only screen and (max-width : 768px) {
	.conductor-flex-2-columns .conductor-col {
		width: 100%;
	}

	.conductor-flex-4-columns .conductor-col {
		width: 50%;
	}

	.conductor-flex-5-columns .conductor-col {
		width: 33%;
	}

	.conductor-flex-6-columns .conductor-col {
		width: 33%;
	}
}


@media only screen and (max-width : 568px) {
	.conductor-flex-4-columns .conductor-col {
		width: 100%;
	}

	.conductor-flex-5-columns .conductor-col {
		width: 100%;
	}

	.conductor-flex-6-columns .conductor-col {
		width: 100%;
	}
}