:root {
  --dc-ink: #1c1611;
  --dc-muted: #7b7068;
  --dc-surface: #ffffff;
  --dc-soft: #fff3e8;
  --dc-line: #f0e4d8;
  --dc-orange: #f37e30;
  --dc-orange-light: #ffab52;
  --dc-orange-dark: #de5a17;
  --dc-orange-deep: #bc4a0d;
  --dc-flow: linear-gradient(135deg, var(--dc-orange-light), var(--dc-orange) 48%, var(--dc-orange-dark));
  --dc-shadow: 0 22px 70px rgba(96, 46, 10, .14);
}

* {
  box-sizing: border-box;
}

body.dc-landing-body {
  min-height: 100vh;
  margin: 0;
  color: var(--dc-ink);
  background:
    radial-gradient(circle at 9% 8%, rgba(243, 126, 48, .17), transparent 28rem),
    radial-gradient(circle at 92% 86%, rgba(222, 90, 23, .11), transparent 34rem),
    #fdf9f4;
  font-family: "Poppins", sans-serif;
}

.dc-preview-bar {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 9px 20px;
  color: #fff;
  background: #2a1f16;
  text-align: center;
  font-size: 13px;
}

.dc-preview-note {
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, .25);
  color: var(--dc-orange-light);
}

.dc-landing {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 26px 0 18px;
}

.dc-landing-header {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.dc-landing-logo {
  display: inline-flex;
  align-items: center;
  color: var(--dc-ink);
  font-size: 23px;
  font-weight: 700;
  text-decoration: none;
}

.dc-landing-logo img {
  display: block;
  width: auto !important;
  max-width: min(210px, 55vw) !important;
  height: 46px !important;
  max-height: 46px !important;
  object-fit: contain;
}

.dc-offer {
  display: flex;
  min-width: min(100%, 540px);
  padding: 10px 12px 10px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(243, 126, 48, .26);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 30px rgba(122, 62, 16, .08);
  backdrop-filter: blur(12px);
}

.dc-offer-copy {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
}

.dc-timer {
  min-width: 91px;
  padding: 7px 10px;
  border-radius: 10px;
  color: var(--dc-orange-deep);
  background: var(--dc-soft);
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.dc-offer-link {
  display: inline-flex;
  padding: 10px 15px;
  align-items: center;
  gap: 8px;
  border-radius: 11px;
  color: #fff;
  background: var(--dc-flow);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.dc-progress-wrap {
  margin: 28px 0 24px;
}

.dc-progress-meta {
  display: flex;
  margin-bottom: 9px;
  justify-content: space-between;
  color: var(--dc-muted);
  font-size: 12px;
}

.dc-progress {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0e7de;
}

.dc-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dc-orange-light), var(--dc-orange) 50%, var(--dc-orange-dark));
  box-shadow: 0 0 16px rgba(243, 126, 48, .42);
  transition: width .45s cubic-bezier(.22, 1, .36, 1);
}

.dc-wizard {
  position: relative;
}

.dc-step {
  display: none;
  min-height: 510px;
  padding: 20px 0 16px;
  animation: dc-step-in .45s ease both;
}

.dc-step.is-active {
  display: block;
}

@keyframes dc-step-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dc-step-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.dc-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--dc-orange-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dc-step-heading h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -.04em;
}

.dc-step-heading h2,
.dc-signup-panel > h2 {
  margin: 13px 0 7px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 650;
  letter-spacing: -.025em;
}

.dc-step-heading p,
.dc-signup-panel > p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--dc-muted);
  font-size: 14px;
  line-height: 1.7;
}

.dc-step-heading h1 + p {
  margin-bottom: 22px;
}

