@media(max-width: 767px) {
    /* Force table to not be like tables anymore */
    #no-more-tables table,
    #no-more-tables thead,
    #no-more-tables tbody,
    #no-more-tables th,
    #no-more-tables td,
    #no-more-tables tr {
        display: block;
        text-indent: 4%;
        font-size: 12px;
    }

    #no-more-tables td.ams
    {
        min-height: 25px;
    }

    #no-more-tables td.ams:before
    {
        line-height: 290%;
    }

    #no-more-tables td.casino {
        min-height: 20px;
    }

    #no-more-tables td.casino:before {
        line-height: 240%;
    }

    #no-more-tables td.code:before {
        line-height: 250%;
    }

    #no-more-tables td.code {
        min-height: 22px;
    }

    #no-more-tables td.download:before
    {
        line-height: 390%;
    }

    #no-more-tables td.download:before
    {
        min-height: 40px;
    }

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

    #no-more-tables tr { border: 1px solid #ccc; }

    #no-more-tables td {
        /* Behave like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align:left;
    }

    #no-more-tables td:before
    {
        background-color: #444444;
        background-image: -moz-linear-gradient(center top , #444444, #222222);
        background-image: -khtml-linear-gradient(center top , #444444, #222222);
        background-image: -webkit-linear-gradient(center top , #444444, #222222);
        background-image: linear-gradient(center top , #444444, #222222);
        /*border-top: 1px solid #222222;
        box-shadow: 0 1px 0 0 #777777 inset;
        color: #FFFFFF;
        vertical-align: middle; */
    }

    #no-more-tables td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 0;
        left: 0;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align:left;
        font-weight: bold;
        color: #dfdfdf;
        height: 100%;
        margin-bottom: 1px;
    }

    /*
    Label the data
    */
    #no-more-tables td:before {
        content: attr(title);
    }
}