.creator {
  color: #102e52;
}
.creator__progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin: 0 0 20px;
}
.creator__progress span {
  height: 6px;
  border-radius: 9px;
  background: #dce7f3;
}
.creator__progress .active {
  background: #1377db;
}
.creator__bubble {
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 18px 18px 18px 5px;
  background: #eaf4ff;
}
.creator__bubble strong {
  display: block;
}
.creator__panel {
  display: grid;
  gap: 13px;
}
.creator__panel label {
  display: grid;
  gap: 5px;
  font-weight: 800;
}
.creator__panel input,
.creator__panel select,
.creator__panel textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #bfd0e4;
  border-radius: 12px;
  padding: 10px 12px;
}
.creator__panel textarea {
  min-height: 96px;
  resize: vertical;
}
.creator__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.creator__choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.creator__choice {
  position: relative;
}
.creator__choice input {
  position: absolute;
  opacity: 0;
}
.creator__choice span {
  display: block;
  padding: 12px;
  text-align: center;
  border: 1px solid #bfd0e4;
  border-radius: 12px;
  cursor: pointer;
}
.creator__choice input:checked + span {
  border-color: #1377db;
  background: #e8f4ff;
  color: #075cae;
}
.creator__choice input:focus-visible + span,
.creator :focus-visible {
  outline: 3px solid #1377db;
  outline-offset: 3px;
}
.creator__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.creator__actions button {
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 850;
  cursor: pointer;
}
.creator__back {
  border: 1px solid #bfd0e4;
  background: #fff;
}
.creator__next {
  border: 0;
  background: #f36f5b;
  color: #fff;
}
.creator__next[disabled] {
  opacity: 0.6;
}
.creator__status {
  min-height: 1.5em;
  color: #075cae;
  font-weight: 750;
}
.creator__status.error {
  color: #a2261b;
}
.creator__preview {
  border: 1px solid #dce7f3;
  border-radius: 18px;
  overflow: hidden;
}
.creator__preview header {
  padding: 18px;
  background: linear-gradient(125deg, #052f5f, #1377db);
  color: #fff;
}
.creator__preview header h3 {
  margin: 0.2rem 0;
}
.creator__preview > div {
  padding: 18px;
}
.creator__preview dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
}
.creator__preview dt {
  font-weight: 850;
}
.creator__preview dd {
  margin: 0;
}
.creator__notice {
  padding: 11px;
  border-left: 4px solid #f3b34e;
  background: #fff7e7;
}
.creator__success {
  padding: 30px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
}
.creator__success b {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  background: #dff6e9;
  color: #08733d;
  font-size: 2rem;
}
@media (max-width: 640px) {
  .creator__row,
  .creator__choices {
    grid-template-columns: 1fr;
  }
  .creator__choice span {
    text-align: left;
  }
  .creator__preview dl {
    grid-template-columns: 1fr;
  }
  .creator__preview dd {
    margin-bottom: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .creator * {
    scroll-behavior: auto !important;
  }
}
