/* dynamic-profile.css
 * Public profile page — matches the profile editor preview exactly.
 * Design tokens mirror profile-editor.css (--pe-*).
 * On desktop: centered card, max-width 680px, white gutters on both sides.
 */

/* ── Design tokens (match profile-editor.css) ──────────────────────────────── */

:root {
  --pe-surface:       #FFFFFF;
  --pe-surface-dim:   #F5F5F5;
  --pe-surface-hi:    #E0E0E0;
  --pe-primary:       #0D47A1;
  --pe-primary-ctr:   #E3F2FD;
  --pe-on-primary:    #FFFFFF;
  --pe-secondary:     #00695C;
  --pe-secondary-ctr: #E0F2F1;
  --pe-on-secondary:  #00695C;
  --pe-tertiary:      #FF6D00;
  --pe-tertiary-ctr:  #FFF3E0;
  --pe-on-tertiary:   #E65100;
  --pe-outline:       #BDBDBD;
  --pe-on-surface:    #212121;
  --pe-on-variant:    #616161;
  --pe-nav-h:         64px;

  /* overridable by designer theme */
  --dp-theme-color: #0D47A1;
  --dp-font: 'Inter', system-ui, sans-serif;
  --dp-section-gap: 0px; /* sections are stacked inside one card, no gap */
}

/* ── Reset ───────────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }

body {
  font-family: var(--dp-font);
  background: var(--pe-surface-dim);
  color: var(--pe-on-surface);
  line-height: 1.6;
  min-height: 100vh;
  padding-top: var(--pe-nav-h);
}

img { display: block; max-width: 100%; }
a   { color: var(--pe-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Page layout — centered card with gutters ───────────────────────────────── */

.dp-page {
  max-width: 680px;
  margin: 32px auto 64px;
  padding: 0 16px;
}

/* The profile card — matches pe-preview-frame exactly */
.dp-card {
  background: var(--pe-surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  font-family: var(--dp-font);
}

/* ── Breadcrumb (above the card) ────────────────────────────────────────────── */

.dp-breadcrumb {
  font-size: 13px;
  color: var(--pe-on-variant);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.dp-breadcrumb a { color: var(--pe-on-variant); }
.dp-breadcrumb a:hover { color: var(--pe-primary); text-decoration: none; }
.dp-breadcrumb .material-symbols-outlined { font-size: 14px; vertical-align: middle; color: var(--pe-on-variant); }
.dp-breadcrumb [aria-current="page"] { color: var(--pe-on-surface); font-weight: 500; }

/* ── Loading / error ─────────────────────────────────────────────────────────── */

.dp-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.dp-loading-inner { text-align: center; color: var(--pe-on-variant); }

.dp-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--pe-surface-hi);
  border-top-color: var(--pe-primary);
  border-radius: 50%;
  animation: dp-spin .7s linear infinite;
  margin: 0 auto 12px;
}
@keyframes dp-spin { to { transform: rotate(360deg); } }

.dp-error {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--pe-on-variant);
  font-size: 15px;
}
.dp-error a {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 20px;
  background: var(--pe-primary);
  color: #fff;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO BLOCK  — matches .prev-hero exactly
═══════════════════════════════════════════════════════════════════════════════ */

.prev-hero {
  background: var(--pe-primary-ctr);
  padding: 40px 28px 32px;
  text-align: center;
  font-family: inherit;
}

.prev-hero-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--pe-surface-hi) center/cover;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.prev-hero-avatar img { width: 100%; height: 100%; object-fit: cover; }

