/**
 * PSMRC shopping cart wrapper
 */

/* cart wrapper */
div#ShopSuey-storefront-cart-wrapper {
	position: fixed;
	margin: -70px 0px 0px 390px;
	width: 800px;
	padding: 5px;
	overflow-y: auto;
	max-height: 1000px;

	background-color: rgba(230,230,230,.98);
	border: 10px solid #D8CDBC;

	opacity: .99;
	z-index: 23;

	transition: opacity 0.35s ease .05s;
}

	/* thanks Microsloth */
	div#ShopSuey-storefront-cart-wrapper.is-browser.msie {
		margin: -75px 0px 0px 500px;
	}

	/* cart styling while in "hidden" mode */
	div#ShopSuey-storefront-cart-wrapper.ShopSuey-storefront-cart-hide {
		opacity: 0;
		max-height: 0px;
		transition: opacity 0.35s ease 0s;
		z-index: -1;
	}

	/* cart on order page */
	div#ShopSuey-storefront-cart-wrapper.ShopSuey-storefront-cart-order,
	div#ShopSuey-storefront-cart-wrapper.ShopSuey-storefront-cart-order.ShopSuey-storefront-cart-hide {
		position: relative !important;
		width: 1220px !important;
		max-height: none !important;
		opacity: 1 !important;
		margin: 0px 0px 35px -20px !important;
		z-index: 0 !important;
	}

	/* font overrides */
	div#ShopSuey-storefront-cart-wrapper,
	div#ShopSuey-storefront-cart-wrapper *:not(.fa) {
		font-family: Calibri, Arial;
		font-size: 115%;
	}

		/* photo */
		#ShopSuey-storefront-cart-wrapper > form#ShopSuey-storefront-cart > div#items > div > div:first-child > img {
			width: 160px !important;
			height: auto;
		}

		/* different font for text inputs */
		div#ShopSuey-storefront-cart-wrapper input[type="text"] {
			font-family: Calibri, Open Sans, Arial;
		}

		/* different font size for orig price when coupon/sale active */
		#ShopSuey-storefront-cart-wrapper > form#ShopSuey-storefront-cart > div#items > div > div > div#price-each-orig.ShopSuey-cart-discount-show {
			font-size: 17px;
			line-height: .3;
		}

		/* line total */
		#ShopSuey-storefront-cart-wrapper > form#ShopSuey-storefront-cart > div#items > div > div > span {
			font-size: 17px !important;
		}

		/* row when out of stock */
		#ShopSuey-storefront-cart-wrapper > form#ShopSuey-storefront-cart > div#items > div.ShopSuey-cart-nostock {
			background-color: rgba(230,230,230,.98) !important;
			background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQANLly6dSXUBBgYGAJlVDKlnbCUVAAAAAElFTkSuQmCC') !important;
		}

	/* cart buttons */
	#ShopSuey-storefront-cart-wrapper > form#ShopSuey-storefront-cart > div#buttons > a {
		font-family: Corbel, Calibri, Arial !important;
		background-color: #6c5e40 !important;
	}

	/* adjust coupon icon */
	#ShopSuey-storefront-cart-wrapper > form#ShopSuey-storefront-cart > div#coupons .fa {
		margin-top: 7px;
	}