.rental-source-note {
  padding: 12px 13px;
  border: 1px solid #bddaf4;
  border-radius: 16px;
  background: #edf7ff;
}

.rental-source-note strong,
.rental-source-note p {
  display: block;
}

.rental-source-note strong {
  color: var(--blue);
  font-size: 13px;
}

.rental-source-note p {
  margin: 4px 0 0;
  color: #58728c;
  font-size: 11px;
  line-height: 1.55;
}

.rental-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 2px 0 0;
  list-style: none;
}

.rental-progress li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #91a3b6;
  font-size: 10px;
}

.rental-progress li:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 13px;
  left: calc(50% + 15px);
  width: calc(100% - 30px);
  height: 2px;
  background: #d8e5f0;
  content: "";
}

.rental-progress li.done:not(:last-child)::after {
  background: var(--mint);
}

.rental-progress li span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid #d8e5f0;
  border-radius: 999px;
  background: var(--ice);
  font-size: 11px;
  font-weight: 900;
}

.rental-progress li.active {
  color: var(--blue);
}

.rental-progress li.active span {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 5px 12px rgba(36, 116, 216, 0.2);
}

.rental-progress li.done {
  color: #28866a;
}

.rental-progress li.done span {
  border-color: var(--mint);
  background: var(--mint);
  color: #fff;
}

.rental-progress b {
  font-weight: 800;
}

.rental-form,
.rental-choice-list {
  display: grid;
  gap: 10px;
}

.rental-choice {
  position: relative;
  display: block;
  cursor: pointer;
}

.rental-choice > input,
.rental-segment input,
.rental-addon > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.rental-choice-body {
  display: grid;
  gap: 4px;
  min-height: 69px;
  padding: 12px;
  border: 1.5px solid #dce9f5;
  border-radius: 15px;
  background: #fbfdff;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.rental-choice:hover .rental-choice-body {
  border-color: #b7d5f0;
}

.rental-choice > input:focus-visible + .rental-choice-body,
.rental-segment input:focus-visible + span,
.rental-addon > input:focus-visible + span {
  outline: 3px solid rgba(36, 116, 216, 0.2);
  outline-offset: 2px;
}

.rental-choice > input:checked + .rental-choice-body {
  border-color: var(--blue);
  background: var(--blue-soft);
  box-shadow: 0 5px 14px rgba(36, 116, 216, 0.1);
}

.rental-choice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.rental-choice-head strong {
  font-size: 13px;
}

.rental-choice-head em {
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.rental-choice-body small {
  color: #6d8296;
  font-size: 11px;
  line-height: 1.45;
}

.rental-segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.rental-segment label {
  position: relative;
  cursor: pointer;
}

.rental-segment span {
  display: grid;
  min-height: 50px;
  place-items: center;
  border: 1.5px solid #dce9f5;
  border-radius: 14px;
  background: #fbfdff;
  font-size: 14px;
  font-weight: 900;
}

.rental-segment input:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.rental-addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.rental-addon {
  position: relative;
  cursor: pointer;
}

.rental-addon > span {
.rental-addon:only-child {
  grid-column: 1 / -1;
}

  display: grid;
  gap: 3px;
  min-height: 57px;
  padding: 10px;
  border: 1.5px solid #dce9f5;
  border-radius: 14px;
  background: #fbfdff;
}

.rental-addon input:checked + span {
  border-color: var(--pink);
  background: var(--pink-soft);
}

.rental-addon b {
  font-size: 12px;
}

.rental-addon small {
  color: #71879e;
  font-size: 10px;
}

.rental-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 11px 9px;
}

.rental-field {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.rental-field-wide {
  grid-column: 1 / -1;
}

.rental-field > span {
  color: #526c85;
  font-size: 11px;
  font-weight: 800;
}

.rental-field input,
.rental-field select {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 9px 10px;
  border: 1.5px solid #d4e3f1;
  border-radius: 12px;
  outline: 0;
  background: #fbfdff;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
}

.rental-field input:focus,
.rental-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 116, 216, 0.12);
}

.rental-field-hotel {
  margin-top: 11px;
}

