/*
  Simple Grid
  Learn More - http://dallasbass.com/simple-grid-a-lightweight-responsive-css-grid/
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - dallasbass.com
*/

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0px;
	padding: 0px;
}

.d-flex {
	display: flex;
}

.flex-grow {
	flex-grow: 1;
}

.justify-content-center {
	justify-content: center;
}

.align-items-center {
	align-items: center;
}

[class^=col-] {
	padding: 0 0.5rem;
}

.col-2 {
	flex-basis: 50%;
}

.col-3 {
	flex-basis: 25%;
}

.col-4 {
	flex-basis: 33.33%;
}

.col-8 {
	flex-basis: 66.67%;
}

@media (max-width: 576px) {
	.d-flex {
		flex-direction: column;
	}

	.order-xs-1 {
		order: 1;
	}

	.order-xs-2 {
		order: 2;
	}
}
