.artbrander-modal,
.artbrander-modal * {
  box-sizing: border-box;
}

.artbrander-modal,
.artbrander-modal__backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.artbrander-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.artbrander-modal__close {
  cursor: pointer;
  color: white;
  background: transparent;
  border: 0;
}
.artbrander-modal__close > svg {
  width: 2rem;
  height: 2rem;
}

/**
 * 1. Make sure the dialog container and all its descendants are not
 *    visible and not focusable when it is hidden.
 */
.artbrander-modal[aria-hidden=true] {
  display: none;
}

.artbrander-modal__backdrop {
  background-color: var(--background-color-modal-backdrop, rgba(43, 46, 56, 0.9));
}

.artbrander-modal__content {
  max-width: 65ch;
  max-height: 100%;
  overflow: auto;
  margin: auto;
  z-index: 2;
  position: relative;
}
/*# sourceMappingURL=modals.css.map */
