#app-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #151516;
  z-index: 9999;
}

/* MUI CircularProgress indeterminate (size=60, color=secondary #C8FF62) */
#app-loading .app-loading-mui-root {
  display: inline-block;
  width: 60px;
  height: 60px;
  color: #c8ff62;
  animation: app-loading-mui-rotate 1.4s linear infinite;
}

#app-loading .app-loading-mui-svg {
  display: block;
}

#app-loading .app-loading-mui-circle {
  stroke: currentColor;
  stroke-dasharray: 80px, 200px;
  stroke-dashoffset: 0;
  animation: app-loading-mui-dash 1.4s ease-in-out infinite;
}

@keyframes app-loading-mui-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes app-loading-mui-dash {
  0% {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -125px;
  }
}

#root:not(:empty) + #app-loading {
  display: none !important;
}
