
/*  ---------------------------------------------------	*/

/*    	GENERAL											

		rot			#d83e49
		green		#41d07a

*/
	
/* ---------------------------------------------------	*/

/* woocommerce message */
.woocommerce-message, 
.woocommerce-error {
	font-weight: 400;
	list-style: none;
	position: relative;
	padding-right: 100px;
	background: #dbedda;
	padding: 20px 120px 20px 20px;
	margin: 0 0 40px 0;
	}
	.single-product .woocommerce-message, 
	.single-product .woocommerce-error {
	margin-bottom: 0;
	}
	.woocommerce-cart .woocommerce-message, 
	.woocommerce-cart .woocommerce-error {
	background: none;
	color: #41d07a;
	padding: 0;
	margin-bottom: 20px;
}

.woocommerce-error {
	background: #fff;
	color: #d83e49;
	}
	.sr-ajax-message .woocommerce-error {
	background: #d83e49;
	color: #fff;
	padding: 20px;
}

.woocommerce-error li {
	margin-top: 4px;
}
.woocommerce-error li:first-child {
	margin-top: 0;
}

.woocommerce-no-products {
	color: rgba(0,0,0,0.31);
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 80px;
	margin-top: 80px;
	text-align: center;
}

.woocommerce-message > a.button {
	position: absolute;
	top: 14px;
	right: 40px;
	padding: 8px 25px !important;
	}
	.sr-ajax-message .woocommerce-error a.button {
	display: none;
}

.sr-ajax-message {
	position: fixed;
	top: 15px;
	right: 15px;
	width: 300px;
	opacity: 0;
	visibility: hidden;
	height: 0;
	transition: all 0.4s ease, height 0.01s ease 0.41s;
	z-index: 1000000;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.18); 
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.18);
	background: #fff;
	}
	.sr-ajax-message.active {
	opacity: 1;
	visibility: visible;
	transition: all 0.4s ease 0.02s, height 0.01s ease;
	}

.sr-ajax-message .close-icon {
	height: 20px;
	line-height: 20px;
	top: 10px;
	right: 10px;
	}

.sr-ajax-message .close-icon svg {
	fill: #fff;
	}

/* hide messages */
body.ajax-addtocart.single-product .woocommerce-notices-wrapper .woocommerce-message,
.grid-options .woocommerce-notices-wrapper .woocommerce-message {
	display: none;
}

	
/* price */	
.price, 
.amount  { 
	font-size: 12px;
	line-height: 20px;
	font-weight: 400;
	color: #000;
	transition: color 0.2s ease;
	}
	.text-light .price, .text-light .amount  { color: #fff; }

.price ins, 
ins  .amount { 
	text-decoration: none;
	display: inline-block;
	}
	
.price del, 
del  { 
	display: inline-block; 
	opacity: 0.5;
	margin-left: 6px;
	line-height: 0;
	}
	del .amount  { 
	font-size: 0.9em !important;
	color: #000 !important;
	}
	.text-light del .amount  { color: #fff !important; }

/* use flex to place sale price after regular price  */
.price {
	display: inline-flex !important;
	}

.price del {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }

.price ins {
    -ms-flex-order: 1;
    -webkit-order: 1;
    order
	: 1;
  }
	
.price .woocommerce-Price-currencySymbol, 
.amount .woocommerce-Price-currencySymbol, 
.amount .woocommerce-Price-currencySymbol {
	display: inline-block;
	margin-right: 0.18em;
	font-size: 0.9em;
	position: relative;
	}


/* star rating */
.product .star-rating {
	position: relative;
	overflow: hidden;
	letter-spacing: 0.3em;
	font-size: 13px;
	line-height: 23px;
	display: inline-block;
	float: left;
	width: auto;
	}
	.shop-container .product .star-rating {
	float: none;
	}
		
.product .star-rating::before {
    content: "\f3ae\f3ae\f3ae\f3ae\f3ae";
    font-family: "Ionicons";
    color: rgba(0,0,0,0.2);
	}
	
.product .star-rating span { 
	color: #000;
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 2em;
	overflow: hidden;
	}
	
.product .star-rating span::before {
    content: "\f2fc\f2fc\f2fc\f2fc\f2fc";
    font-family: "Ionicons";
    position: absolute;
    top: 0;
    left: 0;
	}


/* Quantity buttons */	
.quantity {
	position: relative;
	display: inline-block;
	margin: 0;
	text-align: center;
	}
	.quantity.single-add {
	display: none;
	}
	.quantity.single-add + .sr-button {
	margin-left: 0 !important;
	}
	
.quantity input[type="number"]::-webkit-inner-spin-button, 
.quantity input[type="number"]::-webkit-outer-spin-button { 
  	-webkit-appearance: none; 
  	margin: 0; 
	}	
	
.quantity input[type="number"] {
	text-align: center;
    -moz-appearance:textfield;	
	font-size: 13px !important;
	border: none;
	width: 24px;
	margin: 0 13px;
	height: 24px;
	padding: 0;
	}

.quantity span {
	display: block;
	width: 15px;
	height: 30px;
	position: absolute;
	bottom: calc(50% - 15px);
	left: 0;
	cursor: pointer;
	z-index: 10;
	}
	
.quantity span.plus {
	left: auto;
	right: 0;
	}

.quantity span svg {
	position: absolute;
	top: 10px;
	left: 0;
	width: 10px;
	}
	.quantity span.plus svg {
	left: auto;
	right: 0;
	}

.text-light .quantity span svg path {
	fill: #fff;
	}
	


/* pseudo add to cart animation */
.pseudo-add-to-cart.loading .text span,
.shop-container .pseudo-add-to-cart.added .text span {
	transform: translateY(100%) !important;
	}

.pseudo-add-to-cart.loading::after {
	height: 0;
	}
	.shop-container .pseudo-add-to-cart.loading::after,
	.shop-container .pseudo-add-to-cart.added::after {
	height: 100%;
	}

.pseudo-add-to-cart.loading {
	color: #000 !important;
	border-color: rgba(0,0,0,0.11);
	}
	.text-light .pseudo-add-to-cart.loading {
	color: #fff !important;
	border-color: rgba(255,255,255,0.19);
	}
	.shop-container .pseudo-add-to-cart.loading,
	.shop-container .pseudo-add-to-cart.added {
	color: #000 !important;
	border-color: #fff;
	}

.pseudo-add-to-cart .check {
	position: absolute;
	top: 0;
	left: 0;
	line-height: 20px;
	height: 20px;
	z-index: 1;
	margin-top: 10px;
	width: 100%;
	overflow: hidden;
	}
	.sr-button:not(.pseudo-add-to-cart) .check {
	display: none;
	}

.pseudo-add-to-cart .check span {
	display: inline-block;
	transform: translateY(-100%);
	transition: all 450ms cubic-bezier(0.195, 0.290, 0.045, 0.995); 
	}
	.pseudo-add-to-cart.loading .check span,
	.shop-container .pseudo-add-to-cart.added .check span {
	transform: translateY(0);
	}

.pseudo-add-to-cart.loading.icon-animate .icon,
.shop-container .pseudo-add-to-cart.added.icon-animate .icon {
	transform: translateY(50%);
	opacity: 0 !important;
	}


/* Select Container */
form .select2-container {
	height: 44px;
}

form .select2-container .select2-selection--single {
	border: 1px solid rgba(0,0,0,0.11);
	border-radius: 0;
	height: 44px;
}

form .select2-container .select2-selection--single .select2-selection__rendered {
	color: #000 !important;
	font-weight: 400;
	font-size: 14px;
	background: transparent;
	padding-left: 15px;
	line-height: 44px;
}

form .select2-container .select2-selection--single .select2-selection__arrow {
	background-image:url(../../../files/assets/select-arrow.svg);
  	background-position: right 10px center;
	background-repeat: no-repeat;
	-webkit-background-size:8px 6px;
	-moz-background-size:8px 6px;
	-o-background-size:8px 6px;
	background-size:8px 6px;
	height: 44px;
}

form .select2-container .select2-selection--single .select2-selection__arrow b {
	display: none;
}

body .select2-dropdown {
	border: 1px solid rgba(0,0,0,0.11) !important;
	border-radius: 0;
	margin-top: -1px;
}

body .select2-search--dropdown {
	border-bottom: 1px solid rgba(0,0,0,0.11);
	padding: 0;
}

body .select2-search--dropdown input {
	border: none !important;
	padding: 10px 15px !important;
	height: 38px;
}

body .select2-results__option {
	font-size: 14px;
	line-height: 16px;
	margin: 0;
	padding: 7px 15px;
}


body .select2-container--default .select2-results__option[aria-selected="true"], 
body .select2-container--default .select2-results__option[data-selected="true"] {
    background: none;
}

body .select2-container--default .select2-results__option--highlighted[aria-selected], 
body .select2-container--default .select2-results__option--highlighted[data-selected] {
	background: rgba(0,0,0,0.04);
	color: #000;
}


/*  ---------------------------------------------------	*/

/*    MINI CART											*/
	
/* ---------------------------------------------------	*/
.header-cart {
	float: right;
	}
	.header-cart[class*='icon-'] {
	margin-left: 20px;
	margin-right: -4px;
	}

.header-cart .cart-amount {
	width: 24px;
	text-align: center;
	display: block;
	transition: all 0.3s ease;
	}
	.header-cart.cart-text .cart-amount { 
	width: auto; 
	}

.header-cart:not(.cart-withicon):not(.cart-text) .cart-amount::before {
	content: "";
	position: absolute;
	top: 0;
	left:  0;
	width: 24px;
	height: 24px;
	background: #000;
	border: 1px solid #000;
	border-radius: 20px;
	z-index: 0;
	transition: all 0.3s ease;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	}
	body:not(.scrolled) #header.transparent-light:not(.header-hover) .header-cart:not(.cart-withicon) .cart-amount::before { 
	background: #fff; 
	border-color: #fff; 
	}
	body:not(.scrolled) #header.transparent-dark:not(.header-hover) .header-cart:not(.cart-withicon) .cart-amount::before { 
	background: #000; 
	border-color: #000; 
	}

.header-cart .cart-amount span.minicart-count {
	position: relative;
	z-index: 1;
	font-weight: 400;
	text-align: center;
	}
	.header-cart:not(.cart-withicon):not(.cart-text) .cart-amount span.minicart-count {
	color: #fff;
	font-size: 10px;
	font-family: Arial;
	display: inline-block;
	line-height: 24px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	margin-top: -1px;
	transition: all 0.2s ease;
	}
	body:not(.scrolled) #header.transparent-light:not(.header-hover) .header-cart:not(.cart-withicon):not(.cart-text) .cart-amount span.minicart-count { 
	color: #000; 
	}
	body:not(.scrolled) #header.transparent-dark:not(.header-hover) .header-cart:not(.cart-withicon):not(.cart-text) .cart-amount span.minicart-count { 
	color: #fff; 
	}

.header-cart.cart-text .cart-amount span.minicart-count::before {
	content: "(";
	}

.header-cart.cart-text .cart-amount span.minicart-count::after {
	content: ")";
	}

/* minicart with icon */
.header-cart .cart-amount span.icon {
	position: absolute;
	top: 50%;
	left: 50%;
	line-height: 22px;
	height: 22px;
	transform: translateX(-50%) translateY(-50%);
	}

.header-cart .cart-amount span.icon svg {
	width: 20px;
	max-width: none;
	}

.header-cart.cart-withicon .cart-amount span.minicart-count {
	font-family: 'Arial','Helvetica';
	font-weight: 400;
	background: #000;
	position: absolute;
	top: calc(50% - 20px);
	right: -7px;
	border-radius: 9px;
	min-width: 18px;
	height: 18px;
	color: #fff;
	text-align: center;
	line-height: 18px;
	font-size: 9px;
	display: inline-block;
	transition: all 0.2s ease;
	}
	header.header-light .header-cart.cart-withicon .cart-amount span.minicart-count,
	body:not(.scrolled) #header.transparent-light:not(.header-hover) .header-cart.cart-withicon .cart-amount span.minicart-count,
	body.cart-is-open:not(.scrolled) #header.transparent-light .header-cart.cart-withicon .cart-amount span.minicart-count {
	background: #fff;
	color: #000;
	}
	body:not(.scrolled) #header.transparent-dark:not(.header-hover) .header-cart.cart-withicon .cart-amount span.minicart-count,
	body.cart-is-open:not(.scrolled) #header.transparent-dark .header-cart.cart-withicon .cart-amount span.minicart-count {
	background: #000;
	color: #fff;
	}
	.header-cart.cart-withicon .cart-amount.cart-empty span.minicart-count {
	opacity: 0;
	visibility: hidden;
	}

