/**
 * Tablet CSS
 */
@media only screen and (max-width: 850px) {
    .column-du_date {
        display: none;
    }
}

/**
 * Mobile CSS
 */
@media only screen and (max-width: 450px) {
    .column-total {
        display: none;
    }
}

/**
 * General CSS
 */
.bim-status {
    display: table;
    width: 70%;
    font-weight: bold;
    text-align: center;
    padding: 5px 10px;
    border-radius: 25px;
}

/*.bina-invoice-manager-table.striped > tbody > :nth-child(odd) {*/
/*  background-color: #f6f7f7;*/
/*}*/
/*table.bina-invoice-manager-table td {*/
/*  padding: 5px;*/
/*}*/
table.bina-invoice-manager-table {
    width: 100%;
    border-collapse: collapse;
}

.bina-invoice-manager-table th, .bina-invoice-manager-table td {
    padding: 10px !important;
    border-bottom: 1px solid #ddd;
}

.bina-invoice-manager-table th {
    background-color: #f2f2f2;
}

.bina-invoice-manager-table tr:hover {
    background-color: #f5f5f5;
}

.bim-status-unpaid {
    color: rgb(255, 50, 50);
    background-color: rgba(255, 50, 50, 0.1);
}

.bim-status-paid {
    color: rgb(68, 211, 167);
    background-color: rgba(68, 211, 167, 0.1);
}

.bim-status-pendding {
    color: rgb(238, 130, 238);
    background-color: rgba(238, 130, 238, 0.1);
}

.bim-status-pre_invoice {
    color: rgb(255, 127, 80);
    background-color: rgb(255 127 80 / 10%);
}

.bim-status-canceled,
.bim-status-refunded,
.bim-status-draft {
    color: rgb(169, 169, 169);
    background-color: rgba(169, 169, 169, 0.1);
}

.bim-border {
    border-right: solid 3px var(--primary-color);
    padding-right: 10px;
}

.bim-items-box {
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.bim-total-box {
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: 10px;
}

.bim-total-box h3 {
    color: white;
}

.bim-dashed {
    border-style: dashed;
    border-top-width: 2px;
}

.bim_price {
    font-weight: bold;
    margin: 0;
}

.bim_discount_price {
    font-size: 12px;
}

.bim-message-container {
    background: beige;
    text-align: center;
    padding: 20px 0;
    border-radius: 5px;
    font-size: 18px;
}

.bim-message-container svg {
    width: 35px;
    vertical-align: middle;
}