/*
--------------------------------------
Product cover
--------------------------------------
*/

/*Container*/

.c-product-cover .elementor-widget-ucaddon_single_product_cover {
	position: sticky;
	top: 0;
}

.single-product__container {
	position: relative;
	display: flex;
	justify-content: center;
	overflow: hidden;
	background: #EBE6DC;
	border-radius: 635px 635px 0 0;
	transition: all 0.25s ease-in-out;
	max-height: 800px;
}

/*Background*/

.single-product__background {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	grid-column: 1 / -1;
	grid-row: 2;
	border-radius: 635px 635px 0 0;
	background: #EBE6DC;
	height: 100%;
}

/*Image*/

.single-product__cover-img {
	position: relative;
	z-index: 1;
	bottom: 25px;
	object-fit: contain;
	background-color: #EBE6DC;
	filter: drop-shadow(0 0 0 #EBE6DC);
	max-height: 800px;
	margin: auto;
}

