.at-home-draw-card {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr);
  margin-bottom: 12px;
  padding: 18px 16px;
}

.at-home-draw-card__icon {
  align-items: center;
  color: var(--color-header-accent);
  display: inline-flex;
  justify-content: center;
}

.at-home-draw-card__icon .icon {
  height: 28px;
  width: 28px;
}

.at-home-draw-card__title {
  color: var(--color-copy);
  font-family: "bold", sans-serif;
  font-size: 18px;
  line-height: 24px;
}

.at-home-draw-card__copy {
  font-size: 14px;
  line-height: 20px;
  margin-top: 2px;
}

.at-home-draw-card__action {
  grid-column: 1 / -1;
  justify-self: stretch;
}

.mobile-draw-dialog {
  background: var(--color-white);
  border: 0;
  color: var(--color-copy);
  height: 100dvh;
  margin: 0;
  max-height: none;
  max-width: none;
  overflow-y: auto;
  padding: 0;
  width: 100%;
}

.mobile-draw-dialog::backdrop {
  background: rgb(8 65 83 / 45%);
}

.mobile-draw-dialog__shell {
  min-height: 100%;
}

.mobile-draw-dialog__header {
  align-items: center;
  background: var(--header-gradient);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  height: var(--header-height);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.mobile-draw-dialog__back {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  padding: 0;
  transition: background-color 150ms ease;
  width: 48px;
}

.mobile-draw-dialog__back:hover {
  background: rgb(255 255 255 / 10%);
}

.mobile-draw-dialog__back:focus-visible {
  outline: 3px solid var(--color-white);
}

.mobile-draw-dialog__logo {
  display: block;
  grid-column: 2;
  justify-self: center;
  max-width: 100%;
  width: min(247px, calc(100vw - 136px));
}

.mobile-draw-dialog__body {
  margin: 0 auto;
  max-width: 680px;
  padding: 40px 20px 64px;
}

.mobile-draw-form__intro {
  margin-bottom: 28px;
}

.mobile-draw-form__title,
.mobile-draw-success__title {
  color: var(--color-copy);
  font-family: "bold", sans-serif;
  font-size: clamp(24px, 5vw, 30px);
  line-height: 1.25;
}

.mobile-draw-form__description {
  font-size: 17px;
  line-height: 1.55;
  margin-top: 14px;
}

.mobile-draw-form__fields {
  display: grid;
  gap: 14px;
}

.mobile-draw-form__field {
  min-height: 56px;
}

.mobile-draw-form__address {
  margin-top: 24px;
}

.mobile-draw-form__address-label {
  color: var(--color-copy);
  display: block;
  font-family: "bold", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.mobile-draw-form__help,
.mobile-draw-form__status,
.mobile-draw-form__error {
  font-size: 14px;
  line-height: 20px;
}

.mobile-draw-form__help {
  margin: 6px 0 10px;
}

.mobile-draw-form__autocomplete {
  min-height: 56px;
}

.mobile-draw-form__autocomplete gmp-place-autocomplete {
  color-scheme: light;
  width: 100%;
}

.mobile-draw-form__status {
  color: var(--color-green-link);
  margin-top: 8px;
}

.mobile-draw-form__error {
  color: var(--color-coral-dark);
  font-weight: 700;
  margin-top: 8px;
}

#mobile-draw-address-line-2 {
  margin-top: 14px;
}

.mobile-draw-form__consent {
  align-items: flex-start;
  cursor: pointer;
  display: grid;
  font-size: 15px;
  font-weight: 700;
  gap: 12px;
  grid-template-columns: 24px minmax(0, 1fr);
  line-height: 1.45;
  margin-top: 24px;
}

.mobile-draw-form__consent input {
  accent-color: var(--color-coral);
  height: 22px;
  margin-top: 1px;
  width: 22px;
}

.mobile-draw-form__submit-status {
  margin-top: 20px;
  text-align: center;
}

.mobile-draw-form__submit {
  margin-top: 24px;
  min-height: 56px;
  text-transform: uppercase;
  width: 100%;
}

.mobile-draw-form__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.mobile-draw-success {
  font-size: 17px;
  line-height: 1.55;
  padding: 72px 0;
  text-align: center;
}

.mobile-draw-success__icon {
  align-items: center;
  background: var(--color-header-accent);
  border-radius: 50%;
  color: var(--color-header);
  display: inline-flex;
  font-family: "bold", sans-serif;
  font-size: 28px;
  height: 64px;
  justify-content: center;
  margin-bottom: 20px;
  width: 64px;
}

.mobile-draw-success p {
  margin-top: 14px;
}

@media (min-width: 420px) {
  .at-home-draw-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .at-home-draw-card__action {
    grid-column: auto;
    justify-self: end;
  }
}

@media (min-width: 640px) {
  .mobile-draw-dialog__body {
    padding: 48px 32px 80px;
  }

  .mobile-draw-form__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
