/* ============================================================
   CV - thomas.spadzinski.de
   ============================================================ */

:root {
  --accent:        #2A7C6F;
  --accent-light:  #3a9e8e;
  --accent-dark:   #1e5c52;
  --sidebar-bg:    #2d3f55;
  --sidebar-text:  #c8d4e0;
  --sidebar-muted: #7a92a8;
  --sidebar-head:  #ffffff;
  --main-bg:       #ffffff;
  --main-text:     #2d3748;
  --main-muted:    #718096;
  --border:        #e2e8f0;
  --cert-bg:       #f7fafc;
  --body-bg:       #f0f4f8;
  --controls-bg:   rgba(255,255,255,0.92);
  --controls-border: #e2e8f0;
  --section-gap:   2.5rem;
  --font:          system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ---- Dark Theme ---- */
[data-theme="dark"] {
  --sidebar-bg:    #1e2e40;
  --sidebar-text:  #a8bdd0;
  --sidebar-muted: #5a7a94;
  --sidebar-head:  #e8f0f8;
  --main-bg:       #1a2332;
  --main-text:     #d0dce8;
  --main-muted:    #7a96b0;
  --border:        #2a3a4e;
  --cert-bg:       #1e2d3e;
  --body-bg:       #111c28;
  --controls-bg:   rgba(15,25,35,0.95);
  --controls-border: #2a3a4e;
}

/* ---- Controls pill ---- */
.cv-controls {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--controls-bg);
  border: 1px solid var(--controls-border);
  border-radius: 99px;
  padding: .3rem .6rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}

.divider {
  width: 1px;
  height: 1rem;
  background: var(--controls-border);
  margin: 0 .1rem;
}

/* ---- Hamburger / Nav dropdown ---- */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--main-text);
  font-size: 1.1rem;
  padding: .25rem .4rem;
  border-radius: 4px;
  line-height: 1;
  transition: color .2s, background .2s;
  display: inline-flex;
  align-items: center;
}
.hamburger-btn:hover { background: var(--border); }

.nav-collapse-wrapper {
  position: relative;
}
.nav-collapse {
  position: absolute;
  top: calc(100% + .4rem);
  left: 0;
  background: var(--main-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  min-width: 180px;
  z-index: 200;
  padding: .3rem 0;
}
.nav-collapse ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-collapse .nav-link-item {
  display: block;
  font-size: .85rem;
  color: var(--main-text);
  padding: .5rem 1rem;
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-collapse .nav-link-item:hover,
.nav-collapse .nav-link-item:focus {
  background: var(--cert-bg);
  color: var(--accent);
  text-decoration: none;
}
.nav-collapse .nav-link-item.active {
  color: var(--accent);
  font-weight: 600;
}
.nav-collapse hr {
  border-color: var(--border);
  margin: .3rem 0;
}

#theme-toggle,
.cv-download-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--main-text);
  font-size: 1rem;
  padding: .25rem .4rem;
  border-radius: 50%;
  line-height: 1;
  transition: color .2s, background .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
#theme-toggle:hover,
.cv-download-btn:hover { background: var(--border); color: var(--main-text); }

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--main-muted);
  padding: .25rem .4rem;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.lang-btn:hover  { color: var(--main-text); }
.lang-btn.active {
  color: var(--accent);
  background: rgba(42,124,111,.12);
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--main-text);
  background: var(--body-bg);
  min-height: 100vh;
}

a {
  color: var(--accent-light);
  text-decoration: none;
}
a:hover { text-decoration: none; }


/* ---- Page Content (wraps CV card) ---- */
.page-content {
  padding: 1rem 1rem 3rem;
}

.controls-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: .6rem;
  position: sticky;
  top: .75rem;
  z-index: 10;
}

/* ---- Page Footer ---- */
.page-footer {
  background: var(--body-bg);
  padding: .35rem 1rem 30px;
  text-align: center;
  font-size: .72rem;
}

.page-footer a {
  color: var(--sidebar-muted);
  text-decoration: none;
}
.page-footer a:hover { color: var(--accent-light); }

.page-footer-sep { margin: 0 .6rem; color: var(--sidebar-muted); }

