*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --map-font-family: "Montserrat", "Montserrat Variable", ui-sans-serif, system-ui,
    sans-serif;
  --bg-page: #ffffff;
  --legend-title: #166534;
  --caribe: #ffae26;
  --noroccidental: #06b6d4;
  --nororiental: #84cc16;
  --central: #db2777;
  --jaguar-label: #ea580c;
  --map-region-caribe: #f5a623;
  --map-region-noroccidental: #00ccff;
  --map-region-nororiental: #7ed321;
  --map-region-central: #1b3b32;
  --toolbar-group-bg: #ebebeb;
  --toolbar-btn-bg: transparent;
  --toolbar-icon: #79797a;
  --toolbar-panel-w: 44px;
  --toolbar-radius: 14px;
  --toolbar-divider: rgba(121, 121, 122, 0.22);
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  --radius-label: 8px;
  --app-pad-y: 24px;
  --app-pad-x: 16px;
  --map-wrap-w: min(920px, 96vw);
  --map-wrap-max-h: min(88vh, 960px);
  --legend-pad-x: clamp(8px, 1.8vw, 10px);
  --toolbar-btn-size: 36px;
  --toolbar-gap: 8px;
  --map-layout-gap: clamp(12px, 2.2vw, 20px);
  --marker-text-max: none;
  --marker-fs: 0.72rem;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--map-font-family);
  background: var(--bg-page);
  color: #1a1a1a;
}

.app,
.map-layout {
  font-family: var(--map-font-family);
}

.app {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--app-pad-y) var(--app-pad-x) calc(var(--app-pad-y) * 2);
  width: 100%;
  box-sizing: border-box;
}

.map-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--map-layout-gap);
  width: 100%;
  max-width: min(1320px, 100%);
  margin: 0 auto;
  text-transform: none;
}

.map-layout__map {
  flex: 0 0
    calc((100% - var(--map-layout-gap)) * (var(--map-c1, 75) / 100));
  min-width: 0;
}

.map-layout__side {
  flex: 0 0
    calc((100% - var(--map-layout-gap)) * (var(--map-c2, 25) / 100));
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(12px, 2vw, 18px);
}

.map-layout__map .map-wrap {
  width: 100%;
  max-width: 100%;
  --map-wrap-w: 100%;
}

.map-wrap {
  position: relative;
  width: var(--map-wrap-w);
  aspect-ratio: 1048 / 1410;
  height: auto;
  max-height: var(--map-wrap-max-h);
  max-width: 100%;
}

.map-wrap:fullscreen {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  padding: 0;
  background: #fff;
}

.map-wrap:fullscreen .map-stage {
  border-radius: 0;
  min-height: 100vh;
}

.map-stage {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  touch-action: pan-y;
}

.map-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  box-shadow:
    inset 0 0 20px 9px rgba(255, 255, 255, 0.85),
    inset 0 0 40px 15px rgba(255, 255, 255, 0.45);
}

.map-stage.is-pan-ready {
  touch-action: none;
}

.map-stage.is-pinching {
  touch-action: none;
}

.map-pan {
  position: relative;
  z-index: 1;
  transform-origin: 0 0;
}

.map-svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
  pointer-events: auto;
}

.map-region-titles-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.map-region-title-block {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06em;
  width: max-content;
  max-width: none;
  font-family: var(--map-font-family);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-rendering: geometricPrecision;
  line-height: 1.05;
}

.map-region-title__line {
  display: block;
  white-space: nowrap;
  text-transform: uppercase;
}

.map-region-title__line--es,
.map-region-title__line--en {
  font-size: clamp(1.35rem, 3.1vw, 2.2rem);
}

.map-region-title__line--en {
  display: none;
  text-transform: uppercase;
}

html[lang="en"] .map-region-title-block .map-region-title__line--es {
  display: none;
}

html[lang="en"] .map-region-title-block .map-region-title__line--en {
  display: block;
}

