/* Floating circles — sits above .app-page-fixed-bg, below #appCapsule */

body.app-page-bg .app-page-bg-circles {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

body.app-page-bg .app-page-bg-circles__list {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

body.app-page-bg .app-page-bg-circles__list li {
  position: absolute;
  display: block;
  bottom: -10rem;
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(255, 255, 255, 0.14);
  animation: dwc-bg-circle-float 25s linear infinite;
  will-change: transform, opacity;
}

body.app-page-bg .app-page-bg-circles__list li:nth-child(1) {
  left: 25%;
  width: 5rem;
  height: 5rem;
  animation-delay: 0s;
}

body.app-page-bg .app-page-bg-circles__list li:nth-child(2) {
  left: 10%;
  animation-delay: 2s;
  animation-duration: 12s;
}

body.app-page-bg .app-page-bg-circles__list li:nth-child(3) {
  left: 70%;
  animation-delay: 4s;
}

body.app-page-bg .app-page-bg-circles__list li:nth-child(4) {
  left: 40%;
  width: 3.75rem;
  height: 3.75rem;
  animation-delay: 0s;
  animation-duration: 18s;
}

body.app-page-bg .app-page-bg-circles__list li:nth-child(5) {
  left: 65%;
  animation-delay: 0s;
}

body.app-page-bg .app-page-bg-circles__list li:nth-child(6) {
  left: 75%;
  width: 6.875rem;
  height: 6.875rem;
  animation-delay: 3s;
}

body.app-page-bg .app-page-bg-circles__list li:nth-child(7) {
  left: 35%;
  width: 9.375rem;
  height: 9.375rem;
  animation-delay: 7s;
}

body.app-page-bg .app-page-bg-circles__list li:nth-child(8) {
  left: 50%;
  width: 1.5625rem;
  height: 1.5625rem;
  animation-delay: 15s;
  animation-duration: 45s;
}

body.app-page-bg .app-page-bg-circles__list li:nth-child(9) {
  left: 20%;
  width: 0.9375rem;
  height: 0.9375rem;
  animation-delay: 2s;
  animation-duration: 35s;
}

body.app-page-bg .app-page-bg-circles__list li:nth-child(10) {
  left: 85%;
  width: 9.375rem;
  height: 9.375rem;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes dwc-bg-circle-float {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0.55;
    border-radius: 0;
  }

  100% {
    transform: translate3d(0, -110vh, 0) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.app-page-bg .app-page-bg-circles__list li {
    animation: none;
    opacity: 0.2;
    bottom: auto;
    top: 18%;
  }
}
