#cart {
	margin-top: 30px;
	position: relative;
	float: right;
}
#cart .heading {
	background: url('../image/cart.png') no-repeat 0 50%;
	padding: 0px 0 3px 60px;
}
#cart .heading a {
	text-transform: uppercase;
    border-bottom: 1px dashed #fe3b01;
    position: relative;
	text-decoration: none;
	margin-top: 7px;
    display: block;
}
#cart-total {
	display: block;
	color: #3c3c3c;
	font-weight: bold;
	font-size: 18px;
}
#cart-total .count {
	position: absolute;
	z-index: 2;
    height: 22px;
    width: 22px;
    top: -10px;
    left: 25px;
    line-height: 22px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.19);
}
#cart .cart-content {
	display: none;
	top: 60px;
    min-width: 400px;
    position: absolute;
    z-index: 1000;
    right: 0;
    padding: 10px 10px 0;
    background: #ffffff;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}
#cart .cart-content .corner {
	height: 15px;
	width: 15px;
	background: #ffffff;
	position: absolute;
	right: 15px;
	top: -7px;
    -webkit-transform: rotate(45deg);
}
#cart .cart-content table {
	width: 100%;	
}
#cart .cart-content table td {
	padding: 5px;
    font-size: 12px;
    border: 1px solid #f9f8f8;
}
#cart .cart-content .empty {
	padding-bottom: 10px;
}
#cart.active .cart-content {
	display: block;	
}
#cart .remove img {
	display: block;
	margin: 0 auto;
	cursor: pointer;
}

/* Cart info & Checkout 
-----------------------------------------------------------------------------*/
#checkout .buttons {
	padding-top: 20px;
}
.cart-content table {
	width: 100%;
	border-collapse: collapse;
}
.cart-content table thead td {
	background: #f6f6f6;
}
.cart-content table td {
	padding: 10px;
	border: 1px solid #e7e7e7;	
}
.cart-content table td:first-child {
	width: 1px;	
	text-align: right;
}
.cart-content table td.action {
	width: 1%;
}
.cart-content table td.quantity .qty {
	width: 109px;
	margin: -5px auto;
}
.cart-total table {
	width: 100%;
	border-collapse: collapse;
}
.cart-total table td {
	padding: 10px;
	border: 1px solid #e7e7e7;	
}
.form td {
	padding: 5px 0;	
}
.form {
	width: 100%;
	border: none;
}
.form td:first-child {
	width: 200px;	
	color: #8a8a8a;
}
.checkout-left {
	float: left;
	width: 49%;
}
.checkout-right {
	float: right;
	width: 50%;
}
@media (max-width: 767px) {
	.checkout-left {
		float: none;
		width: 100%;
		margin-bottom: 10px;
	}
	.checkout-right {
		float: none;
		width: 100%;
	}
	.form td:first-child {
		width: auto;
	}
}
.radio {
    width: 100%;
}
.radio td {
	padding: 5px;
}
.radio input[type="radio"] {
	margin-top: 5px;	
}
.shipping-content ,
.payment-content {
    padding: 2px;
}
.shipping-content .row,
.payment-content .row {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 -1px 1px rgb(236, 236, 236);
    border-radius: 2px;
}
.shipping-content .price,
.payment-content .price {
    font-size: 16px;
	width: 17%;
    color: #fe3b01;
}
.shipping-content .description,
.payment-content .description {
	font-size: 13px;
	color: #8a8a8a;
	margin-left: 75px;
	line-height: 1;
	margin-top: 10px;
}
.shipping-content .error,
.payment-content .error {
	font-size: 13px;
	color: #c91e1e;
}
.shipping-content label,
.payment-content label {
    cursor: pointer;
}
.shipping-image {
    height: 31px;
    float: left;
    margin-right: 10px;
    position: relative;
    top: 5px;
}
@media (max-width: 1000px) {
    #cart {
        margin: 15px 0 10px;
        width: 100%;
		display: none;
        text-align: center;
    }
    #cart .heading {
        display: inline-block;
        position: relative;
    }
    #cart .cart-content {
        min-width: 0;
        width: 100%;
    }
    #cart .cart-content .corner {
        right: 50%;
        margin-right: -10px;
    }
}