body {
	margin: 0;
	padding: 0;
	font-family: Ubuntu, 'Kalpurush', 'sans-serif';
}

.splash-screen {
	position: absolute;
	z-index: 1000;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #5e6278;
	line-height: 1;
	font-weight: 400;

	/* bg animation start */
	background: linear-gradient(-45deg, #71cbff, #f6fcff, #e0ecf4, #ffffff);
	background-size: 200% 200%;
	animation: gradient 15s ease infinite;
	height: 100vh;
	/* bg animation end */
}

.splash-screen h4 {
	font-size: 18px;
	color: #5e6278;
	margin-bottom: 5px;
	transition: all !important;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}

.splash-screen h3 {
	letter-spacing: 5px;
	margin: 0;
	font-family: sans-serif;
}

.text-gradient-animation {
	background: linear-gradient(to right, #7953cd 20%, #00affa 30%, #0190cd 70%, #764ada 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 500% auto;
	animation: textShine 5s ease-in-out infinite alternate;
}

.splash-screen img {
	margin-bottom: 20px;
	height: 100px !important;
}

[data-theme='dark'] .splash-screen {
	background-color: #151521;
	color: #92929f;
}

[data-theme='dark'] .splash-screen span {
	color: #92929f;
}

/* text animation start */
@keyframes textShine {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

/* loader start  */
.dot-loader {
	z-index: 1;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: block;
	margin: 10px auto;
	position: relative;
	left: -100px;
	box-sizing: border-box;
	animation: shadowRolling 2s linear infinite;
}

@keyframes shadowRolling {
	0% {
		box-shadow: 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0),
			0px 0 rgba(255, 255, 255, 0);
	}
	12% {
		box-shadow: 100px 0 #009ef7, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0),
			0px 0 rgba(255, 255, 255, 0);
	}
	25% {
		box-shadow: 110px 0 #009ef7, 100px 0 #009ef7, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
	}
	36% {
		box-shadow: 120px 0 #009ef7, 110px 0 #009ef7, 100px 0 #009ef7, 0px 0 rgba(255, 255, 255, 0);
	}
	50% {
		box-shadow: 130px 0 #009ef7, 120px 0 #009ef7, 110px 0 #009ef7, 100px 0 #009ef7;
	}
	62% {
		box-shadow: 200px 0 rgba(255, 255, 255, 0), 130px 0 #009ef7, 120px 0 #009ef7, 110px 0 #009ef7;
	}
	75% {
		box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 #009ef7,
			120px 0 #009ef7;
	}
	87% {
		box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0),
			130px 0 #009ef7;
	}
	100% {
		box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0),
			200px 0 rgba(255, 255, 255, 0);
	}
}
/* loader end  */

/* bg animation start */
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
/* bg animation end */
