/*Gris vertical apaisado*/

.grid_productos_vertical{
    display:flex;
    flex-direction: column;
    height:100%;
}
.producto_vert_item:last-of-type{
    border-bottom:none;
}
.producto_vert_item{
    flex:1;
    overflow:hidden;
    position:relative;
}

.img_envase_vert{
    position:absolute;
    width:70%;
    z-index:3;
    top:-15px;
    bottom:-30%;
    height:130%;
    background-repeat: no-repeat;
    background-size:100% auto;
    transition: all ease .3s;
}

.ingrediente_vert{
    position: absolute;
    top: -10%;
    height:110%;
    bottom: 0%;
    width: 55%;
    background-size: auto 100%;
    background-repeat: no-repeat;
    z-index:1;
    transition: all ease .3s;

}
.producto_vert_item:nth-child(2n+1) .ingrediente_vert{
    left:0;
    background-position:center left;
}
.producto_vert_item:nth-child(2n+1) .img_envase_vert{
    left:45%
}
.producto_vert_item:nth-child(2n) .ingrediente_vert{
    right:0;
    background-position:center right;
}
.producto_vert_item:nth-child(2n) .img_envase_vert{
    right:45%
}
.img_envase_vert img{
}

.producto_vert_item:nth-child(2n+1):hover .ingrediente_vert{
    transform: rotate(-7deg);
    left:-10%;
}
.producto_vert_item:nth-child(2n+1):hover .img_envase_vert{
    transform: rotate(-7deg);
    bottom:-10%;
    top:-20%;
    left:40%;
}
.producto_vert_item:nth-child(2n):hover .ingrediente_vert{
    transform: rotate(7deg);
    right:-10%
}
.producto_vert_item:nth-child(2n):hover .img_envase_vert{
    transform: rotate(7deg);
    bottom:-10%;
    top:-20%;
    right:40%;
}


/*GRid horizontal 100vh envase cortado por la base y alineado abajo*/
.grid_productos_horizontal{
    display:flex;
    flex-direction: row;

}

.item_grid_horizontal:last-of-type{
    border-right:none;
}
.item_grid_horizontal{

    position:relative;
    overflow:hidden;
}
.item_grid_horizontal.Arroz .ingredientes_horizontal{
    top:120px;
}
.img_grid_horizontal{
    transition: all ease .3s;
    transform: scale(1);
}
.grid_productos_horizontal:not(.hor2) .img_grid_horizontal{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:80%;
    display:flex;
    align-items: flex-end;

}
.titulo_grid_horizontal{
    transition: all ease .3s;
    transform: scale(1);
}
.grid_productos_horizontal:not(.hor2) .img_grid_horizontal img{
    margin:0 auto;
    display:block;
    max-height:100%;
    width:auto;
}
.ingredientes_horizontal{
    position:absolute;
    left:0;
    top:0;
    right:0;
    height:100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}
.item_grid_horizontal .btn_wrap{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    text-align: center;
    padding-bottom:30px;
}
.item_grid_horizontal:hover .titulo_grid_horizontal{
    transform: scale(1.1);
}
.grid_productos_horizontal .item_grid_horizontal:hover .img_grid_horizontal{
    transform: scale(1.1);
    transform-origin: bottom;
 }


.grid_productos_horizontal.hor2 .img_grid_horizontal img{
    max-height:60vh;
    width:auto;
    margin:0 auto;
    display: block;

}
#theme-main .ingrediente_inf .img_grid_horizontal img{
    height:100%;
    max-height: 120%;
}
#theme-main .ingrediente_inf .img_grid_horizontal{
    height:100%;
    bottom: -10%;
}
.ingrediente_inf .ingredientes_horizontal{
    bottom:0;
    top:initial;
    height:80%;
}
.producto_1708987 img:after{
background-position: right bottom;
    
}