.map-region-title-block--caribe {
  left: 50%;
  top: calc(100% * 14 / 1410);
  transform: translate(-50%, 0);
  text-align: center;
}

.map-region-title-block--noroccidental {
  left: calc(100% * 72 / 1048);
  top: calc(100% * 665 / 1410);
  transform: translate(0, -50%) rotate(-90deg);
  transform-origin: left center;
  align-items: flex-start;
  text-align: left;
}

.map-region-title-block--nororiental {
  left: calc(100% * 976 / 1048);
  top: calc(100% * 665 / 1410);
  transform: translate(-100%, -50%) rotate(90deg);
  transform-origin: right center;
  align-items: flex-end;
  text-align: right;
}

.map-region-title-block--central {
  left: calc(100% * 200 / 1048);
  top: calc(100% * 1295 / 1410);
  transform: translate(0, -100%);
  align-items: flex-start;
  text-align: left;
}

.map-region-title-block--caribe .map-region-title__line {
  color: var(--map-region-caribe);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

.map-region-title-block--noroccidental .map-region-title__line {
  color: var(--map-region-noroccidental);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.map-region-title-block--nororiental .map-region-title__line {
  color: var(--map-region-nororiental);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.map-region-title-block--central .map-region-title__line {
  color: var(--map-region-central);
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.85)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

#mapInlineSvg .map-hotspot__hit {
  fill: transparent;
  cursor: pointer;
  transition: fill 0.15s ease;
}

#mapInlineSvg a.map-hotspot:hover .map-hotspot__hit {
  fill: rgba(37, 99, 235, 0.14);
}

#mapInlineSvg a.map-hotspot:focus-visible {
  outline: none;
}

#mapInlineSvg a.map-hotspot:focus-visible .map-hotspot__hit {
  fill: rgba(37, 99, 235, 0.22);
}

#mapInlineSvg a.map-hotspot.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.markers-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.map-stage.is-panning {
  cursor: grabbing;
}

.map-stage.is-pan-ready:not(.is-panning) {
  cursor: grab;
}

.marker {
  position: absolute;
  transform: translate(-50%, -100%);
  transform-origin: center bottom;
  margin: 0;
  padding: 0;
}

a.marker {
  text-decoration: none;
  color: inherit;
  font-family: var(--map-font-family);
  cursor: pointer;
  pointer-events: auto;
  text-transform: none;
}

a.marker:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 3px;
  border-radius: 4px;
}

.marker.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.marker__cluster {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.marker__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.marker__label {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  padding: 5px 22px 5px 14px;
  border-radius: 999px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.13);
  white-space: nowrap;
  max-width: none;
  margin-right: -14px;
  z-index: 1;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  text-transform: none;
}

.marker__label--right {
  right: auto;
  left: 100%;
  margin-right: 0;
  margin-left: -14px;
  padding: 5px 14px 5px 22px;
}

.marker__text {
  font-weight: var(--peso_pajaros, 400);
  font-size: var(--marker-fs);
  letter-spacing: 0.01em;
  text-transform: none;
}

.marker__icon-wrap {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--marker-ring, #1a1a1a);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.marker__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.marker__caret {
  width: 0;
  height: 0;
  margin-top: -1px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--marker-ring, #1a1a1a);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.18));
}

.marker[data-region="caribe"] {
  --marker-ring: var(--caribe);
}

.marker[data-region="nororiental"] {
  --marker-ring: #3f6212;
}

.marker[data-region="noroccidental"] {
  --marker-ring: #0f766e;
}

.marker[data-region="central"] {
  --marker-ring: #9d174d;
}

.marker[data-accent="jaguar"] {
  --marker-ring: var(--jaguar-label);
}

.marker[data-reserva="arrierito"] {
  --marker-ring: #3f6212;
}

