/*Carregando*/
#loadingOverlay {
	display: flex; /* centraliza */
	background: rgba(0,0,0,.45);
	inset: 0;
	align-items: center;
	justify-content: center;
	position: fixed;
	z-index: 999999;
}
.loaderCard {
	box-shadow: 0 10px 30px rgba(0,0,0,.25);
	border-radius: 16px;
	background-color: #fff;
	min-width: 220px;
	font-family: Arial, sans-serif;
	text-align: center;
	padding: 22px 26px;
}

/* HTML: <div class="loader"></div> */
.loader {
	border-bottom: 3px solid #0000;
	background: linear-gradient(90deg,#524656 50%,#0000 0)
	-25% 100%/50% 3px repeat-x border-box;
	width: 100%; height: 60px;
	aspect-ratio: 2;
	position: relative;
	animation: l3-0 .75s linear infinite;
}
.loader:before {
	content: "";
	position: absolute;
	inset: auto 42.5% 0;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--brand-blue);
	animation: l3-1 .75s cubic-bezier(0,900,1,900) infinite;
}
@keyframes l3-0 {
	to {background-position: -125% 100%}
}
@keyframes l3-1 {
	0%,2% {bottom: 0%}
	98%,to {bottom:.1%}
}