#root {
  min-height: 100vh;
}

.flowdraft-boot-loading {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #07101c;
  color: #e8ecf1;
  font-family: Inter, system-ui, sans-serif;
}

.dashboard-live-loading {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  background: #07101c;
  color: #e8ecf1;
  font-family: Inter, system-ui, sans-serif;
}

.dashboard-live-shell--loading .app {
  visibility: hidden;
}

.flowdraft-boot-loading__panel {
  display: grid;
  justify-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.dashboard-live-loading__panel {
  display: grid;
  justify-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.flowdraft-boot-loading__spinner {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(125, 192, 202, .24);
  border-top-color: #7dc0ca;
  box-shadow: 0 0 24px rgba(125, 192, 202, .22);
  animation: flowdraft-boot-spin .8s linear infinite;
}

.dashboard-live-loading__spinner {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(125, 192, 202, .24);
  border-top-color: #7dc0ca;
  box-shadow: 0 0 24px rgba(125, 192, 202, .22);
  animation: flowdraft-boot-spin .8s linear infinite;
}

@keyframes flowdraft-boot-spin {
  to {
    transform: rotate(360deg);
  }
}
