/* Tooltip container */
.cooking-tooltip {
    position: relative;

 /* If you want dots under the hoverable text */
}

/* Show the tooltip text when you mouse over the tooltip container */
.cooking-tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;

}

/* Tooltip text */
.cooking-tooltip  .tooltiptext {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 1px 10px 1px 10px;
    border-radius: 6px;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

/* Tooltip arrow */
.cooking-tooltip  .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color:  transparent transparent black transparent;
}


#tooltip1 { right: 45px; bottom: 10px;
}

#tooltip2 { right: -5px; bottom: 10px;
}

#tooltip3 { right: -72px; bottom: 10px;
}

#tooltip4 { right: -82px; bottom: 10px;
}

#tooltip5 { right: -130px; bottom: 10px;
}


