/* #Cart Page
================================================== */
.cart-page table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-page td {
    vertical-align: middle;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid silver;
}

.cart-page td:nth-child(1) {
    width: 110px;
    padding: 0px;
}

.cart-page td:nth-child(2) {
    padding-right: 20px;
}


.cart-page td:nth-child(1) img {
    width: 90%;
    height: auto;
}

.cart-page td:nth-child(3) {
    width: 100px;
    text-align: center;
}

.cart-page td:nth-child(4) {
    width: 170px;
    text-align: center;
}


.cart-page td:nth-child(5)
{
    width: 120px;
    text-align: center;
}

.cart-page td:nth-child(6)
{
    width: 200px;
    text-align: center;
}


.cart-page td strong {
    font-size: 14pt;
 }

.cart-page .seperator {
    margin-left: 25%;
    width:50%;
    height: 1px;
}

/* Larger than mobile */
@media  only screen and (max-width: 960px) {
	
	.cart-page table td.tbl-image {
		display: none;
	}

	.cart-page table tr:nth-child(odd) {
		background-color: rgba(214,187,142,0.25);
	}



	.cart-page table td {
		display: block; 
		width: 100%;
		clear: both;
		/*background-color: yellow;*/
		border: 0px solid silver;
		padding: 5px;
	}

	.cart-page table td.tbl-qty { 
		width: 20%;
		display: inline-block;
		text-align: left;
	}
	
	.cart-page table td.tbl-grand {
		width: 58%;
		display: inline-block;
		text-align: right;
	}


	.cart-page table td.tbl-price,
	.cart-page table td.tbl-total { 
		width: 38%;
		display: inline-block;
		text-align: right;
	}

	.cart-page table td.tbl-remove {
		width: 100%;
		padding-bottom: 15px;
		text-align: right;
		
	}

}

