.lsm-guided-booking {
  --lsm-gb-gold: #91672c;
  --lsm-gb-gold-soft: #f4ede3;
  --lsm-gb-ink: #1f2933;
  --lsm-gb-muted: #667085;
  --lsm-gb-border: #e5ded3;
  --lsm-gb-bg: #f8f4ee;
  --lsm-gb-card: #fffdf9;
  --lsm-gb-shadow: 0 14px 40px rgba(31, 41, 51, .09);
  background: var(--lsm-gb-bg);
  color: var(--lsm-gb-ink);
  font-family: inherit;
  margin: 0 auto;
  max-width: 1280px;
  padding: 28px;
  box-sizing: border-box;
}

.lsm-guided-booking *,
.lsm-guided-booking *::before,
.lsm-guided-booking *::after {
  box-sizing: border-box;
}

.lsm-gb-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.lsm-gb-main,
.lsm-gb-summary-card,
.lsm-gb-intro,
.lsm-gb-error-panel,
.lsm-gb-success {
  background: var(--lsm-gb-card);
  border: 1px solid var(--lsm-gb-border);
  border-radius: 8px;
  box-shadow: var(--lsm-gb-shadow);
}

.lsm-gb-main {
  padding: 18px;
}

.lsm-gb-intro {
  box-shadow: none;
  margin-bottom: 14px;
  padding: 22px;
}

