
.tooltip {
  position: relative;
  display: inline-block;
  
  }

.tooltip .tooltiptext {
  visibility: hidden;
  width: 150px;
  margin-top: 50px;
  margin-left: -16px;
  //background-color: #ffb012;
  color: #000;
  text-align: center;
  font-size: 14px;
  border-radius: 6px;
  padding: 10px 10;
 text-shadow: 1px 1px #fff;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
border-radius: 25px; 
  border: 2px solid gold;"
}
