loading-overlay
{
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.5s ease;
}

loading-overlay.lo-exit
{
  opacity: 0;
  pointer-events: none;
}

.lo-backdrop
{
  position: absolute;
  inset: 0;
  background: #000;
  backdrop-filter: blur( 0px );
  transition: backdrop-filter 0.7s ease;
}

.lo-backdrop.lo-blurred
{
  backdrop-filter: blur( 20px );
}

.lo-mosaic
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.lo-mosaic.lo-dissolving
{
  opacity: 0;
}

.lo-logo
{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY( 18px );
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lo-logo.lo-visible
{
  opacity: 1;
  transform: translateY( 0 );
}

.lo-logo.lo-fading
{
  opacity: 0;
  transform: translateY( -10px );
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lo-logo svg
{
  width: 70vw;
  max-width: 960px;
  height: auto;
}
