.subfamilyWrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.subfamily {
  width: calc(33.33% - 25px);
  margin: 0 12px 25px 12px;
  /*flex: 0 0 calc(~"33.33% - 25px");*/
  padding: 25px;
  background: #F5F5F5;
}
.subfamily .image img {
  max-width: 100%;
}
.productLine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.quantity {
  max-width: 35%;
  display: flex;
  justify-content: space-between;
}
.quantityDisplay {
  width: 100%;
  text-align: center;
}
.quantity input[type="text"] {
  width: auto;
  max-width: 49%;
}
@media (max-width: 1200px) {
  .quantity {
    max-width: 49%;
  }
}
@media (max-width: 992px) {
  .subfamily {
    width: 50%;
    flex: 0 0 50%;
  }
}
@media (max-width: 768px) {
  .subfamily {
    width: 100%;
    flex: 0 0 100%;
  }
}
.ieGoToHell .brubeck .quantity {
  max-width: 45%;
}
