<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">section.container_IngCompo {
    margin-bottom: 30px;
}
.contenedor_IngCompo_padre ul {
    margin: 0;
    width: 100%;
}
.contenedor_IngCompo_padre ul li {
    list-style: none;
    width: 100%;
}
.contenedor_IngCompo_padre ul li a {
    color: #fff;
    margin: 10px auto;
    font-family: Roboto slab,sans-serif;
    font-weight: 900;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
    padding: 0 20px;
}
/* Oculta y desaparece al padre*/
.contenedor_IngComp {
    display: none;
}
.active {
    display: block;
}

/* quita la opacidad del hijo, al activar al padre, se ve la animaciÃ³n del hijo*/
.ocultar {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.mostrar {
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}
/* estilos x lÃ­nea de producto */
.Pollo {
    background: #f6b313;
    transition: background 0.2s ease-in;
}
.Salmon {
    background: #FF503E;
    transition: background 0.2s ease-in;
}
/* Fin estilos x lÃ­nea de producto */

.boton_inactivo {
    transition: background 0.2s ease-in;
    background: #000;
}

/*estilos de la tabla*/
.table_composicion {
    table-layout: fixed;
    width: 100%;
    /* border-collapse: collapse; */
    /* border: 3px solid purple; */
    border-collapse: separate;
    border-spacing: 5px;
}
.td_table {
    text-align: center;
    margin: 10px 10px;
    padding: 10px 10px;
    background-color: #F9DBB0;
}
.tr_table td:first-child {
    background-color: #182151;
    color: white;
    font-weight: 900;
}
.tr_table td:nth-child(2) {
  font-family: montserrat,sans-serif;
  font-weight: 900;
}

#contenido_Ing_hijo {
 padding: 15px;
}

@media (min-width:750px) {
    .contenedor_IngCompo_padre ul {
        display: flex;
        justify-content: center;
    }
    .contenedor_IngCompo_padre ul li {
        list-style: none;
        width: 50%;
        padding: 0 10px;
        text-align: center;
    }
}

@media (min-width:1200px) {
    div#contenedorIngCompo {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    div#contenidoIngredientes {
        width: 50%;
        padding: 0 32px;
    }
    div#contenido_Ing_hijo {
        text-align: justify;
    }
    div#contenidoComposicion {
        width: 50%;
        padding: 0 32px;
    }
}</pre></body></html>