@charset "utf-8";
/* CSS Document */
.blink {
  animation: blinker 2s linear infinite;
}
@keyframes blinker {  
  50% { opacity: 0; }
}