#loading { position: fixed; z-index: 101; left: 0; top: 0; display: block; width:100%; height:100%; background: rgba(0,0,0,0.6); }
#loading .loader-inner{ position: relative; top: 50%; text-align: center; }

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
			opacity: 1;
    }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
			opacity: 0;
    }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
			opacity: 1;
   } 
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
			opacity: 1;
    }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
			opacity: 0;
   }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
			opacity: 1;
    } 
}

.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 1.12s -0.48s infinite;
          animation: scale 1.12s -0.48s infinite; }

.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 1.12s -0.24s infinite;
          animation: scale 1.12s -0.24s  infinite; }

.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 1.12s 0s infinite;
          animation: scale 1.12s 0s infinite; }

.ball-pulse > div {
  background-color: #f0f0f0;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  margin: 5px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block; 
}