/** @format */
html,
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Raleway, sans-serif;
}
#overlay {
  position: absolute;
  z-index: 998;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
}
#overlay svg {
  position: absolute;
  top: 150px;
  left: 0px;
  right: 0px;
  bottom: 200px;
}
#background {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000b;
}
#next {
  position: absolute;
  left: 10%;
  width: 80%;
  cursor: pointer;
  padding: 15px 40px;
  box-sizing: border-box;
  color: #fff;
  background-color: #0076ef;
  border-radius: 5px;
  bottom: 30px;
  font-weight: 600;
}
#done {
  position: absolute;
  cursor: pointer;
  top: 25%;
  right: 0px;
  background-color: #00c882;
  color: #fff;
  padding: 15px 20px;
  border-radius: 5px 0px 0px 5px;
  font-weight: 600;
}
#header {
  display: flex;
  flex-direction: column;
  padding: 40px 40px;
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 0px;
  left: 0px;
  box-sizing: border-box;
  width: 100%;
  background-color: #000b;
  box-shadow: 0px 0px 20px #0008;
  align-items: center;
}
#header.no-background {
  background-color: transparent;
  box-shadow: none;
}
#title {
  font-weight: 600;
  margin-bottom: 5px;
}
#subtitle {
  font-size: 15px;
  max-width: 250px;
}
#home-container {
  height: 100%;
  overflow: auto;
}
#home {
  display: flex;
  align-items: center;
  padding: 40px 10px;
  flex-direction: column-reverse;
  gap: 30px;
  justify-content: center;
  box-sizing: border-box;
  min-height: 100%;
}
#ARButton {
  background-color: #0076ef;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  max-width: 100%;
  width: 390px;
}
#ARButton.unsupported {
  background-color: #cdcdcd;
  cursor: default;
  pointer-events: none;
}
#ARButton.error {
  background-color: #cf415e;
}
#restart {
  position: absolute;
  left: 10%;
  width: 80%;
  cursor: pointer;
  margin-bottom: 15px;
  color: #f1f1f1;
  bottom: 80px;
  text-decoration: underline;
}
#save {
  position: absolute;
  left: 10%;
  width: 80%;
  cursor: pointer;
  padding: 15px 40px;
  box-sizing: border-box;
  color: #fff;
  background-color: #00c882;
  border-radius: 5px;
  bottom: 30px;
  font-weight: 600;
}
#save.loading {
  background-color: #cdcdcd;
}
#save.error {
  background-color: #cf415e;
}
#progress {
  color: #fff;
  font-family: sans-serif;
  position: absolute;
  bottom: 140px;
  left: 0px;
  box-sizing: border-box;
  width: 100%;
  font-size: 20px;
  text-shadow: 0px 0px 3px #0005;
}
#qrcode {
  width: 390px;
  max-width: 100%;
  text-align: center;
  background-color: #f7f4f1;
  border-radius: 10px;
  padding: 7px 5px;
  box-sizing: border-box;
  font-size: 14px;
  position: relative;
}
#qrcode .head {
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  gap: 4px;
  padding-right: 10px;
}
#qrcode .head a.appstore {
  width: 119px;
  height: 40px;
  display: block;
  background-image: url(/assets/img/appstore.png);
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  margin: 10px;
}
#qrcode .requirements {
  font-size: 11px;
  font-style: italic;
  padding: 0px 10px 10px 10px;
  color: #7b7b7b;
}
#qrcode .text {
  font-size: 12px;
  font-weight: 500;
  padding: 10px 30px 0px 30px;
}
#separator {
  position: relative;
  width: 100%;
  max-width: 317px;
  text-align: center;
  color: #d4d4d4;
}
#separator::before,
#separator::after {
  content: '';
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  background-color: #f1f1f1;
  width: 40%;
  height: 2px;
}
#separator::after {
  left: auto;
  right: 0px;
}
#ios {
  max-width: 317px;
  box-sizing: border-box;
  padding: 20px;
  font-size: 12px;
  text-align: center;
  background-color: #fdfdbd;
  border-radius: 10px;
}
#ios a.download {
  display: block;
  margin-top: 10px;
}
#ios a.link {
  display: block;
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}
