.invoice-logo-pathf {
  width: 100px;
}

.pf-invoice-box .inv-top-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  border-bottom: 2px solid #23456b;
  padding-bottom: 20px;
}

.pf-invoice-box .left-cont-pf {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
}

.pf-invoice-box .right-cont-pf {
  width: 50%;
  align-items: end;
  display: flex;
  justify-content: end;
  flex-direction: column;
}

.pf-invoice-box h2.head-title-pf {
  font-size: 26px;
  font-weight: 600;
  font-family: "Poppins";
  line-height: 32px;
  color: #23456b;
}

.pf-invoice-box h4.head-site-title-pf {
  padding-top: 10px;
  font-size: 18px;
  font-family: "Poppins";
  line-height: 30px;
  font-weight: 600;
  color: #23456b;
  padding-bottom: 10px;
}

.pf-invoice-box p.inv-list-pf {
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-size: 14px;
  line-height: 24px;
  font-family: poppins;
}

.pf-invoice-box p.inv-list-pf strong {
  color: #23456b;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins";
  line-height: 24px;
}

div#invoice-container {
  border: 1px solid lightgray;
  padding: 30px 30px;
  box-shadow: 0px 0px 10px lightgrey;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.invoice-logo-pathf-mob {
  display: none;
}
@media (max-width: 767px) {
  .pf-invoice-box .invoice-logo-pathf {
    display: none;
  }
  .pf-invoice-box .invoice-logo-pathf-mob {
    display: block;
    width: 70px;
  }
  .pf-invoice-box .inv-top-header {
    flex-direction: column;
    gap: 0px;
  }
  .pf-invoice-box .left-cont-pf {
    width: 100% !important;
  }
  .pf-invoice-box .right-cont-pf {
    width: 100% !important;
  }
  .right-cont-pf {
    align-items: start !important;
  }
  .pf-invoice-box p.inv-list-pf {
    font-size: 10px;
    line-height: 20px;
    width: 100%;
  }

  .pf-invoice-box p.inv-list-pf strong {
    font-size: 10px;
    line-height: 20px;
  }
  .pf-invoice-box h2.head-title-pf {
    font-size: 20px !important;
    line-height: 30px !important;
  }
  .pf-invoice-box h4.head-site-title-pf {
    font-size: 16px !important;
    line-height: 24px !important;
    padding-top: 5px !important;
  }
}
@media print, screen {
  #invoice-container {
    background-color: #ffffff !important;
  }
}