.prev-hero-name    { font-size: 22px; font-weight: 700; color: var(--pe-on-surface); line-height: 1.2; display: flex; align-items: center; justify-content: center; gap: 6px; }
.dp-name-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--pe-primary);
  flex-shrink: 0;
}
.dp-name-badge.basic-badge { color: var(--pe-on-variant, #9CA3AF); }
.dp-name-badge .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: 'FILL' 1;
  transition: transform .15s;
}
.dp-name-badge svg {
  width: 20px;
  height: 20px;
  transition: transform .15s;
  flex-shrink: 0;
}
.dp-name-badge.basic-badge .material-symbols-outlined {
  font-size: 16px;
  font-variation-settings: 'FILL' 0;
}
.dp-name-badge:hover .material-symbols-outlined { transform: scale(1.2); }
.dp-name-badge:hover svg { transform: scale(1.2); }
.prev-hero-tagline { font-size: 13px; color: var(--pe-on-variant); margin-top: 5px; }
.prev-hero-pills   { display: flex; gap: 8px; justify-content: center; margin-top: 14px; flex-wrap: wrap; }

.prev-pill         { padding: 5px 12px; border-radius: 16px; font-size: 11px; font-weight: 500; }
.prev-pill-light   { background: var(--pe-surface); color: var(--pe-on-variant); }
.prev-pill-accent  { background: var(--pe-secondary); color: #fff; }

/* contact button added below hero pills on the public page */
.dp-hero-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 10px 24px;
  border-radius: 20px;
  background: var(--pe-primary);
  color: var(--pe-on-primary);
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s;
}
.dp-hero-contact-btn:hover { opacity: .85; }
.dp-hero-contact-btn .material-symbols-outlined { font-size: 16px; }


/* reviews row in hero */
.dp-hero-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 13px;
  color: var(--pe-on-variant);
}
.dp-hero-stars   { color: var(--pe-tertiary); letter-spacing: -1px; font-size: 14px; }
.dp-rating-val   { font-weight: 600; color: var(--pe-on-surface); }
.dp-review-count { color: var(--pe-on-variant); }
.dp-review-link  { color: var(--pe-primary); font-size: 12px; }

/* ═══════════════════════════════════════════════════════════════════════════════
   SECTION BASE  — matches .prev-section
═══════════════════════════════════════════════════════════════════════════════ */

.prev-section {
  padding: 22px 28px;
  font-family: inherit;
}
.prev-section + .prev-section { border-top: 1px solid var(--pe-surface-dim); }

.prev-h {
  font-size: 15px;
  font-weight: 700;
  color: var(--pe-on-surface);
  margin-bottom: 10px;
}

/* ── About ───────────────────────────────────────────────────────────────────── */

.prev-bio {
  font-size: 13px;
  color: var(--pe-on-variant);
  line-height: 1.7;
  white-space: pre-wrap;
}

.dp-joined {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--pe-on-variant);
}
.dp-joined .material-symbols-outlined { font-size: 14px; }

/* ── Credentials ────────────────────────────────────────────────────────────── */

.prev-cred-card {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--pe-surface-dim);
  margin-bottom: 8px;
}
.prev-cred-card:last-child { margin-bottom: 0; }
.prev-cred-title { font-size: 13px; font-weight: 600; color: var(--pe-on-surface); }
.prev-cred-org   { font-size: 12px; color: var(--pe-on-variant); margin-top: 2px; }

/* work experience inside cred section */
.dp-work-date { font-size: 11px; color: var(--pe-outline); margin-top: 2px; }
.dp-work-desc { font-size: 12px; color: var(--pe-on-variant); margin-top: 5px; line-height: 1.5; }

/* cert / education */
.dp-cred-sub { font-size: 11px; color: var(--pe-on-variant); }

/* ── Specialties / Tags ─────────────────────────────────────────────────────── */

.prev-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.prev-tag  { padding: 4px 10px; border-radius: 14px; font-size: 11px; font-weight: 500; }

.prev-tag-secondary { background: var(--pe-secondary-ctr); color: var(--pe-on-secondary); }
.prev-tag-primary   { background: var(--pe-primary-ctr);   color: var(--pe-primary);      }
.prev-tag-neutral   { background: var(--pe-surface-dim);   color: var(--pe-on-variant);   }

