html.no-native-dialog dialog:not([open]) {
  display: none !important;
}

html.no-native-dialog dialog[open] {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: max-content;
  margin: auto;
}

html.no-native-dialog body.dialog-fallback-open::before {
  content: "";
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(20, 10, 14, .68);
}

html.no-native-dialog body.dialog-fallback-open {
  overflow: hidden;
}
