.ajax-progress-fullscreen {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  background-image: none;
  width: 100vw;
  height: 100vh;
}
.ajax-progress-fullscreen:before, .ajax-progress-fullscreen:after {
  content: "";
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transform-origin: center;
  display: block;
}
.ajax-progress-fullscreen:before {
  -webkit-animation: pulse-color 1.3s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  -moz-animation: pulse-color 1.3s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  -ms-animation: pulse-color 1.3s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  -o-animation: pulse-color 1.3s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  animation: pulse-color 1.3s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
}
.ajax-progress-fullscreen:after {
  -webkit-animation: pulse-color-slow 1.3s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  -moz-animation: pulse-color-slow 1.3s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  -ms-animation: pulse-color-slow 1.3s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  -o-animation: pulse-color-slow 1.3s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  animation: pulse-color-slow 1.3s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
}

.ajax-progress-throbber {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 0px;
  height: 0px;
  overflow: visible;
  padding: 0;
  margin: 0;
}
.ajax-progress-throbber:before, .ajax-progress-throbber:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  transform-origin: center;
  display: block;
}
.ajax-progress-throbber:before {
  width: 20px;
  height: 20px;
  background: white;
  -webkit-animation: pulse-color 2s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  -moz-animation: pulse-color 2s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  -ms-animation: pulse-color 2s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  -o-animation: pulse-color 2s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  animation: pulse-color 2s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
}
.ajax-progress-throbber:after {
  -webkit-animation: pulse-color-slow 2s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  -moz-animation: pulse-color-slow 2s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  -ms-animation: pulse-color-slow 2s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  -o-animation: pulse-color-slow 2s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
  animation: pulse-color-slow 2s cubic-bezier(0.4, 0.0, 0.6, 1) 0s infinite normal;
}
.ajax-progress-throbber .throbber, .ajax-progress-throbber .message {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  background: none;
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 20px;
  color: transparent;
  padding: 0;
  margin: 0;
  opacity: 1;
  display: none;
  box-sizing: border-box;
}
.ajax-progress-throbber .throbber:before, .ajax-progress-throbber .throbber:after, .ajax-progress-throbber .message:before, .ajax-progress-throbber .message:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  transform-origin: center;
  background: #000;
  display: block;
  box-sizing: border-box;
}
.ajax-progress-throbber .throbber:before, .ajax-progress-throbber .message:before {
  width: 20px;
  height: 20px;
  background: #000;
  -webkit-animation: pulse 3s cubic-bezier(0.4, 0.0, 0.6, 1) 1s infinite normal;
  -moz-animation: pulse 3s cubic-bezier(0.4, 0.0, 0.6, 1) 1s infinite normal;
  -ms-animation: pulse 3s cubic-bezier(0.4, 0.0, 0.6, 1) 1s infinite normal;
  -o-animation: pulse 3s cubic-bezier(0.4, 0.0, 0.6, 1) 1s infinite normal;
  animation: pulse 3s cubic-bezier(0.4, 0.0, 0.6, 1) 1s infinite normal;
}
.ajax-progress-throbber .throbber:after, .ajax-progress-throbber .message:after {
  background: white;
  -webkit-animation: pulse 2s cubic-bezier(0.4, 0.0, 0.6, 1) 1s infinite normal;
  -moz-animation: pulse 2s cubic-bezier(0.4, 0.0, 0.6, 1) 1s infinite normal;
  -ms-animation: pulse 2s cubic-bezier(0.4, 0.0, 0.6, 1) 1s infinite normal;
  -o-animation: pulse 2s cubic-bezier(0.4, 0.0, 0.6, 1) 1s infinite normal;
  animation: pulse 2s cubic-bezier(0.4, 0.0, 0.6, 1) 1s infinite normal;
}
.ajax-progress-throbber .message {
  display: block;
}
.ajax-progress-throbber .message:before {
  background: #000;
  -webkit-animation: pulse 2s cubic-bezier(0.0, 0.0, 0.2, 1) 0s infinite normal;
  -moz-animation: pulse 2s cubic-bezier(0.0, 0.0, 0.2, 1) 0s infinite normal;
  -ms-animation: pulse 2s cubic-bezier(0.0, 0.0, 0.2, 1) 0s infinite normal;
  -o-animation: pulse 2s cubic-bezier(0.0, 0.0, 0.2, 1) 0s infinite normal;
  animation: pulse 2s cubic-bezier(0.0, 0.0, 0.2, 1) 0s infinite normal;
}
.ajax-progress-throbber .message:after {
  background: white;
  -webkit-animation: pulse 1s cubic-bezier(0.4, 0.0, 1, 1) 0.4s infinite normal;
  -moz-animation: pulse 1s cubic-bezier(0.4, 0.0, 1, 1) 0.4s infinite normal;
  -ms-animation: pulse 1s cubic-bezier(0.4, 0.0, 1, 1) 0.4s infinite normal;
  -o-animation: pulse 1s cubic-bezier(0.4, 0.0, 1, 1) 0.4s infinite normal;
  animation: pulse 1s cubic-bezier(0.4, 0.0, 1, 1) 0.4s infinite normal;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
  }
}
@-moz-keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
  }
}
@-ms-keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
  }
}
@-o-keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
  }
}
@-webkit-keyframes pulse-color {
  0% {
    box-shadow: 0 0 0 0 #77dda8;
  }
  30% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@-moz-keyframes pulse-color {
  0% {
    box-shadow: 0 0 0 0 #77dda8;
  }
  30% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@-ms-keyframes pulse-color {
  0% {
    box-shadow: 0 0 0 0 #77dda8;
  }
  30% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@-o-keyframes pulse-color {
  0% {
    box-shadow: 0 0 0 0 #77dda8;
  }
  30% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@keyframes pulse-color {
  0% {
    box-shadow: 0 0 0 0 #77dda8;
  }
  30% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@-webkit-keyframes pulse-color-slow {
  0% {
    box-shadow: 0 0 0 0 #77dda8;
  }
  70% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@-moz-keyframes pulse-color-slow {
  0% {
    box-shadow: 0 0 0 0 #77dda8;
  }
  70% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@-ms-keyframes pulse-color-slow {
  0% {
    box-shadow: 0 0 0 0 #77dda8;
  }
  70% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@-o-keyframes pulse-color-slow {
  0% {
    box-shadow: 0 0 0 0 #77dda8;
  }
  70% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@keyframes pulse-color-slow {
  0% {
    box-shadow: 0 0 0 0 #77dda8;
  }
  70% {
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@-webkit-keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-moz-keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-ms-keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-o-keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}