/*Invoices Table Styling*/
.invoices {
    width: 100%;
    margin-top: 15px;
    font-family: sans-serif;
    border-collapse: collapse;
}
.invoices td {
    text-align: center;
    animation: 0s color;
}

.invoices tr:nth-child(even){
    background-color: #f2f2f2;
}

.invoices tr:hover {
    background-color: #ddd;
}
.invoices td, .invoices th {
    border: 1px solid #ddd;
    padding: 8px;
}

.hidden {
    display: none;
}

.invoice-container {
    width: 2480px;
    height: 3508px;
}

.send-again-button {
    float: right;
    border: none;
    height: 25px;
    cursor: pointer;
}

select[name='templates'] {
    height: 25px;
    width: 100%;
    text-indent: 3.5px;
    border: navajowhite;
}

.show-button {
    width: 100%;
    border: 1px solid gray;
    height: 27px;
    cursor: pointer;
}

.loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
    margin: auto;
}

.loader-div {
    margin-top: 25px;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