/* ---- CV Card ---- */
.cv-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 1060px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,.22);
  border-radius: 4px;
  overflow: hidden;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.cv-sidebar {
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* --- Header / Avatar --- */
.sidebar-header {
  text-align: center;
}

.avatar-wrapper {
  display: block;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow:
    0 2px 6px rgba(0,0,0,0.4),
    0 8px 24px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  outline: 1px solid rgba(255,255,255,0.06);
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transform: scale(1.2);
  transform-origin: 50% 25%;
}

.avatar-placeholder {
  display: none;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent-light);
}

.sidebar-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sidebar-head);
  letter-spacing: .02em;
}

.sidebar-title {
  font-size: .82rem;
  color: var(--accent-light);
  font-weight: 500;
  margin-top: .25rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* --- Section headings in sidebar --- */
.sidebar-heading {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: .4rem;
  margin-bottom: .9rem;
}

/* --- Contact list --- */
.contact-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .86rem;
}

.contact-list i {
  color: var(--accent);
  flex-shrink: 0;
  font-size: .95rem;
  width: 16px;
  text-align: center;
}

.contact-icon-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .85;
}

.contact-list a {
  color: var(--sidebar-text);
  word-break: break-all;
}
.contact-list a:hover { color: var(--accent-light); }

/* --- Engagement list --- */
.engagement-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.engagement-item {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.engagement-role {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sidebar-muted);
}
.engagement-title {
  font-size: .82rem;
  color: var(--sidebar-text);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: .3rem;
}
.engagement-title:hover { color: var(--accent-light); text-decoration: none; }
.engagement-title .bi { font-size: .6rem; opacity: .65; flex-shrink: 0; }

/* --- Skill bars --- */
.skills-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.skill-name {
  display: block;
  font-size: .83rem;
  margin-bottom: .3rem;
  color: var(--sidebar-text);
}

.skill-bar {
  height: 5px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: var(--level);
  background: var(--accent);
  border-radius: 3px;
  transition: width .6s ease;
}

/* --- Tag cloud --- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.tag {
  display: inline-block;
  background: rgba(255,255,255,.07);
  color: var(--sidebar-text);
  font-size: .75rem;
  padding: .2rem .55rem;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.1);
}

/* --- Languages --- */
.languages-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.languages-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  row-gap: .2rem;
}

.lang-name {
  font-size: .85rem;
  color: var(--sidebar-text);
}

.lang-level {
  font-size: .72rem;
  color: var(--sidebar-muted);
  grid-column: 1;
}

.lang-dots {
  display: flex;
  gap: 4px;
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
}

