.invoice-recieved {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .invoice-recieved h6 {
        text-transform: capitalize;
    }

        .invoice-recieved h6 span {
            display: block;
            font-weight: 400;
            margin-top: 10px;
        }

.invoice-details li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

    .invoice-details li:last-child {
        margin-bottom: 0px;
    }

    .invoice-details li h6 {
        line-height: 26px;
        white-space: nowrap;
    }

        .invoice-details li h6 small {
            font-size: 14px;
            font-weight: 400;
            margin-left: 3px;
        }

    .invoice-details li p {
        width: 250px;
        text-align: right;
    }

.table-scroll {
    padding: 35px;
    border-radius: 8px;
    background: var(--white);
}

.back-home {
    text-align: center;
}

    .back-home a {
        margin-top: 10px;
        font-weight: 500;
        color: var(--primary);
    }

        .back-home a:hover {
            text-decoration: underline;
        }
        .cs-invoice_btns {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.cs-invoice_btns .cs-invoice_btn:first-child {
    border-radius: 5px 0 0 5px;
}
.cs-invoice_btn.cs-color1 {
    color: #111111;
    background: rgba(42, 209, 157, 0.15);
}
.cs-invoice_btn {
    display: inline-flex;
    align-items: center;
    border: none;
    font-weight: 600;
    padding: 8px 20px;
    cursor: pointer;
}
.cs-invoice_btn.cs-color2 {
    color: #fff;
    background: #2ad19d;
}
.cs-invoice_btn {
    display: inline-flex;
    align-items: center;
    border: none;
    font-weight: 600;
    padding: 8px 20px;
    cursor: pointer;
}
.cs-invoice_btn svg {
    width: 24px;
    margin-right: 5px;
}
.cs-invoice_btn.cs-color2 {
    color: #fff;
    background: #2ad19d;
}
@media (max-width: 767px) {
    .invoice-recieved {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .invoice-recieved h6 {
            margin-bottom: 25px;
            margin-right: 25px;
        }
}