#mini-cart {
	position: fixed;
	right: 0;
	top:  0;
	width: 400px;
	max-width: 100%;
	height: 100%;
	background: #fff;
	z-index: 1601;
	}

#mini-cart * {
	z-index: 3;
	}
	#mini-cart::before {
	z-index: 2;
	}
	#mini-cart .menu-cart-content {
	z-index: 1;
	}

.close-icon {
	width: 20px;					
	height: 40px;							/* custom css LOGO HEIGHT */
	line-height: 40px;						/* custom css LOGO HEIGHT */
	border-radius: 20px;
	position: absolute;
	top: 20px;
	right: 15px;
	color: #fff;
	z-index: 1510;
	}

.close-icon svg {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-webkit-transition: all 315ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
	   -moz-transition: all 315ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
			transition: all 315ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
	width: 16px;
	}
	.close-icon:hover svg {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(135deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(135deg);
	-o-transform: translateX(-50%) translateY(-50%) rotate(135deg);
	transform: translateX(-50%) translateY(-50%) rotate(135deg);
	}

#mini-cart .cart-title {
	height: 40px;											/* custom css LOGO HEIGHT */
	line-height: 40px;										/* custom css LOGO HEIGHT */
	padding: 20px 20px;										/* custom css header height */
	margin: 0;
	border-bottom: 1px solid rgba(0,0,0,0.11);
	position: relative;
	z-index: 3;
	}

#mini-cart .menu-cart-content {
	height: calc(var(--vh, 1vh) * 100 - 80px);				/* custom css (80 = title height) */
	position: relative;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	}

#mini-cart .menu-cart-content .cart-list {
	height: calc(var(--vh, 1vh) * 100 - 80px - 114px);				/* custom css (80 = title height) */
	overflow-y: auto;
	padding: 15px 20px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	}
	#mini-cart.show-cart-link .menu-cart-content .cart-list {
	height: calc(var(--vh, 1vh) * 100 - 80px - 135px);				/* custom css (80 = title height) */
	}

#mini-cart .menu-cart-content .cart-list .cart-table .cart-item {
	overflow: hidden;
	padding: 15px 0;
	border-bottom: 1px solid rgba(0,0,0,0.11);
	}
	#mini-cart .menu-cart-content .cart-list .cart-table .cart-item:first-child {
	padding-top: 0;
	}
	#mini-cart .menu-cart-content .cart-list .cart-table .cart-item:last-child {
	border: none;
	}

#mini-cart .menu-cart-content .cart-list .cart-table .cart-item .product-image {
	width: 90px;
	float: left;
	}

#mini-cart .menu-cart-content .cart-list .cart-table .cart-item .product-info {
	width: calc(100% - 110px);
	float: right;
	position: relative;
	}

#mini-cart .menu-cart-content .cart-list .cart-table .cart-item .product-title {
	width: calc(100% - 55px);
	}

#mini-cart .menu-cart-content .cart-list .cart-table .cart-item .product-bottom {
	overflow: hidden;
	margin-top: 15px;
	}

#mini-cart .menu-cart-content .cart-list .cart-table .cart-item .product-bottom .product-quantity {
	float: left;
	}

#mini-cart .menu-cart-content .cart-list .cart-table .cart-item .product-bottom .product-subtotal {
	float: right;
	}

#mini-cart .menu-cart-content .update-cart-action {
	display: none;
	}

#mini-cart .menu-cart-content .cart-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	padding: 20px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	border-top: 1px solid rgba(0,0,0,0.11);
	}

#mini-cart.show-cart-link .menu-cart-content .cart-bottom {
	padding-bottom: 15px;
	}

.menu-cart-content .cart-bottom .total {
	overflow: hidden;
	}

.menu-cart-content .cart-bottom .total h6 {
	float: left;
	font-weight: 700;
	}

.menu-cart-content .cart-bottom .total .amount {
	float: right;
	font-weight: 700;
	}

.menu-cart-content .cart-bottom .buttons {
	margin-top: 10px;
	text-align: center;
	}

.menu-cart-content .cart-bottom .buttons .sr-button:first-child {
	width: 100%;
	display: block;
	}

.menu-cart-content .cart-bottom .buttons .sr-button.underline {
	margin-top: -10px;
	display: none;
	}

#mini-cart.show-cart-link .menu-cart-content .cart-bottom .buttons .sr-button.underline {
	display: inline-block;
}

.menu-cart-content .empty-cart  {
	padding: 30px 20px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	}

.empty-cart .empty-main-text {
	color: #000;
	}

.empty-cart span {
	display: block;
	}

/* animation for mini cart */
#mini-cart {
	transform: translateX(101%);
	-webkit-transition: all 649ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
	   -moz-transition: all 649ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
			transition: all 649ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
	visibility: hidden;
	}
	.cart-is-open #mini-cart {
	-webkit-transform: translateX(0%);
	   -moz-transform: translateX(0%);
			transform: translateX(0%);
	-webkit-transition: all 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
	   -moz-transition: all 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
			transition: all 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
	visibility: visible;
	}

#mini-cart .cart-close, 
#header-search .search-close {
	transition: all 0.4s ease;
	opacity: 0;
	}
	.cart-is-open #mini-cart .cart-close, 
	.search-is-open #header-search .search-close {
	opacity: 1;
	transition-delay: 0.6s;
	}

#mini-cart .cart-title {
	transition: all 0.5s ease;
	opacity: 0;
	}
	.cart-is-open #mini-cart .cart-title {
	opacity: 1;
	transition-delay: 0.4s;
	}

#mini-cart .empty-cart span {
	transition: all 0.35s ease 0.4s;
	transform: translateY(10px);
	opacity: 0;
	}
	.cart-is-open #mini-cart .empty-cart span {
	transform: translateY(0px);
	opacity: 1;
	}
	.cart-is-open #mini-cart .empty-cart span:nth-child(2n) {
	transition-delay: 0.45s;
	}

#mini-cart .menu-cart-content .cart-bottom .total,
#mini-cart .menu-cart-content .cart-bottom .buttons {
	transform: translateY(5px);
	opacity: 0;
	transition: all 0.4s ease;
	}
	.cart-is-open #mini-cart .menu-cart-content .cart-bottom .total,
	.cart-is-open #mini-cart .menu-cart-content .cart-bottom .buttons {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.4s;
	}
	.cart-is-open #mini-cart .menu-cart-content .cart-bottom .buttons {
	transition-delay: 0.5s;
	}

#mini-cart .menu-cart-content .cart-table .cart-item {
	opacity: 0;
	transition: all 0.3s ease;
	}
	.cart-is-open #mini-cart .menu-cart-content .cart-table .cart-item {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.4s;
	}
	.cart-is-open #mini-cart .menu-cart-content .cart-table .cart-item:nth-child(2n) {
	transition-delay: 0.43s;
	}
	.cart-is-open #mini-cart .menu-cart-content .cart-table .cart-item:nth-child(3n) {
	transition-delay: 0.46s;
	}
	.cart-is-open #mini-cart .menu-cart-content .cart-table .cart-item:nth-child(4n) {
	transition-delay: 0.49s;
	}
	.cart-is-open #mini-cart .menu-cart-content .cart-table .cart-item:nth-child(5n) {
	transition-delay: 0.52s;
	}
	.cart-is-open #mini-cart .menu-cart-content .cart-table .cart-item:nth-child(6n) {
	transition-delay: 0.55s;
	}
	.cart-is-open #mini-cart .menu-cart-content .cart-table .cart-item:nth-child(7n) {
	transition-delay: 0.58s;
	}
	

/* when woo is updating (from js) */
#mini-cart::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	opacity: 0;
	background: #fff;
	z-index: 2;
	transition: all 0.3s ease 0.05s, height 0.01s ease 0.35s;
	}
	.updating-woocart #mini-cart::after {
	height: 100%;
	opacity: 1;
	transition: all 0.3s ease 0.05s, height 0.01s ease;
	}

#mini-cart .sr-loader-icon { 
	transition: all 0.2s ease; 
	opacity: 0; 
	visibility: hidden;
}
.updating-woocart #mini-cart .sr-loader-icon { 
	opacity: 1; 
	visibility: visible; 
}



/*  ---------------------------------------------------	*/

/*    SHOP GRID PAGE 									*/
	
/* ---------------------------------------------------	*/
#main-shop-grid.shop-container {
	margin-bottom: 40px;
	}

.shop-container .shop-item {
	overflow: visible;
	}

.shop-container .shop-item .shop-item-inner {
	position: relative;
	}
	.shop-container .shop-item .shop-item-inner.meta-alignment-center {
	text-align: center;
	}
	.shop-container .shop-item .shop-item-inner.meta-alignment-right {
	text-align: right;
	}

.shop-container .shop-item .shop-item-inner.shop-item-bg {
	padding-bottom: 10px;
	}

.shop-container .shop-item .product-media,
.cat-item .cat-media {
	position: relative;
	}

.shop-container .shop-item:hover .thumb-hover .hover-image {
	opacity: 1;
	}

.shop-container .shop-item .product-meta,
.cat-item .cat-meta {
	position: relative;
	display: block;
	margin-bottom: 10px;
	}
	.shop-container .shop-item .shop-item-inner.shop-item-bg .product-meta {
	padding: 0 10px;
	}
	.shop-container .shop-item .meta-alignment-center .product-meta {
	text-align: center;
	}
	.shop-container .shop-item .meta-alignment-right .product-meta {
	text-align: right;
	}
	.shop-container .shop-item .meta-pos-onimage .product-meta {
	position: absolute;
	bottom: 15px;
	left: 15px;
	width: calc(100% - 30px);
	z-index: 4;
	margin: 0;
	}

.shop-container .shop-item .product-media + .product-meta,
.shop-container .shop-item .variation-onimage form + .product-meta,
.shop-container .shop-item .badge-onimage .onsale + .product-meta,
.shop-container .shop-item .badge-onimage .badges + .product-meta {
   	margin-top: 10px;
	}

.shop-container .shop-item .badge-onimage:not(.variation-onimage) form + .onsale + .product-meta,
.shop-container .shop-item .badge-onimage:not(.variation-onimage) form + .badges + .product-meta {
   	margin-top: 0;
	}

.shop-container .shop-item .product-media + .onsale,
.shop-container .shop-item .variation-onimage form + .onsale {
   	margin-top: 10px;
	}
	.shop-container .shop-item .product-media + .badges,
	.shop-container .shop-item .variation-onimage form + .badges {
   	margin-top: 15px;
	margin-bottom: 3px;
	}

.shop-container .shop-item .badge-onimage > .onsale,
.shop-container .shop-item .badge-onimage > .badges {
   	margin: 0 !important;
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 4;
	}

.shop-container .shop-item .badge-onimage > .badges > span {
   	margin: 0 !important;
	position: absolute;
	top: 0;
	right: 0;
	}
	.shop-container .shop-item .badge-onimage > .badges > .onsale:nth-child(2n),
	.shop-container .shop-item .badge-onimage > .badges > .hot-badge:nth-child(2n) {
	top: 22px;
	}
	.shop-container .shop-item .badge-onimage > .badges > .hot-badge:nth-child(3n) {
	top: 44px;
	}
	

.shop-container .shop-item .product-meta .product-name {
   	display: block;
	margin: 0;
	font-weight: 500;
	}
	.shop-container .shop-item .meta-alignment-float .product-meta .product-name {
   	max-width: calc(100% - 40px);
	}

.shop-container .shop-item .product-meta .price {
   	display: inline-block;
	}
	.shop-container .shop-item .meta-alignment-float .product-meta .price {
   	position: absolute;
	top: 0;
	right: 0;
	}
	.shop-container .shop-item .meta-alignment-float.meta-pos-onimage .product-meta .price {
   	position: absolute;
	top: auto;
	bottom: 0;
	}

.shop-container .shop-item .meta-pos-onimage .product-meta {
	transition: all 0.2s ease;
	}
	.shop-container .shop-item:hover .meta-pos-onimage .product-meta {
	opacity: 0;
	visibility: hidden;
	}

.shop-container .shop-item .grid-button {
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: calc(100% - 20px);
	opacity: 0;
	visibility: hidden;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 5;
	}

.shop-container .shop-item:hover .grid-button {
	opacity: 1;
	visibility: visible;
	}

