
.Window.Page .WindowContent {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-column-gap: var(--ActionButtonHorizontalPadding);
  grid-template-areas: "title" "content";
}
.Window.Page .WindowContent > .Title {
  grid-area: title;
}
.Window.Page .WindowContent > .Content {
  grid-area: content;
  display: grid;
}
.Window.Page .WindowContent > .Content .Page {
  grid-column: 1/3;
  display: grid;
}
.Window.Page .WindowContent > .Content .Page .Loading,
.Window.Page .WindowContent > .Content .Page iframe {
  grid-column: 1;
  grid-row: 1;
}
.Window.Page .WindowContent > .Content .Page .Loading {
  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;
  width: 100%;
  height: 100%;
}
.Window.Page .WindowContent > .Content .Page .Loading::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;
}
.Window.Page .WindowContent > .Content .Page .Loading::after {
  content: "\eff6";
}
.Window.Page .WindowContent > .Content .Page .Loading::after {
  animation: Spin 1.5s linear infinite;
  display: inline-block;
}
.Window.Page .WindowContent > .Content .Page .Loading::after {
  width: 60px;
  height: 64px;
}
.Window.Page .WindowContent > .Content .Page iframe {
  border-style: none;
  width: 100%;
  height: 100%;
}
.Window.Page .WindowContent > .DragOverlay {
  display: none;
  grid-area: content;
}
.Window.Page.Dragging .DragOverlay,
.Window.Page.Resizing .DragOverlay {
  display: block;
}
