@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  /* Monochrome: black + white only (muted tones = black on white at opacity) */
  --accent: #000000;
  --accent-hover: #000000;
  --accent-muted: rgba(0, 0, 0, 0.55);
  --accent-soft: rgba(0, 0, 0, 0.06);
  --accent-soft-strong: rgba(0, 0, 0, 0.12);
  --gold: var(--accent);
  --gold-light: var(--accent);
  --gold-dim: rgba(0, 0, 0, 0.65);
  --on-accent: #ffffff;
  --dark: #000000;
  --bg: #ffffff;
  --bg-subtle: rgba(0, 0, 0, 0.03);
  --surface: #ffffff;
  --surface2: rgba(0, 0, 0, 0.05);
  --surface3: rgba(0, 0, 0, 0.12);
  --border: rgba(0, 0, 0, 0.18);
  --border-soft: rgba(0, 0, 0, 0.12);
  --text: #000000;
  --text-muted: rgba(0, 0, 0, 0.58);
  --text-dim: rgba(0, 0, 0, 0.45);
  --danger: #000000;
  --success: #000000;
  --radius: 14px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 88px;
}

body.step-confirm {
  padding-bottom: 0;
}

/* ── Header ── */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 24px 14px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.partner-logo-img {
  max-height: 44px;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.partner-logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  color: var(--accent);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.partner-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--text);
}

.booking-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.powered-by {
  font-size: 10px;
  color: var(--text-dim);
}

.powered-by span {
  color: var(--gold);
  font-weight: 600;
}

/* ── Progress Bar ── */
.progress-wrap {
  background: var(--bg-subtle);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-soft);
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  position: relative;
}

.progress-step::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--surface3);
  z-index: 0;
  transition: background 0.4s;
}

.progress-step:last-child::after {
  display: none;
}

.progress-step.done::after {
  background: var(--gold);
}

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--surface3);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-dim);
  z-index: 1;
  transition: all 0.3s;
  position: relative;
}

.progress-step.active .step-dot {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--on-accent);
}

.progress-step.done .step-dot {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--on-accent);
}

.step-label {
  font-size: 8px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s;
}

.progress-step.active .step-label {
  color: var(--gold);
}

.progress-step.done .step-label {
  color: var(--accent-muted);
}

/* ── Main flow ── */
.flow-main {
  padding: 28px 20px 24px;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Step Titles ── */
.step-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.schedule-footnote {
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: -16px 0 20px;
  padding: 10px 12px;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

.schedule-footnote-mark {
  color: var(--accent);
  font-weight: 700;
  margin-right: 4px;
}

/* ── Service Cards ── */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 520px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--surface);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 16px 14px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.15s;
  position: relative;
  overflow: hidden;
  display: block;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-1px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.service-card.selected::before {
  opacity: 1;
}

.service-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-icon {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}

.service-brief {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 8px;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-time {
  font-size: 9px;
  color: var(--text-dim);
  background: var(--surface2);
  border-radius: 20px;
  padding: 2px 8px;
}

.service-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--gold);
}

.selected-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

.selected-badge svg {
  width: 10px;
  height: 10px;
}

.service-card.selected .selected-badge {
  display: flex;
}

.addons-wrap {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--surface2);
}

.addons-title {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 8px;
}

.addons-list {
  display: grid;
  gap: 8px;
  margin: 10px 0;
}

.addon-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  cursor: pointer;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.addon-item input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: #000000;
  flex-shrink: 0;
}

.addon-label {
  font-size: 12px;
  line-height: 1.45;
}

.addons-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Calendar ── */
.calendar-wrap {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 20px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-month {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--text);
}

.cal-nav {
  background: none;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: border-color 0.2s, color 0.2s;
}

.cal-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day-label {
  text-align: center;
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 0;
}

.cal-day {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cal-day:hover:not(.empty):not(.past) {
  background: var(--surface2);
  color: var(--text);
}

.cal-day.past {
  color: var(--text-dim);
  cursor: default;
  opacity: 0.4;
}

.cal-day.empty {
  cursor: default;
}

.cal-day.selected {
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}

.cal-day.today {
  color: var(--accent);
  font-weight: 600;
}

.time-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
}

.time-slot {
  text-align: center;
  padding: 10px 6px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.time-slot:hover {
  border-color: var(--gold-dim);
  color: var(--text);
}

.time-slot.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}

.time-slot.unavailable {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ── Forms ── */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000000' stroke-width='1.5' fill='none' stroke-opacity='0.55' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option {
  background: #ffffff;
  color: var(--text);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-error {
  font-size: 10px;
  color: var(--text);
  margin-top: 8px;
}

.form-error.hidden {
  display: none;
}

.consent-wrap {
  margin-top: 6px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--surface2);
  padding: 10px 12px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: #000000;
  flex-shrink: 0;
}

.consent-copy {
  margin-top: 8px;
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.6;
}

.consent-copy a {
  color: var(--text);
  text-decoration: underline;
}

.consent-copy a:hover {
  text-decoration-thickness: 2px;
}

/* ── Payment ── */
.order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 20px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  gap: 12px;
}

.order-row.total {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 12px;
  font-weight: 600;
  font-size: 15px;
}

.order-label {
  color: var(--text-muted);
}

.order-value {
  color: var(--text);
  text-align: right;
  word-break: break-word;
}

.order-value.gold {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--accent);
}

.confirm-val--accent {
  color: var(--accent);
}

.stripe-card-wrap {
  background: var(--surface);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.stripe-card-wrap:focus-within {
  border-color: var(--gold);
}

#payment-element-container {
  min-height: 24px;
}

