.invoices-tbl {
    width: 100%;
    border: none;
    border-collapse: collapse;
    font-size: 11px;
    margin-top: 20px;
}
.invoices-tbl th, .invoices-tbl td {
    padding: 4px;
}
.invoices-tbl tr {
    border: none;
}
.invoices-tbl th {
    background-color: #ddd;
    border-bottom: 1px solid #888;
}
.invoices-tbl .invoice-row {
    background-color: #efefef;
    border-bottom: 2px solid white;
}
.invoices-tbl .invoice-row .webpaybtn {
    max-height: 28px;
    padding: 8px;
    font-size: 11px;
    line-height: 11px;
    font-weight: normal;
}
.invoices-tbl .invoice-row .toggle {
    height: 20px;
    width: 20px;
    background-color: #ccc;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 20px;
}
.invoices-tbl .invoice-row .toggle:before {
    content: '+'
}
.invoices-tbl .invoice-row .toggle.open:before {
    content: '-'
}
.invoices-tbl .invoice-details-row.open {
    display: table-row;
    border-bottom: 4px solid white;
}
.invoices-tbl .invoice-details-row {

    overflow: hidden;
    display: none;
}
.invoices-tbl .details-tbl {
    width: 100%;
}
.invoices-tbl .details-tbl th,
.invoices-tbl .details-tbl td {
    border: 1px solid #ccc;
}
#invoicing_block input:disabled {
    background-color: lightgray;
}
