#loader {
  background:#7BBB31 none repeat scroll 0 0;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top:0;
  bottom:0;
  z-index: 1000;
}

.loading {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -60px 0 0 -60px;
  background:url(football.png) no-repeat center center;
  width: 100px;
  height: 100px;
  border-radius: 100%;
background-size: contain;
-webkit-animation: rotate 2s linear infinite;
  -moz-animation: rotate 2s linear infinite;
  -ms-animation: rotate 2s linear infinite;
  -o-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
}
.loading:after {
  content: '';
  background: trasparent;
  width: 140%;
  height: 140%;
  position: absolute;
  border-radius: 100%;
  top: -20%;
  left: -20%;
  opacity: 0.7;
  box-shadow: rgba(256, 256, 256, 0.6) -4px -5px 3px -3px;
  animation: rotate 4s infinite linear;

}

@keyframes rotate {
  0% {
     -ms-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  100% {
     -ms-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}