body{
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
}
*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
.invoice__page{
    width: 210mm;
    display: flex;
    background-color: white;
    padding: 5mm;
    font-family: Arial, Helvetica, sans-serif;
    /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25); */
    font-size: 13px;
}
.invoice__border{
}
.invoice__title{
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    color: #353535;
    margin-bottom: 15px;
}
.invoice__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.invoice__logo{
    width: 70mm;
}
.invoice__top__text{
    text-align: right;
}
.invoice__top__text p{
    margin: 6px 0;
}
.invoice__info{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 15px;
}
.invoice__info__left{
    width: 48%;
}
.invoice__info__left strong,
.invoice__info__left p{
    margin: 6px 0;
}
.invoice__info__right{
    width: 48%;
}
.invoice__info__table{
    width: 100%;
    border: 2px solid black;
}
.invoice__info__table tr{}
.invoice__info__table tr th{
    text-align: left;
    border-bottom: 2px solid black;
    padding: 6px;
    background-color: #D1D2D6;
}
.invoice__info__table tr td{
    border: 1px solid white;
    background-color: #e8e8e8;
    padding: 6px;
}
.invoice__table{
    margin-bottom: 15px;
}
.invoice__table tr{
    border: 1px solid black;
}
.invoice__table tr th{
    text-align: left;
    padding: 6px;
    color: #53ADBB;
}
.invoice__table tr td{
    padding: 6px;
}
.invoice__totals{
    width: 48%;
    margin-left: auto;
    margin-bottom: 15px;
}
.invoice__totals tr{}
.invoice__totals tr th{
    text-align: left;
    padding: 6px;
    background-color: #D1D2D6;
    text-transform: uppercase;
}
.invoice__totals tr td{
    padding: 6px;
    background-color: #e8e8e8;
}
.text__bold{
    font-weight: bold;
}
.invoice__totals tr td:last-child{
    text-align: right;
}
.invoice__bot{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.invoice__bot__left{
    width: 52%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}
.invoice__bot__left__heading{
}
.invoice__bot__left__heading p{
    margin: 6px 0;
    font-size: 14px;
}
.invoice__bot__left__content{
    font-size: 28px;
}
.invoice__bot__right{
    width: 48%;
    line-height: 1.5;
    text-align: center;
    background-color: white;
    color: black;
    padding: 30px 0;
}
.invoice__sign{
    text-align: center;
    margin-top: 15px;
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
  }
@media print {
    * {
      -webkit-print-color-adjust: exact !important;
      /*Chrome, Safari */
      color-adjust: exact !important;
      /*Firefox*/
    }
  
    .form9 {
      border: 0;
      padding: 0;
    }
  
  
  
    htmlpageheader {
      margin-bottom: 0;
      padding-bottom: 0;
    }
  }
  @page {
    size: 210mm 297mm;
    footer: html_footer;
    header: html_header;
    /* 'em' 'ex' and % are not allowed; length values are width height */
    margin: 5%;
    /* <any of the usual CSS values for margins> */
    /*(% of page-box width for LR, of height for TB) */
    margin-header: 4%;
    /* <any of the usual CSS values for margins> */
    margin-footer: 3.5%;
    /* <any of the usual CSS values for margins> */
    /* background: url(vien2.png); */
    background-image-resize: 6;
    -webkit-print-color-adjust: exact !important;
  }