
/*************************************************************/

/* product archive */

.woocommerce-result-count
{
	/*display: none;*/
}

/**********/

.products .product
{
	text-align: center;
}
.products .product > a
{
	display: block;
}
.products .product img 
{
	width: 100%;
	border: solid 1px #d1d1d1;
}

.products .product .thumbnail
{
	//display: block;
	position: relative;
}
.products .product .thumbnail .overlay
{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	
	background-color: rgba(209,209,209, 0.5);
	
	-webkit-transform:scale(0);
	transition: .3s ease;
}
.products .product a:hover .thumbnail .overlay
{
	transform: scale(1);
}
.products .product .thumbnail .overlay > *
{
	position: absolute;
    top: 50%;
	left: 50%;
    margin: -21px 0 0 -21px;
}


.products .product .post-title 
{
	color: #3a3a3a;
	text-decoration: none;
	
	font-size: 16px;
	font-weight: bold;
}
.products .product a:hover .post-body .post-title 
{
	color: #ff0a89;
	text-decoration: none;
}

/*************************************************************/

/* product single */

.single-product ol
{
	margin-top: 5px;
}
.single-product ol li
{
	border: solid 1px #d1d1d1;
	width: 24% !important;
	margin-right: 1% !important;
	margin-top: 5px !important;
}

/*************************************************************/