/* Media-friendly CSS class that hides elements which should not appear in print previews */
@media print {
  .no-print,
  .no-print * {
    display: none !important;
    height: 0;
  }
}
