* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	margin: 0;
	padding: 0;
}
#splash-screen {
	font-family: Roboto, 'Helvetica Neue', sans-serif;
	font-size: 1.4rem;
	opacity: 1;
	transition: opacity 0.3s;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: 0 0 / cover no-repeat #85b767;
	display: -ms-flexbox;
	-ms-flex-direction: column;
	-ms-flex-wrap: wrap;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
}
#splash-screen.ready {
	opacity: 0;
}
#splash-screen .logo-wrapper {
	flex: 0;
	-ms-flex: 0 0 auto;
	color: #fff;
	display: block;
	width: 196px;
	height: 196px;
	position: relative;
}
#splash-screen .logo-wrapper img {
	max-width: 100%;
	max-height: unset;
}
#splash-screen .logo-wrapper .subhead {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	font-size: 19px;
	font-weight: 400;
	margin-top: 2rem;
	margin-bottom: 1rem;
	line-height: 1.1;
	text-transform: inherit;
	letter-spacing: inherit;
	text-align: center;
}
#splash-screen .spinner {
	width: 40px;
	height: 40px;
	position: absolute;
	top: auto;
	bottom: 25px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
#splash-screen .spinner .double-bounce1,
#splash-screen .spinner .double-bounce2,
#splash-screen .spinner .double-bounce3 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	animation: 3s ease-in-out infinite sk-bounce;
}
#splash-screen .spinner .double-bounce2 {
	animation-delay: -333ms;
}
#splash-screen .spinner .double-bounce3 {
	animation-delay: -999ms;
}
@keyframes sk-bounce {
	0%,
	100% {
		transform: scale(0);
	}
	50% {
		transform: scale(1);
	}
}
