.app-loading {
	margin: auto;
	display: flex;
	gap: 12px;
	flex-direction: row;
}
.app-loading > div {
	width: 24px;
	height: 24px;
	border-radius: 50%;
}
.app-loading > div:nth-child(1) {
	animation: a1 2s infinite ease-in-out;
	background: #ffbf00;
}
.app-loading > div:nth-child(2) {
	animation: a2 2s infinite ease-in-out;
	animation-delay: 0.2s;
	background: #9966ff;
}
.app-loading > div:nth-child(3) {
	animation: a3 2s infinite ease-in-out;
	animation-delay: 0.4s;
	background: #cf63cf;
}
.app-loading > div:nth-child(4) {
	animation: a4 2s infinite ease-in-out;
	animation-delay: 0.6s;
	background: #59c059;
}
.app-loading > div:nth-child(5) {
	animation: a5 2s infinite ease-in-out;
	animation-delay: 0.8s;
	background: #4c97ff;
}
@keyframes a1 {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	20% {
		transform: scale(2);
		opacity: 0.5;
	}
	40% {
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes a2 {
	10% {
		transform: scale(1);
		opacity: 1;
	}
	30% {
		transform: scale(2);
		opacity: 0.5;
	}
	50% {
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes a3 {
	20% {
		transform: scale(1);
		opacity: 1;
	}
	40% {
		transform: scale(2);
		opacity: 0.5;
	}
	60% {
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes a4 {
	30% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(2);
		opacity: 0.5;
	}
	70% {
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes a5 {
	40% {
		transform: scale(1);
		opacity: 1;
	}
	60% {
		transform: scale(2);
		opacity: 0.5;
	}
	80% {
		transform: scale(1);
		opacity: 1;
	}
}
