#loading-screen {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center bottom;

  .logo {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: 10vh;
    left: 50%;
    transform: translateX(-50%);
    width: 70vh;
    @media @portrait {
      width: 70%;
    }
  }

  .loading-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8%;
    @media @landscape {
      width: 55vh;
      height: 16vh;
    }
    @media @portrait {
      width: 55vw;
      height: 16vw;
    }
    .loading-bar-fill-mask {
      position: absolute;
      overflow: hidden;
      width: 100%;
      height: 38%;
      top: 30%;
    }
    img {
      position: absolute;
    }
    .bar-background {
      position: absolute;
      overflow: hidden;
      width: 109%;
      height: 65%;
      top: 17%;
      background-size: cover;
      left: -4.25%;
    }
    .bar-fill {
      height: 100%;
      width: 55vh;
      @media @portrait {
        width: 55vw;
      }
    }
  }
}
