#page_shareApp.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 10px;
  right: 10px;
}
#page_shareApp > DIV.shappQR {
  display: flex;
  flex-direction: column;
  padding: 0px 10px;
  justify-content: space-between;
  align-items: center;
}
#page_shareApp > DIV.shappQR > DIV:nth-child(1) {
  width: 270px;
  height: 270px;
  border-radius: 270px;
  border: solid 3px var(--shapp-qr-border-color);
  overflow: hidden;
  box-shadow: 10px 10px 30px var(--shapp-qr-shadow);
}
#page_shareApp > DIV.shappQR > DIV:nth-child(1) > DIV {
  background-color: var(--shapp-qr-background);
  width: inherit;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page_shareApp > DIV.shappQR > DIV:nth-child(1) > DIV > #shappQRcode {
  width: calc(70.7% - 20px);
  height: calc(70.7% - 20px);
}
#page_shareApp > DIV.shappQR > DIV:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#page_shareApp > DIV.shappQR > DIV:nth-child(2) > SPAN {
  text-align: center;
  margin-top: 20px;
}
#page_shareApp > DIV:last-child {
  display: flex;
  justify-content: space-evenly;
}

@media (max-height: 700px) {
  #page_shareApp > DIV.shappQR > DIV:nth-child(1) {
    width: 180px;
    height: 180px;
    border-radius: 200px;
  }
}