/*
** Range Product Carousel CSS
*/
.range-product-box-carousel-wrap{
    overflow-x: clip;
	position: relative;
}

.range-product-box-carousel{
	padding-bottom: 100px;
}

.range-product-box-carousel .slick-list{
    margin: 0 -15px;
}

.range-product-box-carousel .slick-slide{
    margin: 0 15px;
    height: auto;
}

.range-product-box-carousel .slick-track{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: stretch;
}

.range-product-box-carousel .product-box{
	text-align: center;
}

.range-product-box-carousel .product-box-image img{
	aspect-ratio: 1 / 1.4;
    object-fit: cover;
}

.range-product-box-carousel .product-box-content h3{
	font-family: var( --e-global-typography-secondary-font-family ), Sans-serif;
	font-size: var( --e-global-typography-secondary-font-size );
	font-weight: var( --e-global-typography-secondary-font-weight );
	text-transform: var( --e-global-typography-secondary-text-transform );
	font-style: var( --e-global-typography-secondary-font-style );
	line-height: var( --e-global-typography-secondary-line-height );
	color: var( --e-global-color-secondary );
	margin: 20px 0px 10px;
}

.range-product-box-carousel .product-box-footer{
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.range-product-box-carousel .product-box-footer p{
	font-family: var( --e-global-typography-text-font-family ), Sans-serif;
	font-size: var( --e-global-typography-text-font-size );
	font-weight: var( --e-global-typography-text-font-weight );
	text-transform: var( --e-global-typography-text-text-transform );
	font-style: var( --e-global-typography-text-font-style );
	line-height: var( --e-global-typography-text-line-height );
	color: var( --e-global-color-text );
	margin: 0;
}

.range-product-box-carousel .product-box-footer .product-icon{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
}

.range-product-box-carousel .product-box-footer .product-icon img{
	height: 18px;
	width: 18px;
}

.range-product-box-carousel .slick-arrow{
    position: absolute;
    top: auto;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
	padding: 0px;
	z-index: 10;
}

.range-product-box-carousel .slick-arrow svg{
	height: 18px;
	width: 18px;
}

.range-product-box-carousel .slick-arrow:hover,
.range-product-box-carousel .slick-arrow:focus{
	color: var(--white-color);
}

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

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

@media only screen and (max-width: 1460px) {
	.range-product-box-carousel .product-box-footer{
		gap: 18px;
	}
}


@media only screen and (max-width: 1024px) {
	
	.range-product-box-carousel{
		padding-bottom: 80px;
	}
	
	.range-product-box-carousel .slick-list{
		margin: 0 -10px;
	}

	.range-product-box-carousel .slick-slide{
		margin: 0 10px;
	}
	
	.range-product-box-carousel .product-box-image img{
		aspect-ratio: 1 / 1.1;
	}

	.range-product-box-carousel .product-box-footer{
		gap: 25px;
	}

	.range-product-box-carousel .product-box-footer .product-icon img{
		height: 16px;
		width: 16px;
	}

	.range-product-box-carousel .slick-arrow{
		height: 35px;
		width: 35px;
	}
	
	.range-product-box-carousel .slick-arrow svg{
		height: 16px;
		width: 16px;
	}

	.range-product-box-carousel .slick-arrow.prev-arrow{
		left: calc(50% - 42px);
	}

	.range-product-box-carousel .slick-arrow.next-arrow{
		right: calc(50% - 42px);
	}
	
}

@media only screen and (max-width: 767px) {
	
	.range-product-box-carousel{
		padding-bottom: 60px;
	}

	.range-product-box-carousel .product-box-content h3{
		margin: 15px 0px 10px;
	}

	.range-product-box-carousel .product-box-footer{
		gap: 22px;
	}

	.range-product-box-carousel .product-box-footer .product-icon{
		gap: 8px;
	}

	.range-product-box-carousel .slick-arrow svg{
		height: 14px;
		width: 14px;
	}

	.range-product-box-carousel .slick-arrow.prev-arrow{
		left: calc(50% - 40px);
	}

	.range-product-box-carousel .slick-arrow.next-arrow{
		right: calc(50% - 40px);
	}
	
}