.rental-fit-note {
  display: grid;
  gap: 3px;
  margin-top: 13px;
  padding: 11px;
  border-radius: 13px;
  background: var(--mint-soft);
}

.rental-fit-note strong {
  color: #277c63;
  font-size: 12px;
}

.rental-fit-note span {
  color: #356f61;
  font-size: 11px;
}

.rental-fit-note small {
  color: #6a867f;
  font-size: 10px;
}

.rental-button-row {
  display: flex;
  gap: 9px;
}

.rental-button-row .button {
  min-width: 0;
  flex: 1;
}

.info-emoji {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
}

.rental-quote-list {
  display: grid;
  gap: 8px;
}

.rental-quote-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  background: #f8fbfe;
}

.rental-quote-row span,
.rental-quote-row strong {
  font-size: 12px;
}

.rental-fine-print {
  margin: 10px 0 0;
  color: #778b9f;
  font-size: 10px;
  line-height: 1.55;
}

.rental-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border: 1px solid #f0d38f;
  border-radius: 15px;
  background: #fff8e7;
  cursor: pointer;
}

.rental-consent input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--pink);
}

.rental-consent span {
  display: grid;
  gap: 3px;
}

.rental-consent strong {
  font-size: 12px;
}

.rental-consent small {
  color: #7d6b47;
  font-size: 10px;
  line-height: 1.45;
}

.rental-reference {
  margin: 5px 0 0;
  font-size: 17px;
  letter-spacing: 0.03em;
}

.rental-timeline {
  display: grid;
  gap: 0;
}

.rental-timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  min-height: 58px;
}

.rental-timeline-row:not(:last-child)::after {
  position: absolute;
  top: 28px;
  bottom: 0;
  left: 14px;
  width: 2px;
  background: #dce7f1;
  content: "";
}

.rental-timeline-row > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 2px solid #dce7f1;
  border-radius: 999px;
  background: #fff;
  color: #90a2b4;
  font-size: 11px;
  font-weight: 900;
}

.rental-timeline-row.done > span {
  border-color: var(--mint);
  background: var(--mint);
  color: #fff;
}

.rental-timeline-row.current > span {
  border-color: var(--yellow);
  color: #b57400;
}

.rental-timeline-row div {
  display: grid;
  align-content: start;
  gap: 3px;
  padding-top: 4px;
}

.rental-timeline-row strong {
  font-size: 12px;
}

.rental-timeline-row small {
  color: #75899c;
  font-size: 10px;
}

.rental-quote-card {
  border-color: #a9dfcd;
  background: linear-gradient(150deg, #fff, #f1fbf7);
}

.rental-success {
  display: grid;
  justify-items: center;
  padding: 18px 12px 4px;
  text-align: center;
}

.rental-success-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(67, 184, 146, 0.26);
}

.rental-success p {
  margin: 11px 0 3px;
  color: #278268;
  font-size: 11px;
  font-weight: 900;
}

.rental-success h2 {
  margin: 0;
  font-size: 22px;
}

.rental-success small {
  margin-top: 5px;
  color: #74889b;
  font-size: 10px;
}

.rental-voucher {
  overflow: hidden;
  border-color: #b8ddf5;
  background:
    radial-gradient(circle at 100% 0, rgba(36, 116, 216, 0.1) 0 90px, transparent 91px),
    #fff;
}

.demo-qr {
  position: relative;
  width: 174px;
  height: 174px;
  margin: 17px auto;
  padding: 12px;
  border: 1px solid #d2e0eb;
  border-radius: 15px;
  background: #fff;
}

.demo-qr-grid {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(13, 1fr);
  grid-template-rows: repeat(13, 1fr);
  gap: 1px;
}

.demo-qr-grid i {
  background: transparent;
}

.demo-qr-grid i.on {
  border-radius: 1px;
  background: #17334f;
}

.demo-qr-label {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 6px 10px;
  border: 3px solid #fff;
  border-radius: 8px;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  transform: translate(-50%, -50%) rotate(-8deg);
}

@media (max-width: 350px) {
  .rental-choice-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .rental-form-grid {
    grid-template-columns: 1fr;
  }

  .rental-field-wide {
    grid-column: auto;
  }

  .rental-button-row {
    flex-direction: column-reverse;
  }
}
