:root {
  --primary-color: #fff;
  --secondary-color: #1a1a1a;
  --green: #0c9337;
  --red: #a61818;
  --card-bg: rgba(20, 20, 20, 0.8);
  --card-border: 1px solid #3f3f3f;
  --font-color: #dedede;
  --font-color-alt: #121212;
}

img {
  width: 100%;
}

@font-face {
  font-family: Atyp;
  src: url(/fonts/ATYPDISPLAY-BOLD.TTF);
  font-weight: 700;
}
@font-face {
  font-family: Atyp;
  src: url(/fonts/ATYPDISPLAY-SEMIBOLD.TTF);
  font-weight: 600;
}
@font-face {
  font-family: Atyp;
  src: url(/fonts/ATYPDISPLAY-MEDIUM.TTF);
  font-weight: 500;
}
@font-face {
  font-family: Atyp;
  src: url(/fonts/ATYPDISPLAY-REGULAR.TTF);
  font-weight: 400;
}
body {
  font-family: Atyp;
}

#camCanvas {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  background: #000;
  left: 0;
  top: 0;
}

.tip {
  color: var(--primary-color);
  text-decoration: underline;
}

.tip-popup {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--card-bg);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}

.tip-popup .content {
  background: var(--card-bg);
  border: var(--card-border);
  width: 100%;
  padding: 30px 15px;
  border-radius: 20px;
  z-index: 99;
  gap: 40px;
  display: flex;
  flex-direction: column;
}

.tips {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(0, 0, 0);
  padding: 25px;
  display: flex;
  flex-direction: column;
  z-index: 3;
  gap: 25px;
}

.tips .item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.tips .item .content, .tips .item .number {
  background: var(--card-bg);
  border: var(--card-border);
  padding: 20px;
  border-radius: 15px;
  color: var(--font-color);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.tips .item .number {
  display: flex;
  font-weight: 600;
}

.tips .item .content p {
  font-weight: 500;
  line-height: 1.3;
}

.gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery img {
  width: calc(50% - 10px);
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery h4 {
  color: var(--font-color-alt);
  width: 100%;
  text-align: center;
  padding: 10px 10px 12px 10px;
  background: #fff;
  border-radius: 15px;
  font-size: 16px;
}

.gallery.green h4 {
  background-color: var(--green);
  color: var(--primary-color);
}

.gallery.red h4 {
  background-color: var(--red);
  color: var(--primary-color);
}

p {
  margin-bottom: 0;
}

::marker {
  color: transparent;
}

.progress {
  background: var(--card-bg);
  border: var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  position: absolute;
  left: 20px;
  top: 20px;
  width: calc(100% - 40px);
  z-index: 2;
  border-radius: 90px;
  color: var(--font-color);
  height: 60px;
  letter-spacing: 1px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.ref-images {
  z-index: 3;
  position: absolute;
  left: 5%;
  top: 30%;
  width: 100%;
  opacity: 0.4;
  transform: scale(1.5);
}

#take-picture {
  position: absolute;
  bottom: 35px;
  left: calc(50% - 60px);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--card-bg);
  padding: 40px;
  border: var(--card-border);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

#take-picture.green {
  background-color: green;
}

#take-picture.green img {
  filter: contrast(0) brightness(9);
}

.hide-tips {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  z-index: 9;
}

.btn {
  border-radius: 15px;
  background: #000;
  color: #fff;
  padding: 15px 40px 17px 40px;
  font-size: 16px;
  font-weight: 600;
}

.btn.primary {
  background: var(--primary-color);
  color: var(--font-color-alt);
  border: 1px solid var(--primary-color);
}

.btn.red {
  background-color: #a00000;
  color: #fff;
}

.btn.full-width {
  width: 100%;
}

#star-pipeline {
  z-index: 2;
  position: absolute;
  bottom: 25px;
  left: 10%;
  width: 80%;
}

#logs {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  z-index: 9;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 10px;
  max-height: calc(100% - 20px);
  max-width: calc(100% - 20px);
  overflow-y: scroll;
}

#viewer-container {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 99;
}

#download {
  position: absolute;
  z-index: 199;
  bottom: 10px;
  width: calc(100% - 20px);
  left: 10px;
}

#reset {
  position: absolute;
  z-index: 199;
  bottom: 80px;
  width: calc(100% - 20px);
  left: 10px;
}

#loading {
  position: absolute;
  left: 10px;
  top: 10px;
  width: calc(100% - 20px);
  height: 20%;
  background: #fff;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-radius: 20px;
  top: 35%;
  font-size: 20px;
  gap: 10px;
}

#loading img {
  animation: rotate 4s infinite linear;
  width: 50px;
}

#loading p {
  margin-bottom: 0;
}

@keyframes rotate {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}/*# sourceMappingURL=style.css.map */