.contenedorlistado {
    position: relative;
    display: flex;
    justify-content: center;
}

.listaClientes {
    /* background-color: #e9ecef; */
    background-color: rgba(32, 32, 32, 0.8);
    position: absolute;
    border-radius: 8px 8px 8px 8px;
    z-index: 2;
    color: white;
}

.listaClientes ul {
    padding-inline-start: 0px;
}

.listaClientes li {
    padding: 0px 25px;
    cursor: pointer;
    list-style: none;
}

.listaClientes li:hover {
    background-color: rgb(32, 32, 32);
}

.listaClientes:first-child {
    padding-top: 10px;
}


/************************************ MODAL LOADING ************************************/

div.modal-loading {
    font-family: Ubuntu, Poppins;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100000;
}

div.modal-loading div.modal-content {
    background-color: transparent;
    border: none;
}

div.modal-loading div.modal-content div div.img-loading {
    background-image: url('../img/loading.gif');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 300px;
    max-width: 50%;
}

div.modal-loading div.modal-content div h2 {
    color: #fff;
    font-weight: 400;
}

@media only screen and (max-width: 576px) {
    div.modal-loading div.modal-content div div.img-loading {
        height: 100px !important;
    }
}

/* kpi de informe de contabilidad */
.kpi-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}
.kpi-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.651);
    padding: 20px;
    width: 100%;
    text-align: center;
    min-height: 150px;
}
.kpi-card h2 {
    margin: 0;
    font-size: 2em;
}
.kpi-card p {
    font-size: 1.2em;
    margin: 10px 0;
}