/* ==========================================================================
   Christina Doo — Portfolio
   Design tokens, layout system, and components per design_handoff README.
   ========================================================================== */

:root {
  /* Color tokens */
  --ink: #171717;
  --ink-deck: #444444;
  --ink-marker: #333333;
  --muted: #666666;
  --muted-caption: #7F7F7F;
  --label: #8A8A8A;
  --ref-text: #555555;
  --rule-section: #EAEAEA;
  --rule-structural: #F0F0F0;
  --ground: #FFFFFF;
  --cobalt: #0000FF;
  --image-stroke: #EAEAEA;
  --image-radius: 8px;
  --study-measure: 700px;

  /* Easing */
  --ease-hover: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-mask: cubic-bezier(0.8, 0, 0.2, 1);
  --ease-silk: cubic-bezier(0.25, 1, 0.5, 1);
  --reveal-duration: 1.8s;
  --reveal-drift: 30px;
}

/* ---------------------------------------------------------------------- */
/* Reset / base                                                            */
/* ---------------------------------------------------------------------- */

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s var(--ease-hover);
}
a:hover,
a:focus-visible { color: var(--cobalt); }

::selection { background: var(--rule-structural); }

img { display: block; }

[hidden] { display: none !important; }

.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;
}

button {
  font: inherit;
  color: inherit;
}

/* ---------------------------------------------------------------------- */
/* Keyframes                                                               */
/* ---------------------------------------------------------------------- */

@keyframes silkReveal {
  from {
    opacity: 0;
    transform: translateY(var(--reveal-drift));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------------------- */
/* Nav                                                                     */
/* ---------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 120px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.wordmark {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.wordmark:hover,
.wordmark:focus-visible {
  color: var(--cobalt);
}

.nav-home-links,
.nav-tabs {
  display: flex;
  gap: 30px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.nav-tabs { gap: 26px; }

.nav-home-links a { color: var(--label); }

.nav-home-links a:hover,
.nav-home-links a:focus-visible {
  color: var(--cobalt);
}

.nav-tabs button {
  background: none;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0 0 3px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s var(--ease-hover), color 0.3s var(--ease-hover), border-color 0.3s var(--ease-hover);
}

.nav-tabs button.is-active {
  opacity: 1;
}

.nav-tabs button:hover,
.nav-tabs button:focus-visible {
  color: var(--cobalt);
  opacity: 1;
}

/* ---------------------------------------------------------------------- */
/* Layout well                                                             */
/* ---------------------------------------------------------------------- */

.well {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

/* ---------------------------------------------------------------------- */
/* View switching                                                          */
/* ---------------------------------------------------------------------- */

.view {
  display: none;
}

.view.is-active {
  display: block;
  animation: fadeInUp 0.8s var(--ease-hover) forwards;
}

.home-view { padding: 200px 20px 160px; }
.study-view { padding: 180px 20px 140px; }

/* ---------------------------------------------------------------------- */
/* Headline mask reveal                                                    */
/* ---------------------------------------------------------------------- */

.mask-line {
  display: block;
  padding-bottom: 0.15em;
}

.mask-line h1 {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 900px;
  margin: 0;
  opacity: 0;
  transform: translateY(var(--reveal-drift));
  will-change: transform, opacity;
}

.view.is-active .mask-line h1 {
  animation: silkReveal var(--reveal-duration) var(--ease-silk) 0.1s forwards;
}

.study-view .mask-line h1 {
  max-width: 760px;
}

.study-view .mask-line h1.is-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.view.is-active .mask-line:nth-of-type(2) h1 { animation-delay: 0.25s; }
.view.is-active .mask-line:nth-of-type(3) h1 { animation-delay: 0.4s; }

/* ---------------------------------------------------------------------- */
/* Home view                                                               */
/* ---------------------------------------------------------------------- */

.home-headline { max-width: 900px; }

.home-view .mask-line h1 {
  font-size: 32px;
  line-height: 1.44;
  letter-spacing: -0.015em;
  max-width: none;
}

.home-bio {
  margin-top: 52px;
  max-width: 767px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.home-bio p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

.home-links {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.home-links a {
  color: var(--ink);
}

.home-links a:hover,
.home-links a:focus-visible {
  color: var(--cobalt);
}

.selected-work { margin-top: 120px; }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cobalt);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--cobalt);
  flex-shrink: 0;
}

.work-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 56px 0;
  border-top: 1px solid var(--rule-structural);
  color: var(--ink-marker);
}

.work-row:last-child { border-bottom: 1px solid var(--rule-structural); }

a.work-row,
a.work-row:hover,
a.work-row:focus-visible {
  color: var(--ink-marker);
}

.work-row__title {
  display: inline;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.10;
  letter-spacing: -0.001em;
  color: var(--ink-marker);
  transition: color 0.3s var(--ease-hover);
}

.work-row:hover .work-row__title,
.work-row:focus-visible .work-row__title {
  color: var(--cobalt);
}

.work-row__summary {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.work-row__role {
  color: var(--ink);
}

.home-section {
  margin-top: 120px;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 30px 0 0;
}

.logo-cell {
  width: 176px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-cell img {
  display: block;
  object-fit: contain;
}

.logo-kaiser { width: 129px; height: 53px; }
.logo-bcbs { width: 120px; height: 26px; }
.logo-zelle { width: 70px; height: 40px; }
.logo-sharkninja { width: 120px; height: 28px; }
.logo-poshmark { width: 92px; height: 19px; }
.logo-mcdonalds { width: 52px; height: 46px; }
.logo-allergan { width: 120px; height: 32px; }
.logo-condenast { width: 130px; height: 19px; }
.logo-allure { width: 90px; height: 26px; }
.logo-epicurious { width: 120px; height: 29px; }
.logo-self { width: 70px; height: 23px; }
.logo-brides { width: 100px; height: 29px; }

.toolkit-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
}

.toolkit-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-marker);
}

