/* Flex Styles */

.flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.flex-only-shrink {
	flex: 0 1 auto;
}

.flex.spaced > .half {
	flex: 0 1 50%;
	max-width: 50%;
}

.flex.spaced > .third {
	flex: 0 1 33.33%;
	max-width: 33.33%;
}

.flex.spaced > .two-thirds {
	flex: 0 1 33.33%;
	max-width: 33.33%;
}

.justify-center {
	justify-content: center;
}

.justify-start {
	justify-content: flex-start;
}

.justify-end {
	justify-content: flex-end;
}

.align-stretch {
	align-items: stretch;
}

.align-start {
	align-items: flex-start;
}

.align-end {
	align-items: flex-end;
}

.flex-nowrap {
	flex-wrap: nowrap;
}

.row-reverse {
	flex-direction: row-reverse;
}

.order-2 {
	order: 2;
}

/* End Flex Styles */

/* Flex Responsive */

@media screen and (min-width:433px) {
}

@media screen and (max-width:432px) {
}

/* End Flex Responsive */