/* specialty sub-groups */
.dp-spec-group       { margin-bottom: 14px; }
.dp-spec-group:last-child { margin-bottom: 0; }
.dp-spec-group-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--pe-on-variant);
  margin-bottom: 7px;
}

/* ── Age Groups ─────────────────────────────────────────────────────────────── */

/* Age groups now use prev-tag prev-tag-secondary — no custom styles needed */

/* ── Business Info ───────────────────────────────────────────────────────────── */

.prev-biz-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prev-biz-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--pe-on-surface);
}
.prev-biz-role {
  font-size: 13px;
  color: var(--pe-on-variant);
}
.prev-biz-entity {
  margin-top: 6px;
  align-self: flex-start;
}

/* ── Services ───────────────────────────────────────────────────────────────── */

.prev-rate-box {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--pe-tertiary-ctr);
  display: flex;
  align-items: center;
  gap: 12px;
}
.prev-rate-num { font-size: 26px; font-weight: 700; color: var(--pe-on-tertiary); }
.prev-rate-sub { font-size: 11px; color: var(--pe-on-tertiary); line-height: 1.4; }

/* payment methods */
.dp-payment-row {
  margin-top: 12px;
  font-size: 12px;
  color: var(--pe-on-variant);
}

/* ── Working Style / Sliders ────────────────────────────────────────────────── */

.prev-slider-row   { margin-bottom: 12px; }
.prev-slider-row:last-child { margin-bottom: 0; }
.prev-slider-label { font-size: 11px; color: var(--pe-on-variant); margin-bottom: 4px; }

.prev-slider-track {
  height: 4px;
  border-radius: 2px;
  background: var(--pe-surface-hi);
  position: relative;
}
.prev-slider-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--pe-primary);
}

.prev-slider-ends  { display: flex; justify-content: space-between; margin-top: 3px; }
.prev-slider-end   { font-size: 10px; color: var(--pe-outline); }

/* style note */
.dp-style-note {
  font-size: 11px;
  color: var(--pe-on-variant);
  background: var(--pe-surface-dim);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 14px;
}

/* ── Testimonials ───────────────────────────────────────────────────────────── */

.prev-quote-card {
  padding: 14px;
  border-radius: 12px;
  background: var(--pe-surface-dim);
  margin-bottom: 10px;
}
.prev-quote-card:last-child { margin-bottom: 0; }

.prev-stars        { font-size: 14px; color: var(--pe-tertiary); letter-spacing: -1px; margin-bottom: 6px; }
.prev-quote        { font-size: 12px; color: var(--pe-on-surface); font-style: italic; line-height: 1.6; }
.prev-quote-author { font-size: 11px; color: var(--pe-on-variant); margin-top: 6px; }
.dp-verified-tag   { color: var(--pe-secondary); font-weight: 600; }

/* ── Availability ───────────────────────────────────────────────────────────── */

.prev-avail-cards { display: flex; gap: 10px; }

.prev-avail-card {
  flex: 1;
  padding: 12px 10px;
  border-radius: 12px;
  background: var(--pe-surface-dim);
  text-align: center;
}
.prev-avail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
}
.prev-avail-icon .material-symbols-outlined { font-size: 20px; color: var(--pe-secondary); }
.dp-accepting-yes .prev-avail-icon .material-symbols-outlined { color: var(--pe-secondary); }
.dp-accepting-no  .prev-avail-icon .material-symbols-outlined { color: var(--pe-outline); }
.dp-accepting-no  .prev-avail-text  { color: var(--pe-on-variant); }
.prev-avail-text  { font-size: 11px; font-weight: 600; color: var(--pe-on-surface); margin-top: 4px; }

/* ── External Links ─────────────────────────────────────────────────────────── */

.prev-links    { display: flex; flex-direction: column; gap: 6px; }

