$black: #000000;

.print-only {
  display: none;
}

@media print {
  html {
    font-size: 12px;
  }

  body {
    padding-bottom: 0;
  }

  .box {
    background: none;
    box-shadow: none;
  }

  // scss-lint:disable QualifyingElement
  h2.subtitle {
    font-weight: bold;
    font-size: 18px;
  }
  // scss-lint:enable QualifyingElement

  // scss-lint:disable ImportantRule
  .notification {
    border: 1px solid $black;
    color: $black !important;
  }
  // scss-lint:enable ImportantRule

  .print-button,
  .site-header,
  .footer {
    display: none;
  }

  .print-only {
    display: block;
  }

  .review-section:last-child {
    margin-bottom: 0;
  }
}
