<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#loading {
display: inline-block;
width: 1.5rem;
height: 1.5rem;
border: 3px solid rgba(255, 255, 255, .3);
border-radius: 50%;
border-top-color: currentColor;
animation: spin 1s ease-in-out infinite;
-webkit-animation: spin 1s ease-in-out infinite;
}
.loading {
width: 100%;
justify-content: center;
align-items: center;
display: flex;
align-items: center;
gap: 0.5rem;
}
@keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}</pre></body></html>