/* src/mod/camera/style.css */
.slim-camera {
  position: fixed;
  inset: 0;
  width: 100%;
  background-color: black;
  z-index: 5;
}
.slim-camera .header,
.slim-camera .footer,
.slim-camera .body {
  visibility: hidden;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Prompt";
  background-color: transparent;
  color: #fff;
}
.slim-camera .header {
  top: 0;
  bottom: unset;
  height: 70px;
}
.slim-camera .footer {
  top: unset;
  bottom: 0;
  height: 100px;
}
.slim-camera .body {
  overflow-x: hidden;
  overflow-y: auto;
}
.slim-camera .body #video {
  width: 100%;
  max-width: 768px;
  max-height: 100%;
}
.slim-camera .body #image {
  display: none;
}
.slim-camera .header #btn-close {
  position: absolute;
  right: 20px;
  font-size: 26px;
  font-weight: 300;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.slim-camera .footer #btn-take {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 6px solid #fff;
  background-color: transparent;
  color: #fff;
  margin: 0 70px;
}
.slim-camera .footer .icon {
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.slim-camera .loader {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  padding-top: 80px;
  z-index: 1;
}
.slim-camera.cam-in {
  animation: slide-in-left 0.4s forwards;
}
.slim-camera.cam-out {
  animation: slide-out-left 0.4s forwards;
}
/*# sourceMappingURL=style.css.map */