/* CSS that governs footer */

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

/* Tooltip text */
.tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;

/* Position the tooltip text - see examples below! */
position: absolute;
right:20px;
z-index: 1;
}

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