@charset "UTF-8";

  body {
    background-color: #efefef;
  }

  #container {
  display: grid;
  box-sizing: border-box;
  padding: 30px;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(8, 1fr) 1.5fr;
  grid-gap: 2px;
  width: 800px;
  height: 800px;
  margin: 100px auto 25px auto;
  background-color: #fff;
}

#container>* {
  display: flex;
  font-family: Helvetica, sans-serif;
  font-size: 12px;
  line-height: 12px;
  color: #333;
  flex-direction: column;
  background-color: #ff0;
}

#container>#brand {
  grid-column: 1 / 8;
  grid-row: 1;
  background-color: #000000;
  color: #ffffff;
  padding: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  line-height: 14px;
  justify-content: flex-start;
  align-items: flex-start;
}

#container>#brand .brand-name {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -2px;
}

#container>#brand .brand-light {
  font-weight: 200;
  font-size: 12px;
}

#container>#weight {
  grid-column: 8 / 11;
  grid-row: 1;
  background-color: #333333;
  color: #ffffff;
  padding: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  line-height: 14px;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: right;
}

#container>#weight .weight-bold {
  font-weight: bold;
}

#container>#imported {
  grid-column: 1 / 4;
  grid-row: 2 / 6;
  background-color: #6a9ac7;
  color: #ffffff;
  padding: 10px;
  font-family: 'Minion Pro', serif;
  font-size: 13px;
  line-height: 12px;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}

#container>#imported em {
  font-style: italic;
  font-weight: normal;
}

#container>#imported strong {
  font-weight: bold;
}

#container>#imported strong em {
  font-style: italic;
  font-weight: bold;
}

#container>#nutrition-facts {
  grid-column: 4 / 8;
  grid-row: 2 / 6;
  background-color: #005a9c;
  color: #ffffff;
  padding: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  line-height: 13px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#container>#nutrition-facts .fact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: flex-start;
}

#container>#nutrition-facts .fact-row.header {
  font-weight: bold;
  font-size: 12px;
  padding-bottom: 2px;
  margin-bottom: 2px;
}

#container>#nutrition-facts .fact-row.bold {
  font-weight: bold;
}

#container>#nutrition-facts .fact-row.footer {
  font-size: 10px;
  font-style: italic;
  margin-top: 2px;
  padding-top: 2px;
}

#container>#nutrition-facts .fact-label {
  text-align: left;
}

#container>#nutrition-facts .fact-value {
  text-align: right;
  font-weight: bold;
}

#container>#questions {
  grid-column: 8 / 11;
  grid-row: 2 / 6;
  background-color: #6a9ac7;
  color: #ffffff;
  padding: 10px;
  font-family: 'Minion Pro', serif;
  font-size: 13px;
  line-height: 16px;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  font-style: italic;
}

#container>#questions strong {
  font-weight: bold;
}

#container>#ingredients {
  grid-column: 1 / 9;
  grid-row: 6 / 8;
  background-color: #f5e6d3;
  color: #333333;
  padding: 10px;
  font-size: 12px;
  line-height: 14px;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

#container>#ingredients .ingredients-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

#container>#ingredients .ingredients-body {
  font-family: 'Minion Pro', serif;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 5px;
}

#container>#ingredients .ingredients-allergy {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  line-height: 14px;
  margin-top: auto;
}

#container>#ingredients .ingredients-allergy strong em {
  font-style: italic;
  font-weight: bold;
}

#container>#blank-box {
  grid-column: 9 / 11;
  grid-row: 6 / 8;
  background-color: #333333;
}

#container>#ingredients-fr {
  grid-column: 4 / 11;
  grid-row: 8 / 10;
  background-color: #f5e6d3;
  color: #333333;
  padding: 10px;
  font-size: 12px;
  line-height: 14px;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

#container>#ingredients-fr .ingredients-title-fr {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

#container>#ingredients-fr .ingredients-body-fr {
  font-family: 'Minion Pro', serif;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 5px;
}

#container>#ingredients-fr .ingredients-allergy-fr {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  line-height: 14px;
  margin-top: auto;
}

#container>#ingredients-fr .ingredients-allergy-fr strong em {
  font-style: italic;
  font-weight: bold;
}

#container>#blank-box-2 {
  grid-column: 1 / 4;
  grid-row: 8 / 10;
  background-color: #333333;
}

#info {
  font-family: Helvetica, sans-serif;
  font-size: 12px;
  line-height: 15px;
  color: #555;
  width: 800px;
  margin: 0 auto 100px auto;
}
