

/* INVOICE STYLES */
/* ============== */

.invoice-wrapper {
    min-width: 900px;
    padding-top: 120px;
    margin-bottom: 50px;
    box-sizing: border-box;
}

.invoice-control {
    text-align: right;
}

.inv-li-col-1 {
    display: flex;
    align-items: center;
}

.invoice-icon {
    width: 60px;
    margin-right: 15px;
}

.sub-col-1 {
    text-align: left;
}

.sub-col-1 span {
    display: block;
}

.sub-col-1 a {
    font-size: 20px;
    text-decoration: none;
}



.invoice-btn {
    display: inline-flex;  /* Make it only as wide as its content */
    align-items: center;
    text-decoration: none;
    background: #b4e8b8;
    font-family: "Inconsolata", monospace;
    font-weight: 800;
    font-size: 18px;
    color: #1c7a44;
    padding: 15px 15px;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid #a3cca7;
}

.invoice-btn:hover {
    background: #b5fdbb;
}

.invoice-icon-btn {
    width: 20px;
    margin-right: 5px;
    filter: brightness(0) saturate(100%) invert(33%) sepia(98%) saturate(354%) hue-rotate(93deg) brightness(94%) contrast(91%);
}

.invoice-item {
    background: #fff;
    text-align: center;
    padding: 20px;
    display: flex;
}



.invoice-item h1 {
    font-size: 25px;
}

.invoice-item h1 > a {
    text-decoration: none;
    color: #4c4c4c;
    display: inline-block;
    margin: 5px 0;
}

.invoice-action a {
    display: inline-block;
    color: #0ca734;
    padding: 0 10px 0 10px;
    text-decoration: none;
}

.invoice-item h1 > a:hover {
    color: red;
}

/* INVOICE HEADER */
/* ============== */
.invoice-header {
    text-align: center;
    margin-bottom: 30px;
}

.invoice-header h1 {
    font-size: 30px;
    margin-bottom: 10px;
}

.invoice-address,
.telephone {
    font-size: 18px;
    margin-bottom: 10px;
}

.invoice-title {
    display: block;
    margin-top: 20px;
    font-size: 30px;
    /* background: blue; */
}

.invoice-cta {
    text-align: center;
    margin-top: 50px;
}



/* INVOICE FOOTER */
/* ============== */
.invoice-footer {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    /* background: red; */
}


.invoice-footer h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.invoice-number,
.invoice-date {
    display: block;
}


.prep-footer {
    margin-top: 70px;
    text-align: right;
}

.prep-by {
    text-align: center;
    display: inline-block;
}

.prep-by span {
    display: block;
}

.prep-name {
    border-bottom: 1px solid #000;
    padding: 0 100px 5px 100px;
    margin-bottom: 3px;
}




/* INVOICE TABLE */
/* ============= */

table.invoice-table {
    width: 100%;
    border-collapse: collapse;
	border-spacing: 0;
}

table.invoice-table th,
table.invoice-table td {
    border: 1px solid #000000;
}

table.invoice-table th {
    font-weight: 600;
    font-size: 15px;
    font-family: 'Google Sans Bold', sans-serif;
}

.ith {
    text-align: center;
    padding: 8px 0;
    background: #f7ffcc;
}   

.itd {
    padding: 5px 3px;
}

.ittr { text-align: right; }
.ittc { text-align: center; }

.invoice-total {
    padding: 15px 3px;
    vertical-align: middle;
    text-align: right;
    font-family: 'Google Sans Bold', sans-serif;
}

.invoice-update-action {
    display: flex;
	align-items: center;
	justify-content: center
}

.invoice-update-action img {
    width: 15px;
	filter: invert(33%) sepia(17%) saturate(2254%) hue-rotate(314deg) brightness(102%) contrast(81%);
	transition: all 0.3s ease;
}

.invoice-update-action img:hover {
    filter: brightness(0) saturate(100%) invert(34%) sepia(100%) saturate(3762%) hue-rotate(353deg) brightness(105%) contrast(87%);
}




.returned-item {
    background-color: #f0e1e1; /* light red or any color you want */
}