#page-loader {
	align-items: center;
	background: rgba(255, 255, 255, 0.99);
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999;
}

.loader-spinner {
	animation: spinner 1s linear infinite;
	border: 5px solid #da99fd;
	border-top-color: #5560f6;
	border-radius: 50%;
	height: 50px;
	width: 50px;
}

.sr-only {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}
