
/* * product */ 
.prod ul.products {
	
	clear: both;
    list-style: none;
    padding: 0;
	float: left;
	width: 100%;
	box-sizing: border-box;
}

.prod ul.products li {
	float: left;
	padding: 0 15px;
	box-sizing: border-box;
	width: 25%;
	position: relative;
	text-align: center;
	margin-bottom: 50px;
}

.prod ul.products li > a {
	text-decoration: none;
	display: inline-block;
	position: relative;
	width: 100%;
}
.prod .button.product_type_simple.add_to_cart_button {
	background-color: #1daaa3;
	border: 1px solid #1daaa3;
	color: #fff;
	display: inline-block;

	font-weight: 500;
	font-size: 13px;
	padding: 16px 23px;
	margin-bottom: 10px;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
.prod .button.product_type_simple.add_to_cart_button:hover {
	border-color: #1daaa3;
	background-color: transparent;
	color: #1daaa3;
}
.prod .hover-content {
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0 auto;
	top: 30%;
	opacity: 0;
	-webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}
.prod ul.products li.product .product-img::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 70px;
	display: inline-block;
	background-color: transparent;
	-webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}
.prod ul.products li.product:hover .product-img::before {
	background-color: rgba(0,0,0,0.7);
}
.prod ul.products li.product:hover .hover-content {
	opacity: 1;
}
.prod .hover-content i {
	color: #fff;
	font-size: 15px;
	padding-right: 12px;
}
.prod .hover-content span {
	display: block;
}
.prod .hover-content span a.icons > i {
	background-color: #fff;
	color: #1daaa3;
	display: inline-block;
	width: 50px;
	height: 50px;
	padding-right: 0;
	line-height: 50px;
	text-align: center;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
.prod .hover-content span a.icons > i:hover {
	color: #222;
}

.prod ul.products li.product .price {
    color: #888;

    display: block;
	font-size: 16px;
	margin-top: 3px;
	text-transform: lowercase;
}
.prod ul.products li.product .amount > span {
	color: #f483e3;	
	font-weight: 700;
}
.prod span.new-product {
	padding: 10px 20px;
    font-weight: 700;
    position: absolute;
    text-align: center;
    margin: 0;
    background-color: #1daaa3;
    color: #fff;
    font-size: 11px;
	letter-spacing: 0.77px;
    -webkit-font-smoothing: antialiased;
	text-transform: uppercase;
	
}
.prod ul.products li.product .new-product {
	top: 15px;
    right: auto;
    left: 15px;
}
.prod span.onsale {
    padding: 10px 20px;
    font-weight: 700;
    position: absolute;
    text-align: center;
    margin: 0;
    background-color: #ff7a5f;
    color: #fff;
    font-size: 11px;
	letter-spacing: 0.77px;
    -webkit-font-smoothing: antialiased;
	text-transform: uppercase;
	
}
.prod ul.products li.product .onsale {
    top: 15px;
    right: 15px;
    left: auto;
}

.prod ul.products li a h3 {
	color: #222;
	font-size: 13px;
	font-weight: 500;
	
	letter-spacing: 0.91px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.prod ul.products li.product .price .amount {
	color: #ff7a5f;
	
	font-weight: 700;
	letter-spacing: 0.32px;
}



/* - min-width: 768 to max-width: 991 */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.prod ul.products {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}


	.prod ul.products li {
		width: 33%;
	}
}

/* - max-width: 991 */
@media (max-width: 991px) {
	.prod ul.products li.product {
		max-width: 270px;
		/*display: block;*/
		margin: 0 auto 30px;
	}
	


/* - max-width: 767 */
@media (max-width: 767px) {
	
	.prod ul.products {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	 
	.prod ul.products li {
		width: 33%;
	}

}

/* - max-width: 639 */
@media (max-width: 639px) {
	
	.prod ul.products li {
		width: 50%;
	}

}

/* - max-width: 480 */
@media (max-width: 480px) {

	.prod ul.products li {
		width: 100%;
		display: block;
		float: none;
		max-width: 290px;
		margin-left: auto;
		margin-right: auto;
	}

}





