#popup-cart{
    background: #ffffff;
    margin: 0 auto;
    max-width: 600px;
    min-height: 100px;
    position: relative;
    width: 90%;
}


#popup-cart .cart-heading {
    background-color: #ededed;
    border-bottom: 1px solid #dddddd;
    color: #333333;
    font-family: Roboto-Regular,Arial,Tahoma;
    font-size: 20px;
    font-weight: normal;
    line-height: 50px;
    min-height: 50px;
    overflow: hidden;
    padding: 0 20px;
    position: relative;
    text-align: left;
}

#popup-cart .popup-close:before {
    content: "\f057";
	font-family:FontAwesome;
    cursor: pointer !important;
    height: 24px;
    opacity: 0.5;
    position: absolute;
    right: 15px;
    top: 0;
    width: 24px;
}
#cart-content{
	padding:15px;
	width:100%;
	display:block;
}
.cart-content .cart-row {
	border-bottom:1px solid #dedede;
	padding: 10px 0px;
}
.cart-content .thumb {
    display: inline-block;
    width: 15%;
	text-align:center;
}
.cart-content .name {
    display: inline-block;
    width: 40%;
}
.cart-content .quantity {
    display: inline-block;
    text-align: center;
    width: 10%;
}
.cart-content .total {
    display: inline-block;
    text-align: right;
    width: 17%;
}
.cart-content .remove {
    display: inline-block;
    text-align: right;
    width: 15%;
}
.cart-content .btn-remove {
    background: #000000 none repeat scroll 0 0;
    border: 0 none;
    color: #ffffff;
    padding: 1px 7px;
}
.cart-footer{
    background: #ededed;
    border-radius: 0 0 6px 6px;
    display: block;
    position: relative;
    text-align: center;
    border-top: 1px solid #dddddd;
    box-sizing: border-box;
    display: inline-block;
    height: 100%;
    padding: 17px 20px;
    position: relative;
    vertical-align: bottom;
    width: 100%;	
}
.cart-footer .btn-checkout {
    background: #32b32e;
    border: 0 none;
    box-shadow: none;
    color: #ffffff;
    font-size: 15px;
    padding: 7px 40px;
}
.cart-footer .btn-cart {
    background: #ae2415;
    border: 0 none;
    box-shadow: none;
    color: #ffffff;
    font-size: 15px;
    padding: 7px 40px;
}	
.cart-total {
    float: right;
    padding: 15px 0;
    width: 100%;
}
.cart-total .title {
    float: left;
    font-size: 13px;
    text-align: right;
    width: 80%;
}
.cart-total .text {
    font-size: 14px;
    text-align: right;
}
@media (min-width: 320px) and (max-width: 359px) {
	.cart-content .thumb{ display:none;}
	.cart-content .name {
		display: inline-block;
		width: 50%;
	}
	.cart-content .total {
		display: inline-block;
		text-align: right;
		width: 21%;
	}
	.cart-total .title{
		width:68%;
	}
	.cart-footer .btn-cart, .cart-footer .btn-checkout{
		display:block;
	}
}
@media (min-width: 360px) and (max-width: 532px) {
	#popup-cart{
		width:330px;
	}
	.cart-content .thumb{ display:none;}
	.cart-content .name {
		display: inline-block;
		width: 50%;
	}
	.cart-content .total {
		display: inline-block;
		text-align: right;
		width: 21%;
	}
	.cart-total .title{
		width:68%;
	}
	.cart-footer .btn-cart, .cart-footer .btn-checkout{
		display:block;
	}
}