.marker__label--caribe {
  background: var(--caribe);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.marker__label--nororiental {
  background: var(--nororiental);
}

.marker__label--noroccidental {
  background: var(--noroccidental);
}

.marker__label--central {
  background: var(--central);
}

.marker__label--jaguar {
  background: var(--jaguar-label);
}

.marker__label--arrierito {
  background: var(--nororiental);
}

.markers-layer.labels-off .marker__label {
  display: none;
}

.legend {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  width: 100%;
  max-height: none;
  height: auto;
  overflow: visible;
  padding: clamp(8px, 1.8vw, 12px) var(--legend-pad-x) clamp(8px, 1.8vw, 11px);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
  container-type: inline-size;
  container-name: legend;
}

.legend.is-collapsed {
  max-height: none;
  overflow: visible;
}

.legend.is-collapsed .legend__list {
  display: none;
}

.legend.is-collapsed .legend__header {
  margin-bottom: 0;
}

.legend.is-collapsed .legend__toggle-icon {
  transform: rotate(180deg);
}

.legend__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: clamp(4px, 1.2vw, 7px);
}

.legend__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: calc(clamp(0.55rem, 3.2vw, 1.02rem) * var(--tamano_l_region, 1));
  letter-spacing: 0.14em;
  font-weight: var(--peso_l_region, 800);
  color: var(--legend-title);
  cursor: default;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  text-decoration: none;
}

@supports (width: 1cqi) {
  .legend__title {
    font-size: calc(clamp(0.55rem, 9.5cqi, 1.02rem) * var(--tamano_l_region, 1));
  }
}

.legend__toggle {
  flex-shrink: 0;
  margin: -2px -4px 0 0;
  padding: 4px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--legend-title);
  cursor: pointer;
  line-height: 0;
  font-family: var(--map-font-family);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.legend__toggle:hover {
  background: rgba(22, 101, 52, 0.1);
  color: #14532d;
}

.legend__toggle:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.legend__toggle-icon {
  display: block;
  transition: transform 0.2s ease;
}

.legend__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1.3vw, 8px);
}

.legend__item {
  display: flex;
  gap: clamp(5px, 1.2vw, 7px);
  align-items: flex-start;
  width: 100%;
  padding: clamp(4px, 1.2vw, 6px) clamp(6px, 1.5vw, 8px);
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-family: var(--map-font-family);
  color: inherit;
  text-transform: none;
  text-decoration: none;
  transition: background 0.2s ease, opacity 0.15s, box-shadow 0.2s ease, transform 0.2s ease;
  container-type: inline-size;
  container-name: legend-row;
}

.legend__item:hover {
  background: rgba(22, 101, 52, 0.07);
  box-shadow: 0 2px 12px rgba(22, 101, 52, 0.08);
  transform: translateY(-1px);
}

.legend__item:hover .legend__region-title {
  color: #14532d;
}

