.blink {
	animation: blink 2s step-end infinite;
}
@keyframes blink {
	from { opacity: 1; }
	to { opacity: 0; }
}