/**
 * @author Dana Campbell
 * @email danacam28@gmail.com
 * @create date 2021-09-07 12:10:25
 * @modify date 2021-10-12 14:04:01
 * @desc [ShortGoods Invoice]
 */


:root {
    --black: #000;
    --eerie-black: #131515;
    --white: #fff;
    --cultured-2: #E9ECEF;
    --mint-green: #ACFFB7ff;
    --eton-blue: #8BCC92ff;
}

* {
	margin: 0;
	padding: 0;
    font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
	scroll-behavior: smooth;
    letter-spacing: 0.5px;
    color: var(--eerie-black);
	font-weight: 300;
}
a {
    text-decoration: none;
    color: var(--eerie-black);
}

h2{
    font-size: 1.2rem;
    font-weight: 500;
}

table {
    border-collapse: collapse;
}

address {
    font-style: normal;
}
body{
    padding: 2rem 0rem;
}

/* INVOICE LIST CONTAINER */
.invoice-list-container {
    width: 80%;
    margin: auto;
    background: var(--white);
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.list-header {
    background: var(--mint-green);
    text-align: center;
    padding: 0.3em;
}
.invoice-list table {
    margin: 0em 3%;
}
.invoice-list table td{
    padding: 0.8rem 0.2rem;
}
/* Notes */
.note2 {
    text-align: center;
    padding: 1rem 0rem;
    margin: 3rem 4% 0rem 4%;
    border-top: 2px solid var(--cultured-2);
}
/* INVOICE LIST CONTAINER */
