.DialogOverlay {
  background-color: var(--color-black-80);
  position: fixed;
  inset: 0;
  z-index: 11;
}
.DialogContent {
  background-color: var(--gray-300);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 816px;
  max-height: 666px;
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 12;
}
.DialogContent:focus {
  outline: none;
}
.IconButton {
  all: unset;
  font-family: inherit;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-11);
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--gray-3);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .DialogContent {
    background-color: var(--gray-300);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 816px;
    max-height: 666px;
    padding: 3.75rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
