.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__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;
}

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

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

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