#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: opacity 1.0s ease;
}

.loading-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.loading-inner img {
  max-width: 320px;
  height: auto;
  display: block;
}
.loading-inner video {
  max-width: 80%;
  height: auto;
  display: block;
}

#loading-screen.is-hidden {
  opacity: 0;
  pointer-events: none;
}