pb {display: none;}

del {display: none;}

rdg {display: none;}

/* gap {background-color: #d8bfd8;} */

teiHeader {display: none;}

witness {display: none;}

body {font-family: Libre Baskerville; font-size: small}

h1 {font-family: Libre Baskerville; text-align: center}

input {font-family: Libre Baskerville; font-size: x-small}

a {outline: none; text-decoration: none; padding: 2px 1px 0;}

a:link, a:visited {color: DimGray;}
rdg {color: DimGray}


[data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}

[data-title]:after {
    content: attr(data-title);
    background-color: #333;
    color: #fff;
    font-size: 14px;
    font-family: Raleway;
    position: absolute;
    padding: 3px 20px;
    bottom: -1.6em;
    left: 100%;
    white-space: nowrap;
    box-shadow: 1px 1px 3px #222222;
    opacity: 0;
    border: 1px solid #111111;
    z-index: 99999;
    visibility: hidden;
    border-radius: 6px;
    
}
[data-title] {
    position: relative;
}





cit[data-title]:hover::after {
  content: attr(data-title);
  position: absolute;
  top: -100%;
  left: 0;
  color: red;
}

 /* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #555;
  color: yellow;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  font-size: small;
  
  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 30%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
} 