.noChrome {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #F5F5F5;
  background-image: url("https://s3-ap-southeast-1.amazonaws.com/haptikappimg/content/sdk-background.png");
  background-size: 256px;
  z-index: 1000000000;

  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;

  &Body {
    padding: 24px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(#000, 0.1);
    border-radius: 8px;
    text-align: center;
    animation: lift-up 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    &Icon {
      width: 64px;
      height: 64px;
      margin: 0 auto;
      margin-bottom: 14px;
      svg {
        width: 100%;
        height: 100%;
      }
    }

    &Title {
      font-size: 24px;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
    }

    &Description {
      color: #666;
      max-width: 600px;
      font-size: 14px;
    }

    a {
      display: inline-flex;
      align-items: center;
      border: 1px solid #EEE;
      border-radius: 8px;
      padding: 8px;
      color: #666;
      transition: 0.2s ease-out;
      margin-bottom: 4px;
      img {
        display: block;
        width: 32px;
        height: 32px;
        object-fit: contain;
        margin-right: 4px;
      }

      &:hover {
        color: #2DACF0;
        border-color: #2DACF0;
      }

    }

    span {
      text-decoration: underline;
      color: #666;
      opacity: 0.5;
      font-size: 12px;
      cursor: pointer;
    }
  }
}

@keyframes lift-up {
  0% {
    opacity: 0;
    transform: translate3d(0,30px,0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0,0,0);
  }
}
