/* Reset Honeycrisp's html/body/main background + spacing
   meant for the live app's toolbar layout */
html, body, main {
  background: white;
  margin: 0;
}

.pdf-packet {
  margin: 30px 35px;
  font-family: "Source Sans 3", -apple-system, sans-serif;
  font-size: 14px;
  line-height: normal;

  p {
    margin-bottom: 1rem;
  }
}

.header {
  color: #285f53;
  font-weight: bold;

  p {
    margin-bottom: 0;
    /* ("SUMMARY OF" / "DETAILS ABOUT") is exempt from the 14px body unification
       above and this keeps its original size. */
    font-size: 16px;
  }
  h1 {
    margin-top: 0;
    font-size: 32px;
    line-height: 1.2;
  }
}

.packet-details .header {
  p {
    font-size: 1.4rem;
  }
  h1 {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
}

.grey-box {
  padding: 25px;
  background-color: #F7F5F4;

  ul {
    list-style: disc;
    padding-left: 20px;
  }
}

.section-header {
  text-decoration: underline;
}

.list-item--note {
  font-size: 10px;
  font-style: italic;
  color: #5F5854;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #034e46;

  h3 {
    margin: 0;
    color: #034e46;
  }
}

.info-box {
  background-color: #F7F5F4;
  border: 1px solid #D8D3CE;
  border-radius: 4px;
  padding: 0 1.5rem;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.5rem;
  row-gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #D8D3CE;

  &:last-child {
    border-bottom: none;
  }
}

.info-field {
  display: flex;
  gap: 0.4rem;
  align-items: baseline;
}

.info-label {
  font-weight: 700;
  white-space: nowrap;
}

.electronic-signature {
  font-family: "Allura", cursive;
  font-size: 20pt;
  line-height: 1;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist-item {
  display: flex;
  /* for multiline line checklist items the checkbox appears closer to the first line */
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;

  /* forces the checkboxes to shrink for multiline items. */
  svg {
    flex-shrink: 0;
  }
}

.checklist-item__detail {
  margin-left: 2.7rem;
  padding-bottom: 0.6rem;
  font-weight: 700;
}

.checklist-item__detail--regular {
  font-weight: 400;
}

.checklist--nested {
  margin-left: 2.7rem;
}
