.vis {
  font-family: "Raleway", sans-serif;
}

.vis > svg {
  display: block;
}

.vis-tooltip-parent {
  position: relative;
}

.vis-tooltip {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 320px;
  max-height: 400px;
  overflow-y: auto;
  pointer-events: none;
  font-size: 14px;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
  opacity: 0;
  border-radius: 4px;
  visibility: hidden;
  transition: opacity 0.15s linear, visibility 0.15s linear;
  transition-delay: 0.15s;
  z-index: 9999;
}

.vis-tooltip.show {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  pointer-events: all;
}

.vis-tooltip table {
  border-collapse: collapse;
  border-spacing: 0;
}

.vis-tooltip td {
  vertical-align: top;
}

.vis-tooltip td:not(:last-child) {
  padding-right: 12px;
}

.vis-tooltip td a {
  color: inherit;
}
