@charset "utf-8";

.loading {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 99;
	width: 100%;
	height: 100vh;
	background-color: rgba(255,255,255,0);
	top: 0;
	left: 0;
}
.loading_inner {
	display: flex;
	justify-content: center;
	flex-flow: column;
	background-color: #fff;
	border: 1px solid #0072bc;
	padding: 1em;
}
.loading_inner p {
	text-align: center;
}

.dots { display: flex; align-items: center; justify-content: center; width: 100%; margin: 2em 0; }
.dots .dot {
    width: 12px; height: 12px;
    margin: 0 5px;
    background-color: #0072bc;
    border-radius: 50%;
    animation: dot-pulse 1.5s ease-in-out infinite;
}
.dots .dot:nth-child(1) { animation-delay: 0s; }
.dots .dot:nth-child(2) { animation-delay: 0.2s; } /* Fixed delays for simplicity */
.dots .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-pulse {
    0%, 100% { transform: scale(0.7); opacity: 0.7; }
    50% { transform: scale(1); opacity: 1; }
}