/*
 * Products Carousel CSS
 */
.products-carousel{
	cursor: grab;
}

.products-carousel{
  	opacity: 0;
  	visibility: hidden;
}

.products-carousel.slick-initialized{
  	visibility: visible;
  	opacity: 1;
}

.products-carousel .slick-slide{
	margin: 0 15px;
}

.products-carousel .slick-list{
	margin: 0 -15px;
}

.product-box{
	position: relative;
}

.product-box .product-image{
	position: relative;
	overflow: hidden;
	z-index: 1;
}
/*
.product-box .product-image:before{
	content: '';
	display: block;
	position: absolute;
	width: 88%;
	height: 12px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url("../images/product-image-top-shape.svg") no-repeat top center;
	background-size: 100% auto;
	z-index: 1;
}

.product-box .product-image:after{
	content: '';
	display: block;
	position: absolute;
	width: 88%;
	height: 12px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url("../images/product-image-bottom-shape.svg") no-repeat bottom center;
	background-size: 100% auto;
	z-index: 1;
}*/

.product-box .product-image{
	-webkit-mask-image: url("../images/mask-image.svg");
	  mask-image: url("../images/mask-image.svg");
	  mask-size: 100% auto;
	  mask-repeat: no-repeat;
}

.product-box .product-image img{
	width: 100%;
	aspect-ratio: 1 / 1.035;
    object-fit: cover;
}

.product-box .product-content{
	position: relative;
	padding: 30px 0 0;
}

.product-box .product-content .product-name{
	margin-bottom: 10px;
}

.product-box .product-content .product-name h3{
    font-size: 20px;
}

.product-box .product-content .product-name h4{
    font-size: 14px;
    font-weight: 900;
	color: var(--e-global-color-secondary);
	margin-bottom: 30px;
}

.product-box .elementor-widget-button{
	margin-top: 30px;
}

.products-carousel .slick-arrow{
	outline: none;
	border: none;
	padding: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--e-global-color-accent);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px auto;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
	position: absolute;
	top: calc(50% - 60px);
	z-index: 10;
}

.products-carousel .slick-arrow:hover,
.products-carousel .slick-arrow:focus{
	background-color: var(--e-global-color-secondary);
}

.products-carousel .slick-arrow.prev-arrow{
	background-image: url('../images/product-slider-left-arrow.svg');
	right: auto;
	left: -90px;
}

.products-carousel .slick-arrow.next-arrow{
	background-image: url('../images/product-slider-right-arrow.svg');
	right: -90px;
	left: auto;
}


@media only screen and (max-width: 1500px){
	
	
	.products-carousel{
		padding-bottom: 80px;
	}
	
	.products-carousel .slick-arrow{
		top: auto;
		bottom: 0;
	}

	.products-carousel .slick-arrow.prev-arrow{
		left: calc(50% - 50px);
	}

	.products-carousel .slick-arrow.next-arrow{
		right: calc(50% - 50px);
	}
	
}


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

	.product-box .product-content .product-name h3{
		font-size: 24px;
	}
	
	.product-box .product-content .product-name h4{
		margin-bottom: 20px;
	}
	
	.product-box .elementor-widget-button{
		margin-top: 20px;
	} 
	
}

@media only screen and (max-width: 767px){
	
	.products-carousel .slick-slide{
		margin: 0 10px;
	}

	.products-carousel .slick-list{
		margin: 0 -10px;
	}

	.product-box .product-content{
		padding: 25px 0 0;
	}

	.product-box .product-content .product-name{
		margin-bottom: 15px;
	}

	.products-carousel .slick-arrow.prev-arrow{
		left: calc(50% - 45px);
	}

	.products-carousel .slick-arrow.next-arrow{
		right: calc(50% - 45px);
	}
	
}
