
.WorkingSplash {
  display: none;
}
html.Busy::before {
  content: " ";
  background-color: var(--ModalBackgroundColor);
  position: fixed;
  width: 100%;
  top: calc(2 * var(--HeaderBarHeight));
  bottom: var(--HeaderBarHeight);
  z-index: var(--BusyBaseZIndex) !important;
}
html.Busy .WorkingSplash {
  z-index: calc(var(--BusyBaseZIndex) + 1) !important;
  position: fixed;
  background-color: var(--PrimaryColor);
  width: var(--BusyDialogWidth);
  height: var(--BusyDialogHeight);
  left: calc(50% - (var(--BusyDialogWidth) / 2));
  top: calc(50% - (var(--BusyDialogHeight) / 2));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--LightTextColor);
  font-weight: 500;
  background-image: linear-gradient(to right, var(--PrimaryColor), var(--SecondaryColor));
  background-size: 200%;
  animation: SlideBackground 6s ease-in-out infinite;
  background-position: 0% 50%;
  font-size: 60px;
}
html.Busy .WorkingSplash::after {
  font-family: 'IcoFont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
html.Busy .WorkingSplash::after {
  content: "\eff6";
}
html.Busy .WorkingSplash::after {
  animation: Spin 1.5s linear infinite;
  display: inline-block;
}
html.Busy .WorkingSplash::after {
  width: 60px;
  height: 64px;
}
html.Busy header,
html.Busy footer {
  background-image: linear-gradient(to right, var(--PrimaryColor), var(--SecondaryColor));
  background-size: 200%;
  animation: SlideBackground 6s ease-in-out infinite;
}
header,
footer {
  background-size: 100%;
  background-position: 0% 50%;
  transition: background-size 2s, background-position 2s;
}
