/* public/css/overlay.css -- overlay scroll fix */

#welcome {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(0,0,0,0.6);
}

#welcome .welcome-inner,
#welcome .panel,
#welcome .modal-content {
  max-height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-open {
  overflow: auto !important;
}
