@import url("https://use.typekit.net/umk4gfq.css");
.main-navbar {
  background-color: #212529;
  transition: opacity 0.7s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.main-navbar.navbar-transparent {
  opacity: 0;
  box-shadow: none;
}
.main-navbar .navbar-brand img {
  width: 120px;
}
@media (max-width: 768px) {
  .main-navbar .navbar-brand img {
    width: 30px;
  }
}
.main-navbar .navbar-toggler {
  border: none;
}
.main-navbar .navbar-toggler:focus {
  border: none;
  box-shadow: none;
}
.main-navbar .navbar-toggler:focus-visible {
  border: none;
  box-shadow: none;
}
.main-navbar .navbar-toggler svg {
  height: 2.5rem;
  fill: #fff;
}
@media (max-width: 768px) {
  .main-navbar .navbar-toggler svg {
    height: 1.25rem;
  }
}

.main-menu .navbar-collapse {
  position: absolute;
  top: 55px;
  right: 20px;
  min-width: 350px;
  max-width: 400px;
  background-color: #212529;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  z-index: 1024;
}
@media (max-width: 576px) {
  .main-menu .navbar-collapse {
    top: 45px;
    right: 0;
    min-width: 100%;
  }
}
.main-menu .navbar-collapse .navbar-nav .nav-item .nav-link {
  font: normal normal normal 1.25rem/1.25rem "proxima-nova", sans-serif;
  padding: 5px 30px;
  color: #fff;
}
.main-menu .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  background-color: #eaeb29;
  color: #000;
}
@media (max-width: 768px) {
  .main-menu .navbar-collapse .navbar-nav .nav-item .nav-link {
    font: normal normal normal 1.125rem/1.125rem "proxima-nova", sans-serif;
  }
}

:root {
  --bg2: #141614;
  --bg3: #1a1d1a;
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.14);
  --text: #e8ebe6;
  --muted: #7a8a76;
  --accent: #c8f060;
  --accent2: #60d4f0;
  --accent3: #f07060;
  --warn: #f0b060;
  --baluarte: #60d4f0;
  --paso: #a8f060;
  --yaqui: #f07860;
  --font-mono: 'IBM Plex Mono', monospace;
  --font: 'IBM Plex Sans', sans-serif;
  --r: 4px;
  --r2: 8px;
}

.header {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin-bottom: 36px;
}

.header .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.header h1 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.header .sub {
  color: var(--muted);
  font-size: 13px;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.kpi {
  background: var(--bg2);
  border: 0.5px solid var(--border2);
  border-radius: var(--r2);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
}

.kpi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color, var(--accent));
}

.kpi .label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kpi .value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.kpi .detail {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.grid3 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.full {
  margin-bottom: 20px;
}

.panel {
  background: var(--bg2);
  border: 0.5px solid var(--border2);
  border-radius: var(--r2);
  overflow: hidden;
}

.panel-head {
  padding: 14px 18px 12px;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.panel-head h2 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(200, 240, 96, 0.12);
  color: var(--accent);
  border: 0.5px solid rgba(200, 240, 96, 0.25);
}

.panel-body {
  padding: 16px 18px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: var(--r);
  padding: 4px 6px;
  transition: background 0.15s;
}

.bar-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.bar-row.active {
  background: rgba(200, 240, 96, 0.06);
}

.bar-label {
  font-size: 12px;
  color: var(--muted);
  width: 170px;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bar-label.narrow {
  width: 100px;
}

.bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text);
  width: 72px;
  text-align: right;
  flex-shrink: 0;
}

.bar-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}

.donut-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.donut-legend {
  flex: 1;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.legend-pct {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-left: auto;
}

.sim-ring-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sim-stats {
  flex: 1;
}

.sim-stat {
  margin-bottom: 12px;
}

.sim-stat .s-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.sim-stat .s-val {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
}

/* Year chart */
.year-chart {
  padding: 16px 18px 12px;
}

.year-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.year-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  cursor: pointer;
}

