@charset "utf-8" ;
.TextTyping span{ display:none; }

.TextTyping::after{ content:""; }

.TextTyping.is-typing::after{
  content:"|";
  animation: typinganime .7s ease infinite;
}

@keyframes typinganime{
  from{opacity:0}
  to{opacity:1}
}
