.shop-container {
	max-width: 1260px;
	width: 100%;
	margin: 20px auto 0;
	min-height:1000px;
}

.shop-container .child-categories {
	margin-bottom: 10px;
	display: flex;

	justify-content: center;
}

.shop-container .child-categories a {
	font-weight: bold;
	color: #fff;
	/* 	padding: 10px 15px; */
	display: flex;
	flex-direction: column;
	/* 	justify-content: flex-end; */
	max-width: 100px;
}

.shop-container .child-categories a:nth-child(1n+0) .image-wrapper {
	background-color: #7BB52D;
}

.shop-container .child-categories a:nth-child(2n+0) .image-wrapper {
	background-color: #cca872;
}

.shop-container .child-categories a:nth-child(3n+0) .image-wrapper {
	background-color: #2e614c;
}

.shop-container .child-categories a .image-wrapper {
	/* 	max-width: 50px; */
	width: 100px;
	height: 100px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shop-container .child-categories a .image-wrapper img {
	max-width: 70px;
	filter: brightness(0) invert(1);
}

.shop-container .child-categories a .title {
	font-size: 0.8rem;
	text-align: center;
	color: #000;
	margin-top: 5px;
}

.shop-container .child-categories a:not(last-child) {
	margin-left: 10px;
}

.shop-container .result-and-ordering-wrapper {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.shop-container .result-and-ordering-wrapper p {
	margin: 0;
}

.shop-container ul.products,
.shop-container ul.upsell-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-gap: 20px;
	margin-bottom: 20px;
}

.shop-container ul.products li,
.shop-container ul.upsell-products li {
	border: 1px solid #e5e5e5;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.shop-container ul.products li .flash-labels,
.shop-container ul.upsell-products li .flash-labels {
	position: absolute;
	top: 5px;
	left: 5px;
	display: grid;
	grid-gap: 5px 0;
	grid-template-columns: minmax(0, 1fr);
	z-index: 5;
}

.shop-container ul.products li .flash-labels li,
.shop-container ul.upsell-products li .flash-labels li {
	padding: .2rem 1rem;
	border-radius: 1rem;
	border: none;
	font-size: 1rem;
	line-height: 1;
}

.shop-container ul.products li .image-and-sale-wrapper,
.shop-container ul.upsell-products li .image-and-sale-wrapper {
	display: grid;
	position: relative;
	width:100%;
}

.shop-container ul.products li .image-and-sale-wrapper > *,
.shop-container ul.upsell-products li .image-and-sale-wrapper > * {
	grid-area: 1/1/-1/-1;
}

.shop-container ul.products li .image-and-sale-wrapper:hover .overlay-wrapper,
.shop-container ul.upsell-products li .image-and-sale-wrapper:hover .overlay-wrapper {
	display: grid;
	cursor: pointer;
}

.shop-container ul.products li .image-and-sale-wrapper .overlay-wrapper,
.shop-container ul.upsell-products li .image-and-sale-wrapper .overlay-wrapper {
	display: grid;
	display: none;
}

.shop-container ul.products li .image-and-sale-wrapper .overlay-wrapper > *,
.shop-container ul.upsell-products li .image-and-sale-wrapper .overlay-wrapper > * {
	grid-area: 1/1/-1/-1;
}

.shop-container ul.products li .image-and-sale-wrapper .overlay-wrapper .overlay,
.shop-container ul.upsell-products li .image-and-sale-wrapper .overlay-wrapper .overlay {
	height: 100%;
	width: 100%;
	background: #000;
	z-index: 3;
	opacity: 0.3;
}

.shop-container ul.products li .image-and-sale-wrapper .overlay-wrapper span.icon-eye,
.shop-container ul.upsell-products li .image-and-sale-wrapper .overlay-wrapper span.icon-eye {
	z-index: 15;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	border: 1px solid #e5e5e5;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	justify-self: center;
	align-self: center;
}

.shop-container ul.products li .image-and-sale-wrapper .discount-label,
.shop-container ul.upsell-products li .image-and-sale-wrapper .discount-label {
	transform: unset;
	top: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	position: absolute;
	color: #fff;
	background-color: #cca872;
	padding: 3px 0 3px 10px;
	right: -22px;
}

.shop-container ul.products li .image-and-sale-wrapper .discount-label:before,
.shop-container ul.upsell-products li .image-and-sale-wrapper .discount-label:before {
	display: inline-block;
	position: relative;
	margin-bottom: -34px;
	margin-left: 0;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 10px 10px;
	border-color: transparent transparent transparent #cca872;
}

.shop-container ul.products li .image-and-sale-wrapper .product-image-wrapper,
.shop-container ul.upsell-products li .image-and-sale-wrapper .product-image-wrapper {
	height: 190px;
}

.shop-container ul.products li .image-and-sale-wrapper .product-image-wrapper img,
.shop-container ul.upsell-products li .image-and-sale-wrapper .product-image-wrapper img {
	width: 100%;
	height: 100%;
	/* 	object-fit: cover; */
	object-fit: contain;
}

.shop-container ul.products li h2.woocommerce-loop-product__title,
.shop-container ul.upsell-products li h2.woocommerce-loop-product__title {
	text-align: center;
	margin: 10px 0;
	font-size: 1.250rem;
	font-weight: normal;
	color: #333;
}

.shop-container ul.products li .product-sub-title,
.shop-container ul.upsell-products li .product-sub-title{
	color:#AFAFAF;
	margin: -7px auto 3px;
}

.product .price {
	text-align: center;
	display: block;
	position: relative;
}

.product .price.is-units {
	margin: .5rem;
}

.product .price del bdi {
	color: #999;
	margin-left: 10px;
}

.product .price bdi,
.product .price ins {
	color: #66cc33;
	text-decoration: initial;
}

.product .price .kg-label {
	position: absolute;
	top: 50%;
	left: calc(100% + 10px);
	transform: translate(0, -50%);
	font-size: 1rem;
	color: #66cc33;
	line-height: 1;
	white-space: nowrap;
}

.product .price .unit-kg-toggle {
	position: absolute;
	top: 50%;
	right: calc(100% + 10px);
	transform: translate(0, -50%);
	font-size: 1rem;
	display: flex;
}

.product .price .unit-kg-toggle [type="button"] {
	background-color: #eee;
	padding: .2rem .5rem;
	line-height: 1;
	color: #66CC33;
	cursor: pointer;
}

.product .price .unit-kg-toggle [type="button"]:first-child {
	border-radius: 0 1rem 1rem 0;
}

.product .price .unit-kg-toggle [type="button"]:last-child {
	border-radius: 1rem 0 0 1rem;
}

.product .price .unit-kg-toggle [type="button"].kg-only {
	border-radius: 1rem;
}

.product .price .unit-kg-toggle [type="button"].active {
	background-color: #66CC33;
	color: #fff;
}

.shop-container ul.products li .quantity,
.shop-container ul.upsell-products li .quantity {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px 0;
}

.shop-container ul.products li .quantity input::-webkit-outer-spin-button,
.shop-container ul.products li .quantity input::-webkit-inner-spin-button {
	/* Chrome, Safari, Edge, Opera */
	-webkit-appearance: none;
	margin: 0;
}

.shop-container ul.products li .quantity input[type=number] {
	/* Firefox */
	-moz-appearance: textfield;
}

.shop-container ul.products li .quantity input {
	text-align: center;
	border: 2px solid #66cc33;
	outline: none;
	width: 60px !important;
	padding: 0.375rem !important;
}

.shop-container ul.products li .quantity .minus-button {
	padding-left: 5px;
}

.shop-container ul.products li .quantity .plus-button {
	padding-right: 5px;
}

.shop-container ul.products li .quantity .minus-button,
.shop-container ul.products li .quantity .plus-button {
	font-size: 1.5rem;
	color: #66cc33;
}

.shop-container ul.products li a.button,
.shop-container ul.upsell-products li a.button {
	text-align: center;
	display: block;
}

.shop-container ul.products li a.button.add_to_cart_button,
.shop-container ul.upsell-products li a.button.add_to_cart_button {
	background-color: #66cc33;
	color: #fff;
	padding: 10px 15px;
	border-radius: 30px;
	display: table;
	margin: 10px auto 0;
}

.shop-container ul.products li a.button.add_to_cart_button:hover,
.shop-container ul.upsell-products li a.button.add_to_cart_button:hover {
	background-color: #ffcc00;
}

.shop-container ul.products li a.added_to_cart,
.shop-container ul.upsell-products li a.added_to_cart {
	background-color: #ffcc00;
	color: #fff;
	padding: 10px 15px;
	border-radius: 30px;
	display: table;
	margin: 10px auto 0;
}

.shop-container ul.products li a.added_to_cart:hover,
.shop-container ul.upsell-products li a.added_to_cart:hover {
	background-color: #66cc33;
}

.quick-view-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: 15px;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	background-color: rgba(0,0,0,0.5);
	/* 						display: none; */
	display: flex;
	z-index: 100;
}

.quick-view-overlay .quick-view {
	margin: auto;
	background-color: #fff;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-gap: 15px;
	align-items: center;
	justify-items: start;
	/* 	max-width: 30%; */
	/* 	max-width: 650px; */
	max-width: 800px;
	width: 100%;
	padding: 10px;
}

.quick-view-overlay .quick-view button.close-button {
	grid-area: 1/1/1/3;
	font-weight: bold;
	font-size: 1.5rem;
	color: #333;
}

.quick-view-overlay .quick-view button.close-button:hover {
	cursor: pointer;
}

.quick-view-overlay .quick-view .image-and-sale-wrapper,
.quick-view-overlay .quick-view .image-and-sale-wrapper .product-image-wrapper {
	max-height: 200px;
	height: 100%; 
	position: relative;
	margin:0 auto;
}

.quick-view-overlay .quick-view .image-and-sale-wrapper .discount-label {
	transform: unset;
	top: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	position: absolute;
	color: #fff;
	background-color: #cca872;
	padding: 3px 0 3px 10px;
	right: 0;
}

.quick-view-overlay .quick-view .image-and-sale-wrapper .discount-label:before {
	display: inline-block;
	position: relative;
	margin-bottom: -34px;
	margin-left: 0;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 10px 10px;
	border-color: transparent transparent transparent #cca872;
}

.quick-view-overlay .quick-view .image-and-sale-wrapper .product-image-wrapper img {
	height: 100%;
	margin: 0 auto;
}

.quick-view-overlay .quick-view .image-and-sale-wrapper .overlay-wrapper {
	display: none;
}

.quick-view-overlay .quick-view .left-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.quick-view-overlay .quick-view .left-content h2 {
	font-size: 2rem;
}

.quick-view-overlay .quick-view .left-content .product-sku {
	margin: 1rem 0;
}

.quick-view-overlay .quick-view .left-content .product-share,
.quick-view-overlay .quick-view .left-content .product-share .share-links {
	display: flex;
}

.quick-view-overlay .quick-view .left-content .product-share {
	margin: 1rem 0;
}

.quick-view-overlay .quick-view .left-content .product-share > span {
	margin-left: 10px;
}

.quick-view-overlay .quick-view .left-content .product-share .share-links li:not(last-child) {
	margin-left: 10px;
}

.quick-view-overlay .quick-view .left-content .product-info {
	margin: 1rem 0;
}

.quick-view-overlay .quick-view .left-content .product-info p {
	margin: 0;
}

.quick-view-overlay .quick-view .left-content .price {
	display: block;
	font-weight: bold;
	margin: 1rem 0;
}

.quick-view-overlay .quick-view .left-content .price del bdi {
	color: #999;
	margin-left: 10px;
}

.quick-view-overlay .quick-view .left-content .price bdi,
.quick-view-overlay .quick-view .left-content .price ins {
	color: #66cc33;
	text-decoration: initial;
}

.quick-view-overlay .quick-view .left-content .quantity {
	display: flex;
	/* 			justify-content: center; */
	align-items: center;
	margin: 5px 0;
}

.quick-view-overlay .quick-view .left-content .quantity input::-webkit-outer-spin-button,
.quick-view-overlay .quick-view .left-content .quantity input::-webkit-inner-spin-button {
	/* Chrome, Safari, Edge, Opera */
	-webkit-appearance: none;
	margin: 0;
}

.quick-view-overlay .quick-view .left-content .quantity input[type=number] {
	/* Firefox */
	-moz-appearance: textfield;
}

.quick-view-overlay .quick-view .left-content .quantity input {
	text-align: center;
	border: 2px solid #66cc33;
	outline: none;
	width: 60px !important;
	padding: 0.375rem !important;
}

.quick-view-overlay .quick-view .left-content .quantity .minus-button {
	padding-left: 5px;
}

.quick-view-overlay .quick-view .left-content .quantity .plus-button {
	padding-right: 5px;
}

.quick-view-overlay .quick-view .left-content .quantity .minus-button,
.quick-view-overlay .quick-view .left-content .quantity .plus-button {
	font-size: 1.5rem;
	color: #66cc33;
}

.quick-view-overlay .quick-view .left-content a.button.add_to_cart_button {
	background-color: #66cc33;
	color: #fff;
	padding: 10px 15px;
	border-radius: 30px;
	display: table;
	margin: 10px 0;
}

..quick-view-overlay .quick-view .left-content a.button.add_to_cart_button:hover {
	background-color: #ffcc00;
}

.quick-view-overlay .quick-view .left-content a.added_to_cart {
	background-color: #ffcc00;
	color: #fff;
	padding: 10px 15px;
	border-radius: 30px;
	display: table;
	margin: 10px 0;
}

.quick-view-overlay .quick-view .left-content a.added_to_cart:hover {
	background-color: #66cc33;
}

@media (max-width: 1250px) {
	.shop-container {
		padding: 0 15px;
	}

	.shop-container .child-categories a {
		max-width: 70px;
		width: 100%;
		align-items: center;
	}

	.shop-container .child-categories a:not(last-child) {
		margin-left: 5px;
	}

	.shop-container .child-categories a .image-wrapper {
		width: 60px;
		height: 60px;
	}
}

@media (max-width: 1100px) {
	.shop-container ul.products,
	.shop-container ul.upsell-products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 950px) {
	/* 	.shop-container .child-categories {
	display: flex;
	flex-direction: column;
	align-items: center; 

	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10px;
} */

	.shop-container .child-categories a {
		align-items: center;
		max-width:100%;
	}

	.shop-container .child-categories a:not(last-child) {
	margin: 0 auto 10px;
	}
	
	.shop-container .child-categories a .image-wrapper img{max-width:80%;}
}

@media (max-width: 750px) {	
	.shop-container .child-categories {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
	}
}

@media (max-width: 700px) {	
	.shop-container ul.products,
	.shop-container ul.upsell-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product .price .kg-label{
		position: relative;
		top: unset;
		left: unset;
		transform: unset;
		font-size: inherit;
	}
	.product .price .unit-kg-toggle{
		position: relative;
		top: unset;
		right: unset;
		transform: unset;
		justify-content: center;
		margin: 4px auto;
	}
	
	.shop-container ul.products li .image-and-sale-wrapper .discount-label{
		top:20px;
	}
}

@media (max-width: 500px) {
	.shop-container ul.products,
	.shop-container ul.upsell-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 400px) {
	.shop-container .child-categories {
		grid-template-columns: repeat(3, 1fr);
	}
	.shop-container ul.products li a.added_to_cart,
	.shop-container ul.upsell-products li a.added_to_cart{
		text-align:center;

	}
}