table.cart-items,
table.total-table {
    border-style: solid;
    border-width: 2px;
}

table.cart-items tr th,
table.cart-items tr td,
table.total-table tr th,
table.total-table tr td {
    padding: 10px;
}

table.total-table tr td {
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

@media only screen and (max-width:63.9375em) {
    table.cart-items tr {
        border-bottom-style: solid;
        border-bottom-width: 1px;
    }
    table.cart-items tr,
    table.cart-items tr td {
        display: block;
    }
    table.cart-items tr th {
        display: none;
    }
    table.cart-items tr td:before {
        content: attr(data-cart-label);
    }
    table.cart-items tr td:nth-child(2),
    table.cart-items tr td:nth-child(3),
    table.cart-items tr td:nth-child(4) {
        width: 100%;
    }
}

@media only screen and (min-width:64em) {
    table.cart-items tr td,
    table.cart-items tr th {
        border-right-style: solid;
        border-right-width: 1px;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        text-align: center;
    }
    table.cart-items tr.cartrow td:nth-child(2) {
        width: 20%;
    }
    table.cart-items tr.cartrow td:nth-child(3),
    table.cart-items tr.cartrow td:nth-child(4) {
        width: 14%;
    }
}