.invoice-box {
    max-width: 1000px;

    margin: auto;
    padding: 50px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    line-height: 20px;
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #152444;
}


.invoice-box .section-header-title {
    background-color: #00000010;
    color: #000000;
    padding: 10px;
    font-weight: bold;
    margin-bottom: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: var(--main);
}

.invoice-box .section-title {
    color: #000000;
    font-weight: bold;
    margin-top: 10px;
    color: var(--main);
}

.invoice-box .section-header {
    padding-left: 10px;
}

.company-info-invoice {
    text-align: right;
    font-size: 0.9rem;
    /* line-height: 1.4; */
    max-width: 200px;
    margin-left: auto;
    padding-right: 20px;
    padding-top: 20px;
}
.logo-invoice {
    max-height: 150px;
    /* max-width: 300px; */
    object-fit: contain;
}

.invoice-box .item {
    padding-top: 10px;
    margin-top: 10px;
}
.invoice-box .invoice-details p span .spblue {
    color: #000000;
}
.no-margin p {
    margin-bottom: 0;
}
.minimal-margin p {
    margin-bottom: 2px;
    color: var(--main);
}
.minimal-margin {
    color: var(--main);
}
.invoice-box .tdd{
    color: var(--main);
}
.invoice-box li a i {
    color: var(--main) !important;
}
.invoice-box a i {
    color: var(--main) !important;
}
.section-header-title-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00000010;
    color: #000000;
    padding: 10px;
    font-weight: bold;
    margin-bottom: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.section-header-title-2 .description {
    margin-left: 20px;
}

.section-header-title-2 .amount {
    right: 20px;
}
.item .right {
    position: absolute;
    right: 20px;
}
.item div .left {
    position: absolute;
    left: 75px;
}
ol p span.left {

    left: 20px;
}

.invoice-box .discount {
    margin-bottom: 8px;
}

.left-35 {
    position: absolute;
    left: 200px;
}
.left-25 {
    position: absolute;
    left: 25px;
}
.relative-container {
    position: relative;
}
.left-22 {
    position: absolute;
    left: 22px;
}
.left-15 {
    position: absolute;
    left: 20px;
}

#capture-area-main-invoice {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#capture-area-main-invoice-receipt {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: start;
}


#capture-area {
    display: inline-block;
    background-color: white;
}

ol {
    counter-reset: item-counter;
    list-style-type: none;
    padding: 0;
    padding-bottom: 1rem;
}

ol > div > li {
    counter-increment: item-counter;

}

ol > div > li::before {
    content: counter(item-counter) ". ";
    font-weight: bold;
    position: absolute;

}

ol p {
    margin-left: 30px;
}

@media (max-width: 768px) {
    .invoice-box {
      width: 100%;
      max-width: 100%;
      padding: 20px;
      aspect-ratio: 210 / 297; /* proporção A4 em mm (largura / altura) */
      box-sizing: border-box;
    }
  }
  