.ah-cd89a269-container {
    display: block;
    line-height: 1.3;
}

.ah-cd89a269-animated-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.ah-cd89a269-animated-word {
    display: none;
}

.ah-cd89a269-animated-word.is-active {
    display: inline-block;
}

/* FADE ANIMATION */
.ah-cd89a269-container[data-animation="fade"] .ah-cd89a269-animated-word.is-active {
    animation: ahFadeIn 0.5s forwards;
}
.ah-cd89a269-container[data-animation="fade"] .ah-cd89a269-animated-word.is-leaving {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    animation: ahFadeOut 0.5s forwards;
}

@keyframes ahFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes ahFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-4px); }
}

/* SLIDE ANIMATION */
.ah-cd89a269-container[data-animation="slide"] .ah-cd89a269-animated-wrapper {
    overflow: hidden;
    vertical-align: bottom;
}
.ah-cd89a269-container[data-animation="slide"] .ah-cd89a269-animated-word.is-active {
    animation: ahSlideIn 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}
.ah-cd89a269-container[data-animation="slide"] .ah-cd89a269-animated-word.is-leaving {
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    animation: ahSlideOut 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes ahSlideIn {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes ahSlideOut {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(-100%); opacity: 0; }
}

/* TYPEWRITER ANIMATION */
.ah-char {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}
.ah-char.is-visible {
    opacity: 1;
}