.toolkit-note {
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink-marker);
}

/* ---------------------------------------------------------------------- */
/* Case study — eyebrow, lede, summary grid                                */
/* ---------------------------------------------------------------------- */

.study-eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cobalt);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.study-eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--cobalt);
  flex-shrink: 0;
}

.study-eyebrow.is-centered {
  text-align: center;
}

.study-intro .mask-line h1 {
  max-width: 722px;
}

.study-meta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.study-meta__row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.study-meta dt {
  width: 100px;
  flex-shrink: 0;
  font-weight: 400;
  color: var(--muted-caption);
}

.study-meta dd {
  margin: 0;
  max-width: 500px;
}

.study-meta dd p {
  margin: 0;
}

.study-meta dd p + p {
  margin-top: 1.55em;
}

.lede {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-deck);
  max-width: 900px;
  margin: 32px 0 0;
}

.lede--tight { margin-top: 28px; }

.body-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 20px 0 0;
  max-width: 700px;
}

.body-text.is-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.body-text.no-margin-top { margin-top: 0; }

.body-text strong { font-weight: 600; }

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  margin: 60px 0 0;
  border-top: 1px solid var(--rule-structural);
  padding-top: 40px;
}

.summary-grid h3 {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}

.summary-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.summary-grid p + p {
  margin-top: 12px;
}

.summary-grid .summary-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

/* Swing Vision accolade row */
.accolade-row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin: 48px 0 0;
  padding: 40px 0;
  border-top: 1px solid var(--ink-marker);
  border-bottom: 1px solid var(--rule-structural);
}

.accolade-row .stat {
  display: block;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.accolade-row label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--label);
}

/* ---------------------------------------------------------------------- */
/* Numbered sections                                                       */
/* ---------------------------------------------------------------------- */

.numbered-section { margin-top: 72px; }

.hairline {
  border-top: 1px solid var(--rule-section);
  margin: 0 0 20px;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.section-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--cobalt);
  flex-shrink: 0;
}

.numbered-section h2 {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  max-width: 820px;
}

.numbered-section h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 36px 0 8px;
  color: var(--ink);
  max-width: 700px;
}

.numbered-section h3.tight-top { margin-top: 28px; }

.numbered-section ul {
  margin: 20px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
  max-width: 700px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.numbered-section ul.gap-10 { gap: 10px; }

/* Reframe comparison block (Wells Fargo section 02) */
.reframe-block {
  display: grid;
  gap: 20px;
  margin: 32px 0 0;
  max-width: 700px;
}

.reframe-block__item {
  border-left: 1px solid #E7E7E7;
  padding-left: 20px;
}

.reframe-block__item.is-emphasis {
  border-left: 1px solid var(--ink);
}

.reframe-block__label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--label);
  margin-bottom: 8px;
}

.reframe-block__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 600;
}

.reframe-block__item.is-emphasis p { color: var(--ink); }

/* Pull-quote */
blockquote.pull-quote {
  margin: 28px 0 0;
  padding: 0 0 0 16px;
  border-left: 2px solid var(--ink);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
  font-style: normal;
  color: var(--ink);
  max-width: 700px;
}

.thin-study-note {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 32px 0 0;
  max-width: 700px;
  font-style: italic;
}

/* ---------------------------------------------------------------------- */
/* Image lockup component                                                  */
/* ---------------------------------------------------------------------- */

.lockup {
  margin-top: 40px;
  max-width: var(--study-measure);
}
.lockup--tight { margin-top: 32px; }

.lockup-grid {
  display: grid;
  gap: 16px;
}

.lockup-grid[data-cols="1"] { grid-template-columns: 1fr; }
.lockup-grid[data-cols="2"] {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.lockup-pane {
  position: relative;
  background: transparent;
}

.lockup-imgwrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--image-radius);
  border: 1px solid var(--image-stroke);
}

.lockup-pane:not(:has(img)) {
  min-height: 280px;
  background: var(--ground);
  border-radius: var(--image-radius);
  border: 1px solid var(--image-stroke);
}

.lockup-ref {
  display: none;
}

.lockup-caption {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted-caption);
  max-width: none;
}

.lockup-caption__marker {
  width: 4px;
  height: 4px;
  background: var(--ink-marker);
  margin-top: 8px;
  flex-shrink: 0;
}