.shop-container .shop-item .grid-button .sr-button {
   	width: 100%;
	margin: 0;
	display: block;
	}

.shop-container .shop-item:hover .pseudo-add-to-cart .sr-loader-icon::after,
.shop-container .shop-item:hover .pseudo-add-to-cart .icon .check::after,
.shop-container .shop-item:hover .pseudo-add-to-cart .icon .check::before { background: #000; }

.shop-container .shop-item .added_to_cart {
   	display: none;
	}

.shop-container .shop-item .out-of-stock {
	z-index: 2;
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: #fff;
	height: 40px;
	line-height: 40px;
	width: calc(100% - 20px);
	text-align: center;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
.shop-container .shop-item:hover .out-of-stock {
	opacity: 1;
	visibility: visible;
	}
	
span.onsale,
span.badges span {
	font-weight: 400;
	font-size: 10px;
	height: 20px;
	line-height: 20px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #d83e49;
	border: 1px solid transparent;
	display: inline-block;
	}
	span.onsale.block,
	span.badges span.block {
	padding: 0px 6px;
	margin-bottom: 3px;
	font-size: 11px;
	}
	.single-product span.onsale,
	.single-product span.badges span {
	font-size: 12px;
	height: 22px;
	line-height: 22px;
	margin-right: 5px;
	}
	.single-product span.onsale.block,
	.single-product span.badges span.block {
	font-size: 12px;
	height: 21px;
	line-height: 21px;
	}

span.badges {
	display: block;
	}
	.shop-container .shop-item .shop-item-bg span.badges {
	margin-left: 10px;
	margin-right: 10px;
	}

span.badges span.new-badge {
	color: #000;
	}

span.badges span.hot-badge {
	color: #398c85;
	}


/* variation on grid ( do not use .shop-container > .product for carousel ) */
.shop-container .product:not(.product-type-variable) form.cart,
.shop-container .product form.cart > *:not(.variations):not(.variations_button),
.shop-container .product form.cart .variations_button > *:not(.sr-button),
.shop-container .product.product-type-variable form.cart .sr-button,
.shop-container .shop-item form.cart .variations .variation .name {
	display: none !important;
	width: 0;
	height: 0;
	line-height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.shop-container .shop-item form.cart {
	margin: 10px 0 0 0;
	z-index: 4;
	}
	.shop-container .shop-item .shop-item-bg form.cart {
	margin-left: 10px;
	margin-right: 10px;
	}
	.shop-container .shop-item .variation-onimage form.cart {
	position: absolute;
	top: 15px;
	left: 15px;
	margin: 0;
	}
	.shop-container .shop-item .product-meta + form.cart {
	margin-top: -5px;
	}

.shop-container .shop-item form.cart .product-add-to-cart {
	position: absolute;
	top: -10px;
	transform: translateY(-100%);
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin: 0;
	}

.shop-container .shop-item:hover form.cart .product-add-to-cart {
	opacity: 1;
	visibility: visible;
	top: -20px;
	}

.shop-container .shop-item form.cart .variations .variation .value {
	float: none;
	margin: 0;
	}

.shop-container .shop-item form.cart .variations .variation {
	margin-top: 0;
	min-height: inherit;
}

.shop-container .shop-item form.cart .variations .variation .value .variable-items-wrapper,
.shop-container .shop-item form.cart .variations .variation .value select {
	display: none;
}

.shop-container .shop-item .var-all form.cart .variations .variation .value .variable-items-wrapper {
	display: block;
}

.shop-container .shop-item form.cart .variations .variation ul {
	padding: 0;
	}

	.shop-container .shop-item .meta-alignment-center:not(.variation-onimage) form.cart .variations .variation ul {
	text-align: center;
	}
	.shop-container .shop-item .meta-alignment-right:not(.variation-onimage) form.cart .variations .variation ul {
	text-align: right;
	}


/* imagebutton / category grid */
.imagebutton-media .imagebutton-title {
	position: absolute;
	top: 40px;
	left: 40px;
	margin: 0;
	}
	.imagebutton-media.top-right .imagebutton-title { left: auto; right: 40px; text-align: right; }
	.imagebutton-media.bottom-left .imagebutton-title { top: auto; bottom: 40px; }
	.imagebutton-media.bottom-right .imagebutton-title { top: auto; bottom: 40px; left: auto; right: 40px; text-align: right; }
	.imagebutton-media.center-center .imagebutton-title { 
		top: 50%;
		left: 50%;
		-webkit-transform: translateX(-50%) translateY(-50%);
		-moz-transform: translateX(-50%) translateY(-50%);
		transform: translateX(-50%) translateY(-50%);
		text-align: center;
	}

.imagebutton-media .imagebutton-subtitle {
	margin-top: 0;
	color: #000 !important;
	}
	.imagebutton-media.text-light .imagebutton-subtitle { color: #fff !important; }
	


/*  ---------------------------------------------------	*/

/*    GRID OPTIONS										*/
	
/* ---------------------------------------------------	*/
.woocommerce #main {
	margin-top: 40px;
	}
	.woocommerce.single-product #page-body #main,
	.woocommerce #hero.no-bg ~ #page-body #main {
	margin-top: 0;
	}

.woocommerce #main .spacer-shop-grid {
	height: 60px;
	}

.woocommerce .grid-options {
	margin-top: 40px;
	z-index: 2;
	position: relative;
	}
	.woocommerce .grid-options:first-child {
	margin-top: 0;
	}

.woocommerce #main-shop-grid  {
	margin-top: 20px;
	}

.woocommerce-breadcrumb {
	color: rgba(0,0,0,0.31);
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	padding: 20px 0;
	display: inline-block;
	}
	.text-light .woocommerce-breadcrumb {
	color: rgba(255,255,255,0.41);
	}
	.grid-options .woocommerce-breadcrumb {
	padding: 0;
	}
	.product-infos .woocommerce-breadcrumb {
	padding-top: 0;
}

.woocommerce-breadcrumb a {
	color: rgba(0,0,0,0.31);
	}
	.text-light .woocommerce-breadcrumb a {
	color: rgba(255,255,255,0.41);
	}
	.woocommerce-breadcrumb a:hover {
	color: #000;
	}
	.text-light .woocommerce-breadcrumb a:hover {
	color: #fff;
}

.woocommerce .woocommerce-result-count {
	color: #000;
	margin: 0;
	display: inline-block;
	font-size: 12px;
	line-height: 22px;
	}

.grid-options .woocommerce-ordering {
	margin: 0;
	float: right;
	margin-left: 20px;
	margin-top: -1px;
}

.grid-options ~ .woocommerce-ordering,
.grid-options ~ .wcapf-before-products .woocommerce-ordering {
	display: none;
}

.woocommerce-ordering select {
	font-size: 13px;
	line-height: 22px;
	height: 22px;
	padding: 0 12px 0px 0;
	border: none;
	outline: none;
	min-width: auto;
  	background-position: right 0 top 52%;
}

.grid-options.no-breadcrumb ~ .wcapf-before-products,
.grid-options.no-breadcrumb + .woocommerce-result-count {
	transform: translateY(-24px);
	}

.grid-options .filter-open {
	font-size: 13px;
	line-height: 22px;
	height: 22px;
	padding: 0 15px 0px 0;
	border: none;
	outline: none;
	min-width: auto;
  	background-image:url(../../../files/assets/select-arrow.svg);
  	background-position: right 0px top 52%;
	background-repeat: no-repeat;
	-webkit-background-size:8px 6px;
	-moz-background-size:8px 6px;
	-o-background-size:8px 6px;
	background-size:8px 6px;
	display: inline-block;
	float: right;
	margin-left: 20px;
	}
	.grid-options .woocommerce-notices-wrapper + form + .filter-open {
	float: left;
	margin-left: 0;
}

.woocommerce .sr-filter-container {
	display: none;
	padding: 40px 20px 63px 20px;
	position: relative;
	}

.woocommerce .sr-filter-container .column-section {
	position: relative;
	opacity: 0;
	top: -5px;			/* transform creates issue for scrolling columns */
	transition: all 0.5s ease;
	}
	.woocommerce .sr-filter-container.slide-in .column-section {
	opacity: 1;
	top: 0;
	transition-delay: 0.1s;
	}

.woocommerce .sr-filter-container .column-section::before {
	content: "";
	position: absolute;
	top: -20px;
	left: -20px;
	width: calc(100% + 40px);
	height: calc(100% + 40px);
	border: 1px solid rgba(0,0,0,0.11);
	}


/*  ---------------------------------------------------	*/

/*    Product Single									*/
	
/* ---------------------------------------------------	*/
#product .product-head.has-bg {
	padding-bottom: 80px;
	position: relative;
	}
	#product .product-head.has-bg.half-bg {
	padding-bottom: 0;
}

#product .product-head .column-section {
	margin-top: 60px;
	}
	#product .product-head .woocommerce-breadcrumb + .column-section {
	margin-top: 0px;
}

#product .product-images  {
	width: calc(68% - 16px);
	margin-right: 40px;
	}
	#product .wrapper-medium .product-images  {
	padding-right: 20px;
}

#product .product-images a[data-fancybox]:not(.sr-button-icon) {
  cursor: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='15px' height='15px' viewBox='0 0 30 30' style='enable-background:new 0 0 30 30;' xml:space='preserve'%3E %3Cpath d='M30,14l0,2H16v14h-2V16H0l0-2l14,0V0h2l0,14L30,14z'/%3E %3C/svg%3E"), pointer;
}

#product:not(.quick-product) .product-infos  {
	width: calc(32% - 24px);
	padding-right: 40px;
	}
	#product .wrapper-medium .product-infos  {
	width: calc(32% - 24px);
	padding-right: 0;
	padding-left: 0;
}

.infos-inner {
	height: calc(100vh - 158px);		/* edited via js */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.infos-align {
    -webkit-box-flex: 0;
	-webkit-flex: none;
	-ms-flex: none;
	flex: none;
	max-width: 100%;
	width: 100%;
}

#product .product-infos .col-content  {
	padding-top: 40px;			/* for sticky sidebar */
	}
	#product .product-infos.text-center .col-content  {
	padding-top: 0;
}

/*  -------- half bg --------  */
@media only screen and (min-width: 769px) {
	#product .product-head.has-bg.half-bg {
		padding-top: 0 !important;
	}

	#product .product-head.has-bg.half-bg > [class*='wrapper'] {
		width: 100%;
		max-width: 100%;
	}

	#product .product-head.has-bg.half-bg .product-images {
		width: 50%;
		margin: 0;
		padding: 0;
	}

	#product .product-head.has-bg.half-bg .product-infos {
		float: right;
		width: 28%;
		margin-right: calc((50% - 28%) / 2) !important;
	}

	#product .product-head.has-bg.half-bg .product-images .variation-gallery .scroll-gallery,
	#product .product-head.has-bg.half-bg .product-images .variation-gallery .image-gallery {
		width: 100% !important;
		}
		#product .product-head.has-bg.half-bg .product-images .variation-gallery .scroll-gallery.has-thumbs,
		#product .product-head.has-bg.half-bg .product-images .variation-gallery .image-gallery.has-thumbs {
		margin-left: -120px;
		}

	#product .product-head.has-bg.half-bg .product-images .variation-gallery .scroll-nav,
	#product .product-head.has-bg.half-bg .product-images .variation-gallery .flickity-nav  {
		margin-left: 20px;
	}

	#product .product-head.has-bg.half-bg .product-images .scroll-item ,
	#product .product-head.has-bg.half-bg .product-images .carousel-item  {
		text-align: center;
	}
}
#product .product-head.has-bg .product-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	}
	#product .product-head.has-bg.half-bg .product-bg {
	width: 50%;
	}
	#product .product-head.has-bg > *:not(.product-bg),
	#product .product-head.has-bg .column > *:not(.product-bg) {
	z-index: 1;
	}
	#product .product-head.has-bg .column .product-bg {
	display: none;
	width: calc(100% + 80px);
	margin-left: -40px;
	height: calc(100% + 200px);
	}

#product .product-head.has-bg .product-bg + .woocommerce-breadcrumb {
	display: none;
}

/*  -------- half bg --------  */

#product .product-infos .product_title {
	margin: 0;
	z-index: 1;
	position: relative;
}

#product .product-infos .price {
	margin-top: 5px;
}

#product .product-infos .price.single-price , 
#product .product-infos .single-price  .amount {
	font-size: 16px;
	line-height: 26px;
	z-index: 2;
	position: relative;
}

#product .product-infos .woocommerce-product-rating {
	overflow: hidden;
	margin-top: 5px;
}

