/* Animated Icon Widget - bba63759 */

.ai-bba63759-wrap {
    display: block;
}

.ai-bba63759-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.3s, background-color 0.3s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    text-decoration: none;
}

/* Pause on hover */
.ai-bba63759-pause-hover:hover {
    animation-play-state: paused !important;
}

/* ── Bounce (Up & Down) ── */
@keyframes aiBba63759Bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY( calc( var(--ai-bba63759-distance, 20px) * -1 ) ); }
}
.ai-bba63759-anim-bounce {
    animation-name: aiBba63759Bounce;
}

/* ── Slide (Left & Right) ── */
@keyframes aiBba63759Slide {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX( var(--ai-bba63759-distance, 20px) ); }
}
.ai-bba63759-anim-slide {
    animation-name: aiBba63759Slide;
}

/* ── Pulse (Scale) ── */
@keyframes aiBba63759Pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale( calc( 1 + var(--ai-bba63759-distance, 20px) / 100 ) ); }
}
.ai-bba63759-anim-pulse {
    animation-name: aiBba63759Pulse;
}

/* ── Shake (Horizontal) ── */
@keyframes aiBba63759Shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX( calc( var(--ai-bba63759-distance, 20px) * -0.5 ) ); }
    20%, 40%, 60%, 80% { transform: translateX( calc( var(--ai-bba63759-distance, 20px) * 0.5 ) ); }
}
.ai-bba63759-anim-shake {
    animation-name: aiBba63759Shake;
}

/* ── Spin (360°) ── */
@keyframes aiBba63759Spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.ai-bba63759-anim-spin {
    animation-name: aiBba63759Spin;
    animation-timing-function: linear;
    animation-direction: normal;
}

/* ── Flip (Y-Axis) ── */
@keyframes aiBba63759Flip {
    0%, 100% { transform: perspective(400px) rotateY(0deg); }
    50%      { transform: perspective(400px) rotateY( calc( var(--ai-bba63759-distance, 20px) * 1.8deg ) ); }
}
.ai-bba63759-anim-flip {
    animation-name: aiBba63759Flip;
}

/* ── Swing (Rotate) ── */
@keyframes aiBba63759Swing {
    0%, 100% { transform: rotate(0deg); }
    25%      { transform: rotate( calc( var(--ai-bba63759-distance, 20px) * 0.75deg ) ); }
    75%      { transform: rotate( calc( var(--ai-bba63759-distance, 20px) * -0.75deg ) ); }
}
.ai-bba63759-anim-swing {
    animation-name: aiBba63759Swing;
}

/* ── Float (Smooth Up & Down) ── */
@keyframes aiBba63759Float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY( calc( var(--ai-bba63759-distance, 20px) * -1 ) ); }
}
.ai-bba63759-anim-float {
    animation-name: aiBba63759Float;
    animation-timing-function: ease-in-out;
}
