/* === build_bundles.py — vendor-animations.css ===
 * 25 sources, generated from snapshot/wordpress-export/.
 * Sources (in order):
 *   plugins/elementor/assets/lib/animations/styles/e-animation-grow.min.css
 *   plugins/elementor/assets/lib/animations/styles/e-animation-pulse.min.css
 *   plugins/elementor/assets/lib/animations/styles/rotateInUpRight.min.css
 *   plugins/elementor/assets/lib/animations/styles/bounceInDown.min.css
 *   plugins/elementor/assets/lib/animations/styles/rotateInUpLeft.min.css
 *   plugins/elementor/assets/lib/animations/styles/e-animation-pop.min.css
 *   plugins/elementor/assets/lib/animations/styles/rubberBand.min.css
 *   plugins/elementor/assets/lib/animations/styles/zoomIn.min.css
 *   plugins/elementor/assets/lib/animations/styles/fadeInUp.min.css
 *   plugins/elementor/assets/lib/animations/styles/zoomInDown.min.css
 *   plugins/elementor/assets/lib/animations/styles/fadeInDown.min.css
 *   plugins/elementor/assets/lib/animations/styles/e-animation-wobble-horizontal.min.css
 *   plugins/elementor/assets/lib/animations/styles/rotateInDownLeft.min.css
 *   plugins/elementor/assets/lib/animations/styles/rotateInDownRight.min.css
 *   plugins/elementor/assets/lib/animations/styles/jello.min.css
 *   plugins/elementor/assets/lib/animations/styles/fadeInRight.min.css
 *   plugins/elementor/assets/lib/animations/styles/fadeIn.min.css
 *   plugins/elementor/assets/lib/animations/styles/bounceInUp.min.css
 *   plugins/elementor/assets/lib/animations/styles/fadeInLeft.min.css
 *   plugins/elementor/assets/lib/animations/styles/bounceIn.min.css
 *   plugins/elementor/assets/lib/animations/styles/zoomInLeft.min.css
 *   plugins/elementor/assets/lib/animations/styles/slideInUp.min.css
 *   plugins/elementor/assets/lib/animations/styles/swing.min.css
 *   plugins/elementor/assets/lib/animations/styles/wobble.min.css
 *   plugins/elementor/assets/lib/animations/styles/headShake.min.css
 */

/* --- plugins/elementor/assets/lib/animations/styles/e-animation-grow.min.css --- */
.elementor-animation-grow {
    transition-duration: 0.3s;
    transition-property: transform;
}
.elementor-animation-grow:active,
.elementor-animation-grow:focus,
.elementor-animation-grow:hover {
    transform: scale(1.1);
}

/* --- plugins/elementor/assets/lib/animations/styles/e-animation-pulse.min.css --- */
@keyframes elementor-animation-pulse {
    25% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(0.9);
    }
}
.elementor-animation-pulse:active,
.elementor-animation-pulse:focus,
.elementor-animation-pulse:hover {
    animation-name: elementor-animation-pulse;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* --- plugins/elementor/assets/lib/animations/styles/rotateInUpRight.min.css --- */
@keyframes rotateInUpRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpRight {
    animation-name: rotateInUpRight;
}

/* --- plugins/elementor/assets/lib/animations/styles/bounceInDown.min.css --- */
@keyframes bounceInDown {
    60%,
    75%,
    90%,
    from,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0);
    }
    75% {
        transform: translate3d(0, -10px, 0);
    }
    90% {
        transform: translate3d(0, 5px, 0);
    }
    to {
        transform: none;
    }
}
.bounceInDown {
    animation-name: bounceInDown;
}

/* --- plugins/elementor/assets/lib/animations/styles/rotateInUpLeft.min.css --- */
@keyframes rotateInUpLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}

