@charset "utf-8";


@media screen and (orientation: portrait){

  * {
    margin: 0;
    padding: 0;
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  body{
    height: 100vh;
  }

  #qrsection {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  #canvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    height: 100vh;
  }

  #wrapper{
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 100px;
    z-index: 2;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.584);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .inner{
    margin-left: 50px;
    margin-right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #exitButton{
    width: 70px;
    height: 70px;
    border-radius: 35px;
  }

  #qrbutton{
    width: 90px;
    height: 90px;
    border-radius: 50px;
    bottom: 40;
    background-color: #2FDC0A;
  }


  #none{
    opacity: 0;
    width: 70px;
    height: 70px;
    border-radius: 50px;
  }
}






/*
#exitButton {
  box-sizing: border-box;
  width: 100px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 25px;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  background-color: rgba(0,0,0,.3);
  cursor: grab;
}
#qrbutton {
  display: block;
  border:0;
  background-color:rgba(0,0,0,0);
  width: 150px;
  height: 150px;
  background-image: url("../img/scan.png");
  background-size: 150px;
  margin: 100px auto;
  cursor: grab;
}*/