.animated-text-wrapper-1668 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.animated-text-layout-inline .animated-text-wrapper-1668 {
    flex-direction: row;
}

.animated-text-layout-stacked .animated-text-wrapper-1668 {
    flex-direction: column;
}

.animated-text-layout-inline .animated-text-wrapper-1668[style*="text-align: left"] { justify-content: flex-start; }
.animated-text-layout-inline .animated-text-wrapper-1668[style*="text-align: right"] { justify-content: flex-end; }
.animated-text-layout-inline .animated-text-wrapper-1668[style*="text-align: center"] { justify-content: center; }

.animated-text-layout-stacked .animated-text-wrapper-1668[style*="text-align: left"] { align-items: flex-start; }
.animated-text-layout-stacked .animated-text-wrapper-1668[style*="text-align: right"] { align-items: flex-end; }
.animated-text-layout-stacked .animated-text-wrapper-1668[style*="text-align: center"] { align-items: center; }

.animated-text-words-container-1668 {
    position: relative;
    display: inline-flex;
    justify-content: inherit;
    align-items: inherit;
}

.animated-text-words-1668 {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
    white-space: nowrap;
}

.animated-text-words-1668.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}