.c3-text-highlighting .elementor-widget-container span {
    display: inline-block;
    position: relative;
    font-weight: inherit;
}

.c3-text-highlighting .elementor-widget-container span:before {
    content: attr(data-text);
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--e-global-color-text);
    overflow: hidden;
}

.c3-text-highlighting .elementor-widget-container .c3-text-highlighting--active:before {
    animation: c3-text-highlighting var(--c3-text-speed) linear forwards;
}

@keyframes c3-text-highlighting {
    100% {
        width: 100%;
    }
}