/* Override this file to customise the theme's CSS for your site */

abbr[title] {
  position: relative;

  /* ensure consistent styling across browsers */
  text-decoration: underline dotted;
}

abbr[title]:hover::after,
abbr[title]:focus::after {
  content: attr(title);

  /*should position tooltip by inserting it into the flow below the abbreviated
   * term*/
  display: flex;
  align-items: center;
  /*position: absolute;*/
  /*left: 50%;*/
  /*top: 1rem;*/
  width: auto;
  /*min-width: 7rem;*/
  max-width: 90vw;
  white-space: normal;

  /* style tooltip */
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 3px;
  box-shadow: 1px 1px 5px 0 rgba(0,0,0,0.4);
  font-size: 14px;
  padding: 3px 5px;
  z-index: 10;
}