/* Flex wrapping keeps a leftover card centered instead of stranded on one side. */
.dc-choice-grid {
  display: flex;
  max-width: 930px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.dc-choice-grid > .dc-choice {
  flex: 0 1 calc((100% - 54px) / 4);
  min-width: 0;
}

.dc-choice-grid.has-three {
  max-width: 760px;
}

.dc-choice-grid.has-three > .dc-choice {
  flex-basis: calc((100% - 36px) / 3);
}

.dc-choice {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--dc-line);
  border-radius: 20px;
  outline: none;
  color: var(--dc-ink);
  background: var(--dc-surface);
  box-shadow: 0 8px 30px rgba(80, 44, 16, .07);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.dc-choice:hover {
  border-color: rgba(243, 126, 48, .6);
  box-shadow: 0 14px 38px rgba(150, 74, 18, .16);
  transform: translateY(-3px);
}

.dc-choice.is-selected {
  border-color: var(--dc-orange);
  box-shadow: 0 0 0 3px rgba(243, 126, 48, .16), 0 16px 42px rgba(158, 76, 16, .18);
}

.dc-multi-hint,
.dc-trans-hint {
  margin: 0 0 14px;
  color: var(--dc-muted, #8a7464);
  font-size: 14px;
}

.dc-step > .dc-choice-grid > .dc-trans-choice {
  display: none;
}

.dc-trans-panel {
  margin-top: 18px;
}

.dc-choice-grid.is-multiple .dc-choice.is-selected {
  border-color: var(--dc-orange);
}

.dc-choice-media {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  background-position: center;
  background-size: cover;
}

.dc-choice-media.has-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .92);
  background:
    linear-gradient(145deg, rgba(255, 171, 82, .92), rgba(222, 90, 23, .94)),
    #ef8a3c;
}

.dc-choice-media.has-placeholder > i {
  font-size: 38px;
  filter: drop-shadow(0 4px 14px rgba(105, 46, 6, .3));
}

.dc-choice-check {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  color: transparent;
  background: rgba(38, 22, 8, .2);
  backdrop-filter: blur(6px);
  transition: .2s ease;
}

.dc-choice.is-selected .dc-choice-check {
  color: var(--dc-orange-deep);
  background: #fff;
}

.dc-choice-label {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 17px 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.dc-wizard-nav {
  display: flex;
  max-width: 930px;
  margin: 8px auto 0;
  gap: 14px;
}

.dc-back,
.dc-next {
  display: inline-flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.dc-back {
  width: 34%;
  color: var(--dc-ink);
  background: #f3eae1;
}

.dc-next {
  flex: 1;
  color: #fff;
  background: var(--dc-flow);
  box-shadow: 0 12px 28px rgba(213, 92, 24, .28);
}

.dc-back:not(:disabled):hover,
.dc-next:not(:disabled):hover {
  transform: translateY(-2px);
}

.dc-back:disabled,
.dc-next:disabled {
  opacity: .42;
  cursor: not-allowed;
  box-shadow: none;
}

.dc-signup-step {
  padding-top: 10px;
}

.dc-signup-shell {
  display: grid;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--dc-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--dc-shadow);
  grid-template-columns: 46% 54%;
}

.dc-signup-shell.without-gallery {
  display: block;
  max-width: 630px;
  margin: 0 auto;
}

.dc-signup-gallery {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #2c1d12;
}

.dc-gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.2s ease, transform 6s ease;
}

.dc-gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.dc-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-gallery-slide figcaption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
}

.dc-gallery-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(22, 12, 5, .8));
}

