/* shopping cart wrapper/container */
div#ShopSuey-storefront-cart-wrapper {
	position: absolute;
	margin: -20px 0px 0px 412px;
	padding: 5px;
	width: 800px;
	height: auto;
	/* max-height: 999999px; */
	
	color: black;
	text-shadow: none !important;
	
	background: white;
	
	background-image:         linear-gradient(left, white 100px, rgba(94,137,172,.1) 125px, rgba(25,60,120,.35));
	background-image:    -moz-linear-gradient(left, white 100px, rgba(94,137,172,.1) 125px, rgba(25,60,120,.35));
	background-image: -webkit-linear-gradient(left, white 100px, rgba(94,137,172,.1) 125px, rgba(25,60,120,.35));
	background-image:      -o-linear-gradient(left, white 100px, rgba(94,137,172,.1) 125px, rgba(25,60,120,.35));
	background-image:     -ms-linear-gradient(left, white 100px, rgba(94,137,172,.1) 125px, rgba(25,60,120,.35));
	
	border: 1px solid black;
	border-radius: 3px;
	box-shadow: 2px 2px 15px rgba(0,0,0,.4);
	
	z-index: 5;
	display: block;
	
	/* transition: max-height .5s ease 0s; */
}

	/* cart hidden */
	div#ShopSuey-storefront-cart-wrapper.ShopSuey-storefront-cart-hide {
		display: none;
		z-index: -1;
		height: 0px;
		opacity: 0;
		
		/* max-height: 0px;
		transition: max-height .5s ease 0s; */
	 }
	 
	 /* cart on orders page */
	 div#ShopSuey-storefront-cart-wrapper.ShopSuey-storefront-cart-order {
		position: relative !important;
		margin: auto auto 25px auto !important;
		height: auto !important;
		opacity: 1 !important;
		width: 1240px !important;
		z-index: 2;
	 }
	 
	 /* photo container */
	 #ShopSuey-storefront-cart-wrapper > form#ShopSuey-storefront-cart > div#items > div > div:first-child {
		box-shadow: none !important;
	 }