body {
  font-family: "Roboto Variable", "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

.initial-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* LinearProgress replica styles */
.app-loading {
  width: 100%;
  height: 4px;
  background-color: rgba(55, 160, 0, 0.4);
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.25s ease-in-out;
  z-index: 9999;
}

.app-loading--hidden {
  opacity: 0;
}

.app-loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #37a000;
  animation: app-loading-primary 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395)
    infinite;
}

.app-loading-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #72ba4a;
  border-radius: 2px;
  animation: app-loading-secondary 2.1s cubic-bezier(0.165, 0.84, 0.44, 1)
    infinite;
  animation-delay: 1.15s;
}

@keyframes app-loading-primary {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes app-loading-secondary {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
