.blink-new {
	animation: blinking 1s ease-in-out infinite alternate;
	color: red;
}

@keyframes blinking {
	0% {opacity: 0;}
	100% {opacity: 1;}
}