﻿.layout-row {
	display: flex;
	flex-direction: row;
	-webkit-flex-direction: row;
}

.layout-row-hard {
	display: flex;
	flex-direction: row;
	-webkit-flex-direction: row;
}

.layout-column {
	display: flex;
	flex-direction: column;
	-webkit-flex-direction: column;
}

.flex {
	display: flex;
	flex: 1 100%;
}

.flex50 {
	display: flex;
	flex: 1 50%;
}

.flex33 {
	display: flex;
	flex: 1 33%;
}

.flex66 {
	display: flex;
	flex: 1 66%;
}

@media screen and (max-width: 599px) {
	.layout-row {
		display: flex;
		flex-direction: column;
		-webkit-flex-direction: column;
	}
}
