.ah-motion-enabled .ah-entrance {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition:
        opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--ah-entrance-delay, 0ms);
    will-change: opacity, transform;
}

.ah-motion-enabled .ah-entrance.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    .ah-motion-enabled .ah-entrance {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media print {
    .ah-motion-enabled .ah-entrance {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
