/*


 */

/* jsvectormap base + tooltip styles (the library ships CSS separately and we
   only import the JS, so the minimal rules needed for the map + tooltip are
   reproduced here). */
.jvm-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
}

.jvm-tooltip {
  position: absolute;
  z-index: 50;
  background: #111827;
  color: #f9fafb;
  font:
    600 12px/1.2 ui-sans-serif,
    system-ui,
    sans-serif;
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap;
  display: none;
}

.jvm-tooltip.active {
  display: block;
}
