/* CSS Animations for LabSlider */

/* Entry Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Exit Animations */
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.fadeOut {
    animation-name: fadeOut;
}

/* Apply animation classes automatically */
.ls-anim-in {
    animation-fill-mode: both;
}

.ls-anim-out {
    animation-fill-mode: both;
}
 
 /* Typing Cursor Animation */
@keyframes lsBlinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.ls-typing-cursor {
    animation: lsBlinkCursor 0.8s infinite;
}