.cursor::after {
  content: "|";
  animation: blink 0.8s infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  50.01%,
  100% {
    opacity: 0;
  }
}