/* =========================================================
   BABELICA — water-as-behavior palette
   white = condition
   blue = event (sparingly)
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");

:root{
  /* Core */
  --paper: #ffffff;
  --ink: #111111;
  --muted: #555555;

  /* Water (used sparingly) */
  --water-1: #eaf4f7;   /* surface light */
  --water-2: #cfe6ee;   /* shallow */
  --water-3: #8fc3d6;   /* depth (rare) */
  --current: #4aa3c2;   /* focus / hover */

  /* Lines */
  --hairline: rgba(17, 17, 17, 0.12);
  --softline: rgba(17, 17, 17, 0.08);

  /* Surfaces */
  --panel: rgba(255,255,255,0.92);
  --panel-strong: rgba(255,255,255,0.98);

  /* Font */
  --font-google: "Rubik", sans-serif;
}

/* =========================================================
   Global reset / base
   ========================================================= */
*,
*::before,
*::after{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  scroll-behavior: smooth;
}

body{
  background: var(--paper);
  color: var(--ink);

  font-family: Georgia, "Times New Roman", serif;
  min-height: 100vh;

  /* center the whole page on wide screens */
  margin: 0 auto 3%;
  max-width: 1100px;
  padding: 0 10%;

  line-height: 1.55;
}

/* =========================================================
   Text blocks
   ========================================================= */
p{
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: justify;
  line-height: 1.55;
  max-width: 90ch;
}

ol{
  font-size: 0.95rem;
  margin-top: 12px;
  margin-bottom: 12px;
  margin-left: 2%;
  text-align: justify;
  line-height: 1.55;
  max-width: 90ch;
}

/* =========================================================
   Titles
   ========================================================= */
.index-title,
.index-subtitle,
.piece-title,
.piece-subtitle,
.author{
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: var(--ink);
}

/* small heading used on Contents / utility pages */
.index-title{
  font-size: 1.4rem;
  line-height: 1.3;
  max-width: 20ch;
}

/* if you still use it, keep it consistent */
.index-subtitle{
  font-size: 1.4rem;
  line-height: 1.2;
  max-width: 24ch;
}

/* piece heading */
.piece-title{
  font-size: 1.5rem;
  line-height: 1.15;
  max-width: 28ch;
  margin-top: 2%;
  margin-bottom: 18px;
}

.piece-subtitle{
  font-size: 1.35rem;
  line-height: 1.2;
  max-width: 34ch;
  margin-top: 2%;
  margin-bottom: 6px;
}

.author{
  font-size: 1.05rem;
  line-height: 1.4;
  max-width: 32ch;
  color: var(--muted);
}

@media (max-width: 700px){
  .index-title,
  .index-subtitle,
  .piece-title,
  .piece-subtitle,
  .author{
    max-width: 100% !important;
  }
}

/* ===============================
   SPOILERS PAGE
   =============================== */

.spoilers{
  max-width: 38rem;
  margin: 1.8rem auto 2.8rem;
  padding: 0 1.2rem;
}

.spoilers .spoiler-entry{
  margin: 0.32rem 0;
  line-height: 1.55;
  font-size: 1.02rem;
}

.spoilers .spoiler-dash{
  display: inline;
  margin: 0 0.35em;
}

.spoilers .spoiler-role{
  overflow-wrap: anywhere;
}

/* =========================================================
   Links — threshold style, not buttons
   ========================================================= */
a{
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--ink);
  text-decoration: none;

  border-bottom: 1px solid var(--water-2);

  padding: 0;
  border-radius: 0;

  cursor: pointer;
  transition: border-color 150ms ease, opacity 150ms ease;
}

a:hover{
  border-bottom-color: var(--current);
  opacity: 0.95;
}

a:focus{
  outline: none;
  border-bottom: 2px solid var(--current);
}

/* Special link styles you already use */
a.spoiler{
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  padding: 0;
  border-radius: 0;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--water-2);
}

a.spoiler:hover{
  border-bottom-color: var(--current);
  opacity: 0.95;
}

a.spoiler:focus{
  outline: none;
  border-bottom: 2px solid var(--current);
}

a.spoiler02{
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  padding: 0;
  border-radius: 0;
  text-decoration: none;
  border-bottom: 1px solid var(--water-2);
  font-weight: 400;
}

a.spoiler02:hover{
  border-bottom-color: var(--current);
  opacity: 0.95;
}

a.spoiler02:focus{
  outline: none;
  border-bottom: 2px solid var(--current);
}

.babelica-meta a {
  font-family: Georgia, "Times New Roman", serif;
  color: #555555;
  text-decoration: none;
  border-bottom: 1px solid #bbbbbb;
}

