#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);
}
}