html.dmarket-startup,
html.dmarket-startup body {
  background: #111318;
}

html.dmarket-startup app-root {
  visibility: hidden;
}

html.dmarket-startup body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  background: #111318;
}

html.dmarket-startup body::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2147483647;
  width: 28px;
  height: 28px;
  box-sizing: border-box;
  border: 3px solid rgb(255 255 255 / 18%);
  border-top-color: #59ed90;
  border-radius: 50%;
  animation: dmarket-startup-spin 700ms linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes dmarket-startup-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.dmarket-startup body::after {
    animation: none;
  }
}