.year-col:hover .y-stack {
  filter: brightness(1.25);
}

.year-col.active .y-year {
  color: var(--accent);
}

.year-col.active .y-stack {
  outline: 1.5px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.y-val-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  height: 14px;
  line-height: 14px;
  text-align: center;
  margin-bottom: 8px;
}

.y-stack {
  width: 100%;
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  transition: filter 0.15s;
}

.y-year {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
}

.y-count {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
}

.year-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--muted);
}

.year-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.year-legend i {
  display: inline-block;
  width: 10px;
  height: 8px;
  border-radius: 1px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

thead th {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 8px 10px;
  border-bottom: 0.5px solid var(--border2);
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

thead th:hover {
  color: var(--text);
}

thead th .sa {
  margin-left: 4px;
  opacity: 0.4;
}

thead th.sorted .sa {
  opacity: 1;
  color: var(--accent);
}

tbody tr {
  border-bottom: 0.5px solid var(--border);
  transition: background 0.1s;
  cursor: pointer;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

tbody td {
  padding: 8px 10px;
  vertical-align: middle;
}

.mono {
  font-family: var(--font-mono);
}

.tag {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 10px;
  white-space: nowrap;
}

.tag-lp {
  background: rgba(96, 212, 240, 0.12);
  color: var(--accent2);
  border: 0.5px solid rgba(96, 212, 240, 0.2);
}

.tag-ad {
  background: rgba(240, 112, 96, 0.14);
  color: var(--accent3);
  border: 0.5px solid rgba(240, 112, 96, 0.25);
}

.tag-inv {
  background: rgba(240, 176, 96, 0.12);
  color: var(--warn);
  border: 0.5px solid rgba(240, 176, 96, 0.2);
}

.tag-sim {
  background: rgba(240, 176, 96, 0.15);
  color: var(--warn);
  border: 0.5px solid rgba(240, 176, 96, 0.28);
}

.tag-proy {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 10px;
}

.tag-baluarte {
  background: rgba(96, 212, 240, 0.12);
  color: var(--baluarte);
  border: 0.5px solid rgba(96, 212, 240, 0.2);
}

.tag-paso {
  background: rgba(168, 240, 96, 0.12);
  color: var(--paso);
  border: 0.5px solid rgba(168, 240, 96, 0.2);
}

.tag-yaqui {
  background: rgba(240, 120, 96, 0.12);
  color: var(--yaqui);
  border: 0.5px solid rgba(240, 120, 96, 0.2);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 0.5px solid var(--border);
  align-items: center;
}

.filter-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 4px;
}

.chip {
  padding: 4px 11px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  border: 0.5px solid var(--border2);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}

.chip:hover {
  color: var(--text);
}

.chip.active {
  background: rgba(200, 240, 96, 0.12);
  color: var(--accent);
  border-color: rgba(200, 240, 96, 0.3);
}

.chip.red.active {
  background: rgba(240, 112, 96, 0.14);
  color: var(--accent3);
  border-color: rgba(240, 112, 96, 0.3);
}

.chip.blue.active {
  background: rgba(96, 212, 240, 0.12);
  color: var(--accent2);
  border-color: rgba(96, 212, 240, 0.25);
}

.result-count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.scroll-table {
  max-height: 420px;
  overflow-y: auto;
}

.scroll-table::-webkit-scrollbar {
  width: 4px;
}

.scroll-table::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 2px;
}

#detail {
  position: fixed;
  right: -440px;
  top: 0;
  bottom: 0;
  width: 440px;
  background: var(--bg3);
  border-left: 0.5px solid var(--border2);
  padding: 28px 24px;
  overflow-y: auto;
  transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
}

#detail.open {
  right: 0;
}

#detail-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
}

#detail-close:hover {
  color: var(--text);
}

.detail-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.detail-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}

.detail-field {
  margin-bottom: 14px;
}

.df-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.df-val {
  font-size: 13px;
  color: var(--text);
}

