#loading-screen {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  // background-image: url("../assets/common/background/background_base.png");
  background-size: cover;
  background-position: center;
  z-index: -2;

  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    max-width: 60vw;
    max-height: 60vh;

    @media @portrait {
      max-width: 80vw;
    }
  }

  .title {
    margin-top: 25vh;
    font-family: @font-family;
    font-size: 15vmin;
    color: #ebf830;
    text-align: center;
  }

  .loading-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6vh;

    width: 50vw;
    height: 5.9vw;

    @media @portrait {
      width: 80vw;
      height: 9.5vw;
    }

    .loading-bar-fill-mask {
      position: absolute;
      overflow: hidden;
      height: 100%;
      padding: 2% 0 0 3%;
    }

    img {
      position: absolute;
    }

    .bar-frame,
    .bar-background {
      width: 100%;
      height: 100%;
    }

    .bar-fill {
      height: 64%;
    }
  }
}