/**
 * @file
 * Throbber.
 */
/* Full screen throbber */
.ajax-progress-fullscreen {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4px;
  opacity: 1;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.35);
  background-image: url(../images/ajax-loader.gif);
  background-repeat: no-repeat;
  background-position: center center;
}