/* Guide and privacy page as a popup with an X in the top right corner. */
.info-dialog {
  width: min(880px, 96vw);
  height: min(90dvh, 900px);
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg, 18px);
  background: #020b1c;
  color: inherit;
  overflow: hidden;
}

.info-dialog[open] {
  display: block;
}

.info-dialog::backdrop {
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(3px);
}

.info-dialog-card {
  position: relative;
  width: 100%;
  height: 100%;
}

.info-dialog-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #020b1c;
}

@media (max-width: 600px) {
  .info-dialog {
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
  }
}
