/* Pace "Bounce" centré, agrandi, avec ballon de football */
.pace {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 360px;
    margin-left: -110px;
    margin-top: -180px;
    z-index: 20000;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.pace.pace-active {
    opacity: 1;
    transform: scale(1);
}

.pace .pace-activity {
    position: absolute;
    top: 0;
    left: 50%;
    width: 230px;
    height: 230px;
    margin-left: -115px;
    border-radius: 0;
    background-color: transparent;
    background-image: url("../images/jordan-transparent-background.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    animation: pace-bounce 0.9s infinite ease-in-out, pace-spin 1.8s infinite linear;
}

.pace .pace-progress {
    display: none !important;
}

.pace .pace-progress::before,
.pace .pace-progress::after,
.pace .pace-activity::before,
.pace .pace-activity::after {
    display: none !important;
    content: none !important;
}

@keyframes pace-bounce {
    0%, 100% {
        top: 0;
        transform: scaleY(1);
    }
    50% {
        top: 130px;
        transform: scaleY(0.92);
    }
}

@keyframes pace-shadow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.35;
    }
    50% {
        transform: scale(0.58);
        opacity: 0.55;
    }
}

@keyframes pace-spin {
    from {
        rotate: 0deg;
    }
    to {
        rotate: 360deg;
    }
}