.babelica-meta a:hover {
  border-bottom-color: #777777;
  opacity: 0.7;
}

.babelica-meta a:focus {
  outline: none;
  border-bottom: 2px solid #777777;
}

a.drop{
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--water-2);
  padding: 0;
}

a.drop:hover{
  border-bottom-color: var(--current);
  opacity: 0.95;
}

a.drop:focus{
  outline: none;
  border-bottom: 2px solid var(--current);
}

/* ===============================
   CONTENTS — minimal list
   =============================== */

.contents{
  max-width: 38rem;
  margin: 2.2rem auto 3rem;
  padding: 0 1.2rem;
}

.contents .index-title{
  width: auto;              /* overrides your fixed width */
  margin: 0 0 1.2rem;
  letter-spacing: 0.02em;   /* optional: quiet “wordmark” feel */
}

.contents-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.contents-list li{
  margin: 0.3rem 0;
}

/* extra space before each structural section */
.contents-list .section-start{
  margin-top: 0.85rem;
}

/* but not before the very first item */
.contents-list .section-start:first-child{
  margin-top: 0;
}

.contents-list a{
  display: inline-block;    /* makes underline behavior feel steadier */
}

.contents-coda{
  margin-top: 1.2rem;       /* a soft break without labeling structure */
}

.contents a{
  border-bottom-color: var(--water-2);
  opacity: 0.92;
}

.contents a:hover{
  opacity: 1;
}

/* =========================================================
   Layout inserts (keep)
   ========================================================= */
.insert{
  margin-right: 15%;
  margin-left: 15%;
  margin-top: 0%;
  margin-bottom: 3%;
}

.insert02{
  margin-right: 10%;
  margin-left: 10%;
  margin-top: 0%;
  margin-bottom: 3%;
}

.insert03{
  margin-right: 5%;
  margin-left: 5%;
  margin-top: 0%;
  margin-bottom: 0%;
}

.box{
  display: block;
  float: none;
  position: static;
  z-index: auto;
}

/* ==== Inserts: magazine block feel ==== */
.insert, .insert02, .insert03{
  padding: 10px 14px;
  border-left: 3px solid rgba(0,0,0,0.15);
}

.insert02{
  border-left-style: double;
  border-left-width: 4px;
}

/* ==== Inserts: typography inside ==== */
.insert p, .insert02 p, .insert03 p{
  max-width: 78ch;
  text-align: left;
}

/* ===============================
   PAGE NAV — book-installation
   =============================== */

.page-arrows{
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin: 1.25rem 0 2.25rem;   /* calmer rhythm */
  padding: 0;                  /* no panel feel */
}

/* make each arrow feel like a glyph, not a button */
.page-arrows .arrow{
  padding: 0;                  /* remove button padding */
  border-bottom: 0;            /* kill global underline */
  line-height: 1;
  color: var(--muted);
  opacity: 0.75;

  transition: opacity 150ms ease, color 150ms ease;
}

/* consistent sizing */
.page-arrows .arrow-prev,
.page-arrows .arrow-next{
  font-size: 1.35rem;
}

.page-arrows .arrow-home{
  font-size: 1.2rem;
  opacity: 0.65;
}

/* hover: no jump, just clarity */
.page-arrows .arrow:hover{
  transform: none;             /* remove “buttony” jump */
  opacity: 1;
  color: var(--ink);
}

/* focus: visible but minimal */
.page-arrows .arrow:focus{
  outline: none;
  border-bottom: 1px solid var(--current);
  opacity: 1;
}


/* =========================================================
   Navigation — click-open dropdowns (CLEAN + CONSISTENT)
   ========================================================= */

nav{
  max-width: 100%;
  margin: 0;
  font-family: var(--font-google);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: visible;
}

nav ul{ list-style: none; }

/* Mobile menu toggle — glyph, not pill */
button{
  display: block;
  margin: 0.75rem 0 0.25rem;
  padding: 0;
  transition: opacity 150ms ease, color 150ms ease;

  border: 0;
  background: transparent;
  color: var(--muted);

  font-family: var(--font-google);
  font-size: 1rem;
  letter-spacing: 0.02em;

  cursor: pointer;
  transition: opacity 150ms ease, color 150ms ease;
}

button:hover{
  color: var(--ink);
  opacity: 1;
}

@media (min-width: 40rem){
  .babelica-menu-toggle{ display: none; }
}

/* Menu container — unboxed */
.menu{
  display: none;
  flex-direction: column;
  position: relative;

  border: 0;
  border-radius: 0;

  overflow: visible;
}

