﻿/* Shopping Cart Table */

table.cartitem
{
    border-collapse: separate;
	border-spacing: 0px;
}

.lt-ie8 table.cartitem
{
    border-collapse: collapse;
}

/* Header styles */
table.cartitem th
{
	background-color: #20E6B5;
	color: White;
	line-height: 20px;
	text-align: center;
}

table.cartitem th:first-child
{
    border-top-left-radius: 4px;
}

table.cartitem th.last-child
{
    border-top-right-radius: 4px;
}

/* Item row styles */
table.cartitem td
{
	border-left: solid 1px Gray;
    border-bottom: solid 1px Gray;
}

table.cartitem td.last-child
{
	border-right: solid 1px Gray;
}

/* Column styles */
table.cartitem td.prodId
{
    border-left-style: none;
    width: 160px;
}

table.cartitem td.prodDesc
{
    border-left-style: none;
    /* Show price info */
    width: 445px;
    /* Hide price info 
    width: 600px;*/
}

table.cartitem th.quantity
{
    /* Hide price info 
    border-top-right-radius: 4px;*/
}

table.cartitem td.quantity
{
    /* Hide price info 
    border-right: solid 1px Gray;*/
}

table.cartitem th.priceInfo, table.cartitem td.priceInfo
{
    /* Hide price info 
    display: none;*/
}

/* Footer styles */
table.cartitem td.ftrLblRemItem
{
    border-style: none;
}

table.cartitem td.ftrLblTotal
{
    background-color: rgb(255, 247, 119);
    border-right-style: none;
    border-bottom-left-radius: 4px;
    text-align: right;
    font-weight: bold;
}

table.cartitem td.ftrTotal
{
    background-color: rgb(255, 247, 119);
    border-left-style: none;
    border-bottom-right-radius: 4px;
    text-align: right;
    font-size: medium;
    font-weight: bold;
    color: Red;
}

table.cartitem td.ftrEmptyCart
{
    border-style: none;
    vertical-align: top;
}

table.cartitem td.ftrCheckout
{
    border-style: none;
    text-align: right;
}