.woocommerce-shipping-totals td {
    display: flex!important;
    flex-direction: column!important;
    text-align: left!important;
    /* Overrides woocommerce cart css */
}

.wc_evol-tooltip svg{
    fill: rgba(17, 159, 199, 1);
    margin-bottom: -3px;
    cursor: pointer;
    position: absolute;
    margin-left: 5px;
}

/* hide the tooltip */
.wc_evol-tooltip .wc_evol-tooltiptext  {
    display: none;
}

/* show the tooltip on svg hover */
.wc_evol-tooltip svg:hover + .wc_evol-tooltiptext {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: white;
    color: black;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 0;
    margin-top: 0;
    width: 300px;
}