.loading-dots {
display: flex !important;
flex-direction: row !important;
gap: 8px;
align-items: center;
justify-content: center;
}
.dot {
width: 8px;
height: 8px;
border-radius: 50%;
background-color: var(--loading-dot-color, #3377AA);
animation: bounce 1.4s infinite ease-in-out;
display: inline-block;
flex-shrink: 0;
}
.dot:nth-child(1) {
animation-delay: -0.32s;
}
.dot:nth-child(2) {
animation-delay: -0.16s;
}
@keyframes bounce {
0%, 80%, 100% {
transform: scale(0);
}
40% {
transform: scale(1);
}
}
#year-tabs::-webkit-scrollbar {
display: none;
}
@media (max-width: 768px) {
#year-tabs {
width: 100%;
padding: 10px 0;
}
#year-tabs div {
font-size: 15px;
padding: 0 15px;
}
}