/*
#ajax-spinner {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 99999;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	background: transparent url('../img/spinner-big.gif') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	transition: all 0.2s ease;
}
*/


#ajax-spinner {
  position: fixed;
  top: 50%;
  left: 33%;
  z-index: 99999;
  width: 33%;
  height: 20px;
  border: 1px solid #aba393;
  border-radius: 3px;
  background-image: 
    repeating-linear-gradient(
      -45deg,
      #aba393,
      #aba393 11px,
      #fff 10px,
      #fff 20px /* determines size */
    );
  background-size: 28px 28px;
  animation: move .5s linear infinite;
  transition: all 0.2s ease;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 28px 0;
  }
}

