.blink {
	animation: blinker 0.6s linear infinite;
	color: #1c87c9;
}
@keyframes blinker {
	50% { opacity: 0; }
}
