.football-club-progressive-loader {
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 18px;
    border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    border-radius: 18px;
    background: color-mix(in srgb, currentColor 2.5%, transparent);
    text-align: left;
}

.football-club-progressive-loader--sidebar {
    min-height: 420px;
    width: 100%;
}

.football-club-progressive-loader__spinner {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    border: 3px solid color-mix(in srgb, currentColor 14%, transparent);
    border-top-color: currentColor;
    animation: kisureClubProgressiveSpin .8s linear infinite;
}

.football-club-progressive-loader strong,
.football-club-progressive-loader small {
    display: block;
}

.football-club-progressive-loader strong {
    font-size: .98rem;
}

.football-club-progressive-loader small {
    margin-top: 4px;
    opacity: .66;
    line-height: 1.45;
    max-width: 42rem;
}

.football-club-progressive-loader.is-waiting .football-club-progressive-loader__spinner {
    animation-duration: 1.15s;
}

.football-club-progressive-loader.is-paused .football-club-progressive-loader__spinner {
    animation: none;
    border-top-color: color-mix(in srgb, currentColor 14%, transparent);
}

.football-club-progressive-loader__retry {
    margin-top: 12px;
    border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
    border-radius: 999px;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 700;
    padding: 8px 14px;
    cursor: pointer;
}

.football-club-progressive-loader__retry:hover,
.football-club-progressive-loader__retry:focus-visible {
    background: color-mix(in srgb, currentColor 7%, transparent);
}

@keyframes kisureClubProgressiveSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .football-club-progressive-loader--sidebar {
        min-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .football-club-progressive-loader__spinner {
        animation: none;
    }
}
