#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: 50%;
}

#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;
}

#ui-container {
  z-index: 1000;
  flex-direction: row;
  gap: 20px;
  display: flex;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.ui-button {
  cursor: pointer;
  background-color: #fff9;
  border: none;
  border-radius: 12px;
  outline: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  display: flex;
  box-shadow: 0 4px 6px #0003;
}

.ui-button img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: transform .1s, fill .1s;
}

#instagram-button img {
  object-fit: contain;
  width: 90%;
  height: 90%;
}

#website-button img, #whatsapp-button img {
  object-fit: contain;
  width: 95%;
  height: 95%;
}

.ui-button:active img {
  transform: scale(.9);
}

#loading-screen {
  color: #000;
  z-index: 9999;
  text-align: center;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  font-size: 24px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}
/*# sourceMappingURL=index.4d663569.css.map */