.lsm-gb-kicker {
  color: var(--lsm-gb-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.lsm-gb-intro h2,
.lsm-gb-modal h3,
.lsm-gb-error-panel h3,
.lsm-gb-success h3 {
  color: var(--lsm-gb-ink);
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.lsm-gb-intro p,
.lsm-gb-helper,
.lsm-gb-step-summary,
.lsm-gb-summary dd,
.lsm-gb-summary-notes,
.lsm-gb-choice span,
.lsm-gb-vehicle p,
.lsm-gb-vehicle li {
  color: var(--lsm-gb-muted);
}

.lsm-gb-mobile-step {
  display: none;
}

.lsm-gb-step {
  background: #ffffff;
  border: 1px solid var(--lsm-gb-border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.lsm-gb-step-head {
  align-items: center;
  background: #ffffff;
  border: 0;
  color: var(--lsm-gb-ink);
  display: grid;
  gap: 10px;
  grid-template-columns: 34px minmax(160px, auto) auto minmax(0, 1fr) auto;
  min-height: 64px;
  padding: 14px 16px;
  text-align: left;
  width: 100%;
}

.lsm-gb-step-num {
  align-items: center;
  background: var(--lsm-gb-gold-soft);
  border: 1px solid rgba(145, 103, 44, .35);
  border-radius: 999px;
  color: var(--lsm-gb-gold);
  display: inline-flex;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.lsm-gb-step-title {
  font-size: 16px;
  font-weight: 700;
}

.lsm-gb-step-status,
.lsm-gb-badge {
  background: #f2f4f7;
  border-radius: 999px;
  color: #344054;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  padding: 7px 10px;
}

.lsm-gb-step-edit {
  color: var(--lsm-gb-gold);
  display: none;
  font-weight: 700;
}

.lsm-gb-step.is-complete .lsm-gb-step-edit {
  display: inline-block;
}

.lsm-gb-step.is-complete .lsm-gb-step-status {
  background: #ecfdf3;
  color: #027a48;
}

.lsm-gb-step.needs-attention .lsm-gb-step-status {
  background: #fff1f3;
  color: #b42318;
}

.lsm-gb-step.is-locked .lsm-gb-step-body,
.lsm-gb-step.is-complete:not(.is-active) .lsm-gb-step-body {
  display: none;
}

.lsm-gb-step-body {
  border-top: 1px solid var(--lsm-gb-border);
  padding: 18px;
}

.lsm-gb-card-grid,
.lsm-gb-grid-2,
.lsm-gb-grid-3,
.lsm-gb-vehicle-grid {
  display: grid;
  gap: 14px;
}

.lsm-gb-card-grid-3,
.lsm-gb-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lsm-gb-grid-2,
.lsm-gb-vehicle-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lsm-gb-choice,
.lsm-gb-vehicle {
  background: #fffefa;
  border: 1px solid var(--lsm-gb-border);
  border-radius: 8px;
  color: var(--lsm-gb-ink);
  min-height: 132px;
  padding: 16px;
  position: relative;
  text-align: left;
}

.lsm-gb-choice {
  cursor: pointer;
}

.lsm-gb-choice strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.lsm-gb-choice.is-selected,
.lsm-gb-vehicle.is-selected {
  background: #fffaf1;
  border-color: var(--lsm-gb-gold);
  box-shadow: 0 12px 28px rgba(145, 103, 44, .13);
}

.lsm-gb-choice-tick {
  align-items: center;
  background: var(--lsm-gb-gold);
  border-radius: 999px;
  color: #ffffff !important;
  display: none;
  font-size: 12px;
  height: 22px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 22px;
}

.is-selected > .lsm-gb-choice-tick {
  display: inline-flex;
}

.lsm-gb-segmented {
  background: #f6f2eb;
  border: 1px solid var(--lsm-gb-border);
  border-radius: 8px;
  display: inline-flex;
  gap: 4px;
  margin-bottom: 14px;
  padding: 4px;
}

.lsm-gb-segmented button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--lsm-gb-muted);
  min-height: 40px;
  padding: 8px 14px;
}

.lsm-gb-segmented button.is-selected {
  background: #ffffff;
  color: var(--lsm-gb-gold);
  box-shadow: 0 3px 10px rgba(31, 41, 51, .08);
}

.lsm-gb-field {
  margin-bottom: 12px;
}

.lsm-gb-field label {
  color: var(--lsm-gb-ink);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.lsm-gb-field input,
.lsm-gb-field select,
.lsm-gb-field textarea {
  background: #ffffff;
  border: 1px solid #d6ccbf;
  border-radius: 7px;
  color: var(--lsm-gb-ink);
  font-size: 16px;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.lsm-gb-field textarea {
  resize: vertical;
}

.lsm-gb-field input:focus,
.lsm-gb-field select:focus,
.lsm-gb-field textarea:focus,
.lsm-gb-choice:focus-visible,
.lsm-gb-btn:focus-visible,
.lsm-gb-link-btn:focus-visible {
  border-color: var(--lsm-gb-gold);
  outline: 2px solid rgba(145, 103, 44, .22);
  outline-offset: 1px;
}

.lsm-gb-field.has-error input,
.lsm-gb-field.has-error select,
.lsm-gb-field.has-error textarea {
  border-color: #d92d20;
}

.lsm-gb-error,
.lsm-gb-step-errors {
  color: #b42318;
  font-size: 13px;
  margin: 6px 0 0;
}

.lsm-gb-step-errors:not(:empty) {
  background: #fff1f3;
  border: 1px solid #fecdca;
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 10px 12px;
}

.lsm-gb-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}

.lsm-gb-chip-row button {
  background: #ffffff;
  border: 1px solid var(--lsm-gb-border);
  border-radius: 999px;
  color: var(--lsm-gb-ink);
  min-height: 40px;
  padding: 8px 12px;
}

.lsm-gb-chip-row button.is-selected,
.lsm-gb-chip-row button:hover {
  border-color: var(--lsm-gb-gold);
  color: var(--lsm-gb-gold);
}

.lsm-gb-helper {
  font-size: 13px;
  line-height: 1.5;
  margin: 8px 0 14px;
}

.lsm-gb-notice,
.lsm-gb-error-panel {
  background: #fff8e8;
  border: 1px solid #efd9ad;
  border-radius: 8px;
  color: #6b4a1f;
  margin: 12px 0;
  padding: 12px 14px;
}

.lsm-gb-error-panel {
  background: #fff1f3;
  border-color: #fecdca;
  color: #912018;
  margin-bottom: 14px;
}

.lsm-gb-group {
  border-bottom: 1px solid var(--lsm-gb-border);
  margin-bottom: 16px;
  padding-bottom: 14px;
}

.lsm-gb-group h3 {
  font-size: 17px;
  margin: 0 0 12px;
}

.lsm-gb-stepper {
  align-items: center;
  background: #fbf8f2;
  border: 1px solid var(--lsm-gb-border);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) 40px 44px 40px;
  min-height: 56px;
  padding: 8px 10px;
}

.lsm-gb-stepper span {
  font-weight: 700;
}

.lsm-gb-stepper button {
  background: #ffffff;
  border: 1px solid var(--lsm-gb-border);
  border-radius: 999px;
  color: var(--lsm-gb-ink);
  font-size: 20px;
  height: 40px;
  width: 40px;
}

.lsm-gb-stepper output {
  font-weight: 700;
  text-align: center;
}

.lsm-gb-check {
  align-items: flex-start;
  color: var(--lsm-gb-ink);
  display: flex;
  gap: 10px;
  line-height: 1.45;
  margin: 12px 0;
}

.lsm-gb-check input {
  flex: 0 0 auto;
  height: 20px;
  margin-top: 1px;
  width: 20px;
}

.lsm-gb-vehicle {
  display: grid;
  gap: 14px;
  grid-template-rows: 150px 1fr;
  padding: 0;
  overflow: hidden;
}

.lsm-gb-vehicle-art {
  background:
    linear-gradient(135deg, rgba(145, 103, 44, .16), rgba(31, 41, 51, .08)),
    linear-gradient(180deg, #fffaf1, #efe6d7);
  border-bottom: 1px solid var(--lsm-gb-border);
  min-height: 150px;
  position: relative;
}

.lsm-gb-vehicle-art::before,
.lsm-gb-vehicle-art::after,
.lsm-gb-vehicle-art span {
  content: "";
  display: block;
  position: absolute;
}

.lsm-gb-vehicle-art::before {
  background: #202733;
  border-radius: 28px 48px 20px 18px;
  bottom: 38px;
  height: 48px;
  left: 13%;
  width: 74%;
}

.lsm-gb-vehicle-art-vclass::before {
  border-radius: 30px 46px 20px 18px;
}

.lsm-gb-vehicle-art-sprinter::before {
  border-radius: 18px 34px 18px 16px;
  height: 58px;
  left: 10%;
  width: 80%;
}

.lsm-gb-vehicle-art::after {
  background: linear-gradient(90deg, #9aa3ad 0 16%, #ffffff 16% 28%, #9aa3ad 28% 44%, #ffffff 44% 56%, #9aa3ad 56% 100%);
  border-radius: 9px;
  bottom: 64px;
  height: 18px;
  left: 23%;
  opacity: .85;
  width: 43%;
}

.lsm-gb-vehicle-art span::before,
.lsm-gb-vehicle-art span::after {
  background: #111827;
  border: 4px solid #c6b99e;
  border-radius: 999px;
  bottom: 29px;
  content: "";
  height: 26px;
  position: absolute;
  width: 26px;
}

.lsm-gb-vehicle-art span::before {
  left: 22%;
}

.lsm-gb-vehicle-art span::after {
  right: 22%;
}

.lsm-gb-vehicle-copy {
  padding: 16px;
}

.lsm-gb-vehicle h3 {
  font-size: 20px;
  margin: 10px 0 6px;
}

.lsm-gb-vehicle ul {
  margin: 12px 0;
  padding-left: 18px;
}

.lsm-gb-price {
  border-top: 1px solid var(--lsm-gb-border);
  margin-top: 12px;
  padding-top: 12px;
}

.lsm-gb-price strong {
  color: var(--lsm-gb-gold);
  display: block;
  font-size: 20px;
}

.lsm-gb-vehicle-actions,
.lsm-gb-actions,
.lsm-gb-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lsm-gb-btn,
.lsm-gb-link-btn {
  align-items: center;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  text-decoration: none;
}

.lsm-gb-btn-primary {
  background: var(--lsm-gb-gold);
  border: 1px solid var(--lsm-gb-gold);
  color: #ffffff;
}

.lsm-gb-btn-secondary {
  background: #ffffff;
  border: 1px solid var(--lsm-gb-border);
  color: var(--lsm-gb-ink);
}

.lsm-gb-link-btn {
  background: transparent;
  border: 0;
  color: var(--lsm-gb-gold);
  padding-left: 0;
  padding-right: 0;
}

.lsm-gb-link {
  color: var(--lsm-gb-gold);
  font-weight: 700;
}

.lsm-gb-nav {
  border-top: 1px solid var(--lsm-gb-border);
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
}

.lsm-gb-summary {
  position: sticky;
  top: 24px;
}

.lsm-gb-summary-card {
  padding: 20px;
}

.lsm-gb-summary dl {
  margin: 0;
}

.lsm-gb-summary div {
  border-bottom: 1px solid var(--lsm-gb-border);
  padding: 12px 0;
}

.lsm-gb-summary dt {
  color: var(--lsm-gb-ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lsm-gb-summary dd {
  font-size: 14px;
  margin: 5px 0 0;
}

.lsm-gb-trust {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 14px 0;
}

.lsm-gb-trust span {
  background: #fbf8f2;
  border: 1px solid var(--lsm-gb-border);
  border-radius: 8px;
  color: var(--lsm-gb-muted);
  font-size: 12px;
  padding: 9px 10px;
}

.lsm-gb-trust-stack {
  grid-template-columns: 1fr;
}

.lsm-gb-review {
  display: grid;
  gap: 10px;
}

.lsm-gb-review-card {
  background: #fbf8f2;
  border: 1px solid var(--lsm-gb-border);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 14px;
}

.lsm-gb-review-card h3 {
  font-size: 16px;
  margin: 0;
}

.lsm-gb-review-card p {
  color: var(--lsm-gb-muted);
  grid-column: 1 / -1;
  margin: 0;
}

.lsm-gb-success {
  background: #ecfdf3;
  border-color: #abefc6;
  box-shadow: none;
  color: #05603a;
  margin-top: 16px;
  padding: 16px;
}

.lsm-gb-modal {
  align-items: center;
  background: rgba(17, 24, 39, .58);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 18px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.lsm-gb-modal-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, .24);
  max-width: 460px;
  padding: 22px;
  position: relative;
  width: 100%;
}

.lsm-gb-modal-close {
  background: #f2f4f7;
  border: 0;
  border-radius: 999px;
  height: 34px;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
}

.lsm-gb-save-result {
  color: #05603a;
  font-weight: 700;
}

[hidden] {
  display: none !important;
}

@media (max-width: 768px) {
  .lsm-guided-booking {
    max-width: none;
    overflow-x: hidden;
    padding: 10px 5px 92px;
    width: 100%;
  }

  .lsm-gb-mobile-step {
    background: var(--lsm-gb-ink);
    border-radius: 8px;
    color: #ffffff;
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 12px 14px;
  }

  .lsm-gb-shell,
  .lsm-gb-card-grid-3,
  .lsm-gb-grid-2,
  .lsm-gb-grid-3,
  .lsm-gb-vehicle-grid,
  .lsm-gb-trust {
    grid-template-columns: 1fr;
  }

  .lsm-gb-main {
    padding: 10px;
  }

  .lsm-gb-intro {
    padding: 16px;
  }

  .lsm-gb-intro h2 {
    font-size: 23px;
  }

  .lsm-gb-step-head {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    min-height: 58px;
  }

  .lsm-gb-step-status {
    justify-self: end;
  }

  .lsm-gb-step-summary,
  .lsm-gb-step-edit {
    grid-column: 2 / -1;
  }

  .lsm-gb-step-body {
    padding: 14px;
  }

  .lsm-gb-choice,
  .lsm-gb-btn,
  .lsm-gb-link-btn,
  .lsm-gb-chip-row button,
  .lsm-gb-segmented button,
  .lsm-gb-field input,
  .lsm-gb-field select,
  .lsm-gb-field textarea {
    min-height: 44px;
  }

  .lsm-gb-segmented {
    display: grid;
    width: 100%;
  }

  .lsm-gb-stepper {
    grid-template-columns: minmax(0, 1fr) 40px 44px 40px;
  }

  .lsm-gb-summary {
    position: static;
  }

  .lsm-gb-summary-card {
    box-shadow: none;
  }

  .lsm-gb-nav {
    background: #fffdf9;
    border: 1px solid var(--lsm-gb-border);
    border-radius: 8px 8px 0 0;
    bottom: 0;
    box-shadow: 0 -12px 30px rgba(31, 41, 51, .1);
    left: 5px;
    padding: 10px;
    position: fixed;
    right: 5px;
    z-index: 20;
  }

  .lsm-gb-nav .lsm-gb-btn {
    flex: 1 1 0;
  }

  .lsm-gb-vehicle {
    grid-template-rows: 135px 1fr;
  }
}

/* Guided booking v2: single continuous order form. */
.lsm-guided-booking {
  background: #f8f4ee;
  max-width: none;
  padding: 28px 16px;
}

.lsm-gb-shell {
  display: block;
  margin: 0 auto;
  max-width: 920px;
}

.lsm-gb-main {
  background: #fffdf9;
  border: 1px solid #e5ded3;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(31, 41, 51, .08);
  padding: 0;
}

.lsm-gb-page-head {
  border-bottom: 1px solid #e5ded3;
  padding: 20px 24px 16px;
}

.lsm-gb-page-head h2 {
  color: #1f2933;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
}

.lsm-gb-steps {
  background: #fffdf9;
}

.lsm-gb-step {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e5ded3;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  overflow: visible;
}

.lsm-gb-step:last-child {
  border-bottom: 0;
}

.lsm-gb-step-head {
  background: transparent;
  cursor: pointer;
  gap: 12px;
  grid-template-columns: 30px minmax(0, 1fr) auto 30px;
  min-height: 58px;
  padding: 14px 24px;
}

.lsm-gb-step-num {
  background: #f4ede3;
  border: 1px solid rgba(145, 103, 44, .3);
  height: 28px;
  width: 28px;
}

.lsm-gb-step-title {
  font-size: 16px;
}

.lsm-gb-step-status {
  display: none;
}

.lsm-gb-step-summary {
  color: #667085;
  font-size: 13px;
  grid-column: 2 / 4;
  margin-top: -4px;
}

.lsm-gb-step-edit {
  align-items: center;
  border: 1px solid #e5ded3;
  border-radius: 999px;
  color: #91672c;
  display: inline-flex;
  font-size: 20px;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  line-height: 1;
  width: 28px;
}

.lsm-gb-step-body {
  background: #fffaf3;
  border-top: 1px solid #eee4d7;
  padding: 18px 24px 22px;
}

.lsm-gb-card-grid-3,
.lsm-gb-grid-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lsm-gb-trip-type {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.lsm-gb-trip-type .lsm-gb-choice {
  align-items: center;
  display: flex;
  min-height: 48px;
  padding: 10px 12px;
}

.lsm-gb-trip-type .lsm-gb-choice strong {
  font-size: 14px;
  margin: 0;
}

.lsm-gb-trip-type .lsm-gb-choice-tick {
  height: 18px;
  right: 8px;
  top: 8px;
  width: 18px;
}

.lsm-gb-choice {
  box-shadow: none;
  min-height: 0;
}

.lsm-gb-chip-row {
  gap: 6px;
  margin: 8px 0 14px;
}

.lsm-gb-chip-row button {
  font-size: 12px;
  min-height: 34px;
  padding: 6px 10px;
}

.lsm-gb-helper {
  font-size: 12px;
  margin: 6px 0 12px;
}

.lsm-gb-field {
  margin-bottom: 10px;
}

.lsm-gb-field label {
  font-size: 12px;
}

.lsm-gb-field input,
.lsm-gb-field select,
.lsm-gb-field textarea {
  min-height: 44px;
}

.lsm-gb-nav {
  border-top: 1px solid #e5ded3;
  justify-content: flex-end;
  margin-top: 16px;
  padding-top: 16px;
}

.lsm-gb-nav .lsm-gb-btn-secondary[hidden] + .lsm-gb-btn-primary,
.lsm-gb-nav .lsm-gb-btn-primary {
  min-width: 150px;
}

.lsm-gb-summary,
.lsm-gb-summary-card,
.lsm-gb-trust {
  display: none;
}

.lsm-gb-vehicle {
  box-shadow: none;
}

.lsm-gb-error-panel,
.lsm-gb-success {
  box-shadow: none;
}

@media (min-width: 769px) {
  .lsm-gb-grid-2,
  .lsm-gb-vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .lsm-guided-booking {
    padding: 8px 5px 24px;
  }

  .lsm-gb-shell {
    max-width: none;
  }

  .lsm-gb-page-head {
    padding: 16px 14px 12px;
  }

  .lsm-gb-page-head h2 {
    font-size: 21px;
  }

  .lsm-gb-step-head {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    padding: 13px 14px;
  }

  .lsm-gb-step-edit {
    grid-column: 3;
    grid-row: 1;
  }

  .lsm-gb-step-summary {
    grid-column: 2 / -1;
  }

  .lsm-gb-step-body {
    padding: 14px;
  }

  .lsm-gb-trip-type,
  .lsm-gb-card-grid-3,
  .lsm-gb-grid-2,
  .lsm-gb-grid-3,
  .lsm-gb-vehicle-grid {
    grid-template-columns: 1fr;
  }

  .lsm-gb-trip-type {
    gap: 6px;
  }

  .lsm-gb-nav {
    background: transparent;
    border: 0;
    border-top: 1px solid #e5ded3;
    border-radius: 0;
    bottom: auto;
    box-shadow: none;
    left: auto;
    margin-top: 14px;
    padding: 14px 0 0;
    position: static;
    right: auto;
  }

  .lsm-gb-nav .lsm-gb-btn {
    flex: 1 1 0;
  }
}
