*[data-tooltip]:before {
  position: absolute;
  z-index: 10;

  background: rgb(63 61 86 / 0.8);
  color: white;
  font-size: 0.75em !important;
  font-weight: normal;
  border-radius: 4px;

  padding: calc(var(--global-padding) / 2);
  left: 0;
  top: 25px;

  content: attr(data-tooltip);
  white-space: pre-wrap;

  display: none;
}

*[data-tooltip]:hover:before {
  display: block;
}
