/*
	PRODUCTS
------------ */
.products-section{
	padding-left:30px;
	padding-right:30px;
}
.no-results{
	text-align:center;
	padding:30px 0;
	font-style:italic;
	opacity:0.5;
}
.products-home-carousel-container{
	position:relative;
	margin:0 0 75px 0;
}
.products-home-carousel-container .ctrl-prods{
	position:absolute;
	top:50%;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	margin-top:-60px;
	border-radius:50%;
	z-index:1;
}
.products-home-carousel-container .ctrl-prods-prev{
	left:-30px;
}
.products-home-carousel-container .ctrl-prods-next{
	right:-30px;
}
.products-home-carousel-container .slick-dots{
	bottom:-45px;
}
.product{
	padding:0 15px;
}
.products-grid .product{
	margin:0 0 30px 0;
}
.product .image{
	margin:0 0 15px 0;
	border-radius:5px;
	background-color:#fff;
	padding:15px;
	overflow:hidden;
	text-align:center;
	min-height:180px;
	display:table;
	width:100%;
}
.product .image a{
	position:relative;
	display:table-cell;
	vertical-align:middle;
}
.product .image a:after{
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	bottom:0;
	opacity:0;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
.product .image a:hover:after{
	opacity:1;
}
.product .image a .hover-icon{
	position:absolute;
	font-size:32px;
	left:50%;
	top:50%;
	margin-left:-20px;
	margin-top:-10px;
	z-index:1;
	border-radius:50%;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	opacity:0;
}
.product .image a:hover .hover-icon{
	opacity:1;
	margin-top:-20px;
}
.product img{
	max-width:100%;
	max-height:150px;
	overflow:hidden;
	display:inline-block;
}
.product .info a{
	text-align:center;
	display:block;
	text-decoration:none;
}
.product .title{
	font-weight:bold;
	display:block;
	font-size:24px;
	line-height:26px;
	margin:0 0 15px 0;
}
.product .price{
	font-size:18px;
	line-height:18px;
	font-weight:bold;
}
.product .old-price{
	font-weight:normal;
	opacity:0.5;
	font-size:14px;
	line-height:14px;
	text-decoration:line-through;
	margin:0 10px 0 0;
}
@media(min-width:768px){
	.products-home-carousel-container{
		margin:0 0 90px 0;
	}
	.products-home-carousel-container .ctrl-prods-prev{
		left:-30px;
	}
	.products-home-carousel-container .ctrl-prods-next{
		right:-30px;
	}
}
@media(min-width:992px){
	.products-home-carousel-container .slick-dots{
		bottom:-45px;
	}
	.products-grid .product{
		margin:0 0 45px 0;
	}
	.product .image{
		min-height:230px;
	}
	.product img{
		max-height:200px;
	}
}
@media(min-width:1200px){
	.products-grid .product{
		margin:0 0 60px 0;
		padding:0;
	}
}

/*
	PRODUCT DETAILS
------------------- */
.product-details-image{
	width:100%;
	display:table;
	position:relative;
}
.product-details-image a{
	display:table-cell;
	background-color:#fff;
	border-radius:5px;
	text-align:center;
	padding:15px;
	height:200px;
	vertical-align:middle;
}
.product-details-image img{
	max-width:90%;
	display:inline-block;
}
.product-details-image a:after{
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	bottom:0;
	opacity:0;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
.product-details-image a:hover:after{
	opacity:1;
}
.product-details-image a .hover-icon{
	position:absolute;
	font-size:32px;
	left:50%;
	top:50%;
	margin-left:-20px;
	margin-top:-10px;
	z-index:1;
	border-radius:50%;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	opacity:0;
}
.product-details-image a:hover .hover-icon{
	opacity:1;
	margin-top:-20px;
}
.product-details .thumbs{
	margin:15px 0;
	float:left;
	width:100%;
}
.product-details .thumbs a.thumb{
	display:inline-block;
	width:calc(33.33% - 2px);
	margin:1px;
	height:70px;
	float:left;
	border-radius:5px;
	opacity:0.5;
}
.product-details .thumbs a.thumb.current{
	opacity:1;
}
.product-details h3{
	margin:0 0 30px 0;
}
.product-details-text{
	margin:15px 0 0 0;
	font-size:14px;
	line-height:22px;
}
.product-details-price{
	margin:30px 0;
}
.product-details-price .price{
	font-size:24px;
	line-height:24px;
	font-weight:bold;
}
.product-details-price .old-price{
	font-size:18px;
	line-height:18px;
	margin:0 0 10px 5px;
	font-weight:normal;
	display:block;
	text-decoration:line-through;
	opacity:0.5;
}
@media(min-width:992px){
	.product-details-info{
		padding:0 30px;
	}
	.product-details .thumbs a.thumb{
		width:calc(25% - 2px);
	}
	.product-details-text{
		font-size:16px;
		line-height:24px;
	}
}
@media(min-width:1200px){
	.product-details-image a{
		height:300px;
	}
}
