@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.app-start-loader-ext {
	height: 100vh;
	width: 100vw;
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	align-items: center;
	z-index: 9999;
	background: #f6f6f6;
}

.logo-image {
	margin-top: 60px;
	margin-bottom: 20px;
}

.logo-image.kodak {
	margin-top: 150px;
}

.loading-note {
	margin: 24px 0;
}

.slow-loading-note {
	text-align: center;
	padding: 0 30px;
}

.app-start-loader,
.app-start-loader:after {
	border-radius: 50%;
	width: 5em;
	height: 5em;
}

.app-start-loader {
	margin: 5px auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 0.3em solid white;
	border-right: 0.3em solid white;
	border-bottom: 0.3em solid #000000;
	border-left: 0.3em solid #000000;
	transform: translateZ(0);
	animation: spin 1.1s infinite linear;
}

.app-start-loader.kodakTheme {
	border-bottom: 0.3em solid #ed0000;
	border-left: 0.3em solid #ed0000;
}

@supports (color: lch(from #faced2 l c h / 1)) {
	.app-start-loader-ext.littlepix {
		background: linear-gradient(to bottom left in lch, #faced2, #c0cbe8);
	}
}
@supports not (color: lch(from #faced2 l c h / 1)) {
	.app-start-loader-ext.littlepix {
		background: linear-gradient(to left bottom, #faced2 0%, #c0cbe8 100%);
	}
}
