body {
	background-color: #FAFAFA;
    margin: 0;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
	justify-content: center;
	align-items: center;

	background-color: #FAFAFA;
	z-index: 9999;

	opacity: 1;
	transition: opacity 0.3s ease;
}

.loading.fade-out {
	opacity: 0;
	pointer-events: none;
}

.loader {
	border: 6px solid #27303F;
	border-radius: 50%;
	border: 6px solid;
	border-top: 6px solid #27303F;
	border-right: 6px solid #FAFAFA;
	border-bottom: 6px solid #27303F;
	border-left: 6px solid #FAFAFA;
	width: 72px;
	height: 72px;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}