.ajax-progress {
  position: fixed;
  background: #555656;
  padding: 20px 30px !important;
  top: 45%;
  left: 50%;
  z-index: 9999;
  margin: 0 0 0 -50px;
}
.view-id-product_list .ajax-progress {
  top: 85%;
}
/* @media (max-width: 768px) {
  .ajax-progress {
    left: 36.5%;
  }
} */

.ajax-progress .throbber {
  background: transparent url(../images/arrow-repeat.svg) no-repeat;
  width: 40px;
  height: 40px;
  display: inline-block;
  background-size: cover;
  animation: loading 2s linear infinite;
}

/* Loading indicator */
.loading-indicator {
  opacity: 0;
  transition: opacity .2s;
}

.loading-indicator.visible {
  opacity: 1;
}

@keyframes loading {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
