html,
body,
#app {
  min-height: 100%;
}

body {
  margin: 0;
}

.hawk-boot {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: #10141a;
  background: #f5f7f8;
  font: 700 24px/1 sans-serif;
  letter-spacing: -.04em;
}

#blazor-error-ui {
  display: none;
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  max-width: calc(100vw - 40px);
  padding: 14px 18px;
  border: 1px solid rgba(16, 20, 26, .14);
  border-radius: 14px;
  color: #10141a;
  background: #fff;
  box-shadow: 0 18px 60px rgba(16, 20, 26, .16);
}

#blazor-error-ui .dismiss {
  border: 0;
  margin-left: 12px;
  background: transparent;
  cursor: pointer;
}

.route-not-found {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 14px;
  text-align: center;
}

@media (max-width: 480px) {
  body.page-home section div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.page-home [data-bars] > div {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px 12px !important;
  }

  body.page-home [data-bars] > div > div {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  body.page-home [data-bars] > div > span:last-child {
    text-align: right !important;
  }
}
