/* Tooltip container */
.ttp2 {
  position: relative;
  background-color: #369;
  display: inline-block;
  color: #fff;
  padding: 0 3px 0 3px;
  margin: 0  1px 0 2px;
   /* border: 2px solid #369;  */
}

/* Tooltip text */
.ttp2 .ttp2text {
  visibility: hidden;
  width: 120px;
  background-color: #fff;
  color: #369;
  text-align: center;
  padding: 5px 0;
  border: 2px solid #369;
  border-radius: 6px;

  /* Position the ttp2 text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in ttp2 */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.ttp2 .ttp2text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the ttp2 text when you mouse over the ttp2 container */
.ttp2:hover .ttp2text {
  visibility: visible;
  opacity: 1;
}
