/**
 * CSS for Animated Text Widget
 *
 * @package AnimatedTextWidgetForElementor
 */

.anitxtwgtfe-animated-text.show-cursor .text-content::after {
    content: '|';
    display: inline-block;
    animation: blink-cursor 0.8s steps(1) infinite;
}

.anitxtwgtfe-animated-text.hide-cursor .text-content::after {
    content: '';
    display: none;
}

@keyframes blink-cursor {
    0%, 50% {
        opacity: 1;
    }
    50.01%, 100% {
        opacity: 0;
    }
}