#loadBoxMain {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(135, 210, 175, 26%);
	z-index: 99999;
	overflow: hidden;

}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.loading-container {
	/* background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB); */
	background: linear-gradient(45deg, #3B82F6, #10B981, #3B82F6);
	background-size: 400% 400%;
	animation: gradient 3s ease infinite;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.loading-spinner {
	width: 80px;
	height: 80px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ffffff;
	animation: rotate 1s ease-in-out infinite;
	position: relative;
}

.loading-spinner::before {
	content: "";
	position: absolute;
	top: -15px;
	left: -15px;
	right: -15px;
	bottom: -15px;
	border: 3px solid transparent;
	border-top-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	animation: rotate 2s linear infinite;
}

.loading-text {
	margin-top: 24px;
	color: white;
	font-size: 18px;
	letter-spacing: 2px;
	animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}
