/* box products */
.box-productsv {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.box-productsv > div {
  width: calc(33% - 20px);
  margin: 10px;
  text-align: center;
  padding: 15px;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
}
#column-left .box-productsv {
  text-align: center;
}
#column-left .box-productsv {
  text-align: center;
}
#column-left + #column-right + #content .box-productsv > div {
  width: 119px;
}
.box-productsv .image {
  display: block;
  margin-bottom: 0;
}
.box-productsv .image img {
  max-width: 100%;
}
.box-productsv .name a {
  color: inherit;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  word-wrap: break-word;
}
.box-productsv .price {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
}
.box-productsv .price-old {
  color: #F00;
  text-decoration: line-through;
}
.box-productsv .price-new {
  font-weight: bold;
}
.box-productsv .rating {
  display: block;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .box-productsv {
    flex-wrap: wrap;
  }
  .box-productsv > div {
    flex: 45% 0 0;
  }
}
@media (max-width: 600px) {
  .box-productsv > div {
    flex: 100% 0 0;
    margin-left: 0;
    margin-right: 0;
  }
}
