/* ============================================================
   האוטומציה הראשונה שלך עם Claude Code — עיצוב מדריך זה בלבד.
   כל סלקטור כאן מתחיל ב-.guide-claude-code-first-automation כדי שהעיצוב
   לא ידלוף לשאר האתר. אל תשתמשו בקובץ הזה מחוץ לדף הזה.

   מבנה הטוקנים, השלד וכל הרכיבים המשותפים (progress bar, subnav, code-block,
   checklist, cost-box, accordion, verify-list, os-pair, reveal) שוכפלו
   ישירות מ-guides/claude-code-design-stack.css - אותה פלטה, אותה שיטת
   עבודה. רכיב חדש אחד נוסף כאן, כי לא היה כזה קודם באתר: .prompt-quote
   (גרסה ברוחב מלא של .prompt-card, לציטוטי פרומפט ארוכים בתוך זרימת
   הטקסט). כל שאר הרכיבים בקובץ המקור שלא בשימוש
   בדף הזה (flow, prompt-grid/prompt-card, uninstall-grid, ref-grid,
   link-grid) לא הועתקו לכאן - אין טעם ל-CSS מת.
   ============================================================ */

.guide-claude-code-first-automation{
  --bg:#FEFEFE;
  --surface:#FFFFFF;
  --surface-sunk:#F7F6FC;
  --ink:#181A1E;
  --ink-muted:#4A4D5A;
  --accent:#751FFD;
  --accent-deep:#751FFD;
  --accent-hover:#6417E0;
  --accent-rgb:117,31,253;
  --accent-dim:rgba(117,31,253,0.14);
  --on-accent:#FFFFFF;
  --border:#E8E6F2;
  --border-strong:#D5D2E6;
  --code-bg:#181A1E;
  --code-text:#E8EEF2;
  --code-text-muted:#A8B0BE;
  --code-surface:#23262D;
  --code-border:rgba(232,238,242,0.16);
  --danger:#E23B3B;
  --danger-rgb:226,59,59;
  --success:#10B981;
  --success-rgb:16,185,129;

  --font-en:'Space Grotesk', 'Space Grotesk Fallback', sans-serif;
  --font-he:'Rubik', 'Rubik Fallback', 'Space Grotesk', 'Space Grotesk Fallback', sans-serif;
  --font-mono:'JetBrains Mono', 'JetBrains Mono Fallback', monospace;

  --radius:14px;
  --radius-sm:8px;
  --max-w:980px;

  display:block;
  position:relative;
  direction:rtl;
  color:var(--ink);
  font-family:var(--font-he);
  font-weight:400;
  line-height:1.65;
  font-size:1rem;
  -webkit-font-smoothing:antialiased;
  max-width:100%;
  overflow-x:clip;
}

/* takes precedence over html.hc by proximity in the custom-property
   inheritance chain, not selector specificity - see the identical note
   in claude-code-design-stack.css. Values mirror html.hc in ../styles.css. */
html.hc .guide-claude-code-first-automation{
  --bg:#FFFFFF;
  --surface:#FFFFFF;
  --surface-sunk:#FFFFFF;
  --ink:#000000;
  --ink-muted:#000000;
  --accent:#4C00C7;
  --accent-deep:#4C00C7;
  --on-accent:#FFFFFF;
  --border:#000000;
  --border-strong:#000000;
}

.guide-claude-code-first-automation h1,
.guide-claude-code-first-automation h2,
.guide-claude-code-first-automation h3,
.guide-claude-code-first-automation h4,
.guide-claude-code-first-automation p,
.guide-claude-code-first-automation ul,
.guide-claude-code-first-automation ol,
.guide-claude-code-first-automation figure{ margin:0; }
.guide-claude-code-first-automation ul,
.guide-claude-code-first-automation ol{ padding:0; list-style:none; }
.guide-claude-code-first-automation p,
.guide-claude-code-first-automation li,
.guide-claude-code-first-automation h1,
.guide-claude-code-first-automation h2,
.guide-claude-code-first-automation h3,
.guide-claude-code-first-automation h4{ overflow-wrap:anywhere; }
.guide-claude-code-first-automation img,
.guide-claude-code-first-automation svg,
.guide-claude-code-first-automation video,
.guide-claude-code-first-automation canvas{ display:block; max-width:100%; height:auto; }
.guide-claude-code-first-automation button{ font:inherit; color:inherit; background:none; border:none; cursor:pointer; }
.guide-claude-code-first-automation a{ color:inherit; }

