@media only screen and (max-width: 1000px) {

    /* Force table to not be like tables anymore */
    #no-more-tables-Cart table,
    #no-more-tables-Cart thead,
    #no-more-tables-Cart tbody,
    #no-more-tables-Cart th,
    #no-more-tables-Cart td,
    #no-more-tables-Cart tr {
        /*display: block; */
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        #no-more-tables-Cart thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    #no-more-tables-Cart tr {
        /*border: 1px solid #ccc;*/
    }

        #no-more-tables-Cart tr.item {
            /*border: 1px solid #ccc; */
            border: 1px solid #e0eded;
            padding-top: 15px; /*Added!!*/
        }

    #no-more-tables-Cart table td:nth-last-child(1) { /*Added!!*/
        /*padding-bottom:15px;*/ /*Added!!*/
    }

    #no-more-tables-Cart td {
        /* Behave  like a "row" */
        border: none;
        /*border-bottom: 1px solid #eee;*/
        position: relative;
        /*padding-left: 50%;*/
        /*padding-left: 10px;*/
        white-space: normal;
        text-align: left;
        width: 100%; /*added!!!!*/
    }

        #no-more-tables-Cart 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;
            text-align: left;
            font-weight: bold;
        }

        /*
	Label the data
	*/
        #no-more-tables-Cart td:before {
            content: attr(data-title);
        }
}
