.fee-tooltip {
    position: relative;
    display: inline-block;
    float:inherit;			/* Change this to left if you'd like the tooltip to appear before the shipping method name */
    text-align:left;		/* Change this to left if you'd like the tooltip to appear before the shipping method name */
}
.fee-tooltip .tooltiptext {
    display:inline-block;
    text-indent:0;
    visibility: hidden;
    width: 230px;
    background-color: #ff6666;
    color: #000;
    text-align: center;
    border-radius: 3px;
    padding: 15px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -115px;
    font-size: small;
    line-height:1;
}
.fee-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #ff6666 transparent transparent transparent;
}
.fee-tooltip:hover .tooltiptext {
    visibility: visible;
}