body {
  background-color: #000;
}

.loader-wrapper {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0 0 0 / 82%);
}

.loader-root-positioner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 112px;
  height: 100%;
  max-height: 48px;
}

.loader-white {
  fill: #fff;
}

.loader-social {
  fill: #ffc600;
}

.loader-sweep {
  fill: #01db80;
}

/* move from one side to another and then back */
@keyframes loader-keys-cc {
  0% {
    z-index: 1;
    transform: translateX(0);
  }

  49.9% {
    z-index: 1;
    transform: translateX(50%);
  }

  50% {
    z-index: -1;
    transform: translateX(50%);
  }

  100% {
    z-index: -1;
    transform: translateX(0);
  }
}

@keyframes loader-keys-sc {
  0% {
    z-index: -1;
    transform: translateX(0);
  }

  49.9% {
    z-index: -1;
    transform: translateX(-50%);
  }

  50% {
    z-index: 1;
    transform: translateX(-50%);
  }

  100% {
    z-index: 1;
    transform: translateX(-0);
  }
}

.loader-social-cc {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  animation: loader-keys-cc 1s linear infinite;
}

.loader-social-sc {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: auto;
  animation: loader-keys-sc 1s linear infinite;
}

iframe#launcher {
  display: none;
}
