:root {
  color-scheme: light !important;
  --blue: #084d98;
  --blue2: #0a5bb9;
  --line: #d5e0ec;
  --ink: #18304a;
  --muted: #65798e;
  --soft: #f7fbff;
  --warn: #c62828;
  --yellow: #fee500;
}
* {
  box-sizing: border-box;
  color-scheme: light !important;
}
html,
body {
  margin: 0;
  background: #fff !important;
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Noto Sans KR", Arial, sans-serif;
}
.app {
  max-width: 620px;
  margin: auto;
  padding: 7px;
  background: var(--soft) !important;
  min-height: 100vh;
}
.brand {
  font-size: 12px;
  font-weight: 950;
  color: var(--blue);
  margin: 6px 5px 1px;
}
h1 {
  font-size: 22px;
  line-height: 1.2;
  margin: 2px 5px 10px;
  color: #0a376c;
  font-weight: 950;
  letter-spacing: -0.7px;
}
section {
  background: #fff !important;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px;
  margin-bottom: 7px;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.sel {
  position: relative;
  min-height: 44px;
  border: 1px solid #cad6e2;
  border-radius: 10px;
  background: #fff !important;
  color: #41566e;
  font-size: 12px;
  font-weight: 850;
  padding: 7px;
}
.sel small {
  display: block;
  font-size: 9px;
  font-weight: 800;
  opacity: 0.9;
  margin-top: 2px;
}
.sel.on {
  background: var(--blue) !important;
  color: #fff !important;
}
.sel.on:after {
  content: "✓";
  position: absolute;
  right: 9px;
  font-size: 15px;
}
.picked {
  display: none;
  margin-top: 6px;
  padding: 5px 2px;
  font-size: 10px;
  color: #1c3c5e;
}
.picked.show {
  display: block;
}
.detail {
  font-weight: 850;
  color: #174d82;
  margin: 7px 1px 4px;
  font-size: 10px;
}
.warn {
  display: block;
  font-size: 10px;
  color: var(--warn);
  margin: 4px 1px;
  font-weight: 900;
}
.micro,
.guide {
  font-size: 9.5px;
  line-height: 1.45;
  margin: 4px 1px;
  color: var(--muted);
}
.date-emphasis {
  font-size: 10.5px !important;
  color: var(--warn) !important;
  font-weight: 950 !important;
  margin: 4px 1px 6px !important;
}
.row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 6px;
  margin-top: 6px;
}
input,
select {
  width: 100%;
  height: 43px;
  border: 1px solid #cad6e2;
  border-radius: 10px;
  background: #fff !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
  font-size: 13px;
  padding: 0 10px;
}
button {
  font-family: inherit;
}
.search {
  border: 0;
  border-radius: 10px;
  background: var(--blue) !important;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.search.done:after {
  content: " ✓";
}
#postcode {
  display: none;
  height: 245px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 6px;
}
#postcode.show {
  display: block;
}
#picked {
  display: none;
  margin-top: 6px;
  padding: 7px 8px;
  background: #eef6ff;
  border: 1px solid #a9c9e9;
  border-radius: 8px;
  font-size: 9.5px;
  color: #174d82;
}
#picked.show {
  display: block;
}
.privacy-note {
  margin-top: 7px;
  padding: 7px 8px;
  border: 1px solid #c9dced;
  border-radius: 9px;
  background: #f2f8ff !important;
  color: #526a82;
  font-size: 8.7px;
  line-height: 1.45;
}
.privacy-note b {
  display: block;
  color: #174d82;
  font-size: 9.3px;
  margin-bottom: 2px;
}
.privacy-note span {
  display: block;
}
.dt {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr 0.55fr;
  gap: 6px;
}
.flight {
  display: none;
  margin-top: 7px;
}
.flight.show {
  display: block;
}
.counts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.count {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 5px 6px;
  font-size: 10px;
}
.count strong {
  font-size: 18px;
  color: #174d80;
  margin-right: auto;
}
.count button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: #eaf3ff !important;
  color: var(--blue) !important;
  font-size: 20px;
  font-weight: 950;
}
.cars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-top: 7px;
}
.car {
  position: relative;
  min-height: 82px;
  border: 1px solid #cfd9e4;
  border-radius: 9px;
  background: #fff !important;
  color: #354b63;
  font-size: 8px;
  font-weight: 850;
  padding: 13px 2px 4px;
}
.car small {
  display: block;
  font-size: 6.8px;
  color: #8190a0;
  margin-top: 2px;
}
.car .adv {
  display: block;
  font-size: 6.7px;
  line-height: 1.2;
  color: #55718d;
  margin-top: 3px;
  font-weight: 850;
}
.car.recommended {
  border: 1px solid #cfd9e4;
  background: #fff !important;
  color: #354b63;
  box-shadow: none;
}
.car.recommended:after {
  content: "추천차량";
  position: absolute;
  right: 3px;
  top: 3px;
  background: var(--blue2);
  color: #fff;
  border-radius: 999px;
  padding: 2px 5px;
  font-size: 7.2px;
  font-weight: 950;
  letter-spacing: -0.2px;
}
.car.on {
  border: 2px solid var(--blue2);
  background: #edf5ff !important;
  color: var(--blue);
  box-shadow: 0 0 0 1px rgba(10, 91, 185, 0.08);
}
.car.on:before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue2);
  color: #fff;
  font-size: 9px;
  line-height: 14px;
  text-align: center;
  font-weight: 950;
}
.car.on .adv {
  color: #0f5a9f;
}
.car:disabled {
  opacity: 0.38;
  background: #f2f4f7 !important;
}
.vehicle-status {
  font-size: 9px;
  line-height: 1.5;
  margin: 6px 1px 0;
  color: #64788f;
}
.vehicle-status .rec-label {
  font-size: 11px;
  font-weight: 950;
  color: var(--blue);
  letter-spacing: -0.2px;
}
.vehicle-status .chosen-label {
  font-size: 11px;
  font-weight: 950;
  color: #174d82;
  letter-spacing: -0.2px;
}
.vehicle-help {
  font-size: 8.5px;
  line-height: 1.45;
  color: #65798e;
  margin: 3px 1px 0;
}
.status {
  display: none;
  font-size: 10px;
  line-height: 1.45;
  padding: 7px 8px;
  border-radius: 9px;
  margin-bottom: 6px;
  background: #fff0ee;
  color: #9d3026;
}
.status.show {
  display: block;
}
.go {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 11px;
  background: var(--blue) !important;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
}
.go:disabled {
  background: #aebdcc !important;
}
.result {
  display: none;
  margin-top: 8px;
  scroll-margin-top: 6px;
}
.result.show {
  display: block;
}
.route {
  font-size: 9px;
  line-height: 1.4;
  color: #65758a;
  margin-bottom: 6px;
}
.farebox {
  padding: 11px;
  border: 1px solid #bdd0e4;
  border-radius: 11px;
  background: #f8fbff !important;
}
.faretitle {
  font-size: 15px;
  font-weight: 950;
  color: #274767;
}
.price {
  font-size: 27px;
  font-weight: 950;
  color: var(--blue);
  margin: 3px 0;
}
.note,
.why {
  font-size: 9px;
  color: #6e7e90;
  line-height: 1.5;
}
.why {
  margin-top: 7px;
  padding: 7px;
  background: #f4f7fb;
  border-radius: 8px;
}
.kakao-guide {
  margin-top: 8px;
  padding: 7px 8px;
  border: 1px solid #efb1ae;
  border-radius: 9px;
  background: #fff6f5 !important;
  color: #c62828;
  font-size: 9px;
  line-height: 1.5;
  font-weight: 850;
}
.kakao {
  width: 100%;
  height: 49px;
  border: 0;
  border-radius: 10px;
  background: var(--yellow) !important;
  color: #191919 !important;
  font-size: 15px;
  font-weight: 950;
  margin-top: 7px;
}
.copy {
  display: none;
  font-size: 9px;
  background: #fff9d7;
  padding: 6px;
  border-radius: 7px;
  margin-top: 5px;
}
.copy.show {
  display: block;
}
@media (max-width: 400px) {
  h1 {
    font-size: 20px;
  }
  .sel {
    font-size: 11px;
  }
  .row {
    grid-template-columns: 1fr 100px;
  }
  .cars {
    gap: 2px;
  }
  .car {
    font-size: 7.5px;
    min-height: 80px;
    padding-top: 13px;
  }
  .car .adv {
    font-size: 6.4px;
  }
  .car.recommended:after {
    font-size: 6.9px;
    padding: 2px 4px;
  }
  .car.on:before {
    width: 13px;
    height: 13px;
    line-height: 13px;
    font-size: 8px;
  }
}
@media (prefers-color-scheme: dark) {
  body,
  .app,
  section,
  .sel,
  input,
  select,
  .car,
  .farebox {
    background: #fff !important;
    color: var(--ink) !important;
  }
  .app {
    background: var(--soft) !important;
  }
  .sel.on,
  .search,
  .go {
    background: var(--blue) !important;
    color: #fff !important;
  }
}
