.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;
}
}
.movie-ribbon {
--f: .5em;
position: absolute;
top: 0;
right: 0;
line-height: 1.8;
padding-inline: 3em;
padding-bottom: var(--f);
border-style: solid;
border-image: conic-gradient(#0004 0 0) 51%/var(--f);
clip-path: polygon(
100% calc(100% - var(--f)),100% 100%,calc(100% - var(--f)) calc(100% - var(--f)),var(--f) calc(100% - var(--f)),
0 100%,0 calc(100% - var(--f)),
999px calc(100% - var(--f) - 999px),calc(100% - 999px) calc(100% - var(--f) - 999px)
);
transform: translate(29.3%, -100%) rotate(45deg);
transform-origin: 0% 100%;
font-size: 13px;
font-weight: bold;
color: #fff;
z-index: 10;
pointer-events: none;
}