.dot.filled {
  background: var(--accent);
  border-color: var(--accent);
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.cv-main {
  background: var(--main-bg);
  padding: 2.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

/* --- Section title --- */
.cv-section { }

.section-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* --- Profile --- */
.profile-text {
  font-size: .95rem;
  color: var(--main-text);
  line-height: 1.75;
}

/* --- Timeline --- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 154px;
  top: 6px;
  bottom: -1.75rem;
  width: 1px;
  background: var(--border);
}

.timeline-item:last-child::before { display: none; }

.timeline-item::after {
  content: '';
  position: absolute;
  left: 150px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--accent);
}

.timeline-meta {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-top: .05rem;
  padding-right: 18px;
  text-align: right;
}

.timeline-date {
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
}

.timeline-company {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--main-muted);
  margin-bottom: .4rem;
}

.timeline-company a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.timeline-company a:hover { color: var(--accent-light); }

.timeline-header {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .4rem;
}
.cv-section--education .timeline-header { gap: .2rem; }
.timeline-logo--narrow { width: 36px; }
.timeline-header:has(.timeline-logo--narrow) { gap: .3rem; }
.timeline-logo--square { width: 36px; height: 36px; object-position: right center; }
.timeline-header--tight { gap: 0; }
.timeline-header--tight > div { margin-left: -18px; }

.timeline-logo {
  width: 72px;
  height: 36px;
  object-fit: contain;
  object-position: left top;
  flex-shrink: 0;
  opacity: .85;
  filter: grayscale(20%);
}
[data-theme="dark"] .timeline-logo { filter: grayscale(20%) brightness(1.15); }

.timeline-location {
  font-size: .75rem;
  color: var(--main-muted);
}

.timeline-location i { font-size: .7rem; }

.timeline-role {
  font-size: .97rem;
  font-weight: 600;
  color: var(--main-text);
  margin-top: 0;
  margin-bottom: .1rem;
}

.timeline-bullets {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.timeline-bullets li {
  font-size: .86rem;
  color: var(--main-muted);
  line-height: 1.55;
}

.job-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(42,124,111,.08);
  border: 1px solid rgba(42,124,111,.25);
  border-radius: 3px;
  padding: .05rem .4rem;
  vertical-align: middle;
  white-space: nowrap;
  margin-left: .35rem;
}

.timeline-desc {
  font-size: .86rem;
  color: var(--main-muted);
  line-height: 1.65;
  margin-top: .25rem;
  margin-bottom: .5rem;
}

.timeline-note {
  font-size: .86rem;
  color: var(--main-muted);
  margin-top: .25rem;
}

.timeline-item--note .timeline-content {
  padding-top: 0;
}
.timeline-item--note .timeline-desc {
  font-style: italic;
  font-size: .82rem;
  margin-top: 0;
}

/* --- Certs --- */
.certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  background: var(--cert-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .75rem 1rem;
  transition: transform .22s ease, box-shadow .22s ease;
}

.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,35,50,.22);
}

.cert-icon {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.cert-item strong {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  color: var(--main-text);
}

.cert-year {
  font-size: .78rem;
  color: var(--main-muted);
}

/* Links in Cert-Karten: keine Farbe, kein Unterstreichen - Hover: Akzentfarbe */
.cert-item a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.cert-item a:hover { color: var(--accent-light); }

/* --- Cert categories --- */
.cert-category {
  margin-bottom: 1.4rem;
}
.cert-category:last-child {
  margin-bottom: 0;
}

.cert-cat-heading {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--main-muted);
  margin-bottom: .55rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--border);
}

