﻿.print-only {
    display: none;
  }

@media print {

  @page {
      
    }
    body {
        margin: 1.5vmin;
    }
  
  a[href]:after {
    content: none !important;
  }

  .td {
      font-size: 10px;
  }

  .checkout.receipt #header, .checkout.receipt #footer, .no-print {
      display: none;
  }

  .print-only {
    display: block !important;
  }

  .no-print {
    display: none !important;
  }
}