.dc-gallery-brand {
  position: absolute;
  z-index: 4;
  top: 24px;
  left: 24px;
  display: inline-flex;
  padding: 9px 13px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  color: #fff;
  background: rgba(36, 21, 9, .36);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.dc-gallery-brand i {
  color: #ffab52;
}

.dc-signup-panel {
  padding: 42px clamp(28px, 5vw, 62px);
  align-self: center;
}

.dc-signup-panel > h2,
.dc-signup-panel > p {
  text-align: center;
}

.dc-signup-panel .fr_auth_form,
.dc-signup-panel .card-register {
  max-width: none;
  margin: 20px 0 0;
}

.dc-signup-panel .fr_auth_form > .js_panel:first-child,
.dc-signup-panel .fr_welcome_switch {
  display: none !important;
}

.dc-signup-panel .fr_welcome_title,
.dc-signup-panel .card-header {
  display: none;
}

.dc-signup-panel .card-register {
  border: 0;
  box-shadow: none;
}

.dc-signup-panel .card-register .card-body {
  padding: 0;
}

.dc-signup-panel .fr_welcome_field input,
.dc-signup-panel .fr_welcome_field select,
.dc-signup-panel .form-control,
.dc-signup-panel .form-select {
  border-color: var(--dc-line);
  background-color: #fdfaf6;
}

/* The birthdate selects sit three across and their px-3 utility leaves the
   value running under the chevron, so reserve room for the arrow. */
.dc-signup-panel .form-group .row select.form-select {
  padding-right: 30px !important;
  padding-left: 12px !important;
  background-position: right 10px center;
  font-size: 14px;
  text-overflow: ellipsis;
}

.dc-signup-panel .fr_welcome_field input:focus,
.dc-signup-panel .form-control:focus,
.dc-signup-panel .form-select:focus {
  border-color: var(--dc-orange);
  box-shadow: 0 0 0 3px rgba(243, 126, 48, .14);
}

.dc-signup-panel .btn-primary,
.dc-signup-panel .fr_welcome_btn {
  border-color: var(--dc-orange) !important;
  background: var(--dc-flow) !important;
}

.dc-signup-panel a {
  color: var(--dc-orange-deep);
}

.dc-landing-footer {
  display: flex;
  padding: 22px 0 8px;
  justify-content: center;
  gap: 18px;
  color: #9a8e84;
  font-size: 11px;
}

.dc-landing-footer a {
  color: #7d7267;
  text-decoration: none;
}

@media (max-width: 900px) {
  .dc-landing-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .dc-offer {
    width: 100%;
  }

  .dc-choice-grid,
  .dc-choice-grid.has-three {
    max-width: 680px;
  }

  .dc-choice-grid > .dc-choice,
  .dc-choice-grid.has-three > .dc-choice {
    flex-basis: calc((100% - 18px) / 2);
  }

  .dc-signup-shell {
    grid-template-columns: 40% 60%;
  }
}

@media (max-width: 680px) {
  .dc-preview-note {
    display: block;
    margin: 4px 0 0;
    padding: 0;
    border: 0;
    font-size: 11px;
  }

  .dc-landing {
    width: min(100% - 24px, 560px);
    padding-top: 14px;
  }

  .dc-landing-header {
    min-height: 44px;
    gap: 14px;
  }

  .dc-landing-logo img {
    max-width: min(160px, 55vw) !important;
    height: 38px !important;
    max-height: 38px !important;
  }

  .dc-offer {
    padding: 9px 10px 9px 13px;
    border-radius: 14px;
  }

  .dc-offer-copy {
    display: grid;
    gap: 3px;
  }

  .dc-offer-copy > span {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dc-timer {
    min-width: 0;
    padding: 0;
    background: transparent;
    text-align: left;
  }

  .dc-offer-link {
    padding: 10px 12px;
  }

  .dc-offer-link i {
    display: none;
  }

  .dc-progress-wrap {
    margin: 18px 0 12px;
  }

  .dc-step {
    min-height: 455px;
    padding-top: 12px;
  }

  .dc-step-heading {
    margin-bottom: 19px;
  }

  .dc-step-heading h1 {
    font-size: 29px;
  }

  .dc-step-heading h2 {
    font-size: 22px;
  }

  .dc-step-heading p {
    font-size: 12px;
  }

  .dc-choice-grid,
  .dc-choice-grid.has-three {
    gap: 10px;
  }

  .dc-choice-grid > .dc-choice,
  .dc-choice-grid.has-three > .dc-choice {
    flex-basis: calc((100% - 10px) / 2);
  }

  .dc-choice {
    border-radius: 15px;
  }

  .dc-choice-media {
    aspect-ratio: 1 / 1.06;
  }

  .dc-choice-label {
    min-height: 46px;
    padding: 13px 7px;
    font-size: 12px;
  }

  .dc-wizard-nav {
    position: sticky;
    z-index: 20;
    bottom: 10px;
    gap: 8px;
  }

  .dc-back,
  .dc-next {
    height: 50px;
    border-radius: 14px;
    font-size: 13px;
  }

  .dc-back {
    width: 31%;
  }

  .dc-signup-shell {
    display: block;
    border-radius: 20px;
  }

  .dc-signup-gallery {
    min-height: 310px;
  }

  .dc-signup-panel {
    padding: 30px 20px 34px;
  }

  .dc-signup-panel .form-group .row {
    --bs-gutter-x: .5rem;
  }

  .dc-signup-panel .form-group .row select.form-select {
    padding-right: 26px !important;
    padding-left: 9px !important;
    background-position: right 8px center;
    font-size: 13px;
  }

  .dc-signup-panel > h2 {
    font-size: 25px;
  }

  .dc-landing-footer {
    flex-wrap: wrap;
  }
}

.dc-age-card {
  max-width: 520px;
  margin: 40px auto 0;
  padding: 36px 32px 28px;
  border: 1px solid var(--dc-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--dc-shadow);
  text-align: center;
}

.dc-age-card h1 {
  margin: 8px 0 10px;
  font-size: 32px;
  font-weight: 700;
}

.dc-age-card > p {
  margin: 0 0 24px;
  color: var(--dc-muted);
}

.dc-age-actions {
  display: flex;
  gap: 12px;
}

.dc-age-yes,
.dc-age-no {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
}

.dc-age-yes {
  color: #fff;
  background: linear-gradient(135deg, #5dcf6a, #2fa83d);
}

.dc-age-no {
  color: var(--dc-ink);
  background: #f3eae1;
}

.dc-age-denied {
  margin-top: 16px !important;
  color: #c0392b !important;
  font-weight: 600;
}

.dc-legal {
  margin: 18px 0 0;
  color: #8d8379;
  font-size: 12px;
  line-height: 1.5;
}

.dc-legal a {
  color: inherit;
  text-decoration: underline;
}

.dc-signup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--dc-flow);
  font-size: 13px;
  font-weight: 600;
}

.dc-signup-badge .dc-timer {
  min-width: auto;
  padding: 0;
  background: transparent;
  color: #fff;
}

.dc-social-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dc-social-btn,
.dc-email-toggle,
.dc-signup-submit,
.dc-email-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.dc-social-btn {
  color: var(--dc-ink);
  background: #fff;
  border: 1px solid var(--dc-line);
}

.dc-social-btn:hover {
  color: var(--dc-ink);
  background: var(--dc-soft);
  border-color: var(--dc-orange);
}

.dc-email-toggle,
.dc-signup-submit {
  color: #fff;
  background: var(--dc-flow);
  box-shadow: 0 12px 28px rgba(213, 92, 24, .28);
}

.dc-email-toggle:hover,
.dc-signup-submit:hover {
  color: #fff;
  transform: translateY(-2px);
}

.dc-email-back {
  margin-top: 14px;
  color: var(--dc-ink);
  background: #f3eae1;
}

.dc-or {
  margin: 14px 0 10px;
  color: var(--dc-muted);
  font-size: 12px;
  text-align: center;
}

.dc-field {
  position: relative;
}

.dc-field i {
  position: absolute;
  top: 50%;
  left: 16px;
  color: var(--dc-muted);
  transform: translateY(-50%);
  pointer-events: none;
}

.dc-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 46px 0 46px;
  border: 1px solid var(--dc-line);
  border-radius: 16px;
  background: #fdfaf6;
  font-family: inherit;
  font-size: 15px;
}

