@media print {
    /* All your print styles go here */
    #header,
    #footer,
    #nav,
    .top-panel,
    .input-wrapper,
    .keyboard,
    .basket.del,
    .returnCache,
    .input-group input[type="button"]
    {
      display: none !important;
    }

    .input-group input[type="number"] {
        outline: none;
        border: none;
        width: inherit;
    }

    main {
        color: #000;
        font-size: 12px;
        font-family: Arial, Helvetica, sans-serif;
        display: flex;
        flex-flow: column;
    }
    .print {
        display: block;
    }

    .print-header {
        text-align: center;
    }
    .print-colum-name {
        display: flex;

        span:first-of-type {
            display: flex;
             flex-wrap: nowrap;
             flex-direction: row;
             width: 20%;
             align-items: center;
         }

         span:last-of-type {
            justify-content: end;
            padding-right: 5px;
         }

        span {
           display: flex;
            flex-wrap: nowrap;
            flex-direction: row;
            width: 40%;
            align-items: center;
        }
    }

    .basket.quan {
        padding-right: 0;
        width: 20%;
    }

    .basket.name {
        width: 50%;
    }

    .basket.name, .basket.price {
        padding: 0;
    }

    .basket.price {
        display: flex;
        justify-content: flex-end;
    }

    .total-wrapper {

        order: 2;
        font-weight: 600;
        font-size: 16px;
    }

    .print-footer {
        order: 99;
    }
  }