/* CSS Document */


/*com_product_list_2:start*/




.com_product_list_2{
	margin: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

 .product_item{
	white-space:normal;
	width: 25%;
}

 .product_item_inner{
	position:relative;
	flex-shrink:0;
	border-radius: 0;
	margin: 20px;
	border: 1px solid #f0f0f0;
}

/*images*/

.product_item__image_wrapper{
	height: 200px;
	overflow: hidden;
	position: relative;
}
.product_item__image_wrapper a{
	display: block;
}

.image_wrapper_inner{
	margin: auto;
	height: 100%;
	width: auto;
	position: relative;
}
.product_item__primary_image{
	position: absolute;
	z-index: 50;
	top: 0;
	left: 0;
	transition: 0.5s ease;
}
.product_item__second_image{
}

.image_wrapper_inner img{
	height: 200px;
	width: 100%;
	object-fit: cover;
}

@media screen and (min-width: 680px){
	
	.product_item__image_wrapper:hover .pop_up{
	bottom: 0px;
	transition: .2s ease;
}
	
	.product_item__image_wrapper:hover .product_item__primary_image{
	opacity: 0;
}
}


/*Pop up on hover*/
.pop_up {
	display: flex;
	flex-direction: row;
	height: 45px;
	width: 100%;
	position: absolute;
	z-index: 105;
	bottom: -50px;
	left: 0;
	transition: .2s ease;
}

.pop_up .order_button{
	color: white;
	padding: 0px 0px 0px 20px;
	background: #B89771;
	display: flex;
	flex-grow: 2;
	margin: auto;
	align-items: center;
	height: 100%;
	cursor: pointer;
	font-weight: 500;
}

.pop_up .order_button:hover{
	background: #886741;
}


/*Product information*/

.product_item__info{
	display:flex;
	padding: 15px 25px;
	text-align: center;
	justify-content: center;
}

.product_item__category{
	display:block;
	margin-bottom:6px;
	font-size:11px;
	text-transform:uppercase;
	color: #959595;
}

.product_item__title{
	display:block;
	line-height:1.55;
	margin-bottom:12px;
	color: black;
}
.cta_product_details{
	font-size: 12px;
	font-weight: 500;	
	text-transform:uppercase;	
	color: black;	
}
.cta_product_details:hover{
	text-decoration: underline;	
}

/*Tablet Large View*/
@media screen and (max-width: 1000px){
	.product_item{
	white-space:normal;
	width: 33%;
}
}

/*Tablet small View*/
@media screen and (max-width: 750px){
	.product_item{
	white-space:normal;
	width: 50%;
}
}

/*Mobile View*/
@media screen and (max-width: 550px){

	.com_product_list_2{
	flex-direction: column;
	flex-wrap: nowrap;
	border-top: none;
	border-left: none;
	padding: 50px 0px 0px 0px;	
}

 .product_item{
	padding:20px;
	width: 100%;
}
 .product_item .product_item_inner{
	margin: 0px;
}


}


/*com_product_list_2:end*/

