.fd_NotAuthorized {
    background: #d61720a8;
}

.fd_facture_container {

    .doNotFound {
        display: none;
    }

    table {
        margin-left: 20px;
        tbody {
            tr {
                td {
                    vertical-align: middle;
                }
            }
        }
    }

    .action-custom-btn, .dl_hs_invoice {
        border-color: #183157;
        background-color: #183157;

        &.already_dl {
            border-color: #186120;
            background-color: #186120;
        }

        &:hover {
            background-color: #CC2028;
            border-color: #CC2028;
        }
    }

    .overlay {
        position: fixed;
        flex-direction: column;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    .loader {
        display: none;
        width: 24px;
        height: 24px;
        border: 3px solid #FFF;
        border-bottom-color: transparent;
        border-radius: 50%;
        box-sizing: border-box;
        animation: rotation 1s linear infinite;
    }
    .moreInvoiceContainer {
        margin-top: 20px;
        padding-top: 15px;
        border-top: #dfdfdf solid 1px;

        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;

            h5 {
                margin: 0;
            }
        }
        .alert {
            font-size: 14px;
        }
    }
}

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