.qf-entrance {
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.qf-entrance.qf-entrance-visible,
body.pagebuilder-mode .qf-entrance:not([data-qf-entrance-live="1"]) {
    opacity: 1;
    transform: none !important;
}

.qf-entrance--from-left {
    transform: translateX(-48px);
}

.qf-entrance--from-right {
    transform: translateX(48px);
}

.qf-entrance--from-top {
    transform: translateY(-48px);
}

.qf-entrance--from-bottom {
    transform: translateY(48px);
}

.qf-entrance--fade {
    transform: none;
}

.qf-entrance--zoom-in {
    transform: scale(0.92);
}

@media (prefers-reduced-motion: reduce) {
    .qf-entrance {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
