.search-product {
  width: calc(25% - 20px);
  max-width: 100px;
  margin-right: 20px;
  margin-bottom: 28px;
}
.search-product__wrapper {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.search-product__image {
  background-color: #fff;
  border: solid 2.5px #606060;
  overflow: hidden;
}
.search-product__image img {
  max-height: 95px;
  display: block;
}
.search-product__title {
  font-family: 'DINCondensed', sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  letter-spacing: 0.8px;
  margin-top: 8px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
.search--default .search-product__title {
  color: #000;
}
@media (max-width: 768px) {
  .search-product {
    width: calc(50% - 20px);
    float: left;
  }
  .search-product__wrapper {
    display: block;
    overflow: hidden;
  }
}
