#page_home.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  overflow: hidden;
}
#page_home > DIV.homeQR {
  display: flex;
  padding: 10px 10px;
  justify-content: space-evenly;
  padding-top: 20px;
}
#page_home > DIV.homeQR > DIV:nth-child(1) {
  width: 260px;
  height: 260px;
  min-width: 260px;
  min-height: 260px;
  border-radius: 260px;
  border: solid 3px var(--home-qr-border-color);
  overflow: hidden;
  box-shadow: 10px 10px 30px var(--home-qr-shadow);
}
#page_home > DIV.homeQR > DIV:nth-child(1) > DIV {
  background-color: var(--home-qr-background);
  width: inherit;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page_home > DIV.homeQR > DIV:nth-child(1) > DIV > #homeQRcode {
  width: calc(70.7% - 20px);
  height: calc(70.7% - 20px);
}
#page_home > DIV.homeQR > DIV:nth-child(2) {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  justify-content: center;
  overflow: hidden;
}
#page_home > DIV.homeQR > DIV:nth-child(2) > BUTTON {
  margin-top: 10px;
  font-size: 14px;
  overflow-wrap: break-word;
}
#page_home > DIV.desktop {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: flex-start;
  row-gap: 20px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding: 0px 10px;
  margin: 10px 0px;
  overflow-y: auto;
  min-height: 150px;
}
#page_home > DIV.desktop > DIV {
  width: 130px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--background);
}
#page_home > DIV.desktop > DIV.hidden {
  display: none;
}
#page_home > DIV.desktop > DIV > DIV:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#page_home > DIV.desktop > DIV > DIV:nth-child(1) > BUTTON {
  border: none;
  background: transparent;
}
#page_home > DIV.desktop > DIV > DIV:nth-child(1) > BUTTON:first-child {
  width: 60px;
  height: 60px;
}
#page_home > DIV.desktop > DIV > DIV:nth-child(1) > BUTTON:first-child > IMG {
  width: 60px;
  height: 60px;
}
#page_home > DIV.desktop > DIV > DIV:nth-child(1) > BUTTON:last-child {
  width: 30px;
  height: 30px;
}
#page_home > DIV.desktop > DIV > DIV:nth-child(1) > BUTTON:last-child > IMG {
  width: 30px;
  height: 30px;
}
#page_home > DIV.desktop > DIV > DIV:nth-child(2) {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}
#page_home > DIV.desktop > DIV > DIV:nth-child(2) > SPAN {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: break-spaces;
  word-break: break-word;
}
#page_home > DIV.desktop > DIV.loading-rollon {
  display: none;
  align-self: center;
  height: 40px;
  width: 40px;
}
#page_home > DIV.desktop > DIV.loading-rollon.show {
  display: block;
}
#page_home > DIV.home-links {
  display: flex;
  flex-direction: row;
  margin: 20px 0px 10px 0px;
  justify-content: space-around;
  border-top: solid 1px var(--home-line_bottom);
  padding-top: 10px;
}
#page_home > DIV.home-links > BUTTON {
  display: flex;
  flex-direction: column;
  border: none;
  background-color: transparent;
  align-items: center;
  max-width: 25%;
}
#page_home > DIV.home-links > BUTTON > IMG {
  width: 30px;
  height: 30px;
}
#page_home > DIV.home-links > BUTTON > SPAN {
  font-size: 12px;
  text-align: center;
}

@media (max-width: 414px) {
  #page_home > DIV.homeQR > DIV:nth-child(1) {
    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;
  }
}