.dc-field input:focus {
  outline: none;
  border-color: var(--dc-orange);
  box-shadow: 0 0 0 3px rgba(243, 126, 48, .14);
}

.dc-toggle-password {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 54px;
  border: 0;
  background: transparent;
  color: var(--dc-muted);
  cursor: pointer;
}

.dc-toggle-password i {
  left: 50%;
  pointer-events: none;
}

.dc-email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dc-consent {
  margin: 4px 0 8px;
  text-align: left;
}

.dc-consent .form-check-input {
  margin-top: 0.35em;
}

.dc-consent .form-check-label {
  color: #6f675f;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.dc-consent a {
  color: inherit;
  text-decoration: underline;
}

.dc-legal-inline {
  margin: 8px 0 4px;
  text-align: center;
}

.dc-signup-submit {
  margin-top: 4px;
}

.dc-signin-link {
  margin: 16px 0 0;
  color: var(--dc-muted);
  font-size: 13px;
  text-align: center;
}

.dc-signin-link a {
  color: var(--dc-orange-deep);
  font-weight: 600;
}

@media (max-width: 640px) {
  .dc-age-actions {
    flex-direction: column;
  }

  .dc-age-card {
    padding: 28px 18px 22px;
  }
}

.dc-funnel .dc-wizard-nav {
  justify-content: flex-start;
}

