@charset "UTF-8";
/*!
 * Animation CSS
 */

.typed-text-container span.cursor {
  display: inline-block;
  background-color: #52b3ea;
  margin-left: 0.1rem;
  height: 3rem;
  width: 3px;
  animation: blink 1s infinite;
}
.typed-text-container span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%  { background-color: #52b3ea; }
  49% { background-color: #52b3ea; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #52b3ea; }
}