/* Material Design spinner */
* {
	max-width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	font-family: sans-serif;
	box-sizing: border-box;
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

html,
body {
	font-size: 100%;
}

body {
	display: flex;
	min-height: 100vh;
	line-height: 1.25;
}

#app {
	width: 100%;
	display: flex;
	min-height: 100vh;
	background: #fafafa;
	flex-direction: column;
	align-items: center;
}

.ajax-loader {
	width: 100%;
	background: #ffff url("../ajax-loader.gif") no-repeat center;
	opacity: 0.5;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 5000;
	padding: 25px;
}

