.container span {
    color: red;
}

.container span::after {
    content: '|';
    animation-name: blinking;
    animation-duration: .71s;
    animation-iteration-count: infinite;
}

@keyframes blinking {
    from {
        color: transparent;
    }

    to {
        color: lightgrey;
    }
}