.spinner{
  margin-top:20px;margin-bottom:50px;
  width:100px;
  text-align: center;
}
.spinner > div{
  width: 13px;
  height: 13px;
  display: inline-block;
  margin-left:15px;
  font-family:'CooperHewittThin', Arial Narrow, Arial;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner > div:after{
    content: "\203A";
    color: #ff5555;
    font-size:60px;
}
.spinner .bounce1{
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.spinner .bounce2{
  -webkit-animation-delay: -0.25s;
  animation-delay: -0.25s;
}
@-webkit-keyframes sk-bouncedelay{
  0%, 80%, 100% { -webkit-transform: scale(0.6) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay{
  0%, 80%, 100% { 
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}