#page {
    display: block;
    padding: 15px 0;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/** cart table **/
#cart {
    border-collapse: collapse;
    margin: 0;
    width: 100%;
    font-size: 1.2em;
    color: #444;
}

#cart thead th {
    padding: 8px 0;
    font-weight: bold;
    text-align: center;
}

#cart thead th.first {
    width: 175px;
}

#cart thead th.second {
    width: 45px;
}

#cart thead th.third {
    width: 230px;
}

#cart thead th.fourth {
    width: 130px;
}

#cart thead th.fifth {
    width: 20px;
}

#cart tbody td {
    text-align: center;
    margin-top: 4px;
}

tr.productitm {
    height: 65px;
    line-height: 65px;
    border-bottom: 1px solid #d7dbe0;
}


#cart tbody td img.thumb {
    height: 150px;
    vertical-align: bottom;
    border: 1px solid #ddd;
    margin-bottom: 4px;
}

.qtyinput {
    height: 50px;
    width: 65px;
    border: 1px solid #a3b8d3;
    background: #dae4eb;
    color: #616161;
    text-align: center;
}

tr.totalprice,
tr.extracosts {
    height: 35px;
    line-height: 35px;
}

tr.extracosts {
    background: #e4edf4;
}

.remove {
    /* http://findicons.com/icon/261449/trash_can?id=397422 */
    cursor: pointer;
    position: relative;
    right: 12px;
    top: 5px;
}


.light {
    color: #888b8d;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.45);
    font-size: 1.1em;
    font-weight: normal;
}

.thick {
    color: #272727;
    font-size: 1.7em;
    font-weight: bold;
}


/** submit btn **/
#cart tbody tr.checkoutrow {
    background: #cfdae8;
    border-top: 1px solid #abc0db;
    border-bottom: 1px solid #abc0db;
}

#cart tbody td.checkout {
    padding: 12px 0;
    padding-top: 20px;
    width: 100%;
    text-align: right;
}