/* =========================
   CONTAINER OVERLAY
========================= */
.spinner-container,
.spinner-container-layout {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 999999;
	background-color: rgba(36, 31, 31, 0.8);
	pointer-events: all;
	user-select: none;
	overflow: hidden;
}

	.spinner-container.ativo,
	.spinner-container-layout.ativo {
		display: flex;
	}

/* =========================
   WRAPPER
========================= */
.spinner-wrapper {
	position: relative;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

/* =========================
   SPINNER GIRANDO
========================= */
.spinner {
	width: 100%;
	height: 100%;
	animation: girar360 1.5s linear infinite;
}

/* =========================
   LOGO CENTRAL
========================= */
.spinner-logo,
.spinner-logo-layout {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 42px;
	height: 42px;
	object-fit: contain;
}

/* =========================
   TEXTO
========================= */
.spinner-text,
.spinner-text-layout {
	margin-top: 18px;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 15px;
	letter-spacing: 1px;
	text-align: center;
	color: #fff;
}

.spinner-text-layout {
	background-color: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(4px);
}

/* =========================
   SOMBRAS
========================= */
.text-glow-white {
	text-shadow: 0 0 4px rgba(255,255,255,.5), 0 0 8px rgba(255,255,255,.3);
}

.text-shadow-sm {
	text-shadow: 1px 1px 2px rgba(0,0,0,.3);
}

.text-shadow {
	text-shadow: 2px 2px 4px rgba(0,0,0,.5);
}

.text-shadow-dark {
	text-shadow: 0 2px 6px rgba(0,0,0,.7);
}

.text-shadow-lg {
	text-shadow: 3px 3px 6px rgba(0,0,0,.7);
}

/* =========================
   ANIMAÇÃO
========================= */
@keyframes girar360 {

	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.girar {
	animation: girar360 1.5s linear infinite;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {

	.spinner-wrapper {
		width: 75px;
		height: 75px;
	}

	.spinner-logo,
	.spinner-logo-layout {
		width: 34px;
		height: 34px;
	}

	.spinner-text,
	.spinner-text-layout {
		font-size: 14px;
		padding: 8px 14px;
		margin-top: 14px;
	}
}
