#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #202e38;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.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%);
  }
}