.legend__item:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.legend__item.is-active {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.legend__item.is-active:hover {
  background: rgba(255, 255, 255, 0.95);
}

.legend__item:not(.is-active) {
  opacity: 0.45;
}

.legend__item[data-filter="caribe"] {
  --legend-color: var(--caribe);
}

.legend__item[data-filter="nororiental"] {
  --legend-color: var(--nororiental);
}

.legend__item[data-filter="noroccidental"] {
  --legend-color: var(--noroccidental);
}

.legend__item[data-filter="central"] {
  --legend-color: var(--central);
}

.legend__item[data-filter] .legend__desc {
  color: #1a1a1a;
  opacity: 1;
  text-transform: none;
  text-decoration: none;
}

.legend__icon-wrap {
  flex-shrink: 0;
  width: clamp(28px, 7.5vw, 32px);
  height: clamp(28px, 7.5vw, 32px);
  border-radius: 6px;
  background: #fafafa;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1.5px var(--legend-color, #e5e7eb);
}

.legend__icon {
  width: clamp(20px, 5.5vw, 24px);
  height: clamp(20px, 5.5vw, 24px);
  object-fit: contain;
}

.legend__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.legend__region-title {
  display: block;
  font-weight: var(--peso_l_region, 800);
  letter-spacing: 0.02em;
  font-size: calc(clamp(0.36rem, 2.5vw, 0.88rem) * var(--tamano_l_region, 1));
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: clip;
  color: var(--legend-title);
  text-decoration: none;
  transition: color 0.2s ease;
}

@supports (width: 1cqi) {
  .legend__region-title {
    font-size: calc(clamp(0.36rem, 7.5cqi, 0.88rem) * var(--tamano_l_region, 1));
  }
}

.legend__desc {
  font-size: calc(clamp(0.6rem, 1.8vw, 0.72rem) * var(--tamano_l_region, 1));
  line-height: 1.35;
  font-weight: var(--peso_l_region, 500);
  color: #475569;
  white-space: normal;
  overflow: visible;
  display: block;
  text-transform: none;
  text-decoration: none;
}

.map-wrap .toolbar {
  position: absolute;
  bottom: clamp(8px, 1.2vw, 14px);
  right: clamp(8px, 1.2vw, 14px);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(6px, 1.2vw, 10px);
  pointer-events: none;
}

.toolbar > * {
  pointer-events: auto;
}

.toolbar__group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  width: var(--toolbar-panel-w);
  min-width: var(--toolbar-panel-w);
  background: var(--toolbar-group-bg);
  border-radius: var(--toolbar-radius);
  border: 1px solid rgba(121, 121, 122, 0.22);
  box-shadow: none;
  overflow: hidden;
}

.toolbar__btn {
  width: 100%;
  height: var(--toolbar-btn-size);
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  border-top: 1px solid var(--toolbar-divider);
  background: var(--toolbar-btn-bg);
  color: var(--toolbar-icon);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-family: var(--map-font-family);
  transition: background 0.15s ease, color 0.15s ease;
}

.toolbar__btn:first-child {
  border-top: none;
}

.toolbar__btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--toolbar-icon);
}

.toolbar__btn:active {
  background: rgba(0, 0, 0, 0.08);
}

.toolbar__btn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: -2px;
  position: relative;
  z-index: 1;
}

.toolbar__btn.is-on {
  background: rgba(0, 0, 0, 0.08);
  color: var(--toolbar-icon);
}

.toolbar__svg {
  display: block;
}

.map-wrap .toolbar .toolbar__btn svg.toolbar__svg--fill path {
  fill: var(--toolbar-icon) !important;
}

.toolbar .toolbar__btn svg.toolbar__svg--fill path {
  fill: var(--toolbar-icon) !important;
}