#product .product-infos .woocommerce-product-rating a {
	font-size: 0.75em;
	vertical-align: text-top;
	color: rgba(0,0,0,0.31);
	display: inline-block;
	margin-left: 5px;
	}
	#product .product-infos .woocommerce-product-rating a:hover {
	color: #000;
}

#product .product-infos .woocommerce-product-details__short-description {
	display: block;
	margin-top: 20px;
}

#product .product-infos .product_meta {
	color: #000;
	font-size: 10px;
	font-weight: 400;
	line-height: 20px;
	margin-top: 20px; 
	text-transform: uppercase;
	letter-spacing: 0.06em;
	}
	#product .text-light .product-infos form + .product_meta {
	color: #fff;
	}
	#product .product-infos form + .product_meta {
	margin-top: 20px; 
	}

#product .product-infos .product_meta .meta-label {
	display: inline-block;
	width: 80px;
	color: rgba(0,0,0,0.31);
	}
	#product .text-light .product-infos .product_meta .meta-label {
	color: rgba(255,255,255,0.41);
	}

#product .product-infos .product_meta > span {
	display: block;
}

#product .product-infos .view-more {
	margin-top: 30px; 
}

#product .product-infos .product_meta .sku_wrapper {
	margin: 0;
	width: auto;
	max-width: none;
}

/* Variations */
#product .product-infos form.cart {
	margin-top: 40px;
	position: relative;
	}

#product .product-infos .cart .variations .variation {
	margin-top: 15px;
	position: relative;
	}
	#product .product-infos .cart .variations .variation:first-child {
	margin-top: 0;
	}

#product .product-infos .cart .variations .value {
	padding-top: 23px;
	padding-bottom: 7px;
	}
	#product .product-infos .cart .variations .variation:last-child .value {
	padding-bottom: 15px;
	}

#product .product-infos .cart .variations .value + .name {
	display: block;
	position: absolute;
	top: -3px;
	left: 0;
	}

#product .product-infos .cart .variations .value + .name label {
	font-size: 12px;
	font-weight: 700;
	line-height: 20px;
	}

#product .product-infos .cart .variations .value select {
	width: 100% !important;
	}

.product .cart .woocommerce-variation-description {
	font-size: 12px;
	margin-top: 20px;
	line-height: 1.4;
}

.product .cart .reset_variations,
.product .cart .woocommerce-variation-price {
	display: none !important;
}

.product .cart .woocommerce-variation .woocommerce-variation-availability,
.stock {
	font-size: 12px;
	font-weight: 400;
}

.out-of-stock,
.available-on-backorder {
	color: #d83e49;
}

.in-stock {
	color: #0ec884;
}

/* swatch variations (plugin) */
.product .cart .variations .variation .variable-items-wrapper {
	list-style: none;
	margin: 0;
	*display: inline-block; 
	height: 1%; 
	}
	.product .cart .variations .variation .variable-items-wrapper::after { 
		content: ""; 
		display: block; 
		clear: both; 
		visibility: hidden; 
		font-size: 0;  
		height: 0; 
	}

.product .cart .variations .variation .variable-items-wrapper li {
	display: inline-block;
	height: auto;
	margin: 0 5px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	position: relative;
	border: 1px solid rgba(0,0,0,0.11);
	cursor: pointer;
	}
	.shop-container .cart .variations .variation .variable-items-wrapper li {
	margin: 0 3px;
	}
	.product .text-light .cart .variations .variation .variable-items-wrapper li {
	border-color: rgba(255,255,255,0.19);
	}
	.wvs-style-rounded .product .cart .variations .variation .variable-items-wrapper li {
	border-radius: 100%;
	}
	.product .cart .variations .variation .variable-items-wrapper li:first-child {
	margin-left: 0 !important;
	}
	.product .cart .variations .variation .variable-items-wrapper li.selected {
	border-color: #000 !important;
	}
	.product .text-light .cart .variations .variation .variable-items-wrapper li.selected {
	border-color: #fff !important;
}

.product .cart .variations .variation .variable-items-wrapper li.disabled {
	overflow: hidden;
	cursor: default;
}

.product .cart .variations .variation .variable-items-wrapper li.disabled::after {
	content: "";
	width: 1px;
	height: 150%;
	position: absolute;
	top: 0;
	right: -0.5px;
	background: #e4e4e4;
	border: none;
	visibility: visible;
	margin: 0;
	opacity: 1;
	transform: rotate(45deg);
	transform-origin: top right;
	left: auto;
	bottom: auto;
}

.product .cart .variations .variation .variable-items-wrapper li > span {
	position: relative;
	min-width: 26px;
	padding: 0 2px;
	height: 30px;
	line-height: 30px;
	font-size: 11px;
	font-weight: 400;
	color: #000;
	text-align: center;
	display: block;
	}	
	.shop-container .cart .variations .variation .variable-items-wrapper li > span {
	min-width: 22px;
	padding: 0 1px;
	height: 24px;
	line-height: 24px;
	font-size: 10px;
	}
	.product .text-light .cart .variations .variation .variable-items-wrapper li > span {
	color: #fff;
	}
	.product .cart .variations .variation .variable-items-wrapper li.disabled > span,
	.product .cart .variations .variation .variable-items-wrapper li.disabled > img {
	opacity: 0.2;
	}
	.wvs-style-rounded .product .cart .variations .variation .variable-items-wrapper li > span {
	border-radius: 100%;
	}

.product .cart .variations .variation .variable-items-wrapper.color-variable-wrapper li {
	box-sizing:border-box;
	border-color: transparent;
	margin: 0 3px;
	}
.product .cart .variations .variation .variable-items-wrapper.color-variable-wrapper li > span {
	box-sizing:border-box;
	min-width: 18px;
	height: 18px;
	}
	.shop-container .cart .variations .variation .variable-items-wrapper.color-variable-wrapper li > span {
		min-width: 12px;
		height: 12px;
		padding: 0 1px;
	}
.product .cart .variations .variation .variable-items-wrapper.color-variable-wrapper li.selected > span {
	min-width: 14px;
	height: 14px;
	margin: 2px;
	}
	.shop-container .cart .variations .variation .variable-items-wrapper.color-variable-wrapper li.selected > span {
	min-width: 10px;
	height: 10px;
	margin: 1px;
}
.product .cart .variations .variation .variable-items-wrapper.color-variable-wrapper li > span[style="background-color:#fff;"],
.product .cart .variations .variation .variable-items-wrapper.color-variable-wrapper li > span[style="background-color:#fcfcfc;"],
.product .cart .variations .variation .variable-items-wrapper.color-variable-wrapper li > span[style="background-color:#f8f8f8;"],
.product .cart .variations .variation .variable-items-wrapper.color-variable-wrapper li > span[style="background-color:#f7f7f7;"] {
	border-color: rgba(0,0,0,0.11);
}

.product .cart .variations .variation .variable-items-wrapper.color-variable-wrapper li.disabled {
	border-color: rgba(0,0,0,0.11);
}

.product .cart .variations .variation .variable-items-wrapper.image-variable-wrapper li > img {
	width: 30px;
	height: 30px;
}

.product .cart .variations .variation .variable-items-wrapper.image-variable-wrapper li.selected > img {
	width: 26px;
	height: 26px;
	margin: 2px;
}


/* group item */
.product form.cart .group_table {
	margin-bottom: 40px;
	}

.product form.cart .group_table .woocommerce-grouped-product-list-item {
	overflow: hidden;
	margin-bottom: 20px;
	}

.product form.cart .group_table .woocommerce-grouped-product-list-item__quantity {
	float: left;
	}

.product form.cart .group_table .woocommerce-grouped-product-list-item__quantity .quantity {
	float: none;
	}

.product form.cart .group_table .group-info {
	float: right;
	width: calc(100% - 80px);
	}

.product form.cart .group_table .woocommerce-grouped-product-list-item__label {
	margin-top: -2px;
	}

.product form.cart .group_table .woocommerce-grouped-product-list-item__label label {
	font-size: 12px;
	line-height: 20px;
	display: block;
	font-weight: 700;
	margin: 0;
	}

.product form.cart .group_table .woocommerce-grouped-product-list-item__price .price {
	margin: 0 !important;
	}




/* Add to cart */
.product .cart .product-add-to-cart {
	margin-top: 20px;
	font-size: 0;	/* strip inline spacings of children */
	line-height: 0;
	}
	.product .cart .product-add-to-cart:first-child,
	.product .cart .tinvwl-before-add-to-cart + .product-add-to-cart:nth-child(2n) {
	margin-top: 0;
	}

.product .cart .product-add-to-cart.woocommerce-variation-add-to-cart-disabled {
	opacity: 0.3;
	pointer-events: none;
	cursor: default;
	}
	

.product .cart .quantity {
	float: left;
	margin-right: 10px;
	border: 1px solid rgba(0,0,0,0.11);
	}

.product .cart .quantity input[type="number"] {
    padding: 7px 0;
	background: none;
	height: 38px;
	width: 24px;
	margin: 0 19px;
	}
	.product .text-light .cart .quantity input[type="number"] {
	border-color: rgba(255,255,255,0.19);
	}

.product .cart .quantity span.plus {
	padding-right: 8px;
}
.product .cart .quantity span.minus {
	padding-left: 8px;
}
.product .cart .quantity span.plus svg {
	right: 8px;
}
.product .cart .quantity span.minus svg {
	left: 8px;
}

.product .cart .pseudo-add-to-cart {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
	}
	.product .cart .quantity:not(.single-add) + .pseudo-add-to-cart {
	width: calc(100% - 74px);
	}

.product .cart .pseudo-add-to-cart + button {
	display: none;
}


/* Share */
#product .product-infos .accordion + #single-share {
	margin-top: 0px;
	border-top: none;
}



/* Gallery / Slider */
.product .three-fifth {
	position: relative;
	}

.product .variation-gallery {
	opacity: 0;
	visibility: hidden;
	max-height: 0;
	transition: all 0.01s ease 0.2s;
	overflow: hidden;
	}
	.product .variation-gallery.active {
	opacity: 1;
	visibility: visible;
	max-height: 9999px;
	transition-delay: 0.201s;
	}

.product .variation-gallery .flickity-carousel.has-thumbs,
.product .variation-gallery .scroll-gallery.has-thumbs {
	width: calc(100% - 100px);
	float: right;
	}

.product .variation-gallery .flickity-nav,
.product .variation-gallery .scroll-nav {
	width: 80px;
	float: left;
	}

