/*
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*/

._boot_loader {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 123, 192, 1);
	z-index: 9999999;
	overscroll-behavior: contain;
}

._boot_loader > img {
	width: 100px;
	height: 100px;
}

._boot_loader noscript {
	color: rgba(255, 255, 255, 1);
	font-family: 'Inter';
	font-weight: 500;
	padding-top: 10px;
	font-size: 16px;
	padding-left: 20px;
	padding-right: 20px;
}

._boot_loader .shimmer {
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Inter';
	font-weight: 200;
	padding-top: 25px;
	font-size: 24px;
	background: -webkit-gradient(linear, left top, right top, from(rgba(0, 123, 192, 1)), to(rgba(0, 123, 192, 1)), color-stop(0.5, #fff));
	background: -moz-gradient(linear, left top, right top, from(rgba(0, 123, 192, 1)), to(rgba(0, 123, 192, 1)), color-stop(0.5, #fff));
	background: gradient(linear, left top, right top, from(rgba(0, 123, 192, 1)), to(rgba(0, 123, 192, 1)), color-stop(0.5, #fff));
	-webkit-background-size: 25px 100%;
	-moz-background-size: 25px 100%;
	background-size: 25px 100%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-animation-name: shimmer;
	-moz-animation-name: shimmer;
	animation-name: shimmer;
	-webkit-animation-duration: 2s;
	-moz-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	background-repeat: no-repeat;
	background-position: 0 0;
}

@keyframes shimmer {
	0% {
		background-position: top left;
	}
	100% {
		background-position: top right;
	}
}