/* Blink for Webkit and others
(Chrome, Safari, Firefox, IE, ...)
*/

@keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}

@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}

.blink{
    color:#f44336;
	text-decoration: blink;

    animation-name: blinker;
	animation-duration: 0.6s;
	animation-iteration-count:infinite;
	animation-timing-function:ease-in-out;
	animation-direction: alternate;

	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}