/*
 * Animate.css v4-compatible pulse subset
 * https://animate.style/ — MIT License
 * Only the animation used by JCVE is bundled locally.
 */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__infinite {
    animation-iteration-count: infinite;
}

.animate__pulse {
    animation-name: animate__pulse;
    animation-timing-function: ease-in-out;
}

@keyframes animate__pulse {
    from { transform: scale3d(1, 1, 1); }
    50% { transform: scale3d(1.05, 1.05, 1.05); }
    to { transform: scale3d(1, 1, 1); }
}
