
@import url('https://fonts.googleapis.com/css?family=Noto+Sans');
html {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
html, body {
	font-size: 8px;
}
body {
	overflow-x: hidden !important;
	width: 100%;
}
.left {
	text-align:left;
}

body {
	min-height: 100vh;
	flex: 1 1 auto;
	display: grid;
	display: -ms-grid;
	grid-template-rows: auto 1fr auto;
	 grid-template-columns: 100%;
	-ms-grid-rows: auto 1fr auto;
	-ms-grid-columns: 100%;
}
body > #header {
	-ms-grid-row: 1;
	grid-row: 1;
	position: relative;
}
body > div.login, body > #content {
	-ms-grid-row: 2;
	grid-row: 2;
}
footer {
	-ms-grid-row: 3;
	grid-row: 3;
}

#content {
	margin-top: 0;
}
#contentContainer {
	min-width: 0;
	width: auto;
	margin-top: 2em;
	max-width: 930px;
}

/* flex classes */
.flexRow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 100%;
}
.flexDirCol {
	flex-direction: column;
}
.flexWrap-wrap {
	flex-wrap: wrap;
}
.justifySpaceBetween {
	justify-content: space-between;
}
.justifyCenter {
	justify-content: center;
}
.alignItems-center {
	align-items: center;
}
.flex1 {
	flex: 1;
}
.flex1auto {
	flex: 1 1 auto;
}
@media screen and (max-width: 767px) {
	.flexColumn-sm {
		flex-direction: column;
	}
	.rowReverse-mobile {
		flex-direction: row-reverse;
	}
}