.bicycle-container{display:inline-block;animation:pedal 2s ease-in-out infinite}@keyframes pedal{0%{transform:translateX(0) rotate(0deg)}25%{transform:translateX(-8px) rotate(-2deg)}50%{transform:translateX(0) rotate(0deg)}75%{transform:translateX(8px) rotate(2deg)}to{transform:translateX(0) rotate(0deg)}}.loading-dots{display:flex;align-items:center;justify-content:center}.dot{width:8px;height:8px;border-radius:50%;background-color:#6b7280;animation:pulse-dot 1.5s ease-in-out infinite}.dot:first-child{animation-delay:0s}.dot:nth-child(2){animation-delay:.3s}.dot:nth-child(3){animation-delay:.6s}@keyframes pulse-dot{0%,80%,to{transform:scale(.8);opacity:.5}40%{transform:scale(1.2);opacity:1}}