/* Typewrite plugin */

/* 表示前のレイアウトずれ防止：高さを確保したい場合は data-typewrite-reserve="1" を付ける */
.typewrite[data-typewrite-reserve="1"] {
	visibility: visible;
}
.typewrite[data-typewrite-reserve="1"] .typewrite-ghost {
	visibility: hidden;
	display: block;
	pointer-events: none;
	user-select: none;
}

.typewrite-cursor {
	display: inline-block;
	width: 0.06em;
	background: currentColor;
	margin-left: 0.05em;
	vertical-align: -0.1em;
	height: 1em;
	animation: typewrite-blink 1s steps(1) infinite;
}

.typewrite-cursor.is-hidden {
	display: none;
}

@keyframes typewrite-blink {
	50% { opacity: 0; }
}
