/** Customize the WooCommerce cart buttons **/

/* Add to cart after added kept visible (to add another) */
ul.products li.product .added,
.woocommerce .wc-products .product .added,
.woocommerce ul.products li.product .added{
	display: inline-block !important;
}

/* Keep View Cart hidden always */
ul.products li.product .added_to_cart,
.woocommerce .wc-products .product .added_to_cart,
.woocommerce ul.products li.product .added_to_cart {
	display: none !important;
}

/* Hide View Cart from notification message */
.product_notification_text .wc-forward {
	display: none !important;
}

/* Remove checkmark from Add to Cart button */
.woocommerce #respond input#submit.added:after,
.woocommerce a.button.added:after,
.woocommerce button.button.added:after,
.woocommerce input.button.added:after {
	display: none;
}

/** End of Customize the WooCommerce cart buttons **/

/************************************************************************************
SHOP DOCK
*************************************************************************************/
/* Make space for the dock below the footer */
body.dock-on {
	padding-bottom: 93px;
}

/* Give more spacing to return to top since dock is at the bottom now */
body.dock-on .cd-top {
	bottom: 120px !important;
}

/* Cart thumbnail */
#cartdock .product {
	*display:inline;
	display: inline-block;
}




#cartdock {
	max-height: 150px;
	border-top: solid 1px #e6e6e6;
	position: fixed;
	bottom: 0;
	left:0;
	z-index: 999999;
	width: 100%;
	background-color: #f3f3f3;
}
.cartdock-inner {
	padding: 0 50px;
	width: 100%;
	margin: 0 auto;
}
/* cart slider */
#cart-slider {
	margin-top: -10px;
	width: 70%;
	float: left;
}
.cart-slides {
	margin: 0;
	padding: 0;
	display: none;
}
.cart-slides li {
	margin: 3px 6px 0 6px;
	padding: 0;
	list-style: none;
	float: left;
	text-align: center;
}
.cart-slides .product {
	margin: 0;
	position: relative;
}

/* cart product image */
.cart-slides .product-imagewrap {
	margin: 0 !important;
	float: none !important;
	max-width: 75px;
}
.cart-slides .product-image {
	padding: 3px;
}

.cart-slides .product-imagewrap img {
	padding: 3px;
	background: #fff;
	border: solid 1px #d4d4d4;
	border-radius: 4px;
}

/* remove item */
.product .cartdock-remove-product {
	text-indent: -900em;
	position: absolute;
	z-index: 99999;
	top: -3px;
	right: -3px;
	width: 20px;
	height: 20px;
	display: block;
	background: #C37F7F;
	border-radius: 100%;
}
.product .cartdock-remove-product:before,
.product .cartdock-remove-product:after {
	content: '';
	display: inline-block;
	border-top: 2px solid #fff;
	width: 11px;
	position: absolute;
	top: 9px;
	left: 5px;
}
.product .cartdock-remove-product:before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
.product .cartdock-remove-product:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.product .cartdock-remove-product:hover {
	background-color: #000;
}

/* checkout wrap */
.checkout-wrap {
	float: right;
	width: 200px;
	max-width: 30%;
	text-align: right;
	margin-top: 8px;
}

/* checkout button */
.checkout-button {
	margin: 0 0 .5em;
	padding: 0;
}
.checkout-button .button {
	min-width: auto !important;
}

/* cart total */
.cart-total {
	margin: 0 0 2px;
	padding: 0;
	font-size: 90%;
}
.cart-total span {
	display: inline-block;
	zoom:1;
	*display:inline;
}
.cart-total .total-item {
	font-weight: bold;
}
.cart-total .total-price {
	font-size: 90%;
}
.cart-total .amount {
	font-size: 80%;
}

/* cart loader */
#cart-loader {
	width: 16px;
	height: 16px;
	margin-right: 5px;
	background: url(../images/ajax-loader.gif) no-repeat center center;
}

/* hide */
.hide {
	display: none !important;
}
.clear {
	clear: both;
}

/* cart slider plugin style
================================================ */
#cartdock .jcarousel-clip {
/*
	margin-left: 20px;
*/
	margin-right: 20px;
	overflow: hidden;
}

/* jcarousel nav */
#cartdock .jcarousel-prev,
#cartdock .jcarousel-next {
	display: block;
	width: 14px;
	height: 22px;
	position: absolute;
	top: 40%;
	text-indent: -900em;
	cursor: pointer;
}
#cartdock.jcarousel-prev {
	left: 0;
}
#cartdock .jcarousel-next {
	right: 0;
}
#cartdock .jcarousel-prev-disabled,
#cartdock .jcarousel-next-disabled {
	display: none !important;
}
#cartdock .jcarousel-prev:before,
#cartdock .jcarousel-next:before {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    border: solid transparent;
    border-width: 2px;
    margin-top: -7px;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
#cartdock .jcarousel-prev:before {
    border-bottom-color: #828282;
    border-left-color: #828282;
}
#cartdock .jcarousel-next:before {
	border-top-color: #828282;
	border-right-color: #828282;
}
#cartdock .jcarousel-prev:hover:before {
    border-bottom-color: #000;
    border-left-color: #000;
}
#cartdock .jcarousel-next:hover:before {
    border-top-color: #000;
    border-right-color: #000;
}

/************************************************************************************
RESPONSIVE CSS
*************************************************************************************/
@media screen and (max-width: 600px) {

	/* cartdock */
	#cart-slider {
		display: none;
	}

	/* checkout wrap */
	.checkout-wrap {
		width: 100%;
		max-width: 100%;
		float: none;
		padding-bottom: 6px;
	}

	/* check button */
	.checkout-button {
		float: right;
	}
	.checkout-button button.button {
		font-size: .9em;
	}

	/* cart total */
	.cart-total {
		font-size: 110%;
		margin-top: 4px;
		float: left;
		text-align: left;
	}
	.variant-lightbox{
		display:block;
	}
	.variable-link{
		display: none !important;
	}

}

@media screen and (max-width: 480px) {

	/* product image wrap */
	#product_single_wrapper .product-imagewrap {
		margin-right: 0;
	}

}
