/* Native Hinweise für Maus, Tastatur und Touch. */

.note-trigger {
  display: inline;
  padding: 0px;
  border: 0px;
  background: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  cursor: help;
}

.note-popup {
  position: fixed;
  inset: auto;
  margin: 0px;
  box-sizing: border-box;
  width: max-content;
  max-width: min(305px, -16px + 100vw);
  max-height: calc(100dvh - 16px);
  overflow: auto;
  padding: 8px;
  border: 1px solid rgb(85, 85, 85);
  background: rgb(255, 255, 170);
  color: rgb(51, 51, 51);
  box-shadow: rgb(170, 170, 170) 3px 3px 0px;
  font: 14px / 1.4 Nunito, sans-serif;
  text-align: left;
}

@media print {
  .note-popup {
    display: none;
  }
}
