html, body
{
	margin: 0px;
	padding: 0px;
	min-height: 100%;
	height: 100%;
	font-family: 'Lato', sans-serif;
}

#app
{
	height: 100%;
}

.pre_react_loading
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	font-size: 24px;
	font-weight: 300;
}

.pre_react_loading .loading_animation
{
	animation-name: spin;
	animation-duration: 1000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	margin-bottom: 20px;
}

.pre_react_loading .loading_animation img
{
	height: 128px;
	width: auto;
	display: block;
}

@keyframes spin
{
	from
	{
		transform:rotate(0deg);
	}
	to
	{
		transform:rotate(360deg);
	}
}