/* ajax loader CSS3*/
.ajax-loader {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
  margin: 25px auto;
  visibility: hidden;
  backface-visibility: hidden;
  box-shadow: -10px 0px 0px 0px #ff6ffc, -5px -9px 0px 0px #e97053, 5px -9px 0px 0px #f4cc49, 10px 0px 0px 0px #41deb1, 5px 9px 0px 0px #5796f3, -5px 9px 0px 0px #b77cfc;
  -webkit-animation: ajax-loader-rotate 1s infinite forwards ease-in-out;
  -moz-animation: ajax-loader-rotate 1s infinite forwards ease-in-out;
  animation: ajax-loader-rotate 1s infinite forwards ease-in-out; }

@-webkit-keyframes ajax-loader-rotate {
  0% {
    transform: rotate(0deg) scale(0.6); }
  50% {
    transform: rotate(300deg) scale(1); }
  100% {
    transform: rotate(360deg) scale(0.6); } }
@-moz-keyframes ajax-loader-rotate {
  0% {
    transform: rotate(0deg) scale(0.6); }
  50% {
    transform: rotate(300deg) scale(1); }
  100% {
    transform: rotate(360deg) scale(0.6); } }
@keyframes ajax-loader-rotate {
  0% {
    transform: rotate(0deg) scale(0.6); }
  50% {
    transform: rotate(300deg) scale(1); }
  100% {
    transform: rotate(360deg) scale(0.6); } }

/*# sourceMappingURL=ajaxLoading.css.map */