@media (max-width: 400px) {
  .app {
    padding-top: max(var(--app-pad-y), env(safe-area-inset-top, 0px));
    padding-left: max(var(--app-pad-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--app-pad-x), env(safe-area-inset-right, 0px));
    padding-bottom: calc(var(--app-pad-y) * 2 + env(safe-area-inset-bottom, 0px));
  }

  :root {
    --app-pad-y: 8px;
    --app-pad-x: 8px;
    --map-wrap-w: 100%;
    --map-wrap-max-h: min(72vh, 640px);
    --legend-pad-x: 7px;
    --toolbar-btn-size: 34px;
    --toolbar-panel-w: 40px;
    --toolbar-gap: 5px;
    --toolbar-radius: 12px;
    --marker-fs: 0.6rem;
    --marker-text-max: min(132px, 58vw);
  }

  .map-layout {
    flex-direction: column;
    max-width: 100%;
  }

  .map-layout__map,
  .map-layout__side {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .map-stage {
    border-radius: 8px;
  }

  .map-region-title__line--es,
  .map-region-title__line--en {
    font-size: clamp(0.95rem, 4.4vw, 1.25rem);
  }

  .legend__title {
    font-size: calc(clamp(0.48rem, 3.4vw, 0.82rem) * var(--tamano_l_region, 1));
    letter-spacing: 0.1em;
  }

  .legend__region-title {
    font-size: calc(clamp(0.34rem, 2.8vw, 0.7rem) * var(--tamano_l_region, 1));
  }

  @supports (width: 1cqi) {
    .legend__title {
      font-size: calc(clamp(0.48rem, 8cqi, 0.82rem) * var(--tamano_l_region, 1));
    }

    .legend__region-title {
      font-size: calc(clamp(0.34rem, 6.5cqi, 0.7rem) * var(--tamano_l_region, 1));
    }
  }

  .legend__desc {
    font-size: calc(0.58rem * var(--tamano_l_region, 1));
    line-height: 1.35;
  }

  .legend__icon-wrap {
    width: 26px;
    height: 26px;
  }

  .legend__icon {
    width: 18px;
    height: 18px;
  }

  .marker__icon-wrap {
    width: 26px;
    height: 26px;
  }

  .marker__icon {
    width: 17px;
    height: 17px;
  }

  .marker__caret {
    border-left-width: 4px;
    border-right-width: 4px;
    border-top-width: 5px;
  }

  .tooltip {
    max-width: min(240px, calc(100vw - 20px));
    font-size: 0.74rem;
  }
}

@media (min-width: 401px) and (max-width: 700px) {
  .app {
    padding-top: max(var(--app-pad-y), env(safe-area-inset-top, 0px));
    padding-left: max(var(--app-pad-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--app-pad-x), env(safe-area-inset-right, 0px));
    padding-bottom: calc(var(--app-pad-y) * 2 + env(safe-area-inset-bottom, 0px));
  }

  :root {
    --app-pad-y: 12px;
    --app-pad-x: 10px;
    --map-wrap-w: 100%;
    --map-wrap-max-h: min(76vh, 820px);
    --legend-pad-x: 8px;
    --toolbar-btn-size: 38px;
    --toolbar-panel-w: 44px;
    --toolbar-gap: 7px;
    --marker-fs: 0.66rem;
    --marker-text-max: min(168px, 44vw);
  }

  .map-layout {
    flex-direction: column;
    max-width: 100%;
  }

  .map-layout__map,
  .map-layout__side {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .map-stage {
    border-radius: 10px;
  }

  .map-region-title__line--es,
  .map-region-title__line--en {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  .tooltip {
    max-width: min(260px, calc(100vw - 24px));
    font-size: 0.78rem;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  :root {
    --app-pad-y: 18px;
    --app-pad-x: 14px;
    --map-wrap-w: min(100%, 880px);
    --map-wrap-max-h: min(80vh, 880px);
    --toolbar-btn-size: 36px;
    --toolbar-panel-w: 44px;
    --toolbar-gap: 8px;
    --marker-fs: 0.7rem;
  }

  .map-region-title__line--es,
  .map-region-title__line--en {
    font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  }
}

@media (min-width: 901px) and (max-width: 1240px) {
  :root {
    --app-pad-y: 24px;
    --app-pad-x: 16px;
    --map-wrap-w: min(920px, 96vw);
    --map-wrap-max-h: min(88vh, 960px);
    --toolbar-btn-size: 36px;
    --toolbar-panel-w: 44px;
    --toolbar-gap: 8px;
    --marker-fs: 0.72rem;
  }
}

@media (min-width: 1241px) {
  :root {
    --app-pad-y: 32px;
    --app-pad-x: clamp(24px, 4vw, 56px);
    --map-wrap-w: min(1240px, 76vw);
    --map-wrap-max-h: min(90vh, 1180px);
    --toolbar-btn-size: 42px;
    --toolbar-panel-w: 46px;
    --toolbar-gap: 10px;
    --marker-fs: 0.78rem;
  }

  .map-layout {
    max-width: min(1480px, 100%);
  }
}

.tooltip {
  position: fixed;
  z-index: 30;
  max-width: 260px;
  padding: 8px 10px;
  font-family: var(--map-font-family);
  font-size: 0.82rem;
  text-transform: none;
  background: #111;
  color: #fff;
  border-radius: 6px;
  pointer-events: none;
  box-shadow: var(--shadow);
}

.tooltip[hidden] {
  display: none;
}
