.spinner-util{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px}.spinner-util svg{width:100%;height:100%;animation:spinner-util-rotate 2s linear infinite}.spinner-util circle{fill:none;stroke:var(--text-muted);stroke-width:4;stroke-linecap:round;animation:spinner-util-dash 1.5s ease-in-out infinite}.spinner-util--sm{width:24px;height:24px}.spinner-util--lg{width:48px;height:48px}.spinner-util--inverse circle{stroke:var(--text-inverse)}@keyframes spinner-util-rotate{100%{transform:rotate(360deg)}}@keyframes spinner-util-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:1,150;stroke-dashoffset:-124}}@media (prefers-reduced-motion:reduce){.spinner-util svg{animation:spinner-util-rotate 6s linear infinite}.spinner-util circle{animation:none;stroke-dasharray:60,150;stroke-dashoffset:-20}}