@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/ticker/assets/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/ticker/assets/fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --sh-glass: rgba(10, 10, 11, .76);
  --sh-panel: #101113;
  --sh-field: #131416;
  --sh-tx: #FFFFFF;
  --sh-mut: #A0A1A8;
  --sh-fnt: #8A8B93;
  --sh-rule: rgba(255, 255, 255, .10);
  --sh-ring: rgba(255, 255, 255, .16);
  --sh-pill: #1E1F23;
  --sh-hover: rgba(255, 255, 255, .06);
  --sh-lime: #CBF24C;
  --sh-ink: #0B0B0B;
  --sh-lift: 0 30px 60px -34px rgba(0, 0, 0, .75);
  --sh-wrap: 1180px;
  --sh-pad: 28px;
  --sh-ease: cubic-bezier(.32, .72, 0, 1);
}

[data-theme='light'] {
  --sh-glass: rgba(255, 255, 255, .82);
  --sh-panel: #FFFFFF;
  --sh-field: #F4F4F1;
  --sh-tx: #0C0D10;
  --sh-mut: #5C5D64;
  --sh-fnt: #66676E;
  --sh-rule: rgba(12, 13, 16, .12);
  --sh-ring: rgba(12, 13, 16, .16);
  --sh-pill: #ECECE8;
  --sh-hover: rgba(12, 13, 16, .05);
  --sh-lift: 0 30px 60px -34px rgba(20, 22, 30, .30);
}

@media (prefers-contrast: more) {
  :root { --sh-mut: #D3D4D9; --sh-fnt: #BCBDC4; --sh-rule: rgba(255, 255, 255, .26); --sh-ring: rgba(255, 255, 255, .38); }
  [data-theme='light'] { --sh-mut: #2B2C32; --sh-fnt: #3D3E44; --sh-rule: rgba(12, 13, 16, .30); --sh-ring: rgba(12, 13, 16, .44); }
}

.sl-skip {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  top: 0;
  z-index: 200;
  padding: 0;
  border-radius: 0 0 12px 0;
  background: var(--sh-lime);
  color: var(--sh-ink);
  font: 600 14px/1 'Outfit', system-ui, sans-serif;
}
.sl-skip:focus {
  inline-size: auto;
  block-size: auto;
  margin: 0;
  clip-path: none;
  padding: 13px 18px;
}

.sl-head {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--sh-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sh-rule);
}

.sl-head__row {
  max-width: var(--sh-wrap);
  margin-inline: auto;
  padding-inline: var(--sh-pad);
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}

.sl-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
  font: 600 17px/1 'Outfit', system-ui, sans-serif;
  letter-spacing: -.4px;
  color: var(--sh-tx);
}

.sl-mark { width: 30px; height: 30px; flex: none; color: var(--sh-tx); }
.sl-mark--sm { width: 26px; height: 26px; }

.sl-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.sl-nav__item {
  height: 34px;
  padding: 0 13px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  font: 500 14px/1 'Outfit', system-ui, sans-serif;
  color: var(--sh-mut);
  cursor: pointer;
  white-space: nowrap;
}
.sl-nav__item:hover { background: var(--sh-hover); opacity: 1; }
.sl-nav__item[aria-current='page'],
.sl-nav__item[aria-expanded='true'] {
  color: var(--sh-tx);
  background: var(--sh-pill);
}
.sl-nav__item--caret { gap: 6px; padding: 0 11px 0 13px; }
.sl-nav__item--caret svg { transition: transform .18s var(--sh-ease); }
.sl-nav__item[aria-expanded='true'] svg { transform: rotate(180deg); }

.sl-head__end { display: flex; align-items: center; gap: 9px; flex: none; }

.sl-icon {
  width: 34px;
  height: 34px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px var(--sh-ring);
  color: var(--sh-tx);
  cursor: pointer;
  flex: none;
}
.sl-icon:hover { background: var(--sh-hover); opacity: 1; }
.sl-icon[aria-expanded='true'] { background: var(--sh-pill); }

.sl-theme__moon { display: none; }
[data-theme='light'] .sl-theme__sun { display: none; }
[data-theme='light'] .sl-theme__moon { display: block; }

.sl-account {
  height: 38px;
  padding: 0 5px 0 17px;
  border-radius: 19px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--sh-lime);
  color: var(--sh-ink);
  font: 600 13.5px/1 'Outfit', system-ui, sans-serif;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
}