.prev-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--pe-surface-dim);
  color: var(--pe-on-surface);
  transition: background .12s;
  font-family: inherit;
}
.prev-link-item:hover { background: var(--pe-primary-ctr); text-decoration: none; }
.prev-link-icon  { font-size: 18px; color: var(--pe-primary); }
.prev-link-label { flex: 1; font-size: 13px; font-weight: 500; color: var(--pe-on-surface); }
.prev-link-arrow { font-size: 14px; color: var(--pe-outline); }

/* ── Contact CTA ────────────────────────────────────────────────────────────── */

.prev-cta {
  padding: 28px;
  background: var(--pe-primary);
  text-align: left;
}
.prev-cta-h   { font-size: 17px; font-weight: 700; color: var(--pe-on-primary); margin-bottom: 5px; }
.prev-cta-sub { font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 16px; line-height: 1.5; }

.prev-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 20px;
  background: var(--pe-on-primary);
  color: var(--pe-primary);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s;
}
.prev-cta-btn:hover { opacity: .85; }
.prev-cta-btn .material-symbols-outlined { font-size: 16px; }

/* ── Empty states ───────────────────────────────────────────────────────────── */

.prev-empty-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px;
  color: var(--pe-on-variant);
  text-align: center;
}
.prev-empty-reviews .material-symbols-outlined { font-size: 32px; }
.prev-empty-reviews p    { font-size: 13px; font-weight: 500; }
.prev-empty-reviews span { font-size: 12px; }

/* ── Contact sheet (bottom sheet on mobile, centered modal on desktop) ────── */

.dp-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.dp-sheet.open { display: block; }

.dp-sheet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  animation: dp-fade-in .2s ease;
}

.dp-sheet-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pe-surface);
  border-radius: 20px 20px 0 0;
  padding: 12px 24px 40px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.32,.72,0,1);
}
.dp-sheet.open .dp-sheet-panel { transform: translateY(0); }

@media (min-width: 600px) {
  .dp-sheet-panel {
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, -44%);
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
  }
  .dp-sheet.open .dp-sheet-panel {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.dp-sheet-handle {
  width: 40px; height: 4px;
  background: var(--pe-surface-hi);
  border-radius: 2px;
  margin: 0 auto 16px;
}
@media (min-width: 600px) { .dp-sheet-handle { display: none; } }

.dp-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.dp-sheet-header h2 { font-size: 18px; font-weight: 700; color: var(--pe-on-surface); }

.dp-sheet-close {
  width: 32px; height: 32px;
  border: none; background: transparent;
  cursor: pointer; color: var(--pe-on-variant);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
.dp-sheet-close:hover { background: var(--pe-surface-dim); }
.dp-sheet-close i { width: 18px; height: 18px; }
.dp-sheet-close .material-symbols-outlined { font-size: 18px; }

.dp-sheet-sub {
  font-size: 13px;
  color: var(--pe-on-variant);
  margin-bottom: 18px;
  line-height: 1.5;
}

.dp-sheet-form { display: flex; flex-direction: column; gap: 10px; }

.dp-sheet-input,
.dp-sheet-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--pe-surface-hi);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: var(--pe-surface);
  color: var(--pe-on-surface);
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.dp-sheet-input:focus,
.dp-sheet-textarea:focus { border-color: var(--pe-primary); }
.dp-sheet-textarea { resize: vertical; min-height: 90px; }

.dp-sheet-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--pe-primary);
  color: var(--pe-on-primary);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity .15s;
}
.dp-sheet-submit:hover    { opacity: .88; }
.dp-sheet-submit:disabled { opacity: .6; cursor: not-allowed; }
.dp-sheet-submit i { width: 16px; height: 16px; }
.dp-sheet-submit .material-symbols-outlined { font-size: 16px; }

@keyframes dp-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ── Footer ─────────────────────────────────────────────────────────────────── */