/* Wide margin-top used when the lockup follows the 4-up caption group */
.lockup--after-4up { margin-top: 60px; }
.lockup-caption--after-4up { margin-top: 12px; }

.study-hero {
  margin: 60px 0 0;
  display: flex;
  justify-content: flex-start;
}

.study-hero img {
  width: min(var(--study-measure), 100%);
  height: auto;
  display: block;
  border-radius: var(--image-radius);
}

.study-media {
  margin: 0;
}

.study-media img,
.study-media video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--image-radius);
  border: 1px solid var(--image-stroke);
}

.study-media--cover {
  max-width: 602px;
  margin: 60px 0 0;
}

.study-media--hero {
  max-width: var(--study-measure);
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.study-media--cover img,
.study-media--hero img {
  border: 0;
  border-radius: 0;
}

#view-cnt .study-media--hero {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

#view-cnt .study-media--hero video {
  border: 1px solid var(--image-stroke);
  border-radius: var(--image-radius);
}

.study-media--phone {
  max-width: 429px;
  margin: 0 auto;
}

.study-media--map {
  max-width: 100%;
  margin: 0;
}

.study-cta {
  margin-top: 80px;
  text-align: center;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cnt-gallery {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 100%;
}

.cnt-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.cnt-venue-pair {
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

/* ---------------------------------------------------------------------- */
/* Next case study footer link                                             */
/* ---------------------------------------------------------------------- */

.next-study {
  margin-top: 100px;
  border-top: 1px solid var(--ink);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

.next-study--marker {
  border-top: 1px solid var(--ink);
}

.next-study__label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--label);
}

.next-study__link {
  background: none;
  border: 0;
  padding: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
  text-align: right;
  transition: color 0.3s var(--ease-hover);
}

.next-study__link:hover,
.next-study__link:focus-visible {
  color: var(--cobalt);
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.site-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px 60px;
}

.site-footer p {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--muted-caption);
}

/* ---------------------------------------------------------------------- */
/* Responsive (Known gap #6 — no mobile spec in source; breakpoint and     */
/* exact treatment below is a judgment call made per the README's own     */
/* suggested approach)                                                    */
/* ---------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .nav { padding: 16px 64px; }
  .well { padding: 0 64px; }
  .site-footer { padding: 0 64px 48px; }
}

@media (max-width: 760px) {
  .well { padding: 0 24px; }

  .nav { padding: 14px 24px; }

  .home-view { padding: 140px 4px 100px; }
  .study-view { padding: 120px 4px 90px; }

  .mask-line h1 { font-size: 32px; }

  .work-row {
    padding: 32px 0;
  }

  .logo-cell {
    width: calc(50% - 8px);
  }

  .summary-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .study-meta__row {
    flex-direction: column;
    gap: 4px;
  }

  .study-meta dt { width: auto; }
  .study-meta dd { max-width: none; }

  .accolade-row { gap: 32px; }

  .cnt-pair,
  .cnt-venue-pair {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .study-media--phone { max-width: 320px; }

  .lockup-grid[data-cols="2"] { grid-template-columns: 1fr; }

  .section-head {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .next-study {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .next-study__link { text-align: left; }

  .site-footer {
    padding: 0 24px 40px;
  }
}

/* ---------------------------------------------------------------------- */
/* Password gate (soft lock)                                               */
/* ---------------------------------------------------------------------- */

html.gated,
html.gated body {
  overflow: hidden;
  height: 100%;
}

html.gated #site {
  visibility: hidden;
  pointer-events: none;
}

#gate-wrapper {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: var(--ground);
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 1.5s var(--ease-hover);
}

html.gated #gate-wrapper,
#gate-wrapper.is-leaving {
  display: flex;
}

#gate-wrapper.is-leaving {
  opacity: 0;
  pointer-events: none;
}

.ledger-container {
  text-align: center;
  width: 280px;
  margin: 0;
}

.ledger-label {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-marker);
  opacity: 0.4;
  margin-bottom: 30px;
  display: block;
}

.ledger-input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.2;
  color: var(--ink-marker);
  padding: 0 0 12px;
  border-bottom: 1px solid var(--ink-marker);
  border-radius: 0;
  -webkit-text-security: square;
}

.ledger-input:focus {
  border-bottom-color: var(--ink-marker);
}

.error-shake {
  animation: gateShake 0.4s var(--ease-hover);
}

.error-shake .ledger-input {
  border-bottom-color: #E03E3E;
  color: #E03E3E;
}

@keyframes gateShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

@media (prefers-reduced-motion: reduce) {
  #gate-wrapper { transition: none; }
  .error-shake { animation: none; }
  .mask-line h1,
  .view.is-active .mask-line h1 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------------------------------------------------------------------- */
/* Custom cursor + trail (desktop / fine pointer only)                     */
/* ---------------------------------------------------------------------- */

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: none !important;
  }
}

#cursor-leader {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--ink-marker);
  z-index: 10000;
  pointer-events: none;
  will-change: transform;
  opacity: 0;
  border-radius: 0;
}

#cursor-leader.is-on {
  opacity: 1;
}

.trail-square {
  position: fixed;
  width: 8px;
  height: 8px;
  pointer-events: none;
  z-index: 9999;
}
