:root {
  --navy: #14294b;
  --navy-deep: #0d1f3c;
  --panel: #4b5d7b;
  --panel-dark: #3d4e69;
  --ice: #cfe7ee;
  --white: #ffffff;
  --orange: #ff8200;
  --line: rgba(207, 231, 238, 0.18);
  --muted: rgba(207, 231, 238, 0.72);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #05070c;
  color: var(--white);
  overflow-x: hidden;
}

body.auth-locked .app-shell {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-control {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1000;
}

.language-control select {
  min-width: 132px;
  border: 1px solid rgba(207, 231, 238, 0.45);
  border-radius: 999px;
  background: rgba(20, 41, 75, 0.94);
  color: var(--white);
  padding: 9px 34px 9px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

button,
input,
textarea {
  font: inherit;
  min-width: 0;
}

.phone {
  width: min(100vw, 480px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.progress-track {
  height: 6px;
  background: #bce2ec;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.progress-fill {
  width: 8%;
  height: 100%;
  background: var(--orange);
  border-radius: 0 8px 8px 0;
  transition: width 180ms ease;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 40px 0;
}

.menu-button,
.notes-button {
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0;
}

.menu-icon {
  display: grid;
  gap: 8px;
  width: 28px;
}

.menu-icon span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
}

.notes-button {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.notes-glyph {
  position: relative;
  width: 28px;
  height: 28px;
  border: 4px solid var(--orange);
  border-radius: 4px;
}

.notes-glyph::before,
.notes-glyph::after {
  content: "";
  position: absolute;
  background: var(--orange);
}

.notes-glyph::before {
  left: 6px;
  right: 6px;
  top: 8px;
  height: 4px;
  box-shadow: 0 8px 0 var(--orange);
}

.notes-glyph::after {
  right: -12px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--orange);
  background: var(--white);
}

.stage {
  min-height: calc(100vh - 122px);
  padding: 74px 40px 150px;
  display: flex;
  flex-direction: column;
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

.screen-title {
  margin: 0 0 26px;
  color: var(--ice);
  font-size: clamp(2rem, 8.8vw, 2.65rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.screen-subtitle {
  margin-top: -18px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.25rem, 5.2vw, 1.7rem);
  font-weight: 300;
}

.options {
  display: grid;
  gap: 14px;
}

.choice {
  width: 100%;
  min-height: 62px;
  border: 0;
  border-radius: 999px;
  background: var(--panel);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 30px 13px 36px;
  cursor: pointer;
  font-size: clamp(1.08rem, 5vw, 1.78rem);
  font-weight: 700;
  line-height: 1.08;
  text-align: left;
}

.choice .label {
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.choice .label small {
  display: block;
  margin-top: 3px;
  color: rgba(207, 231, 238, 0.78);
  font-size: 0.72em;
  font-weight: 500;
  line-height: 1.08;
}

.choice.selected .label small,
.choice.time-choice .label small {
  color: rgba(255, 255, 255, 0.78);
}

.choice .arrow {
  color: var(--orange);
  font-size: 1.8rem;
  flex: 0 0 auto;
}

.choice.check {
  justify-content: flex-start;
  padding-left: 16px;
  border-radius: 34px;
}

.choice.check .label {
  font-size: clamp(1.02rem, 4.7vw, 1.58rem);
  line-height: 1.14;
}

.choice.check.selected {
  background: var(--orange);
}

.radio {
  width: 34px;
  height: 34px;
  border: 4px solid var(--orange);
  border-radius: 50%;
  flex: 0 0 auto;
  position: relative;
}

.choice.selected .radio {
  background: var(--white);
  border-color: var(--white);
  display: grid;
  place-items: center;
}

.choice.selected .radio::after {
  content: "✓";
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  position: static;
  background: transparent;
}

.choice.time-choice {
  background: var(--orange);
}

.choice.time-choice .radio {
  background: var(--white);
  border-color: var(--white);
  display: grid;
  place-items: center;
}

.choice.time-choice .radio::after {
  content: "◷";
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.field-stack {
  display: grid;
  gap: 22px;
}

.field label {
  display: block;
  color: var(--ice);
  font-size: clamp(1.45rem, 6vw, 2rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.input-pill {
  width: 100%;
  min-height: 58px;
  border: 4px solid rgba(207, 231, 238, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--orange);
  font-size: clamp(1.35rem, 5.8vw, 1.9rem);
  font-weight: 800;
  padding: 10px 30px;
  outline: none;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.prefixed-input {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 58px;
  border: 4px solid rgba(207, 231, 238, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.locked-prefix {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-width: 76px;
  background: rgba(207, 231, 238, 0.12);
  color: var(--muted);
  font-size: clamp(1.25rem, 5.4vw, 1.75rem);
  font-weight: 800;
  border-right: 3px solid rgba(207, 231, 238, 0.18);
}

.prefixed-input .input-pill {
  min-height: 50px;
  border: 0;
  border-radius: 0;
}

.slash {
  color: var(--orange);
  font-size: 3rem;
  font-weight: 300;
}

.segmented {
  display: grid;
  overflow: hidden;
  border-radius: 999px;
  background: var(--panel);
}

.segmented.seg-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.segmented.seg-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.segmented.mt-10 {
  margin-top: 10px;
}

.field-stack.mt-24 {
  margin-top: 24px;
}

.segmented.mt-12 {
  margin-top: 12px;
}

.segmented.temp-toggle {
  margin-top: -8px;
}

.bp-unit,
.client-label {
  color: var(--muted);
  font-size: 0.72em;
  font-weight: 500;
}

.bp-unit {
  margin-left: 18px;
}

.input-row.age-row {
  grid-template-columns: 1fr 1.4fr;
}

.input-suffix {
  color: var(--muted);
  font-size: 1.7rem;
  text-align: right;
  margin-top: -54px;
  padding-right: 34px;
  pointer-events: none;
}

.compact-heading {
  font-size: 2.1rem;
  margin-top: 32px;
}

.compact-heading.tight {
  font-size: 2rem;
  margin-top: 34px;
}

.segment {
  min-height: 58px;
  border: 0;
  border-right: 4px solid var(--navy);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: clamp(0.98rem, 4.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.05;
  overflow-wrap: anywhere;
  padding: 8px 10px;
}

.segment:last-child {
  border-right: 0;
}

.segment.selected {
  background: var(--orange);
}

.pain-scale {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  margin-top: 18px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(75, 93, 123, 0.58);
}

.pain-cell {
  min-height: 50px;
  border: 0;
  border-right: 2px solid rgba(20, 41, 75, 0.78);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

.pain-cell.selected {
  background: var(--panel);
  color: var(--white);
  box-shadow: inset 0 5px 0 #39c5c8;
}

.qr-card {
  background: var(--white);
  color: #102440;
  border-radius: 22px;
  padding: 22px;
  text-align: center;
}

.qr-card h2 {
  margin: 0 0 8px;
  color: #102440;
  font-size: 2rem;
}

.qr-card p {
  margin: 0 0 18px;
  color: #55657c;
  font-size: 1rem;
}

#qrCanvas {
  width: 340px;
  height: 340px;
  max-width: 100%;
  image-rendering: pixelated;
}

.summary {
  width: 100%;
  max-height: 180px;
  overflow: auto;
  margin-top: 18px;
  border: 1px solid #d8e1ec;
  border-radius: 12px;
  background: #f8fafc;
  color: #172033;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.45;
  padding: 12px;
  text-align: left;
  white-space: pre-wrap;
  word-break: break-word;
}

.share-button {
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  margin-top: 16px;
  min-height: 48px;
  padding: 0 18px;
  width: 100%;
  overflow-wrap: anywhere;
}

.share-button.secondary-share {
  background: var(--panel);
  color: var(--ice);
}

.share-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.bottom-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100vw, 480px);
  height: 108px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  column-gap: 10px;
  padding: 0 0 12px;
  background: linear-gradient(to bottom, rgba(13, 31, 60, 0), rgba(13, 31, 60, 0.78) 34%, rgba(13, 31, 60, 0.96));
  z-index: 10;
}

.bottom-bar::before {
  content: none;
}

.call-button,
.next-button {
  border: 0;
  min-width: 0;
  cursor: pointer;
  height: 58px;
  font-size: clamp(1rem, 4.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  width: 100%;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-align: center;
}

.call-button {
  color: var(--white);
  background: var(--orange);
  border-radius: 0 31px 31px 0;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.next-button {
  color: var(--orange);
  background: var(--white);
  border-radius: 31px 0 0 31px;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.next-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.phone-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%);
  width: min(calc(100vw - 32px), 448px);
  min-height: 22px;
  color: var(--ice);
  text-align: center;
  font-weight: 700;
  z-index: 20;
}

.install-banner {
  display: none;
  width: min(100vw, 480px);
  margin: 0 auto;
  background: #f8fafc;
  color: #102440;
  padding: 7px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.install-banner.visible {
  display: flex;
}

.install-banner button {
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  padding: 7px 11px;
  white-space: nowrap;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 30;
}

.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(78vw, 370px);
  background: #c8e8ef;
  color: var(--navy-deep);
  z-index: 40;
  transform: translateX(-105%);
  transition: transform 180ms ease;
  padding: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  overflow: hidden;
}

.drawer.open {
  transform: translateX(0);
}

.modal h2 {
  margin: 0 0 18px;
  color: var(--ice);
  font-size: 1.6rem;
  font-weight: 500;
}

.drawer-top {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 12px;
  padding: 34px 28px 26px;
}

.drawer-close {
  border: 0;
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  font-size: 3.2rem;
  line-height: 1;
  padding: 0;
}

.drawer-back {
  min-height: 64px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.drawer-command,
.drawer-signout {
  min-height: 62px;
  border: 0;
  background: rgba(188, 226, 236, 0.55);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 34px;
  text-align: left;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.drawer-command,
.drawer-signout {
  cursor: pointer;
}

.drawer-icon {
  width: 42px;
  flex: 0 0 42px;
  color: #2b7ca4;
  font-weight: 400;
  text-align: center;
}

.breadcrumb-list {
  position: relative;
  overflow-y: auto;
  padding: 0 0 16px;
}

.breadcrumb-item {
  position: relative;
  width: 100%;
  min-height: 72px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--navy-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px 12px 36px;
  text-align: left;
  font-size: 1.35rem;
}

.breadcrumb-item.active {
  background: var(--orange);
  color: var(--white);
}

.breadcrumb-number {
  position: relative;
  width: 48px;
  height: 48px;
  border: 4px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 900;
  background: #c8e8ef;
  color: var(--white);
  z-index: 1;
}

.breadcrumb-item.active .breadcrumb-number {
  background: var(--orange);
  color: var(--white);
}

.breadcrumb-item:not(:last-child) .breadcrumb-number::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 44px;
  width: 4px;
  height: 52px;
  transform: translateX(-50%);
  background: currentColor;
}

.breadcrumb-item .crumb-title {
  display: block;
  font-weight: 400;
  min-width: 0;
}

.breadcrumb-item .crumb-answer {
  display: none;
}

.drawer-footer {
  background: rgba(147, 180, 197, 0.52);
  padding: 0 26px 24px;
}

.drawer-signout {
  margin: 0 -26px -24px;
  width: calc(100% + 52px);
  background: transparent;
  font-size: 1.45rem;
}

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100vw - 36px), 430px);
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  z-index: 41;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.notes-area {
  width: 100%;
  min-height: 220px;
  resize: vertical;
  border: 3px solid rgba(207, 231, 238, 0.18);
  border-radius: 18px;
  background: rgba(13, 31, 60, 0.8);
  color: var(--white);
  padding: 14px;
  outline: 0;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.modal-actions button,
.reset-button {
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  padding: 12px 18px;
}

.modal-actions .secondary,
.reset-button.secondary {
  background: var(--panel);
}

.install-steps {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: install-step;
}

.install-steps li {
  position: relative;
  min-height: 42px;
  padding-left: 54px;
  color: var(--ice);
  line-height: 1.35;
}

.install-steps li::before {
  counter-increment: install-step;
  content: counter(install-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.install-note {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.field-hint {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.35;
  margin-top: 6px;
}

.title-note {
  display: block;
  margin-top: 4px;
  color: var(--ice);
  font-size: 0.72em;
  font-weight: 400;
}

.abdomen-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 360px;
  overflow: hidden;
  border: 4px solid #111a2c;
  border-radius: 120px 120px 150px 150px;
  background: #f6dec8;
  color: #1b1b1b;
}

.abdomen-region {
  border: 2px solid #111a2c;
  background: rgba(255, 236, 210, 0.82);
  color: #1b1b1b;
  cursor: pointer;
  font-size: clamp(1.15rem, 5vw, 1.55rem);
  font-weight: 900;
  line-height: 1.05;
}

.abdomen-region.center {
  position: absolute;
  inset: 31% 28%;
  z-index: 2;
  border-radius: 50%;
  background: #f8e4c9;
}

.abdomen-region.selected {
  background: var(--orange);
  color: var(--white);
}

.weakness-grid {
  border-radius: 16px;
  grid-template-rows: repeat(2, minmax(56px, auto));
}

.detail-card {
  display: grid;
  gap: 22px;
}

.detail-card .screen-title {
  margin-bottom: 4px;
}

.history-detail {
  margin-top: -4px;
}

.time-entry-card {
  background: var(--ice);
  color: var(--navy);
  margin: -74px -40px -150px;
  min-height: calc(100vh - 122px);
  padding: clamp(150px, 24vh, 240px) 40px 150px;
}

.time-entry-card .screen-title,
.time-entry-card label {
  color: var(--navy);
}

.time-wheel {
  display: grid;
  gap: 18px;
  margin-bottom: 44px;
}

.time-wheel label {
  font-size: clamp(1.65rem, 6vw, 2.3rem);
  font-weight: 400;
  line-height: 1.18;
}

.wheel-track {
  position: relative;
  height: 72px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(207, 231, 238, 0), rgba(255,255,255,0.92) 42%, rgba(255,255,255,0.92) 58%, rgba(207, 231, 238, 0));
}

.wheel-track::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 34px solid #35c4b6;
  z-index: 1;
}

.wheel-option {
  border: 0;
  border-left: 1px solid rgba(20, 41, 75, 0.16);
  background: transparent;
  color: rgba(20, 41, 75, 0.36);
  cursor: pointer;
  font-size: clamp(1.75rem, 6vw, 2.35rem);
  font-weight: 800;
}

.wheel-option.selected {
  background: rgba(255, 255, 255, 0.46);
  color: var(--navy);
}

.auth-shell {
  width: min(100vw, 480px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 40px;
  background: var(--navy);
  display: grid;
  align-items: center;
}

.auth-panel {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  transform: translateY(-5vh);
}

.auth-title {
  margin: 0;
  color: var(--ice);
  font-size: clamp(1.58rem, 7.1vw, 2.32rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.auth-copy {
  display: none;
}

.auth-form {
  display: grid;
  gap: 26px;
  justify-items: center;
}

.auth-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.auth-code {
  width: 100%;
  height: 72px;
  border: 4px solid #38cdb9;
  border-radius: 999px;
  background: var(--panel);
  color: var(--white);
  caret-color: #4268ff;
  font-size: clamp(2.15rem, 8vw, 3rem);
  font-weight: 800;
  padding: 0 28px;
  outline: 0;
  letter-spacing: 0;
  text-align: center;
}

.auth-code:focus {
  border-color: #38cdb9;
  box-shadow: 0 0 0 4px rgba(56, 205, 185, 0.18);
}

.auth-submit {
  width: 100%;
  min-height: 70px;
  border: 0;
  border-radius: 999px;
  background: var(--panel);
  color: var(--white);
  cursor: pointer;
  font-size: clamp(1.6rem, 6.5vw, 2.35rem);
  font-weight: 800;
  text-transform: uppercase;
}

.auth-submit:disabled {
  color: rgba(255, 255, 255, 0.55);
  cursor: not-allowed;
  opacity: 1;
}

.auth-status {
  min-height: 22px;
  color: var(--ice);
  font-size: 0.96rem;
  text-align: center;
  width: 100%;
}

.turnstile-slot {
  width: 100%;
  min-height: 74px;
  display: grid;
  justify-items: center;
  align-items: center;
}

.turnstile-slot iframe {
  max-width: 100%;
}

.turnstile-slot:empty {
  min-height: 74px;
}

.hidden {
  display: none !important;
}

@media (max-width: 380px) {
  .auth-shell {
    padding-inline: 28px;
  }

  .auth-panel {
    gap: 24px;
    transform: translateY(-6vh);
  }

  .auth-title {
    font-size: clamp(1.45rem, 7vw, 1.7rem);
  }

  .auth-code,
  .auth-submit {
    height: 64px;
    min-height: 64px;
  }

  .topbar,
  .stage {
    padding-left: 28px;
    padding-right: 28px;
  }

  .choice {
    padding-left: 26px;
    padding-right: 26px;
  }
}
