.invoice-show {
  width: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 3px;
}
.invoice-show .main-info {
  border: 1px solid #ddd;
  padding: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 13px;
}
.invoice-show .main-info .logo {
  width: 115px;
  height: auto;
}
.invoice-show .main-info div h6 {
  font-size: 14px;
  color: #777;
}
.invoice-show .main-info div span {
  font-size: 13px;
  color: #888;
}
.invoice-show .invoice-items {
  margin: 10px 0;
  text-align: right;
}
.invoice-show .invoice-items td {
  padding: 7px 0;
  border-top: #eee 1px solid;
}
.invoice-show .invoice-items .total td {
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  font-weight: 700;
}

@media print {
  .not-print {
    display: none !important;
  }

  .invoice-show .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .invoice-show .invoice-items {
    direction: rtl !important;
    text-align: initial;
  }
}