body {
  overflow: hidden;
  margin: 0;
}
.example-container {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}
 
#example-scanning-overlay {
  display: -webkit-box; /* Use the -webkit-box display property for Safari */
  display: flex;

  align-items: center;
  justify-content: center;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: transparent;
  z-index: 2;

  height: 100%;
}

#example-scanning-overlay .inner {
  position: absolute;

  width: 100%;
  height: 100vh;
  max-height: 100vh;

  display: -webkit-box; /* Use the -webkit-box display property for Safari */
  display: flex;

  -webkit-box-orient: vertical; /* Set the flex direction for Safari */
  flex-direction: column;

  align-items: stretch;
  justify-content: center;
}

#example-scanning-overlay .inner .top{
  background: linear-gradient(0deg, rgba(99,78,66,0) 0%, rgba(99,78,66,1) 100%);
  flex: 1;
  height: 30vh;

  display: -webkit-box; /* Use the -webkit-box display property for Safari */
  display: flex;
  justify-content: center;
  align-items: end;

  padding: 2rem;
}

#example-scanning-overlay .inner .logo{
  flex: 1;
  height: 60vh;
  
  display: -webkit-box; /* Use the -webkit-box display property for Safari */
  display: flex;
  justify-content: center;
  align-items: end;
}

#example-scanning-overlay .inner .bottom{
  background: linear-gradient(180deg, rgba(99,78,66,0) 0%, rgba(99,78,66,1) 100%);
  flex: 1;
  height:10vh;

  display: -webkit-box; /* Use the -webkit-box display property for Safari */
  display: flex;
  justify-content: center;
  align-items: end;

  padding: 2rem;
}


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

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

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

@keyframes move {
  0%, 100% { top: 0% }
  50% { top: calc(100% - 10px) }
}