/**************************
 * Structure generale
 **************************/
#category_zoom
{
	margin-bottom: 		100px;
}

#category_zoom::after
{
	content: 			" ";
	display: 			block;
	clear: 				both;
}

	
	#category_zoom_category_list::after,
	#category_zoom_product_list::after
	{
		content: 			" ";
		display: 			block;
		clear: 				both;
	}



/**************************
 * Product > List > Item
 **************************/
.product_list_item:link,
.product_list_item:hover,
.product_list_item:active,
.product_list_item:visited
{
	display: 				block;
	position: 				relative;
	float: 					left;
	width: 					31%;
	margin: 				1% 1%;
	color: 					#fff;
	padding-right: 			10px;
	background-color: 		#fff;
	min-height: 			90px;
	padding: 				5px;
	
	-moz-border-radius:		2px;
	-webkit-border-radius:	2px;
	border-radius:			2px;
	
	-webkit-transition:	all .2s ease-out;
	-moz-transition:	all .2s ease-out;
	-o-transition:		all .2s ease-out;
	transition:			all .2s ease-out;
}
.product_list_item::after
{
	content: 			" ";
	display: 			block;
	clear: 				both;
}
/*
.product_list_item:hover
{
	box-shadow: 		2px 2px 2px rgba(0,0,0,.2);
}
*/
.product_list_item .product_list_item_hover
{
	position: 			absolute;
	top: 				0;
	left: 				0;
	right: 				0;
	bottom: 			0;
	opacity: 			0;
	vertical-align: 	middle;
	text-align: 		center;
	color: 				#fff;
	font-size: 			17pt;
	font-family: 		'Poppins', Arial;
	font-weight: 		700;
	-moz-border-radius:		2px;
	-webkit-border-radius:	2px;
	border-radius:			2px;
		
	-webkit-transform: 	scale(0);
	-moz-transform: 	scale(0);
	-ms-transform: 		scale(0);
	
	-webkit-transition:	all .2s ease-out;
	-moz-transition:	all .2s ease-out;
	-o-transition:		all .2s ease-out;
	transition:			all .2s ease-out;
		
	
}
	
.product_list_item .product_list_item_hover span
{
	display: 			block;
	margin-top: 		46px;
	vertical-align: 	middle;
	text-align: 		center;
}

.product_list_item:hover .product_list_item_hover
{
	opacity: 			1;
	-webkit-transform: 	scale(1);
	-moz-transform: 	scale(1);
	-ms-transform: 		scale(1);
}

	.product_list_item_picture
	{
		float: 					left;
		width: 					30%;
		height: 				130px;
		background-position: 	center center;
		background-repeat: 		no-repeat;
		background-size: 		contain;
		background-color: 		#fff;
		border-top: 			0;
		border-bottom: 			0;
		border-left: 			0;
		border-right: 			2px solid;
		background-color: 		#fff;
		/*
		-moz-border-radius:		5px 0 0 5px;
		-webkit-border-radius:	5px 0 0 5px;
		border-radius:			5px 0 0 5px;
		*/
	}
	
	.product_list_item_info
	{
		float: 			right;
		width: 			65%;
	}
		.product_list_item_info h2
		{
			font-size: 			14pt;
			line-height:  		1;
			padding: 			5px 0;
			margin: 			0;
			color: 				inherit;
			/*color: 				#fff;*/
		}
		.product_list_item_description
		{
			color: 				#222;
			padding: 			5px 0;
		}
	
	

/***************************
 *
 * Responsive
 *
 ***************************/
@media only screen /* Smartphone Horizontal */ 
and (max-width : 1060px) 
{
		
	.product_list_item:link,
	.product_list_item:hover,
	.product_list_item:active,
	.product_list_item:visited
	{
		float: 					left;
		width: 					48%;
		margin: 				10px 1%;
	}
}
@media only screen /* Smartphone Horizontal */ 
and (max-width : 700px) 
{

	.product_list_item:link,
	.product_list_item:hover,
	.product_list_item:active,
	.product_list_item:visited
	{
		float: 					none;
		width: 					auto;
		margin: 				10px 1%;
		-moz-border-radius:		0;
		-webkit-border-radius:	0;
		border-radius:			0;
	}
}
@media only screen /* Smartphone Horizontal */ 
and (max-width : 350px) 
{
	
}