/* --- Cert Accordion (Web only, nicht Print) --- */
.cert-accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23718096'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23718096'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.cert-accordion .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 1.4rem;
}
.cert-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.cert-accordion .accordion-button {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--main-muted);
  background: transparent;
  padding: 0 1.25rem .3rem 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0 !important;
  box-shadow: none;
  margin-bottom: .55rem;
  width: 100%;
}
.cert-accordion .accordion-button:not(.collapsed) {
  color: var(--main-muted);
  background: transparent;
  box-shadow: none;
}
.cert-accordion .accordion-button:focus {
  box-shadow: none;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.cert-accordion .accordion-body {
  padding: 0;
}

/* Cert logo (image instead of icon) */
.cert-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
  align-self: center;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .page-content { padding: 1rem .5rem 3rem; }

  .cv-wrapper {
    grid-template-columns: 1fr;
    box-shadow: none;
    border-radius: 0;
  }

  .cv-sidebar { padding: 2rem 1.5rem; }
  .cv-main    { padding: 2rem 1.5rem; }

  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item::before,
  .timeline-item::after { display: none; }
  .timeline-meta { text-align: left; }
  .certs-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT / PDF
   ============================================================ */
@media print {
  /* Engagement: externer Pfeil im Print ausblenden */
  .engagement-title .bi { display: none; }

  /* Accordion immer aufgeklappt im Print */
  .cert-accordion .accordion-collapse { display: block !important; }
  .cert-accordion .accordion-button { pointer-events: none; }
  .cert-accordion .accordion-button::after { display: none; }

  /* Always print with light theme regardless of user preference */
  :root, [data-theme="dark"] {
    --accent:        #2A7C6F;
    --sidebar-bg:    #dde5ee;
    --sidebar-text:  #1a2635;
    --sidebar-muted: #3a5068;
    --sidebar-head:  #0a111a;
    --main-bg:       #ffffff;
    --main-text:     #111111;
    --main-muted:    #2d2d2d;
    --border:        #d0d8e4;
    --cert-bg:       #f0f4f8;
    --body-bg:       #ffffff;
  }

  .page-footer    { display: none !important; }
  .controls-row   { display: none !important; }
  .page-content { padding: 0 !important; margin: 0 !important; }
  body          { background: #fff !important; margin: 0 !important; padding: 0 !important; }
  .cv-wrapper   { border-radius: 0 !important; box-shadow: none !important; }

  @page {
    size: A4;
    margin: 0;
  }

  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }

  html {
    font-size: 11px;
  }

  body {
    background: #fff;
    font-size: 11px;
  }

  .profile-text { font-size: .9rem; line-height: 1.6; }

  /* Timeline-Linie und Punkt explizit sichtbar machen */
  .timeline-item::before {
    left: 124px !important;
    top: 3px !important;
    background: #cbd5e0 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  .timeline-item::after {
    left: 120px !important;
    top: 3px !important;
    background: #2A7C6F !important;
    border-color: #fff !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .cv-wrapper {
    grid-template-columns: 240px 1fr;
    max-width: 100%;
    box-shadow: none;
    min-height: 297mm;
  }
  body {
    background-image: linear-gradient(to right, #dde5ee 240px, #ffffff 240px) !important;
    background-attachment: fixed !important;
    background-size: 100% 100% !important;
  }
  .cv-sidebar {
    background: transparent !important;
    border-right: 1px solid #c0ccd8 !important;
  }

  /* Sidebar-Elemente auf hellem Hintergrund */
  .sidebar-title { color: var(--accent) !important; }
  .sidebar-heading {
    border-bottom-color: rgba(0,0,0,.12) !important;
  }
  .skill-bar {
    background: rgba(0,0,0,.1) !important;
  }
  .tag {
    background: rgba(0,0,0,.06) !important;
    border-color: rgba(0,0,0,.12) !important;
  }
  .dot {
    background: rgba(0,0,0,.1) !important;
    border-color: rgba(0,0,0,.15) !important;
  }
  .dot.filled {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
  }

  .cv-sidebar {
    padding: 1.75rem 1.25rem;
    gap: 1.4rem;
  }

  .cv-main {
    padding: 1.75rem 2rem;
    gap: 1.75rem;
  }

  .sidebar-name { font-size: 1.1rem; }
  .avatar-wrapper { width: 60% !important; }

  /* Responsive-Überschreibung zurücksetzen: immer zweispaltig */
  .cv-wrapper { grid-template-columns: 240px 1fr !important; }
  .timeline-item { grid-template-columns: 130px 1fr !important; gap: 1rem; }
  .timeline-meta { padding-right: 20px !important; text-align: right !important; align-items: flex-end !important; }
  .timeline-item::before,
  .timeline-item::after { display: block !important; }
  .timeline-item:last-child::before { display: none !important; }

  /* Logos proportional zur Print-Schriftgröße */
  .timeline-logo         { width: 48px !important; height: 24px !important; }
  .timeline-logo--narrow { width: 40px !important; height: 24px !important; }
  .timeline-logo--square { width: 24px !important; height: 24px !important; }
  .timeline-header--tight > div { margin-left: 8px !important; }
  .timeline-header:has(.timeline-logo--narrow) { gap: .7rem !important; }

  .certs-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }

  .cert-item { padding: .45rem .6rem; gap: .45rem; }
  .cert-logo  { width: 30px; height: 30px; }
  .cert-item strong { font-size: .78rem; }
  .cert-year  { font-size: .75rem; }

  a { color: inherit !important; text-decoration: none !important; }

  /* Manuelle Seitenumbrüche */
  .print-page2,
  .print-page3                        { break-before: page; }
  .cv-sidebar .print-page2,
  .cv-sidebar .print-page3           { padding-top: 3rem; }
  .cv-main .print-page2,
  .cv-main .print-page3              { padding-top: 3rem; }
  .cv-main .print-page2::before,
  .cv-main .print-page3::before      { top: calc(3rem + 3px) !important; }
  .cv-main .print-page2::after,
  .cv-main .print-page3::after       { top: calc(3rem + 3px) !important; }
}
