/* Ported from production: styles/mui/overrides/components/Dialog.ts — resolved */
.MuiDialog-root {
  padding: 16px;
}

@media (max-width: 899.95px) {
  .MuiDialog-root {
    padding: 0;
  }
}

.MuiDialog-paper {
  width: 100%;
  max-width: 941px;
  max-height: 537px;
  margin: auto;
  background: var(--mui-palette-background-default);
}

@media (max-width: 899.95px) {
  .MuiDialog-paper {
    min-width: 100vw;
    margin: 0;
    margin-top: 35px;
    max-height: calc(80vh - 35px);
    border-radius: 0;
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
  }
}

.MuiDialogContent-root {
  padding: 0;
}
