body {
	margin: 0;
}

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

.app-loading {
	background: radial-gradient(rgb(22, 25, 31) 0%, rgb(45, 50, 62) 80%);
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.app-loading > .spinner {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}

.app-loading > .spinner div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 51px;
	height: 51px;
	margin: 5px;
	border: 5px solid #8fa638;
	border-radius: 50%;
	animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #8fa638 transparent transparent transparent;
}

.app-loading > .spinner div:nth-child(1) {
	animation-delay: -0.45s;
}

.app-loading > .spinner div:nth-child(2) {
	animation-delay: -0.3s;
}

spinner div:nth-child(3) {
	animation-delay: -0.15s;
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}