#pttable thead tr th {
    font-size: 16px;
}
#pttable {
    width: 100%;
    max-width: 100%;
}
#pttable_info {
    display: none;
}
.block-stocks-and-commodities {
    padding-top: 10px;
}
@media screen and (max-width: 425px) {
    .block-stocks-and-commodities ul.quicktabs_tabs.quicktabs-style-excel {
        min-height: 80px;
    }
}

#pttable td p {
    word-break: break-all;
    white-space: normal;
}

@media only screen and (max-width: 768px), (min-device-width: 768px) and (max-device-width: 1024px)  {
    #pttable {
        table-layout: fixed;
    }

    /* Force table to not be like tables anymore */
    #pttable table, #pttable thead, #pttable tbody, #pttable th, #pttable td, #pttable tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    #pttable thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    #pttable tr {
        border: 1px solid #ccc;
        margin: 10px auto;
    }

    #pttable td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        padding-left: 50%!important;
        min-height: 30px;
        text-align: left;
    }

    #pttable td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }

    /*
    Label the data
    */
    #pttable td:nth-of-type(1):before { content: "Status"; }
    #pttable td:nth-of-type(2):before { content: "Investment"; }
    #pttable td:nth-of-type(3):before { content: "Symbol"; }
    #pttable td:nth-of-type(4):before { content: "Open Date"; }
    #pttable td:nth-of-type(5):before { content: "Open Price"; }
    #pttable td:nth-of-type(6):before { content: "Dist/Adj"; }
    #pttable td:nth-of-type(7):before { content: "Recent Price"; }
    #pttable td:nth-of-type(8):before { content: "Close Price"; }
    #pttable td:nth-of-type(9):before { content: "Returns"; }
    #pttable td:nth-of-type(10):before { content: "Notes"; }

}