    #padding {
        padding-left: 225px;
    }
    #gradL {
        height: auto;
        background-color: #B63019;
        background-image: linear-gradient(to right, #B63019, white, white, white, #B63019);
    }
    .tooltip {
        position: relative;
        display: inline-block;
        border-bottom: 1px dotted black;
    }
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 240px;
        background-color: white;
        color: black;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        

        position: absolute;
        z-index: 1;
        top: -5px;
        left: 105%;
    }
    .tooltip:hover .tooltiptext {
        visibility: visible;
    }
