/*
therevox style-printmod.css

this modifies the existing CSS only when printing pages. 
 - useful for invoice printing

 
*/


body {
    background: #ffffff;
}

#header {
    display: none;
}

#footer {
    display: none;
}

#wrapper {
    background: #ffffff;
}

#content {
    background: #ffffff;
    color: black;
}

table,
td,
tr {
    background: #ffffff;

}

/* INVOICE SPECIFIC */


table#receiptaddresses {
    background-color: unset;
    margin: .1em 50px 2em 50px;
}

table#receiptaddresses td {
    border: 0px;
    padding: 0em 3em 0em 1em;
}

table#carttable tr.cartitemrow td {
    border: 0px;
    padding: 0em 3em 0em 0;
}

table#carttable tr.carttotalrow td {
    border: 0px;
    padding: 0em 3em 0em 0;
    font-weight: 800;
}