/**
 * Thrust Preloader
 * Fast, CSS-only preloader
 */

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top left, #063952, #0c1e27);
	z-index: 9999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.is-loaded {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.preloader .thrust-logo {
	width: 130px;
	height: auto;
	animation: preloaderFadeIn 0.5s ease-out;
}

@keyframes preloaderFadeIn {
	from { opacity: 0; transform: scale(0.9); }
	to { opacity: 1; transform: scale(1); }
}