.df-val a {
  color: var(--accent2);
  text-decoration: none;
  word-break: break-all;
  font-family: var(--font-mono);
  font-size: 11px;
}

.df-val a:hover {
  text-decoration: underline;
}

.detail-monto {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.overlay.show {
  display: block;
}

.footnote {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border);
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid2,
  .grid3 {
    grid-template-columns: 1fr;
  }
  .bar-label {
    width: 110px;
  }
  #detail {
    width: 100%;
    right: -100%;
  }
}
footer {
  background-color: #212529;
  color: #fff;
}
footer img.logo-credits {
  width: 150px;
}
footer .credits-container h4 {
  display: inline-block;
  background-color: #eaeb29;
  padding: 0px 35px;
  font: normal normal bold 1.0625rem/1.375rem "proxima-nova", sans-serif;
  text-transform: uppercase;
  color: #000;
}
footer .credits-container p {
  font: normal normal normal 1.0625rem/1.25rem "proxima-nova", sans-serif;
  margin-bottom: 0;
}
footer .copyright {
  font: normal normal normal 0.75rem/0.9375rem "proxima-nova", sans-serif;
  text-transform: uppercase;
}

body {
  font-family: "proxima-nova", sans-serif;
  letter-spacing: 0px;
}
body.zoom-locked {
  overflow: hidden !important;
  padding-right: var(--scrollbar-compensate, 0px);
}

header .ratio {
  background-size: cover;
  background-position: center;
  background-color: #000;
}

main {
  background-color: #e7e7e7;
}

.bg-dark {
  background-color: #212529;
  color: #fff;
}
.bg-dark .note-text {
  color: #fff;
}

.separator-icon {
  width: 7rem;
}

.intro .title-container h1 {
  font-family: "proxima-nova", sans-serif;
  font-size: 2.1875rem;
  line-height: 2.1875rem;
  font-style: normal;
  font-weight: 800;
  color: #000;
}
@media (max-width: 768px) {
  .intro .title-container h1 {
    font-family: "proxima-nova", sans-serif;
    font-size: 1.875rem;
    line-height: 1.875rem;
    font-style: normal;
    font-weight: 800;
  }
}
.intro .hash-text {
  font-family: "proxima-nova", sans-serif;
  font-size: 1.6875rem;
  line-height: 2.0625rem;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 768px) {
  .intro .hash-text {
    font-family: "proxima-nova", sans-serif;
    font-size: 1.25rem;
    line-height: 1.625rem;
    font-style: normal;
    font-weight: 400;
  }
}
.intro img.arrow {
  width: 90px;
}
.intro .intro-text {
  font-family: "proxima-nova", sans-serif;
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-style: normal;
  font-weight: 100;
}
@media (max-width: 768px) {
  .intro .intro-text {
    font-family: "proxima-nova", sans-serif;
    font-size: 1.125rem;
    line-height: 1.125rem;
    font-style: normal;
    font-weight: 100;
  }
}

.share-container svg {
  height: 1.5rem;
  fill: #000;
}

.author,
.date {
  font-family: "proxima-nova", sans-serif;
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .author,
  .date {
    font-family: "proxima-nova", sans-serif;
    font-size: 1rem;
    line-height: 1rem;
    font-style: normal;
    font-weight: 100;
  }
}

.figure-caption {
  font-size: 1rem;
  line-height: 1;
}