.dc-funnel .dc-back {
  width: auto;
  min-width: 140px;
}

/* Template 4 — direct signup */
.dc-direct .dc-direct-wizard {
  margin-top: 18px;
}

.dc-direct .dc-signup-step {
  display: none;
  min-height: 0;
  padding-top: 8px;
}

.dc-direct .dc-signup-step.is-active,
.dc-direct .dc-age-step.is-active {
  display: block;
}

.dc-seo-whisper {
  margin: 0 0 18px;
  padding: 0 2px;
  color: #9a8e84;
  text-align: center;
}

.dc-seo-whisper .dc-seo-welcome {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #b0a59b;
}

@media (max-width: 680px) {
  .dc-seo-whisper {
    margin-bottom: 14px;
  }
}

/* Icon-only steps: short orange tiles. Image cards must NOT use this height. */
.dc-icon-grid .dc-choice-media.has-placeholder {
  flex: 0 0 148px;
  height: 148px;
  min-height: 148px;
  aspect-ratio: auto;
  background: linear-gradient(180deg, #fff7ef, #ffe8d4);
}

.dc-icon-grid .dc-choice-media.has-placeholder > i {
  font-size: 2rem;
  color: var(--dc-orange-dark);
}

/* Photo choice cards (Template 3 visual steps): tall images.
   Targets image media even if the page still has the old dc-icon-grid class. */
.dc-funnel .dc-choice-media:not(.has-placeholder),
.dc-visual-grid .dc-choice-media {
  flex: 0 0 auto;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 3 / 4;
}

@media (max-width: 760px) {
  .dc-funnel .dc-choice-media:not(.has-placeholder),
  .dc-visual-grid .dc-choice-media {
    aspect-ratio: 3 / 3.85;
  }
}

.dc-scan-overlay,
.dc-reject-overlay {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(28, 22, 17, .48);
}

.dc-scan-overlay.is-open,
.dc-reject-overlay.is-open {
  display: flex;
}

.dc-scan-card,
.dc-reject-card,
.dc-match-card {
  width: min(420px, 100%);
  padding: 32px 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--dc-shadow);
  text-align: center;
}

.dc-scan-card p,
.dc-match-status {
  margin: 18px 0 0;
  color: var(--dc-ink);
  font-size: 17px;
  font-weight: 600;
}

.dc-match-card {
  margin: 40px auto;
}

.dc-match-spinner {
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border: 4px solid #ffe4cc;
  border-top-color: var(--dc-orange);
  border-radius: 50%;
  animation: dc-spin .8s linear infinite;
}

.dc-reject-card i {
  font-size: 2rem;
  color: var(--dc-orange-dark);
}

.dc-reject-card h2 {
  margin: 16px 0 8px;
  font-size: 24px;
}

.dc-reject-card p {
  margin: 0 0 20px;
  color: var(--dc-muted);
}

.dc-reject-back {
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--dc-flow);
  font-weight: 600;
  cursor: pointer;
}

@keyframes dc-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .dc-step,
  .dc-gallery-slide,
  .dc-progress span,
  .dc-choice,
  .dc-back,
  .dc-next,
  .dc-match-spinner {
    animation: none !important;
    transition: none !important;
  }
}