.menu.activated{ display: flex; }

@media (min-width: 40rem){
  .menu{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.menu--background{
  background: transparent;
  color: var(--ink);
}

.menu__button{
  padding: 0.6em 0.9em;
  cursor: pointer;
  text-align: center;

  flex: 1 1 12rem;
  min-width: 12rem;

  position: relative;
  background: transparent;
  overflow: visible;
}

.menu__button:hover{
  background: transparent;
  opacity: 0.85;
}

.menu__label{
  display: block;
  white-space: normal;
  line-height: 1.2;
  padding-right: 1.3rem;
  overflow-wrap: anywhere;
}

/* ===============================
   CONTENTS NAV — neutral (no panel)
   =============================== */

.contents-nav{
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

/* =========================================================
   Dropdown — ONE authoritative behavior
   ========================================================= */

/* closed by default */
.dropdown-container{ display: none; }

/* open when LI has .activated (JS toggles this) */
.menu__button--arrow.activated > .dropdown-container{ display: block; }

/* prevent any parent clipping */
nav,
.menu,
.babelica-rail,
.babelica-footer,
.babelica-nav{
  overflow: visible !important;
}

/* Desktop: dropdown is the ONLY scroll container */
@media (min-width: 40rem){
  .menu__button--arrow{ position: relative; }

  .menu__button--arrow > .dropdown-container{
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);

    min-width: 15rem;
    max-width: 22rem;
    width: max-content;

    z-index: 999999;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0.25rem 0;

    /* JS sets an inline max-height based on viewport;
       BUT we provide a safe fallback */
    max-height: 60vh;

    overflow-y: auto;          /* KEY */
    overflow-x: hidden;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;  /* Windows scrollbar stability */
  }

  /* drop-up variant used by JS */
  .menu__button--arrow.dropup > .dropdown-container{
    top: auto;
    bottom: calc(100% + 10px);
  }

  /* UL must NEVER be a scroll container */
  .menu__button--arrow > .dropdown-container > ul{
    max-height: none !important;
    overflow: visible !important;
  }
}

/* Mobile: dropdown flows naturally */
@media (max-width: 39.999rem){
  .dropdown-container{
    position: static;
    transform: none;

    width: 100%;
    min-width: 0;
    max-width: 100%;

    border: 0;
    border-top: 0;
    padding-top: 0.35rem;
    border-radius: 0;
    background: transparent;

    max-height: none;
    overflow: visible;
  }
}

/* item styling — book-installation (no rows, no bars) */
.dropdown-container > ul{
  background: transparent;
  padding: 0.4rem 0;
}

.dropdown-container > ul > li{
  padding: 0.25rem 0;      /* vertical rhythm instead of boxes */
  border: 0;               /* remove “menu row” separators */
}

/* links inside dropdown: text-first */
.dropdown-container a.drop{
  border-bottom: 0;        /* kill the default underline rule */
  opacity: 0.78;
  display: inline;
}

.dropdown-container a.drop:hover{
  opacity: 1;
  border-bottom: 1px solid rgba(17,17,17,0.22); /* quiet cue */
}

/* =========================================================
   Transparent title (if you still use it somewhere)
   ========================================================= */
.title{
  display: none;
}

@media (min-width: 40rem){
  .title{
    display: block;
    max-width: 50rem;
    margin: 1rem auto;
    font-family: var(--font-google);
    user-select: none;
  }

  .title > h1{
    font-size: 6.5rem;
    color: rgba(17,17,17,0.06);
    letter-spacing: 0.05em;
  }
}

/* =========================================================
   Return-to-top
   ========================================================= */
#return-to-top{
  position: fixed;
  bottom: 20px;
  right: 20px;

  background: rgba(234, 244, 247, 0.9);
  width: 46px;
  height: 46px;
  display: none;

  text-decoration: none;
  border-radius: 999px;

  border: 1px solid var(--softline);
  transition: 150ms ease;
}

#return-to-top:hover{
  border-color: var(--current);
  background: var(--paper);
}

#return-to-top i{
  color: var(--muted);
  position: relative;
  left: 15px;
  top: 12px;
  font-size: 18px;
  transition: 150ms ease;
}

#return-to-top:hover i{
  color: var(--ink);
  top: 9px;
}

/* =========================================================
   Accessibility / readability tweaks
   ========================================================= */
@media (max-width: 700px){
  body{
    margin-left: 6%;
    margin-right: 6%;
  }

  p, ol{
    max-width: 100%;
  }
}

/* =========================================================
    keep if not hiding .babelica-rail completely
   ========================================================= */
.babelica-content,
.babelica-rail{
  min-width: 0;
}

