[data-tooltip] {
  position: relative;
  cursor: pointer;
}

[data-tooltip]::after {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  content: attr(data-tooltip);
  left: 0;
  bottom: calc(100% + 10px);
  border-radius: 100px;
  /* box-shadow: 0 0 0 0 #39465f; */
  background-color: #181d28;
  z-index: 100;
  padding: 4px 11px;
  width: max-content;
  transform: translateY(-20px);
  color: white;
  /* transition: all 150ms cubic-bezier(0.25, 0.8, 0.25, 1); */
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 300ms;
}
