@keyframes spin { 100% { transform: rotate(360deg); } }
.path { stroke-dasharray: 90, 150; stroke-dashoffset: 0; stroke-linecap: round; }
.spinner { animation: spin 1s linear infinite; }
