<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** shopping_cart.css **/

table.shopping_cart {}

table.shopping_cart td.alignright,
table.shopping_cart th.alignright { text-align:right; }

table.shopping_cart td.aligncenter,
table.shopping_cart th.aligncenter { text-align:center; }

table.shopping_cart tr.item_row td.icon_delete { text-align:left; width:30px;}
table.shopping_cart tr.item_row td.icon_delete a { float:left; padding:4px 0 0 0; margin:0; border:0; display:none;}
table.shopping_cart tr.item_row td.icon_delete a img { float:left; border:0;}

/* hover states including hover class for IE8 */
table.shopping_cart tr.item_row:hover td.icon_delete a {display:inline;}

table.shopping_cart tr.item_row:hover,
table.shopping_cart tr.item_row.hover { background-color:cornsilk;}

/* do not show the delete icon when on CheckoutReview */
#CheckoutReview table.shopping_cart tr.item_row td.icon_delete a,
#CheckoutReview table.shopping_cart tr.item_row:hover td.icon_delete a { display: none !important; }
</pre></body></html>