/* =========================================================
   BOOK–INSTALLATION LAYOUT (single column)
   ========================================================= */

.babelica-layout{
  display: block;
  max-width: 980px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.babelica-content{
  max-width: 75ch;
  margin: 0 auto;
}

/* rail hidden (menu will move elsewhere later) */
.babelica-rail{
  display: none;
}

/* =========================================================
   Wide screens: use padding instead of huge side margins
   ========================================================= */
@media (min-width: 1100px){
  body{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* =========================================================
   MOBILE FIXES — FINAL (paste LAST, keep ONLY ONE copy)
   ========================================================= */

@media (max-width: 900px){

  /* ---------- Layout: rail (menu) above content ---------- */
  .babelica-layout{
    display: flex !important;
    flex-direction: column !important;
    gap: 0.6rem !important;
    padding: 0 0.75rem !important;
  }

  .babelica-rail{
    order: -1 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000000 !important;

    background: var(--paper) !important;
    border-bottom: 1px solid var(--softline) !important;
    padding: 0.25rem 0 !important;
  }

  /* ---------- Menu button: less bulky ---------- */
  .babelica-menu-toggle{
    margin: 0.25rem auto !important;
    padding: 0.35em 0.75em !important;
    font-size: 0.95rem !important;
  }

  /* ---------- Menu rows (the top-level categories): remove min-width + padding ---------- */
  nav{
    padding: 0.25rem !important;
  }

  .menu__button{
    padding: 0.35em 0.5em !important;
    min-width: 0 !important;     /* IMPORTANT: fixes “puffy / wide” */
    flex: 1 1 auto !important;
  }

  .menu__label{
    padding-right: 0 !important;
    line-height: 1.15 !important;
  }

  /* ---------- Dropdown list: compact rows ---------- */
  .dropdown-container > ul > li{
    padding: 0.35em 0.6em !important;  /* IMPORTANT: kills puffiness */
  }

  .dropdown-container a.drop{
    display: block !important;
    padding: 0.1em 0 !important;
    line-height: 1.2 !important;
    border-bottom: 0 !important;
  }
}

@media (max-width: 700px){

  /* ---------- Global page spacing ---------- */
  body{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    max-width: 100% !important;
    font-size: 17px !important;   /* 18 if you prefer bigger */
    line-height: 1.6 !important;
  }

  /* wordmark: smaller on phone */
  .index-wordmark{
    font-size: clamp(1.05rem, 4.8vw, 1.35rem) !important;
    letter-spacing: 0.12em !important;
  }
}
/* =========================================================
   GLOBAL OVERFLOW SAFETY (prevents right overflow on phones)
   ========================================================= */

p, ol, li, a, .piece-title, .piece-subtitle, .author{
  overflow-wrap: anywhere;
  word-break: break-word;
}

img, video, iframe, table{
  max-width: 100%;
  height: auto;
}

pre, code{
  white-space: pre-wrap;
  word-break: break-word;
}

html, body{
  overflow-x: hidden;
  overflow-y: auto;
}

/* ==== Dialogue readability ==== */
.par02{
  font-style: italic;
  margin-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.45;
}

/* ==== Chorus block ==== */
.chorus{
  letter-spacing: 0.01em;
  opacity: 0.92;
  margin-left: 0.6em;
  padding-left: 0.8em;
  border-left: 1px solid rgba(0,0,0,0.2);
}

/* --- Ground Zero descent indentation --- */
.indent1 { padding-left: 1em; display: inline-block; }
.indent2 { padding-left: 2em; display: inline-block; }
.indent3 { padding-left: 3em; display: inline-block; }
.indent4 { padding-left: 4em; display: inline-block; }
.indent1, .indent2, .indent3, .indent4 { line-height: 1.2; }

/* =========================================================
   BOOK–INSTALLATION LAYOUT (single column, no rail)
   ========================================================= */

.babelica-layout{
  display: block;
  max-width: 980px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.babelica-content{
  max-width: 75ch;
  margin: 0 auto;
}

/* rail gone globally */
.babelica-rail{ display: none !important; }

/* calmer rhythm baseline */
p, ol{ line-height: 1.75; }

/* titles: no fixed widths */
.index-title,
.index-subtitle,
.piece-title,
.piece-subtitle,
.author{
  width: auto;
  max-width: 100%;
}

@media (max-width: 700px){
  .babelica-layout{ padding: 0 0.9rem; }
  body{
    padding: 0;
    max-width: none;
  }
}

/* If you truly want NO hr rules anywhere */
hr{ display: none; }

/* =========================================================
   BABELICA OVERLAY — FORCE VISIBILITY (keep ONE)
   ========================================================= */

.babelica-overlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483646 !important;

  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  pointer-events: auto !important;

  mix-blend-mode: normal !important;
  filter: none !important;
  transform: none !important;
}

.babelica-overlay[aria-hidden="true"]{
  display: none !important;
}

.babelica-overlay__backdrop{
  position: absolute !important;
  inset: 0 !important;
  background: rgba(255,255,255,0.92) !important;
}

.babelica-overlay__panel{
  position: absolute !important;
  right: 12px !important;
  bottom: 12px !important;

  width: min(520px, calc(100vw - 24px)) !important;
  max-height: min(78vh, calc(100vh - 24px)) !important;
  overflow: auto !important;

  background: #fff !important;
  color: var(--ink) !important;

  border: 1px solid var(--softline) !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  opacity: 1 !important;
  visibility: visible !important;

  transform: none !important;
  pointer-events: auto !important;
}

.babelica-overlay a{
  color: var(--ink) !important;
  opacity: 1 !important;
}

/* =========================================================
   BABELICA NAV TRIGGER (FAB) — single source of truth
   ========================================================= */

.babelica-fab{
  position: fixed !important;
  z-index: 2147483647 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 44px !important;
  height: 44px !important;

  border: 1px solid var(--softline) !important;
  border-radius: 999px !important;

  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  color: var(--ink) !important;
  font-family: var(--font-google) !important;
  font-size: 1.4rem !important;
  line-height: 1 !important;

  opacity: 0.85 !important;
  cursor: pointer !important;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
  transition: transform 150ms ease, opacity 150ms ease, box-shadow 150ms ease !important;

  visibility: visible !important;
  pointer-events: auto !important;
}

.babelica-fab:hover{
  opacity: 1 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12) !important;
}

@media (hover: hover) and (pointer: fine){
  .babelica-fab{
    top: clamp(100px, 12vh, 160px) !important;
    bottom: auto !important;

    left: 50% !important;
    right: auto !important;

    transform: translateX(calc(37.5ch + 48px)) translateY(0) !important;
  }

  .babelica-fab:hover{
    transform: translateX(calc(37.5ch + 48px)) translateY(-1px) !important;
  }

  /* reading mode aligns to 70ch => 35ch */
  html.reading-mode .babelica-fab{
    transform: translateX(calc(35ch + 36px)) translateY(0) !important;

    opacity: 0.45 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-color: rgba(17,17,17,0.10) !important;
  }

  html.reading-mode .babelica-fab:hover{
    transform: translateX(calc(35ch + 36px)) translateY(-1px) !important;
    opacity: 0.75 !important;
  }
}

/* =========================================================
   READING MODE — RITUAL SWITCH (single authoritative block)
   ========================================================= */

html.reading-mode body{
  background: #fbfaf7;
  color: var(--ink);

  font-size: clamp(18.5px, 1.12rem, 21px);
  line-height: 1.88;

  padding-left: clamp(0.9rem, 3vw, 1.6rem) !important;
  padding-right: clamp(0.9rem, 3vw, 1.6rem) !important;
}

html.reading-mode .babelica-content{
  max-width: 70ch !important;
  margin: 0 auto !important;
}

html.reading-mode p,
html.reading-mode ol,
html.reading-mode li{
  line-height: 1.88 !important;
}

html.reading-mode p{
  margin-top: 0.95em !important;
  margin-bottom: 0.95em !important;
  text-align: left !important;
  hyphens: auto;
  -webkit-hyphens: auto;
}

html.reading-mode .piece-title{
  margin-top: 1.6rem !important;
  margin-bottom: 1.2rem !important;
  letter-spacing: 0.01em;
}

html.reading-mode a{
  border-bottom-color: rgba(17,17,17,0.12) !important;
}
html.reading-mode a:hover{
  border-bottom-color: rgba(17,17,17,0.26) !important;
}

html.reading-mode .page-arrows{
  margin: 0.9rem 0 !important;
  opacity: 0.28 !important;
}
html.reading-mode .arrow{
  padding: 0.15rem 0.25rem !important;
  transform: none !important;
  color: rgba(17,17,17,0.55) !important;
}
html.reading-mode .arrow:hover{
  opacity: 1 !important;
  color: rgba(17,17,17,0.8) !important;
}

html.reading-mode hr{ opacity: 0.25; }

html.reading-mode .babelica-reading-exit{
  top: calc(env(safe-area-inset-top, 0px) + 10px) !important;
  right: calc(env(safe-area-inset-right, 0px) + 10px) !important;
  z-index: 2147483647 !important;
}