.nutrition-table {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    max-width: 740px;
    margin: 20px auto;
    border: 1px solid black;
  }
  .nutrition-table__column {
    flex: 1;
    border-right: 1px solid black;
  }
  .nutrition-table__column:last-child {
    border-right: none;
  }
  @media screen and (max-width: 740px) {
    .nutrition-table__column {
      flex: 0 0 100%;
    }
  }
  .nutrition-table__head {
    padding: 8px 0;
    background: #474b56;
    font-weight: bold;
    font-size: 14px;
    color: white;
    text-align: center;
    text-transform: uppercase;
  }
  .nutrition-table__content {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    font-weight: bold;
    color: black;
  }
  .nutrition-table__number {
    width: 60px;
  }