.product-image-container {
	 margin:0;
}

.product-thumbs {
	clear: both;
	overflow: hidden;
	padding:3px 0 0 0;
	margin: 0 -5px;
}

.product-thumb {
	float:left;
	margin:0 5px 10px 5px;		
}

.products-grid .product-image-container {
	float: none;
}

.product-thumb a {
	background:#ededed;
	display: block;
	transition: all 0.3s ease 0s;
	position:relative;
}
.product-thumb a img {	 }

.product-thumb a.active,
.product-thumb a:hover {
	background:#ededed;
}
.product-thumb a:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  top: -3px;
  height: 3px;
  background: #edd47c;
		transition: all 0.3s ease 0s;
}
.product-thumb a.active:after,
.product-thumb a:hover:after { width: 100%; left: 0; }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	
	.product-thumb {
			width:34px;
	}
	.product-thumb a img { width:34px; }
	
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
		
	.product-thumb {
			width:35px;
	}
	.product-thumb a img { width:35px; }
	
}
@media only screen and (max-width: 767px) {
		
	.product-thumb {
			width:40px;
	}
	.product-thumb a img { width:40px; }
	
}
@media only screen and (max-width: 362px) {
		
	.product-thumb {
			width:33px;
	}
	.product-thumb a img { width:33px; }
	
}