.note-audio-container {
  position: relative;
  background-color: #000;
  color: #fff;
  border-radius: 15px;
}
.note-audio-container .note-image-container {
  border: 5px solid #fff;
  border-radius: 50%;
  display: block;
  height: auto;
  margin: auto;
  max-height: 180px;
  max-width: 180px;
  overflow: hidden;
  width: 100%;
}
.note-audio-container .note-image-container img {
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 180px;
}
.note-audio-container .note-audio-text {
  padding-bottom: 80px;
}
.note-audio-container .note-audio-text h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 2.1875rem;
  line-height: 2.1875rem;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 768px) {
  .note-audio-container .note-audio-text h3 {
    font-family: "proxima-nova", sans-serif;
    font-size: 1.875rem;
    line-height: 1.875rem;
    font-style: normal;
    font-weight: 700;
  }
}
.note-audio-container .note-audio-text .line {
  width: 50px;
}
.note-audio-container .note-audio-text p {
  font-family: "proxima-nova", sans-serif;
  font-size: 1.4375rem;
  line-height: 1.875rem;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 768px) {
  .note-audio-container .note-audio-text p {
    font-family: "proxima-nova", sans-serif;
    font-size: 1.1875rem;
    line-height: 1.625rem;
    font-style: normal;
    font-weight: 400;
  }
}
.note-audio-container .headphones-icon {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaeb29;
  color: #000;
  border-radius: 100%;
  cursor: pointer;
}
@media (max-width: 768px) {
  .note-audio-container .headphones-icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .note-audio-container .headphones-icon img {
    width: 35px;
  }
}
.note-audio-container .headphones-icon svg {
  height: 35px;
  fill: #000;
}

.note-text {
  font-family: "proxima-nova", sans-serif;
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-style: normal;
  font-weight: 400;
  color: #000;
}
@media (max-width: 768px) {
  .note-text {
    font-family: "proxima-nova", sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    font-style: normal;
    font-weight: 400;
  }
}
.note-text h2 {
  font-family: "proxima-nova", sans-serif;
  font-size: 1.5625rem;
  line-height: 1.5625rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
}
@media (max-width: 768px) {
  .note-text h2 {
    font-family: "proxima-nova", sans-serif;
    font-size: 1.3125rem;
    line-height: 1.3125rem;
    font-style: normal;
    font-weight: 700;
  }
}
.note-text h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-style: normal;
  font-weight: 400;
  color: #000;
}

.container-icon {
  text-align: center;
}
.container-icon.borders {
  border-left: 1px dashed #eaeb29;
  border-right: 1px dashed #eaeb29;
}
@media (max-width: 768px) {
  .container-icon.borders {
    border: none;
  }
}
.container-icon .red-icon {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 250px;
  height: 250px;
  background: #eaeb29;
  color: #000;
  border-radius: 100%;
}
.container-icon .red-icon .image-icon {
  width: 40%;
  height: auto;
}
.container-icon .text-icon {
  font-family: "proxima-nova", sans-serif;
  font-size: 1.375rem;
  line-height: 1.375rem;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  margin-top: 2rem;
  text-align: center;
}
.container-icon .text-icon .numbers {
  font-family: "proxima-nova", sans-serif;
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-style: normal;
  font-weight: 800;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaeb29;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  top: 90%;
  opacity: 1;
}
@media (max-width: 768px) {
  .carousel .carousel-control-prev,
  .carousel .carousel-control-next {
    top: 50%;
  }
}
.carousel .carousel-control-prev svg,
.carousel .carousel-control-next svg {
  fill: #212529;
}
.carousel .carousel-control-prev {
  left: 5%;
}
.carousel .carousel-control-next {
  right: 5%;
}

img.zoomable {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640' width='24' height='24'><path fill='%23000000' stroke='%23ffffff' stroke-width='30' d='M264 96L120 96C106.7 96 96 106.7 96 120L96 264C96 273.7 101.8 282.5 110.8 286.2C119.8 289.9 130.1 287.8 137 281L177 241L256 320L177 399L137 359C130.1 352.1 119.8 350.1 110.8 353.8C101.8 357.5 96 366.3 96 376L96 520C96 533.3 106.7 544 120 544L264 544C273.7 544 282.5 538.2 286.2 529.2C289.9 520.2 287.9 509.9 281 503L241 463L320 384L399 463L359 503C352.1 509.9 350.1 520.2 353.8 529.2C357.5 538.2 366.3 544 376 544L520 544C533.3 544 544 533.3 544 520L544 376C544 366.3 538.2 357.5 529.2 353.8C520.2 350.1 509.9 352.1 503 359L463 399L384 320L463 241L503 281C509.9 287.9 520.2 289.9 529.2 286.2C538.2 282.5 544 273.7 544 264L544 120C544 106.7 533.3 96 520 96L376 96C366.3 96 357.5 101.8 353.8 110.8C350.1 119.8 352.2 130.1 359 137L399 177L320 256L241 177L281 137C287.9 130.1 289.9 119.8 286.2 110.8C282.5 101.8 273.7 96 264 96z'/></svg>") 12 12, pointer;
  transition: opacity 0.3s ease;
  will-change: opacity;
}

