/* Contenedor principal que oculta el desbordamiento */
.cli-carrusel-contenedor {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2px;
    background-color: transparent; 
	cursor: grab; 
    user-select: none;
}

.cli-carrusel-contenedor:active {
    cursor: grabbing; 
}

/* La fila que se mueve */
.cli-carrusel-fila {
    display: flex;
    white-space: nowrap;
	will-change: transform;
    position: relative;
    left: 0;
	pointer-events: none;
}

/* Cada ítem de logo */
.cli-carrusel-item {
    flex: 0 0 auto; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px; 
	height: 70px; 
    box-sizing: border-box;
}

.cli-carrusel-item img {
    max-height: 100%;
    width: 80%;
    display: block;
    /*filter: grayscale(100%); 
    transition: filter 0.3s ease;*/
    opacity: 1; 
	pointer-events: none;
}

/* Efecto hover
.cli-carrusel-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
} */

/* dispositivos móviles */
@media (max-width: 768px) {
    .cli-carrusel-item {
        height: 70px; 
        padding: 0 15px; 
    }
}