/* Процент в модалке обновления: крупно и чуть живее */
.sync-progress-pct {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
    animation: sync-pct-pulse 1.6s ease-in-out infinite;
}

@keyframes sync-pct-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.88;
    }
}
