/*
|--------------------------------------------------------------------------
| TITULO
|--------------------------------------------------------------------------
*/

.epc-carousel-title{

    text-align:center;

    color:#0082f1;

    font-size:24px;

    font-weight:700;

    margin-bottom:20px;

}


/*
|--------------------------------------------------------------------------
| CARRUSEL
|--------------------------------------------------------------------------
*/

.epc-product-carousel{

    margin-bottom:50px;

}


/*
|--------------------------------------------------------------------------
| IMAGENES
|--------------------------------------------------------------------------
*/

.epc-carousel-images{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

}


.epc-carousel-image{

    width:150px;

    height:150px;

}


.epc-carousel-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    display:block;
    
    border-radius:12px;
    
    transition:.3s;
    
    cursor:SELECT;
    
}

.epc-carousel-image img:hover{

    transform:scale(1.03);

}

/*
|--------------------------------------------------------------------------
| ELIMINAR IMAGEN
|--------------------------------------------------------------------------
*/

.epc-carousel-image-item{

    position:relative;

    display:inline-block;

    margin:10px;

}


.epc-remove-carousel-image{

    position:absolute;

    top:-8px;

    right:-8px;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#cc0000;

    color:#fff;

    font-size:16px;

    font-weight:bold;

    line-height:22px;

    text-align:center;

    cursor:pointer;

}