.product .variation-gallery .nav-center .nav-wrapper {
	min-height: 360px;
	height: calc(100vh - 158px);		/* edited via js */
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.product .variation-gallery .nav-center .nav-inner {
    -webkit-box-flex: 0;
	-webkit-flex: none;
	-ms-flex: none;
	flex: none;
	max-width: 100%;
	width: 100%;
	border: 1px solid transparent;		/* workaround for overflow jump when clicking thumbs */
	transition: top 0.3s ease;
	}

.product .flickity-nav .flickity-nav-inner,
.product .scroll-nav .scroll-nav-inner {
	width: 100%;
	padding-right: 15px;
  	max-height: 350px;
  	overflow-x: hidden;
  	overflow-y: auto;
	}

.product .flickity-nav .nav-thumb,
.product .scroll-nav .nav-thumb {
  	height: 80px;
  	width: 80px;
  	margin-bottom: 10px;
  	cursor: pointer;
	overflow: hidden;
	opacity: 0.4;
	transition: 0.1s ease;
	}
	.product .flickity-nav .nav-thumb:last-child,
	.product .scroll-nav .nav-thumb:last-child { 
	margin: 0; 
	}

.product .flickity-nav .nav-thumb.is-nav-selected,
.product .scroll-nav .nav-thumb.is-nav-selected {
  opacity: 1;
}

.product .scroll-gallery .scroll-item {
  	margin-top: 20px;
	}
	.product .scroll-gallery .scroll-item:first-child {
	margin: 0;
}
	

/* gallery switch animation for isotope */
.product .variation-gallery .isotope-grid .gal-item .item-inner {
	transition: all 0.18s ease;
	opacity: 0;
	transform: translateY(10px);
	}
	.product .variation-gallery.active .isotope-grid .gal-item .item-inner {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.4s cubic-bezier(0.4, 0.4, 0.000, 1.0) 0.2s;
	}
	.product .variation-gallery.active .isotope-grid .gal-item:nth-child(2n) .item-inner { transition-delay : 0.23s; }
	.product .variation-gallery.active .isotope-grid .gal-item:nth-child(3n) .item-inner { transition-delay : 0.26s; }
	.product .variation-gallery.active .isotope-grid .gal-item:nth-child(4n) .item-inner { transition-delay : 0.32s; }
	.product .variation-gallery.active .isotope-grid .gal-item:nth-child(5n) .item-inner { transition-delay : 0.32s; }
	.product .variation-gallery.active .isotope-grid .gal-item:nth-child(6n) .item-inner { transition-delay : 0.35s; }
	.product .variation-gallery.active .isotope-grid .gal-item:nth-child(7n) .item-inner { transition-delay : 0.38s; }
	.product .variation-gallery.active .isotope-grid .gal-item:nth-child(8n) .item-inner { transition-delay : 0.41s; }
	.product .variation-gallery.active .isotope-grid .gal-item:nth-child(9n) .item-inner { transition-delay : 0.44s; }


/* gallery switch animation for flickity/scroll-gallery */
.product .variation-gallery .flickity-carousel,
.product .variation-gallery .scroll-gallery {
	transition: all 0.18s ease;
	opacity: 0;
	transform: translateY(10px);
	}
	.product .variation-gallery.active .flickity-carousel,
	.product .variation-gallery.active .scroll-gallery {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.4s cubic-bezier(0.4, 0.4, 0.000, 1.0) 0.2s;
	}

.product .variation-gallery .flickity-nav .flickity-nav-wrapper,
.product .variation-gallery .scroll-nav .scroll-nav-wrapper {
	transition: all 0.18s ease;
	opacity: 0;
	transform: translateY(10px);
	}
	.product .variation-gallery.active .flickity-nav .flickity-nav-wrapper,
	.product .variation-gallery.active .scroll-nav .scroll-nav-wrapper {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.4s cubic-bezier(0.4, 0.4, 0.000, 1.0) 0.24s;
	}

.product .flickity-carousel.style-arrows-rounded .flickity-prev-next-button {
   	background: #fff !important;
	width: 40px;
	height: 40px;
	}
	.product .flickity-carousel.style-arrows-rounded .flickity-prev-next-button.previous {
	left: 15px;
	}
	.product .flickity-carousel.style-arrows-rounded .flickity-prev-next-button.next {
	left: auto;
	right: 15px;
}

/* gallery switch animation for single image */
.product .variation-gallery .single-img {
	transition: all 0.18s ease;
	opacity: 0;
	transform: translateY(10px);
	}
	.product .variation-gallery.active .single-img {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.4s cubic-bezier(0.4, 0.4, 0.000, 1.0) 0.2s;
	}


/* product video */
.product .three-fifth .product-video-button {
	position: absolute;
	top: 30px;
	right: 40px;
	z-index: 2;
	}


/* product description (page builder) */
#product .product-description  {
    margin-top: 100px;
}

/* tab additional information */
.woocommerce-tabs .woocommerce-product-attributes td, 
.woocommerce-tabs .woocommerce-product-attributes th {
    padding: 0;
    border: none;
	padding-bottom: 10px;
}

.woocommerce-tabs .woocommerce-product-attributes td  {
    color: rgba(0,0,0,0.31);
	}
	.text-light .woocommerce-tabs .woocommerce-product-attributes td  {
    color: rgba(255,255,255,0.41);
}



/* comments / reviews */
.woocommerce #reviews  {
    margin-top: 100px;
}

.woocommerce #reviews .woocommerce-Reviews-title  {
    margin-bottom: 20px;
}

.woocommerce #reviews .comments .comment-list {
    margin-top: 0;
}

.woocommerce #reviews .comment-notes {
	display: none;
	}


.woocommerce #reviews .comment-list {
	overflow: hidden;
	columns: 2;
  	column-gap: 20px;
	}

.woocommerce #reviews .comment-list li {
	border: 1px solid rgba(0,0,0,0.11);
	margin: 0 0 20px 0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	padding: 15px;
	display: inline-block;
	width: 100%;
	}

.woocommerce #reviews .comment-list li .comment-head {
	position: relative;
	}

.woocommerce #reviews .comment-list li .comment-head .name {
	display: inline-block;
	margin-right: 20px;
	}

.woocommerce #reviews .comment-list li .comment-head .star-rating {
	position: absolute;
	top: 0;
	right: 0;	
	font-size: 15px;
	line-height: 20px;
	height: 20px;
	}

.woocommerce #reviews .comment-list li .user {
	display: none;
	}

.woocommerce #reviews .comment-list li .comment-content {
	width: 100%;
	margin: 0;
	min-height: 100px;
	}
	
.woocommerce #reviews .leavecomment {
	margin-bottom: 0;
	margin-top: 40px;
	}
	
.woocommerce #reviews .leavecomment .comment-form-rating {
	overflow: hidden;
	}
	
.woocommerce #reviews .leavecomment .comment-form-rating label {
	width: auto;
	margin-right: 20px;
	float: left;
	}
	
.woocommerce #reviews .leavecomment .comment-form-rating .stars {
	margin: 0;
	float: left;
	}
	
p.stars span {
	display: block;
	height: 20px;
	overflow: hidden;
	font-size: 0;
	line-height: 0;
	}

p.stars a {
	letter-spacing: 0;
	font-size: 16px;
	padding: 0;
	width: 1em;
	height: 24px;
	line-height: 24px;
	display: inline-block;
	text-indent: -9999px;
	overflow: hidden;
	padding-right: 1px;
	}
	
p.stars a::before {
    content: "\f3ae";
	display: block;
	text-indent: 0;
	font-family: "Ionicons";
    color: rgba(0,0,0,0.2);
	}	

p.stars span:hover a:hover ~ a::before, 
p.stars.selected span:hover a:hover ~ a::before, 
p.stars.selected a.active ~ a::before {
    content: "\f3ae";
    color: rgba(0,0,0,0.2);
	}	
		
p.stars span:hover a::before, 
p.stars.selected span:hover a::before, 
p.stars.selected a::before {
    content: "\f2fc";
	color: #000;
	}

.woocommerce #reviews .leavecomment .comment-form-author,
.woocommerce #reviews .leavecomment .comment-form-email {
	float: left;
	width: calc(50% - 10px);
	}
	.woocommerce #reviews .leavecomment .comment-form-email {
	float: right;
	}

.woocommerce #reviews .leavecomment .comment-form-cookies-consent {
	margin-top: 10px;
}

.woocommerce-noreviews {
	margin-top: 0;
	color: rgba(0,0,0,0.31);
}


/* Related Products / Up-Sells */
.woocommerce .related.products, 
.woocommerce .upsells.products {
	position: relative;
	margin-top: 80px;
	}
	.woocommerce .product-hero + .related.products, 
	.product-hero + .woocommerce .upsells.products {
	margin-top: 0;
	}
	.woocommerce .related.products + div[class*='spacer-'], 
	.woocommerce .upsells.products + div[class*='spacer-'] {
	height: 60px;
	}

.woocommerce .related.products .section-title.position-left-vertical,
.woocommerce .upsells.products .section-title.position-left-vertical {
	transform: rotate(-90deg) translateX(-100%) translateY(-100%);
	transform-origin: top left;
	position: absolute;
	top: 3px;
	left: -20px;
}

.woocommerce .related.products .section-title.position-left-horizontal,
.woocommerce .upsells.products .section-title.position-left-horizontal {
	width: 25%;
	position: absolute;
	top: calc(50% - 35px);
	left: 0;
	transform: translateY(-50%);
}

.woocommerce .related.products .section-title.position-left-horizontal + .shop-container,
.woocommerce .upsells.products .section-title.position-left-horizontal + .shop-container {
	width: 75%;
	float: right;
}

.woocommerce .related.products .section-title[class*='position-left'] + .shop-container,
.woocommerce .upsells.products .section-title[class*='position-left'] + .shop-container{
	margin-top: 0;
}


/*  ---------------------------------------------------	*/

/*    CART + SHOP TABLE						 	*/
	
/* ---------------------------------------------------	*/
.shop_table,
.woocommerce-cart-form {
  	margin: 0;
}

.shop_table tr,
.shop_table tr td {
	border: none;
	}

.shop_table.cart tr,
.shop_table.cart tr td,
.sr-checkout-order .shop_table tr,
.sr-checkout-order .shop_table tr td {
	vertical-align: top;
	}

.shop_table tr th:last-child,
.shop_table tr td + td:last-child {
	text-align: right;
	}

.shop_table.cart-page tbody tr ,
.sr-checkout-order .shop_table tbody tr {
	border-top: 1px solid rgba(0,0,0,0.11);
	}

.shop_table thead th, 
.shop_table tbody td, 
.shop_table tbody th, 
.shop_table tfoot td,
.shop_table tfoot th { 
	padding: 15px 0;
	}
	.shop_table thead th { 
	padding-top: 0;
	line-height: 20px;
	}

.shop_table .product-name .product-image,
.shopthelook .list-item .product-name .product-image {
	max-width: 100px;
	height: auto;
	display: inline-block;
	line-height: 0;
	float: left;
	}

.shop_table .product-name .product-info,
.shopthelook .list-item .product-name .product-info {
	width: calc(100% - 130px);
	float: right;
	margin-top: 3px;
	}
	.shop_table .product-name .product-info:first-child {
	margin-left: 0px;
	}

.shop_table .product-name .product-title a,
.shopthelook .list-item .product-name .product-title a {
	border: none;
}

#mini-cart .menu-cart-content .cart-list .cart-table .cart-item .product-title,
.shop_table .product-name .product-title,
.shopthelook .list-item .product-name .product-title,
.tinv-wishlist table .product-name {
	font-weight: 500;
}

.shop_table .product-name .product-title .product-quantity {
	width: auto;
	height: 24px;
	line-height: 26px;
	font-size: 12px;
	display: inline-block;
	margin-left: 3px;
}

.shop_table .product-quantity  {
	width: 100px;
	position: relative;
	}
	.shop_table.cart-page .product-quantity  {
	width: 100px;
	text-align: center;
	}

.shop_table .product-quantity .amount  {
	display: none;
	}

.shop_table .product-price,
.shop_table .product-subtotal {
	width: 90px;
	position: relative;
	}

.shop_table .amount  {
	font-size: 14px;
	}

.shop_table .product-name .variation,
.cart-table .variation,
.shop_table .product-name .wc-item-meta {
	font-size: 12px;
	line-height: 20px;
	margin: 5px 0 0 0;
	list-style: none;
	padding: 0;
	}
	.shop_table .product-name .variation,
	.shop_table .product-name .wc-item-meta {
	font-size: 13px;
	line-height: 20px;
	}

.shop_table .product-name .variation > span,
.cart-table .variation > span,
.shop_table .product-name .wc-item-meta li {
	display: block;
	margin: 0;
	}
	
.shop_table .product-name .variation dt,
.cart-table .variation dt,
.shop_table .product-name .wc-item-meta li > strong {
	color: rgba(0,0,0,0.31);
	display: inline-block;
	font-weight: 400;
	}
	
.shop_table .product-name .variation dd,
.cart-table .variation dd,
.shop_table .product-name .wc-item-meta li > p {
	display: inline-block;
	color: rgba(0,0,0,0.31);
	margin: 0;
	}

.shop_table .product-name .backorder_notification {
	color: #d83e49;
	margin-top: 0;
	font-size: 14px;
	font-weight: 400;
}

.shop_table .product-name .product-price-mobile {
	display: none;
}

.remove,
.woocommerce-remove-coupon {
	transition: all 0.15s ease;
	display: inline-block;
	font-size: 11px;
	font-weight: 400;
	line-height: 15px;
	border-bottom: 1px solid rgba(0,0,0,0.11);
	color: rgba(0,0,0,0.31) !important;
	}
	.remove:hover,
	.woocommerce-remove-coupon:hover {
	border-color: #d83e49;
	color: #d83e49 !important;
	}

.shop_table .remove {
	margin-top: 20px;
	}

.cart-table .remove {
	position: absolute;
	top: 0;
	right: 0;
	}

.shop_table td.actions {
	position: relative;
	}


.sr-coupon .button {
	display: block !important;
	position: absolute;
	bottom: 6px;
	right: 15px;
	background: none !important;
	border: none !important;
	color: #000 !important;
	padding: 0;
	line-height: 20px;
	height: 20px;
	}

.sr-coupon > .form-row:first-child {
	margin: 0;
	}

body.ajax-changecart .shop_table td.actions .button {
    display: none;
}


/* cart collaterals */
.cart-collaterals .cart_totals {
	margin-top: 40px;
}

