.rc-products-carousel {
	.container {
		margin: 100px 0;
	}
	.rc-products-carousel-title {
		text-align: center;
		h2 {
			line-height: 1.2;
			margin: 0px 0 20px;
			text-transform: uppercase;
		}
	}
	.rc-products-carousel-products {
		padding: 0 40px;
		margin: 0px auto;
		.product-wrapper {
			padding: 0 7px;
		}
		.product-block {
			box-shadow: 0 4px 10px -2px rgba(0,0,0,0.1);
			border-radius: 10px;
			overflow: hidden;
			background: #fff;
			transition: all 0.3s ease;
			.product-collection {
				background: #EF0C0C;
				padding: 12px;
				text-transform: uppercase;
				font-weight: 700;
				text-align: center;
				color: #fff;
				font-size: 18px;
				line-height: 1.3;
			}
			.product-image {
				background: #ECECEC;
				height: 350px;
				display: flex;
				align-items: center;
				justify-content: center;
				padding: 15px;
				img {
					max-height: 100%;
				}
			}
			.product-content {
				text-align: center;
				padding: 30px;
				.product-text {
					height: 110px;
					overflow: hidden;
					.product-title {
						font-size: 24px;
						text-transform: uppercase;
						line-height: 1;
						margin-bottom: 20px;
						font-weight: 600;
						height: 50px;
						overflow: hidden;
						color: #000;
					}
					.product-price {
						font-size: 20px;
						line-height: 1.3;
						font-weight: 700;
						color: #000;
					}
				}
				.product-button {
					a {
					
					}
				}
			}
		}
		.product-block:hover {
			background: #EF0C0C;
			.product-content {
				.product-text {
					.product-title {
						color: #fff;
					}
					.product-price {
						color: #fff;
					}
				}
				.product-button {
					a {
						background: #fff;
						color: #000;
					}
				}
			}
		}
		.slick-arrow {
			width: 37px;
			height: 37px;
			background-size: 100% 100%;
		}
		.slick-prev {
			background-image: url( //rajahcaruth.com/cdn/shop/t/5/assets/icon_arrow_left.png?v=10539023235733610011771444437 );	
			left: 0px;
		}
		.slick-next {
			background-image: url( //rajahcaruth.com/cdn/shop/t/5/assets/icon_arrow_right.png?v=44113240453535821441771444438 );	
			right: -4px;
		}
		.slick-arrow::before {
			display: none;
		}
	}
}
@media only screen and (max-width: 989px) { 
.rc-products-carousel {
	.container {
		margin: 50px 0;
	}
}
}
@media only screen and (max-width: 767px) { 
.rc-products-carousel {
	.rc-products-carousel-products {
		max-width: 350px;
	}
}
}