﻿@charset "utf-8";

*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
}

.dialog {
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
  border: none;
  padding: 0;
  background: none;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
}
.dialog:not([open]) {
  display: none !important;
}
.dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
.dialog_content {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 90%;
  height: 90dvh;
  padding: 20px;
  background: white;
}
.dialog_scroll {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}
.dialog_head,
.dialog_foot {
  text-align: center;
}