@charset "UTF-8";
/* CSS Document */


.tooltip {
  position: relative;
  /* display: inline-block; */
  border-bottom: 2px dotted navy;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  bottom: 100%;
  left: 50%;
  margin-left: -100px; 
  background-color: #999999;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 5px 5px 0 5px ;
  line-height: 14px;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  font-size: 12px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
