/* Woo Checkout Redirect & Bounce – v1.1 */

/* Keyframes for continuous bounce */
@keyframes wcr-bounce {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.08); }
    50%  { transform: scale(0.96); }
    75%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Applied by JS on DOM ready */
.wcr-bounce-anim {
    animation: wcr-bounce 1.6s ease-in-out infinite;
    display:inline-block; /* ensure transform works */
    will-change: transform;
}