.sl-pip {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: var(--sh-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.sl-pip--lime { background: var(--sh-lime); }

.sl-find { border-top: 1px solid var(--sh-rule); background: var(--sh-panel); }
.sl-find[hidden] { display: none; }

.sl-find__row {
  max-width: var(--sh-wrap);
  margin-inline: auto;
  padding: 14px var(--sh-pad);
  position: relative;
}

.sl-find__box {
  height: 44px;
  border-radius: 14px;
  background: var(--sh-field);
  box-shadow: inset 0 0 0 1px var(--sh-ring);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 14px;
}
.sl-find__box:focus-within { box-shadow: inset 0 0 0 1px var(--sh-tx); }
.sl-find__box svg { flex: none; color: var(--sh-fnt); }
.sl-find__box input {
  flex: 1;
  min-width: 0;
  height: 42px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--sh-tx);
  font: 400 14.5px/1 'Outfit', system-ui, sans-serif;
}
.sl-find__box input::placeholder { color: var(--sh-fnt); }
.sl-find__row > .m-drop { top: 62px; inset-inline: var(--sh-pad); }

.sl-mega { border-top: 1px solid var(--sh-rule); background: var(--sh-panel); }
.sl-mega[hidden] { display: none; }

.sl-mega__grid {
  max-width: var(--sh-wrap);
  margin-inline: auto;
  padding: 22px var(--sh-pad) 26px;
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 32px;
  position: relative;
}

.sl-mega__cats { display: flex; flex-direction: column; gap: 2px; margin: 0; padding: 0; }

.sl-mega__cat {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  font: 500 13.5px/1.25 'Outfit', system-ui, sans-serif;
  color: var(--sh-mut);
  cursor: pointer;
  text-align: start;
}
.sl-mega__cat svg { flex: none; opacity: .7; }
.sl-mega__cat:hover { background: var(--sh-hover); opacity: 1; }
.sl-mega__cat[aria-selected='true'] {
  background: var(--sh-pill);
  font-weight: 600;
  color: var(--sh-tx);
}

.sl-mega__body { min-width: 0; }
.sl-mega__pane[hidden] { display: none; }

.sl-mega__title {
  font: 600 17px/1.2 'Outfit', system-ui, sans-serif;
  color: var(--sh-tx);
  margin: 4px 0 0;
}

.sl-mega__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px 24px;
  margin: 14px 0 0;
  padding: 0;
}
.sl-mega__list li { list-style: none; }
.sl-mega__list a {
  display: flex;
  align-items: center;
  min-height: 30px;
  padding-inline: 8px;
  border-radius: 8px;
  font: 400 14px/1.3 'Outfit', system-ui, sans-serif;
  color: var(--sh-mut);
}
.sl-mega__list a:hover { background: var(--sh-hover); color: var(--sh-tx); opacity: 1; }

[dir='rtl'] .sl-mega__cat svg,
[dir='rtl'] .sl-mega__all svg { transform: scaleX(-1); }

.sl-mega__all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  margin-top: 18px;
  font: 600 13.5px/1 'Outfit', system-ui, sans-serif;
  color: var(--sh-tx);
}

.sl-mega__close {
  position: absolute;
  top: 14px;
  inset-inline-end: var(--sh-pad);
  width: 30px;
  height: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sh-mut);
  cursor: pointer;
}
.sl-mega__close:hover { background: var(--sh-hover); opacity: 1; }

.sl-tape-wrap { border-top: 1px solid var(--sh-rule); }
.sl-tape {
  max-width: var(--sh-wrap);
  margin-inline: auto;
  padding-inline: var(--sh-pad);
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 38px;
  margin-block: 0;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  transition: opacity .42s var(--sh-ease);
}
.sl-tape::-webkit-scrollbar { display: none; }
.sl-tape li { display: flex; align-items: center; gap: 7px; flex: none; list-style: none; scroll-snap-align: start; }
.sl-tape span { font: 500 12px/1 'Outfit', system-ui, sans-serif; }
.sl-tape .m-tape-n { color: var(--sh-mut); }
[data-stale] .sl-tape { opacity: .55; }

.m-asof { color: var(--sh-fnt); font: 400 11px/1 'Outfit', system-ui, sans-serif; }
.m-asof:empty { display: none; }

.sl-foot { margin-top: 88px; border-top: 1px solid var(--sh-rule); }

.sl-foot__grid {
  max-width: var(--sh-wrap);
  margin-inline: auto;
  padding: 52px var(--sh-pad) 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}

