/*
 *	Created by: Cyro Morais
 *  Email: cyro@numinix.com
*/

/* pop shopping cart */
#shopping-cart-popup {
	background: #fff;
	padding: 30px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

#shopping-cart-popup:before,
#shopping-cart-popup:after {
	background: #ecf0f1;
	content: "";
	position: absolute;
	left: -1000px;
	right: -1000px;
	top: 0;
	z-index: 1;
}

#shopping-cart-popup:before {
	height: 10px;
	top: 36px;
}

#shopping-cart-popup:after {
	height: 4px;
	top: 50px;
}

#shopping-cart-popup.has--notitle:before,
#shopping-cart-popup.has--notitle:after {
	display: none;
}

	#shopping-cart-popup ul {
		list-style: none;
		padding: 0;	
		margin: 0;
	}
	
	/* title */
	#shopping-cart-popup h4,
	#shopping-cart-popup .ajaxCartPopupHeader {
		display: inline-block;
		background: #fff;
		position: relative;
		margin-bottom: 35px;
		font-family: 'IntroBlack', Arial, Helvetica, sans-serif;
		font-weight: 400;
		line-height: 100%;
		margin-top: -1px;
		font-size: 33px;
		padding: 0 15px;
		margin-left: -15px;
		z-index: 2;
		border: 0;
	}
	
	/* messages */
	#shopping-cart-popup .shopping-cart-messages {
		color: #B42020;
		font-size: 14px;
		margin-top: -21px;
		line-height: 1.4;
		margin-bottom: 21px;
	}
	
	/* items */
	#shopping-cart-popup .ajaxCartPopupItem {
		overflow: hidden;
		position: relative;
		border-top: 2px solid #ecf0f1;
		margin-top: 18px;
		padding-top: 18px;
	}

	#shopping-cart-popup .ajaxCartPopupItem:first-child {
		border-top: none;
		margin-top: 0;
		padding-top: 0;
	}

		/* links */
		#shopping-cart-popup li:not(.ajaxCartPopupOptions) a {
			color: #2980b9;
			font-size: 14px;
			text-decoration: none;
			margin-bottom: 0;
		}

		#shopping-cart-popup li:not(.ajaxCartPopupOptions) a:hover {
			color: #3498db;
			text-decoration: underline;
		}

		/* col left */
		#shopping-cart-popup .col-left {
			float: left;
			margin-right: 30px;
			height: auto;
			width: 108px;
		}

			#shopping-cart-popup .col-left img {
				display: block;
				width: 100%;
				max-width: 108px;
				max-height: 108px;
			}

		/* col right */
		#shopping-cart-popup .col-right {
			float: none;
			overflow: hidden;
			position: relative;
			/*top: -5px;*/
		}	

			/* common things */
			#shopping-cart-popup .qty-price-wrapper,
			#shopping-cart-popup .ajaxCartPopupProductsName {
				display: block;
			}

			#shopping-cart-popup .ajaxCartPopupProductsName span {
				font-weight: normal !important;
				padding: 0;
				line-height: 1.3;
				max-width: 490px;
			}

			/* price final */
			#shopping-cart-popup .product-price-final {
				color: #2c3e50;
				font-size: 16px;
				position: absolute;
				right: 0;
				top: 1px;
			}

			#shopping-cart-popup .ajaxCartPopupItem:first-child .product-price-final {
				top: 0;
			}
			
			/* title */
			#shopping-cart-popup .ajaxCartPopupProductsName {
				font-size: 16px !important;
				padding-right: 100px;
				line-height: 1.3;
				margin-bottom: 9px !important;	
			}

			#shopping-cart-popup [class*="wrapper"] {
				margin-top: -10px;
			}

			/* price item */
			#shopping-cart-popup .qty-price-wrapper {
				margin-top: 0;
				font-size: 14px;
				display: inline-block;
			}

				#shopping-cart-popup .qty-price-wrapper label,
				#shopping-cart-popup .qty-price-wrapper span {
					float: left;
					margin-bottom: 0;
				}

				#shopping-cart-popup .qty-price-wrapper label {
					color: #8d949a;
					clear: left;
					width: 71px;
					text-transform: capitalize;
					line-height: 30px;
					padding-bottom: 0;
				}

				#shopping-cart-popup .qty-price-wrapper span {
					color: #2c3e50;
					padding-bottom: 0;
					line-height: 30px;
				}

				#shopping-cart-popup .qty-price-wrapper .backorder {
					display: block;
					clear: left;
					padding-top: 6px;
					color: #e74c3c;
					line-height: 30px;
				}

				#shopping-cart-popup .qty-price-wrapper input {
					float: left;
					width: 50px;
					height: 30px;
					border:1px solid #a7adb2;
					-webkit-border-radius: 3px;
					-moz-border-radius: 3px;
					border-radius: 3px;
					text-align: center;
					margin-bottom: 6px;
				}

				#shopping-cart-popup .qty-price-wrapper .quantity-buttons {
					float: left;
					margin-left: 9px;
				}

				#shopping-cart-popup .quantity-buttons a {
					display: block;
					font-size: 12px !important;
				}

				#shopping-cart-popup .quantity-buttons a + a {
					margin-top: 6px;
				}
		
		/* subtotal */
		#shopping-cart-popup #subTotal {
			border: 2px solid #c9d0d6;
			border-left: none;
			border-right: none;
			font-size: 14px;
			overflow: hidden;
			padding: 0;
			margin: 21px 0 30px;
		}

		#shopping-cart-popup #subTotal a {
			color: #2980B9;
			font-weight: normal;
		}

		#shopping-cart-popup #subTotal .ajaxCartPopupSubtotal {
			font-weight: bold;
			color: #2c3e50;
			font-size: 16px;
		}
			
			/* common things */
			#shopping-cart-popup #subTotal span {
				display: inline-block;
				height: 43px;
				line-height: 43px;
			}

				#shopping-cart-popup #subTotal span .bold {
					width: 85px;
					text-align: right;
				}

				#shopping-cart-popup #subTotal span a {
					color: #2980b9;
					font-weight: normal;
					font-size: 14px;
				}

				#shopping-cart-popup #subTotal a:hover {
					color: #3498db;
					text-decoration: underline;
				}

				#shopping-cart-popup #subTotal > span:last-child {
					display: none;
				}
				
				#shopping-cart-popup #subTotal .shopping-cart-update {
					padding: 12px 0;
					border-bottom: 2px solid #C9D0D6;
				}

				#shopping-cart-popup #subTotal .shopping-cart-update span {
					height: auto;
					line-height: normal;
				}

				#shopping-cart-popup #subTotal .shopping-cart-update a {
					float: right;
					position: relative;
					top: 2px;
				}
					

			/* subtotal */
			#shopping-cart-popup #subTotal .slider-subtotal {
				float: right;
				color: #2c3e50;
				font-size: 16px;
				font-weight: bold;
			}

			/* buttons */
			#shopping-cart-popup #shopping-cart-popup .ajaxCartPopupOptions {
				padding-bottom: 4px;
				overflow: hidden;
				margin-top: 30px;
			}

			#shopping-cart-popup .ajaxCartPopupOptions a {
				color: #fff;
				border-radius: 3px 3px 0 0;
				display: inline-block;
				line-height: 100%;
				font-size: 16px;
				padding: 11px 26px;
				position: relative;
				left: 0;
				top: 0;
				text-decoration: none;
			}

			#shopping-cart-popup .ajaxCartPopupOptions a:before {
				content: "";
				background: url(../../images/btn_button_arrows.png) no-repeat 0 0;
				height: 12px;
				width: 8px;
				position: absolute;
				top: 12px;
			}

			#shopping-cart-popup .ajaxCartPopupOptions a:after {
				content: '';
				height: 3px;
				border-radius: 0 0 3px 3px;
				position: absolute;
				bottom: -3px;
				left: 0;
				right: 0;
			}

			#shopping-cart-popup #ajaxCartPopupContinueShopping a {
				background: #a7adb2;
				float: left;
				padding-left: 36px;
				border: 0;
				color:#fff;
			}

				#shopping-cart-popup #ajaxCartPopupContinueShopping a:before {
					background-position: 0 0;
					left: 18px;
				}

				#shopping-cart-popup #ajaxCartPopupContinueShopping a:hover {
					background: #9ca8b1;
				}
				
				#shopping-cart-popup #ajaxCartPopupContinueShopping a:after {
					background: #8d949a;
				}
			
			#shopping-cart-popup #ajaxCartPopupCheckout {
				float: right;
			}

				#shopping-cart-popup #ajaxCartPopupCheckout a {
					background: #e74c3c;
					padding-right: 36px;
					border: 0;
					color:#fff;
				}

				#shopping-cart-popup #ajaxCartPopupCheckout a:before {
					content:'';
					background-position: -9px 0;
					right: 18px;
				}

				#shopping-cart-popup #ajaxCartPopupContinueShopping a:before,
				#shopping-cart-popup #ajaxCartPopupCheckout a:before {
					content: '';
					top: 19px;
				}

				#shopping-cart-popup #ajaxCartPopupCheckout a:hover {
					background: #f93f2c;
					color: #fff;
				}

				#shopping-cart-popup #ajaxCartPopupContinueShopping a:hover {
					color: #fff;
				}

				
				#shopping-cart-popup #ajaxCartPopupCheckout a:after {
					background: #c13d30;
				}

				#shopping-cart-popup .ajaxCartPopupOptions {
					overflow: visible;
				}

