/* Dark mode */
@media (prefers-color-scheme: dark) {
  body {
      background-color: black;
      color: white;
  }
}

*[data-helper-text] { position: relative; }
*[data-helper-text]:after {
  content: attr(data-helper-text);
  position: absolute;
  color: red;
  top: calc(100% + 20px);
  font-size: 14px;
  line-height: 120%;
  white-space: nowrap;
  border: 1px solid red;
  padding: 10px;
  border-radius: 10px;
  background-color: black;
  font-weight: 700;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 5000000000;
}
*[data-helper-text]:before {
  content: ' ';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid red;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 5000000000;
}

*[data-helper-position=above]:before {
  top: calc(-100% + 20px);
  border-bottom: none;
  border-top: 10px solid red;
}
*[data-helper-position=above]:after {
  top: calc(-100% - 20px);
  margin-left: -30px;
}