/* ---------- Focus ---------- */
.guide-claude-code-first-automation a:focus-visible,
.guide-claude-code-first-automation button:focus-visible,
.guide-claude-code-first-automation [tabindex]:focus-visible,
.guide-claude-code-first-automation input:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
  border-radius:4px;
}

/* ---------- Latin / numerals / labels ---------- */
.guide-claude-code-first-automation .en,
.guide-claude-code-first-automation .num,
.guide-claude-code-first-automation .section-label,
.guide-claude-code-first-automation .logo-en{
  font-family:var(--font-en);
}

/* ---------- Layout helpers ---------- */
.guide-claude-code-first-automation .wrap{
  max-width:var(--max-w);
  margin:0 auto;
  padding-inline:20px;
}
.guide-claude-code-first-automation{ z-index:1; }
.guide-claude-code-first-automation section{
  position:relative;
  z-index:1;
  padding-block:72px;
}

.guide-claude-code-first-automation .section-label{
  display:inline-block;
  font-size:0.8125rem;
  font-weight:600;
  letter-spacing:0.08em;
  color:var(--accent-deep);
  text-transform:uppercase;
  margin-bottom:12px;
}

.guide-claude-code-first-automation h2{
  font-family:var(--font-he);
  font-weight:700;
  font-size:clamp(1.5rem, 4vw, 2.125rem);
  margin-bottom:12px;
  letter-spacing:0;
  color:var(--ink);
}

.guide-claude-code-first-automation h3{
  font-weight:700;
  font-size:1.1875rem;
  margin-bottom:8px;
  letter-spacing:0;
  color:var(--ink);
}

.guide-claude-code-first-automation .section-intro{
  color:var(--ink-muted);
  max-width:620px;
  margin-bottom:32px;
  font-size:1rem;
}

/* ---------- Progress bar ---------- */
.guide-claude-code-first-automation .gds-progress-bar{
  position:fixed;
  top:0;
  inset-inline-start:0;
  inset-inline-end:0;
  height:3px;
  width:0%;
  background:var(--accent);
  transition:width 0.1s linear;
  z-index:150;
}
@media (prefers-reduced-motion: reduce){
  .guide-claude-code-first-automation .gds-progress-bar{ transition:none; }
}


/* ---------- Hero ---------- */
.guide-claude-code-first-automation .hero{
  padding-block:76px 60px;
  text-align:center;
}
.guide-claude-code-first-automation .hero h1{
  font-family:var(--font-he);
  font-weight:700;
  font-size:clamp(1.75rem, 5.5vw, 2.875rem);
  line-height:1.25;
  max-width:780px;
  margin:0 auto 20px;
  letter-spacing:0;
  color:var(--ink);
}

.guide-claude-code-first-automation .hero-sub{
  color:var(--ink-muted);
  font-size:clamp(1rem, 2.2vw, 1.1875rem);
  max-width:620px;
  margin:0 auto 32px;
}

.guide-claude-code-first-automation .hero-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.guide-claude-code-first-automation .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:12px 26px;
  border-radius:999px;
  font-weight:700;
  font-size:0.9375rem;
  text-decoration:none;
  transition:transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border:1px solid transparent;
}
.guide-claude-code-first-automation .btn:hover{ transform:translateY(-1px); }
html.link-emphasis .guide-claude-code-first-automation .btn{
  text-decoration:underline;text-underline-offset:3px;
}
@media (prefers-reduced-motion: reduce){ .guide-claude-code-first-automation .btn{ transition:none; } .guide-claude-code-first-automation .btn:hover{ transform:none; } }

.guide-claude-code-first-automation .btn-primary{
  background:var(--accent);
  color:var(--on-accent);
}
.guide-claude-code-first-automation .btn-primary:hover{
  background:var(--accent-hover);
  box-shadow:0 6px 24px rgba(var(--accent-rgb), 0.28);
}

.guide-claude-code-first-automation .btn-secondary{
  background:transparent;
  color:var(--ink);
  border-color:var(--ink-muted);
}
.guide-claude-code-first-automation .btn-secondary:hover{
  border-color:var(--accent-hover);
  color:var(--accent-hover);
}

.guide-claude-code-first-automation .hero-note{
  display:inline-flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  max-width:100%;
  font-size:0.84375rem;
  color:var(--ink-muted);
  background:var(--surface);
  border:1px solid var(--border);
  padding:8px 16px;
  border-radius:999px;
}
.guide-claude-code-first-automation .hero-note .dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
  flex-shrink:0;
}
.guide-claude-code-first-automation .hero-note-text{
  min-width:0;
  overflow-wrap:anywhere;
}

