.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-dark-gray);
  overflow-y: auto;
}
.modal__header {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-family: "Anglecia Pro", serif;
  position: relative;
  padding-inline: 1.5rem;
}
.modal__close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 0rem;
  right: 0rem;
  cursor: pointer;
}
.modal.is-open {
  display: block;
}
.modal__content {
  background: var(--color-white);
  margin: 5% auto;
  max-width: 630px;
  padding: 1.5rem;
  border-radius: 0.5rem;
  position: relative;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

/*# sourceMappingURL=modal.css.map */
