#preloader {
	position: fixed;
	top: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	z-index: 99998;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.75);
}

#preloader:after {
	position: fixed;
	content: '';
	top: 0;
	left: 0;
	height: 2px;
	width: 0;
	background: #029DFC;
	z-index: 99999;
	animation: bar 10s ease-in-out;
	animation-fill-mode: forwards;
}
@keyframes bar {
	1% {
		width: 5%;
	}

	10% {
		width: 20%;
	}

	30% {
		width: 65%;
	}

	40% {
		width: 75%;
	}

	45% {
		width: 77%;
	}

	50% {
		width: 79%;
	}

	60% {
		width: 80%;
	}

	70% {
		width: 85%;
	}

	80% {
		width: 89%;
	}

	100% {
		width: 95%;
	}
}

@media (hover: none) and (pointer: coarse) {
	#preloader {
		display: none;
	}
}