.sl-foot__about p {
  font: 400 13px/1.6 'Outfit', system-ui, sans-serif;
  color: var(--sh-mut);
  margin: 14px 0 0;
  max-width: 280px;
  text-wrap: pretty;
}
.sl-foot__about small {
  display: block;
  font: 400 12px/1.5 'Outfit', system-ui, sans-serif;
  color: var(--sh-fnt);
  margin-top: 22px;
}
.sl-foot__about a { color: var(--sh-mut); }
.sl-foot h2 {
  font: 600 10.5px/1 'Outfit', system-ui, sans-serif;
  color: var(--sh-fnt);
  letter-spacing: 1.2px;
  margin: 0;
}
.sl-foot ul { display: flex; flex-direction: column; gap: 6px; margin: 13px 0 0; padding: 0; }
.sl-foot li {
  list-style: none;
  font: 400 13.5px/1.35 'Outfit', system-ui, sans-serif;
  color: var(--sh-mut);
  min-height: 24px;
  display: flex;
  align-items: center;
}
.sl-foot li a:hover { color: var(--sh-tx); opacity: 1; }

.sl-anim .sl-mega,
.sl-anim .sl-find { animation: sl-drop .2s var(--sh-ease) both; }

@keyframes sl-drop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .sl-mega__grid { grid-template-columns: 1fr; gap: 18px; }
  .sl-mega__cats { flex-direction: row; flex-wrap: wrap; }
  .sl-mega__cat { width: auto; }
  .sl-mega__cat svg { display: none; }
  .sl-foot__grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --sh-pad: 18px; }

  .sl-head {
    background: var(--sh-panel);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .sl-head__row { flex-wrap: wrap; gap: 10px; padding-top: 10px; min-height: 0; }
  .sl-brand { font-size: 16px; gap: 6px; }
  .sl-mark { width: 23px; height: 23px; }
  .sl-icon { width: 32px; height: 32px; }
  .sl-account { height: 34px; padding: 0 4px 0 13px; gap: 8px; font-size: 12.5px; }
  .sl-account .sl-pip { width: 26px; height: 26px; }
  .sl-nav {
    order: 3;
    flex: 1 0 100%;
    justify-content: flex-start;
    gap: 4px;
    padding-bottom: 9px;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .sl-nav::-webkit-scrollbar { display: none; }
  .sl-nav__item { height: 30px; padding: 0 12px; border-radius: 15px; font-size: 13px; }
  .sl-nav__item--caret { padding: 0 10px 0 12px; }

  .sl-mega { max-height: 70vh; overflow-y: auto; overscroll-behavior: contain; }
  .sl-mega__grid { padding-block: 16px 20px; }
  .sl-mega__close { top: 8px; }
  .sl-foot { margin-top: 56px; }
  .sl-foot__grid { grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 36px; }
}

@media (prefers-reduced-transparency: reduce) {
  .sl-head {
    background: var(--sh-panel);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sl-anim .sl-mega,
  .sl-anim .sl-find { animation: none; }
  .sl-nav__item--caret svg { transition: none; }
}

@media (forced-colors: active) {
  .sl-icon,
  .sl-find__box { border: 1px solid; }
  .sl-nav__item[aria-current='page'],
  .sl-nav__item[aria-expanded='true'],
  .sl-mega__cat[aria-selected='true'] { border: 1px solid; }
  .sl-head { border-bottom: 1px solid; }
}

.m-drop {
  position: absolute;
  top: 48px;
  inset-inline: 0;
  z-index: 90;
  max-height: 392px;
  padding: 8px;
  overflow: auto;
  border-radius: 16px;
  background: var(--sh-panel);
  box-shadow: inset 0 0 0 1px var(--sh-ring), 0 30px 60px -30px rgba(0, 0, 0, .7);
}
.m-drop[hidden] { display: none; }
.m-drop-title {
  padding: 10px 10px 8px;
  color: var(--sh-fnt);
  font: 600 .625rem/1 'Outfit', system-ui, sans-serif;
  letter-spacing: 1.1px;
}
.m-drop-row {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 46px;
  padding-inline: 10px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: inherit;
  text-align: start;
}
.m-drop-row:hover { background: var(--sh-rule); opacity: 1; }

@media (pointer: coarse) {
  .sl-nav__item,
  .sl-mega__list a,
  .sl-mega__all,
  .sl-mega__cat,
  .sl-foot a,
  .sl-icon,
  .sl-account { position: relative; }

  .sl-nav__item::after,
  .sl-mega__list a::after,
  .sl-mega__all::after,
  .sl-mega__cat::after,
  .sl-foot a::after,
  .sl-icon::after,
  .sl-account::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100%, 24px);
    height: max(100%, 24px);
    transform: translate(-50%, -50%);
  }
}