.pay-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text-dim);
  justify-content: center;
  margin-top: 10px;
}

.pay-secure svg {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── Confirmation ── */
.confirm-wrap {
  text-align: center;
  padding: 20px 0 40px;
}

.confirm-icon {
  width: 72px;
  height: 72px;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirm-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.confirm-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 12px;
}

.confirm-msg {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 340px;
  margin: 0 auto 28px;
}

.confirm-detail-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: left;
  margin-bottom: 20px;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 12px;
  border-bottom: 1px solid var(--border-soft);
  gap: 10px;
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-key {
  color: var(--text-muted);
  flex-shrink: 0;
}

.confirm-val {
  color: var(--text);
  font-weight: 500;
  text-align: right;
}

/* ── Bottom Bar ── */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
  padding: 14px 20px;
  display: flex;
  gap: 10px;
  z-index: 100;
  max-width: 100%;
}

.bottom-bar.hidden {
  display: none;
}

.btn-back {
  background: none;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-back:hover {
  border-color: var(--gold-dim);
  color: var(--text);
}

.btn-back.hidden {
  display: none;
}

.btn-next {
  flex: 1;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  color: var(--on-accent);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-next:hover {
  background: var(--accent-hover);
  box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.12);
}

.btn-next:active {
  transform: scale(0.98);
}

.btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-next-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-next-icon.hidden {
  display: none;
}

/* ── Dividers ── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 12px 0;
}

/* ── Toast ── */
.toast {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-80px);
  background: var(--text);
  color: var(--bg);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  z-index: 999;
  transition: transform 0.3s;
  max-width: calc(100vw - 32px);
  text-align: center;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.muted {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.hidden {
  display: none !important;
}

/* ── Desktop: wider column + larger type ── */
@media (min-width: 900px) {
  body {
    font-size: 15px;
  }

  .header {
    padding: 22px 32px 18px;
  }

  .partner-logo-img {
    max-height: 52px;
    max-width: 160px;
  }

  .partner-logo-placeholder {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .partner-name {
    font-size: 24px;
    letter-spacing: 2.5px;
  }

  .booking-subtitle {
    font-size: 12px;
  }

  .powered-by {
    font-size: 11px;
  }

  .progress-wrap {
    padding: 14px 32px;
  }

  .progress-steps {
    max-width: 800px;
  }

  .progress-step::after {
    top: 13px;
  }

  .step-dot {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .step-label {
    font-size: 9px;
  }

  .flow-main {
    max-width: 800px;
    padding: 36px 32px 32px;
  }

  .step-title {
    font-size: 32px;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .schedule-footnote {
    font-size: 12px;
    margin: -18px 0 22px;
    padding: 12px 14px;
  }

  .service-grid {
    gap: 16px;
  }

  .service-card {
    padding: 22px 20px;
    border-radius: 16px;
  }

  .service-icon {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .service-name {
    font-size: 15px;
  }

  .service-brief {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .service-time {
    font-size: 11px;
    padding: 4px 10px;
  }

  .service-price {
    font-size: 20px;
  }

  .addons-wrap {
    margin-top: 22px;
    padding: 18px;
  }

  .addons-title {
    font-size: 13px;
  }

  .addons-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
  }

  .addon-label {
    font-size: 13px;
  }

  .addons-note {
    font-size: 12px;
  }

  .calendar-wrap {
    padding: 24px;
    border-radius: 16px;
  }

  .cal-month {
    font-size: 19px;
  }

  .cal-nav {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .cal-day-label {
    font-size: 10px;
    padding: 6px 0;
  }

  .cal-day {
    font-size: 14px;
    padding: 10px 6px;
  }

  .time-label {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .time-grid {
    grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
    gap: 10px;
  }

  .time-slot {
    font-size: 13px;
    padding: 12px 8px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 10px;
  }

  .form-textarea {
    min-height: 100px;
  }

  .form-row {
    gap: 16px;
  }

  .form-error {
    font-size: 11px;
  }

  .consent-wrap {
    padding: 12px 14px;
  }

  .consent-label {
    font-size: 13px;
  }

  .consent-copy {
    font-size: 11px;
  }

  .order-summary {
    padding: 24px;
    border-radius: 16px;
  }

  .order-row {
    font-size: 15px;
    padding: 10px 0;
  }

  .order-row.total {
    font-size: 16px;
    padding-top: 14px;
  }

  .order-value.gold {
    font-size: 24px;
  }

  .stripe-card-wrap {
    padding: 18px;
    border-radius: 10px;
  }

  .pay-secure {
    font-size: 11px;
  }

  .confirm-wrap {
    padding: 28px 0 48px;
  }

  .confirm-icon {
    width: 80px;
    height: 80px;
  }

  .confirm-icon svg {
    width: 34px;
    height: 34px;
  }

  .confirm-title {
    font-size: 34px;
    letter-spacing: 3.5px;
  }

  .confirm-msg {
    font-size: 14px;
    max-width: 480px;
  }

  .confirm-detail-box {
    padding: 22px;
    border-radius: 16px;
  }

  .confirm-row {
    font-size: 13px;
    padding: 8px 0;
  }

  .bottom-bar {
    padding: 16px max(32px, calc((100vw - 800px) / 2));
  }

  .btn-back {
    font-size: 14px;
    padding: 16px 22px;
  }

  .btn-next {
    font-size: 15px;
    padding: 16px 20px;
  }

  .btn-next-icon {
    width: 17px;
    height: 17px;
  }

  .toast {
    font-size: 13px;
    padding: 12px 24px;
  }

  .muted {
    font-size: 13px;
  }
}
