/*
**	Container
*/
#woocommerce-container{
	position: relative;
	float: left;
	width: 66.66%;
	height: auto;
}
@media all and (min-width: 320px) and (max-width: 767px){

	#woocommerce-container{
		width: 100%;
	}

}

/*
**	Body
*/
body.scroll-fixed{
	position: fixed;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
body.scroll-relative{
	position: inherit;
	height: inherit;
	overflow: inherit;
}

/*
**	Animations
*/
.animate-effect{
	-webkit-transition: all 375ms cubic-bezier(0.375, 0.770, 0.010, 0.995);
	   -moz-transition: all 375ms cubic-bezier(0.375, 0.770, 0.010, 0.995);
		 -o-transition: all 375ms cubic-bezier(0.375, 0.770, 0.010, 0.995);
			transition: all 375ms cubic-bezier(0.375, 0.770, 0.010, 0.995);
}
.animate-smooth{
	-webkit-transition: all 275ms cubic-bezier(0.315, 0.015, 0.000, 0.995);
	   -moz-transition: all 275ms cubic-bezier(0.315, 0.015, 0.000, 0.995);
		 -o-transition: all 275ms cubic-bezier(0.315, 0.015, 0.000, 0.995);
			transition: all 275ms cubic-bezier(0.315, 0.015, 0.000, 0.995);
}

/*
**	Cart
*/
#woocommerce-cart-wrap{
	position: fixed;
	top: 0;
	left: 5%;
	width: 90%;
	height: 100%;
	margin: 0;
	z-index: 99999;
}
body.cart-hide #woocommerce-cart-wrap{
	visibility: hidden;
	opacity: 0;
}
body.cart-show #woocommerce-cart-wrap{
	visibility: visible;
	opacity: 1;
}

#woocommerce-cart{
	position: absolute;
	width: 100%;
	height: 94%;
	top: 3%;
	left: 0;
	margin: 0;
	overflow: hidden;
}
body.cart-hide #woocommerce-cart{
	visibility: hidden;
	opacity: 0;
	transform: scale(.95);
	-webkit-box-shadow: 0px 6px 20px 0px rgba(0,0,0,0);
	   -moz-box-shadow: 0px 6px 20px 0px rgba(0,0,0,0);
			box-shadow: 0px 6px 20px 0px rgba(0,0,0,0);
}
body.cart-show #woocommerce-cart{
	visibility: visible;
	opacity: 1;
	transform: scale(1);
	-webkit-box-shadow: 0px 10px 40px 0px rgba(0,0,0,0.16);
	   -moz-box-shadow: 0px 10px 40px 0px rgba(0,0,0,0.16);
			box-shadow: 0px 10px 40px 0px rgba(0,0,0,0.16);
}

#woocommerce-cart-products{
	position: fixed;
	padding: 0 0 154px 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}
#woocommerce-cart-products-scroll{
	position: relative;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	padding: 12px;
	background-color: #f5f6fa;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.woocommerce-cart-products-scroll-product{
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	margin: 0 0 12px 0;
	border-radius: 3px;
	background-color: #fff;
	-webkit-box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.06);
	   -moz-box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.06);
			box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.06);
}
.woocommerce-cart-products-scroll-product:last-child{
	margin-bottom: 0;
}
.woocommerce-cart-products-scroll-product-image{
	position: relative;
	float: left;
	width: 33.33%;
	padding: 12px;
}
.woocommerce-cart-products-scroll-product-image img{
	display: block;
	width: 100%;
	height: auto;
	border-radius: 3px;
}
.woocommerce-cart-products-scroll-product-data{
	position: relative;
	float: left;
	width: 66.66%;
	padding: 12px 12px 12px 0;
}
.woocommerce-cart-products-scroll-product-data-quantity,
.woocommerce-cart-products-scroll-product-data-price{
	display: inline-block;
	font-size: smaller;
}
.woocommerce-cart-products-scroll-product-data-title{
	color: #e2001a;
	text-decoration: none;
	font-weight: bold;
}
.woocommerce-cart-products-scroll-product-data-title,
.woocommerce-cart-products-scroll-product-data-description{
	width: 100%;
	display: block;
}
.woocommerce-cart-products-scroll-product-data-description{
	font-size: smaller;
	display: none;
}
#woocommerce-cart-footer{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding: 10px;
	background-color: #fff;
	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	z-index: 1;
}
#woocommerce-cart-footer a{
	display: block;
	text-align: center;
	padding: 8px 0;
	margin: 0 0 10px 0;
	text-decoration: none;
	background-color: #f5f6fa;
	border-radius: 3px;
}
#woocommerce-cart-footer a{
	color: #fff;
	background-color: #e2001a;
	text-transform: uppercase;
	font-weight: bold;
}
#woocommerce-cart-footer a:last-child{
	margin-bottom: 0;
}
@media all and (min-width: 480px) {

	#woocommerce-cart-wrap{
		left: 50%;
		width: 70%;
		height: 100%;
		margin: 0 0 0 -35%;
	}
	#woocommerce-cart{
		width: 100%;
		height: 80%;
		top: 10%;
		left: 0;
		margin: 0;
	}

}
@media all and (min-width: 768px) {

	#woocommerce-cart-wrap{
		left: 50%;
		width: 60%;
		height: 100%;
		margin: 0 0 0 -30%;
	}
	#woocommerce-cart{
		width: 100%;
		height: 80%;
		top: 10%;
		left: 0;
		margin: 0;
	}
	.woocommerce-cart-products-scroll-product-image{
		width: 25%;
	}
	.woocommerce-cart-products-scroll-product-data{
		width: 75%;
	}
	.woocommerce-cart-products-scroll-product-data-description{
		display: block;
	}

}
@media all and (min-width: 1024px) {

	#woocommerce-cart-wrap{
		left: 50%;
		width: 40%;
		height: 100%;
		margin: 0 0 0 -20%;
	}
	#woocommerce-cart{
		width: 100%;
		height: 80%;
		top: 10%;
		left: 0;
		margin: 0;
	}

}

/*
**	Overlay
*/
body.cart-hide #woocommerce-cart-overlay{
	visibility: hidden;
	opacity: 0;
}
body.cart-show #woocommerce-cart-overlay{
	visibility: visible;
	opacity: 1;
}
#woocommerce-cart-overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.8);
	z-index: 99998;
}
