.cont_seccion
{
    display: flex;
    position: relative;
    width: 100%;
    box-shadow: 0px 0px 3px rgb(240, 240, 240);
    box-sizing: border-box;
    padding: 0 5%;
    flex-direction: column;
    align-items: center;
}

.cont_seccion2
{
    background: rgb(240, 240, 240);
}

.tituloConBarras
{
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 30px;
    padding: 0 10%;
    box-sizing: border-box;
    user-select: none;
}

.tituloConBarras > span:nth-child(2)
{
    background: transparent;
    color: rgb(132, 162, 138);
    font-size: 30px;
    letter-spacing: 3px;
    align-items: center;
    width: auto;
    width: -webkit-fill-available;
    justify-content: center;
    padding: 0 3%;
    font-weight: bold;
}

.tituloConBarras > span
{
    display: flex;
    width: 100%;
    height: 5px;
    background: rgb(132, 162, 138);
    border-radius: 20px;
}



/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/* Cont novedades */

.lista_novedades
{
    display: grid;
    max-width: 1154px;
    width: 100%;
    padding-bottom: 30px;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 12px;
    place-items: center;
}

/*--------------------------------------------------------------------------*/

.cont_novedades_carga
{
    grid-column: span 4;
}

.cont_novedades_carga > img
{
    animation: identifier 3s infinite;
    animation-direction: forward;
}

@keyframes identifier
{
    0% { opacity: 0.1;}
    50% { opacity: 0.8; }
    100% { opacity: 0.1; }
}

/*--------------------------------------------------------------------------*/

.imagen_zoom
{
    display: flex;
    position: absolute;

    
    width: 100%;
    height: 100%;
    background-color: rgb(240, 240, 240, 0.5);
    opacity: 0;
    
    justify-content: center;
    align-items: center;
    transform: scale(0.5);
    transition: transform 0.3s, opacity 0.3s;
    font-size: 13px;
    font-weight: bold;
    color: #1f1f1f;
}

.imagen_zoom > span
{
    font-size: 50px;
}

.imagen_zoom_hover
{
    position: relative;
    cursor: pointer;
}

.imagen_zoom_hover:hover > .imagen_zoom
{
    top: 0;
    opacity: 1;
    transform: scale(1);
}

/*--------------------------------------------------------------------------*/











.cont_imagen_zoom
{
    display: flex;
    position:fixed;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    background-color: rgba(0, 0, 2, 0.5);
    z-index: 3002;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s;
}

.cont_imagen_zoom > img
{
    max-width: 90vw;
    max-height: 90vh;
    transition: transform 0.3s;
    transform: scale(0.8);
}


/*--------------------------------------------------------------------------*/

.cont_libro
{
    background: rgb(240, 240, 240);
    display: flex;
    position: relative;
    flex-direction: column;
    padding: 20px 15px;
    height: 458px;
    width: 230px;
    box-sizing: border-box;
    margin: 20px 0px;
}


.cl_img
{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 180px;
    width: 200px;
    box-shadow: inset -60px 35px 25px -55px #f0f0f0;
}

.cl_separador
{
    display: block;
    width:100%;
    height: 2px;
    background: rgb(39, 93, 75);
    margin: 20px 0 20px 0;
    border-radius: 50px;
}

/* Titulos y texto */

.cl_texto
{
    display: block;
    height: 110px;
    text-align: left;
}

.cl_texto > span
{
    display:-webkit-box;
    max-height: 17px;
    margin-bottom: 9px;
    color:rgb(51, 51, 51);
    overflow:hidden; 
    text-overflow:ellipsis;
    width: 170px;
    font-size: 13px;
    -webkit-box-orient:vertical;
    -webkit-line-clamp: 1;
}

.cl_texto > span:nth-child(1)
{
    color: rgb(39, 93, 75);
    font-weight: 550;
    margin-bottom: 12px;
    max-height: 40px;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    font-size: 14px;
}

/* Precio y plus */

.cl_precio
{
    display: flex;
    position: relative;
    background: rgb(240, 240, 240);
    margin-top: 30px;
    margin-bottom: 10px;
    justify-content: space-between;
}

.cl_precio > span:nth-child(1)
{
    color:rgb(39, 93, 75);
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 17px;
}

.cl_icon_plus
{
    display: flex;
    position: absolute;
    width: 21px;
    height: 21px;
    font-size: 9px;
    color: #fff;
    background: rgb(236, 105, 83);
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    right: 0;
    top: 381px;
    left: 179px;
}

.cl_icon_plus_1
{
    display: block;
    position: absolute;
    background-color: #fff;
    width: 11px;
    height: 3px;
    top: 9px;
    left: 5px;
}

.cl_icon_plus_2
{
    display: block;
    position: absolute;
    background-color: #fff;
    width: 3px;
    height: 11px;
    top: 5px;
    left: 9px;
}





/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/* Arrancando con las correcciones para width menor a 1137px */
@media (max-width: 1137px)
{
    .cont_libro
    {
        margin: 20px 6%;
    }
}


/*=========================================================================================*/
/*=========================================================================================*/
/*=========================================================================================*/
/* Arrancando con las correcciones para width menor a 1137px */
@media (max-width: 700px)
{
    .cont_libro
    {
        margin: 20px 3%;
    }
}
