#loading {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

#loading[hidden] {
  display: none;
}

body.is-loading {
  overflow: hidden;
  touch-action: none;
}

#loading .spinner {
  width: 100px;
  height: 100px;
  background-image: url('./img/ajax-loader.gif');
}

#loading .loading-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}