#qrWindow{
  width: 100vw;
  height: 70%;
  z-index: 10000;
  top: 0%;
  left: 0%;
  transform: none;
}

#qrcode img{
  width: 70%;
  height: 100%;
}

#qrcode{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  top: 5%;
  height: 80%;
  width: 100%;
  left: 0%;
  transform: none;
}



  #ar-button {
    right: 3%;
  }

  #ar-button2 {
    height: 11vh;
    width: 22vh;
    bottom: 3%;
    right: 3%;
    visibility: visible;
    background-color: #f9fbff;
    border-radius: 6px;
  }

  #ar-button2:hover {
    background: #E8E8E8;
    transition: 0.2s all ease-in-out;
    -moz-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
  }

  #buttonImg{
    width: 8vh;
    height: 8vh;
    /* scale: 0.55; */
  }

  #buttonImg2{
    /* width: 2vw; */
    width: 10vh;
    height: 10vh;
    scale: 1.5;
  }

  @keyframes circle {
    from {
      transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg);
    }

    to {
      transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg);
    }
  }

  @keyframes elongate {
    from {
      transform: translateX(100px);
    }

    to {
      transform: translateX(-100px);
    }
  }



  model-viewer>#ar-prompt {
    position: absolute;
    left: 50%;
    bottom: 175px;
    animation: elongate 2s infinite ease-in-out alternate;
    display: none;
  }

  model-viewer[ar-status="session-started"]>#ar-prompt {
    display: block;
  }

  model-viewer>#ar-prompt>img {
    animation: circle 4s linear infinite;
  }

  model-viewer>#ar-failure {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 175px;
    display: none;
  }

  model-viewer[ar-tracking="not-tracking"]>#ar-failure {
    display: block;
  }



  html,
  body {
    width: 100%;
    height: 100vh;
    margin: 0;
    background: rgb(250, 251, 255);
    overflow: hidden;
  }

  .btnDiv {
    height: 10vh;
  }

  @media  (max-device-width: 780px) {

    html, body{
      min-height: 100vh;
      background: rgba(250, 251, 255);
    }


    #ar-button{
      height: 11vh;
      width: 22vh;
      bottom: 3%;
      right: 3%;
      visibility: visible;
      background-color: #f9fbff;
      border-radius: 6px;
    
    }

    #buttonImg{
      padding: 0;
      margin: 0;
      width: 10vh;
      height: 10vh;
      scale: 1.5;
    }


    #ar-button {
      visibility: visible;
    }

    #ar-button p{
      margin: 0;
      padding: 0;
      font-size: 28pt;
      color: #1e1e1e;
    }


    #loading-animation{
      scale: 1;
    }

    #viewer{
      height: 75svh;
      width: 100%;
      left: 0%;
      background: rgb(255,255,255);
      z-index: 99999;
      position: fixed;
    }



    #gif{
      scale: 2;
    }

    #loadingText{
      scale: 2;
    }




    .btnDiv{
      text-align: center;
      height: 10vh;
    }



  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(180, 180, 180, 0.7);
    }

    70% {
      box-shadow: 0 0 0 20px rgba(180, 180, 180, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(180, 180, 180, 0);
    }
  }
