.moyaLoadIcon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  border: 3px solid #a84512;
  border-top-color: transparent;
  border-radius: 50%;
  animation: moyaLoadTurn 1s linear infinite;
}

.moyaLoadIcon::before,
.moyaLoadIcon::after {
  position: absolute;
  box-sizing: border-box;
  border-radius: 50%;
  content: "";
}

.moyaLoadIcon::before {
  inset: 6px;
  border: 3px solid #667043;
  border-right-color: transparent;
  animation: moyaLoadTurn 1.4s linear infinite reverse;
}

.moyaLoadIcon::after {
  inset: 12px;
  border: 3px solid #b7834a;
  border-left-color: transparent;
  animation: moyaLoadTurn .8s linear infinite;
}

.moyaBoot {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100dvh;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background: #e8ceb0;
}

.moyaBoot > .moyaLoadIcon {
  width: 68px;
  height: 68px;
  border-width: 4px;
}

.moyaBoot > .moyaLoadIcon::before {
  inset: 8px;
  border-width: 4px;
}

.moyaBoot > .moyaLoadIcon::after {
  inset: 16px;
  border-width: 4px;
}

.moyaLoadingPanel {
  display: grid;
  width: 100%;
  min-height: 180px;
  place-items: center;
}

.moyaLoadingPanel > .moyaLoadIcon {
  width: 60px;
  height: 60px;
  border-width: 4px;
}

.moyaLoadingPanel > .moyaLoadIcon::before {
  inset: 7px;
  border-width: 4px;
}

.moyaLoadingPanel > .moyaLoadIcon::after {
  inset: 14px;
  border-width: 4px;
}

.landingResponseButton > strong:has(.moyaLoadIcon) {
  width: 32px;
  min-width: 32px;
  padding: 0;
}

.landingResponseButton .moyaLoadIcon {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.landingResponseButton .moyaLoadIcon::before {
  inset: 3px;
  border-width: 2px;
}

.landingResponseButton .moyaLoadIcon::after {
  inset: 6px;
  border-width: 2px;
}

@keyframes moyaLoadTurn {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .moyaLoadIcon, .moyaLoadIcon::before, .moyaLoadIcon::after { animation: none; }
}