/* ---------- Cards grid (3-up short options) ---------- */
.guide-claude-code-first-automation .card-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  min-width:0;
}
@media (min-width: 720px) {
  .guide-claude-code-first-automation .card-grid{ grid-template-columns:repeat(3, 1fr); }
}

.guide-claude-code-first-automation .card{
  min-width:0;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px 22px;
  transition:border-color 0.2s ease, transform 0.2s ease;
}
.guide-claude-code-first-automation .card:hover{
  border-color:var(--accent);
  transform:translateY(-2px);
}
@media (prefers-reduced-motion: reduce){ .guide-claude-code-first-automation .card{ transition:none; } .guide-claude-code-first-automation .card:hover{ transform:none; } }
.guide-claude-code-first-automation .card .num{
  font-size:2.125rem;
  font-weight:700;
  font-family:var(--font-en);
  color:var(--accent);
  display:block;
  margin-bottom:12px;
}
.guide-claude-code-first-automation .card h3{ margin-bottom:10px; }
.guide-claude-code-first-automation .card p{ color:var(--ink-muted); font-size:0.90625rem; }

/* ---------- Checklist ---------- */
.guide-claude-code-first-automation .checklist{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:28px;
}

.guide-claude-code-first-automation .checklist-item{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  width:100%;
  max-width:100%;
  min-height:56px;
  padding:14px 18px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  text-align:start;
  transition:border-color 0.15s ease, background 0.15s ease;
}
.guide-claude-code-first-automation .checklist-item:hover{ border-color:var(--border-strong); }
@media (prefers-reduced-motion: reduce){ .guide-claude-code-first-automation .checklist-item{ transition:none; } }

.guide-claude-code-first-automation .checklist-item .box{
  flex-shrink:0;
  width:24px;
  height:24px;
  border-radius:6px;
  border:2px solid var(--ink-muted);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:border-color 0.15s ease, background 0.15s ease;
}
.guide-claude-code-first-automation .checklist-item .box svg{
  opacity:0;
  transition:opacity 0.15s ease;
  width:14px;
  height:14px;
  color:var(--on-accent);
}

.guide-claude-code-first-automation .checklist-item[aria-pressed="true"]{
  border-color:var(--accent);
  background:var(--accent-dim);
}
.guide-claude-code-first-automation .checklist-item[aria-pressed="true"] .box{
  border-color:var(--accent);
  background:var(--accent);
}
.guide-claude-code-first-automation .checklist-item[aria-pressed="true"] .box svg{ opacity:1; }
.guide-claude-code-first-automation .checklist-item[aria-pressed="true"] .label{
  color:var(--ink-muted);
  text-decoration:line-through;
  text-decoration-color:var(--ink-muted);
}

.guide-claude-code-first-automation .checklist-item .label{ font-size:0.9375rem; flex:1; min-width:0; overflow-wrap:anywhere; color:var(--ink); }
.guide-claude-code-first-automation .checklist-item .hint{
  font-family:var(--font-mono);
  font-size:0.78125rem;
  color:var(--ink-muted);
  direction:ltr;
}

.guide-claude-code-first-automation .checklist-progress{
  font-size:0.84375rem;
  color:var(--ink-muted);
  margin-bottom:20px;
}
.guide-claude-code-first-automation .checklist-progress .num{ color:var(--accent-deep); font-weight:600; }

.guide-claude-code-first-automation .cost-box{
  display:flex;
  gap:14px;
  max-width:100%;
  background:rgba(var(--danger-rgb), 0.07);
  border:1px solid rgba(var(--danger-rgb), 0.3);
  border-radius:var(--radius);
  padding:18px 20px;
  margin-block:14px;
}
.guide-claude-code-first-automation .cost-box.accent{
  background:var(--accent-dim);
  border-color:rgba(var(--accent-rgb), 0.3);
}
.guide-claude-code-first-automation .cost-box .icon{ flex-shrink:0; color:var(--danger); margin-top:2px; }
.guide-claude-code-first-automation .cost-box.accent .icon{ color:var(--accent-deep); }
.guide-claude-code-first-automation .cost-box > div{ min-width:0; }
.guide-claude-code-first-automation .cost-box h4,
.guide-claude-code-first-automation .cost-box h3{ font-size:0.9375rem; margin-bottom:6px; font-weight:700; letter-spacing:0; overflow-wrap:anywhere; color:var(--ink); }
.guide-claude-code-first-automation .cost-box p{ font-size:0.875rem; color:var(--ink-muted); overflow-wrap:anywhere; }
.guide-claude-code-first-automation .cost-box.accent p{ color:var(--ink); }
.guide-claude-code-first-automation .cost-box p + p{ margin-top:8px; }

