body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "Header" "Main" "Footer";
  row-gap: 0;
  background-color: #FFF;
  color: #000;
  font-size: 1.6rem;
  width: 100%;
  height: 100vh;
}
body * {
  font-size: inherit;
}
body > header {
  grid-area: Header;
  height: 3.2rem;
  line-height: 3.2rem;
  overflow: hidden;
}
body > main {
  grid-area: Main;
  background-color: #CCC;
  background-image: url("/images/backgrounds/vh-ogx-background.jpg");
  background-attachment: fixed;
  padding: 1rem;
}
body > footer {
  grid-area: Footer;
  height: 3.2rem;
  z-index: 2147483647;
  display: block;
  background-color: #FFF;
}
header > h1 {
  text-align: right;
  text-transform: uppercase;
  padding-right: 1rem;
}
footer img {
  vertical-align: middle;
}
footer p {
  font-size: small;
  line-height: 3.2rem;
  text-align: center;
}
footer p .current-role {
  float: right;
  margin-right: 1rem;
}
footer p .current-user {
  float: left;
  margin-left: 1rem;
}
figure {
  width: calc(100vw - 2rem);
  max-width: max-content;
  display: block;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}
section {
  margin-bottom: 0.75rem;
}
section.errors {
  border-radius: 0.75rem;
  background-color: #fde8eb;
  padding: 0.375rem 0.75rem;
  border: solid 0.2rem #ED1A3B;
}
section.errors h3 {
  color: #ED1A3B;
}
section.errors ul {
  padding-left: 0;
}
section.errors li {
  list-style-type: disc;
  list-style-position: outside;
  color: #ED1A3B;
  margin-left: 1em;
}
.hidden {
  display: none;
}
[aria-busy] {
  --loading-size: 32px;
  --loading-stroke: 6px;
  --loading-duration: 1s;
  position: relative;
  opacity: 0.75;
}
[aria-busy]:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--loading-size);
  height: var(--loading-size);
  margin-top: calc(var(--loading-size) / 2 * -1);
  margin-left: calc(var(--loading-size) / 2 * -1);
  border: var(--loading-stroke) solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.5);
  animation: rotate calc(var(--loading-duration)) linear infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
