/* You can add custom styles here. */

.tooltip2 {
    position: relative;
    display: inline-block;
  }
  
.tooltiptext {
    font-size: small;
    font-weight: normal;
    line-height: normal;
}

  .tooltip2 .tooltiptext {
    visibility: hidden;
    width: 60px;
    background-color: gray;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -60px;
    
    opacity: 0;
    transition: opacity 0.5s;
    transition-delay: 0.5s;
  }
  
  .tooltip2 .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 20%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: gray transparent transparent transparent;
  }
  
  .tooltip2:hover .tooltiptext {
    visibility: visible;
      opacity: 1;
      width: 160px;
  }