/* PAGE LOADER SYSTEM */

#spinner-wrapper {
	background-color: #000;
	opacity: 75%;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	flex-direction: column; /* Change flex direction to column */
	justify-content: center;
	align-items: center;
	transition: all 0.2s;
}

#spinner-border {
	height: 60px;
	width: 60px;
}

#spinner-text {
	margin-top: 10px; /* Adjust the margin to separate the spinner and the text */
	color: white; /* Set text color */
	font-size: 28px; /* Set font size */
}