.grx-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;

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

  z-index: 10000;

  transition:
    opacity 500ms,
    transform 500ms;
}

.grx-loader--done {
  opacity: 0;
  transform: scale(1.2);
  pointer-events: none;
}

.grx-loader object {
  max-width: 10vw;
}

.grx-copyright {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: gray;
  font-size: 0.8rem;
}

.grx-loading {
  position: fixed;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;

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

@keyframes grx-loading-anim {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.grx-loading img {
  height: 50px;

  animation-name: grx-loading-anim;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