.cart-collaterals .cart_totals .shop_table,
.sr-checkout-order .shop_table tfoot,
.order_details.shop_table tfoot {
	border: 1px solid rgba(0,0,0,0.11);
	background: #fafafa;
}

.cart-collaterals .shop_table tr th,
.sr-checkout-order .shop_table tr th {
	border: none;
}

.cart-collaterals .shop_table tr:not(.shipping) td:last-child,
.sr-checkout-order .shop_table tr:not(.shipping) td:last-child {
	text-align: right;
}

.cart-collaterals .shop_table tr,
.sr-checkout-order .shop_table tr {
	border-bottom: 1px solid rgba(0,0,0,0.11);
	}
	.cart-collaterals .shop_table tr:last-child ,
	.sr-checkout-order .shop_table tfoot tr:last-child,
	.order_details.shop_table tfoot tr:last-child {
	border: none;
}

.cart-collaterals .shop_table tr th,
.cart-collaterals .shop_table tr td,
.sr-checkout-order .shop_table tfoot tr th,
.sr-checkout-order .shop_table tfoot tr td,
.order_details.shop_table tfoot tr th,
.order_details.shop_table tfoot tr td {
	padding-left: 20px;
	padding-right: 20px;
	border: none;
	}

.sr-checkout-order .shop_table tfoot tr th,
.order_details.shop_table tfoot tr th,
.cart-collaterals .shop_table tr th {
	padding-right: 0;
	}

.sr-checkout-order .shop_table tfoot tr + td,
.order_details.shop_table tfoot tr + td,
.cart-collaterals .shop_table tr + td {
	padding-left: 0;
	}

.cart-collaterals .shop_table tr.shipping form {
    margin-top: 0;
}

.shop_table .shipping {
    color: #000;
	font-size: 13px;
}

.shop_table .shipping ul  {
    list-style: none;
	margin: 13px 0 0 0;
}

.shop_table .shipping ul li  {
	margin: 2px 0 0 0;
	position: relative
}

.shop_table .shipping label  {
	max-width: calc(100% - 30px);
}

.shop_table .shipping .amount {
	font-size: 12px;
	line-height: 15px;
	display: inline-block;
	position: absolute;
	top: 4px;
	right: 0;
}

.shop_table .shipping .woocommerce-shipping-destination {
	margin-top: 15px;
}

.cart-collaterals .shop_table tr.shipping .shipping-calculator-button {
    font-size: 11px;
	line-height: 18px;
}

.cart-collaterals .shop_table tr.shipping .shipping-calculator-form {
	padding-top: 10px;
}

.cart-collaterals .shop_table tr.shipping .shipping-calculator-form .select2-container {
	height: 34px !important;
	text-align: left;
}

.cart-collaterals .shop_table tr.shipping .shipping-calculator-form .select2-container .select2-selection--single {
	height: 34px !important;
}

.cart-collaterals .shop_table tr.shipping .shipping-calculator-form .select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 34px !important;
}

.cart-collaterals .shop_table tr.shipping .shipping-calculator-form .select2-container .select2-selection--single .select2-selection__arrow {
	height: 34px !important;
}

.cart-collaterals .shop_table tr.shipping .shipping-calculator-form p {
	margin-top: 10px;
}

.cart-collaterals .shop_table tr.shipping .shipping-calculator-form input[type="text"] {
	padding: 2px 10px;
}

.cart-collaterals .shop_table tr.shipping .shipping-calculator-form button {
	padding: 7px 0px;
	width: 100%;
}

.cart-collaterals .wc-proceed-to-checkout {
    margin-top: 40px;
	text-align: center;
}

.cart-collaterals .wc-proceed-to-checkout a {
    width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.shop_table .order-total th,
.shop_table .order-total .amount {
	font-weight: 700;
	}


/*  ---------------------------------------------------	*/

/*    CHECKOUT						 	*/
	
/* ---------------------------------------------------	*/
.woocommerce form .form-row .optional {
    visibility: hidden;
}

.woocommerce-checkout .woocommerce > .woocommerce-message {
	display: none;
}

.woocommerce .sr-checkout-details {
	position: relative;
}

.woocommerce .sr-checkout-details .sr-checkout-before {
	overflow: hidden;
	margin-bottom: 20px;
}

.woocommerce .sr-checkout-details .sr-checkout-login {
	width: calc(66.6% - 26.66px);
	float: left;
}

.woocommerce .sr-checkout-details .sr-checkout-coupon {
	width: calc(33.33% - 53.33px);
	float: right;
}

.woocommerce .sr-checkout-details .sr-checkout-coupon .woocommerce-error,
.woocommerce .sr-checkout-details .sr-checkout-coupon .woocommerce-message {
	margin-bottom: 0;
}

.woocommerce .sr-checkout-details .sr-checkout-coupon form,
.woocommerce .sr-checkout-details .sr-checkout-login form {
	margin: 0;
	padding-bottom: 20px;
}

.woocommerce .sr-checkout-details .sr-checkout-login form {
	padding-top: 20px;
	max-width: 400px;
}

.woocommerce .sr-checkout-details .sr-checkout-coupon label {
	display: none;
}

.woocommerce .sr-checkout-details form.woocommerce-checkout {
	margin: 0;
}

.woocommerce .sr-checkout-details form .woocommerce-billing-fields__field-wrapper {
	margin-top: 20px;
}

.woocommerce .sr-checkout-details form .woocommerce-billing-fields__field-wrapper,
.woocommerce .sr-checkout-details form .woocommerce-shipping-fields__field-wrapper,
.woocommerce .sr-checkout-details form .create-account,
.woocommerce .sr-checkout-details .before-checkout .field-wrapper {
	width: calc(100% + 20px);
}

.woocommerce .sr-checkout-details form .woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce .sr-checkout-details form .woocommerce-shipping-fields__field-wrapper .form-row, 
.woocommerce .sr-checkout-details form .create-account .form-row,
.woocommerce .sr-checkout-details .before-checkout .field-wrapper .form-row,
.woocommerce .woocommerce-address-fields .form-row,
.woocommerce .edit-account > .form-row,
.woocommerce .edit-account fieldset > .form-row {
	float: left; 
	width: calc(50% - 20px);
	margin-right: 20px;
	}
	

.woocommerce .sr-checkout-details .woocommerce-additional-fields > h3 { 
	display: none; 
}

.woocommerce .sr-checkout-details .form-row select { 
	width: 100%;
}

#billing_address_2_field .screen-reader-text,
#shipping_address_2_field .screen-reader-text {
	height: auto;
	overflow: hidden;
	position: relative !important;
	margin: 0; 					
	margin-bottom: 5px; 					/* default from label */
	top: auto;
	width: auto;
	opacity: 0;
}

.woocommerce .sr-checkout-details .woocommerce-input-wrapper > strong {
	font-size: 13px;
	line-height: 44px;
	display: block;
}

.woocommerce .sr-checkout-details .woocommerce-account-fields {
	margin-top: 30px;
}

.woocommerce .sr-checkout-details form .create-account .form-row {
	margin-top: 0;
	padding-top: 15px;
	padding-bottom: 20px;
}

.woocommerce .sr-checkout-details #customer_details .col-2 {
	margin-top: 30px;
}



/* payment */
.woocommerce .sr-checkout-order #payment {
	margin-top: 40px;
}

.woocommerce .sr-checkout-order #payment ul {
	list-style: none;
	margin-left: 0;
	border: 1px solid rgba(0,0,0,0.11);
	background: #fafafa;
	margin-top: 20px;
}

.woocommerce .sr-checkout-order #payment ul li {
	border-bottom: 1px solid rgba(0,0,0,0.11);
	padding: 15px 20px;
	margin: 0; 
	}
	.woocommerce .sr-checkout-order #payment ul li:last-child {
	border: none;
	}

.woocommerce .sr-checkout-order #payment ul li .payment_box {
	margin-left: 25px;
	font-size: 12px;
	line-height: 18px;
}

.woocommerce .sr-checkout-order #payment ul li label img {
	display: none;
}

.woocommerce .sr-checkout-order #payment ul li label a {
	border-bottom: 1px solid rgba(0,0,0,0.11);
	color: rgba(0,0,0,0.4);
	margin-left: 25px;
	display: inline-block;
	line-height: 16px;
	font-size: 11px;
	}

.woocommerce .sr-checkout-order .woocommerce-terms-and-conditions-wrapper {
	font-size: 0.85em;
	line-height: 1.5em;
	margin-bottom: 30px;
}

.woocommerce .sr-checkout-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
	max-width: 500px;
}

.woocommerce .sr-checkout-order .woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions {
	background: rgba(0,0,0,0.04);
	padding: 20px;
	margin-top: 40px;
}


/* checkout & thank you table & pay order page */
.woocommerce .sr-checkout-order .shop_table,
.woocommerce .order_details.shop_table {
	margin-top: 40px;
	vertical-align: top;
	}
	.woocommerce .sr-checkout-order.pay-order .shop_table {
	margin-top: 0;
	}

.woocommerce .sr-checkout-order .shop_table thead,
.woocommerce .order_details.shop_table thead {
	display: none;
}

.woocommerce .sr-checkout-order .shop_table tbody tr:first-child,
.woocommerce .order_details.shop_table tbody tr:first-child {
	border: none;
}

.woocommerce .sr-checkout-order .shop_table tbody tr:first-child td,
.woocommerce .order_details.shop_table tbody tr:first-child td {
	padding-top: 0;
}

.woocommerce .sr-checkout-order .shop_table tbody td,
.woocommerce .order_details.shop_table tbody td {
	vertical-align: top;
}

.woocommerce .sr-checkout-order .shop_table tbody tr:last-child td,
.woocommerce .order_details.shop_table tbody tr:last-child td {
	padding-bottom: 40px;
}

.woocommerce .sr-checkout-order .shop_table th,
.woocommerce .order_details.shop_table th {
	line-height: inherit;
}

.woocommerce .sr-checkout-order .shop_table .product-name .product-image,
.woocommerce .order_details.shop_table .product-name .product-image {
	max-width: 60px;
}

.woocommerce .sr-checkout-order .shop_table .product-name .product-info,
.woocommerce .order_details.shop_table .product-name .product-info {
    width: calc(100% - 80px);
}

.woocommerce .sr-checkout-order .shop_table tfoot th + td,
.woocommerce .sr-checkout-order .shop_table tfoot th + td,
.woocommerce .order_details.shop_table tfoot th + td,
.woocommerce .order_details.shop_table tfoot th + td {
	min-width: 70px;
}

.woocommerce .sr-checkout-order .shop_table .product-quantity,
.woocommerce .order_details.shop_table .product-quantity {
	color: rgba(0,0,0,0.31);
	display: block;
	font-size: 12px;
	width: auto;
	margin-top: 5px;
}


.sr-checkout-order .place-order {
	margin-top: 40px;
}

.sr-checkout-order .place-order button {
	width: 100%;
}


/*  ---------------------------------------------------	*/

/*    SEARCH HEADER										*/
	
/* ---------------------------------------------------	*/
#header-search {
	position: fixed;
	top: 81px;							/* Logo Height */
	left: 0;
	width: 100%;
	height: 0;
	background: #fff;
	z-index: 1505;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0.4, 0.000, 1.0);
	}
	.search-is-open #header-search {
	height: 70px;
	opacity: 1;
	visibility: visible;
	}
	.search-is-open #header-search.is-searched {
	height: calc(100% - 81px);			/* Logo Height */
	}	
	.search-is-open #header-search.no-results {
	height: 140px;			
}

#header-search .search-inner  {
	height: 100%;				
	overflow-y: auto;
	position: relative;
}

#header-search .search-inner .search-close {
	height: 30px;
	line-height: 30px;
	top: 20px;
	right: 40px;
	}

#header-search .search-form {
	padding: 20px 0;
}

#header-search form input[type="search"]  {
	border: none;
	font-size: 22px;
	font-weight: 400;
	line-height: 30px;
	height: 30px;
	padding: 0;
}

#header-search form button[type="submit"] {
	display: none;
}

#header-search .search-results {
	height:auto;
	width: 100%;
}

#header-search .search-results .search-noresult {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	}
	#header-search.no-results .search-results .search-noresult {
	transition: all 0.5s cubic-bezier(.19,1,.22,1) 0.4s;	
	opacity: 1;
	visibility: visible;
	transform: translate(0) !important;	
	}

.ooops {
	color: #000;
	display: block;
	}