/* --- plugins/elementor/assets/lib/animations/styles/e-animation-pop.min.css --- */
@keyframes elementor-animation-pop {
    50% {
        transform: scale(1.2);
    }
}
.elementor-animation-pop:active,
.elementor-animation-pop:focus,
.elementor-animation-pop:hover {
    animation-name: elementor-animation-pop;
    animation-duration: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

/* --- plugins/elementor/assets/lib/animations/styles/rubberBand.min.css --- */
@keyframes rubberBand {
    from,
    to {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
}
.rubberBand {
    animation-name: rubberBand;
}

/* --- plugins/elementor/assets/lib/animations/styles/zoomIn.min.css --- */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    animation-name: zoomIn;
}

/* --- plugins/elementor/assets/lib/animations/styles/fadeInUp.min.css --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInUp {
    animation-name: fadeInUp;
}

/* --- plugins/elementor/assets/lib/animations/styles/zoomInDown.min.css --- */
@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInDown {
    animation-name: zoomInDown;
}

/* --- plugins/elementor/assets/lib/animations/styles/fadeInDown.min.css --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInDown {
    animation-name: fadeInDown;
}

/* --- plugins/elementor/assets/lib/animations/styles/e-animation-wobble-horizontal.min.css --- */
@keyframes elementor-animation-wobble-horizontal {
    16.65% {
        transform: translateX(8px);
    }
    33.3% {
        transform: translateX(-6px);
    }
    49.95% {
        transform: translateX(4px);
    }
    66.6% {
        transform: translateX(-2px);
    }
    83.25% {
        transform: translateX(1px);
    }
    100% {
        transform: translateX(0);
    }
}
.elementor-animation-wobble-horizontal:active,
.elementor-animation-wobble-horizontal:focus,
.elementor-animation-wobble-horizontal:hover {
    animation-name: elementor-animation-wobble-horizontal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

/* --- plugins/elementor/assets/lib/animations/styles/rotateInDownLeft.min.css --- */
@keyframes rotateInDownLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}

/* --- plugins/elementor/assets/lib/animations/styles/rotateInDownRight.min.css --- */
@keyframes rotateInDownRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownRight {
    animation-name: rotateInDownRight;
}

/* --- plugins/elementor/assets/lib/animations/styles/jello.min.css --- */
@keyframes jello {
    11.1%,
    from,
    to {
        transform: none;
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}
.jello {
    animation-name: jello;
    transform-origin: center;
}

/* --- plugins/elementor/assets/lib/animations/styles/fadeInRight.min.css --- */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInRight {
    animation-name: fadeInRight;
}

/* --- plugins/elementor/assets/lib/animations/styles/fadeIn.min.css --- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    animation-name: fadeIn;
}

/* --- plugins/elementor/assets/lib/animations/styles/bounceInUp.min.css --- */
@keyframes bounceInUp {
    60%,
    75%,
    90%,
    from,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0);
    }
    75% {
        transform: translate3d(0, 10px, 0);
    }
    90% {
        transform: translate3d(0, -5px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.bounceInUp {
    animation-name: bounceInUp;
}

/* --- plugins/elementor/assets/lib/animations/styles/fadeInLeft.min.css --- */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInLeft {
    animation-name: fadeInLeft;
}

/* --- plugins/elementor/assets/lib/animations/styles/bounceIn.min.css --- */
@keyframes bounceIn {
    20%,
    40%,
    60%,
    80%,
    from,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}
.bounceIn {
    animation-name: bounceIn;
}

/* --- plugins/elementor/assets/lib/animations/styles/zoomInLeft.min.css --- */
@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInLeft {
    animation-name: zoomInLeft;
}

/* --- plugins/elementor/assets/lib/animations/styles/slideInUp.min.css --- */
@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.slideInUp {
    animation-name: slideInUp;
}

/* --- plugins/elementor/assets/lib/animations/styles/swing.min.css --- */
@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
.swing {
    transform-origin: top center;
    animation-name: swing;
}

/* --- plugins/elementor/assets/lib/animations/styles/wobble.min.css --- */
@keyframes wobble {
    from,
    to {
        transform: none;
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
}
.wobble {
    animation-name: wobble;
}

/* --- plugins/elementor/assets/lib/animations/styles/headShake.min.css --- */
@keyframes headShake {
    0% {
        transform: translateX(0);
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        transform: translateX(0);
    }
}
.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake;
}
