.ewfe-spin-animation {
display: inline-flex;
animation-name: ewfe-spin; animation-duration: 10s;
animation-timing-function: linear;
animation-iteration-count: infinite;
transform-origin: center center;
}
@keyframes ewfe-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}