#header-search .search-results > .wrapper:first-child  {
	transition: height 0.01s ease 0.6s;
	height: 0;
	}
	#header-search.is-searched .search-results > .wrapper:first-child  {
	transition-delay: 0s;
	height: auto;
	}

#header-search .search-results .isotope-grid > .isotope-item .item-inner {
	transition: all 0.5s cubic-bezier(.19,1,.22,1) 0.4s;
	opacity: 0; filter: alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	visibility: hidden;
	-webkit-transform: translateY(-5px);
  	-moz-transform: translateY(-5px);
  	-ms-transform: translateY(-5px);
  	-o-transform: translateY(-5px);
  	transform: translateY(-5px);
	}
	#header-search.is-searched .search-results .isotope-grid > .isotope-item .item-inner {
	-webkit-transform: translate(0) !important;
	-moz-transform: translate(0) !important;
	-ms-transform: translate(0) !important;
	-o-transform: translate(0) !important;
	transform: translate(0) !important;
	visibility: visible;
	opacity: 1; 
	filter: alpha(opacity=100); 
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	}

#header-search .search-results > .sr-loader-icon {
	top: 35px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
			transition: all 0.3s ease;
	}
	#header-search.is-searching:not(.is-searched):not(.no-results) .search-results > .sr-loader-icon  {
	visibility: visible;
	opacity: 1;
	transition-delay: 0.6s;
	}



/*  ---------------------------------------------------	*/

/*    MY ACCOUNT										*/
	
/* ---------------------------------------------------	*/

.login-register form {
	margin: 0;
}

.login-register .woocommerce-notices-wrapper + .column-section {
	margin-top: 0;
}

.login-register .container-title {
	position: relative;
}

.woocommerce-form-login .remember_and_lost {
	margin-top: 10px;
	overflow: hidden;
}

.woocommerce-form-login .remember_and_lost label {
	float: left;
	width: 50%;
}

.woocommerce-form-login .remember_and_lost .lost_password {
	float: right;
	margin-top: 4px;
	line-height: 18px;
	font-size: 11px;
}

.woocommerce-form-login .remember_and_lost label {
	float: left;
	width: 50%;
}

.woocommerce-password-strength {
	margin-top: 20px;
	color: #d83e49;
}

.login-register .create-account,
.login-register .submit-form {
	margin-top: 40px;
}

.login-register .register-container .woocommerce-privacy-policy-text {
	font-size: 0.85em;
	line-height: 1.5em;
	margin-top: 30px;
	max-width: 500px;
}


/* inner account pages */
.woocommerce-MyAccount-navigation {
	width: 260px;
	float: left;
	border: 1px solid rgba(0,0,0,0.11);
	background: #fafafa;
}

.woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-MyAccount-navigation ul li {
	margin: 0;
}

.woocommerce-MyAccount-navigation ul li a {
	font-family: 'Arial'; 
	font-weight: 600;
	font-size: 14px !important;
	line-height: 20px;
	padding: 10px 20px;
	display: block;
	color: #000;
	border-top: 1px solid rgba(0,0,0,0.11);
	}
	.woocommerce-MyAccount-navigation ul li:first-child a {
	border-top: none;
	}
	.woocommerce-MyAccount-navigation ul li a:hover,
	.woocommerce-MyAccount-navigation ul li.is-active a {
	color: rgba(0,0,0,0.31);
	}
	.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
	color: #d83e49 !important;
	font-weight: 600;
	}

.woocommerce-MyAccount-content {
	width: calc(100% - 320px);
	float: right;
}	

.woocommerce .addresses {
	overflow: hidden;
	margin-top: 20px;
}

.woocommerce .addresses .col-1,
.woocommerce .addresses .col-2 {
	float: left;
	width: calc(50% - 30px);
	}
	.woocommerce .addresses .col-2 {
	float: right;
	}

.woocommerce-customer-details .addresses .col-1,
.woocommerce-customer-details .addresses .col-2 {
	float: none;
	margin: 0 0 60px 0;
	width: 100%;
}

.woocommerce-MyAccount-content h3 {
	font-size: 22px;
	line-height: 30px;
	font-weight: 700;
	display: inline-block;
}

.woocommerce .addresses header a.edit {
	font-family: 'Montserrat';
	font-weight: 400;
	font-size: 13px !important;
	display: inline-block;
	line-height: 16px;
	border-bottom: 1px solid #000;
	margin-left: 15px;
}

.woocommerce .addresses address {
	width: calc(100% - 42px);
}

.woocommerce .woocommerce-address-fields .form-row.deplace  {
	margin-top: 54px;
}

.woocommerce-address-fields__field-wrapper::after { 
	content: ""; 
	display: block; 
	clear: both; 
	visibility: hidden; 
	font-size: 0;  
	height: 0; 
}

.woocommerce-address-fields__field-wrapper {
	margin-bottom: 40px;
}

.woocommerce .edit-account > .form-row:first-child,
.woocommerce .edit-account > .form-row:nth-child(2) {
	margin-top: 24px;
}

.woocommerce .edit-account fieldset > .form-row {
	float: none;
}

.woocommerce .edit-account fieldset {
	margin-bottom: 40px;
}

table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell .button {
	margin-right: 3px;
	padding: 8px 20px;
	font-size: 12px;
}
	



/*  ---------------------------------------------------	*/

/*    ORDER												*/
	
/* ---------------------------------------------------	*/
.woocommerce-order .woocommerce-order-overview {
	list-style: none;
	margin: 40px 0 0 0;
	padding: 0;
	overflow: hidden;
	width: 100%;
	border: 1px solid rgba(0,0,0,0.11);
	background: #fafafa;
}

.woocommerce-order .woocommerce-order-overview li {
	float: left;
	margin: 0;
	border-left: 1px solid rgba(0,0,0,0.11);
	width: 25%;
	padding: 15px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	}
	.woocommerce-order .woocommerce-order-overview li:first-child {
	border-left: none;
}

.woocommerce-order .woocommerce-order-overview li > span,
.woocommerce-order .woocommerce-order-overview li > span > strong {
	font-size: 13px;
	line-height: 1.4em;
	color: rgba(0,0,0,0.31);
	display: block;
	font-weight: 400;
}

.woocommerce-order .woocommerce-order-overview li > strong,
.woocommerce-order .woocommerce-order-overview li .amount {
	font-size: 14px;
	line-height: 1.4em;
	color: #000;
	font-weight: 500;
}

.woocommerce-table--order-details .product-total {
	width: 140px;
}

.woocommerce-order .woocommerce-customer-details address {
	margin-top: 40px;
	width: calc(100% - 42px);
}

/* bankdetails */
.woocommerce-order .woocommerce-bacs-bank-details {
	border: 1px solid rgba(0,0,0,0.11);
	max-width: 545px;
	margin-top: 30px;
	padding: 30px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

.woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details-heading {
	font-weight: 700;
	font-size: 22px;
	line-height: 30px; 
}

.woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details-account-name {
	font-weight: 700;
	font-size: 16px; 
	line-height: 22px;  
}

.woocommerce-order .woocommerce-bacs-bank-details ul {
	list-style: none;
	padding: 0;
	margin-left: 0;
}

.woocommerce-order .woocommerce-bacs-bank-details ul li,
.woocommerce-order .woocommerce-bacs-bank-details ul li strong {
	font-family: "Montserrat";
	font-weight: 500;
	font-size: 14px;
	text-transform: none;
	color: rgba(0,0,0,0.31);
	margin-top: 4px;
	}
	.woocommerce-order .woocommerce-bacs-bank-details ul li strong {
	color: #000;
	margin-top: 0;
	}


/* track order */
.woocommerce-form-track-order {
	max-width: 780px;
}


/*  ---------------------------------------------------	*/

/*    LOOKBOOK MODAL									*/
	
/* ---------------------------------------------------	*/
.shopthelook .lookbook-list {
	margin: 0;
	list-style: none;
	}
	.shopthelook.direction-top .lookbook-list {
 	display: flex;
	flex-direction:column-reverse;
	}

.shopthelook .lookbook-list li,
.shopthelook > .list-item {
	border-top: 1px solid rgba(0,0,0,0.11);
	margin: 0;
	padding: 5px;
	transition: all 0.6s cubic-bezier(0.4, 0.4, 0.000, 1.0), background 0.25s ease;
	background: #fff;
	}
	.shopthelook.unveil-true .lookbook-list li {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-5px);
	}
	.shopthelook.direction-top .lookbook-list li {
	border: none;
	border-bottom: 1px solid rgba(0,0,0,0.11);
	transform: translateY(5px);
	}
	.shopthelook .lookbook-list li:first-child {
	border: none;
	}
	.shopthelook .lookbook-list li:first-child,
	.shopthelook.unveil-true:hover .lookbook-list li:not(:first-child), 
	.shopthelook.unveil-true.show .lookbook-list li:not(:first-child) {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
	}
	.shopthelook.unveil-true:hover .lookbook-list li:nth-child(3),
	.shopthelook.unveil-true.show .lookbook-list li:nth-child(3) { transition-delay: 0.03s; }
	.shopthelook.unveil-true:hover .lookbook-list li:nth-child(4),
	.shopthelook.unveil-true.show .lookbook-list li:nth-child(4) { transition-delay: 0.06s; }
	.shopthelook.unveil-true:hover .lookbook-list li:nth-child(5),
	.shopthelook.unveil-true.show .lookbook-list li:nth-child(5) { transition-delay: 0.09s; }
	.shopthelook.unveil-true:hover .lookbook-list li:nth-child(6),
	.shopthelook.unveil-true.show .lookbook-list li:nth-child(6) { transition-delay: 0.12s; }
	.shopthelook .lookbook-list li:hover, 
	.shopthelook > .list-item:hover { 
	background: #fafafa;
	}

.shopthelook .list-item .product-name {
	overflow: hidden;
	display: flex;
	align-items: center;
	}

.shopthelook .list-item .product-name .product-image {
    max-width: 60px;
}

.shopthelook .list-item .product-name .product-info {
    width: calc(100% - 75px);
	margin-left: 15px; 
}





/*  ---------------------------------------------------	*/

/*    CROSS SELLS content: 					;			*/
	
/* ---------------------------------------------------	*/
.cross-sells {
	margin-top: 20px;
	}

.cross-sell-container {
	width: calc(100% + 20px);
	}

.cross-sell-container .shopthelook {
	float: left;
	width: calc(33% - 20px);
	margin-top: 20px;
	margin-right: 20px;
	}
	.wrapper-medium .cross-sell-container .shopthelook {
	width: calc(50% - 20px);
	}

.shopthelook > .list-item  {
    border: 1px solid rgba(0,0,0,0.11);
	display: block;
}




/*  ---------------------------------------------------	*/

/*    WISHLIST (WooCommerce Wishlist Plugin)			*/
	
/* ---------------------------------------------------	*/
.tinvwl_add_to_wishlist_button {
	position: relative;
	padding-left: 18px;
	font-size: 12px !important;
	color: #000 !important;
	line-height: 17px;
	height: 17px;
	margin-bottom: 0 !important;
	border-bottom: 1px solid rgba(0,0,0,0.11) !important;
	}
	.tinvwl_add_to_wishlist_button:hover {
	border-color: #000 !important;
	}
	.text-light .tinvwl_add_to_wishlist_button {
	border-color: rgba(255,255,255,0.19) !important;
	}
	.text-light .tinvwl_add_to_wishlist_button:hover {
	border-color: #fff !important;
	}

