
/* For Tooltip text
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 0px dotted black; /* If you want dots under the hoverable text */
  text-decoration: none;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width:220px;
  text-align:center;
  padding: 16px 16px;
  border-radius: 12px;
  text-decoration: none;
  /* background: url(graphics/tooltip.svg) 0 0 transparent; */
  background-repeat:repeat;
  vertical-align:middle;
  padding-left:6px;
  padding-right:6px;
  padding-top:0px;
  padding-bottom:0px; 
  vertical-align: middle;
  /* background-color: #DDDDDD; */
  background: linear-gradient(to bottom, white,  #FCE94F);
  color: #000000;
  border:4px solid grey;
font-family:sans;
font-size:14px;
font-weight:normal;
/* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  
  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.8s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 125%;
  left: 50%;
  margin-left: -5px;
  border-width: 2px;
  border-style: solid;
  border-color: #000000;
  text-decoration: none; 
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  padding-left:12px;
  padding-top:8px;
  padding-right:8px;
  padding-bottom:8px;
}
