body {
	margin: 0;
	padding: 0;
}

.splash-screen {
	position: absolute;
	z-index: 1000;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-family: Helvetica, "sans-serif";
	background-color: #f2f3f8;
	color: #5e6278;
	line-height: 1;
	font-size: 14px;
	font-weight: 400;
}

.splash-screen .splash-logo {
	margin-left: calc(100vw - 100%);
	margin-bottom: 20px;
	height: 40px !important;
}

.splash-screen .splash-lottie {
	width: 150px;
	height: 150px;
	margin-bottom: 10px;
}

.splash-screen .splash-text {
	color: #5e6278;
	font-weight: 600;
	font-size: 16px;
	animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

[data-bs-theme="dark"] .splash-screen {
	background-color: #151521;
}

[data-bs-theme="dark"] .splash-screen .splash-text {
	color: #92929f;
}

#root {
	opacity: 1;
	transition: opacity 1s ease-in-out;
}
