#nattoint-preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-color: var(--nattoint-bg, #ffffff);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	opacity: 1;
	visibility: visible;
}

#nattoint-preloader.nattoint-preloader-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

#nattoint-preloader .nattoint-preloader-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 90%;
	max-height: 90%;
}

#nattoint-preloader .nattoint-preloader-media {
	max-width: var(--nattoint-max-width, 150px);
	max-height: var(--nattoint-max-width, 150px);
	width: auto;
	height: auto;
	display: block;
}

#nattoint-preloader .nattoint-preloader-text {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--nattoint-text, #333333);
	letter-spacing: 0.02em;
	text-align: center;
}

/* Prevent scrolling while the preloader is active */
html.nattoint-preloader-active,
html.nattoint-preloader-active body {
	overflow: hidden !important;
	height: 100%;
}
