.shoppingcart-popup {
	position: relative;
	float: right;
	right:-11px;
	width:38px;
	height:54px;
	cursor:pointer;
	margin-left:15px;
	font-weight:normal;
	margin-top:6px;
}
.shoppingcart-popup .cart_icon:before {
	font-family: 'icon_font';
	font-size: 28px;
	position: absolute;
	top:-5px;
	right:2x;
	content: "\e603";
}
.shoppingcart-popup.loading {
	color:#fff;
	font-size:24px;
	background:0;
	margin-top:-4px;
	padding-left:12px;
}
.shoppingcart-popup.loading .cart_icon:before {
	content: "";
}
.shoppingcart-popup.loading span {
	display: none;
}
.shoppingcart-popup .count {
	display: block;
	position: absolute;
	right: -3px;
	font-weight: bold;
	background: #dfdfdf;
	width: 22px;
	height: 22px;
	text-align: center;
	border-radius: 9px;
	line-height: 21px;
}
.shoppingcart-popup .content {
	display: none;
	width:350px;
	position: absolute;
	right:-16px;
	top:49px;
	background-color: #efefef;
	border: 1px solid #898989;
	font-size:13px;
	z-index:150;
	color:#000000;
	cursor: auto;
	padding:2px;
}
	/* Arrow; http://cssarrowplease.com*/
	.shoppingcart-popup .content:after, .shoppingcart-popup .content:before {
		bottom: 100%;
		left: 50%;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
	}
	.shoppingcart-popup .content:before {
		border-color: rgba(137, 137, 137, 0);
		border-bottom-color: #898989;
		border-width: 13px;
		margin-left: 132px;
	}
	.shoppingcart-popup .content:after {
		border-color: rgba(232, 229, 230, 0);
		border-bottom-color: #efefef;
		border-width: 12px;
		margin-left: 133px;
	}
.shoppingcart-popup .content > div {
	position: relative;
	float: left;
	width:100%;
	border-bottom: 1px solid #898989;
	padding:8px;
	line-height: 16px;
}
.shoppingcart-popup .content > div:first-child {
	border-radius:5px 5px 0 0;
}
.shoppingcart-popup .content > div:last-child {
	border-bottom: 0;
	border-radius:0 0 5px 5px;
}
.shoppingcart-popup .product-image {
	width:50px;
	margin-right:4px;
	float: left;
	min-height: unset !important;
}
.shoppingcart-popup .product {
	margin-bottom: 0;
}
.shoppingcart-popup .product-image {
	text-align:center;
}
.shoppingcart-popup .product img {
	float:none;
	margin-top:0;
}
.shoppingcart-popup .content .total {
	padding:4px;
}
.shoppingcart-popup .content span {
	display: block;
	line-height: 16px;
}
.shoppingcart-popup span.checkout {
	margin-top:8px;
}
.shoppingcart .product .title {
	font-weight: bold;
}
.shoppingcart-popup .shoppingcart-link {
	display: none;
}
.shoppingcart-popup .product .title {
	width:60%;
}
.shoppingcart-popup .product .price {
	width: 50px;
	line-height: 16px;
}
.shoppingcart-popup .price {
	position: relative;
	float: right;
	width: 60%;
	text-align: right;
}
.shoppingcart-popup .amount {
	position: relative;
	float: right;
	text-align: right;
	width:40px;
}
.amount span {
	float:left;
	padding-right:4px;
}
.amount span:last-child {
	padding-right: 0;
}
.amount .add,
.amount .remove {
	cursor:pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
	.amount .add:after {
		font-family: "icon_font";
		content:"\e60f";
	}
	.amount .remove:after {
		font-family: "icon_font";
		content:"\e613";
	}