/* Tooltip container */
.ostooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.ostooltip .ostooltiptext {
  visibility: hidden;
  width: auto;
  /* top: 100%; */
  top: -20px;
  /*left: 50%;*/
  right: 0%;
  margin-left: -80px; /* Use half of the width (120/2 = 60), to center the tooltip */  
  background-color: #fbf6e8;
  color: black;
  text-align: center;
  padding: 5px 15px;
  border-radius: 6px;
  border-style: solid;
  border-color: #eee;
  border-width: 1px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 20070;
}

/* Show the tooltip text when you mouse over the tooltip container */
.ostooltip:hover .ostooltiptext {
  visibility: visible;
}