/* ---------- Steps / part headers ---------- */
.guide-claude-code-first-automation .step-header{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}
.guide-claude-code-first-automation .step-badge{
  flex-shrink:0;
  width:40px;
  height:40px;
  border-radius:50%;
  border:2px solid var(--accent);
  color:var(--accent-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-family:var(--font-en);
  font-size:1rem;
}

.guide-claude-code-first-automation .subsection{ margin-top:28px; }
.guide-claude-code-first-automation .subsection h4,
.guide-claude-code-first-automation .subsection h3{
  font-size:1rem;
  font-weight:600;
  letter-spacing:0.01em;
  margin-bottom:10px;
  color:var(--accent-deep);
}

.guide-claude-code-first-automation p.body-text{
  color:var(--ink-muted);
  font-size:0.9375rem;
  max-width:68ch;
  margin-bottom:14px;
}

.guide-claude-code-first-automation .tag{
  display:inline-block;
  font-size:0.75rem;
  font-weight:700;
  padding:3px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.guide-claude-code-first-automation .tag-recommended{ background:rgba(var(--success-rgb), 0.14); color:var(--success); }
.guide-claude-code-first-automation .tag-alt{ background:var(--surface-sunk); color:var(--ink-muted); border:1px solid var(--border); }
.guide-claude-code-first-automation .tag-bonus{ background:var(--accent-dim); color:var(--accent-deep); }

/* ---------- Code blocks (stay dark on purpose - see DESIGN.md) ---------- */
.guide-claude-code-first-automation .code-block{
  position:relative;
  max-width:100%;
  background:var(--code-bg);
  border:1px solid var(--border-strong);
  border-radius:var(--radius-sm);
  margin-block:12px;
  overflow:hidden;
}
.guide-claude-code-first-automation .code-block pre{
  direction:ltr;
  text-align:start;
  font-family:var(--font-mono);
  font-size:0.84375rem;
  color:var(--code-text);
  margin:0;
  padding:60px 16px 16px 16px;
  max-width:100%;
  overflow-x:auto;
  white-space:pre;
  line-height:1.6;
}
.guide-claude-code-first-automation .code-block code{
  display:inline-block;
  min-width:max-content;
}
.guide-claude-code-first-automation .code-block::after{
  content:'';
  position:absolute;
  inset-inline-start:0;
  top:60px;
  bottom:0;
  width:20px;
  background:linear-gradient(to left, var(--code-bg), transparent);
  pointer-events:none;
}

.guide-claude-code-first-automation .copy-btn{
  position:absolute;
  top:8px;
  inset-inline-start:8px;
  display:flex;
  align-items:center;
  gap:6px;
  min-width:44px;
  min-height:44px;
  padding:6px 14px;
  background:var(--code-surface);
  border:1px solid var(--code-border);
  border-radius:999px;
  font-family:var(--font-en);
  font-size:0.75rem;
  font-weight:600;
  color:var(--code-text);
  direction:ltr;
  transition:border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.guide-claude-code-first-automation .copy-btn:hover{ border-color:var(--accent); }
.guide-claude-code-first-automation .copy-btn.is-copied{
  background:var(--accent);
  color:var(--on-accent);
  border-color:var(--accent);
}
.guide-claude-code-first-automation .copy-btn svg{ width:14px; height:14px; flex-shrink:0; }
@media (prefers-reduced-motion: reduce){ .guide-claude-code-first-automation .copy-btn{ transition:none; } }

.guide-claude-code-first-automation .inline-code{
  font-family:var(--font-mono);
  font-size:0.88em;
  background:var(--surface-sunk);
  border:1px solid var(--border);
  border-radius:4px;
  padding:1px 6px;
  direction:ltr;
  unicode-bidi:embed;
  display:inline-block;
  color:var(--ink);
}

.guide-claude-code-first-automation .note-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-block:14px;
}
.guide-claude-code-first-automation .note-list li{
  position:relative;
  padding-inline-start:16px;
  font-size:0.90625rem;
  color:var(--ink-muted);
}
.guide-claude-code-first-automation .note-list li::before{
  content:'';
  position:absolute;
  inset-inline-start:0;
  top:8px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
}
.guide-claude-code-first-automation .note-list .inline-code{ margin-inline:2px; }

/* ---------- Windows/macOS example pair ---------- */
.guide-claude-code-first-automation .os-pair{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-block:14px;
  min-width:0;
}
@media (min-width: 640px) {
  .guide-claude-code-first-automation .os-pair{ grid-template-columns:1fr 1fr; }
}
.guide-claude-code-first-automation .os-pair .os-block{ min-width:0; }
.guide-claude-code-first-automation .os-pair .os-block .os-label{
  font-size:0.78125rem;
  font-weight:700;
  color:var(--ink-muted);
  margin-bottom:4px;
  display:block;
}

/* ---------- Verify / numbered step list ---------- */
.guide-claude-code-first-automation .verify-box{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
}
.guide-claude-code-first-automation .verify-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-block:16px;
}
.guide-claude-code-first-automation .verify-list li{
  display:flex;
  gap:12px;
  max-width:100%;
  font-size:0.9375rem;
  color:var(--ink-muted);
  align-items:flex-start;
}
.guide-claude-code-first-automation .verify-list .step-num{
  flex-shrink:0;
  font-family:var(--font-en);
  font-weight:700;
  color:var(--accent-deep);
  font-size:0.875rem;
}
.guide-claude-code-first-automation .verify-list li > span:not(.step-num){
  min-width:0;
  overflow-wrap:anywhere;
}

/* ---------- Prompt quote (full-width variant of the site's prompt-card) ---------- */
.guide-claude-code-first-automation .prompt-quote{
  position:relative;
  background:var(--surface);
  border:1px solid var(--border);
  border-inline-start:3px solid var(--accent);
  border-radius:var(--radius);
  padding:22px 24px;
  margin-block:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.guide-claude-code-first-automation .prompt-quote .prompt-label{
  font-size:0.78125rem;
  font-weight:700;
  color:var(--accent-deep);
  text-transform:uppercase;
  letter-spacing:0.06em;
}
.guide-claude-code-first-automation .prompt-quote p{
  font-size:0.9375rem;
  color:var(--ink);
  max-width:68ch;
}
.guide-claude-code-first-automation .prompt-quote .copy-btn{
  position:static;
  align-self:flex-start;
}

/* ---------- Screenshot image ---------- */
.guide-claude-code-first-automation .screenshot-img{
  display:block;
  width:100%;
  height:auto;
  border-radius:var(--radius);
  border:1px solid var(--border);
  margin-block:16px;
}

/* ---------- Accordion (Troubleshooting) ---------- */
.guide-claude-code-first-automation .accordion{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.guide-claude-code-first-automation .accordion-item{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  overflow:hidden;
}
.guide-claude-code-first-automation .accordion-trigger{
  width:100%;
  max-width:100%;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  min-height:56px;
  text-align:start;
  font-size:0.9375rem;
  font-weight:600;
  color:var(--ink);
}
.guide-claude-code-first-automation .trigger-label{
  min-width:0;
  overflow-wrap:anywhere;
}
.guide-claude-code-first-automation .accordion-trigger .chevron{
  flex-shrink:0;
  width:18px;
  height:18px;
  transition:transform 0.2s ease;
  color:var(--accent);
}
.guide-claude-code-first-automation .accordion-trigger[aria-expanded="true"] .chevron{
  transform:rotate(180deg);
}
@media (prefers-reduced-motion: reduce){
  .guide-claude-code-first-automation .accordion-trigger .chevron{ transition:none; }
}
.guide-claude-code-first-automation .accordion-panel{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows 0.25s ease;
}
.guide-claude-code-first-automation .accordion-panel.is-open{
  grid-template-rows:1fr;
}
@media (prefers-reduced-motion: reduce){
  .guide-claude-code-first-automation .accordion-panel{ transition:none; }
}
.guide-claude-code-first-automation .accordion-panel-inner{ overflow:hidden; }
.guide-claude-code-first-automation .accordion-panel .panel-content{
  padding:0 18px 20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.guide-claude-code-first-automation .accordion-panel .panel-content p{
  color:var(--ink-muted);
  font-size:0.9375rem;
}

/* ---------- Keeping keys safe / plain bullet list ---------- */
.guide-claude-code-first-automation .plain-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.guide-claude-code-first-automation .plain-list li{
  position:relative;
  padding-inline-start:16px;
  font-size:0.9375rem;
  color:var(--ink-muted);
}
.guide-claude-code-first-automation .plain-list li::before{
  content:'';
  position:absolute;
  inset-inline-start:0;
  top:9px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
}

/* ---------- Reveal on scroll ---------- */
.guide-claude-code-first-automation .reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 0.5s ease, transform 0.5s ease;
}
.guide-claude-code-first-automation .reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .guide-claude-code-first-automation .reveal{ opacity:1; transform:none; transition:none; }
}

/* ---------- aria-live copy status ---------- */
.guide-claude-code-first-automation .visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}
