.tooltip {
  position: relative;
  display: inline-block;
  font-family: tahoma;
  font-size: 8pt;
  cursor: pointer;
}
.tooltip .tooltiptext .title{
padding: 0px 0 10px 0;
}
.tooltiptext .common{
color:white;
}
.tooltiptext .rare{
color:#cfbf4b;
}
.tooltiptext .quest{
color:blue;
}
.tooltiptext .unique{
color:purple;
}
.tooltip .tooltiptext p{
line-height: 1.5;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width:200px;
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
  
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 0.2s;
}

.tooltip:hover .tooltiptext{
  visibility: visible;
  opacity: 1;
}
