@charset 'UTF-8';

.typed-cursor {
	opacity: 1;
}
.typed-cursor.typed-cursor--blink {
	animation: typedjsBlink 0.7s infinite;
	-webkit-animation: typedjsBlink 0.7s infinite;
	      animation: typedjsBlink 0.7s infinite;
}
@keyframes typedjsBlink {
	50% { opacity: 0.0; }
}
@-webkit-keyframes typedjsBlink {
	0% { opacity: 1; }
	50% { opacity: 0.0; }
	100% { opacity: 1; }
}
