.check{
	margins: auto;
  display: inline-block;
  font:bold  60px  'Open Sans', 'Helvetica Neue', arial, sans-serif;
  }
li.check{
  opacity:0;
  background:rgba(255,255,255,.4);
  text-shadow: 1px 1px white;
  white-space:nowrap;
  list-style-type: none;
  line-height: 200%;
}
li.check:before {    
    font-family: 'FontAwesome';
    color: #0e5e40;
    content: '\f058';
    margin:0 25px 0 -15px;
    font-size: 110%;
    vertical-align: baseline;
}
li.check:first-child{animation:bringback 1s 0s forwards;}
li.check:nth-child(2){animation:bringback 1s  2s forwards;}
li.check:nth-child(3){animation:bringback 1s  3s forwards;}

@keyframes bringback{
  to{opacity:1;text-indent:25px; }
  }
