@keyframes blinker {  
  50% { opacity: 0; }
}

/* Tooltip container */
.sr_tooltip {
  position: absolute;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
  opacity:0;
  left:90px;
}

/* Tooltip text */
.sr_tooltip .sr_tooltiptext {
  visibility: visible;
  width: 200px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 7%;
  margin-left: 0px;
	
  
}

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

