.has-splash {
  z-index: -1;
}

.loading {
  display: none
}

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

  .logo {
    position: absolute;
    top: 40%;
    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: 15%;

    width: 40vh;
    height: 8vh;

    @media @portrait {
      width: 50vw;
      height: 15vw;
    }

    .loading-bar-fill-mask {
      position: absolute;
      overflow: hidden;
      height: 80%;
      left: 4%;
      bottom: 3%;
    }

    img {
      position: absolute;
    }

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

    .bar-fill {
      width: 92%;
      height: 80%;
    }
  }
}