#example-scanning-overlay {
  z-index: 2;
  background: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

@media (aspect-ratio >= 1) {
  #example-scanning-overlay .inner {
    width: 50vh;
    height: 50vh;
  }
}

@media (aspect-ratio <= 1) {
  #example-scanning-overlay .inner {
    width: 80vw;
    height: 80vw;
  }
}

#example-scanning-overlay .inner {
  background-color: #0000;
  background-image: linear-gradient(to right, #fff 10px, #0000 10px), linear-gradient(to right, #fff 10px, #0000 10px), linear-gradient(to left, #fff 10px, #0000 10px), linear-gradient(to left, #fff 10px, #0000 10px), linear-gradient(#fff 10px, #0000 10px), linear-gradient(#fff 10px, #0000 10px), linear-gradient(to top, #fff 10px, #0000 10px), linear-gradient(to top, #fff 10px, #0000 10px);
  background-position: 0 0, 0 100%, 100% 0, 100% 100%, 0 0, 100% 0, 0 100%, 100% 100%;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-attachment: scroll, scroll, scroll, scroll, scroll, scroll, scroll, scroll;
  background-origin: padding-box, padding-box, padding-box, padding-box, padding-box, padding-box, padding-box, padding-box;
  background-clip: border-box, border-box, border-box, border-box, border-box, border-box, border-box, border-box;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

#example-scanning-overlay.hidden {
  display: none;
}

#example-scanning-overlay img {
  opacity: .6;
  align-self: center;
  width: 90%;
}

#example-scanning-overlay .inner .scanline {
  background: #fff;
  width: 100%;
  height: 10px;
  animation: 2s linear infinite move;
  position: absolute;
}

@keyframes move {
  0%, 100% {
    top: 0%;
  }

  50% {
    top: calc(100% - 10px);
  }
}

.overlay-text {
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 4px #000000b3;
  width: 100%;
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  position: absolute;
  top: -10px;
}
/*# sourceMappingURL=index.4d663569.css.map */
