#splash-screen {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("../assets/common/loading_and_splash/splash_bg_landscape.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;

  @media @portrait {
    background-image: url("../assets/common/loading_and_splash/splash_bg_portrait.jpg");
  }

  img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    max-height: 45%;

    @media @portrait {
      top: 10%;
      transform: translate(-50%, -30%);
      max-height: 25%;
    }

    z-index: 1;
  }

  .feature-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    animation-name: fadeIn;
    animation-timing-function: linear;
    animation-duration: 0.4s;

    @keyframes fadeIn {
      0% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    img {
      position: absolute;
      max-width: 100%;
      max-height: 110%;
      transform: translateY(-10%);
    }

    video {
      position: absolute;
      max-width: 75%;
      max-height: 70%;
      transform: translateY(-12%);
    }

    .videoPlay {
      background-image: 'none';
      background-position: center center;
      background-size: 30%;
      background-repeat: no-repeat;
      cursor: 'auto';
      pointer-events: 'none';
    }

    .p {
      position: absolute;
      bottom: 1%;
      font-family: @font-family;
      color: #85dc4d;
      font-size: 5vmin;
      text-transform: uppercase;
      width: 105%;
    }

    @media @landscape {
      top: 35%;
      max-width: 50%;
      max-height: 50%;
    }

    @media @portrait {
      max-width: 90%;
      max-height: 30%;
    }

    &.feature-wrapper-left {
      @media @landscape {
        left: 50%;
        transform: translateX(-100%);
      }

      @media @portrait {
        top: 39%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
    }

    &.feature-wrapper-right {
      @media @landscape {
        right: 50%;
        transform: translateX(100%);
      }

      @media @portrait {
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
    }
  }

  .continue {
    position: absolute;
    bottom: 5%;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    color: #376962;
    font-family: @font-family;
    font-size: 5vmin;

    animation-name: glow;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 1.5s;

    &:hover {
      cursor: pointer;
      animation: 0;
    }

    @keyframes glow {
      0% {
        opacity: 1;
      }

      50% {
        opacity: 0.5;
      }

      100% {
        opacity: 1;
      }
    }
  }
}