.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 17, 15, 0);
  z-index: 1060;
  pointer-events: none;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-overlay img {
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  transform-origin: center center;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: none;
  max-height: none;
  -o-object-fit: contain;
     object-fit: contain;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}
.zoom-overlay.active {
  background-color: rgba(15, 17, 15, 0.9);
  pointer-events: auto;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640' width='24' height='24'><path fill='%23000000' stroke='%23ffffff' stroke-width='30' d='M520 288L376 288C362.7 288 352 277.3 352 264L352 120C352 110.3 357.8 101.5 366.8 97.8C375.8 94.1 386.1 96.2 393 103L433 143L506.4 69.6C510 66 514.9 64 520 64C525.1 64 530 66 533.7 69.7L570.4 106.4C574 110 576 114.9 576 120C576 125.1 574 130 570.3 133.7L497 207L537 247C543.9 253.9 545.9 264.2 542.2 273.2C538.5 282.2 529.7 288 520 288zM520 352C529.7 352 538.5 357.8 542.2 366.8C545.9 375.8 543.9 386.1 537 393L497 433L570.4 506.4C574 510 576.1 514.9 576.1 520.1C576.1 525.3 574.1 530.1 570.4 533.8L533.7 570.5C530 574 525.1 576 520 576C514.9 576 510 574 506.3 570.3L433 497L393 537C386.1 543.9 375.8 545.9 366.8 542.2C357.8 538.5 352 529.7 352 520L352 376C352 362.7 362.7 352 376 352L520 352zM264 352C277.3 352 288 362.7 288 376L288 520C288 529.7 282.2 538.5 273.2 542.2C264.2 545.9 253.9 543.9 247 537L207 497L133.6 570.4C130 574 125.1 576 120 576C114.9 576 110 574 106.3 570.3L69.7 533.7C66 530 64 525.1 64 520C64 514.9 66 510 69.7 506.3L143 433L103 393C96.1 386.1 94.1 375.8 97.8 366.8C101.5 357.8 110.3 352 120 352L264 352zM120 288C110.3 288 101.5 282.2 97.8 273.2C94.1 264.2 96.2 253.9 103 247L143 207L69.7 133.7C66 130 64 125.1 64 120C64 114.9 66 110 69.7 106.3L106.3 69.7C110 66 114.9 64 120 64C125.1 64 130 66 133.7 69.7L207 143L247 103C253.9 96.1 264.2 94.1 273.2 97.8C282.2 101.5 288 110.3 288 120L288 264C288 277.3 277.3 288 264 288L120 288z'/></svg>") 12 12, pointer;
}
.zoom-overlay.active img {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}

.zoom-hidden {
  opacity: 0.01 !important;
}

#sankey {
  width: 100%;
  height: 95vh;
  margin: 0 auto;
}

@media (max-width: 500px) {
  .highcharts-sankey-series .highcharts-data-label span {
    margin-top: 2px !important;
    line-height: 1.2 !important;
  }
}

.tooltip {
  pointer-events: none !important;
  background-color: #212529;
  color: #fff;
  font-family: "proxima-nova", sans-serif;
  font-weight: bold;
  line-height: 1.1;
  border-radius: 5px;
}/*# sourceMappingURL=main.css.map */