.dp-footer {
  margin-top: 32px;
  padding: 20px 0 32px;
  text-align: center;
  font-size: 13px;
  color: var(--pe-on-variant);
}
.dp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.dp-footer-brand { font-weight: 700; color: var(--pe-on-surface); }
.dp-footer-links { display: flex; gap: 14px; }
.dp-footer-links a { color: var(--pe-on-variant); font-size: 12px; }
.dp-footer-links a:hover { color: var(--pe-primary); text-decoration: none; }
.dp-footer-social { display: flex; gap: 12px; }
.dp-footer-social a { color: var(--pe-on-variant); }
.dp-footer-social a:hover { color: var(--pe-primary); }
.dp-footer-social .material-symbols-outlined { font-size: 18px; vertical-align: middle; }

/* ── Modals ──────────────────────────────────────────────────────────────────── */

.dp-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.dp-modal.active { display: flex; }

.dp-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

.dp-modal-content {
  position: relative;
  z-index: 1;
  background: var(--pe-surface);
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.dp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--pe-surface-hi);
}
.dp-modal-header h3 { font-size: 15px; font-weight: 700; }

.dp-modal-close {
  width: 30px; height: 30px;
  border: none; background: transparent;
  cursor: pointer; color: var(--pe-on-variant);
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.dp-modal-close:hover { background: var(--pe-surface-dim); }
.dp-modal-close .material-symbols-outlined { font-size: 18px; }

.dp-modal-body { padding: 16px 20px 20px; font-size: 13px; line-height: 1.7; }
.dp-modal-body p  { color: var(--pe-on-surface); margin-bottom: 12px; }
.dp-modal-details h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--pe-on-variant); margin-bottom: 8px; }
.dp-modal-details ul { padding-left: 16px; display: flex; flex-direction: column; gap: 5px; }
.dp-modal-details li { font-size: 13px; }

/* badge modal */
.dp-badge-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 6px;
}
.dp-badge-icon svg { width: 22px; height: 22px; flex-shrink: 0; }
.dp-badge-icon.basic    { background: transparent; border: 1.5px solid var(--pe-primary); color: var(--pe-primary); }
.dp-badge-icon.verified { background: var(--pe-primary); color: var(--pe-on-primary); }
.dp-badge-icon.premium  { background: var(--pe-primary); color: var(--pe-on-primary); }
.dp-badge-icon.associate{ background: var(--pe-primary); color: var(--pe-on-primary); }
.dp-badge-modal-title { font-size: 14px; font-weight: 700; }
.dp-badge-modal-sub   { font-size: 12px; color: var(--pe-on-variant); margin-top: 3px; }

/* ── Toast ───────────────────────────────────────────────────────────────────── */

.dp-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #1F2937;
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  z-index: 2000;
  pointer-events: none;
  white-space: nowrap;
}
.dp-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Typography font variants ────────────────────────────────────────────────── */

[data-dp-font="classic"]  { --dp-font: 'Georgia', 'Times New Roman', serif; }
[data-dp-font="friendly"] { --dp-font: 'Nunito', 'Poppins', 'Segoe UI', sans-serif; }

/* ── Density — affects card section padding ─────────────────────────────────── */

[data-dp-density="compact"]  .prev-section { padding: 16px 20px; }
[data-dp-density="compact"]  .prev-hero    { padding: 28px 20px 22px; }
[data-dp-density="compact"]  .prev-cta     { padding: 20px; }
[data-dp-density="spacious"] .prev-section { padding: 32px 36px; }
[data-dp-density="spacious"] .prev-hero    { padding: 52px 36px 44px; }
[data-dp-density="spacious"] .prev-cta     { padding: 40px 36px; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */

@media (max-width: 720px) {
  .dp-page { margin: 0; padding: 0; }
  .dp-card { border-radius: 0; box-shadow: none; }
  .dp-breadcrumb { display: none; }
  .dp-footer { margin-top: 16px; padding: 16px; }
}
