@charset "UTF-8";
:has(dialog[open]) {
  overflow: hidden;
}

.wizard {
  cursor: pointer;
}
.wizard + dialog {
  width: 25rem;
  border-radius: 1rem;
  border: none;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
  margin: min(5%, 50px) auto auto;
  min-width: 25rem;
  min-height: 10rem;
  background-color: #f7f9fa;
  max-height: 90vh;
  overflow-y: auto;
}
.wizard + dialog::backdrop {
  overscroll-behavior: contain;
  background: #303233;
  opacity: 0.6;
  backdrop-filter: blur(0.125rem);
}
.wizard + dialog > .close {
  position: sticky;
  top: 2px;
  right: 2px;
  width: 2rem;
  height: 2rem;
  background: #666;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  font-family: Arial, sans-serif;
  line-height: 1;
  text-align: center;
  text-indent: 0;
  vertical-align: middle;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
  float: right;
}
.wizard + dialog > .close::before {
  content: "×";
  display: block;
  position: relative;
}
.wizard + dialog > .close:hover {
  background: #555;
}
.wizard + dialog > .close:active {
  background: #444;
  box-shadow: inset 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
}
.wizard + dialog > form {
  padding: 1rem;
}
.wizard + dialog > form input[type=text], .wizard + dialog > form input[type=email] {
  background: #fff;
  border: none;
  border-radius: 0.25em;
  box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  color: #666;
  font-family: inherit;
  font-size: 1em;
  font-weight: 400;
  height: 2.5em;
  line-height: 1.5;
  margin: 0.75rem 0 0;
  outline: none;
  padding: 0.5em;
  vertical-align: top;
  width: 100%;
}
.wizard + dialog > form input[type=text]:focus, .wizard + dialog > form input[type=email]:focus {
  box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.wizard + dialog > form input[type=submit] {
  cursor: pointer;
}
.wizard + dialog > form input[type=submit][disabled] {
  background-color: gray;
  cursor: not-allowed;
}
.wizard + dialog > form input[type=submit][disabled]:hover {
  text-decoration: none;
}

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