KL.Modules.gallery = new function() { var self = this; var galleries = {}; var counter = 1; function load() { var galleryNodes = document.getElementsByClassName('gallery'); if (galleryNodes) { for (var i = 0; i < galleryNodes.length; i++) { id = galleryNodes[i].id; if (!id) { galleryNodes[i].id = id = "gallery" + counter++; } galleries[id] = new KL.Modules.onegallery(galleryNodes[i]) } } } function unload() { for (var i = 0; i < galleries.length; i++) galleries[i].destroy(); galleries = {}; } KL.loader.addHookLoad('gallery', load); KL.loader.addHookPostLoad('gallery', load); KL.loader.addHookUnload('gallery', unload); } KL.Modules.onegallery = function(node) { var self = this; var actual = null; var animation = ''; var gallerynode = node; var containernode = null; var previousnode = null; var nextnode = null; var playing = false; var playnode = null; var withBullets = false; var bulletsnode = null; var timer = null; var timing = null; function clickplay(event, noevent) { if (playing) { // para todo clearTimeout(timer); timer = null; playing = false; playnode.firstElementChild.className = 'icon-k7-gallery-pause'; //KL.Modules.stat.registerEvent('gallery', 'gallery/pause'); KL.Modules.stat.registerEventGA4('gallery/pause', {'send_to': KL.analyticsTag}); } else { // lanza timer = setTimeout( function() { play(); }, timing); playing = true; playnode.firstElementChild.className = 'icon-k7-gallery-play'; if (!noevent) //KL.Modules.stat.registerEvent('gallery', 'gallery/play'); KL.Modules.stat.registerEventGA4('gallery/play', {'send_to': KL.analyticsTag}); } } function clicknext(clave) { if (timer) { clearTimeout(timer); timer = setTimeout( function() { play(); }, timing); // todo: timing } continuousnext(clave); } function continuousnext(clave) { if (actual.nextElementSibling) { setNodeClasses(actual, actual.nextElementSibling); actual = actual.nextElementSibling; } else { var firstnode = containernode.childNodes[0]; setNodeClasses(actual, firstnode); actual = firstnode; } updateBullets(); } function clickprevious(clave) { if (timer) { clearTimeout(timer); timer = setTimeout( function() { play(); }, timing); // todo: timing } continuousprevious(clave); } function continuousprevious(clave) { if (actual.previousElementSibling) { setNodeClasses(actual, actual.previousElementSibling); actual = actual.previousElementSibling; } else { var lastindex = containernode.childNodes.length - 1; var lastnode = containernode.childNodes[lastindex]; setNodeClasses(actual, lastnode); actual = lastnode; } updateBullets(); } // onlick bullet, this is the bullet function gotoslide(event) { if (timer) { clearTimeout(timer); timer = setTimeout(play, timing); } if (this.linked != actual) { var nextone = this.linked; setNodeClasses(actual, nextone); actual = this.linked; updateBullets(); } //KL.Modules.stat.registerEvent('gallery', 'gallery/gotoslide'); KL.Modules.stat.registerEventGA4('gallery/gotoslide', {'send_to': KL.analyticsTag}); } function updateBullets() { if (!withBullets) return; for (i = 0, l = bulletsnode.childNodes.length; i < l; i++) { if (bulletsnode.childNodes[i].linked == actual) bulletsnode.childNodes[i].className = 'gallery-bullet on'; else bulletsnode.childNodes[i].className = 'gallery-bullet'; } } //current y next son los ids de los nodos function setNodeClasses(current, next) { var lastId = containernode.lastElementChild; var firstId = containernode.firstElementChild; var before = true; for (var i=0, l=containernode.childNodes.length; i 0 && auxTime <= 99999)) ? auxTime: 5000); } if (gallerynode.dataset.bullets == 'yes') { withBullets = true; bulletsnode = WA.createDomNode('div', null, 'gallery-bullets'); gallerynode.appendChild(bulletsnode); for (var i=0, l=containernode.childNodes.length; i'+KL.i18n.tools_favoritos_ok2+''); } else { KL.Modules.stat.registerEvent('tools', 'tools/errorfav'); KL.Modules.stat.registerEventGA4('tools/errorfav', {'send_to': 'G-X0MHE23QYB'}); KL.Modules.modal.alerta(code.message); } }) .catch(function(code, err) { if (code == 401) // not connected { KL.Modules.stat.registerEvent('tools', 'tools/gologin'); KL.Modules.stat.registerEventGA4('tools/gologin', {'send_to': 'G-X0MHE23QYB'}); KL.loader.loadPage("/login/fav/"+type+"/"+key); return; } // print error modal, send to server error KL.Modules.modal.alerta(code, err); console.log("Error sending fav:", code, err); }); return WA.browser.cancelEvent(event); } function clickcollections(event) { if (!KL.Modules.client.clientlogged) { KL.Modules.stat.registerEvent('tools', 'tools/gologin'); KL.Modules.stat.registerEventGA4('tools/gologin', {'send_to': 'G-X0MHE23QYB'}); KL.loader.loadPage("/login/col/"+type+"/"+key); return; } WA.Managers.ajax.createPromiseRequest({ url: KL.graphdomains + '/v6/collection', method: 'post', send: false}) .then(function(request) { request.addParameter('language', KL.language); request.addParameter('device', KL.device); request.addParameter('service', 'list'); return request.send(); }) .then(function(response){ var code = JSON.parse(response); KL.Modules.stat.registerEvent('tools', 'tools/opencol'); KL.Modules.stat.registerEventGA4('tools/opencol', {'send_to': 'G-X0MHE23QYB'}); data = WA.templates.tools_collectionselect({items:code.payload}); KL.Modules.modal.buildpopup(data); // link clicks for (var i = 0, l = code.payload.length; i < l; i++) { var n = WA.toDOM("tools-collection-" + code.payload[i].clave); if (!n) continue; n.dataset.id = code.payload[i].clave; n.onclick = seleccionacoleccion; } var n = WA.toDOM("tools-collection-create"); if (n) { n.onclick = creacoleccion; } KL.Modules.modal.showpopup({closeable:true}); }) .catch(function(code, err) { if (code == 401) // not connected { KL.Modules.stat.registerEvent('tools', 'tools/gologin'); KL.Modules.stat.registerEventGA4('tools/gologin', {'send_to': 'G-X0MHE23QYB'}); KL.loader.loadPage("/login/createcol"); return; } // print error modal, send to server error KL.Modules.modal.alerta(code, err); console.log("Error sending fav:", code, err); }); return WA.browser.cancelEvent(event); } function seleccionacoleccion(event) { if (!KL.Modules.client.clientlogged) { KL.Modules.stat.registerEvent('tools', 'tools/gologin'); KL.Modules.stat.registerEventGA4('tools/gologin', {'send_to': 'G-X0MHE23QYB'}); KL.loader.loadPage("/login/addcol/"+type+"/"+key); return; } var cid = this.dataset.id; WA.Managers.ajax.createPromiseRequest({ url: KL.graphdomains + '/v6/collection', method: 'post', send: false}) .then(function(request) { request.addParameter('language', KL.language); request.addParameter('device', KL.device); request.addParameter('service', 'insert'); request.addParameter('collection', cid); request.addParameter('type', type); request.addParameter('key', key); return request.send(); }) .then(function(response){ KL.Modules.modal.hidepopup(); var code = JSON.parse(response); if (code.status == 'ok') { KL.Modules.stat.registerEvent('tools', 'tools/addcol'); KL.Modules.stat.registerEventGA4('tools/addcol', {'send_to': 'G-X0MHE23QYB'}); KL.Modules.modal.notifica(KL.i18n.tools_collections_ok1+' '+KL.i18n.tools_collections_ok2+''); } else { KL.Modules.stat.registerEvent('tools', 'tools/errorcol'); KL.Modules.stat.registerEventGA4('tools/errorcol', {'send_to': 'G-X0MHE23QYB'}); KL.Modules.modal.alerta(code.message); } }) .catch(function(code, err) { if (code == 401) // not connected { KL.Modules.stat.registerEvent('tools', 'tools/gologin'); KL.Modules.stat.registerEventGA4('tools/gologin', {'send_to': 'G-X0MHE23QYB'}); KL.loader.loadPage("/login/col/"+cid+"/"+type+"/"+key); return; } // print error modal, send to server error KL.Modules.modal.alerta(code, err); console.log("Error sending col:", code, err); }); return WA.browser.cancelEvent(event); } function creacoleccion(event) { var v = WA.toDOM("tools-collection-name").value; if (!KL.Modules.client.clientlogged) { KL.Modules.stat.registerEvent('tools', 'tools/gologin'); KL.Modules.stat.registerEventGA4('tools/gologin', {'send_to': 'G-X0MHE23QYB'}); KL.loader.loadPage("/login/createcol/"+KL.fixedEncodeURIComponent(v)+"/"+type+"/"+key); return; } WA.Managers.ajax.createPromiseRequest({ url: KL.graphdomains + '/v6/collection', method: 'post', send: false}) .then(function(request) { request.addParameter('language', KL.language); request.addParameter('device', KL.device); request.addParameter('service', 'create'); request.addParameter('name', v); request.addParameter('type', type); request.addParameter('key', key); return request.send(); }) .then(function(response) { KL.Modules.modal.hidepopup(); var code = JSON.parse(response); if (code.status == 'ok') { KL.Modules.stat.registerEvent('tools', 'tools/createaddcol'); KL.Modules.stat.registerEventGA4('tools/createaddcol', {'send_to': 'G-X0MHE23QYB'}); KL.Modules.modal.notifica(KL.i18n.tools_collections_ok1+' '+KL.i18n.tools_collections_ok2+''); } else { KL.Modules.stat.registerEvent('tools', 'tools/errorcol'); KL.Modules.stat.registerEventGA4('tools/errorcol', {'send_to': 'G-X0MHE23QYB'}); KL.Modules.modal.alerta(code.message); } }) .catch(function(code, err) { if (code == 401) // not connected { KL.Modules.stat.registerEvent('tools', 'tools/gologin'); KL.Modules.stat.registerEventGA4('tools/gologin', {'send_to': 'G-X0MHE23QYB'}); KL.loader.loadPage("/login/col/"+KL.fixedEncodeURIComponent(v)+"/"+type+"/"+key); return; } // print error modal, send to server error KL.Modules.modal.alerta(code, err); console.log("Error sending col:", code, err); }); return WA.browser.cancelEvent(event); } function clickshoppinglist(event) { if (!KL.Modules.client.clientlogged) { KL.Modules.stat.registerEvent('tools', 'tools/gologin'); KL.Modules.stat.registerEventGA4('tools/gologin', {'send_to': 'G-X0MHE23QYB'}); KL.loader.loadPage("/login/shoppinglist/"+key); return; } if (type != 'r') { KL.Modules.modal.alerta("Error, el objeto no es una receta para agregar a la lista del súper."); return; } WA.Managers.ajax.createPromiseRequest({ url: KL.graphdomains + '/v6/shoppinglist', method: 'post', send: false}) .then(function(request) { request.addParameter('language', KL.language); request.addParameter('device', KL.device); request.addParameter('service', 'addrecipe'); request.addParameter('key', key); return request.send(); }) .then(function(response){ var code = JSON.parse(response); if (code.status == 'ok') { KL.Modules.stat.registerEvent('tools', 'tools/addshoppinglist'); KL.Modules.stat.registerEventGA4('tools/addshoppinglist', {'send_to': 'G-X0MHE23QYB'}); KL.Modules.modal.notifica(KL.i18n.tools_listasuper_ok1+' '+KL.i18n.tools_listasuper_ok2+''); } else { KL.Modules.stat.registerEvent('tools', 'tools/errorshoppinglist'); KL.Modules.stat.registerEventGA4('tools/errorshoppinglist', {'send_to': 'G-X0MHE23QYB'}); KL.Modules.modal.alerta(code.message); } }) .catch(function(code, err) { if (code == 401) // not connected { KL.Modules.stat.registerEvent('tools', 'tools/gologin'); KL.Modules.stat.registerEventGA4('tools/gologin', {'send_to': 'G-X0MHE23QYB'}); KL.loader.loadPage("/login/shoppinglist/"+type+"/"+key); return; } // print error modal, send to server error KL.Modules.modal.alerta(code, err); console.log("Error sending shoppinglist:", code, err); }); return WA.browser.cancelEvent(event); } function getlistasuper(request) { // close tools // put heart filled var code = JSON.parse(request.responseText); if (code.estatus == 'OK') { KL.Modules.modal.hidepopup(); KL.Modules.stat.registerEvent('tools', 'tools/addsup'); KL.Modules.stat.registerEventGA4('tools/addsup', {'send_to': 'G-X0MHE23QYB'}); KL.Modules.modal.notifica(KL.i18n.tools_listasuper_ok1+' '+KL.i18n.tools_listasuper_ok2+''); } else { if (code.code == 1) { KL.Modules.stat.registerEvent('tools', 'tools/gologin'); KL.Modules.stat.registerEventGA4('tools/gologin', {'send_to': 'G-X0MHE23QYB'}); KL.loader.loadPage("/login/sup/"+type+"/"+key); } else { KL.Modules.stat.registerEvent('tools', 'tools/errorsup'); KL.Modules.stat.registerEventGA4('tools/errorsup', {'send_to': 'G-X0MHE23QYB'}); KL.Modules.modal.alerta(code.mensaje); } } } function clickmenuplanner(event) { if (!KL.Modules.client.clientpro) { KL.Modules.stat.registerEvent('tools', 'tools/gologin'); // KL.loader.loadPage("/pro/"+type+"/"+key); KL.loader.loadPage("/pro"); return; } // call PRO MENU PLANNER WA.browser.cancelEvent(event); } this.destroy = destroy; function destroy() { containernode = null; toolsshadow = null; toolsnode = null; buttons = null; self = null; } // Note: only 1 gallery per page if (containernode.scanned) return; containernode.scanned = true; toolsshadow = WA.createDomNode('div', null, 'tools-shadow'); toolsshadow.style.display = 'none'; containernode.appendChild(toolsshadow); toolsnode = WA.createDomNode('div', null, 'tools-container'); containernode.appendChild(toolsnode); // fill with the buttons template type = containernode.dataset.type; key = containernode.dataset.key; code = {t:type,k:key} // create buttons // close: always here var closebutton = WA.createDomNode('div', null, 'anim tools-close icon-k7-tools-close'); closebutton.setAttribute('alt', WA.i18n.getMessage('txt-tools-cerrar')); closebutton.setAttribute('title', WA.i18n.getMessage('txt-tools-cerrar')); closebutton.onclick = clickclose; toolsnode.appendChild(closebutton); buttons.push(closebutton); if (type == 'r') { // menu planner: recipe only /* var mpbutton = WA.createDomNode('div', null, 'anim tools-menuplanner icon-k7-tools-menuplanner'); mpbutton.setAttribute('alt', WA.i18n.getMessage('txt-tools-planeadormenu')); mpbutton.setAttribute('title', WA.i18n.getMessage('txt-tools-planeadormenu')); mpbutton.onclick = clickmenuplanner; toolsnode.appendChild(mpbutton); buttons.push(mpbutton); */ // Shopping list / only recipe var slbutton = WA.createDomNode('div', null, 'anim tools-shoppinglist icon-k7-tools-shoppinglist'); slbutton.setAttribute('alt', WA.i18n.getMessage('txt-tools-listasuper')); slbutton.setAttribute('title', WA.i18n.getMessage('txt-tools-listasuper')); slbutton.onclick = clickshoppinglist; toolsnode.appendChild(slbutton); buttons.push(slbutton); } var clbutton = WA.createDomNode('div', null, 'anim tools-collections icon-k7-tools-collections'); clbutton.setAttribute('alt', WA.i18n.getMessage('txt-tools-colecciones')); clbutton.setAttribute('title', WA.i18n.getMessage('txt-tools-colecciones')); clbutton.onclick = clickcollections; toolsnode.appendChild(clbutton); buttons.push(clbutton); var fvbutton = WA.createDomNode('div', null, 'anim tools-favorites icon-k7-tools-favorites-empty'); fvbutton.setAttribute('alt', WA.i18n.getMessage('txt-tools-favorito')); fvbutton.setAttribute('title', WA.i18n.getMessage('txt-tools-favorito')); fvbutton.onclick = clickfav; toolsnode.appendChild(fvbutton); buttons.push(fvbutton); } // tools var translation = { "txt-tools-favorito": "Add to my Favorites", "txt-tools-colecciones": "Add to my Collections", "txt-tools-listasuper": "Add to my Grocery List", "txt-tools-planeadormenu": "Add to Menu Planner", "txt-tools-cerrar": "Cerrar", }; WA.i18n.loadMessages(translation); /* Funciones para manejar el feed */ /* Escrito por: Phil Fecha: Julio 2016 Control de cambios: 26/02/2020: Wilmer, Ajuste a feed search/v6 10/07/2016: Phil, Creación */ KL.Modules.feed = new function() { var self = this; function load() { } this.unload = unload; function unload() { } KL.loader.addHookLoad('feed', load); KL.loader.addHookPostLoad('feed', load); KL.loader.addHookUnload('feed', unload); } KL.Modules.feed.container = function(id, template, datos, q) { var self = this; } KL.Modules.slider = new function() { var self = this; var sliders = {}; var counter = 1; function load() { var sliderNodes = document.getElementsByClassName('slider'); if (sliderNodes) { for (var i = 0; i < sliderNodes.length; i++) { id = sliderNodes[i].id; if (!id) { sliderNodes[i].id = id = "slider" + counter++; } sliders[id] = new KL.Modules.oneslider(sliderNodes[i]); } } } function unload() { for (var i = 0; i < sliders.length; i++) sliders[i].destroy(); sliders = {}; } KL.loader.addHookLoad('slider', load); //KL.loader.addHookPostLoad('slider', load); KL.loader.addHookUnload('slider', unload); } KL.Modules.oneslider = function(node) { var self = this; var slidernode = node; var containernode = null; var position = 0; //var percentmove = 0.9; var percentmove = 1; function clickprevious(event) { var width = WA.browser.getNodeWidth(slidernode); position += Math.round(width*percentmove); if (position > 0) position = 0; containernode.style.left = position + 'px'; //KL.loader.callHooksPostLoad(); //KL.Modules.stat.registerEvent('slider', 'slider/previous'); KL.Modules.stat.registerEventGA4('slider/previous', {'send_to': KL.analyticsTag}); // TODO(phil) // considerar enviar los IDs a analizar por la animacion // Se enva a analizar las imgenes DAG 11/08/2022 //KL.Modules.images.analyze(); } function clicknext(event) { var width = WA.browser.getNodeWidth(slidernode); position -= Math.round(width*percentmove); var size = getsize(); var min = -size+width; if (min > 0) min = 0; if (position < min) position = min; containernode.style.left = position + 'px'; //KL.Modules.stat.registerEvent('slider', 'slider/next'); KL.Modules.stat.registerEventGA4('slider/next', {'send_to': KL.analyticsTag}); setTimeout(() => { KL.loader.callHooksPostLoad(); }, 700); //600 // TODO(phil) // considerar enviar los IDs a analizar por la animacion // Se enva a analizar las imgenes DAG 11/08/2022 //KL.Modules.images.analyze(); } function getsize() { var width = 0; for (var i=0, l=containernode.childNodes.length; i width) width = x; } return width; } function draglistener(type, metrics) { if (type == 'start') { // quitar el anim containernode.style.transition = 'none'; } if (type == 'drag') { // mover a la posicion var p = position + metrics.dx; var width = WA.browser.getNodeWidth(slidernode); if (p > 0) p = 0; var size = getsize(); var min = -size+width; if (min > 0) min = 0; if (p < min) p = min; //containernode.style.transform = "translate("+p+"px,0)"; //position = p; containernode.style.left = p + 'px'; } if (type == 'izquierda' || type == 'derecha') { // reponer el anim containernode.style.transition = ''; // animar hasta la posicion correspondiente a la velocidad ? var p = position + metrics.dx + metrics.velocity/4; var width = WA.browser.getNodeWidth(slidernode); if (p > 0) p = 0; var size = getsize(); var min = -size+width; if (min > 0) min = 0; if (p < min) p = min; position = p; containernode.style.left = position + 'px'; // TODO(phil) // considerar enviar los IDs a analizar por la animacion } KL.Modules.images.analyze(); KL.loader.callHooksPostLoad(); } this.destroy = destroy; function destroy() { if (timer) clearTimeout(timer) timer = null; actual = null; gallerynode = null; containernode = null; previousnode = null; nextnode = null; playnode = null; bulletsnode = null; self = null; } // Note: only 1 gallery per page if (slidernode.dataset.scanned) return; slidernode.dataset.scanned = true; if (!slidernode.firstElementChild) return; containernode = WA.createDomNode('div', slidernode.id+'_container', 'slider-container'); while (slidernode.hasChildNodes()) { // Solo queremos nodos div if (slidernode.firstChild.nodeType == 1) { slidernode.firstChild.className += ' slider-element'; containernode.appendChild(slidernode.firstChild); } else slidernode.removeChild(slidernode.firstChild); } slidernode.appendChild(containernode); // 3. boton left previousnode = WA.createDomNode('div', null, 'slider-button left'); slidernode.appendChild(previousnode); previousnode.onclick = function() { //KL.Modules.stat.registerEvent('slider', 'slider/previous'); KL.Modules.stat.registerEventGA4('slider/previous', {'send_to': KL.analyticsTag}); clickprevious(); }; n = WA.createDomNode('div', null, 'icon-k7-slider-previous'); previousnode.appendChild(n); // 4. boton right nextnode = WA.createDomNode('div', null, 'slider-button right'); slidernode.appendChild(nextnode); nextnode.onclick = function() { //KL.Modules.stat.registerEvent('slider', 'slider/next'); KL.Modules.stat.registerEventGA4('slider/next', {'send_to': KL.analyticsTag}); clicknext(); }; n = WA.createDomNode('div', null, 'icon-k7-slider-next'); nextnode.appendChild(n); KL.Modules.movements.adddraglistener('slider_' + slidernode.id, {node: containernode, listener:draglistener}); } KL.Modules.recipelist = new function() { var self = this; var node = null; var nodemasnuevo = null; var noderecomendado = null; var nodemaspopular = null; var nodenext = null; var actual = 1; var type = ""; var key = ""; var page = 1; var quantity = 10; var more = false; var total = 0; function cleandata() { node.innerHTML = ""; page = 1; } function calldata() { var r = WA.Managers.ajax.createRequest(KL.graphdomains + '/v6/feed', 'POST', null, getdata, false); r.addParameter('v', 1 ); r.addParameter('type', type ); r.addParameter('key', key ); r.addParameter('device', KL.device ); r.addParameter('language', KL.language ); r.addParameter('quantity', quantity ); r.addParameter('order', actual ); r.addParameter('page', page ); r.addParameter('human', 1 ); r.send(); } function getdata(request) { //debugger code = JSON.parse(request.responseText); code.siteorigin = KL.rootsite; if ( (KL.Modules.client.clientpro) && (KL.rootsite == 'kiwi') ) { // console.log('chef pro'); code.sesionprochef = 'true'; }else{ if (KL.Modules.client.clientlogged) { // console.log('chef normal'); code.sesionprochef = 'false'; } else{ // console.log('no hay chef'); code.sesionprochef = null; } } // inject into template template = WA.templater`${['loop', 'payload','feed_payload']}`; text = template(code); ndiv = WA.createDomNode('div', null, null); ndiv.style = "clear: both;"; ndiv.innerHTML = text; node.appendChild(ndiv); // set next, data into more = code.more nodenext.style.display = more?"block":"none"; // analyze img and ads and an KL.loader.callHooksPostLoad(); } function next() { if (!more) return; page++; calldata(); } function masnuevo() { if (actual == 1) return; actual = 1; nodemasnuevo.className = "recipelist-button on"; noderecomendado.className = "recipelist-button"; nodemaspopular.className = "recipelist-button"; // seek new list cleandata(); calldata(); } function recomendado() { if (actual == 2) return; actual = 2; nodemasnuevo.className = "recipelist-button"; noderecomendado.className = "recipelist-button on"; nodemaspopular.className = "recipelist-button"; // seek new list cleandata(); calldata(); } function maspopular() { if (actual == 3) return; actual = 3; nodemasnuevo.className = "recipelist-button"; noderecomendado.className = "recipelist-button"; nodemaspopular.className = "recipelist-button on"; // seek new list cleandata(); calldata(); } function load() { node = WA.toDOM('recipelist'); if (!node) return; nodemasnuevo = WA.toDOM('recipelist-masnuevo'); nodemasnuevo.onclick = masnuevo; noderecomendado = WA.toDOM('recipelist-recomendado') noderecomendado.onclick = recomendado; nodemaspopular = WA.toDOM('recipelist-maspopular') nodemaspopular.onclick = maspopular; nodenext = WA.toDOM('recipelist-next'); nodenext.onclick = next; type = node.dataset.type; key = node.dataset.key; quantity = parseInt(node.dataset.quantity, 10); page = parseInt(node.dataset.page, 10); more = node.dataset.more=="true"; total = parseInt(node.dataset.total, 10); // If more: adds the "get next page" button nodenext.style.display = more?"block":"none"; } function unload() { if (!node) return; nodemasnuevo.onclick = function() {}; noderecomendado.onclick = function() {}; nodemaspopular.onclick = function() {}; nodenext.onclick = function() {}; nodemasnuevo = null; noderecomendado = null; nodemaspopular = null; nodenext = null; node = null; } KL.loader.addHookLoad('recipelist', load); KL.loader.addHookUnload('recipelist', unload); } KL.loader.createCSS(`.gallery{ margin: 0px; width: 100%; max-width: inherit; height: 100%; position: relative; } .gallery-slide { position: absolute; left: 0; top: 0; right: 0; bottom: 0; } .gallery-slide.slide.anim { transition: all 1s ease 0s; } .gallery-slide.slide { transform: translate3d(0, 0, 0); } .gallery-slide.slide.before { transform: translate3d(-100%, 0, 0); } .gallery-slide.slide.after { transform: translate3d(100%, 0, 0); } .icon-k7-gallery-previous:before{content: "\\e948";} .icon-k7-gallery-next:before{content: "\\e947";} .icon-k7-gallery-play:before{content: "\\e923";} .icon-k7-gallery-pause:before{content: "\\e922";} .gallery-button { position: absolute; opacity: 1; width: 48px; top: 0; bottom: 0; z-index: 14; background-color: transparent; font-size: 20px; cursor: pointer; } .gallery-button > div { top: 50%; margin-top: -50%; position: relative; width: 100%; text-align: center; color: white; } .gallery-button:hover > div { color: #ccc; font-weight: bold; } .gallery-button.left{ left: 0; } .gallery-button.right { right: 0; } .gallery-player { position: absolute; opacity: 1; width: 48px; left: 0px; top: 0px; height: 30px; width: 20px; padding-top: 10px; padding-left: 20px; z-index: 15; background-color: transparent; font-size: 20px; cursor: pointer; } .gallery-player > div { position: relative; color: white; } .gallery-player:hover > div { color: #ccc; font-weight: bold; } .gallery-bullets { position: absolute; bottom: 0; width: auto; left: 50%; transform: translateX(-50%); text-align: center; display: flex; } .gallery-bullet { cursor: pointer; padding: 10px; padding-bottom: 20px; display: inline-block; } .gallery-bullet.on > div { background-color: black; } .gallery-bullet > div { background-color: white; border-radius: 100%; width: 10px; height: 10px; box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5); } `); KL.loader.createCSS(`.tools-shadow { position: absolute; top: 0px; bottom: 0px; width: 100%; background-color: #222222; opacity: 0.2; z-index: 1; } .tools-container { position: absolute; right: 10px; top: 10px; width: 30px; height: 30px; z-index: 1; } .tools-container .icon-k7-tools-close:before { content: "\\e946"; font-size: 16px; left: 50%; position: absolute; top: 50%; transform: translateX(-50%) translateY(-50%); } .tools-container .icon-k7-tools-menuplanner:before { content: "\\e90c"; font-size: 16px; left: 50%; position: absolute; top: 50%; transform: translateX(-50%) translateY(-50%); } .tools-container .icon-k7-tools-shoppinglist:before { content: "\\e90a"; font-size: 15px; left: 50%; position: absolute; top: 50%; transform: translateX(-50%) translateY(-50%); } .tools-container .icon-k7-tools-collections:before { content: "\\e907"; font-size: 15px; left: 50%; position: absolute; top: 50%; transform: translateX(-50%) translateY(-50%); } .tools-container .icon-k7-tools-favorites-empty:before { content: "\\e908"; font-size: 16px; left: 50%; position: absolute; top: 50%; transform: translateX(-50%) translateY(-50%); } .tools-container.icon-k7-tools-favorites-full:before { content: "\\e924"; font-size: 16px; left: 50%; position: absolute; top: 50%; transform: translateX(-50%) translateY(-50%); } .tools-container>div { border-radius: 100%; position: absolute; right: 0px; top: 0px; cursor: pointer; text-align: left; } .tools-close, .tools-menuplanner, .tools-shoppinglist, .tools-collections, .tools-favorites{ background-color: #8cc63e; color: #ffffff; height: 30px; width: 30px; } .tools-favorites{ background-color: #ff0000; } .tools-close{ background-color: #eeeeee; color: #888; } .tools-coleccionentrada { height: 15px; cursor: pointer; padding: 5px; } .tools-coleccionentrada:hover { background-color: #ccc; } `); KL.loader.createCSS(`/* generico */ .feed-articulolarge-thumb-titulo-seccion{ background-color: #8cc63e; } /* nutricion */ .feed-articulolarge-thumb-titulo-seccion.id_tema_11{ background-color: #9ec410; } /* bebidas */ .feed-articulolarge-thumb-titulo-seccion.id_tema_30{ background-color: #f05d7f; } /* comida vegana */ .feed-articulolarge-thumb-titulo-seccion.id_tema_1{ background-color: #28d9ff; } /* dieta */ .feed-articulolarge-thumb-titulo-seccion.id_tema_44{ background-color: #2e94ba; } /* reposteria */ .feed-articulolarge-thumb-titulo-seccion.id_tema_20{ background-color: #efc950; } /* tips cocina */ .feed-articulolarge-thumb-titulo-seccion.id_tema_54{ background-color: #f39041; } /* tips consejos */ .feed-articulolarge-thumb-titulo-seccion.id_tema_25{ background-color: #ca5dde; } .feed-divarticulolarge .tools-container, #home_tips div[id^="p|kiwi|tiphome|"][class$="-ficha"] .tools-container{ left: 225px; } /* estilos slider top 10 */ /* estilos slider top 10 para tips kiwi / estilos slider top 10 para tips crafto */ div[id^="familiatips"] div[id^="p|kiwi|tipfamilia"], div[id^="clasificaciontips"] div[id^="p|kiwi|tipclasificacion"], div[id^="home_top10"] div[id^="p|kiwi|tiphome"], div[id^="home_top10"] div[id^="p|crafto|tiphome"], div[id^="familiatips"] div[id^="p|crafto|tipfamilia"], div[id^="clasificaciontips"] div[id^="p|crafto|tipclasificacion"], div[id^="familiatips"] div[id^="p|kiwi|tipclasificaciontop|"], div[id^="familiatips"] div[id^="p|crafto|tipclasificaciontop|"]{ width: 190px; margin: 0px 15px 0px 0px; height: 267px; } div[id^="familiatips"] div[id^="feed-tip-divimg"], div[id^="clasificaciontips"] div[id^="feed-tip-divimg"], div[id^="home_top10"] div[id^="feed-tip-divimg"]{ height: 190px; width: 190px; } div[id^="familiatips"] .feed-tip-nombreficha, div[id^="clasificaciontips"] .feed-tip-nombreficha, div[id^="home_top10"] .feed-tip-nombreficha{ font-size: 14px; max-height: 46px; line-height: 15px; text-transform: uppercase; } div[id^="familiatips"] hr, div[id^="clasificaciontips"] hr, div[id^="familiatips"] .feed-tip-nombrechef, div[id^="clasificaciontips"] .feed-tip-nombrechef, div[id^="home_top10"] div[id^="p|kiwi"] hr, div[id^="home_top10"] div[id^="p|crafto"] hr, div[id^="home_top10"] div[id^="p|kiwi"] .feed-tip-nombrechef, div[id^="home_top10"] div[id^="p|crafto"] .feed-tip-nombrechef{ display: none; } div[id^="familiatips"] div[id^="feed-tip-rating"], div[id^="clasificaciontips"] div[id^="feed-tip-rating"], div[id^="home_top10"] div[id^="p|kiwi|tiphometop"] div[id^="feed-tip-rating"], div[id^="home_top10"] div[id^="p|crafto|tiphometop"] div[id^="feed-tip-rating"]{ margin: 0px auto; padding: 0px; } /* fin estilos slider top 10 para tips */ /* area nombre ficha */ #home_top10 .recetaslider-ficha, #familiarecetas_top10 .recetaslider-ficha, #clasificacionrecetas_top10 .recetaslider-ficha, #clasificacionrecetas_top10 .compilacionrecetaslider-ficha, #clasificaciontips_top10 .tipslider-ficha, #home_tecuidalist .feed-articulo-ficha, .pro-slider-fichaspro .feed-receta-ficha{ height: 267px; } #home_top10 .recetaslider-areanombreficha, #familiarecetas_top10 .recetaslider-areanombreficha, #clasificacionrecetas_top10 .recetaslider-areanombreficha, #home_top10 .tipslider-areanombreficha, #home_top10 .articuloslider-areanombreficha{ height: 52px; } #home_top10 .recetasliderpro-areanombreficha, #familiarecetas_top10 .recetasliderpro-areanombreficha, #clasificacionrecetas_top10 .recetasliderpro-areanombreficha{ height: 52px; display: flex; align-items: center; } #home_videos .compilacionrecetaslider-areanombreficha{ height: 75px; } /* nombre de ficha */ #home_top10 .recetaslider-nombreficha, #familiarecetas_top10 .recetaslider-nombreficha, #clasificacionrecetas_top10 .recetaslider-nombreficha, #home_top10 .tipslider-nombreficha, #home_videos .compilacionrecetaslider-nombreficha, #home_top10 .articuloslider-nombreficha, #home_videos div[id^="p|crafto|tiphomecompilacion"] .feed-compilaciontip-nombreficha, #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulo-nombre-articulo{ font-weight: bold; font-size: 14px; color: #000000; max-height: 46px; } #home_top10 .recetaslider-icon-pro, #familiarecetas_top10 .recetaslider-icon-pro, #clasificacionrecetas_top10 .recetaslider-icon-pro{ width: 30px; height: 30px; font-size: 20px; margin: 0px 0px 0px 10px; } #home_top10 .recetasliderpro-nombreficha, #familiarecetas_top10 .recetasliderpro-nombreficha, #clasificacionrecetas_top10 .recetasliderpro-nombreficha{ font-size: 15px; max-height: 31px; width: calc(100% - 40px); } /* rating */ #home_top10 .recetaslider-rating, #familiarecetas_top10 .recetaslider-rating, #clasificacionrecetas_top10 .recetaslider-rating, #home_top10 .tipslider-rating{ display: table; } #home_top10 div[id^="p|kiwi|"] [class$="-rating"], #home_top10 div[id^="p|crafto|"] [class$="-rating"], #familiarecetas_top10 div[id^="p|kiwi|"] [class$="-rating"], #clasificacionrecetas_top10 div[id^="p|kiwi|"] [class$="-rating"]{ padding: 0px; } /* fin estilos slider top 10 */ /* Estilos feed fichas Normal */ /* Estilo solo para los tips, ya que slider top usa la misma ficha que en feed normal */ div[id^="p|kiwi|home"].feed-tip-ficha, div[id^="tiplist"] div[id^="p|kiwi|tipfamilia"], div[id^="tiplist"] div[id^="p|kiwi|tipclasificacion"], div[id^="tiplist"] div[id^="p|kiwi|tiphome"], div[id^="tiplist"] div[id^="p|crafto|tiphome"], div[id^="tiplist"] div[id^="p|crafto|tipfamilia"], div[id^="tiplist"] div[id^="p|crafto|tipclasificacion"]{ width: 300px; margin: 0px 10px 16px; height: 275px; } div[id^="tiplist"] div[id^="feed-tip-divimg"]{ height: 194px; width: 300px; } div[id^="p|kiwi|home"].feed-tip-ficha .feed-tip-nombreficha, div[id^="tiplist"] .feed-tip-nombreficha{ font-size: 17px; max-height: 38px; line-height: 18px; } div[id^="tiplist"].feedtiplist-crafto .feed-tip-nombreficha{ font-family: poppins-semibold; font-size: 15px; font-weight: normal !important; letter-spacing: 0.5px; color: var(--color-texto-base) !important; } div[id^="p|kiwi|home"].feed-tip-ficha div[id^="feed-tip-rating"], div[id^="tiplist"] div[id^="feed-tip-rating"]{ margin: 0px 0px 0px 10px; } /* fin Estilo solo para los tips */ div[id^="p|kiwi|"][class$="-ficha"], div[id^="p|kiwirec|"][class$="-ficha"], div[id^="p|crafto|tipcompilaciones|"].feed-compilaciontip-ficha, div[id^="p|crafto|"][class$="-articulo-ficha"]{ height: 275px; } div[id^="p|kiwi|client"][class$="feed-compilaciontip-ficha"] .compilaciontip-img, div[id^="p|crafto|client"][class$="feed-compilaciontip-ficha"] .compilaciontip-img{ transform: translateY(-50%); } div[id^="p|kiwi|client"][class$="-ficha"], div[id^="p|crafto|client"][class$="-ficha"]{ width: 300px; margin: 0px 10px 16px; } #prorecipeprolist .feed-producto-ficha{ width: 200px; margin: 20px 15px; display: inline-table; float: none !important; } /* div[id^="p|kiwi|probooks|"][class$="-ficha"], div[id^="p|kiwi|prorecipes|"][class$="-ficha"], div[id^="p|kiwi|procollections|"].coleccion-venta-soloportada */ div[id^="p|kiwi|probooks|"][class$="-ficha"], div[id^="p|kiwi|procollections|"].coleccion-venta-soloportada{ height: 262px; margin: 20px 15px; width: 200px; border-radius: 5px; float: none !important; display: inline-table; } div[id^="p|kiwi|procollections|"].coleccion-venta-ficha{ float: none !important; display: inline-table; } div[id^="p|kiwi|procollections|"].coleccion-venta-ficha .coleccionventa-area{ position: absolute; top: 50%; transform: translateY(-50%); vertical-align: top; width: 100%; } div[id^="p|kiwi|probooks|"] .feed-producto-div-nombreprod, div[id^="p|kiwi|prorecipes|"] .feed-producto-div-nombreprod{ display: none; } /* estilos fichas recetas slider pro*/ .pro-slider-fichaspro div[id^="p|kiwi|probooks|"].feed-producto-ficha{ width: 200px; height: 262px; margin: 20px 15px; border-radius: 5px; } .pro-slider-fichaspro .feed-receta-ficha{ width: 190px !important; margin: 0px 30px 0px 0px !important; position: relative; } .pro-slider-fichaspro .feed-divimagenficha{ width: 190px !important; height: 190px !important; } .pro-slider-fichaspro .feed-receta-ficha img{ left: 50% !important; top: 50% !important; transform: translateX(-50%) translateY(-50%) !important; height: 100%; width: auto !important; min-width: 300px; } .pro-slider-fichaspro .feed-receta-ficha hr, .pro-slider-fichaspro .feed-receta-nombrechef{ display: none; } .pro-slider-fichaspro .feed-recetapro-icon{ margin: 0px 0px 0px 10px !important; } .pro-slider-fichaspro .feed-receta-nombreficha-centrado{ max-height: 47px !important; width: calc(100% - 40px) !important; } /* fin estilos fichas recetas slider pro*/ /* estilos fichas donde vienen cosas revueltas de kiwipro en el home */ .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-articulo-ficha, .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-receta-ficha, .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-producto-ficha{ width: 200px !important; height: 272px; /* border-radius: 5px; */ margin: 0px 20px !important; background-color: #ffffff; } .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-producto-ficha{ float: left; } .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-articulo-ficha .feed-divimagenficha, .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-receta-ficha .feed-divimagenficha{ width: 100% !important; } .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-articulo-ficha .feed-divimagenficha img, .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-receta-ficha .feed-divimagenficha img{ height: 100%; } .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-articulo-ficha:first-child, .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-receta-ficha:first-child{ margin: 0px 20px 0px 0px !important; } #home-cont-kiwipro.home-cont-sliderpro div[id^="p|kiwi|pro|"] .feed-articulopro-divtextos-articulo, #home-cont-kiwipro.home-cont-sliderpro div[id^="p|kiwi|pro|"] [class$="recetapro-areanombreficha"]{ height: 62px; } .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-receta-ficha hr, .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-receta-ficha .feed-receta-nombrechef{ display: none; } .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-receta-ficha .feed-receta-rating{ position: relative; display: flex !important; justify-content: center; margin: -3px 0px 0px 0px !important; padding: 0px; } .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-articulo-ficha .feed-articulopro-separador, .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-articulo-ficha .feed-articulopro-nombre-autor{ display: none !important; } .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-articulo-ficha{ float: left; } /* .home-cont-sliderpro div[id^="p|kiwi|pro|"] .feed-articulo-divimg-articulo{ border-radius: 5px; } */ .home-cont-sliderpro div[id^="p|kiwi|pro|"] .feed-recetapro-areanombreficha .feed-recetapro-icon, .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-articulo-ficha .feed-articulopro-icon{ margin: 0px 0px 0px 10px !important; } .home-cont-sliderpro div[id^="p|kiwi|pro|"] .feed-recetapro-areanombreficha .feed-receta-nombreficha-centrado, .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-articulo-ficha .feed-articulopro-nombre-articulo{ width: calc(100% - 40px) !important; max-height: 46px; } .home-cont-sliderpro div[id^="p|kiwi|pro|"] .feed-recetapro-areanombreficha .feed-receta-nombreficha-centrado{ max-height: 46px !important; } .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-articulo-ficha .feed-articulopro-nombre-articulo{ /*max-height: 34px;*/ font-size: 16px; line-height: 15px; } .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-articulo-ficha .feed-articulopro-area-rating{ display: none !important; padding: 0px; bottom: -10px; left: 50%; transform: translateX(-50%); } .home-cont-sliderpro div[id^="p|kiwi|pro|"].feed-articulo-ficha .feed-articulo-clasificacion-articulo{ display: block !important; position: absolute; /*bottom: -10px;*/ bottom: -11px; width: 100%; text-align: center; font-style: italic; color: #aaaaaa; box-sizing: border-box; padding: 0px 10px; } /* fin estilos fichas donde vienen cosas revueltas de kiwipro en el home */ .pro-slider-fichaspro .feed-receta-rating{ margin: 0px auto !important; padding: 0px !important; } div[id^="p|kiwi|home|"].feed-compilaciontip-ficha, div[id^="p|crafto|tipcompilaciones|"].feed-compilaciontip-ficha{ margin: 0px 10px 16px; overflow: hidden; width: 300px; } div[id^="p|crafto|tipcompilations|"].feed-compilaciontip-ficha{ margin: 0px 10px 16px; width: 300px; } div[id^="p|kiwi|procollections|"].coleccion-venta-soloportada{ text-align: left; } div[id^="p|kiwi|"] [class$="-divimg-articulo"], div[id^="p|kiwirec|"] [class$="-divimg-articulo"], div[id^="p|crafto|"] [class$="-divimg-articulo"]{ position: relative; } div[id^="p|kiwi|"] [class$="-divimg"], div[id^="p|kiwi|home|"] [class$="-divimg"], div[id^="p|kiwirec|"] [class$="-divimg"], div[id^="p|kiwirec|home|"] [class$="-divimg"], div[id^="p|kiwi|"] [class$="-divimg-articulo"], div[id^="p|kiwirec|"] [class$="-divimg-articulo"], div[id^="p|crafto|"] [class$="-divimg"], div[id^="p|crafto|"] [class$="-divimg-articulo"]{ height: 194px; overflow: hidden; } div[id^="p|kiwi|"] .feed-compilaciontip-divimg, div[id^="p|crafto|"] .feed-compilaciontip-divimg{ width: 300px; } div[id^="p|kiwi|"] .feed-compilacionreceta-divimg .compilacionreceta-img, div[id^="p|crafto|tipcompilaciones|"].feed-compilaciontip-ficha .compilaciontip-img{ height: auto; } div[id^="p|crafto|"] .feed-compilaciontip-divimg .compilaciontip-img{ transform: translateY(-50%); } #home_videos div[id^="p|crafto|"] .feed-compilaciontip-divimg .compilaciontip-img{ transform: initial; } div[id^="p|kiwi|home|"] [class$="-divimg"] .imgcompilacion{ transform: translateY(-50%); } /* estilos feed normal articulos */ div[id^="p|kiwi|"][class$="feed-articulo-ficha"], div[id^="p|kiwirec|"][class$="feed-articulo-ficha"], div[id^="p|crafto|"][class$="feed-articulo-ficha"]{ background-color: #ffffff; float: left; margin: 0px 10px 16px; overflow: hidden; position: relative; width: 300px; } div[id^="p|kiwi|"] .feed-articulopro-divtextos-articulo, #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"] .feed-articulopro-divtextos-articulo{ display: flex; align-items: center; height: 52px; position: relative; } div[id^="p|kiwi|"] .feed-articulopro-area-titulo{ display: flex; align-items: center; position: relative; width: 100%; flex: auto; } #home_tecuidalist div[id^="p|kiwi|"] .feed-articulopro-icon{ margin: 0px 0px 0px 10px !important; } div[id^="p|kiwi|"] .feed-articulopro-nombre-articulo{ box-sizing: border-box; color: #8eb4b1; font-family: crimsonpro-semibold; font-size: 19px; text-transform: uppercase; width: calc(100% - 50px); line-height: 17px; max-height: 38px; overflow: hidden; padding: 0px 10px; position: absolute; right: 0px; } #home_tecuidalist div[id^="p|kiwi|"] .feed-articulopro-nombre-articulo{ font-size: 17px; line-height: 15px; max-height: 46px; width: calc(100% - 40px); text-transform: initial; } #home_tecuidalist div[id^="p|kiwi|"] .feed-articulopro-separador{ display: none !important; } div[id^="p|kiwi|"] .feed-articulo-nombre-articulo, div[id^="p|kiwirec|"] .feed-articulo-nombre-articulo, div[id^="p|crafto|"] .feed-articulo-nombre-articulo{ box-sizing: border-box; color: #000000; font-size: 17px; font-weight: bold; line-height: 18px; max-height: 38px; overflow: hidden; padding: 0px 10px; position: absolute; text-align: center; top: 50%; transform: translateY(-50%); width: 100%; } div[id^="p|kiwi|"] .feed-articulopro-desc-articulo, div[id^="p|kiwi|"] .feed-articulo-desc-articulo, div[id^="p|kiwirec|"] .feed-articulo-desc-articulo, div[id^="p|crafto|"] .feed-articulo-desc-articulo{ display: none; } div[id^="p|kiwi|"] .feed-articulopro-separador, div[id^="p|kiwi|"] .feed-articulo-separador, div[id^="p|kiwirec|"] .feed-articulo-separador, div[id^="p|crafto|"] .feed-articulo-separador{ display: block !important; bottom: -2px; } div[id^="p|kiwi|"] .feed-articulopro-nombre-autor, div[id^="p|kiwi|"] .feed-articulo-nombre-autor, div[id^="p|kiwirec|"] .feed-articulopro-nombre-autor, div[id^="p|kiwirec|"] .feed-articulo-nombre-autor, div[id^="p|crafto|"] .feed-articulo-nombre-autor{ display: block !important; position: absolute; bottom: -22px; right: 10px; font-style: italic; color: #aaaaaa; /*bottom: 7px;*/ } div[id^="p|kiwi|"] .feed-articulopro-area-rating, div[id^="p|kiwi|"] .feed-articulo-area-rating, div[id^="p|crafto|"] .feed-articulo-area-rating{ display: block !important; position: absolute; bottom: -23px; left: 10px; /*bottom: 6px;*/ height: 13px !important; } .feedtiplist-crafto div[id^="p|crafto|"] .feed-articulo-area-rating, .feedtiplist-kiwi div[id^="p|kiwi|"] .feed-articulo-area-rating, .feedtiplist-kiwirec div[id^="p|kiwirec|"] .feed-articulo-area-rating{ left: 0px; } div[id^="p|kiwi|"] .feed-articulopro-area-rating .feed-articulo-rating, div[id^="p|kiwi|"] .feed-articulo-area-rating .feed-articulo-rating, div[id^="p|kiwirec|"] .feed-articulo-area-rating .feed-articulo-rating{ color: #8cc63e; } /* fin estilos feed normal articulos */ /* estilos para ficha tips en home principal kiwi */ #home_tips div[id^="p|kiwi|tiphome|"][class$="-ficha"]{ width: 600px; height: auto; margin: 0px 15px 0px 0px; } #home_tips div[id^="p|kiwi|tiphome|"][class$="-ficha"] .feed-tip-divimg{ float: left; width: 265px; height: 265px; } #home_tips div[id^="p|kiwi|tiphome|"][class$="-ficha"] .feed-tip-areanombreficha{ float: left; width: calc(100% - 265px); height: 265px; } #home_tips div[id^="p|kiwi|tiphome|"][class$="-ficha"] .feed-tip-nombreficha-div{ color: #333333; /*font-size: 18px;*/ font-size: 20px; font-weight: bold; /*line-height: 20px;*/ line-height: 22px; margin: 0px 0px 15px; /*max-height: 62px;*/ max-height: 68px; padding: 0px 10px; overflow: hidden; text-transform: uppercase; text-align: left; } #home_tips div[id^="p|kiwi|tiphome|"][class$="-ficha"] .feed-tip-descripcionficha{ box-sizing: border-box; color: #333333; font-size: 15px; font-weight: normal; line-height: 19px; max-height: 98px; overflow: hidden; padding: 0px 10px; position: relative; width: 100%; text-align: left; display: block !important; } #home_tips div[id^="p|kiwi|tiphome|"][class$="-ficha"] .feed-tip-ficha-linkvertip{ font-size: 16px; color: #8cc63e; text-align: left; margin: 10px 0px 0px; padding: 0px 10px; line-height: 22px; display: block !important; } .icon-k7-link-vertip:before{content: "\\e923";} #home_tips div[id^="p|kiwi|tiphome|"][class$="-ficha"] hr, #home_tips div[id^="p|kiwi|tiphome|"][class$="-ficha"] .feed-tip-rating, #home_tips div[id^="p|kiwi|tiphome|"][class$="-ficha"] .feed-tip-nombrechef{ display: none !important; } /* estilos para ficha tips en home principal kiwi */ /* estilos home fichas notas blog */ #home_notasblog div[id^="p|kiwi|articlehome|"].feed-articulo-ficha, #home_notasblog div[id^="p|kiwirec|articlehome|"].feed-articulo-ficha{ background-color: #ffffff; width: 190px; height: 265px; float: left; position: relative; margin: 0px 15px 0px 0px; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-divimg-articulo, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-divimg-articulo{ /*height: 190px;*/ height: 180px; position: relative; overflow: hidden; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-divtextos-articulo, #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulopro-divtextos-articulo, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-divtextos-articulo{ /*height: 75px;*/ height: 85px; position: relative; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-titulo-seccion, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-titulo-seccion{ display: none; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-nombre-articulo, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-nombre-articulo{ box-sizing: border-box; line-height: 15px; overflow: hidden; /*padding: 0px 10px;*/ padding: 0px 7px; position: absolute; text-align: center; /*text-transform: uppercase;*/ top: 38%; /*transform: translateY(-50%);*/ transform: translateY(-46%); width: 100%; font-weight: bold; font-size: 14px; color: #000000; max-height: 46px; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulopro-area-titulo{ position: absolute; top: 38%; transform: translateY(-46%); } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulopro-icon{ margin: 0px 0px 0px 10px !important; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulopro-nombre-articulo{ font-size: 17px; line-height: 15px; max-height: 45px; width: calc(100% - 40px) !important; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-titulo-nombreseccion, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-titulo-nombreseccion{ background-color: #8cc63e; box-sizing: border-box; color: #ffffff; font-size: 11px; left: 0px; letter-spacing: 1px; max-width: 140px; padding: 8px 13px; position: absolute; text-transform: uppercase; top: 15px; display: block !important; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_3, #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_11, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_3, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_11{ background-color: #9ec410; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_30, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_30{ background-color: #f05d7f; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_1, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_1{ background-color: #28d9ff; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_44, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_44{ background-color: #2e94ba; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_20, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_20{ background-color: #efc950; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_54, #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_54{ background-color: #f39041; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_25, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-titulo-nombreseccion.id_tema_25{ background-color: #ca5dde; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-nombre-autor, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-nombre-autor{ display: block !important; box-sizing: border-box; padding: 0px 10px; text-align: center; color: #aaaaaa; font-family: 'source sans pro'; font-style: italic; font-size: 12px; height: 15px; overflow: hidden; position: absolute; bottom: 5px; right: 0px; width: 100%; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulopro-nombre-autor{ display: block !important; left: 50%; transform: translate(-50%); bottom: 8px; font-size: 12px; width: -webkit-fit-content; width: -moz-fit-content; width: -o-fit-content; width: -ms-fit-content; width: fit-content; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-area-rating, #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulopro-area-rating, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-area-rating, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulopro-area-rating{ display: none !important; } #home_notasblog div[id^="p|kiwi|articlehome|"] .feed-articulo-desc-articulo, #home_notasblog div[id^="p|kiwirec|articlehome|"] .feed-articulo-desc-articulo{ display: none; } /* fin home estilos fichas notas blog */ /* estilos home fichas te cuida */ #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha{ background-color: #ffffff; display: table; float: left; margin: 0px 15px 0px 0px; position: relative; width: 190px; } #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulo-divcontenido{ height: inherit; position: relative; } #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulo-divimg-articulo{ width: 100%; /*height: 190px;*/ height: 180px; position: relative; overflow: hidden; } #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulo-divimg-articulo img{ vertical-align: top; } #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulo-divtextos-articulo, #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"] .feed-articulopro-divtextos-articulo{ height: 62px; position: relative; } #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulo-nombre-articulo{ box-sizing: border-box; line-height: 15px; overflow: hidden; /*padding: 0px 10px;*/ padding: 0px 7px; position: absolute; text-align: center; /*text-transform: uppercase;*/ top: 50%; transform: translateY(-50%); width: 100%; } #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulo-separador{ display: none !important; } #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulo-area-rating, #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulopro-area-rating{ display: block !important; color: #8cc63e; position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); } #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulopro-area-rating{ left: 50%; transform: translateX(-50%); bottom: -16px; } #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulo-desc-articulo, #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulo-nombre-autor, #home_tecuidalist div[id^="p|kiwi|articuloclasificacion|"].feed-articulo-ficha .feed-articulopro-nombre-autor{ display: none !important; } /* fin estilos home fichas te cuida */ /* estilos fichas productos feed normal */ div[id^="p|kiwi|"] .feed-producto-divimg, div[id^="p|kiwirec|"] .feed-producto-divimg, div[id^="p|kiwi|home|"] .feed-producto-divimg{ height: 233px; } /* estilos fichas productos feed normal */ div[id^="p|kiwi|probooks|"] .feed-producto-divimg, div[id^="p|kiwi|prorecipes|"] .feed-producto-divimg{ height: 100%; } div[id^="p|kiwi|"] [class$="-areanombreficha"], div[id^="p|kiwirec|"] [class$="-areanombreficha"], div[id^="p|crafto|"] [class$="-areanombreficha"], div[id^="p|kiwi|"] .feed-articulo-divtextos-articulo, div[id^="p|kiwirec|"] .feed-articulo-divtextos-articulo, div[id^="p|crafto|"] .feed-articulo-divtextos-articulo{ height: 52px; } div[id^="p|kiwi|"] .feed-articulo-divtextos-articulo, div[id^="p|kiwirec|"] .feed-articulo-divtextos-articulo, div[id^="p|crafto|"] .feed-articulo-divtextos-articulo{ position: relative; } div[id^="p|kiwi|"] [class$="recetapro-areanombreficha"]{ height: 52px; display: flex; align-items: center; } div[id^="p|kiwi|"] .feed-compilacionreceta-areanombreficha, div[id^="p|kiwi|"] .feed-compilaciontip-areanombreficha, div[id^="p|crafto|"] .feed-compilaciontip-areanombreficha{ height: 42px; } div[id^="p|kiwi|"] .feed-compilaciontip-areanombreficha .feed-compilaciontip-nombreficha, div[id^="p|crafto|"] .feed-compilaciontip-areanombreficha .feed-compilaciontip-nombreficha{ color: #000000; font-size: 17px; font-weight: bold; line-height: 18px; max-height: 38px; } div[id^="p|kiwi|"] [class$="-titulo-seccion"], div[id^="p|kiwirec|"] [class$="-titulo-seccion"], div[id^="p|crafto|"] [class$="-titulo-seccion"]{ display: none; } div[id^="p|kiwi|"] [class$="-rating"], div[id^="p|kiwirec|"] [class$="-rating"], div[id^="p|crafto|"] [class$="-rating"]{ padding: 8px 0px 0px; } div[id^="p|crafto|client|"].feed-tip-ficha{ height: 275px; } div[id^="p|kiwi|client|"] [class$="-rating"], div[id^="p|crafto|client|"] [class$="-rating"]{ margin: 0px 0px 0px 10px; height: 275px; } div[id^="p|kiwi|"] [class$="-nombrechef"], div[id^="p|kiwirec|"] [class$="-nombrechef"], div[id^="p|crafto|"] [class$="-nombrechef"]{ bottom: 5px; } .feedtiplist-crafto div[id^="p|crafto|"] [class$="-nombrechef"]{ font-family: poppins-light !important; font-size: 11px !important; letter-spacing: 0.5px; color: var(--color-texto-base) !important; } /* Estilos feed fichas home videos compilacion craftologia / home tips kiwi */ #home_videos .feed-compilaciontip-ficha{ height: auto; margin: 0px 10px 16px; width: 300px; color: var(--color-texto-base) !important; } div[id^="p|kiwi|tiphomecompilacion"] .feed-compilaciontip-divimg, div[id^="p|crafto|tiphomecompilacion"] .feed-compilaciontip-divimg{ height: 222px; overflow: hidden; } div[id^="p|kiwi|tiphomecompilacion"] .feed-compilaciontip-divimg img, div[id^="p|crafto|tiphomecompilacion"] .feed-compilaciontip-divimg img { top: initial !important; } div[id^="p|kiwi|tiphomecompilacion"] .feed-compilaciontip-divimg .imgcompilacion, div[id^="p|crafto|tiphomecompilacion"] .feed-compilaciontip-divimg .imgcompilacion, div[id^="p|crafto|crosslink"] .feed-compilaciontip-divimg .compilaciontip-img{ transform: translateX(-50%) translateY(-50%); } div[id^="p|kiwi|tiphomecompilacion"] .feed-linea-separador-compilacion, div[id^="p|kiwi|tiphomecompilacion"] .feed-compilaciontip-descripcion, div[id^="p|crafto|tiphomecompilacion"] .feed-linea-separador-compilacion, div[id^="p|crafto|tiphomecompilacion"] .feed-compilaciontip-descripcion{ display: none; } #home_videos div[id^="p|kiwi|tiphomecompilacion"] .feed-compilaciontip-areanombreficha, #home_videos div[id^="p|crafto|tiphomecompilacion"] .feed-compilaciontip-areanombreficha{ height: 75px; } div[id^="p|crafto|crosslink"] .feed-compilaciontip-divimg .compilaciontip-img{ height: inherit; } /* Fin Estilos feed fichas home videos compilacion craftologia */ /* Estilos caja recomendaciones de tips */ .tip-recomendaciones .feed-tip-ficha .feed-tippro-icon{ width: 20px !important; height: 20px !important; font-size: 13px !important; } .tip-recomendaciones .feed-tip-ficha .feed-tip-nombrefichapro-centrado{ width: calc(100% - 30px) !important; } /* Fin estilos caja recomendaciones de tips */ /* Fin Estilos feed fichas Normal */ /* Estilos feed fichas Busqueda */ div[id^="p|search|"].feed-tip-ficha{ width: 300px; margin: 0px 10px 16px; } #searchlist div[id^="p|search|"][class$="-ficha"], .searchlist-muestra{ height: 250px; } #searchlist .coleccion-venta-soloportada{ height: 250px !important; margin: 0px 10px 16px !important; width: 300px !important; } #searchlist .coleccion-venta-soloportada img{ top: 0px !important; transform: initial !important; } #te-cuida-divcont-consejos-tips #searchlist div[id^="p|search|"][class$="-ficha"]{ height: auto; } #te-cuida-divcont-consejos-tips .feed-articulo-ficha{ height: auto; } div[id^="p|search|"] .feed-tip-divimg, div[id^="p|search|"].feed-compilaciontip-ficha{ width: 300px; } div[id^="p|search|"].feed-compilaciontip-ficha{ margin: 0px 10px 16px; } div[id^="p|search|"] [class$="-divimg"]{ height: 185px; } div[id^="p|search|"] .feed-compilacionreceta-divimg, div[id^="p|search|"] .feed-compilaciontip-divimg{ height: 208px; } div[id^="p|search|"] .feed-compilaciontip-divimg .compilaciontip-img{ transform: translateY(-50%); } div[id^="p|search|"] [class$="-areanombreficha"]{ height: 42px; } div[id^="p|search|"] [class$="recetapro-areanombreficha"]{ height: 42px; display: flex; align-items: center; } div[id^="p|search|"] .feed-compilaciontip-areanombreficha .feed-compilaciontip-nombreficha{ color: #000000; font-size: 17px; font-weight: bold; line-height: 18px; max-height: 38px; } div[id^="p|search|"] .feed-tip-nombreficha{ font-size: 17px; max-height: 38px; line-height: 18px; } div[id^="p|search|"] .feed-linea-separador-compilacion, div[id^="p|search|"] .feed-compilacionreceta-descripcion, div[id^="p|search|"] .feed-compilaciontip-descripcion{ display: none; } div[id^="p|search|"] [class$="-titulo-seccion"]{ display: block; } div[id^="p|search|"] [class$="-rating"]{ padding: 4px 0px 0px; } div[id^="p|search"] div[id^="feed-tip-rating"]{ margin: 0px 0px 0px 10px; } div[id^="p|search|"] [class$="-nombrechef"]{ bottom: 3px; } /* fichas articulo */ div[id^="p|search|"].feed-articulo-ficha{ background-color: #ffffff; float: left; margin: 0px 10px 16px; overflow: hidden; position: relative; width: 300px; display: flex; flex-direction: column; } div[id^="p|search|"] .feed-articulo-divcontenido{ width: 100% } div[id^="p|search|"] .feed-articulo-divimg-articulo{ width: 100%; height: 208px; overflow: hidden; position: relative; } div[id^="p|search|"] .feed-articulo-divtextos-articulo, div[id^="p|search|"] .feed-articulopro-divtextos-articulo{ height: 42px; position: relative; } div[id^="p|search|"] .feed-articulopro-divtextos-articulo{ display: flex; align-items: center; } div[id^="p|search|"] .feed-articulo-nombre-articulo, div[id^="p|search|"] .feed-articulopro-nombre-articulo{ color: #333333; text-decoration: none; font-size: 17px; font-weight: bold; line-height: 18px; max-height: 38px; overflow: hidden; position: absolute; text-align: center; top: 50%; transform: translateY(-50%); width: 100%; padding: 0px 10px; box-sizing: border-box; } div[id^="p|search|"] .feed-articulopro-nombre-articulo{ color: #8eb4b1; font-family: crimsonpro-semibold; font-size: 16px; line-height: 15px; right: 0px; text-align: left; text-transform: uppercase; width: calc(100% - 50px); max-height: 32px; } div[id^="p|search|"] .feed-articulo-desc-articulo, div[id^="p|search|"] .feed-articulopro-desc-articulo{ display: none; } /* fin fichas articulo */ /* estilos fichas productos feed busqueda */ div[id^="p|search|"] .feed-producto-divimg{ height: 208px; } /* estilos fichas productos feed busqueda */ /* Estilos feed fichas Busqueda */ /* Estilo publicidad en feed */ .buildad.feed{ margin: 0px 10px 16px; float: left; } /* fin Estilo publicidad en feed */ /* Estilo para ficha newsletter - columna derecha */ .feed-newsletter-ficha{ margin: 20px auto 10px; } /* fin Estilo para ficha newsletter */ /* icono seguir chef */ .icon-k7-seguir-chef:before{content: "\\e918";} /* */ /* estilos feed recetarios */ div[id^="p|kiwi|recipebooks|"].feed-producto-ficha, div[id^="p|kiwirec|recipebooks|"].feed-producto-ficha{ width: 300px; margin: 0px 10px 16px; } /* fin estilos feed recetarios */ /* estilo sombra blanquecina sobre fichas de contenido interno */ /* .general-container .shadow-gris */ /* .shadow-gris{ position: absolute; top: 0px; bottom: 0px; width: 100%; background-color: #ffffff; opacity: 0.8; z-index: 10; } */ .feedficha-bloqueo { position: absolute; display: flex; justify-content: center; align-items: center; right: 9px; top: 9px; width: 30px; height: 30px; background-color: var(--azul-kiwipro); border: 1px solid var(--azul-kiwipro); border-radius: 100%; z-index: 5; } /* estilo sombra blanquecina sobre fichas de contenido interno */`); KL.loader.createCSS(`/* slider */ .slider { position: relative; overflow: hidden; height: auto; } .slider-container { width: 100000px; height: auto; position: relative; left: 0; transition: all 1s ease 0s; } .slider-container.noanim { transition: none; } .slider-container:after { content: ""; clear: both; } .icon-k7-slider-previous:before{content: "\\e948";} .icon-k7-slider-next:before{content: "\\e947";} .slider-button { position: absolute; width: 17px; height: 18px; border-radius: 50%; cursor: pointer; background-color: rgba(255, 255, 255, 0.8); z-index: 15; padding: 7px; padding-left: 8px; top: 50%; margin-top: -20px; box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); transition: opacity 0.2s ease 0s; opacity: 0.8; font-size: 16px; font-weight: 700; color: #aaa; } .slider-button.left { left: 5px; } .slider-button.left:hover { color: #333; } .slider-button.right { right: 5px; } .slider-button.right:hover { color: #333; } `); KL.loader.createCSS(`.recipelist-button { background-color: #ffffff; border-radius: 2px; color: #222; cursor: pointer; float: left; font-size: 1.1em; font-weight: normal; margin: 5px 10px; padding: 14px; text-align: center; width: 29.45%; } .home-recipelist-pro .recipelist-button.on, .familia-recipelist-pro .recipelist-button.on, .clasificacion-recipelistpro .recipelist-button.on{ background-color: var(--azul-kiwipro); color: white; position: relative; } .recipelist-button.on { background-color: var(--verde-kiwi); color: white; position: relative; } /* .recipelist-button.on:after { content: ''; position: absolute; bottom: -10px; left: 50%; margin-left: -15px; width: 0; height: 0; border-top: solid 10px #8CC63E; border-left: solid 10px transparent; border-right: solid 10px transparent; } */ .icon-k7-recipelist-seemore:before{content: "\\e956";} `); KL.loader.createCSS(`@font-face { font-family: 'museo-sans'; src: local('museo-sans-500'), url('/fonts/museo-sans-500.eot?#iefix') format('embedded-opentype'), url('/fonts/museo-sans-500.ttf') format('truetype'); font-weight: normal; font-style: normal; } @font-face { font-family: 'museo-sans-semibold'; src: local('museo-sans-700'), url('/fonts/museo-sans-700.eot?#iefix') format('embedded-opentype'), url('/fonts/museo-sans-700.ttf') format('truetype'); font-weight: normal; font-style: normal; } @font-face { font-family: 'museo-sans-bold'; src: local('museo-sans-900'), url('/fonts/museo-sans-900.eot?#iefix') format('embedded-opentype'), url('/fonts/museo-sans-900.ttf') format('truetype'); font-weight: normal; font-style: normal; } #tecuida-thumbs-dietas img, #tecuida-recetas-saludables img{ border-radius: 100%; margin: 0px 0px 20px !important; width: 105px !important; height: 105px !important; } #tecuida-thumbs-dietas .slider-container div, #tecuida-recetas-saludables .slider-container div{ padding: 0px 25px !important; } #tecuida-thumbs-dietas .slider-container div:first-child, #tecuida-recetas-saludables .slider-container div:first-child{ padding: 0px 7px 0px 0px !important; } #tecuida-thumbs-dietas .slider-container div:last-child, #tecuida-recetas-saludables .slider-container div:last-child{ padding: 0px 0px 0px 7px !important; } #tecuida-thumbs-dietas .slider-container div a, #tecuida-recetas-saludables .slider-container div a{ font-family: museo-sans-semibold; font-size: 14px !important; /* font-weight: bold; */ text-align: center; color: #999999 !important; text-decoration: none; text-transform: uppercase; } #tecuida-thumbs-dietas .slider-container div:hover img, #tecuida-recetas-saludables .slider-container div:hover img{ filter: brightness(0.7); } #tecuida-thumbs-dietas .slider-container div:hover a, #tecuida-recetas-saludables .slider-container div:hover a{ color: var(--verde-kiwi) !important; } /* #tecuida-thumbs-dietas .slider .slider-button.left, #tecuida-thumbs-dietas .slider .slider-button.right{ display: none; } */ .te-cuida-div-articulo-item{ box-sizing: border-box; background-color: #ffffff; display: flex; position: relative; width: 580px; height: 265px; margin: 15px 0px; font-family: museo-sans; text-align: left; -webkit-transition: 650ms all; transition: 650ms all; -webkit-transform-origin: center top; } .te-cuida-div-articulo-item .te-cuida-articulo-img{ position: relative; width: 265px; -webkit-transition: 650ms all; transition: 650ms all; } .te-cuida-articulo-divtextos{ box-sizing: border-box; position: relative; width: 100%; padding: 30px 25px; -webkit-transition: 650ms all; transition: 650ms all; } .te-cuida-div-articulo-item:hover{ margin: 15px 0px 0px; height: 274px; width: 600px; } .te-cuida-div-articulo-item:hover .te-cuida-articulo-img{ width: 274px; } /* Slider articulos blog */ #te-cuida-divcont-consejos-tips .slider{ box-sizing: border-box; margin: 30px auto 0px !important; width: 1280px; } #te-cuida-divcont-consejos-tips .slider-container{ /* width: 5200px !important; */ width: 12800px !important; } #te-cuida-divcont-consejos-tips .feed-articulo-ficha{ box-sizing: border-box; float: left; position: relative; width: 640px; font-family: museo-sans; text-align: left; padding: 20px; } #te-cuida-divcont-consejos-tips .feed-articulo-divcontenido{ box-sizing: border-box; position: relative; display: flex; width: 580px; height: 265px; background-color: #ffffff; margin: 0px auto; } #te-cuida-divcont-consejos-tips .feed-articulo-href-articulo{ /* display: flex; width: 100%; height: inherit; */ } #te-cuida-divcont-consejos-tips .feed-articulo-divimg-articulo{ position: relative; height: inherit; width: 265px; /* -webkit-transition: 650ms all; transition: 650ms all;} */ } #te-cuida-divcont-consejos-tips .feed-articulo-divimg-articulo img{ height: inherit; } #te-cuida-divcont-consejos-tips .feed-articulo-divimg-articulo .feed-articulo-titulo-seccion{ display: none; } #te-cuida-divcont-consejos-tips .feed-articulo-divtextos-articulo, #te-cuida-divcont-consejos-tips .feed-articulopro-divtextos-articulo{ box-sizing: border-box; padding: 30px 25px; position: relative; width: calc(100% - 265px); height: auto; /* -webkit-transition: 650ms all; transition: 650ms all; */ } #te-cuida-divcont-consejos-tips .feed-articulopro-divtextos-articulo{ flex-direction: column; } /* #te-cuida-divcont-consejos-tips .feed-articulopro-area-titulo{ margin: -8px 0px 0px; } */ #te-cuida-divcont-consejos-tips .feed-articulopro-icon{ margin: 0px !important; } #te-cuida-divcont-consejos-tips .feed-articulopro-nombre-articulo{ width: calc(100% - 30px) !important; line-height: 20px; font-size: 23px; max-height: 63px; padding: 0px 0px 0px 10px; } #te-cuida-divcont-consejos-tips .feed-articulo-separador{ display: none !important; } #te-cuida-divcont-consejos-tips .feed-articulo-nombre-articulo{ font-family: museo-sans-bold; font-size: 18px; position: relative; width: 100%; max-height: 59px; overflow: hidden; text-align: left; text-transform: uppercase; line-height: 1.1em; letter-spacing: 0.72px; color: #333333; box-sizing: border-box; padding: 2px 0px; top: initial; transform: none; } #te-cuida-divcont-consejos-tips .feed-articulo-area-rating, #te-cuida-divcont-consejos-tips .feed-articulo-nombre-autor, #te-cuida-divcont-consejos-tips .feed-articulopro-nombre-autor, #te-cuida-divcont-consejos-tips .feed-articulopro-area-rating{ display: none !important; } #te-cuida-divcont-consejos-tips .feed-articulo-desc-articulo, #te-cuida-divcont-consejos-tips .feed-articulopro-desc-articulo{ font-family: museo-sans; font-size: 16px; margin: 5px 0px 0px; position: relative; max-height: 134px; overflow: hidden; width: 100%; line-height: 1.19em; color: #555555; display: block; } #te-cuida-divcont-consejos-tips .feed-articulopro-desc-articulo{ margin: 5px 0px 0px; } #te-cuida-divcont-consejos-tips .tools-container { /* left: 225px; */ left: 255px; top: 30px; } #te-cuida-divcont-consejos-tips .slider-container .tools-shadow{ display: block; top: 20px; bottom: 20px; left: 30px; width: calc(100% - 60px); } /* fin Slider articulos blog */ #tecuida-recipelist .feed-receta-divimg img{ left: 50%; transform: translateX(-50%) translateY(-50%) !important; -webkit-transition: 650ms all; transition: 650ms all; } #tecuida-recipelist .feed-receta-divimg:hover img{ width: 114% !important; } `); WA.templates['te-cuida'] = WA.templater`
Kiwi te cuida

Diets

Mayte Martín del Campo
Mayte Martín del Campo
With over 23 years of experience, she is the founder and partner of Maks Nutrición, where she teaches and is committed to the care and nutrition of the body to generate well-being for the whole family. Her philosophy is: "let's embark on the journey: life with a healthy body".

www.maks.com.mx
Gina Rangel
Gina Rangel
Chef, health coach (certified by IIN, Integrative Institute of Nutrition of New York), and mom. She has studies in Bodhi Medicine, Infant Nutrition, and Clean Food. She currently specializes in digestive medicine and trophology.

www.ginahealthymom.com
Jennifer Asencio
Jennifer Asencio
Clinical Nutritionist, specialist in diabetes and patients with renal diseases, with over 20 years of experience. She has postgraduate studies in molecular biology. She is the creator of Nutriologa en casa and the Nutrition Alley brand.

www.nutriologaencasa.com
${['call', 'slider','recipedietas']}

Tips and Advice

${['call', 'slider','articlelist']}

Healthy Recipes

${['call', 'slider','recipesaludables']}
${['call', 'recipelist','recipelist']}
`; WA.templates['recipeclassificationdata'] = WA.templater`

${'h1title'}

${'description'}
`; WA.templates['gallery'] = WA.templater`
${['loop', 'slides','amp-gallery-slide']}
`; WA.templates['amp-gallery-slide'] = WA.templater`
${['cond', 'container','tipocontainer']}
`; WA.templates['tipocontainer'] = WA.templater` `; WA.templates['tipocontainer.galeriahome'] = WA.templater` `; WA.templates['tipocontainer.craftohome'] = WA.templater` `; WA.templates['tipocontainer.galeria'] = WA.templater` ${['cond', 'sliderhomeblog>key','ampkeygaleria']} `; WA.templates['ampkeygaleria.124'] = WA.templater` `; WA.templates['gallery-ampslide-blog-image'] = WA.templater` ${'mobileimage'}`; WA.templates['gallery-ampslide-blog-image.none'] = WA.templater` ${'image'}`; WA.templates['ampkeygaleria'] = WA.templater` `; WA.templates['slider'] = WA.templater`
${['loop', 'families','slider_families']} ${['loop', 'classifications','slider_classifications']} ${['loop', 'payload','feedslider']}
`; WA.templates['slider_classifications'] = WA.templater` ${['cond', 'numberarticles','numeroarticulos']} `; WA.templates['numeroarticulos'] = WA.templater` `; WA.templates['numeroarticulos.none'] = WA.templater` `; WA.templates['slider-icon-clasificacion.none'] = WA.templater` 70x70/${'image'}.webp`; WA.templates['slider-icon-clasificacion'] = WA.templater` 70x70/${'icon'}.webp`; WA.templates['tools'] = WA.templater` `; WA.templates['tools_collectionitem.none'] = WA.templater` There are no collections yet `; WA.templates['tools_collectionselect'] = WA.templater`
Select a collection
${['loop', 'items','tools_collectionitem']}
or
`; WA.templates['tools_collectionitem'] = WA.templater`
${'nombre'}
`; WA.templates['feed'] = WA.templater`
${['loop', 'payload','feedamp_payload']}
`; WA.templates['feed_newsletter'] = WA.templater`

Sign up for the newsletter

and receive the best Kiwilimón recipes.

Subscribe
`; WA.templates['feedamp_payload_none'] = WA.templater` `; WA.templates['feed_clasificacionreceta'] = WA.templater` `; WA.templates['src-clasificacionreceta1.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-clasificacionreceta2'] = WA.templater` /recetaimagen/${'ci2'}/${'i2'}`; WA.templates['src-clasificacionreceta2.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-clasificacionreceta3'] = WA.templater` /recetaimagen/${'ci3'}/${'i3'}`; WA.templates['src-clasificacionreceta3.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-clasificacionreceta4'] = WA.templater` /recetaimagen/${'ci4'}/${'i4'}`; WA.templates['src-clasificacionreceta4.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-clasificacionreceta1'] = WA.templater` /recetaimagen/${'ci1'}/${'i1'}`; WA.templates['feed_coleccionventa'] = WA.templater` ${['cond', 'i','portadacoleccion']} `; WA.templates['portadacoleccion'] = WA.templater` `; WA.templates['imgcoleccion.none'] = WA.templater` `; WA.templates['imgcoleccion'] = WA.templater` /coleccionventa/${'k'}/${'i'}`; WA.templates['portadacoleccion.none'] = WA.templater`
${'n'}
Sale Collection
`; WA.templates['coleccion4.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['coleccion1'] = WA.templater` /recetaimagen/${'ci1'}/${'i1'}`; WA.templates['coleccion1.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['coleccion2'] = WA.templater` /recetaimagen/${'ci2'}/${'i2'}`; WA.templates['coleccion2.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['coleccion3'] = WA.templater` /recetaimagen/${'ci3'}/${'i3'}`; WA.templates['coleccion3.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['coleccion4'] = WA.templater` /recetaimagen/${'ci4'}/${'i4'}`; WA.templates['feed_tipslider'] = WA.templater` `; WA.templates['src-tipslider.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['nivelfichatipslider.none'] = WA.templater` `; WA.templates['estatustipslider.10'] = WA.templater`
${'n'}
`; WA.templates['estatustipslider'] = WA.templater`
${'n'}
`; WA.templates['src-tipslider'] = WA.templater` /ss_secreto/${'k'}/${'i'}`; WA.templates['nivelfichatipslider.3'] = WA.templater` ${['cond', 'datachefconectado>client>p','nivelfichatipproslider']} `; WA.templates['nivelfichatipproslider'] = WA.templater` `; WA.templates['nivelfichatipproslider.none'] = WA.templater` ${['cond', 'siteorigin','origenfeedinternotipproslider']} `; WA.templates['origenfeedinternotipproslider.kiwi'] = WA.templater`
`; WA.templates['nivelfichatipslider.1'] = WA.templater` `; WA.templates['nivelfichatipslider.2'] = WA.templater` ${['cond', 'datachefconectado>client>p','nivelfichatipnormalslider']} `; WA.templates['nivelfichatipnormalslider'] = WA.templater` `; WA.templates['nivelfichatipnormalslider.none'] = WA.templater` ${['cond', 'siteorigin','origenfeedinternotipslider']} `; WA.templates['origenfeedinternotipslider.kiwi'] = WA.templater`
`; WA.templates['nivelfichatipslider'] = WA.templater` `; WA.templates['feed_quiz'] = WA.templater` `; WA.templates['src-quizz'] = WA.templater` /quizz/${'k'}/${'i'}`; WA.templates['src-quizz.none'] = WA.templater` /img/static/logo_o-400x300.png`; WA.templates['feed_sinfoto'] = WA.templater` ${['cond', 'tipoevento','feedfichaeventosinfoto']} `; WA.templates['feedfichaeventosinfoto.103'] = WA.templater`
${'fecha'}
${'titulo'}
`; WA.templates['feedfichaeventosinfoto.101'] = WA.templater`
${'fecha'}
${'titulo'}
`; WA.templates['feedfichaeventosinfoto'] = WA.templater`
${'fecha'}
${'titulo'}
${'mensaje'}
`; WA.templates['feed_articulolarge'] = WA.templater` `; WA.templates['src-articulolarge.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-articulolarge'] = WA.templater` ${'ip'}`; WA.templates['feed_compilacionrecetaslider'] = WA.templater` `; WA.templates['src-compilacionrecetaslider'] = WA.templater` /menu/${'k'}/${'i'}`; WA.templates['src-compilacionrecetaslider.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['feed_articuloclasificacion'] = WA.templater` `; WA.templates['src-clasificacionarticulo3.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-clasificacionarticulo4'] = WA.templater` /articuloimagen/${'ci4'}/${'i4'}`; WA.templates['src-clasificacionarticulo4.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-clasificacionarticulo1'] = WA.templater` /articuloimagen/${'ci1'}/${'i1'}`; WA.templates['src-clasificacionarticulo1.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-clasificacionarticulo2'] = WA.templater` /articuloimagen/${'ci2'}/${'i2'}`; WA.templates['src-clasificacionarticulo2.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-clasificacionarticulo3'] = WA.templater` /articuloimagen/${'ci3'}/${'i3'}`; WA.templates['feed_producto'] = WA.templater` ${['cond', 'siteorigin','origensitio']} `; WA.templates['origensitio.crafto'] = WA.templater` ${['cond', 'g','grupomanualidades']} `; WA.templates['grupomanualidades.6'] = WA.templater` `; WA.templates['grupomanualidades'] = WA.templater` `; WA.templates['origensitio.kiwirec'] = WA.templater` `; WA.templates['familiaproducto'] = WA.templater` ${'n'} `; WA.templates['familiaproducto.4'] = WA.templater` ${'n'} `; WA.templates['src-producto'] = WA.templater` /productoventa/${'k'}/${'i'}`; WA.templates['src-producto.none'] = WA.templater` /img/static/logo-o-500x500.png`; WA.templates['origensitio.kiwi'] = WA.templater` ${['cond', 'type','tipofeedrecetarios']} `; WA.templates['tipofeedrecetarios.probooks'] = WA.templater` `; WA.templates['familiaproducto.4'] = WA.templater` ${'n'} `; WA.templates['familiaproducto'] = WA.templater` ${'n'} `; WA.templates['tipofeedrecetarios.collectionfavorite'] = WA.templater` `; WA.templates['familiaproducto.4'] = WA.templater` ${'n'} `; WA.templates['familiaproducto'] = WA.templater` ${'n'} `; WA.templates['tipofeedrecetarios.recetaclasificacion'] = WA.templater` `; WA.templates['tipofeedrecetarios.recipebooks'] = WA.templater` `; WA.templates['familiaproducto.4'] = WA.templater` ${'n'} `; WA.templates['familiaproducto'] = WA.templater` ${'n'} `; WA.templates['idrecretos.7'] = WA.templater` /menu/reto-vegano/reto-vegano-dia-1`; WA.templates['idrecretos.8'] = WA.templater` /menu/reto-kiwilimon/dia-1`; WA.templates['idrecretos.9'] = WA.templater` /menu/reto-paleo/reto-paleo-dia-1`; WA.templates['idrecretos'] = WA.templater` ${'pa'}`; WA.templates['tipofeedrecetarios.search'] = WA.templater` `; WA.templates['idsearchrecretos.8'] = WA.templater` /menu/reto-kiwilimon/dia-1`; WA.templates['idsearchrecretos.9'] = WA.templater` /menu/reto-paleo/reto-paleo-dia-1`; WA.templates['idsearchrecretos'] = WA.templater` ${'pa'}`; WA.templates['searchgrupoproducto.4'] = WA.templater` ${'n'} `; WA.templates['searchgrupoproducto'] = WA.templater` ${['cond', 'k','imgproducto']} `; WA.templates['imgproducto.128'] = WA.templater` ${'n'} `; WA.templates['imgproducto'] = WA.templater` ${'n'} `; WA.templates['idsearchrecretos.7'] = WA.templater` /menu/reto-vegano/reto-vegano-dia-1`; WA.templates['tipofeedrecetarios.collectiondetalle'] = WA.templater` `; WA.templates['tipofeedrecetarios.pro'] = WA.templater` ${['cond', 'datachefconectado','productospro']} `; WA.templates['productospro'] = WA.templater` `; WA.templates['productospro.none'] = WA.templater` `; WA.templates['feed_tip'] = WA.templater` `; WA.templates['estatustip.10'] = WA.templater`
${'n'}
`; WA.templates['estatustip'] = WA.templater`
${'n'}
`; WA.templates['src-tip'] = WA.templater` /ss_secreto/${'k'}/${'i'}`; WA.templates['src-tip.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['feed_productoslider'] = WA.templater` ${['cond', 'k','claverecetario']} `; WA.templates['claverecetario.106'] = WA.templater` `; WA.templates['claverecetario'] = WA.templater` `; WA.templates['src-productoslider'] = WA.templater` /productoventa/${'k'}/${'i'}`; WA.templates['src-productoslider.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['feed_chef'] = WA.templater`
${['cond', 'av','avatarchef']}
${'fn'} ${'ln'}
Profile
${['cond', 'qr','numrecetas']} ${['cond', 'qt','numtips']} ${['cond', 'qc','numcolecciones']}
Followers: ${'qs'}
Following: ${'qg'}
`; WA.templates['bgclassdefault'] = WA.templater` `; WA.templates['bgpersonalizado.none'] = WA.templater` `; WA.templates['btnseguirchef.false'] = WA.templater` ${['cond', 'f','paysigochefsesionprochef']} `; WA.templates['numtips.none'] = WA.templater` `; WA.templates['numcolecciones'] = WA.templater`
Collections: ${'qc'}
`; WA.templates['avatarchef.none'] = WA.templater` ${'fn'} ${'ln'} `; WA.templates['btnseguirchef.true'] = WA.templater` ${['cond', 'f','paysigochefsesionprochef']} `; WA.templates['cheffondocolor.none'] = WA.templater` #ffffff`; WA.templates['numtips'] = WA.templater`
Tips: ${'qt'}
`; WA.templates['bgclassdefault.none'] = WA.templater` imgfondochefdefault`; WA.templates['btnseguirchef'] = WA.templater` `; WA.templates['numrecetas.none'] = WA.templater` `; WA.templates['numrecetas'] = WA.templater`
Recipes: ${'qr'}
`; WA.templates['paysigochefsesionprochef'] = WA.templater` `; WA.templates['paysigochefsesionprochef.none'] = WA.templater` `; WA.templates['bgpersonalizado'] = WA.templater` background-image: url('${'bg'}');`; WA.templates['avatarchef'] = WA.templater` ${'fn'} ${'ln'} `; WA.templates['cheffondocolor'] = WA.templater` ${'co'}`; WA.templates['numcolecciones.none'] = WA.templater` `; WA.templates['feed_familiatip'] = WA.templater` `; WA.templates['src-familiatip1.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-familiatip2'] = WA.templater` /ss_secreto/${'ci2'}/${'i2'}`; WA.templates['src-familiatip2.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-familiatip3'] = WA.templater` /ss_secreto/${'ci3'}/${'i3'}`; WA.templates['src-familiatip3.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-familiatip4'] = WA.templater` /ss_secreto/${'ci4'}/${'i4'}`; WA.templates['src-familiatip4.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-familiatip1'] = WA.templater` /ss_secreto/${'ci1'}/${'i1'}`; WA.templates['feed_compilacionreceta'] = WA.templater` `; WA.templates['src-compilacionreceta'] = WA.templater` /menu/${'k'}/${'i'}`; WA.templates['src-compilacionreceta.none'] = WA.templater` /img/static/logo_o-400x300.png`; WA.templates['feed_compilaciontip'] = WA.templater` `; WA.templates['src-compilaciontip.none'] = WA.templater` /img/static/logo_o-400x300.png`; WA.templates['src-compilaciontip'] = WA.templater` /menutip/${'k'}/${'i'}`; WA.templates['feed_familiareceta'] = WA.templater` `; WA.templates['src-familiareceta4'] = WA.templater` /recetaimagen/${'ci4'}/${'i4'}`; WA.templates['src-familiareceta4.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-familiareceta1'] = WA.templater` /recetaimagen/${'ci1'}/${'i1'}`; WA.templates['src-familiareceta1.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-familiareceta2'] = WA.templater` /recetaimagen/${'ci2'}/${'i2'}`; WA.templates['src-familiareceta2.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-familiareceta3'] = WA.templater` /recetaimagen/${'ci3'}/${'i3'}`; WA.templates['src-familiareceta3.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['feed_recetaslider'] = WA.templater` `; WA.templates['nivelfichareceta'] = WA.templater` `; WA.templates['estatusrecetaslider'] = WA.templater`
${'n'}
`; WA.templates['src-recetaslider'] = WA.templater` /recetaimagen/${'k'}/${'i'}`; WA.templates['nivelfichaslider.1'] = WA.templater` `; WA.templates['nivelfichaslider.3'] = WA.templater` ${['cond', 'datachefconectado>client>p','nivelfichaproslider']} `; WA.templates['nivelfichaproslider'] = WA.templater` `; WA.templates['nivelfichaproslider.none'] = WA.templater` ${['cond', 'siteorigin','origenfeedproslider']} `; WA.templates['origenfeedproslider.kiwi'] = WA.templater`
`; WA.templates['nivelfichaslider.2'] = WA.templater` ${['cond', 'datachefconectado>client>p','nivelfichanormalslider']} `; WA.templates['nivelfichanormalslider'] = WA.templater` `; WA.templates['nivelfichanormalslider.none'] = WA.templater` ${['cond', 'siteorigin','origenfeedinternoslider']} `; WA.templates['origenfeedinternoslider.kiwi'] = WA.templater`
`; WA.templates['estatusrecetaslider.10'] = WA.templater`
${'n'}
`; WA.templates['src-recetaslider.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['estatusrecetaslider.none'] = WA.templater` `; WA.templates['feed_articuloresumen'] = WA.templater` `; WA.templates['src-articuloresumen'] = WA.templater` /articuloimagen/${'k'}/${'i'}`; WA.templates['src-articuloresumen.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-altarticuloresumen'] = WA.templater` ${'ip'}`; WA.templates['src-altarticuloresumen.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['feed_clasificaciontip'] = WA.templater` `; WA.templates['src-clasificaciontip3'] = WA.templater` /ss_secreto/${'ci3'}/${'i3'}`; WA.templates['src-clasificaciontip3.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-clasificaciontip4'] = WA.templater` /ss_secreto/${'ci4'}/${'i4'}`; WA.templates['src-clasificaciontip4.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-clasificaciontip1'] = WA.templater` /ss_secreto/${'ci1'}/${'i1'}`; WA.templates['src-clasificaciontip1.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['src-clasificaciontip2'] = WA.templater` /ss_secreto/${'ci2'}/${'i2'}`; WA.templates['src-clasificaciontip2.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['feed_clasificacionarticulo'] = WA.templater` `; WA.templates['src-clasificacionarticulo'] = WA.templater` /articuloimagen/${'k'}/${'i'}`; WA.templates['src-clasificacionarticulo.none'] = WA.templater` /img/static/logo-o-150.png`; WA.templates['feed_fotoclasificaciones'] = WA.templater` ${['cond', 'tipoevento','feedfichaeventofotoclasificaciones']} `; WA.templates['tipofotoclasificaciones.ft'] = WA.templater`
Family
`; WA.templates['clasifimg3.none'] = WA.templater` /img/static/logo_o-400x300.png `; WA.templates['clasifarticuloimg2.none'] = WA.templater` /img/static/logo_o-400x300.png `; WA.templates['tipofotoclasificaciones.cr'] = WA.templater`
Rating
`; WA.templates['clasiftipimg2'] = WA.templater` /ss_secreto/${'ci2'}/${'i2'} `; WA.templates['clasifimg1.none'] = WA.templater` /img/static/logo_o-400x300.png `; WA.templates['clasifimg4'] = WA.templater` /recetaimagen/${'ci4'}/${'i4'} `; WA.templates['clasifarticuloimg3'] = WA.templater` /articuloimagen/${'ci3'}/${'i3'} `; WA.templates['clasiftipimg2.none'] = WA.templater` /img/static/logo_o-400x300.png `; WA.templates['clasiftipimg1'] = WA.templater` /ss_secreto/${'ci1'}/${'i1'} `; WA.templates['clasiftipimg4.none'] = WA.templater` /img/static/logo_o-400x300.png `; WA.templates['clasifimg1'] = WA.templater` /recetaimagen/${'ci1'}/${'i1'} `; WA.templates['tipofotoclasificaciones.fr'] = WA.templater`
Family
`; WA.templates['clasiftipimg3'] = WA.templater` /ss_secreto/${'ci3'}/${'i3'} `; WA.templates['tipofotoclasificaciones.ct'] = WA.templater`
Rating
`; WA.templates['clasifimg2'] = WA.templater` /recetaimagen/${'ci2'}/${'i2'} `; WA.templates['clasifimg3'] = WA.templater` /recetaimagen/${'ci3'}/${'i3'} `; WA.templates['clasifarticuloimg4.none'] = WA.templater` /img/static/logo_o-400x300.png `; WA.templates['tipofotoclasificaciones.kr'] = WA.templater`
Compilation
`; WA.templates['clasifarticuloimg4'] = WA.templater` /articuloimagen/${'ci4'}/${'i4'} `; WA.templates['clasiftipimg1.none'] = WA.templater` /img/static/logo_o-400x300.png `; WA.templates['clasifarticuloimg1.none'] = WA.templater` /img/static/logo_o-400x300.png `; WA.templates['clasifarticuloimg1'] = WA.templater` /articuloimagen/${'ci1'}/${'i1'} `; WA.templates['clasifimg4.none'] = WA.templater` /img/static/logo_o-400x300.png `; WA.templates['clasiftipimg3.none'] = WA.templater` /img/static/logo_o-400x300.png `; WA.templates['tipofotoclasificaciones.ca'] = WA.templater`
Rating
`; WA.templates['clasifarticuloimg2'] = WA.templater` /articuloimagen/${'ci2'}/${'i2'} `; WA.templates['feedfichaeventofotoclasificaciones'] = WA.templater` `; WA.templates['tipofichaactividad.ft'] = WA.templater`
`; WA.templates['tipofichaactividad.ct'] = WA.templater`
`; WA.templates['tipofichaactividad'] = WA.templater`
`; WA.templates['tipofichaactividad.ca'] = WA.templater`
`; WA.templates['clasiftipimg4'] = WA.templater` /ss_secreto/${'ci4'}/${'i4'} `; WA.templates['clasifarticuloimg3.none'] = WA.templater` /img/static/logo_o-400x300.png `; WA.templates['clasifimg2.none'] = WA.templater` /img/static/logo_o-400x300.png `; WA.templates['feed_coleccion'] = WA.templater`
comidas
${'n'}
`; WA.templates['src-coleccion'] = WA.templater` /recetaimagen/${'k'}/${'i'}`; WA.templates['src-coleccion.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['feed_receta'] = WA.templater` `; WA.templates['src-receta'] = WA.templater` /recetaimagen/${'k'}/${'i'}`; WA.templates['recetalevelchef.2'] = WA.templater` ${['cond', 'siteorigin','origenfeedreccontinterno']} `; WA.templates['origenfeedreccontinterno.kiwi'] = WA.templater`
`; WA.templates['estatusreceta'] = WA.templater`
${'n'}
`; WA.templates['tiposesion.false'] = WA.templater` ${['cond', 'level','recetalevelchef']} `; WA.templates['tiposesion'] = WA.templater` ${['cond', 'level','recetalevelchef']} `; WA.templates['recetalevelchef.3'] = WA.templater` ${['cond', 'siteorigin','origenfeedreccontpro']} `; WA.templates['origenfeedreccontpro.kiwi'] = WA.templater`
`; WA.templates['estatusreceta.10'] = WA.templater`
${'n'}
`; WA.templates['src-receta.none'] = WA.templater` /img/static/logo_o-400x300.png`; WA.templates['tiposesion.true'] = WA.templater` `; WA.templates['recetalevelchef.1'] = WA.templater` ${['cond', 'siteorigin','origenfeedreccontmarca']} `; WA.templates['origenfeedreccontmarca.kiwi'] = WA.templater` `; WA.templates['estatusreceta.none'] = WA.templater` `; WA.templates['feedamp_payload'] = WA.templater` ${['cond', 't','fichatip']} `; WA.templates['fichatip'] = WA.templater` `; WA.templates['amp-feed-videorec-top10.none'] = WA.templater` `; WA.templates['src-tiptop10'] = WA.templater` /ss_secreto/${'k'}/320x320/${'i'}.webp`; WA.templates['src-tiptop10.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['amp-feed-videorec-top10'] = WA.templater`
`; WA.templates['fichatip.none'] = WA.templater` `; WA.templates['feed_ad'] = WA.templater`
`; WA.templates['feed_clientactivity'] = WA.templater` ${['cond', 'tipoevento','feedfichaeventoclientactivity']} `; WA.templates['numerocolecciones.none'] = WA.templater` `; WA.templates['numerotips.none'] = WA.templater` `; WA.templates['numerocolecciones'] = WA.templater`
${'qc'} Collections
`; WA.templates['imgusuario'] = WA.templater` ${'fn'} ${'ln'} `; WA.templates['numeroseguidores'] = WA.templater`
${'qs'} Followers
`; WA.templates['numerosiguiendo.none'] = WA.templater` `; WA.templates['numerotips'] = WA.templater`
${'qt'} Tips
`; WA.templates['numerorecetas.none'] = WA.templater` `; WA.templates['imgcolorfondo'] = WA.templater` ${'co'} `; WA.templates['imgusuario.none'] = WA.templater` ${'fn'} ${'ln'} `; WA.templates['numerorecetas'] = WA.templater`
${'qr'} Recipes
`; WA.templates['imgcolorfondo.none'] = WA.templater` #ffffff `; WA.templates['feedfichaeventoclientactivity'] = WA.templater` ${['cond', 'siteorigin','clientorigensigue']} `; WA.templates['clientorigensigue'] = WA.templater` ${['cond', 's','estatusperfilchef']} `; WA.templates['estatusperfilchef.1'] = WA.templater`
${'fecha'}
${'titulo'}
${'fn'} ${'ln'}
${['cond', 'qr','numerorecetas']} ${['cond', 'qt','numerotips']} ${['cond', 'qc','numerocolecciones']} ${['cond', 'qs','numeroseguidores']} ${['cond', 'qg','numerosiguiendo']}
`; WA.templates['origenimgusuario'] = WA.templater` ${['cond', 'av','imgusuario']} `; WA.templates['origenimgusuario.crafto'] = WA.templater` ${['cond', 'av','imgusuariocrafto']} `; WA.templates['estatusperfilchef.none'] = WA.templater`
${'fecha'}
${'titulo'}
`; WA.templates['clientorigensigue.crafto'] = WA.templater` ${['cond', 's','estatusperfilcreador']} `; WA.templates['estatusperfilcreador.1'] = WA.templater`
${'fecha'}
${'titulo'}
${'fn'} ${'ln'}
${['cond', 'qr','numerorecetas']} ${['cond', 'qt','numerotips']} ${['cond', 'qc','numerocolecciones']} ${['cond', 'qs','numeroseguidores']} ${['cond', 'qg','numerosiguiendo']}
`; WA.templates['origenimgusuario.crafto'] = WA.templater` ${['cond', 'av','imgusuariocrafto']} `; WA.templates['origenimgusuario'] = WA.templater` ${['cond', 'av','imgusuario']} `; WA.templates['estatusperfilcreador.none'] = WA.templater`
${'fecha'}
${'titulo'}
`; WA.templates['imgusuariocrafto'] = WA.templater` ${'fn'} ${'ln'} `; WA.templates['numeroseguidores.none'] = WA.templater` `; WA.templates['numerosiguiendo'] = WA.templater`
${'qg'} Following
`; WA.templates['imgusuariocrafto.none'] = WA.templater` ${'fn'} ${'ln'} `; WA.templates['feed_confoto'] = WA.templater` ${['cond', 'tipoevento','feedfichaeventoconfoto']} `; WA.templates['feedfichaeventoconfoto.none'] = WA.templater` `; WA.templates['src-imgperfilficha'] = WA.templater` ${'ipa'}`; WA.templates['src-imgperfilficha.none'] = WA.templater` /img/static/logo_o-400x300.png`; WA.templates['tipoconfoto.p'] = WA.templater`
Product
`; WA.templates['tipoconfoto.r'] = WA.templater`
Recipe
`; WA.templates['tipoconfoto.t'] = WA.templater`
Tip
`; WA.templates['tipoconfoto.a'] = WA.templater`
Features
`; WA.templates['feedfichaeventoconfoto'] = WA.templater` ${['cond', 's','estatusficha']} `; WA.templates['estatusficha.2'] = WA.templater` `; WA.templates['estatusficha.4'] = WA.templater` `; WA.templates['estatusficha'] = WA.templater`
${'fecha'}
${'titulo'}
${['cond', 's','estatusfichapro']}

${'d'}

`; WA.templates['estatusfichapro.10'] = WA.templater` `; WA.templates['estatusfichapro'] = WA.templater` `; WA.templates['feed_coleccioncliente'] = WA.templater`
${['cond', 'myaccount','micuentabtnelimina']} ${['cond', 'myaccount','linkcoleccion']}
${['loop', 'el','coleccionelementos']}
${['cond', 'myaccount','micuentabtnupdate']}
`; WA.templates['micuentabtnupdate'] = WA.templater` ${['cond', 'tipo','tipocoleccion']} `; WA.templates['tipocoleccion'] = WA.templater`
${'n'}
${'qt'} items
`; WA.templates['imgelemento'] = WA.templater` `; WA.templates['micuentabtnelimina'] = WA.templater` ${['cond', 'tipo','tipocoleccionemilina']} `; WA.templates['tipocoleccionemilina.8'] = WA.templater` `; WA.templates['tipocoleccionemilina'] = WA.templater`
`; WA.templates['micuentabtnelimina.none'] = WA.templater` `; WA.templates['linkcoleccion.none'] = WA.templater` ${['cond', 'siteorigin','linkchefkiwi']} `; WA.templates['linkchefkiwi'] = WA.templater` `; WA.templates['linkchefkiwi.kiwirec'] = WA.templater` `; WA.templates['linkchefkiwi.crafto'] = WA.templater` `; WA.templates['coleccionelementos'] = WA.templater`
${['cond', 'c','idelemento']}
`; WA.templates['linkcoleccion'] = WA.templater` ${['cond', 'siteorigin','linkmicuentakiwi']} `; WA.templates['linkmicuentakiwi'] = WA.templater`
`; WA.templates['linkmicuentakiwi.kiwirec'] = WA.templater` `; WA.templates['micuentabtnupdate.none'] = WA.templater`
${'n'}
${'qt'} items
`; WA.templates['tipocoleccion.8'] = WA.templater`
${'n'}
${'qt'} items
`; WA.templates['coleccionelementos.none'] = WA.templater` `; WA.templates['imgelemento.none'] = WA.templater` `; WA.templates['idelemento'] = WA.templater` ${['cond', 'i','imgelemento']} `; WA.templates['feed_articuloslider'] = WA.templater`
`; WA.templates['src-articuloslider.none'] = WA.templater` ${['cond', 'ip','src-altarticuloslider']} `; WA.templates['src-altarticuloslider.none'] = WA.templater` /img/static/logo-o-150.png`; WA.templates['src-altarticuloslider'] = WA.templater` ${'ip'}`; WA.templates['estatusarticuloslider.10'] = WA.templater`
${'n'}
`; WA.templates['estatusarticuloslider'] = WA.templater`
${'n'}
`; WA.templates['estatusarticuloslider.none'] = WA.templater` `; WA.templates['src-articuloslider'] = WA.templater` /articuloimagen/${'k'}/${'i'}`; WA.templates['feed_articulo'] = WA.templater` `; WA.templates['src-articulo.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['estatusarticulo'] = WA.templater`
${'n'}
${'ms'}
`; WA.templates['estatusarticulo.none'] = WA.templater` `; WA.templates['src-articuloi.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['ratingarticulo.none'] = WA.templater`
5.0
`; WA.templates['estatusarticulo.10'] = WA.templater`
${'n'}
${'ms'}
`; WA.templates['src-articuloi'] = WA.templater` /articuloimagen/${'k'}/${'i'}`; WA.templates['src-articulo'] = WA.templater` ${'ip'}`; WA.templates['ratingarticulo'] = WA.templater`
${'vr'}
`; WA.templates['feed_video'] = WA.templater`
`; WA.templates['feed_video.none'] = WA.templater` `; WA.templates['slider_classifications.none'] = WA.templater` `; WA.templates['feedslider'] = WA.templater` ${['cond', 't','tipoficha']} `; WA.templates['tipoficha.articulo'] = WA.templater` ${['cond', 's','ampsliderarticulopro']} `; WA.templates['ampsliderarticulopro.10'] = WA.templater` `; WA.templates['src-ampimgarticulopro'] = WA.templater` /articuloimagen/${'k'}/250x250/${'i'}.webp`; WA.templates['src-ampimgarticulopro.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['ampsliderarticulopro'] = WA.templater` `; WA.templates['src-ampimgarticulo'] = WA.templater` /articuloimagen/${'k'}/250x250/${'i'}.webp`; WA.templates['src-ampimgarticulo.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['tipoficha.producto'] = WA.templater` `; WA.templates['src-ampimgrecetariopro'] = WA.templater` /productoventa/${'k'}/320x420/${'i'}.webp`; WA.templates['tipoficha'] = WA.templater` ${'t'} `; WA.templates['tipoficha.none'] = WA.templater` `; WA.templates['tipoficha.receta'] = WA.templater` ${['cond', 's','ampsliderrecpro']} `; WA.templates['ampsliderrecpro'] = WA.templater` `; WA.templates['src-recetanormal'] = WA.templater` /recetaimagen/${'k'}/320x320/${'i'}.webp`; WA.templates['src-recetanormal.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['amp-feed-videorec-normal'] = WA.templater`
`; WA.templates['amp-feed-videorec-normal.none'] = WA.templater` `; WA.templates['ampsliderrecpro.10'] = WA.templater` `; WA.templates['src-recetanormal'] = WA.templater` /recetaimagen/${'k'}/320x320/${'i'}.webp`; WA.templates['src-recetanormal.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['amp-feed-videorec-pro'] = WA.templater`
`; WA.templates['amp-feed-videorec-pro.none'] = WA.templater` `; WA.templates['tipoficha.recetaslider'] = WA.templater` `; WA.templates['src-recetatop10'] = WA.templater` /recetaimagen/${'k'}/320x320/${'i'}.webp`; WA.templates['src-recetatop10.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['amp-feed-videorec-top10'] = WA.templater`
`; WA.templates['amp-feed-videorec-top10.none'] = WA.templater` `; WA.templates['tipoficha.productoslider'] = WA.templater` `; WA.templates['src-slider-producto'] = WA.templater` /productoventa/${'k'}/250x250/${'i'}.webp`; WA.templates['src-slider-producto.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['tipoficha.tip'] = WA.templater` `; WA.templates['amp-feed-videorec-top10'] = WA.templater`
`; WA.templates['amp-feed-videorec-top10.none'] = WA.templater` `; WA.templates['src-tiptop10'] = WA.templater` /ss_secreto/${'k'}/320x320/${'i'}.webp`; WA.templates['src-tiptop10.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['feedslider.none'] = WA.templater` `; WA.templates['slider_families'] = WA.templater` `; WA.templates['slider-icon-familia'] = WA.templater` 70x70/${'image'}.webp`; WA.templates['slider_families.none'] = WA.templater` `; WA.templates['recipelist'] = WA.templater`
${['cond', 'recipefamilydata>path','rutafamiliarecipelist']} ${['cond', 'recipeclassificationdata>path','rutaclasificacionrecipelist']}
${['loop', 'recipelist>payload','listaampclasif']}
${['cond', 'recipefamilydata>path','linkfamiliarecipelist']} ${['cond', 'recipeclassificationdata>path','linkclasificacionrecipelist']} `; WA.templates['rutaclasificacionrecipelist.none'] = WA.templater` `; WA.templates['linkfamiliarecipelist'] = WA.templater` See more
`; WA.templates['linkclasificacionrecipelist.none'] = WA.templater` `; WA.templates['listaampclasif'] = WA.templater` ${['cond', 't','recipelisttipoficha']} `; WA.templates['recipelisttipoficha.newsletter'] = WA.templater` `; WA.templates['recipelisttipoficha.ad'] = WA.templater` `; WA.templates['recipelisttipoficha'] = WA.templater` `; WA.templates['amp-feed-video'] = WA.templater`
`; WA.templates['amp-feed-video.none'] = WA.templater` `; WA.templates['src-receta'] = WA.templater` /recetaimagen/${'k'}/320x320/${'i'}.webp`; WA.templates['src-receta.none'] = WA.templater` /img/static/logo-o-320x320.png`; WA.templates['rutafamiliarecipelist.none'] = WA.templater` `; WA.templates['linkfamiliarecipelist.none'] = WA.templater` `; WA.templates['rutaclasificacionrecipelist'] = WA.templater` Latest Recommended Most popular `; WA.templates['linkclasificacionrecipelist'] = WA.templater` See more
`; WA.templates['rutafamiliarecipelist'] = WA.templater` Latest Recommended Most popular `; WA.templates['tecuidaad'] = WA.templater` `; WA.templates['tecuidaad.none'] = WA.templater`
`; WA.templates['breadcrumbs'] = WA.templater` ${['loop', 'bc','breadcrumbs_element']} `; WA.templates['breadcrumbs_element.first'] = WA.templater` ${'n'}`; WA.templates['breadcrumbs_element'] = WA.templater`
${'n'}`; WA.templates['breadcrumbs_element.last'] = WA.templater`
${'n'}`; WA.templates['breadcrumbs_element.none'] = WA.templater` `; WA.templates['recipefamilydata'] = WA.templater`

${'h1title'}

${'description'}
`; KL.currentcode={"articlelist":{"key":"6705","more":true,"page":1,"payload":[{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31818.jpg","ip":"/articuloimagen/31917/th5-320x320-31818.jpg","k":31917,"level":1,"m":1,"ms":"\nWhen stomach or throat ailments strike, many moms and grandmas remind us that there are remedies in our cupboards: chamomile tea, arnica, horsetail, linden, mullein, and more. Although Western medici...","mstc":"\nWhen stomach or throat ailments strike, many moms and grandmas remind us that there are r...","mt":"normal","n":"Medicinal plants that are essential in the Mexican pharmacy ","pa":"/blog/cares-for-you/medicinal-plants-that-are-essential-in-the-mexican-pharmacy","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|1"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31648.jpg","ip":"/articuloimagen/31859/th5-320x320-31648.jpg","k":31859,"level":1,"m":1,"ms":"\nIn recent years, a series of natural products have gained great popularity and have even become kitchen staples: coconut oil, chia, amaranth, moringa, flaxseed, almond flour, cacao nibs, monk fruit, ...","mstc":"\nIn recent years, a series of natural products have gained great popularity and have even ...","mt":"normal","n":"Is it good to cook with coconut oil? ","pa":"/blog/cares-for-you/is-it-good-to-cook-with-coconut-oil","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|2"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31642.jpg","ip":"/articuloimagen/31857/th5-320x320-31642.jpg","k":31857,"level":1,"m":1,"ms":"\nIn recent years, a wide variety of diets have gained global popularity: the keto diet, the paleo diet, the MIND diet, and the Mediterranean diet, among many others. However, it is essential that you ...","mstc":"\nIn recent years, a wide variety of diets have gained global popularity: the keto diet, th...","mt":"normal","n":"What is the keto diet and what does it consist of?","pa":"/blog/cares-for-you/what-is-the-keto-diet-and-what-does-it-consist-of","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|3"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31622.jpg","ip":"/articuloimagen/31846/th5-320x320-31622.jpg","k":31846,"level":1,"m":1,"ms":"\nAs you may know, breakfast is the most important meal of the day, as the foods we consume in the morning are responsible for providing us with the energy we need to carry out all our activities. More...","mstc":"\nAs you may know, breakfast is the most important meal of the day, as the foods we consume...","mt":"normal","n":"Discover the benefits of eating 3 eggs a week","pa":"/blog/cares-for-you/discover-the-benefits-of-eating-3-eggs-a-week","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|4"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31620.jpg","ip":"/articuloimagen/31845/th5-320x320-31620.jpg","k":31845,"level":1,"m":1,"ms":"\nWhen we think of a healthy and balanced diet, we often envision boring and tasteless dishes, bland salads, flavorless chicken breasts, and an endless array of unappetizing options. On the other hand,...","mstc":"\nWhen we think of a healthy and balanced diet, we often envision boring and tasteless dish...","mt":"normal","n":"If you want to live longer, this is what you should eat ","pa":"/blog/cares-for-you/if-you-want-to-live-longer-this-is-what-you-should-eat","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|5"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31618.jpg","ip":"/articuloimagen/31844/th5-320x320-31618.jpg","k":31844,"level":1,"m":1,"ms":"\nThe coffee is that drink that cannot be missing at breakfast, in the afternoons, or even on cold and rainy nights. It is not only the perfect complement for desserts, cookies, and cakes, but it also ...","mstc":"\nThe coffee is that drink that cannot be missing at breakfast, in the afternoons, or even ...","mt":"normal","n":"Does coffee help with hypertension?","pa":"/blog/cares-for-you/does-coffee-help-with-hypertension","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|6"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31609.jpg","ip":"/articuloimagen/31839/th5-320x320-31609.jpg","k":31839,"level":1,"m":1,"ms":"\nThe diabetes is one of the most feared diseases due to its potential effects. Once a patient is diagnosed, they must take measures to change their diet and lifestyle, as well as the consumption of m...","mstc":"\nThe diabetes is one of the most feared diseases due to its potential effects. Once a pat...","mt":"normal","n":"Diabetes: The possible benefits of vitamin D ","pa":"/blog/cares-for-you/diabetes-the-possible-benefits-of-vitamin-d","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|7"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31604.jpg","ip":"/articuloimagen/31836/th5-320x320-31604.jpg","k":31836,"level":1,"m":1,"ms":"\nA respected Mexican enjoys a good coffee in the mornings. We know that the breakfasts we enjoy in our country are very varied. They can range from fruit with granola, eggs to taste, snacks, and even...","mstc":"\nA respected Mexican enjoys a good coffee in the mornings. We know that the breakfasts we...","mt":"normal","n":"Benefits of Coffee with Milk ","pa":"/blog/cares-for-you/benefits-of-coffee-with-milk","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|8"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31594.jpg","ip":"/articuloimagen/31830/th5-320x320-31594.jpg","k":31830,"level":1,"m":1,"ms":"\nCurrently, there is a lot of talk about the famous Mediterranean diet, which is consumed in countries like Greece, Spain, Italy, Portugal, Cyprus, Croatia, and Morocco. In addition to being considere...","mstc":"\nCurrently, there is a lot of talk about the famous Mediterranean diet, which is consumed ...","mt":"normal","n":"4 benefits of Mediterranean cuisine ","pa":"/blog/cares-for-you/4-benefits-of-mediterranean-cuisine","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|9"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31589.jpg","ip":"/articuloimagen/31827/th5-320x320-31589.jpg","k":31827,"level":1,"m":1,"ms":"\nAt Kiwilimón, we know that the health of our followers is the most important thing, which is why we are always looking for the best natural remedies to relieve all kinds of ailments and discomforts....","mstc":"\nAt Kiwilimón, we know that the health of our followers is the most important thing, whic...","mt":"normal","n":"The best teas for cough","pa":"/blog/cares-for-you/the-best-teas-for-cough","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|10"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31587.jpg","ip":"/articuloimagen/31826/th5-320x320-31587.jpg","k":31826,"level":1,"m":1,"ms":"\nIf you are looking for a good snack to take to school or the office, it is important to consider healthy, practical, and easy-to-transport options, as snacks are important to give us energy throughou...","mstc":"\nIf you are looking for a good snack to take to school or the office, it is important to c...","mt":"normal","n":"The wonderful benefits of consuming nuts ","pa":"/blog/cares-for-you/the-wonderful-benefits-of-consuming-nuts","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|11"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31576.jpg","ip":"/articuloimagen/31821/th5-320x320-31576.jpg","k":31821,"level":1,"m":1,"ms":"\nCurrently, we know that taking care of our diet is not an easy task, as the hustle and bustle of daily life can lead us down a path that includes junk food, snacks, and sugary drinks. While enjoying ...","mstc":"\nCurrently, we know that taking care of our diet is not an easy task, as the hustle and bu...","mt":"normal","n":"Are there foods that increase the risk of diabetes? ","pa":"/blog/cares-for-you/are-there-foods-that-increase-the-risk-of-diabetes","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|12"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31562.jpg","ip":"/articuloimagen/31814/th5-320x320-31562.jpg","k":31814,"level":1,"m":1,"ms":"\nThe diabetes is a disease that affects millions of people in Mexico and around the world and has even become one of the leading causes of death in many countries, which is why health experts have tak...","mstc":"\nThe diabetes is a disease that affects millions of people in Mexico and around the world ...","mt":"normal","n":"The low-carb diet and its effects on diabetes ","pa":"/blog/cares-for-you/the-low-carb-diet-and-its-effects-on-diabetes","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|13"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31550.jpg","ip":"/articuloimagen/31808/th5-320x320-31550.jpg","k":31808,"level":1,"m":1,"ms":"\nIn recent years, the population seems to have turned 180° to focus on healthy eating, superfoods, green juices, low-fat and gluten-free foods, as well as all kinds of healthy and light recipes.\u0026nbsp...","mstc":"\nIn recent years, the population seems to have turned 180° to focus on healthy eating, su...","mt":"normal","n":"What is metabolic syndrome? ","pa":"/blog/cares-for-you/what-is-metabolic-syndrome","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|14"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31548.jpg","ip":"/articuloimagen/31807/th5-320x320-31548.jpg","k":31807,"level":1,"m":1,"ms":"\nIf you have visited a supermarket in recent weeks, you have surely noticed that there are more and more gluten-free, vegan, organic, and generally healthy options, so the baking department cannot be ...","mstc":"\nIf you have visited a supermarket in recent weeks, you have surely noticed that there are...","mt":"normal","n":"What is oat flour and what is it used for? ","pa":"/blog/cares-for-you/what-is-oat-flour-and-what-is-it-used-for","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|15"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31538.jpg","ip":"/articuloimagen/31802/th5-320x320-31538.jpg","k":31802,"level":1,"m":1,"ms":"\nWe know that in Mexico, food is abundant and delicious, and many of our dishes are prepared with a large amount of chiles and spices, so it is not surprising that heartburn and digestive problems ar...","mstc":"\nWe know that in Mexico, food is abundant and delicious, and many of our dishes are prepar...","mt":"normal","n":"The 5 teas that will improve your digestion ","pa":"/blog/cares-for-you/the-5-teas-that-will-improve-your-digestion","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|16"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31534.jpg","ip":"/articuloimagen/31800/th5-320x320-31534.jpg","k":31800,"level":1,"m":1,"ms":"\nThe breakfast is the most important meal of the day, as it provides us with the nutrients and energy we need to carry out our daily activities. That’s why it is essential to include foods rich in v...","mstc":"\nThe breakfast is the most important meal of the day, as it provides us with the nutrients...","mt":"normal","n":"5 benefits of consuming oats ","pa":"/blog/cares-for-you/5-benefits-of-consuming-oats","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|17"},{"cl":6705,"cln":"Te Cuida ","cn":"Shadia Asencio","i":"31533.jpg","ip":"/articuloimagen/31799/th5-320x320-31533.jpg","k":31799,"level":1,"m":1,"ms":"\nCan love be demonstrated through the food choices one makes? In reality, love, like water, seeks an outlet through any crack. Food is just one form, as are words, a walk, a decision, a meeting. We wo...","mstc":"\nCan love be demonstrated through the food choices one makes? In reality, love, like water...","mt":"normal","n":"Loving ourselves through food, reality or fiction?","pa":"/blog/cares-for-you/loving-ourselves-through-food-reality-or-fiction","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|18"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31527.jpg","ip":"/articuloimagen/31795/th5-320x320-31527.jpg","k":31795,"level":1,"m":1,"ms":"\nIn recent years, more and more people are concerned about improving their quality of life. At kiwilimón, we know that your health is your priority, which is why we have taken on the task of creating...","mstc":"\nIn recent years, more and more people are concerned about improving their quality of life...","mt":"normal","n":"Do asparagus help with weight loss?","pa":"/blog/cares-for-you/do-asparagus-help-with-weight-loss","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|19"},{"cl":6705,"cln":"Te Cuida ","cn":"Miranda Perea","i":"31515.jpg","ip":"/articuloimagen/31790/th5-320x320-31515.jpg","k":31790,"level":1,"m":1,"ms":"\nIn recent years, there has been a lot of talk about fermented food and its multiple benefits. This is nothing new, as this type of food and drink has been consumed since ancient times due to its prop...","mstc":"\nIn recent years, there has been a lot of talk about fermented food and its multiple benef...","mt":"normal","n":"The benefits of fermented food ","pa":"/blog/cares-for-you/the-benefits-of-fermented-food","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|20"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31511.jpg","ip":"/articuloimagen/31788/th5-320x320-31511.jpg","k":31788,"level":1,"m":1,"ms":"\nThe eggs are one of the most popular foods in Mexican cuisine, as they are not only the base of breakfasts, but also serve to accompany spicy green chilaquiles, batter a stuffed pepper, make homemad...","mstc":"\nThe eggs are one of the most popular foods in Mexican cuisine, as they are not only the ...","mt":"normal","n":"Benefits of eating eggs","pa":"/blog/cares-for-you/benefits-of-eating-eggs","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|21"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31502.jpg","ip":"/articuloimagen/31785/th5-320x320-31502.jpg","k":31785,"level":1,"m":1,"ms":"\nWith the arrival of the holiday season, it's normal to eat everything during the Guadalupe-Reyes marathon. Tamales and punch at the posada, romeritos and bacalao at Christmas, and pork or turkey on N...","mstc":"\nWith the arrival of the holiday season, it's normal to eat everything during the Guadalup...","mt":"normal","n":"5 home remedies for heartburn","pa":"/blog/cares-for-you/5-home-remedies-for-heartburn","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|22"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31462.jpg","ip":"/articuloimagen/31768/th5-320x320-31462.jpg","k":31768,"level":1,"m":1,"ms":"\nFor several decades now, type 2 diabetes has become a public health issue, as it has increased among the population, affecting the quality of life of patients, as it not only leads to higher sugar le...","mstc":"\nFor several decades now, type 2 diabetes has become a public health issue, as it has incr...","mt":"normal","n":"Intermittent fasting could reverse type 2 diabetes ","pa":"/blog/cares-for-you/intermittent-fasting-could-reverse-type-2-diabetes","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|23"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31456.jpg","ip":"/articuloimagen/31764/th5-320x320-31456.jpg","k":31764,"level":1,"m":1,"ms":"\nThe “alternative” diets are here to stay, as it is now common to see all kinds of plant-based milks, vegan cheeses, and “meat” made from plants in supermarkets and restaurants, as more and mo...","mstc":"\nThe “alternative” diets are here to stay, as it is now common to see all kinds of pla...","mt":"normal","n":"What is veganism? ","pa":"/blog/cares-for-you/what-is-veganism","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|24"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31449.jpg","ip":"/articuloimagen/31761/th5-320x320-31449.jpg","k":31761,"level":1,"m":1,"ms":"\nIn recent years, the number of people with diabetes has increased exorbitantly in our country. This is due to factors such as poor diet and sedentary lifestyle; however, it is never too late to adopt...","mstc":"\nIn recent years, the number of people with diabetes has increased exorbitantly in our cou...","mt":"normal","n":"Diabetes: The way you cook potatoes matters... a lot!","pa":"/blog/cares-for-you/diabetes-the-way-you-cook-potatoes-matters-a-lot","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|25"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31429.jpg","ip":"/articuloimagen/31751/th5-320x320-31429.jpg","k":31751,"level":1,"m":1,"ms":"\nThe almonds are an ingredient that should not be missing in your kitchen, as they add a crunchy touch to granola, are ideal for preparing a healthy snack, or even to fill a Christmas loin. However, ...","mstc":"\nThe almonds are an ingredient that should not be missing in your kitchen, as they add a ...","mt":"normal","n":"Almonds and Their Power to Regulate Appetite ","pa":"/blog/cares-for-you/almonds-and-their-power-to-regulate-appetite","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|26"},{"cl":49,"cln":"Navidad","cn":"Gretel Morales","i":"31424.jpg","ip":"/articuloimagen/31748/th5-320x320-31424.jpg","k":31748,"level":1,"m":1,"ms":"\nThe holiday season, Christmas, and Three Kings' Day are very special for Mexicans, as we gather to share with family and friends. However, it is also characterized by being a period in which many peo...","mstc":"\nThe holiday season, Christmas, and Three Kings' Day are very special for Mexicans, as we ...","mt":"normal","n":"How to adopt a healthy diet during the Guadalupe-Reyes ","pa":"/blog/seasons/christmas/how-to-adopt-a-healthy-diet-during-the-guadalupe-reyes","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|27"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31398.jpg","ip":"/articuloimagen/31735/th5-320x320-31398.jpg","k":31735,"level":1,"m":1,"ms":"\nThe honey is an ode to nature, as it not only adds a sweet flavor to all kinds of dishes but is also known for its health benefits. However, not all honeys are the same, and not all have the same eff...","mstc":"\nThe honey is an ode to nature, as it not only adds a sweet flavor to all kinds of dishes ...","mt":"normal","n":"Discover the incredible benefits of raw honey ","pa":"/blog/cares-for-you/discover-the-incredible-benefits-of-raw-honey","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|28"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31383.jpg","ip":"/articuloimagen/31729/th5-320x320-31383.jpg","k":31729,"level":1,"m":1,"ms":"\nThe mandarins are a classic of the autumn-winter season, so they should not be missing in your lunch as a healthy snack, to add a citrus touch to dishes and salads, or to prepare a delicious dessert....","mstc":"\nThe mandarins are a classic of the autumn-winter season, so they should not be missing in...","mt":"normal","n":"6 reasons to eat more mandarin this season ","pa":"/blog/cares-for-you/6-reasons-to-eat-more-mandarin-this-season","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|29"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31379.jpg","ip":"/articuloimagen/31727/th5-320x320-31379.jpg","k":31727,"level":1,"m":1,"ms":"\nAt Kiwilimón, we know that nutrition is the foundation for good health, but applying it in daily life can be very complicated. In Mexico, we can start the day with tlacoyos made from blue corn, eggs...","mstc":"\nAt Kiwilimón, we know that nutrition is the foundation for good health, but applying it ...","mt":"normal","n":"Beans and their impact on anxiety ","pa":"/blog/cares-for-you/beans-and-their-impact-on-anxiety","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|30"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31377.jpg","ip":"/articuloimagen/31726/th5-320x320-31377.jpg","k":31726,"level":1,"m":1,"ms":"\nWhen we think of dietary supplements and vitamins that help us have more energy, the first thing that comes to mind is ginseng, a plant that has been used in traditional medicine in various countries...","mstc":"\nWhen we think of dietary supplements and vitamins that help us have more energy, the firs...","mt":"normal","n":"What is ginseng and what are its benefits? ","pa":"/blog/cares-for-you/what-is-ginseng-and-what-are-its-benefits","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|31"},{"cl":6705,"cln":"Te Cuida ","cn":"Miranda Perea","i":"31375.jpg","ip":"/articuloimagen/31725/th5-320x320-31375.jpg","k":31725,"level":1,"m":1,"ms":"\nAlthough it is an ancient practice, fasting has gained great popularity in recent years due to its association with weight loss, but it also has other health benefits that attract many people willing...","mstc":"\nAlthough it is an ancient practice, fasting has gained great popularity in recent years d...","mt":"normal","n":"Everything you need to know about fasting ","pa":"/blog/cares-for-you/everything-you-need-to-know-about-fasting","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|32"},{"cl":6705,"cln":"Te Cuida ","cn":"Miranda Perea","i":"31366.jpg","ip":"/articuloimagen/31720/th5-320x320-31366.jpg","k":31720,"level":1,"m":1,"ms":"\nTaking care of your health is very important to prevent diseases or reduce the symptoms of certain conditions, and what better way to do it than naturally with alternatives that are easy to integrate...","mstc":"\nTaking care of your health is very important to prevent diseases or reduce the symptoms o...","mt":"normal","n":"6 benefits of consuming probiotics","pa":"/blog/cares-for-you/6-benefits-of-consuming-probiotics","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|33"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31350.jpg","ip":"/articuloimagen/31712/th5-320x320-31350.jpg","k":31712,"level":1,"m":1,"ms":"\nIn Mexico, home remedies are common, as many people prefer to eat a bolillo for fright, crack their empacho, or apply arnica ointment. While many are effective, others are not so much, which is why w...","mstc":"\nIn Mexico, home remedies are common, as many people prefer to eat a bolillo for fright, c...","mt":"normal","n":"What is linden tea good for? ","pa":"/blog/cares-for-you/what-is-linden-tea-good-for","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|34"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31342.jpg","ip":"/articuloimagen/31708/th5-320x320-31342.jpg","k":31708,"level":1,"m":1,"ms":"\nFor a couple of years now, healthy eating has gained followers around the world, which is why superfoods like chia, amaranth, flaxseed, and oats are present in all kinds of dishes and products. On th...","mstc":"\nFor a couple of years now, healthy eating has gained followers around the world, which is...","mt":"normal","n":"What is kefir and what are its benefits? ","pa":"/blog/cares-for-you/what-is-kefir-and-what-are-its-benefits","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|35"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31327.jpg","ip":"/articuloimagen/31703/th5-320x320-31327.jpg","k":31703,"level":1,"m":1,"ms":"\nIn recent years, scientists and experts around the world have undertaken research to investigate the relationship between what we eat, its effects on the microbiota, and whether our diet is linked to...","mstc":"\nIn recent years, scientists and experts around the world have undertaken research to inve...","mt":"normal","n":"Psychobiotic diet to combat stress","pa":"/blog/cares-for-you/psychobiotic-diet-to-combat-stress","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|36"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31325.jpg","ip":"/articuloimagen/31700/th5-320x320-31325.jpg","k":31700,"level":1,"m":1,"ms":"\nIn recent years, fermented foods like kefir, kombucha, kimchi, and Greek yogurt have become favorites among younger generations and those looking to improve their health through good nutrition.\u0026nbsp;...","mstc":"\nIn recent years, fermented foods like kefir, kombucha, kimchi, and Greek yogurt have beco...","mt":"normal","n":"How to care for milk kefir grains? ","pa":"/blog/cares-for-you/how-to-care-for-milk-kefir-grains","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|37"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31321.jpg","ip":"/articuloimagen/31698/th5-320x320-31321.jpg","k":31698,"level":1,"m":1,"ms":"\nMexico is a vibrant, colorful, and joyful country, as we are always looking for the perfect excuse to celebrate with feasts and parties; however, this lifestyle harms us in the long run. Although a g...","mstc":"\nMexico is a vibrant, colorful, and joyful country, as we are always looking for the perfe...","mt":"normal","n":"Reduce the risk of developing type 2 diabetes with this diet ","pa":"/blog/cares-for-you/reduce-the-risk-of-developing-type-2-diabetes-with-this-diet","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|38"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31306.jpg","ip":"/articuloimagen/31691/th5-320x320-31306.jpg","k":31691,"level":1,"m":1,"ms":"\nKrill oil is one of the most popular dietary supplements in recent years, as it is attributed with countless health benefits, however, what do experts say about krill oil? At kiwilimón, we took the ...","mstc":"\nKrill oil is one of the most popular dietary supplements in recent years, as it is attrib...","mt":"normal","n":"Krill oil: What is it and what is it used for?","pa":"/blog/cares-for-you/krill-oil-what-is-it-and-what-is-it-used-for","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|39"},{"cl":6705,"cln":"Te Cuida ","cn":"Gretel Morales","i":"31302.jpg","ip":"/articuloimagen/31689/th5-320x320-31302.jpg","k":31689,"level":1,"m":1,"ms":"\nIf during your last visit to the doctor, your primary specialist told you that your cholesterol levels are high, it's time to reflect on your lifestyle, especially your diet, as what you eat affects ...","mstc":"\nIf during your last visit to the doctor, your primary specialist told you that your chole...","mt":"normal","n":"Foods that will help you lower your cholesterol levels","pa":"/blog/cares-for-you/foods-that-will-help-you-lower-your-cholesterol-levels","pr":"0.0%","s":"1","t":"articulo","vr":null,"x":"p|kiwi|articuloclasificacion|6705|5|0|40"}],"quantity":40,"time":0,"total":280,"type":"articuloclasificacion"},"breadcrumbs":{"bc":[{"n":"Home","p":"/"},{"n":"Takes Care of You","p":"/te-cuida"}]},"cdn":"https://cdn7.kiwilimon.com","recipedietas":{"bc":[{"n":"Home","p":"/","position":1},{"n":"Cares for You","p":"/take-care-of-you","position":2}],"classifications":[{"icon":"i3981.jpg","image":"3981.jpg","imagepath":"/clasificacion/3981/","key":3981,"link":"fat-free","path":"/take-care-of-you/fat-free","shorttitle":"Fat-Free","virtual":null},{"icon":"i3983.jpg","image":"3983.jpg","imagepath":"/clasificacion/3983/","key":3983,"link":"diabetes","path":"/take-care-of-you/diabetes","shorttitle":"Diabetes","virtual":null},{"icon":"i3984.jpg","image":"3984.jpg","imagepath":"/clasificacion/3984/","key":3984,"link":"healthy-for-kids","path":"/take-care-of-you/healthy-for-kids","shorttitle":"Healthy for Kids ","virtual":null},{"icon":"i3988.jpg","image":"3988.jpg","imagepath":"/clasificacion/3988/","key":3988,"link":"to-boost-the-immune-system","path":"/take-care-of-you/to-boost-the-immune-system","shorttitle":"To boost the immune system","virtual":null},{"icon":"i3989.jpg","image":"3989.jpg","imagepath":"/clasificacion/3989/","key":3989,"link":"high-in-protein","path":"/take-care-of-you/high-in-protein","shorttitle":"High in protein ","virtual":null},{"icon":"i3986.jpg","image":"3986.jpg","imagepath":"/clasificacion/3986/","key":3986,"link":"vegetarian","path":"/take-care-of-you/vegetarian","shorttitle":"Vegetarian","virtual":null},{"icon":"i3990.jpg","image":"3990.jpg","imagepath":"/clasificacion/3990/","key":3990,"link":"healthy-dinners","path":"/take-care-of-you/healthy-dinners","shorttitle":"Healthy Dinners ","virtual":null},{"icon":"i3982.jpg","image":"3982.jpg","imagepath":"/clasificacion/3982/","key":3982,"link":"hypertension","path":"/take-care-of-you/hypertension","shorttitle":"Hypertension","virtual":null},{"icon":"i3980.jpg","image":"3980.jpg","imagepath":"/clasificacion/3980/","key":3980,"link":"keto","path":"/take-care-of-you/keto","shorttitle":"Keto ","virtual":null},{"icon":"i3985.jpg","image":"3985.jpg","imagepath":"/clasificacion/3985/","key":3985,"link":"healthy-family","path":"/take-care-of-you/healthy-family","shorttitle":"Healthy family ","virtual":null},{"icon":"i3991.jpg","image":"3991.jpg","imagepath":"/clasificacion/3991/","key":3991,"link":"high-in-fiber","path":"/take-care-of-you/high-in-fiber","shorttitle":"High in Fiber","virtual":null},{"icon":"i3992.jpg","image":"3992.jpg","imagepath":"/clasificacion/3992/","key":3992,"link":"rich-in-omega-3","path":"/take-care-of-you/rich-in-omega-3","shorttitle":"Rich in Omega 3","virtual":null},{"icon":"i3529.jpg","image":"3529.jpg","imagepath":"/clasificacion/3529/","key":3529,"link":"healthy-desserts","path":"/preference/diets/weight-loss-recipes/healthy-desserts","shorttitle":"Healthy Desserts ","virtual":null},{"icon":"i3994.jpg","image":null,"imagepath":"/clasificacion/3994/","key":3994,"link":"anti-aging","path":"/take-care-of-you/anti-aging","shorttitle":"Anti-aging","virtual":null},{"icon":"i3995.jpg","image":null,"imagepath":"/clasificacion/3995/","key":3995,"link":"anti-fatigue","path":"/take-care-of-you/anti-fatigue","shorttitle":"Anti-fatigue","virtual":null},{"icon":"i3996.jpg","image":null,"imagepath":"/clasificacion/3996/","key":3996,"link":"gluten-free","path":"/take-care-of-you/gluten-free","shorttitle":"Gluten-free","virtual":null},{"icon":"i3997.jpg","image":null,"imagepath":"/clasificacion/3997/","key":3997,"link":"menopause","path":"/take-care-of-you/menopause","shorttitle":"Menopause","virtual":null},{"icon":"i3998.jpg","image":null,"imagepath":"/clasificacion/3998/","key":3998,"link":"healthy-breakfasts","path":"/take-care-of-you/healthy-breakfasts","shorttitle":"Healthy Breakfasts","virtual":null},{"icon":"i3999.png","image":"3999.jpg","imagepath":"/clasificacion/3999/","key":3999,"link":"affordable-healthy","path":"/take-care-of-you/affordable-healthy","shorttitle":"Affordable Healthy","virtual":null},{"icon":"i4000.png","image":"4000.jpg","imagepath":"/clasificacion/4000/","key":4000,"link":"for-teenagers","path":"/take-care-of-you/for-teenagers","shorttitle":"For teenagers","virtual":null},{"icon":"i4142.png","image":"4142.jpg","imagepath":"/clasificacion/4142/","key":4142,"link":"paleo-diet","path":"/take-care-of-you/paleo-diet","shorttitle":"Paleo Diet","virtual":null},{"icon":"i4143.png","image":"4143.jpg","imagepath":"/clasificacion/4143/","key":4143,"link":"to-increase-muscle-mass","path":"/take-care-of-you/to-increase-muscle-mass","shorttitle":"To increase muscle mass ","virtual":null},{"icon":"i4144.png","image":"4144.jpg","imagepath":"/clasificacion/4144/","key":4144,"link":"vegan-recipes","path":"/take-care-of-you/vegan-recipes","shorttitle":"Vegan Recipes","virtual":null}],"description":"Kiwilimon Cares for You","device":"mobile","h1title":"Cares for You","htmltitle":"Cares for You","icon":"icuida.jpg","image":"cuida.jpg","imagepath":"/familia/cuida/","key":"cuida","language":"en","link":"take-care-of-you","metadescription":"Kiwilimon Cares for You","path":"/take-care-of-you","quantityclassifications":23,"quantityrecipes":701,"shorttitle":"Cares for You"},"recipelist":{"key":"cuida","more":true,"page":1,"payload":[{"cn":"Brenda Villagomez","cooktime":"30","difficulty":"1","fv":1398,"i":"49132.jpg","k":38353,"level":2,"m":2,"mt":"normal","n":"Cheese Broth ","pa":"/recipe/easy-recipes/cheese-broth","pr":"95.6%","preptime":"40","pub":"30 Dec 22 09:26 +0000","s":1,"t":"receta","totaltime":"70","v":"482921974784438","vh":"100.00%","vp":"B1xDbuGM","vr":"4.8","x":"p|kiwi|recetafamilia|cuida|1|1|1"},{"cn":"Jessica Alcántara","cooktime":"30","difficulty":"1","fv":81,"i":"34944.jpg","k":30913,"level":2,"m":2,"mt":"normal","n":"Nopal Soup with Guajillo Chile ","pa":"/recipe/soups/nopal-soup-with-guajillo-chile","pr":"97.6%","preptime":"25","pub":"14 Nov 22 13:37 +0000","s":1,"t":"receta","totaltime":"55","v":"5734632040001","vh":"100.00%","vp":"B1xDbuGM","vr":"4.9","x":"p|kiwi|recetafamilia|cuida|1|1|2"},{"k":"","mt":"sola","t":"newsletter","x":"p|kiwi|recetafamilia|cuida|1|1|3"},{"cn":"Cristian L. Macias","cooktime":"15","difficulty":"1","fv":2008,"i":"19420.jpg","k":24564,"level":2,"m":2,"mt":"normal","n":"Red Chicken Enchiladas ","pa":"/recipe/breakfasts/mexican-breakfasts/enchiladas/red-chicken-enchiladas","pr":"93.6%","preptime":"30","pub":"30 May 22 14:32 +0000","s":1,"t":"receta","totaltime":"45","v":"4856054879001","vh":"56.25%","vp":"B1xDbuGM","vr":"4.7","x":"p|kiwi|recetafamilia|cuida|1|1|4"},{"cn":"Mayte Rueda","cooktime":"20","difficulty":"1","fv":56,"i":"51366.jpg","k":39360,"level":2,"m":2,"mt":"normal","n":"Dairy-Free Vegetable Cream","pa":"/recipe/soups/creams/dairy-free-vegetable-cream","pr":"80.0%","preptime":"25","pub":"23 May 22 08:05 +0000","s":1,"t":"receta","totaltime":"45","v":"493424650926947","vh":"100.00%","vp":"B1xDbuGM","vr":"4.0","x":"p|kiwi|recetafamilia|cuida|1|1|5"},{"class":"adnetwork","formatid":"72089","k":"","mt":"sola","nid":"300x250","num":"p|kiwi|recetafamilia|cuida|1|1|6","placementid":"13081605","preid":"300x250","size":"[[300,250],[336,280]]","t":"ad","x":"p|kiwi|recetafamilia|cuida|1|1|6"},{"cn":"Angelica Ponce","cooktime":"20","difficulty":"1","fv":323,"i":"51321.jpg","k":39337,"level":2,"m":2,"mt":"normal","n":"Spring Rice ","pa":"/recipe/side-dishes/rice/spring-rice","pr":"90.0%","preptime":"30","pub":"10 May 22 11:40 +0000","s":1,"t":"receta","totaltime":"50","v":"207518026587139","vh":"100.00%","vp":"B1xDbuGM","vr":"4.5","x":"p|kiwi|recetafamilia|cuida|1|1|7"},{"cn":"Brenda Villagomez","cooktime":"15","difficulty":"1","fv":33,"i":"44328.jpg","k":36126,"level":2,"m":2,"mt":"normal","n":"Egg White Omelette with Vegetables ","pa":"/recipe/breakfasts/eggs/egg-white/egg-white-omelette-with-vegetables","pr":"90.0%","preptime":"20","pub":"20 Apr 22 11:44 +0000","s":1,"t":"receta","totaltime":"35","v":"6124151329001","vh":"100.00%","vp":"B1xDbuGM","vr":"4.5","x":"p|kiwi|recetafamilia|cuida|1|1|8"},{"cn":"Angelica Ponce","cooktime":"30","difficulty":"1","fv":424,"i":"50842.jpg","k":39241,"level":2,"m":2,"mt":"normal","n":"Delicious Meatballs in Chipotle Broth ","pa":"/recipe/chicken-and-meat/beef/meatball-recipes/delicious-meatballs-in-chipotle-broth","pr":"90.0%","preptime":"45","pub":"08 Apr 22 13:26 +0000","s":1,"t":"receta","totaltime":"75","v":"899115668643994","vh":"100.00%","vp":"B1xDbuGM","vr":"4.5","x":"p|kiwi|recetafamilia|cuida|1|1|9"},{"cn":"Inés Miselem ","cooktime":"60","difficulty":"1","fv":777,"i":"47262.jpg","k":37438,"level":2,"m":2,"mt":"normal","n":"Marinated Chicken Barbecue ","pa":"/recipe/chicken-and-meat/marinated-chicken-barbecue","pr":"60.0%","preptime":"30","pub":"14 Mar 22 16:53 +0000","s":1,"t":"receta","totaltime":"90","v":"240176852173889","vh":"100.00%","vp":"B1xDbuGM","vr":"3.0","x":"p|kiwi|recetafamilia|cuida|1|1|10"},{"class":"adnetwork","formatid":"72089","k":"","mt":"sola","nid":"300x250","num":"p|kiwi|recetafamilia|cuida|1|1|11","placementid":"13081605","preid":"300x250","size":"[[300,250],[336,280]]","t":"ad","x":"p|kiwi|recetafamilia|cuida|1|1|11"},{"cn":"Brenda Villagomez","cooktime":"30","difficulty":"1","fv":318,"i":"50670.jpg","k":39162,"level":2,"m":2,"mt":"normal","n":"Easy Chimichangas ","pa":"/recipe/main-courses/mexican/easy-chimichangas","pr":"100.0%","preptime":"45","pub":"10 Mar 22 17:37 +0000","s":1,"t":"receta","totaltime":"75","v":"122760456038888","vh":"100.00%","vp":"B1xDbuGM","vr":"5.0","x":"p|kiwi|recetafamilia|cuida|1|1|12"},{"cn":"Angelica Ponce","cooktime":"30","difficulty":"1","fv":185,"i":"50651.jpg","k":39153,"level":2,"m":2,"mt":"normal","n":"Veracruz-style Tuna ","pa":"/recipe/fish-and-seafood/tuna/canned-tuna/veracruz-style-tuna","pr":"100.0%","preptime":"45","pub":"07 Mar 22 08:50 +0000","s":1,"t":"receta","totaltime":"75","v":"987967510555087","vh":"100.00%","vp":"B1xDbuGM","vr":"5.0","x":"p|kiwi|recetafamilia|cuida|1|1|13"},{"cn":"Melissa Veytia","cooktime":"30","difficulty":"1","fv":995,"i":"21344.jpg","k":25237,"level":2,"m":2,"mt":"normal","n":"Spaghetti with Guajillo Sauce and Shrimp ","pa":"/recipe/pasta-recipes/spaghetti/spaghetti-with-guajillo-sauce-and-shrimp","pr":"94.3%","preptime":"5","pub":"03 Mar 22 10:55 +0000","s":1,"t":"receta","totaltime":"35","v":"4855982603001","vh":"56.25%","vp":"B1xDbuGM","vr":"4.7","x":"p|kiwi|recetafamilia|cuida|1|1|14"},{"cn":"Angelica Ponce","cooktime":"20","difficulty":"1","fv":133,"i":"50640.jpg","k":39147,"level":2,"m":2,"mt":"normal","n":"Veracruz-Style Quesadillas ","pa":"/recipe/fish-and-seafood/fish/veracruz-style-quesadillas","pr":"90.0%","preptime":"50","pub":"02 Mar 22 16:36 +0000","s":1,"t":"receta","totaltime":"70","v":"977261423619067","vh":"100.00%","vp":"B1xDbuGM","vr":"4.5","x":"p|kiwi|recetafamilia|cuida|1|1|15"},{"class":"adnetwork","formatid":"72089","k":"","mt":"sola","nid":"300x250","num":"p|kiwi|recetafamilia|cuida|1|1|16","placementid":"13081605","preid":"300x250","size":"[[300,250],[336,280]]","t":"ad","x":"p|kiwi|recetafamilia|cuida|1|1|16"}],"quantity":16,"time":0,"total":864,"type":"recetafamilia"},"recipesaludables":{"bc":[{"n":"Home","p":"/","position":1},{"n":"Preference","p":"/preference","position":2},{"n":"Diets","p":"/preference/diets","position":3}],"classifications":[{"icon":"","image":"3876.jpg","imagepath":"/clasificacion/3876/","key":3876,"link":"light-breakfasts","path":"/preference/diets/light-breakfasts","shorttitle":"Light Breakfasts ","virtual":null},{"icon":"","image":"3200.jpg","imagepath":"/clasificacion/3200/","key":3200,"link":"vegetarian","path":"/preference/diets/vegetarian","shorttitle":"Vegetarian","virtual":null},{"icon":"","image":"3888.jpg","imagepath":"/clasificacion/3888/","key":3888,"link":"nutritious-juices","path":"/preference/diets/nutritious-juices","shorttitle":"Nutritious Juices ","virtual":null},{"icon":"","image":"3186.jpg","imagepath":"/clasificacion/3186/","key":3186,"link":"weight-loss-recipes","path":"/preference/diets/weight-loss-recipes","shorttitle":"Weight Loss Recipes ","virtual":null},{"icon":"","image":"3207.jpg","imagepath":"/clasificacion/3207/","key":3207,"link":"vegan","path":"/preference/diets/vegan","shorttitle":"Vegan ","virtual":null},{"icon":"","image":"3894.jpg","imagepath":"/clasificacion/3894/","key":3894,"link":"paleo","path":"/preference/diets/paleo","shorttitle":"Paleo ","virtual":null},{"icon":"","image":"3907.jpg","imagepath":"/clasificacion/3907/","key":3907,"link":"green-smoothies","path":"/preference/diets/green-smoothies","shorttitle":"Green Smoothies ","virtual":null},{"icon":"","image":"51.jpg","imagepath":"/clasificacion/51/","key":51,"link":"chicken-breasts","path":"/recipes/chicken-and-meat/chickens/chicken-breasts","shorttitle":"Chicken Breasts ","virtual":null},{"icon":null,"image":"3456.jpg","imagepath":"/clasificacion/3456/","key":3456,"link":"gluten-free","path":"/preference/diets/gluten-free","shorttitle":"Gluten-Free ","virtual":null},{"icon":"","image":"3895.jpg","imagepath":"/clasificacion/3895/","key":3895,"link":"raw-vegans","path":"/preference/diets/raw-vegans","shorttitle":"Raw Vegans","virtual":null},{"icon":"","image":"3193.jpg","imagepath":"/clasificacion/3193/","key":3193,"link":"diabetes","path":"/preference/diets/diabetes","shorttitle":"Diabetes ","virtual":null},{"icon":"","image":"3914.jpg","imagepath":"/clasificacion/3914/","key":3914,"link":"diets","path":"/preference/diets/diets","shorttitle":"Diets ","virtual":null}],"description":"Cook these easy and delicious recipes without neglecting your lifestyle. Discover that you can eat healthily without sacrificing taste. See the best low-calorie dishes to take care of your health.\n","device":"mobile","family":"pref","father":null,"favorites":5,"h1title":"Recipes for Healthy Diets","htmltitle":"7000 Healthy Diet Recipes","image":"3185.jpg","imagepath":"/clasificacion/3185/","imagetitle":"Diet Recipes","key":3185,"language":"en","link":"diets","metadescription":"Cook these easy and delicious recipes without neglecting your lifestyle. Discover that you can eat healthily without sacrificing taste. See the best low-calorie dishes to take care of your health.\n","path":"/preference/diets","quantityclassifications":12,"quantityrecipes":8109,"shorttitle":"Diets","virtual":null},"ssh-desc":"Takes Care of You is the new section of Kiwilimón endorsed by specialists where we will help you have a balanced, harmonious, and healthy lifestyle. Regardless of the diet or restriction you follow, in this space you will find very useful tools: from notes with ideas and tips to recipes divided by diets with calorie counting.","ssh-media":"https://cdn7.kiwilimon.com/pages/te-cuida/574x450/ssh-tecuida.jpg.webp","ssh-nombre":"Kiwi Takes Care of You","ssh-url":"https://us.kiwilimon.com/te-cuida","tecuidaispro":{"client":null,"device":"mobile","geo":"WA","gep":"US","ip":"3.145.100.40","locallanguage":"en","origin":"kiwi","server":"api7","skin":"","t":1734965494}}; KL.LoadedModules.push('te-cuida'); KL.currenttemplate=WA.templates['te-cuida']; KL.LoadedModules.push('gallery'); KL.LoadedModules.push('slider'); KL.LoadedModules.push('tools'); KL.LoadedModules.push('feed'); KL.LoadedModules.push('recipelist');