#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #202e38;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 9999;
}

.startup-error {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  opacity: 0.9;
  margin-top: 18px;
  text-align: center;
  padding: 0 20px;
}

.loading-logo-wrapper {
  position: relative;
  width: 100px;
  height: 33px;
}

.loading-logo {
  opacity: 0.3;
}

.loading-logo-light,
.loading-logo-mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
}

.loading-logo-light {
  width: 100px;
  height: 33px;
  clip-path: inset(0 100% 0 0);
  animation: loadingLogoLight 1s linear infinite;
}

.loading-logo-light img {
  width: 100px;
  height: 33px;
  filter: brightness(2.4);
}

@keyframes loadingLogoLight {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  50% {
    clip-path: inset(0 0 0 0);
  }

  50.01% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 100%);
  }
}
