@keyframes wsEnter {
    100% {
        transform: translateX(100vw);
    }
}
@keyframes wsLeave {
    0% {
        left: 0;
    }
    100% {
        transform: translateX(200vw);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.ani-delay-200 {
    animation-delay: 200ms;
}

.ani-wsEnter {
    animation-name: wsEnter;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.ani-wsLeave {
    animation-name: wsLeave;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.ani-fadeIn {
    animation-name: fadeIn;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