.tinv-wishlist .tinvwl_add_to_wishlist_button::before {
	display: none !important;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button::after {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	position: absolute;
	top: calc(50% - 6px);
	left: 0;
	background-image:url(../../../files/assets/heart.svg);
	-webkit-background-size:12px;
	-moz-background-size:12px;
	-o-background-size:12px;
	background-size:12px;
	background-repeat: no-repeat;
	}
	.text-light .tinv-wishlist .tinvwl_add_to_wishlist_button::after {
	background-image:url(../../../files/assets/heart-light.svg);
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-product-in-list::after {
	background-image:url(../../../files/assets/heart-full.svg);
	}
	.text-light .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-product-in-list::after {
	background-image:url(../../../files/assets/heart-full-light.svg);
}


/* Before Add to cart */
.tinvwl-before-add-to-cart {
	width: 40px;
	height: 40px;
	margin-top: 10px;
	}
	form.cart .tinvwl-before-add-to-cart {
	margin: 0 !important;
	position: absolute;
	bottom: 0;
	right: 0;
	}
	#product .product-infos form.sg-after .tinvwl-before-add-to-cart {
	bottom: 34px;
	}

.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button {
	border: 1px solid rgba(0,0,0,0.11) !important;
	width: 40px;
	height: 40px;
	padding: 0;
	}
	.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button:hover {
	border-color: #000 !important;
	}	
	.text-light .tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button {
	border-color: rgba(255,255,255,0.19) !important;
	}
	.text-light .tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button:hover {
	border-color: #fff !important;
	}

.tinv-wishlist.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button::after {
	content: "";
	width: 14px;
	height: 14px;
	display: block;
	position: absolute;
	top: 12px;
	left: 12px;
	-webkit-background-size:14px;
	-moz-background-size:14px;
	-o-background-size:14px;
	background-size:14px;
}

.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist-text {
	display: none;
	}

.tinvwl-before-add-to-cart ~ .product-add-to-cart {
	width: calc(100% - 50px);
	}


/* on grid */
.shop-container .tinv-wishlist.tinvwl-after-add-to-cart {
	position: absolute;
	bottom: 55px;
	left: 0;
	width: 100%;
	text-align: center;
	}

.shop-container .hide-wishlist-button .tinv-wishlist {
	display: none;
	}

.shop-container .tinvwl-before-add-to-cart {
	position: absolute;
	bottom: 10px;
	right: 10px;
	}
	.shop-container .meta-alignment-center .product-media .tinvwl-before-add-to-cart:last-child {
	right: calc(50% - 20px);
}

.shop-container .tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button {
	border: none !important;
	background: #fff;
	}

.shop-container .tinv-wishlist.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button::after {
	top: 13px;
	left: 13px;
	}

.tinvwl-before-add-to-cart ~ .grid-button {
	width: calc(100% - 70px) !important;
	}

.shop-container .shop-item .shop-item-inner .tinv-wishlist {
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	z-index: 2;
}

.shop-container .shop-item:hover .tinv-wishlist {
	opacity: 1;
	visibility: visible;
}


/* header wishlist */
.header-wishlist a:hover {
	color: rgba(0,0,0,0.31);
}

.header-wishlist a {
	position: relative;
	width: 17px;
	display: inline-block;
}

.header-wishlist a {
	position: relative;
	width: 17px;
	display: inline-block;
}


.menu-mobile-actions .header-wishlist a {
	height: 20px;
	line-height: 20px;
}

.header-wishlist .wishlist_products_counter::before {
	content: '' !important;
	margin: 0 !important;
	width: 17px;
	height: 17px;
	background-image:url(../../../files/assets/heart.svg);
	-webkit-background-size:16px;
	-moz-background-size:16px;
	-o-background-size:16px;
	background-size:16px;
	background-repeat: no-repeat;
    transition: all 0.2s ease;
	position: absolute;
	top: calc(50% - 8px);
	left: 0;
	}
	body:not(.scrolled) #header.transparent-light:not(.header-hover) .header-wishlist .wishlist_products_counter::before, 
	body.cart-is-open:not(.scrolled) #header.transparent-light .header-wishlist .wishlist_products_counter::before { 
	background-image:url(../../../files/assets/heart-light.svg); }
	body:not(.scrolled) #header.transparent-dark:not(.header-hover) .header-wishlist .wishlist_products_counter::before, 
	body.cart-is-open:not(.scrolled) #header.transparent-dark .header-wishlist .wishlist_products_counter::before { 
	background-image:url(../../../files/assets/heart.svg); }
	.header-wishlist .wishlist_products_counter:hover::before {
	opacity: 0.41;
	}

.header-wishlist a:not(.top_wishlist-custom) .wishlist_products_counter_text {
	display: none;
}

.header-wishlist .wishlist_products_counter_number {
	font-family: 'Arial','Helvetica';
	font-weight: 400;
	background: #000;
	position: absolute;
	top: calc(50% - 20px);
	left: 9px;
	border-radius: 9px;
	min-width: 18px;
	height: 18px;
	color: #fff;
	text-align: center;
	line-height: 18px;
	font-size: 9px;
	display: inline-block;
    transition: all 0.15s ease;
	opacity: 0;
	}
	body:not(.scrolled) #header.transparent-light:not(.header-hover) .header-wishlist .wishlist_products_counter_number, 
	body.cart-is-open:not(.scrolled) #header.transparent-light .header-wishlist .wishlist_products_counter_number { 
	background: #fff;
	color: #000;
	}
	body:not(.scrolled) #header.transparent-dark:not(.header-hover) .header-wishlist .wishlist_products_counter_number, 
	body.cart-is-open:not(.scrolled) #header.transparent-dark .header-wishlist .wishlist_products_counter_number { 
	background: #000;
	color: #fff;
	}
	.header-wishlist .wishlist-counter-with-products .wishlist_products_counter_number {
	opacity: 1;
	}


/* wishlist table */
.tinv-wishlist table.tinvwl-table-manage-list {
	margin-bottom: 40px !important;	
}

.tinv-wishlist table.shop_table thead th, 
.tinv-wishlist table.shop_table tbody td, 
.tinv-wishlist table.shop_table tbody th, 
.tinv-wishlist table.shop_table tfoot td,
.tinv-wishlist table.shop_table tfoot th { 
	padding: 15px 0;
	}
	.tinv-wishlist table.shop_table thead th { 
	padding-top: 0;
	line-height: 20px;
	}

.tinv-wishlist table tfoot {
	display: none;
}

.tinv-wishlist table.shop_table .product-price {
    width: 150px;
    position: relative;
}

.tinv-wishlist button.tinvwl-remove {
	background: none !important;
	margin: 0 !important;
	padding: 0 !important;
	height: auto !important;
	font-size: 18px !important;
	transition: all 0.15s ease;
	display: inline-block;
	font-size: 11px !important;
	font-weight: 400;
	line-height: 15px;
	border: none !important;
	border-bottom: 1px solid rgba(0,0,0,0.11) !important;
	color: rgba(0,0,0,0.31) !important;
	margin-top: 20px !important;
	}
	.tinv-wishlist button.tinvwl-remove:hover {
	border-color: #d83e49 !important;
	color: #d83e49 !important;
	}


.tinv-wishlist .stock i {
    display: none;
}

.tinv-wishlist p.stock {
    margin-top: 0px;
}

.tinv-wishlist .product-action {
    width: 180px !important;
}

.tinv-wishlist .product-action .sr-button {
    padding-left: 0;
    padding-right: 0;
	margin: 0;
	max-width: 200px;
	width: 100%;
}


.tinv-wishlist .product-action .sr-button + .sr-button,
.tinv-wishlist .mobile-product-action .sr-button + .sr-button {
    display: none;
}

.tinv-wishlist .product-price .stock,
.tinv-wishlist .mobile-product-action {
    display: none;
}

.tinv-wishlist .social-buttons > .share-title {
	margin-right: 40px;
	display: inline-block;
}

.tinv-wishlist .social-buttons li {
    margin: 0 !important;
}

.tinv-wishlist .social-buttons li a {
    font-size: 13px !important;
    width: auto !important;
	padding: 0 8px 0 8px;
	}
	.tinv-wishlist .social-buttons li:first-child a {
	padding-left: 0;
	}
	.tinv-wishlist .social-buttons li:last-child a {
	padding-right: 0;
	}



/*  ---------------------------------------------------	*/

/*    SIZE GUIDE (WooCommerce Size Guide Plugin)		*/
	
/* ---------------------------------------------------	*/
#product .product-infos .open-popup-link {
	margin-top: 10px;
}

#product .product-infos form > .open-popup-link:first-child,
#product .product-infos form > .variations + .open-popup-link,
#product .product-infos form > .variations + .tinvwl-before-add-to-cart + .open-popup-link,
#product .product-infos form > .open-popup-link:nth-last-child(2) {
	margin-top: 0;
}

#product .product-infos form.sg-after > .product-add-to-cart + .open-popup-link  {
	margin-top: 15px;
}

#product .product-infos form.sg-after > .tinv-wishlist + .open-popup-link  {
	float: right;
	transform: translateY(-18px);
}


/*  ---------------------------------------------------	*/

/*    QUICK VIEW 										*/
	
/* ---------------------------------------------------	*/
.open-quick-view {
	/*position: absolute;
	bottom: 0;
	right: 0;*/
	display: inline-block;
	margin-left: 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	}
	.shop-container .shop-item:hover .open-quick-view {
	opacity: 1;
	visibility: visible;
	transition-delay: 0.1s;
	}

#quick-view {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.15);
	z-index: 1591;		/* lower than mini cart */
	
	opacity: 0;
	visibility: hidden;
	height: 0;
	transition: all 0.4s ease, height 0.01s 0.5s;
	overflow: hidden;
	overflow-y: auto;
	}
	#quick-view.loading,
	#quick-view.visible {	
	opacity: 1;
	visibility: visible;
	height: 100%;
	transition: all 0.4s ease, height 0.01s;
	}

#quick-view.visible .sr-loader-icon {
	opacity: 0;
	}

#quick-view .quick-view-inner {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: auto;
	background: #ffffff;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	transition: all 0.3s ease;
	overflow: hidden;
	opacity: 0;
	}
	#quick-view.visible .quick-view-inner {
	top: 50%;
	opacity: 1;
	}

#quick-view .quick-view-inner .close-icon {
	top: 20px;
	right: 20px;
	height: 20px;
	line-height: 20px;
	opacity: 0;
	transition: opacity 0.3s ease 0.6s;
	}
	#quick-view.visible .quick-view-inner .close-icon {
	opacity: 1;
	}

#quick-view .pseudo-close {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	}

#quick-view .quick-view-inner .close-icon::before {
	display: none;
	}

#quick-view .quick-view-inner .close-icon svg {
	width: 14px;
	}

#quick-view .quick-product { }

#quick-view .quick-product .column-section { 
	width: 100%;
	max-width: 100%;
	margin: 0;
	display: flex;
}

#quick-view .quick-product .three-fifth { 
	width: 440px;
	margin-right: 0;
	}
	/* width class via js ajax callback */
	#quick-view .quick-product .three-fifth.width-2 { 
	width: 480px;
	margin-right: 0;
	}
	#quick-view .quick-product .three-fifth.width-3 { 
	width: 550px;
	margin-right: 0;
}

#quick-view .quick-product .two-fifth { 
	width: 420px;
	padding: 60px 60px 60px 60px;
	}

#quick-view .quick-product { 
	opacity: 0;
	transition: opacity 0.3s ease;
	}
	#quick-view.visible .quick-product { 
	opacity: 1;
	transition-delay: 0.8s;
	}

#quick-view .quick-product .woocommerce-breadcrumb { 
	display: none;
}

#quick-view .quick-product .product_meta,
#quick-view .quick-product .woocommerce-tabs,
#quick-view .quick-product .share-0 #single-share { 
	display: none;
}

#quick-view .quick-product #single-share { 
	margin-top: 20px !important;
	border: none;
}

#quick-view .quick-product .variation-gallery.active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	transition-delay: 0.3s;
	}



/*  ---------------------------------------------------	*/

/*    SIZE GUIDE (Plugin)								*/
	
/* ---------------------------------------------------	*/
body .mfp-bg {
	opacity: 0.4;
}

body .mfp-wrap,
body .mfp-bg {
	z-index: 1542;
}

.ct-size-guide > hr {
	display: none;
}

.ct_table_container,
.sg_content {
	margin-top: 40px;
}

body h2.sg_title {
	font-size: 22px;
	font-weight: 700;
}

body .ct-size-guide div {
    max-width: 100% !important;
}

.ct_table_container table {
    border: 1px solid rgba(0,0,0,0.11);
}

body div.sg table tr td, 
body div.sg table tr th,
body div.sg table tr:first-child th {
    border-bottom: 1px solid rgba(0,0,0,0.11);
    border-right: none;
    text-align: left;
	line-height: 1.4em;
	}
	body div.sg table tr td:first-child, 
	body div.sg table tr th:first-child,
	body div.sg table tr:first-child th:first-child {
	border-right: 1px solid rgba(0,0,0,0.11);
	}

.ct_table_container table tr:nth-child(even) {
	background: rgba(0,0,0,0.03);
}

body div.sg table td, 
body div.sg table th {
    padding: 8px 7px;
}

body .mfp-close-btn-in .mfp-close {
	color: #000 !important;
	background: transparent !important;
}

body .ct_table_container {
	overflow-x: auto;
}

body .ct_table_container table.ct-size-guide--NonResponsive {
	min-width: 500px;
}