[aria-busy="true"] {
	cursor: progress;
	animation: aria-busy-kf 2s infinite;
}

@keyframes aria-busy-kf {
	0% {
		opacity: 0.9;
	}
	50% {
		opacity: 0.1;
	}
	100% {
		opacity: 0.9;
	}
}
