@charset "utf-8";
/* CSS Document */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

[data-match-height]{
	background-color: white;
	padding:0 15px;
	display: inline-block;
	margin:20px 0 40px;
	vertical-align: top;
	text-align: left;
	border-radius: 3px;
	line-height: 22px;
}

ul.product_list {
  display: block;
  float: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.product_item {
  display: inline-block;
  background: #fff;
  position: relative;
  width:33%;
}

.product_image {
  position: relative;
  overflow: hidden;
  text-align:center;
  height:300px;
  width:100%;
  float:left;
  margin-bottom:15px;
  
}
.product_image a {
  display: block;
}
.product_image img {
  display:inline-block; /*max-height:100%;*/ /*max-width:100%;*/ /*width:100%;*/
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
  max-width:100%;
}
.product_image img:hover {
  -o-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

@media screen and (max-width: 991px) {
[data-match-height]{ width:49%;}
/**.product_image{ height:150px;}**/
}

@media screen and (max-width: 767px) {
/**.product_image{ height:200px;}**/
}

@media screen and (max-width: 550px) {
[data-match-height]{ float:none; width:60%;}
ul.product_list{ text-align:center; float:none;}
}

@media screen and (max-width: 550px) {
[data-match-height]{ float:none; width:80%;}
}

@media screen and (max-width: 400px) {
[data-match-height]{ float:none; width:90%;}
}

@media screen and (max-width: 350px) {
[data-match-height]{ float:none; width:100%;}
}