/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

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

.price_tooltip .price_tooltiptext {
    visibility: hidden;
    width: 350px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.price_tooltip:hover .price_tooltiptext {
    visibility: visible;
}