/* Cart */
.cart {
	overflow: hidden;
	padding: 2px;
	float: right;
}
.cart .heading {
	float: right;
	float: right;
	padding: 10px 0 13px;
}
.cart .heading a {
	color: #ffffff;	
	text-decoration: none;
}
.cart .heading a i {
	font-size: 18px;
	position: relative;
	top: 3px;
}
.cart:hover .cart-content {
	display: block;
}
.cart .cart-content {
	display: none;
	top: 45px;
	min-width: 134px;
	position: absolute;
	z-index: 61;
	right: 0;
	padding: 15px;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.53);
}
.cart .cart-content:before {
    content: '';
	height: 15px;
	width: 15px;
	background: #ffffff;
	position: absolute;
	right: 15px;
	top: -7px;
    transform: rotate(45deg);
}
.cart .cart-content table td {
    vertical-align: middle;
}
.cart.active .cart-content {
	display: block;	
}
.cart .cart-content table {
	width: 100%;
}
.cart .cart-content table td {
	padding: 5px;
	font-size: 12px;
	border: 1px solid #f9f8f8;
}
@media (max-width: 991px) and (min-width: 768px) {
    .cart .heading {
        margin-top: 0;
    }
}
@media (max-width: 767px) {
    .cart {
        font-size: 10px;
    }
    .cart .cart-content {
        width: 100%;
    }
    .cart:hover .cart-content {
	display: none;
}
}
/* Checkout */
.checkout table tbody tr td {
    vertical-align: middle;
}
.checkout table td.quantity {
    width: 130px;
    text-align: center;
}
.checkout table td.quantity input {
    width: 40px;
    vertical-align: middle;
    text-align: center;
}
.shipping-methods .radio {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	position: relative;
	transition: all 0.3s;
	border-radius: 2px;
	padding: 12px 15px 10px;
	background: #fff;
}
.shipping-methods .radio input[type="radio"] {
	margin-top: 3px;
}
.shipping-methods .radio .pull-right,
.shipping-methods .radio label {
	font-size: 16px;
}