.camera-stream {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  z-index: 1999;
  display: none;
}
.camera-stream video,
.camera-stream canvas {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.camera-stream .frame {
  width: 240px;
  height: 240px;
  background: url("../images/frame_camera.png") no-repeat center/contain;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1999;
  display: none;
}

#capture-btn {
  position: fixed;
  width: 96px;
  height: 96px;
  background: url("../images/capture_btn.png") no-repeat center/contain;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  cursor: pointer;
  z-index: 1999;
  text-indent: -9999px;
}

#submit-btn {
  width: 278px;
  height: 62px;
  background: #001c91;
  border-radius: 100px;
  line-height: 62px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-family: "Noto Sans HK", sans-serif;
  font-size: 21px;
  border: none;
  position: fixed;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1999;
}

#retake-btn {
  position: fixed;
  width: 278px;
  height: 62px;
  color: #001c91;
  text-transform: uppercase;
  font-family: "Noto Sans HK", sans-serif;
  font-size: 21px;
  line-height: 62px;
  bottom: 60px;
  border-radius: 100px;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  cursor: pointer;
  z-index: 1999;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.15);
}

#close-btn {
  width: 24px;
  height: 24px;
  background: url("../images/ic_close_blue.png") no-repeat center/contain;
  position: fixed;
  top: 20px;
  right: 20px;
  border: none;
  filter: invert(100) grayscale(100) brightness(100);
  text-indent: -9999px;
  cursor: pointer;
  z-index: 1999;
}

#BACk-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 72px;
  height: 36px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-family: "Inter", "Noto Sans HK", sans-serif;
  cursor: pointer;
  display: none; /* toggled via JS */
  z-index: 1999;
  background-color: brown;
}
#BACk-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}/*# sourceMappingURL=camera.css.map */