body {
	margin: 0;
	padding: 0;
	overflow-y: scroll;
	background-color: #f8fbfe;
}

.loader {
	z-index: 4;
	height: 4px;
	width: 100%;
	position: absolute;
	overflow: hidden;
	background-color: #f8fbfe;
}

.loader:before {
	display: block;
	position: absolute;
	content: "";
	width: 200px;
	height: 4px;
	background-color: #2e60bb;
	animation: loading 1.6s linear infinite;
}

@keyframes loading {
	from {
		width: 0;
	}

	to {
		width: 100%;
	}
}
