.startup-loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
}

.startup-loader img {
	width: 56px;
	height: 56px;
	animation: startup-loader-pulse 1.1s ease-in-out infinite;
}

@keyframes startup-loader-pulse {
	0%,
	100% {
		opacity: 0.65;
		transform: scale(0.92);
	}

	50% {
		opacity: 1;
		transform: scale(1.06);
	}
}
