.stc-loader {
	position: fixed;
	inset: 0;
	z-index: 99999999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.stc-loader.hide {
	display: none;
}

.stc-loader-content {
	padding: 15px;
}

.stc-loader > * {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	transition: opacity 0.5s ease-in;
	opacity: 0;
}

.stc-loader > *.show {
	opacity: 1;
}

.stc-loader:before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--color-white);
	opacity: 0.75;
	z-index: 0;
}

.stc-loader i {
	font-size: 100px;
	margin-bottom: 50px;
}

.stc-loader *:not(i) {
	font-size: 25px;
}

.stc-loader i.fa-spinner {
	color: var(--color-primary);
}

.stc-loader i.fa-circle-check {
	color: var(--color-green);
}

.stc-loader .loading{
	animation: unset;
}
