/******/ "use strict"; var __webpack_exports__ = {}; ;// CONCATENATED MODULE: ./js/src/lib/confirmation-modal.js /** * @package Polylang */ const languagesList = jQuery( '.post_lang_choice' ); // Dialog box for alerting the user about a risky changing. const initializeConfirmationModal = () => { // We can't use underscore or lodash in this common code because it depends of the context classic or block editor. // Classic editor underscore is loaded, Block editor lodash is loaded. const { __ } = wp.i18n; // Create dialog container. const dialogContainer = jQuery( '
', { id: 'pll-dialog', style: 'display:none;' } ).text( __( 'Are you sure you want to change the language of the current content?', 'polylang' ) ); // Put it after languages list dropdown. // PHPCS ignore dialogContainer is a new safe HTML code generated above. languagesList.after( dialogContainer ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.after const dialogResult = new Promise( ( confirm, cancel ) => { const confirmDialog = ( what ) => { // phpcs:ignore PEAR.Functions.FunctionCallSignature.Indent switch ( what ) { // phpcs:ignore PEAR.Functions.FunctionCallSignature.Indent case 'yes': // Confirm the new language. languagesList.data( 'old-value', languagesList.children( ':selected' ).first().val() ); confirm(); break; case 'no': // Revert to the old language. languagesList.val( languagesList.data( 'old-value' ) ); cancel( 'Cancel' ); break; } dialogContainer.dialog( 'close' ); // phpcs:ignore PEAR.Functions.FunctionCallSignature.Indent } // phpcs:ignore PEAR.Functions.FunctionCallSignature.Indent // Initialize dialog box in the case a language is selected but not added in the list. const dialogOptions = { autoOpen: false, modal: true, draggable: false, resizable: false, title: __( 'Change language', 'polylang' ), minWidth: 600, maxWidth: '100%', open: function ( event, ui ) { // Change dialog box position for rtl language if ( jQuery( 'body' ).hasClass( 'rtl' ) ) { jQuery( this ).parent().css( { right: jQuery( this ).parent().css( 'left' ), left: 'auto' } ); } }, close: function ( event, ui ) { // When we're closing the dialog box we need to cancel the language change as we click on Cancel button. confirmDialog( 'no' ); }, buttons: [ { text: __( 'OK', 'polylang' ), click: function ( event ) { confirmDialog( 'yes' ); } }, { text: __( 'Cancel', 'polylang' ), click: function ( event ) { confirmDialog( 'no' ); } } ] }; if ( jQuery.ui.version >= '1.12.0' ) { Object.assign( dialogOptions, { classes: { 'ui-dialog': 'pll-confirmation-modal' } } ); } else { Object.assign( dialogOptions, { dialogClass: 'pll-confirmation-modal' } ); // jQuery UI 1.11.4 - WP < 5.6 } dialogContainer.dialog( dialogOptions ); } ); return { dialogContainer, dialogResult }; } const initializeLanguageOldValue = () => { // Keep the old language value to be able to compare to the new one and revert to it if necessary. languagesList.attr( 'data-old-value', languagesList.children( ':selected' ).first().val() ); }; ;// CONCATENATED MODULE: ./js/src/lib/metabox-autocomplete.js /** * @package Polylang */ // Translations autocomplete input box. function initMetaboxAutoComplete() { jQuery('.tr_lang').each( function () { var tr_lang = jQuery(this).attr('id').substring(8); var td = jQuery(this).parent().parent().siblings('.pll-edit-column'); jQuery(this).autocomplete( { minLength: 0, source: ajaxurl + '?action=pll_posts_not_translated' + '&post_language=' + jQuery('.post_lang_choice').val() + '&translation_language=' + tr_lang + '&post_type=' + jQuery('#post_type').val() + '&_pll_nonce=' + jQuery('#_pll_nonce').val(), select: function (event, ui) { jQuery('#htr_lang_' + tr_lang).val(ui.item.id); // ui.item.link is built and come from server side and is well escaped when necessary td.html(ui.item.link); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html }, } ); // when the input box is emptied jQuery(this).on( 'blur', function () { if ( ! jQuery(this).val() ) { jQuery('#htr_lang_' + tr_lang).val(0); // Value is retrieved from HTML already generated server side td.html(td.siblings('.hidden').children().clone()); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html } } ); } ); } ;// CONCATENATED MODULE: ./js/src/classic-editor.js /** * @package Polylang */ // tag suggest in metabox jQuery( function ( $ ) { $.ajaxPrefilter( function ( options, originalOptions, jqXHR ) { var lang = $( '.post_lang_choice' ).val(); if ( 'string' === typeof options.data && -1 !== options.url.indexOf( 'action=ajax-tag-search' ) && lang ) { options.data = 'lang=' + lang + '&' + options.data; } } ); } ); // overrides tagBox.get jQuery( function ( $ ) { // overrides function to add the language tagBox.get = function ( id ) { var tax = id.substr( id.indexOf( '-' ) + 1 ); // add the language in the $_POST variable var data = { action: 'get-tagcloud', lang: $( '.post_lang_choice' ).val(), tax: tax } $.post( ajaxurl, data, function ( r, stat ) { if ( 0 == r || 'success' != stat ) { r = wpAjax.broken; } // @see code from WordPress core https://github.com/WordPress/WordPress/blob/5.2.2/wp-admin/js/tags-box.js#L291 // @see wp_generate_tag_cloud function which generate the escaped HTML https://github.com/WordPress/WordPress/blob/a02b5cc2a8eecb8e076fbb7cf4de7bd2ec8a8eb1/wp-includes/category-template.php#L966-L975 r = $( '
' ).addClass( 'the-tagcloud' ).attr( 'id', 'tagcloud-' + tax ).html( r ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html $( 'a', r ).on( 'click', function () { tagBox.flushTags( $( this ).closest( '.inside' ).children( '.tagsdiv' ), this ); return false; } ); var tagCloud = $( '#tagcloud-' + tax ); // add an if else condition to allow modifying the tags outputted when switching the language var v = tagCloud.css( 'display' ); if ( v ) { // See the comment above when r variable is created. $( '#tagcloud-' + tax ).replaceWith( r ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.replaceWith $( '#tagcloud-' + tax ).css( 'display', v ); } else { // See the comment above when r variable is created. $( '#' + id ).after( r ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.after } } ); } } ); jQuery( function ( $ ) { // collect taxonomies - code partly copied from WordPress var taxonomies = new Array(); $( '.categorydiv' ).each( function () { var this_id = $( this ).attr( 'id' ), taxonomyParts, taxonomy; taxonomyParts = this_id.split( '-' ); taxonomyParts.shift(); taxonomy = taxonomyParts.join( '-' ); taxonomies.push( taxonomy ); // store the taxonomy for future use // add our hidden field in the new category form - for each hierarchical taxonomy // to set the language when creating a new category // html code inserted come from html code itself. $( '#' + taxonomy + '-add-submit' ).before( // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.before $( '' ).attr( 'type', 'hidden' ) .attr( 'id', taxonomy + '-lang' ) .attr( 'name', 'term_lang_choice' ) .attr( 'value', $( '.post_lang_choice' ).val() ) ); } ); // Initialize current language to be able to compare if it changes. initializeLanguageOldValue(); // ajax for changing the post's language in the languages metabox $( '.post_lang_choice' ).on( 'change', function ( event ) { // Initialize the confirmation dialog box. const confirmationModal = initializeConfirmationModal(); const { dialogContainer: dialog } = confirmationModal; let { dialogResult } = confirmationModal; // The selected option in the dropdown list. const selectedOption = event.target; if ( $( this ).data( 'old-value' ) !== selectedOption.value && ! isEmptyPost() ) { dialog.dialog( 'open' ); } else { dialogResult = Promise.resolve(); } // phpcs:disable PEAR.Functions.FunctionCallSignature.EmptyLine dialogResult.then( () => { var lang = selectedOption.options[selectedOption.options.selectedIndex].lang; // phpcs:ignore PEAR.Functions.FunctionCallSignature.Indent var dir = $( '.pll-translation-column > span[lang="' + lang + '"]' ).attr( 'dir' ); // phpcs:ignore PEAR.Functions.FunctionCallSignature.Indent var data = { // phpcs:ignore PEAR.Functions.FunctionCallSignature.Indent action: 'post_lang_choice', lang: selectedOption.value, post_type: $( '#post_type' ).val(), taxonomies: taxonomies, post_id: $( '#post_ID' ).val(), _pll_nonce: $( '#_pll_nonce' ).val() } $.post( ajaxurl, data, function ( response ) { // Target a non existing WP HTML id to avoid a conflict with WP ajax requests. var res = wpAjax.parseAjaxResponse( response, 'pll-ajax-response' ); $.each( res.responses, function () { switch ( this.what ) { case 'translations': // translations fields // Data is built and come from server side and is well escaped when necessary $( '.translations' ).html( this.data ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html initMetaboxAutoComplete(); break; case 'taxonomy': // categories metabox for posts var tax = this.data; // @see wp_terms_checklist https://github.com/WordPress/WordPress/blob/5.2.2/wp-admin/includes/template.php#L175 // @see https://github.com/WordPress/WordPress/blob/5.2.2/wp-admin/includes/class-walker-category-checklist.php#L89-L111 $( '#' + tax + 'checklist' ).html( this.supplemental.all ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html // @see wp_popular_terms_checklist https://github.com/WordPress/WordPress/blob/5.2.2/wp-admin/includes/template.php#L236 $( '#' + tax + 'checklist-pop' ).html( this.supplemental.populars ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html // @see wp_dropdown_categories https://github.com/WordPress/WordPress/blob/5.5.1/wp-includes/category-template.php#L336 // which is called by PLL_Admin_Classic_Editor::post_lang_choice to generate supplemental.dropdown $( '#new' + tax + '_parent' ).replaceWith( this.supplemental.dropdown ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.replaceWith $( '#' + tax + '-lang' ).val( $( '.post_lang_choice' ).val() ); // hidden field break; case 'pages': // parent dropdown list for pages // @see wp_dropdown_pages https://github.com/WordPress/WordPress/blob/5.2.2/wp-includes/post-template.php#L1186-L1208 // @see https://github.com/WordPress/WordPress/blob/5.2.2/wp-includes/class-walker-page-dropdown.php#L88 $( '#parent_id' ).html( this.data ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html break; case 'flag': // flag in front of the select dropdown // Data is built and come from server side and is well escaped when necessary $( '.pll-select-flag' ).html( this.data ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html break; case 'permalink': // Sample permalink var div = $( '#edit-slug-box' ); if ( '-1' != this.data && div.children().length ) { // @see get_sample_permalink_html https://github.com/WordPress/WordPress/blob/5.2.2/wp-admin/includes/post.php#L1425-L1454 div.html( this.data ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html } break; } } ); // Update the old language with the new one to be able to compare it in the next changing. initializeLanguageOldValue(); // modifies the language in the tag cloud $( '.tagcloud-link' ).each( function () { var id = $( this ).attr( 'id' ); tagBox.get( id ); } ); // Modifies the text direction $( 'body' ).removeClass( 'pll-dir-rtl' ).removeClass( 'pll-dir-ltr' ).addClass( 'pll-dir-' + dir ); $( '#content_ifr' ).contents().find( 'html' ).attr( 'lang', lang ).attr( 'dir', dir ); $( '#content_ifr' ).contents().find( 'body' ).attr( 'dir', dir ); pll.media.resetAllAttachmentsCollections(); } ) }, () => {} // Do nothing when promise is rejected by clicking the Cancel dialog button. ); // phpcs:enable PEAR.Functions.FunctionCallSignature.EmptyLine function isEmptyPost() { const title = $( 'input#title' ).val(); const content = $( 'textarea#content' ).val(); const excerpt = $( 'textarea#excerpt' ).val(); return ! title && ! content && ! excerpt; } } ); initMetaboxAutoComplete(); } ); /** * @since 3.0 * * @namespace pll */ var pll = window.pll || {}; /** * @since 3.0 * * @namespace pll.media */ _.extend( pll, { media: {} } ); /** * @since 3.0 * * @alias pll.media * @memberOf pll * @namespace */ var media = _.extend( pll.media, /** @lends pll.media.prototype */ { /** * TODO: Find a way to delete references to Attachments collections that are not used anywhere else. * * @type {wp.media.model.Attachments} */ attachmentsCollections : [], /** * Imitates { @see wp.media.query } but log all Attachments collections created. * * @param {Object} [props] * @return {wp.media.model.Attachments} */ query: function ( props ) { var attachments = pll.media.query.delegate( props ); pll.media.attachmentsCollections.push( attachments ); return attachments; }, resetAllAttachmentsCollections: function () { this.attachmentsCollections.forEach( function ( attachmentsCollection ) { /** * First reset the { @see wp.media.model.Attachments } collection. * Then, if it is mirroring a { @see wp.media.model.Query } collection, * refresh this one too, so it will fetch new data from the server, * and then the wp.media.model.Attachments collection will synchronize with the new data. */ attachmentsCollection.reset(); if (attachmentsCollection.mirroring) { attachmentsCollection.mirroring._hasMore = true; attachmentsCollection.mirroring.reset(); } } ); } } ); if ( 'undefined' !== typeof wp && 'undefined' !== typeof wp.media ) { /** * @since 3.0 * * @memberOf pll.media */ media.query = _.extend( media.query, /** @lends pll.media.query prototype */ { /** * @type Function References WordPress { @see wp.media.query } constructor */ delegate: wp.media.query } ) // Substitute WordPress media query shortcut with our decorated function. wp.media.query = media.query } @import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,700;0,900;1,600&display=swap);@import url(https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap);.special-copy .copy.icon::before{position:relative;top:0;left:4px}.copy.icon::before{position:relative;top:-5px;left:4px}.green{background-color:#21ba45!important;color:#fff!important}.green a :active,.green a :focus,.green a :hover,.green a:active,.green a:focus,.green a:hover{background-color:#21ba45!important;color:#fff!important}.pink{background-color:#e03997!important;color:#fff!important}.pink a :active,.pink a :focus,.pink a :hover,.pink a:active,.pink a:focus,.pink a:hover{background-color:#e03997!important;color:#fff!important}.yellow{background-color:#fbbd08!important;color:#fff!important}.yellow a :active,.yellow a :focus,.yellow a :hover,.yellow a:active,.yellow a:focus,.yellow a:hover{background-color:#fbbd08!important;color:#fff!important}.purple{background-color:#a333c8!important;color:#fff!important}.purple a :active,.purple a :focus,.purple a :hover,.purple a:active,.purple a:focus,.purple a:hover{background-color:#a333c8!important;color:#fff!important}.blue{background-color:#69b2f1!important;color:#fff!important}.blue a :active,.blue a :focus,.blue a :hover,.blue a:active,.blue a:focus,.blue a:hover{background-color:#69b2f1!important;color:#fff!important}.grey{background-color:#999!important;color:#fff!important}.grey a :active,.grey a :focus,.grey a :hover,.grey a:active,.grey a:focus,.grey a:hover{background-color:#999!important;color:#fff!important}.teal{background-color:#48a9a6!important;color:#fff!important}.teal a :active,.teal a :focus,.teal a :hover,.teal a:active,.teal a:focus,.teal a:hover{background-color:#48a9a6!important;color:#fff!important}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1,h2,h3,h4,h5,h6,p{margin:0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}ul{list-style:none!important;padding:0!important;margin:0!important}.breadcrumb .selected-page{padding-right:10px}.wpsc-author-skin{-webkit-box-shadow:0 0 9px 1px rgba(0,0,0,.15)!important;box-shadow:0 0 9px 1px rgba(0,0,0,.15)!important;padding:20px!important;border-radius:8px!important}.main-title{font-size:32px;margin-bottom:40px;font-weight:900}.secondary-title{font-size:20px;margin-bottom:12px;font-weight:400}.third-title{font-size:16px;color:#6d6d6d;font-weight:300}@media (min-width:768px){.main-title{font-size:44px}.secondary-title{font-size:22px}}.the-title{font-size:32px;font-weight:800;margin:0 0 40px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.the-title img{width:40px;height:40px;margin-right:20px;border:none;border-radius:50%}.the-title .title-cta{margin-left:40px}.the-description{max-width:900px;font-size:18px;text-align:left!important;line-height:32px;color:#000}.btn{padding:0 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;height:48px;border-top-left-radius:30px;border-bottom-left-radius:30px;border-top-right-radius:30px;border-bottom-right-radius:30px;background:#422b56;border:none;text-transform:uppercase;text-decoration:none;color:#fff;letter-spacing:2px;cursor:pointer;position:relative;overflow:hidden;z-index:1;-webkit-transition:all .3s;transition:all .3s}.btn:after{content:'';position:absolute;bottom:0;left:0;width:100%;height:100%;background-color:#422b56;border-radius:10rem;z-index:-2}.btn:before{content:'';position:absolute;bottom:0;left:0;width:0%;height:100%;background-color:#000;-webkit-transition:all .3s;transition:all .3s;border-radius:10rem;z-index:-1}.btn:hover{color:#fff}.btn:hover:before{width:100%}.btn.outline{background:0 0;border:2px solid #422b56;color:#000}.btn.outline:after{background-color:#fff}.btn.outline:before{background-color:#000}.btn.outline:hover{color:#fff}.btn.outline:hover:before{width:100%}.btn.white-btn{color:#422b56}.btn.white-btn:after{background-color:#fff}.btn.white-btn:before{background-color:#f4c30e}.btn.white-btn:hover{color:#422b56}.btn.white-btn:hover:before{width:100%}.site-cta{border-radius:30px;padding:0 15px;height:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:16px;text-transform:uppercase;line-height:20px}.site-cta .icon{font-size:20px}.big-cta{background:#422b56!important;border:2px solid #fff!important;border-radius:34.5px!important;height:69px!important;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important;color:#fff!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.page-wrapper{-webkit-box-sizing:border-box;box-sizing:border-box;color:#2c2c2c;font-family:Montserrat,sans-serif;font-weight:400;box-sizing:border-box;font-size:16px;background:#f9f9f9}.page-wrapper .page-wrapper-inner{max-width:1240px;width:100%;margin:auto;padding:0 20px}.page-wrapper .page-wrapper-inner.ico-page-wrapper{max-width:1440px;font-family:Lato,sans-serif!important}.page-wrapper.detail-wrapper .page-wrapper-inner{max-width:1280px}.page-wrapper .the-full-width-section{width:100%;background-color:#fff}@media (min-width:768px){.page-wrapper-inner{padding:0 40px}}.separator-line{width:100%;height:1px;background-color:#ebebeb;display:block;margin:22px 0}.segment-wrapper{-webkit-box-shadow:none!important;box-shadow:none!important;border:none!important;background-color:#f9f9f9!important}.theme-card{background-color:#422b56!important;-webkit-box-shadow:0 2px 35px 0 rgba(0,0,0,.21)!important;box-shadow:0 2px 35px 0 rgba(0,0,0,.21)!important;border-radius:8px!important;border:none!important}.theme-card .header{color:#fff!important}.theme-variant-card{background-color:#fff!important;-webkit-box-shadow:0 2px 35px 0 rgba(0,0,0,.21)!important;box-shadow:0 2px 35px 0 rgba(0,0,0,.21)!important;border-radius:8px!important;border:none!important;position:relative}.full-width-grey{padding:60px 20px;background-color:#f9f9f9!important;width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}.full-width-grey .full-width-inner{max-width:1360px;margin:auto!important}.full-width-grey .segment{background-color:#fff!important;background:#fff!important;-webkit-box-shadow:0 2px 35px 0 rgba(0,0,0,.25)!important;box-shadow:0 2px 35px 0 rgba(0,0,0,.25)!important;border:none!important;border-radius:0!important;padding:32px!important;position:relative!important}.full-width-grey .segment .vertical{display:none!important}.full-width-grey .segment h1.header{font-size:32px!important;text-align:left!important;font-weight:800!important;width:45%!important;border-bottom:solid 1px #000!important;padding-bottom:12px!important}.full-width-grey .segment .message{background-color:transparent!important;border-radius:0!important;border:solid 1px #000!important;padding:10px}.full-width-grey .segment .box-header{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;max-width:80%!important;text-align:left!important;-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important;margin-bottom:32px!important}.full-width-grey .segment .box-header .icon{display:none!important}.full-width-segment{background-color:#e0b40d!important;background: radial-gradient(#f7bd00,#7b48a7)!important;padding:120px 20px;width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;overflow:hidden}.full-width-segment .cards{max-width:1440px;margin:auto!important}.full-width-segment .card{padding:20px!important}.full-width-segment h4.header{background:0 0!important;border:none!important;border-bottom:solid 1px #000!important;font-size:32px!important;border-radius:0!important;padding:0 0 20px!important;margin-bottom:40px!important}.full-width-segment .card-bottom-content{top:37px!important;position:relative!important;left:-42px!important;width:calc(100% + 84px)!important;max-width:none!important;border:none!important}.full-width-segment .card-bottom-content .label{border-top-left-radius:0!important;border-top-right-radius:0!important;background-color:#422b56!important;color:#fff}.full-width-white{background-color:#fff!important;padding:40px 20px;width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}.full-width-white .fullwidth-inner{max-width:1380px;margin:auto!important}canvas{display:block;vertical-align:bottom}#particles-js{position:absolute;width:100%;height:100%;top:0}h1:not(.site-title):before,h2:before{display:none!important}.avatar{border-radius:50%;width:28px;height:28px;margin-right:10px}.has-background-white .site .the-tag a:focus:not(.wp-block-button__link):not(.wp-block-file__button),.has-background-white .site a.the-tag:focus:not(.wp-block-button__link):not(.wp-block-file__button){background-color:transparent!important;color:inherit!important}.tag-container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-top:40px;padding-bottom:40px}.the-tag{padding:0 10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;height:34px;border-top-left-radius:20px;border-bottom-left-radius:20px;border-top-right-radius:20px;border-bottom-right-radius:20px;font-size:14px;margin-right:20px;margin-bottom:20px;text-decoration:none;color:#2c2c2c}.the-tag:last-child{margin-right:0}.the-tag a{text-decoration:none;color:#2c2c2c;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.the-tag.main-tag{background-color:#422b56;color:#fff}.the-tag.main-tag a{color:#fff;margin-left:10px}.the-tag.main-tag a .tag-main-text{background-color:#422b56;color:#fff}.the-tag.main-tag a:active,.the-tag.main-tag a:hover{background-color:#422b56;color:#fff}.the-tag.normal-tag{background-color:#fff;-webkit-box-shadow:0 0 7px 0 rgba(0,0,0,.2);box-shadow:0 0 7px 0 rgba(0,0,0,.2)}.the-tag.black-tag{background-color:#000}.the-tag.black-tag .tag-main-text{color:#fff}.the-tag.black-tag a .tag-main-text{background-color:#000;color:#fff}.the-tag.black-tag a:active,.the-tag.black-tag a:hover{background-color:#000;color:#fff}.the-tag.yellow-tag{background-color:#f4c30e}.the-tag.yellow-tag .tag-main-text{color:#000}.the-tag.yellow-tag a .tag-main-text{background-color:#f4c30e;color:#000}.the-tag.yellow-tag a:active,.the-tag.yellow-tag a:hover{background-color:#f4c30e;color:#000}.the-tag.large-text{-ms-flex-wrap:wrap;flex-wrap:wrap;word-wrap:break-word;word-break:break-all;height:auto;padding:10px;text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;min-height:34px}.the-tag.large-text .gen-title{margin-right:10px}@media (min-width:768px){.the-tag.large-text{padding:0 10px}}.the-tag .avatar{margin-right:0}.the-tag .tag-main-text{padding:0 10px;font-weight:600}.the-tag .tag-text{padding:0 10px;color:#656565}.the-tag .detail{display:-webkit-box;display:-ms-flexbox;display:flex}.list-page .tag-container{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.the-list-container{margin-bottom:60px}.the-list-container .btn{margin:20px auto 0}.list-header{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:solid 2px #422b56;padding-bottom:6px;margin-bottom:25px}.list-header .list-title{font-size:28px;font-weight:600}.list-header .view-all{font-size:16px;text-decoration:none;color:#656565}.the-list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tile{max-width:377px;background-color:#fff;min-height:461px;position:relative;width:100%;margin:0 0 40px;-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.1);box-shadow:0 0 10px 0 rgba(0,0,0,.1);padding:10px 10px 20px;overflow:hidden;-webkit-transition:all .4s cubic-bezier(.5,.25,0,1);transition:all .4s cubic-bezier(.5,.25,0,1)}.tile:hover{-webkit-transform:translate(0,-8px);transform:translate(0,-8px);-webkit-box-shadow:0 0 24px 1px rgba(0,0,0,.4);box-shadow:0 0 24px 1px rgba(0,0,0,.4)}.tile:hover .image{-webkit-transform:scale(1.1);transform:scale(1.1)}.tile:hover .option .option-text{background-color:#422b56;color:#fff}.tile .grey-label{position:absolute;top:0;right:-2px;z-index:1;border-radius:0}.tile .image-container{height:238px;margin:0!important;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.tile .image-container video{width:100%!important}.tile .image{width:100%!important;height:100%!important;position:absolute;top:0;left:0;background-size:cover;background-position:center!important;-webkit-transition:all .4s cubic-bezier(.5,.25,0,1);transition:all .4s cubic-bezier(.5,.25,0,1)}.tile .wpsc-pdf-iframe-container{width:100%;height:100%}.tile .card-info{padding:0 10px}.tile .profile{display:-webkit-box;display:-ms-flexbox;display:flex}.tile .profile-inner{background-color:#fff;-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.1);box-shadow:0 0 10px 0 rgba(0,0,0,.1);border-radius:19px;height:38px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;top:-16px;width:auto;left:0;padding:0 10px 0 6px}.tile .profile-inner a{color:#636363;text-decoration:none}.tile .card-info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:relative}.tile .title{margin-bottom:40px;font-size:24px;font-weight:700}.tile .tag-container{padding:20px 0;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;max-width:350px}.tile .tag-container .the-tag{margin-right:8px;margin-bottom:8px}.tile .price{font-size:22px;color:#000;font-weight:700;display:-webkit-box;display:-ms-flexbox;display:flex}.tile .price .detail{margin-left:10px}.tile .option .option-text{position:absolute;bottom:0;right:0;height:54px;width:112px;background-color:#f4c30e;color:#000;border-top-left-radius:30px;border-bottom-left-radius:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:22px;text-transform:uppercase;color:#000;font-weight:700;text-decoration:none}@media (min-width:768px){.the-list{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:normal;-ms-flex-align:normal;align-items:normal}}.breadcrumb{margin-bottom:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.breadcrumb .breadcrumb-inner{background-color:#422b56;min-height:40px;border-radius:30px;padding:6px!important}.breadcrumb .btn{height:33px;color:#422b56;letter-spacing:0;font-weight:400;margin:0}.breadcrumb .separator{color:#fff;background-image:url(../img/separator-arrow.svg);background-repeat:no-repeat;width:9px;height:13px;display:block}.breadcrumb .selected-page{color:#fff;font-weight:500}.breadcrumb ul{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.breadcrumb ul li{margin-right:10px}.breadcrumb ul li:last-child{margin-right:0}@media (max-width:767px){.breadcrumb ul{display:block;text-align:center}.breadcrumb ul li{margin-bottom:8px}.breadcrumb ul .separator{display:none}}.modal-list{position:fixed;z-index:10;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0,0,0,.85);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box;display:none}.modal-list .close-modal{background-image:url(../img/close-icon.svg);background-repeat:no-repeat;width:22px;height:22px;display:block;position:absolute;right:0;top:-25px;cursor:pointer}.modal-list .modal{width:100%;max-width:670px;position:relative}.modal-list .modal .modal-inner{background-color:#fff;border-radius:8px;max-height:600px;overflow-y:auto}.modal-list .image-container{padding-top:20px;margin-bottom:20px}.modal-list .image-container img{width:280px;height:230px;-o-object-fit:contain;object-fit:contain;margin:auto;display:block}.modal-list .modal-info{padding:0 20px}.modal-list .modal-info .profile{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#656565;font-size:14px;padding-bottom:8px;border-bottom:solid 1px #ebebeb;margin-bottom:20px}.modal-list .modal-info .modal-title{font-size:22px;margin-bottom:20px}.modal-list .modal-info .desc-title{font-size:16px;margin-bottom:8px;font-weight:400}.modal-list .modal-info .description{font-size:14px;font-weight:300;margin-bottom:20px}.modal-list .modal-info .main-info-bottom,.modal-list .modal-info .main-info-top{font-size:14px}.modal-list .modal-info .main-info-bottom p,.modal-list .modal-info .main-info-top p{margin-bottom:5px;color:#656565}.modal-list .modal-info .main-info-bottom{margin-bottom:20px}.modal-list .modal-info .highlighted{font-weight:700;color:#2c2c2c}.modal-list .modal-info .theBtn{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}@media (min-width:768px){.modal-list .modal .modal-inner{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:none}.modal-list .image-container{width:360px;padding:0;margin:0}.modal-list .image-container img{width:100%;height:100%;width:360px;height:464px;-o-object-fit:cover;object-fit:cover}.modal-list .modal-info{padding:20px}.modal-list .modal-info .modal-title{margin-bottom:40px}.modal-list .modal-info .description{margin-bottom:45px;overflow:hidden;max-height:64px}.modal-list .modal-info .main-info-top{padding-bottom:5px;border-bottom:solid 1px #ebebeb}.modal-list .modal-info .main-info-bottom{padding-top:10px;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}.modal-list .modal-info .modal-col{padding-right:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.modal-list .modal-info .modal-col .des-text{margin-bottom:8px;display:-webkit-box;display:-ms-flexbox;display:flex}.modal-list .modal-info .theBtn{margin-bottom:0}}.detail-wrapper .breadcrumb .breadcrumb-inner{padding:6px 18px 6px 6px!important}.detail-top{padding-bottom:80px}.detail-top .top-inner{background-color:#422b56;width:100%;border-radius:10px;padding:60px 20px}.detail-top .top-inner img{-webkit-box-shadow:0 13px 22px 0 rgba(0,0,0,.46);box-shadow:0 13px 22px 0 rgba(0,0,0,.46)}.detail-top .top-inner .category{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;left:-20px}.detail-top .top-inner .cat-inner{background-color:#f4c30e;color:#000;height:40px;border-top-right-radius:20px;border-bottom-right-radius:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 20px 0 15px;font-size:18px}.detail-top .top-inner .cat-inner a{color:#422b56;text-decoration:none;margin-right:10px}.videoClass .nft-media,.videoClass .nft-media video{width:100%;display:block}.timer-container{max-width:500px;display:-webkit-box;display:-ms-flexbox;display:flex}.timer-container .box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:50%;border:solid 4px #000;width:77px;height:77px;margin-right:6px;margin-top:10px}.timer-container .box.theDay{border-color:#c42f3d}.timer-container .box.theHour{border-color:#1d79b5}.timer-container .box.theMin{border-color:#893ba9}.timer-container .box.theSecond{border-color:#f39d14}.timer-container h2{font-size:15px;font-weight:500}.timer-container{padding-top:40px;margin-bottom:40px}.timer-container .timer{padding-top:20px}p{font-weight:300;line-height:20px}.detail-bottom{padding-top:40px;padding-bottom:40px}.detail-bottom .profile{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#656565;font-size:14px;margin-bottom:20px}.detail-bottom .profile a{margin-left:8px}.detail-bottom .title{font-size:28px;margin-bottom:60px;font-weight:600}.detail-top .right-side .tag-container{margin-top:6px;margin-bottom:0}.detail-top .right-side .title{font-size:28px;margin-bottom:10px}.detail-top .right-side .profile{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#656565;font-size:14px;margin-bottom:40px}.detail-top .right-side .ui.grid{margin-bottom:40px}.detail-top .right-side .timer{padding-top:20px;display:-webkit-box;display:-ms-flexbox;display:flex}.detail-top .right-side .timer div{margin-right:10px}.one-column,.two-column{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.one-column .btn,.two-column .btn{margin-bottom:8px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center}.one-column .col,.two-column .col{width:50%}.two-column .column-left{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@media (max-width:767px){.two-column .column-right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.one-column .column{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap;flex-wrap:wrap}.one-column .btn{margin-right:8px}.detail-feature-title{font-size:14px}.feature-label{font-size:26px;font-weight:600;margin-top:8px}.feature-label-link{font-size:16px;font-weight:600;text-decoration:none;color:#2c2c2c;margin-bottom:8px}.description{margin-bottom:40px}.detail .active-auction,.detail .auction-text{display:none}.detail-bottom .tag-container{margin-top:20px;margin-bottom:30px;padding:0}.table-header{background-color:#f4c30e;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:8px 10px;color:#000;height:35px}.table-header .table-left{width:70%;display:-webkit-box;display:-ms-flexbox;display:flex}.table-header .table-right{width:30%;text-align:right}.history-container .ui.raised.segment{-webkit-box-shadow:none;box-shadow:none;border:none;border-bottom:solid 1px #2c2c2c;border-radius:0;padding:10px}.history-container .ui.raised.segment .detail,.history-container .ui.raised.segment .label{background:0 0!important}.history-container .ui.raised.segment .label{padding:0}.history-container .ui.raised.segment .label img{position:relative;top:11px}.history-container .ui.raised.segment .detail{width:100%;margin-left:21px;margin-top:2px}.history-container .ui.raised.segment .detail a{color:#2c2c2c;font-weight:500}.history-container .ui.raised.segment .user.icon{display:none}.history-container .ui.raised.segment .ui.top.right.attached.label{top:22px;color:#2c2c2c;font-weight:500;font-size:18px;right:10px}@media (min-width:768px){.timer-container{max-width:500px;display:-webkit-box;display:-ms-flexbox;display:flex}.detail-top{display:-webkit-box;display:-ms-flexbox;display:flex}.detail-top .right-side{max-width:50%;width:100%;padding-left:40px}.detail-bottom{display:-webkit-box;display:-ms-flexbox;display:flex}.detail-bottom .bottom-left{width:60%;padding-right:40px}.detail-bottom .bottom-right{width:40%;padding-top:10px}}@media (min-width:992px){.timer-container .box{width:100px;height:100px;margin-right:10px}.timer-container h2{font-size:18px}.detail-top .right-side{max-width:68.56%;padding-left:80px}.detail-bottom .bottom-right{padding-left:40px}.two-column{margin-top:40px}.two-column .column-left{width:45%;position:relative}.two-column .column-left:after{content:"";display:block;position:absolute;width:1px;height:100%;background-color:#ebebeb;right:30px}.two-column .column-right{width:55%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.two-column .column-right .btn{margin-right:8px}.one-column .column{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap;flex-wrap:wrap}.one-column .btn{margin-right:8px}}.top-cards{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.top-cards .card{height:72px;background-color:#fff;margin-right:28px;border:1px solid #f7f7f7;-webkit-box-shadow:0 3px 18px 0 rgba(0,0,0,.1);box-shadow:0 3px 18px 0 rgba(0,0,0,.1);border-radius:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 20px;margin-bottom:28px;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.top-cards .icon{margin-right:20px;color:#424562}.top-cards .content{color:#424562}.top-cards .content .button{background-color:transparent!important;padding:9px 0}.top-cards .content .ui.mini.button{background-color:transparent!important;color:#000!important}.top-cards .content .ui.mini.button:hover{border:transparent!important}.top-cards .labeled{position:relative;top:5px}.top-cards .description{margin-bottom:0}.top-cards .description img{display:inline-block!important}.ui.mini.labeled.button:not(.icon).copy-id-section{background:#fff!important;border:1px solid #f3f3f3!important;-webkit-box-shadow:0 10px 16px 0 rgba(0,0,0,.15)!important;box-shadow:0 10px 16px 0 rgba(0,0,0,.15)!important;border-radius:8px!important}.ui.mini.labeled.button:not(.icon).copy-id-section .button{background-color:#fff!important;padding:9px}.ui.mini.labeled.button:not(.icon).copy-id-section .button .icon{color:#000}.ui.mini.labeled.button:not(.icon).copy-id-section .pointing{border:none!important}.ui.mini.labeled.button:not(.icon).copy-id-section .pointing:after,.ui.mini.labeled.button:not(.icon).copy-id-section .pointing:before{content:'';width:1px;height:27px!important;background-color:#979797;-webkit-transform:none;transform:none;top:11px;bottom:unset;border:none}.the-action-box{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around;width:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:163px;background-color:#422b56;-webkit-box-shadow:0 2px 35px 0 rgba(0,0,0,.21);box-shadow:0 2px 35px 0 rgba(0,0,0,.21);border-radius:8px;margin-bottom:60px;padding:40px 0}.the-action-box .card{background-color:transparent!important;-webkit-box-shadow:none!important;box-shadow:none!important;margin:0 auto!important;width:auto!important}.the-action-box .button{width:350px!important;background:#fff!important;border:2px solid #fff!important;border-radius:34px!important;height:69px!important;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important;color:#000!important}.the-action-box .button .icon{height:20px}@media (max-width:767px){.the-action-box{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.the-action-box .content{margin-bottom:12px}}#hardcap-progress-bar{background-color:transparent!important;margin-bottom:55px}#hardcap-progress-bar #npercent,#hardcap-progress-bar .bar{display:none!important}.custom-input{width:80%;background-color:#251b2f;height:44px;border-radius:30px;padding:5px;position:relative;opacity:0;margin:auto}.custom-input .input-trail{background-color:#d0a60c;height:100%;display:block;border-radius:80px}.custom-input .input-thumb{border-radius:50%;width:42px;height:42px;background-color:#d0a60c;position:absolute;top:2px}.custom-input .input-thumb:before{content:"";border-radius:50%;width:54px;height:54px;display:block;background-color:#8b8b8b;opacity:.5;left:-6px;top:-6px;position:relative}.custom-input .text-value{position:absolute;top:0;right:9px;color:#fff;font-size:35px;line-height:40px;font-weight:800}.custom-input .label{text-align:right;margin-top:2px;margin-right:6px}.coin-section .header,.coin-section .no-card,.coin-section .no-card .content,.crowd-section .header,.crowd-section .no-card,.crowd-section .no-card .content,.noBG{background-color:transparent!important;border:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}.coin-section .purple-box,.crowd-section .purple-box{background:#422b56;-webkit-box-shadow:0 2px 35px 0 rgba(0,0,0,.21);box-shadow:0 2px 35px 0 rgba(0,0,0,.21);border-radius:8px;margin-bottom:80px!important;overflow:hidden;position:relative;margin-left:0!important;margin-right:0!important}.coin-section .purple-box .content,.crowd-section .purple-box .content{padding:30px!important}.coin-section .purple-box .content .button-container,.crowd-section .purple-box .content .button-container{border-top:solid 1px #e1e1e1;margin-top:40px;padding-top:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.coin-section .purple-box p,.crowd-section .purple-box p{color:#fff!important}.coin-section .purple-box .label,.crowd-section .purple-box .label{height:30px!important;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:13px!important}.coin-section .purple-box .label .detail,.crowd-section .purple-box .label .detail{height:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.coin-section .purple-box .yellow.label,.crowd-section .purple-box .yellow.label{height:40px!important;padding:0 20px!important;font-size:16px;font-weight:700!important;display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important;width:auto!important;border-radius:30px!important;font-size:16px!important;font-weight:800!important;margin-right:40px}.coin-section .white-box,.crowd-section .white-box{background:#fff;-webkit-box-shadow:0 2px 35px 0 rgba(0,0,0,.25)!important;box-shadow:0 2px 35px 0 rgba(0,0,0,.25)!important;border:none!important;margin-bottom:80px!important}.coin-section .full-purple,.crowd-section .full-purple{padding:60px 20px;background-color:#422b56!important;width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw!important;margin-right:-50vw!important}.coin-section .full-purple .full-purple-inner,.crowd-section .full-purple .full-purple-inner{max-width:1100px;margin:0 auto!important}.coin-section .full-purple .ui.mini.button,.crowd-section .full-purple .ui.mini.button{height:40px!important;padding:0 20px!important;font-size:16px;font-weight:700!important;-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important;width:auto!important;border-radius:30px!important;background-color:#fff!important;-webkit-box-shadow:0 0 7px 0 rgba(0,0,0,.2)!important;box-shadow:0 0 7px 0 rgba(0,0,0,.2)!important;margin-left:10px;line-height:34px}.coin-section .full-purple .ui.mini.button[data-modal],.crowd-section .full-purple .ui.mini.button[data-modal]{color:rgba(0,0,0,.6)!important;font-size:16px!important}.coin-section .full-purple .ui.mini.button .icon:not(.button),.crowd-section .full-purple .ui.mini.button .icon:not(.button){height:auto!important}.coin-section .full-purple .ui.mini.button.red,.crowd-section .full-purple .ui.mini.button.red{background-color:#db2828!important}.coin-section .no-card .mini.label,.crowd-section .no-card .mini.label{font-size:14px;margin:0 10px 10px;vertical-align:top}.coin-section .header,.crowd-section .header{font-size:28px!important;position:relative;font-weight:900!important}.coin-section .header:after,.crowd-section .header:after{content:'';border-radius:3.5px;width:114px;height:8px;display:block;margin-top:10px}.coin-section .header .image,.crowd-section .header .image{border-radius:50%!important;width:34px!important;height:34px!important}.coin-section .header .image.no-circular,.crowd-section .header .image.no-circular{border-radius:0!important;width:2.5em!important;height:auto!important}.coin-section .header .popup .image,.crowd-section .header .popup .image{border-radius:0!important;width:auto!important;height:auto!important}.coin-section .header.white-header,.crowd-section .header.white-header{color:#fff!important}.coin-section .header.white-header:after,.crowd-section .header.white-header:after{background-color:#fff}.coin-section .header.black-header,.crowd-section .header.black-header{color:#000!important}.coin-section .header.black-header:after,.crowd-section .header.black-header:after{background-color:#000}.coin-section .header.yellow-line:after,.crowd-section .header.yellow-line:after{background-color:#f7bd15!important}.coin-section .white-text p,.crowd-section .white-text p{color:#fff;font-size:16px;padding-right:30px}.coin-section .the-btn,.crowd-section .the-btn{height:40px!important;padding:0 20px!important;font-size:16px;font-weight:700!important;display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important;width:auto!important;border-radius:30px!important;font-size:16px!important;font-weight:800!important}.coin-section .the-btn.uppercase,.crowd-section .the-btn.uppercase{text-transform:uppercase!important}.coin-section .the-btn.left-align,.crowd-section .the-btn.left-align{float:left!important}.coin-section .clearfix,.crowd-section .clearfix{clear:both}.coin-section .margin-bottom,.crowd-section .margin-bottom{margin-bottom:40px!important}.coin-section .wpsc-address,.crowd-section .wpsc-address{margin:0}.coin-section .purple-container,.crowd-section .purple-container{max-width:830px;margin:auto;padding:20px;background-color:#422b56;-webkit-box-shadow:0 10px 16px 0 rgba(0,0,0,.15);box-shadow:0 10px 16px 0 rgba(0,0,0,.15);border-radius:8px;margin-bottom:40px}.coin-section .purple-container .labeled.button,.crowd-section .purple-container .labeled.button{width:100%!important;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;background-color:transparent!important}.coin-section .purple-container .labeled.button.share-boxes,.crowd-section .purple-container .labeled.button.share-boxes{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.coin-section .purple-container .labeled.button .ui.mini.button,.crowd-section .purple-container .labeled.button .ui.mini.button{background-color:transparent;padding:15px 0;margin-right:20px;font-size:14px!important;color:#fff!important;opacity:1!important;position:relative}.coin-section .purple-container .labeled.button .ui.mini.button:hover,.crowd-section .purple-container .labeled.button .ui.mini.button:hover{border-color:transparent!important}.coin-section .purple-container .labeled.button .ui.mini.button:after,.crowd-section .purple-container .labeled.button .ui.mini.button:after{content:"";display:block;position:absolute;width:1px;height:70%;right:-19px;top:7px;background-color:#979797;z-index:1}.coin-section .purple-container .labeled.button .ui.mini.button.showfluid:after,.crowd-section .purple-container .labeled.button .ui.mini.button.showfluid:after{right:24px}.coin-section .purple-container .labeled.button .ui.mini.button .desktop-only,.crowd-section .purple-container .labeled.button .ui.mini.button .desktop-only{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.coin-section .purple-container .labeled.button .pointing,.crowd-section .purple-container .labeled.button .pointing{background-color:transparent;font-size:14px!important;color:#fff!important;opacity:1!important;border:none!important}.coin-section .purple-container .labeled.button .pointing::before,.crowd-section .purple-container .labeled.button .pointing::before{display:none!important}.coin-section .purple-container .labeled.button .pointing a,.crowd-section .purple-container .labeled.button .pointing a{opacity:1!important}.coin-section .floating.message,.crowd-section .floating.message{background:#fff!important;border:1px solid #f3f3f3!important;-webkit-box-shadow:0 2px 35px 0 rgba(0,0,0,.15)!important;box-shadow:0 2px 35px 0 rgba(0,0,0,.15)!important;border-radius:8px!important;max-width:830px!important;margin:0 auto 32px!important}.coin-section .floating.message .ui input[type=text],.crowd-section .floating.message .ui input[type=text]{border:solid 1px #ddd!important;border-right-color:#ddd!important;border-radius:0!important}.coin-section .floating.message .ui.tag.label,.crowd-section .floating.message .ui.tag.label{background-color:transparent;font-size:14px}.coin-section .floating.message .ui.tag.label::after,.coin-section .floating.message .ui.tag.label::before,.crowd-section .floating.message .ui.tag.label::after,.crowd-section .floating.message .ui.tag.label::before{display:none}.coin-section .floating.message .copy.icon,.crowd-section .floating.message .copy.icon{margin:0 8px}.coin-section .floating.message .desktop-only,.coin-section .floating.message .no-desktop,.crowd-section .floating.message .desktop-only,.crowd-section .floating.message .no-desktop{color:#000}.coin-section .floating.message .showfluid3,.crowd-section .floating.message .showfluid3{background-color:transparent!important;-webkit-box-shadow:none!important;box-shadow:none!important}.coin-section .floating.message .showfluid3 .qrcode,.crowd-section .floating.message .showfluid3 .qrcode{color:#000!important;font-size:20px}.coin-section .desktop-only,.coin-section .no-desktop,.crowd-section .desktop-only,.crowd-section .no-desktop{font-size:17px}.coin-section .block-explore,.crowd-section .block-explore{padding-top:60px!important;padding-bottom:60px!important}.coin-section .search-container,.crowd-section .search-container{height:57px!important;width:100%}.coin-section .search-box,.crowd-section .search-box{background:#fff!important;border:1px solid #ddd!important;border-radius:8px!important}.coin-section .search-divider,.crowd-section .search-divider{display:block;position:absolute;width:1px;height:70%;right:58px;top:9px;background-color:#979797;z-index:1}.coin-section .search-container .search,.crowd-section .search-container .search{color:#000;opacity:1!important;font-size:24px}.coin-section .ui.item.tabs.menu,.crowd-section .ui.item.tabs.menu{border-radius:0!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important;text-align:left!important;border:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}.coin-section .ui.item.tabs.menu .item,.crowd-section .ui.item.tabs.menu .item{width:auto!important;padding:18px 24px!important;font-size:18px!important;max-width:none!important}.coin-section .ui.item.tabs.menu .item:hover,.crowd-section .ui.item.tabs.menu .item:hover{background-color:transparent!important}.coin-section .ui.item.tabs.menu .item.active,.crowd-section .ui.item.tabs.menu .item.active{background-color:#422b56!important;color:#fff!important;border-radius:8px 8px 0 0}.coin-section .ui.item.tabs.menu .item.active::before,.crowd-section .ui.item.tabs.menu .item.active::before{display:none}.coin-section .table-headers,.crowd-section .table-headers{border-bottom:solid 1px #000!important;border-top:solid 1px #000!important;margin-bottom:20px!important;margin-left:0!important;margin-right:0!important;background-color:#f7bd15!important}.coin-section .table-headers .header,.crowd-section .table-headers .header{background:0 0!important;border:none!important;padding:0!important;font-size:18px!important}.coin-section .table-headers .header::after,.crowd-section .table-headers .header::after{display:none!important}.coin-section .ammount-header,.crowd-section .ammount-header{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.coin-section .theTable,.crowd-section .theTable{margin-left:0!important;margin-right:0!important}.coin-section #wpsc-block-explorer-rows .column,.crowd-section #wpsc-block-explorer-rows .column{background-color:transparent!important;border-bottom:solid 1px #e1e1e1;padding:10px 0}.coin-section #wpsc-block-explorer-rows .column .mini.button,.crowd-section #wpsc-block-explorer-rows .column .mini.button{background-color:transparent!important;margin-right:10px!important}.coin-section #wpsc-block-explorer-rows .column .pointing,.crowd-section #wpsc-block-explorer-rows .column .pointing{border:none!important;border-left:solid 1px #000!important}.coin-section #wpsc-block-explorer-rows .column .pointing:before,.crowd-section #wpsc-block-explorer-rows .column .pointing:before{display:none!important}.coin-section #wpsc-block-explorer-rows .column .ui.mini.label,.crowd-section #wpsc-block-explorer-rows .column .ui.mini.label{height:41px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px;margin:0 0 10px}.coin-section #wpsc-block-explorer-rows .column i.external,.crowd-section #wpsc-block-explorer-rows .column i.external{color:#000;margin-left:12px;font-size:17px}.coin-section #wpsc-block-explorer-rows .column i.copy,.crowd-section #wpsc-block-explorer-rows .column i.copy{color:#000;margin-right:12px}.coin-section #wpsc-block-explorer-rows .column .wpscBlockExplorerAccounts,.crowd-section #wpsc-block-explorer-rows .column .wpscBlockExplorerAccounts{color:#7d7d7d!important;font-size:17px}.coin-section .pagination,.crowd-section .pagination{height:48px!important;width:48px!important;background-color:#422b56!important;color:#fff!important;line-height:normal!important;padding:0!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:50%}.coin-section .pagination-number,.crowd-section .pagination-number{left:103px!important;bottom:33px!important;background-color:transparent!important;font-size:18px!important;color:#000!important;border-radius:0!important;border-bottom:solid 1px #000!important}.coin-section .table-wrapper,.crowd-section .table-wrapper{margin-bottom:60px!important}.coin-section .supply,.crowd-section .supply{background-color:transparent!important;font-weight:900!important;color:#000!important;border-bottom:solid 3px #422b56!important;border-radius:0!important;bottom:-20px!important;width:100%!important;text-align:center!important;font-size:17px!important}.coin-section #wpsc_account_balance .floating.message,.crowd-section #wpsc_account_balance .floating.message{width:100%!important;margin:0 0 40px!important;max-width:none!important;border-radius:0!important;-webkit-box-shadow:0 5px 13px 0 rgba(0,0,0,.15);box-shadow:0 5px 13px 0 rgba(0,0,0,.15)}.coin-section #wpsc_account_balance #wpscAccountRolesFilter .label,.crowd-section #wpsc_account_balance #wpscAccountRolesFilter .label{margin-top:24px!important;margin-left:30px!important}.coin-section #wpsc_account_balance .label.attached,.coin-section #wpsc_account_balance .label.corner,.crowd-section #wpsc_account_balance .label.attached,.crowd-section #wpsc_account_balance .label.corner{margin-top:0!important;margin-left:0!important}.coin-section #wpsc_account_balance .header,.crowd-section #wpsc_account_balance .header{padding-left:30px!important}.coin-section #wpsc_account_balance .header a,.crowd-section #wpsc_account_balance .header a{color:#000!important}.coin-section #wpsc_account_balance .header i,.crowd-section #wpsc_account_balance .header i{margin-right:12px!important}.coin-section #wpsc_account_balance .header i.external,.crowd-section #wpsc_account_balance .header i.external{margin-left:12px!important}.coin-section #wpsc_account_balance .header .showfluid2,.crowd-section #wpsc_account_balance .header .showfluid2{background-color:transparent!important;border-left:solid 1px #000;border-radius:0!important}.coin-section .the-action-box,.crowd-section .the-action-box{margin-top:60px!important}.coin-section .section-content-center,.crowd-section .section-content-center{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.coin-section .vertical-divider,.crowd-section .vertical-divider{height:56px;background-color:#979797;width:1px;margin:0 16px}.coin-section .mini-label,.crowd-section .mini-label{width:55px;height:35px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border:solid 1px #979797;border-radius:30px}.coin-section .padding-box,.crowd-section .padding-box{padding:40px}.coin-section .input-style,.crowd-section .input-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.coin-section .input-style .icon,.crowd-section .input-style .icon{height:auto!important;position:absolute;left:4px}.coin-section .input-style input,.crowd-section .input-style input{border:solid 1px #ddd!important;border-right-color:#ddd!important;border-radius:0!important;padding-left:45px!important;height:44px}.coin-section .input-style .the-label,.crowd-section .input-style .the-label{margin-left:10px;font-size:18px}.coin-section .the-label,.crowd-section .the-label{margin-left:10px;font-size:18px}.coin-section .max-width-content,.crowd-section .max-width-content{max-width:900px}.coin-section .request-cards .card,.crowd-section .request-cards .card{width:480px!important;border:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}.coin-section .request-cards .card .finalized.bottom,.crowd-section .request-cards .card .finalized.bottom{background-color:#000!important;height:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff!important}.coin-section .request-cards .card .content,.crowd-section .request-cards .card .content{padding:30px!important;background-color:#fff!important}.coin-section .request-cards .card .content.finalized,.crowd-section .request-cards .card .content.finalized{background-color:#f7bd15!important}.coin-section .request-cards .card .content.finalized .header,.crowd-section .request-cards .card .content.finalized .header{color:#000!important}.coin-section .request-cards .card .content.finalized .meta,.crowd-section .request-cards .card .content.finalized .meta{color:#000!important}.coin-section .request-cards .card .content.finalized .ui.basic.label,.crowd-section .request-cards .card .content.finalized .ui.basic.label{background-color:#fff!important;margin-bottom:40px;color:#000!important}.coin-section .request-cards .card .content .header,.crowd-section .request-cards .card .content .header{color:#000!important;border-bottom:solid 1px #000!important;padding-bottom:15px}.coin-section .request-cards .card .content .header::after,.crowd-section .request-cards .card .content .header::after{display:none!important}.coin-section .request-cards .card .content .floating,.crowd-section .request-cards .card .content .floating{font-size:16px;border:solid 1px #fff!important;border-radius:50px}.coin-section .request-cards .card .content .meta,.crowd-section .request-cards .card .content .meta{color:#000!important;margin-top:30px;margin-bottom:30px;font-size:20px}.coin-section .request-cards .card .content .ui.basic.label,.crowd-section .request-cards .card .content .ui.basic.label{border-radius:50px;height:35px;min-width:130px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:none!important;-webkit-box-shadow:0 0 7px 0 rgba(0,0,0,.2);box-shadow:0 0 7px 0 rgba(0,0,0,.2);color:#000!important}.coin-section .request-cards .card .content .button,.crowd-section .request-cards .card .content .button{border-radius:50px}.coin-section .request-cards .card .content .button.wpsc-req-finalize,.crowd-section .request-cards .card .content .button.wpsc-req-finalize{background-color:#21ba45!important}.coin-section .cta-big,.crowd-section .cta-big{border-radius:50px!important;border:solid 2px}@media (min-width:768px){.coin-section .desktop-divider,.crowd-section .desktop-divider{height:100%;position:absolute;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;pointer-events:none;padding:20px}.coin-section .desktop-divider:before,.crowd-section .desktop-divider:before{content:'';display:block;width:1px;height:100%;top:0;background-color:#fff}} .red { background-color: #ff0000!important; color: #fff!important; } .brown { background-color: #a5673f!important; color: #fff!important; } .black { background-color: #000!important; color: #fff!important; } .violet, .purple { background-color: #a333c8!important; color: #fff!important; } .the-tag.main-tag i.icon { height: 1.7em!important; } i.icon.copy { margin-top: 10px; } i.icon.users, i.icon.th, i.icon.user { margin-top: -7px; } .wpsc-table-header { background-color: #f4c30e!important; color: #fff!important; text-transform: uppercase!important; } .wpsc-table-row { border: 0!important; } #wpsc-table-owners-main table, #wpsc-table-owners-main td, #wpsc-table-owners-main th { border: 0!important; } @media only screen and (max-width: 767px) { .ui.grid { margin-top: 1rem!important; } .ui.stackable.grid.table-headers { display: none; } .wpsc-3dmodel { min-height: 200px; min-width: 250px; margin: auto; } } @media only screen and (min-width: 768px) { .wpsc-3dmodel { min-height: 500px; min-width: 600px; margin: auto; } } .wpsc-table-listings { border-collapse:separate!important; border: solid rgb(235 235 235) 1px!important; border-radius:16px!important; border-spacing:0; font-size: 12px; } .wpsc-table-listings th, .wpsc-table-listings td, .wpsc-table-listings tr { border-left: none!important; border-right: none!important; border-collapse: collapse!important; border-bottom: none!important; text-align: center; border-top: solid rgb(235 235 235) 1px!important; font-size: 14px; } .wpsc-table-listings th, .wpsc-table-listings td { width: 20%; } .wpsc-table-listings th { background-color: #f4c316; color: #fff; } .wpsc-table-listings .btn { padding: 0 10px; height: 30px; font-size: 12px; } .wpsc-table-listings-container { max-height: 150px; overflow-y: scroll; overflow-x: hidden; min-width: 490px; } .history-container .table-header { height: 50px; border-top-left-radius: 10px; border-top-right-radius: 10px; color: white; font-weight: 700; } .history-container { max-height: 300px; overflow-y: scroll; overflow-x: hidden; } #jabvfcr_selector-top, #jabvfcr_selector-bottom { background: grey; height:3px; position: fixed; transition:all 300ms ease; z-index: 100000; } #jabvfcr_selector-left, #jabvfcr_selector-right { background: grey; width:3px; position: fixed; transition:all 300ms ease; z-index: 100000; } .n { -webkit-transform: scale(3) translateX(100px) } body { cursor: pointer; } {"id":65,"date":"2022-08-08T17:50:01","date_gmt":"2022-08-08T17:50:01","guid":{"rendered":"https:\/\/thefoodleaks.com\/?p=65"},"modified":"2023-06-07T17:07:35","modified_gmt":"2023-06-07T17:07:35","slug":"how-does-nutrisource-puppy-food-work","status":"publish","type":"post","link":"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/","title":{"rendered":"How Does NutriSource Puppy Food Work?"},"content":{"rendered":"

Review of NutriSource Puppy Food<\/h2>\r\n

Isn’t it frustrating to be looking at dozens of different brands of kibble in a pet store, unsure which one to choose?<\/p>\r\n

It is likely that you have seen labels such as “complete and balanced,” “biologically appropriate,” or “preservative-free” more than once. You don’t have to worry about buying the same stuff as before if you don’t know what these labels mean!<\/p>\r\n

As we begin our assessment, we would like to remind you that Alpha Paw has its own vet-approved dry dog food<\/strong><\/a>, Natural VitalityTM, that is fast becoming the brand of choice for pet parents. The chicken and sweet potato recipe we make is suitable for dogs of all breeds and ages. Our dog food contains a natural source of protein, carbohydrates, and healthy fats by following AAFCO guidelines.<\/p>\r\n

The delivery service is convenient for pet parents as well as delicious for dogs. Two formulas are available, one that is for all dogs and one that is specifically designed for Dachshunds.<\/p>\r\n

It is highly recommended that you feed your dog our pumpkin puree<\/a>. Despite this, we want to be a resource for pet parents like you and discuss what\u2019s available on the market.<\/p>\r\n

Can Every Puppy Eat NutriSource Puppy Food?<\/h2>\r\n

We once again accommodated our readers’ requests and explored another canine food brand after reviewing Wellness CORE dog food and Orijen Puppy Food.<\/p>\r\n

Many of our loyal readers were unable to find unbiased reviews of NutriSource pet food products even though the company has been around for decades. Rather than turn to affiliate links or sponsored brands, they turned to us for advice, knowing we don’t profit from the links we provide.<\/p>\r\n

The purpose of this article is to lay out the findings of our research into NutriSource puppy food by categorizing their best products.<\/p>\r\n

What Is NutriSource PuppyFood?<\/h2>\r\n

A family-owned pet food company based in Minnesota, NutriSource strives to create food that keeps pets healthy for a long time.<\/p>\r\n

The company has been in the U.S. market since the 1960s. They remain unknown to many dog owners because they adhere to the principle of shopping and sourcing locally.<\/p>\r\n

The downside of this approach is that it is difficult to reach potential customers, but it also allows dog lovers to verify that the products are responsibly sourced.<\/p>\r\n

Our beloved fuzzy fellas of all shapes, sizes, and ages can enjoy NutriSource grain-free and wholesome grain brands that are carefully formulated to fit their dietary requirements.<\/p>\r\n

There are a variety of puppy chow options available at NutriSource, including:<\/p>\r\n

1: Dry food
2: Wet food
3: Treats<\/p>\r\n

The NutriSource puppy food is made with nutrition that is most appropriate for dogs, whether grain-free or with grains. Each bag and can of NutriSource grub is filled with high-quality protein, and our furry testers agree that it’s utterly delicious!<\/p>\r\n

NutriSource Puppy Food Criteria<\/h2>\r\n

Alpha Paw believes in setting rules and following them at all times, no matter whether we are evaluating the best dry dog food or the worst wet dog food.<\/p>\r\n

When we began testing NutriSource’s vast selection of dog food, we did the same thing. Here are a few things we looked for in NutriSource before moving on to the actual reviews:<\/p>\r\n

    \r\n
  • Strong muscles require a lot of protein<\/li>\r\n
  • The carb content of this treat won’t affect your pup’s blood sugar levels<\/li>\r\n
  • Meat sources with no meat byproducts are the best sources of amino acids<\/li>\r\n
  • Healthy skin and shiny coats are associated with high levels of healthy fatty acids, such as linoleic, omega-6, and omega-3 fats<\/li>\r\n
  • Vitamins and minerals from fresh legumes and vegetables<\/li>\r\n<\/ul>\r\n

    The NutriSource Puppy Food We Sorted<\/h2>\r\n

    The good news is that we are not alone when we review dog food. Our research is assisted by a whole army of helpers. The process of sifting through any brand’s offer would take incomparably longer without them.<\/p>\r\n

    We needed to determine what constitutes proper dog nutrition before we began our research. Veterinarians are the experts on everything doggy related, so what better place to begin? The veterinarians we spoke with advised us what dog chow should look like as well as what complete and balanced nutrition looks like for dogs.<\/p>\r\n

    Our next stop was a number of independent pet stores. Upon our inquiry about NutriSource best sellers, the staff was happy to provide us with recommendations. The review would take months without their assistance because we would have to conduct extensive market research. What a relief!<\/p>\r\n

    The last but not least were online reviews by fellow dog owners. After reading hundreds of comments, we culled the best recipes from NutriSource based on what people had to say.<\/p>\r\n

    What We Looked For When Picking Our Top Picks<\/h2>\r\n

    The following are the NutriSource puppy foods we recommend in the following categories based on extensive listening, reading, and munching:<\/p>\r\n

    1: Dry food
    2: Wet food
    3: Puppy recipe
    4: Senior recipe
    5: Treats<\/p>\r\n

    Our investigation into dog food results will be revealed as soon as possible, so don’t wait any longer!<\/p>\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    Alpha Paw Picks<\/strong><\/td>\r\nRecipe<\/strong><\/td>\r\nRating<\/strong><\/td>\r\n<\/tr>\r\n
    Best dry food<\/strong><\/td>\r\nAdult Chicken & Rice Recipe<\/td>\r\n4.6<\/td>\r\n<\/tr>\r\n
    Best wet food<\/strong><\/td>\r\nMediterranean Select<\/td>\r\n4.6<\/td>\r\n<\/tr>\r\n
    Best puppy recipe<\/strong><\/td>\r\nLarge Breed Puppy Recipe<\/td>\r\n4.7<\/td>\r\n<\/tr>\r\n
    Best senior recipe<\/strong><\/td>\r\nSenior Recipe<\/td>\r\n4.6<\/td>\r\n<\/tr>\r\n
    Best treat<\/strong><\/td>\r\nGrain-Free Rabbit Bites<\/td>\r\n4.8<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/figure>\r\n\r\n\r\n\r\n

    The best NutriSource dry food is NutriSource Adult Chicken & Rice<\/h2>\r\n\r\n\r\n\r\n

    Our top pick from NutriSource’s offer is NutriSource Adult Chicken & Rice.<\/p>\r\n\r\n\r\n\r\n

    This recipe is highly digestible and nutrient-dense for your pet! The recipe contains low ash chicken meal, humanely raised chicken, and wholesome ingredients to promote balanced growth and improve overall health.<\/p>\r\n\r\n\r\n\r\n

    There is enough protein in this formula to meet the needs of even the most active dogs. The main ingredients are chicken and chicken meal. A chicken or chicken meal is a quality protein-rich ingredient. Meat concentrates such as chicken meal contain 300% more protein than fresh chicken. The food is made from more real food and is free of the typical fillers you’d usually find in other dog foods.<\/p>\r\n\r\n\r\n\r\n

    The slow-releasing sugars in wholegrain rice are easy for dogs to digest, and they are a natural source of energy. The digestibility rating is +85%. Smaller dogs can chew it easily, but larger dogs will find it satisfying.<\/p>\r\n\r\n\r\n\r\n

    The nutritional value of oatmeal and barley is also high, and they are highly digestible, which is important to the digestive system of your furry friend. Barley and oatmeal are natural sources of fiber and B-vitamins, while oatmeal contains vitamin B and calcium. It contains more nutritious ingredients that help your dog maintain a healthy weight and maintain energy levels.<\/p>\r\n\r\n\r\n\r\n

    It is also beneficial to add Omega fatty acids to the diet. As a result of these compounds, our dogs’ fur becomes shinier and silkier, while their circulatory systems are improved.<\/p>\r\n\r\n\r\n\r\n

    For dogs with sensitive stomachs, this recipe is corn- and soy-free.<\/p>\r\n\r\n\r\n\r\n

    This formula offers excellent value for money, despite being somewhat more expensive than average supermarket dog food.<\/p>\r\n\r\n\r\n\r\n

    The best thing about this recipe is that it’s suitable for both small and large breeds – the recipe gives big dogs the nutrition they need, while at the same time packing in a small piece of kibble that’s preferred by smaller dogs.<\/p>\r\n\r\n\r\n\r\n

    Guaranteed Analysis<\/strong><\/p>\r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    Crude Protein<\/strong><\/td>\r\nmin. 26.0%<\/td>\r\n<\/tr>\r\n
    Crude Fat<\/strong><\/td>\r\nmin. 16%<\/td>\r\n<\/tr>\r\n
    Crude Fiber<\/strong><\/td>\r\nmax. 4.0%<\/td>\r\n<\/tr>\r\n
    Moisture<\/strong><\/td>\r\nmax. 10%<\/td>\r\n<\/tr>\r\n
    Eicosapentaenoic (EPA) + Docosahexaenoic Acid (DHA)<\/strong><\/td>\r\nmin. 0.5%<\/td>\r\n<\/tr>\r\n
    Iron<\/strong><\/td>\r\nmin. 125 mg\/kg<\/td>\r\n<\/tr>\r\n
    Copper<\/strong><\/td>\r\nmin. 12.4 mg\/kg<\/td>\r\n<\/tr>\r\n
    Manganese<\/strong><\/td>\r\nmin. 12 mg\/kg<\/td>\r\n<\/tr>\r\n
    Zinc<\/strong><\/td>\r\nmin. 120 mg\/kg<\/td>\r\n<\/tr>\r\n
    Selenium<\/strong><\/td>\r\nmin. 0.35 mg\/kg<\/td>\r\n<\/tr>\r\n
    Omega-6 Fatty Acids<\/strong><\/td>\r\nmin. 2.6%<\/td>\r\n<\/tr>\r\n
    Omega-3 Fatty Acids<\/strong><\/td>\r\nmin. 0.7%<\/td>\r\n<\/tr>\r\n
    DL Methionine<\/strong><\/td>\r\nmin. 0.25%<\/td>\r\n<\/tr>\r\n
    Choline Chloride<\/strong><\/td>\r\nmin. 0.2%<\/td>\r\n<\/tr>\r\n
    Taurine<\/strong><\/td>\r\nmin. 0.1%<\/td>\r\n<\/tr>\r\n
    Glucosamine<\/strong><\/td>\r\n300 mg\/kg<\/td>\r\n<\/tr>\r\n
    Chondroitin Sulfate<\/strong><\/td>\r\n150 mg\/kg<\/td>\r\n<\/tr>\r\n
    L-Carnitine<\/strong><\/td>\r\nmin. 20 mg\/kg<\/td>\r\n<\/tr>\r\n
    Cobalt<\/strong><\/td>\r\nmin. 1.0 mg\/kg<\/td>\r\n<\/tr>\r\n
    Total Microorganisms*<\/strong><\/td>\r\n–<\/td>\r\n<\/tr>\r\n
    (Saccharomyces cerevisiae, Lactobacillus acidophilus, Enterococcus faecium)<\/strong><\/td>\r\nmin. 100 million CFU\/lb<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/figure>\r\n\r\n\r\n\r\n

    The ingredients<\/h2>\r\n\r\n\r\n\r\n

    Chicken, chicken meal, brown rice, barley, chicken fat (preserved with tocopherols and citric acid), oatmeal, menhaden fish meal (a source of fish oil), natural turkey and chicken flavor, dried plain beet pulp, flax seed, brewers dried yeast, salt, potassium chloride, DL methionine, minerals (zinc proteinate, iron proteinate, copper proteinate, manganese proteinate, cobalt proteinate, selenium yeast), choline chloride, vitamins (vitamin A acetate, vitamin D3 supplement, vitamin E supplement, niacin, d-calcium pantothenate, thiamine mononitrate, pyridoxine hydrochloride, riboflavin supplement, folic acid, biotin, vitamin B12 supplement), glucosamine hydrochloride, lactic acid, L-ascorbyl-2-polyphosphate (source of vitamin C), chondroitin sulfate, yucca schidigera extract, taurine, L-carnitine, calcium iodate, rosemary extract, yeast culture, dried Lactobacillus acidophilus fermentation product, dried Enterococcus faecium fermentation product, dried Aspergillus oryzae fermentation extract, dried Trichoderma longibrachiatum fermentation extract, dried Bacillus subtilis fermentation extract.<\/p>\r\n\r\n\r\n\r\n

    NutriSource Mediterranean Select is the best NutriSource wet food<\/h2>\r\n\r\n\r\n\r\n

    This Grain-Free Mediterranean Blend meal will give your good boy or girl a taste of southern European cuisine until you can take him or her to Sicily.<\/p>\r\n\r\n\r\n\r\n

    It contains NutriSource’s trademark Good 4 Life supplement system, which consists of four supplements that support the health of the nervous system, the gut, the skin, and the coat. Your dog’s immune system will also be boosted by the presence of bioavailable minerals and prebiotics.<\/p>\r\n\r\n\r\n\r\n

    The NutriSource puppy food offers your pups superb and premium nutrition. This easy-to-digest canned food is perfect for dogs with grain or gluten allergies. This dish is made with beef, lamb, and lamb liver cooked in lamb broth along with chickpeas and salmon oil. A healthy heart is supported by taurine as an extra ingredient.<\/p>\r\n\r\n\r\n\r\n

    This is a perfect and balanced dog food because it’s rich in meat, heavy in protein, and low in carbohydrates.<\/p>\r\n\r\n\r\n\r\n

    One of the things we liked about this formula is that it doesn’t contain carrageenan, which is often used to thicken canned dog food. NutriSource puppy food is also gluten- and grain-free, so sensitive stomachs won’t have any trouble digesting it. Wet food also allows your favorite pooch to remain hydrated, so he’ll stay happy and healthy!<\/p>\r\n\r\n\r\n\r\n

    Bloating, inflammation, and colon cancer are believed to result from this red seaweed-extracted additive. Combining this formula with the digestive supplements mentioned above, it becomes clear that it was designed with sensitive tummies in mind.<\/p>\r\n\r\n\r\n\r\n

    Guaranteed Analysis<\/strong><\/p>\r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    Crude Protein<\/strong><\/td>\r\nmin. 9.0%<\/td>\r\n<\/tr>\r\n
    Crude Fat<\/strong><\/td>\r\nmin. 5.5%<\/td>\r\n<\/tr>\r\n
    Crude Fiber<\/strong><\/td>\r\nmax. 1.5%<\/td>\r\n<\/tr>\r\n
    Moisture<\/strong><\/td>\r\nmax. 78%<\/td>\r\n<\/tr>\r\n
    Taurine<\/strong><\/td>\r\nmin. 0.03%<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/figure>\r\n\r\n\r\n\r\n

    The ingredients<\/h2>\r\n\r\n\r\n\r\n

    Beef, lamb broth, lamb liver, lamb, chickpeas, agar-agar, tricalcium phosphate, calcium carbonate, salt, potassium chloride, choline chloride, salmon oil, sunflower oil, kelp, betaine, taurine, zinc proteinate, iron proteinate, brewers dried yeast, yucca schidigera plant extract, selenium yeast, copper proteinate, magnesium oxide, cobalt proteinate, manganese proteinate, ethylenediamine dihydroiodide, vitamin E supplement, thiamine mononitrate, niacin supplement, calcium pantothenate, biotin, vitamin A supplement, riboflavin supplement, vitamin B12 supplement, pyridoxine hydrochloride, vitamin D3 supplement, folic acid<\/p>\r\n\r\n\r\n\r\n

    NutriSource Large Breed Puppy Recipe is the best NutriSource puppy food<\/h2>\r\n\r\n\r\n\r\n

    As a complete and balanced food for underage dogs, NutriSource Large Breed Puppy Recipe delivers on its promise.<\/p>\r\n\r\n\r\n\r\n

    Young dogs’ health is NutriSource’s top priority. Turkey meat provides high-quality protein, which is further enhanced by chickpeas – which are packed with dietary fiber, amino acids, and protein – and whitefish meal – a concentrated source of protein.<\/p>\r\n\r\n\r\n\r\n

    In addition to providing dietary fiber and vitamin B, lentils are important sources of several essential minerals as well. Plant-based proteins are also found in these foods.<\/p>\r\n\r\n\r\n\r\n

    A healthy amount of calcium and phosphorus is also included in this puppy recipe, key minerals for proper growth and development of muscular system and skeletal system.<\/p>\r\n\r\n\r\n\r\n

    With a combination of L-Carnitine and taurine, along with Omega fatty acids, this kibble supports the health of the heart as well.<\/p>\r\n\r\n\r\n\r\n

    The dogs licked their bowls clean every time we served them this delicious kibble, just as they did with these best puppy food brands.<\/p>\r\n\r\n\r\n\r\n

    Guaranteed Analysis<\/strong><\/p>\r\n\r\n\r\n\r\n

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    Crude Protein<\/strong><\/td>\r\nmin. 28.0%<\/td>\r\n<\/tr>\r\n
    Crude Protein<\/strong><\/td>\r\nmin. 10%<\/td>\r\n<\/tr>\r\n
    Crude Fiber<\/strong><\/td>\r\nmax. 7.0%<\/td>\r\n<\/tr>\r\n
    Moisture<\/strong><\/td>\r\nmax. 10%<\/td>\r\n<\/tr>\r\n
    Eicosapentaenoic (EPA) + Docosahexaenoic Acid (DHA)<\/strong><\/td>\r\nmin. 0.3%<\/td>\r\n<\/tr>\r\n
    Iron<\/strong><\/td>\r\nmin. 155 mg\/kg<\/td>\r\n<\/tr>\r\n
    Copper<\/strong><\/td>\r\nmin. 13 mg\/kg<\/td>\r\n<\/tr>\r\n
    Manganese<\/strong><\/td>\r\nmin. 15 mg\/kg<\/td>\r\n<\/tr>\r\n
    Zinc<\/strong><\/td>\r\nmin. 170 mg\/kg<\/td>\r\n<\/tr>\r\n
    Selenium<\/strong><\/td>\r\nmin. 0.35 mg\/kg<\/td>\r\n<\/tr>\r\n
    Vitamin E<\/strong><\/td>\r\nmin. 160 IU\/kg<\/td>\r\n<\/tr>\r\n
    Omega-6 Fatty Acids<\/strong><\/td>\r\nmin. 1.9%<\/td>\r\n<\/tr>\r\n
    Omega-3 Fatty Acids<\/strong><\/td>\r\nmin. 0.7%<\/td>\r\n<\/tr>\r\n
    Taurine<\/strong><\/td>\r\nmin. 0.07%<\/td>\r\n<\/tr>\r\n
    Glucosamine<\/strong><\/td>\r\n300 mg\/kg<\/td>\r\n<\/tr>\r\n
    Chondroitin Sulfate<\/strong><\/td>\r\n150 mg\/kg<\/td>\r\n<\/tr>\r\n
    L-Carnitine<\/strong><\/strong><\/td>\r\nmin. 100 mg\/kg<\/td>\r\n<\/tr>\r\n
    Cobalt<\/strong><\/td>\r\nmin. 1.0 mg\/kg<\/td>\r\n<\/tr>\r\n
    Total Microorganisms*<\/strong><\/td>\r\n–<\/td>\r\n<\/tr>\r\n
    (Saccharomyces cerevisiae, Lactobacillus acidophilus, Enterococcus faecium)<\/strong><\/td>\r\nmin. 100 million CFU\/lb<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/figure>\r\n\r\n\r\n\r\n

    Ingredients<\/h2>\r\n\r\n\r\n\r\n

    Turkey, turkey meal, green lentils, red lentils, peas, garbanzo beans, natural turkey flavor, menhaden fish meal, flax seed, pea fiber, beet pulp-dried, sunflower oil (preserved with tocopherols), dicalcium phosphate, calcium carbonate, brewers dried yeast, salt, potassium chloride, DL methionine, minerals (zinc proteinate, iron proteinate, copper proteinate, manganese proteinate, cobalt proteinate, selenium yeast), choline chloride, vitamins (vitamin A acetate, vitamin D3 supplement, vitamin E supplement, niacin, d-calcium pantothenate, thiamine mononitrate, pyridoxine hydrochloride, riboflavin supplement, folic acid, biotin, vitamin B12 supplement), taurine, glucosamine hydrochloride, preserved with tocopherols and citric acid, L-ascorbyl-2-polyphosphate (source of vitamin C), lactic acid, chondroitin sulfate, yucca schidigera extract, calcium iodate, rosemary extract, yeast culture, dried Lactobacillus acidophilus fermentation product, dried Enterococcus faecium fermentation product, dried Aspergillus oryzae fermentation extract, dried Trichoderma longibrachiatum fermentation extract, dried Bacillus subtilis fermentation extract.<\/p>\r\n\r\n\r\n\r\n

    The best NutriSource treat is NutriSource Grain-Free Rabbit Bites<\/h2>\r\n\r\n\r\n\r\n

    It’s safe to say that every dog has a voracious appetite, regardless of its size. NutriSource’s Grain-Free Rabbit Bites fill hungry gaps between meals and provide additional nutrients at the same time with a powerful snack.<\/p>\r\n\r\n\r\n\r\n

    The real rabbit and natural ingredients in this treat make it a delicious treat for your dog to eat. Your pooch will benefit from the extra protein, vitamins, and minerals in this NutriSource puppy food without corn, wheat, soy, or artificial flavorings.<\/p>\r\n\r\n\r\n\r\n

    A great source of protein is rabbit, one of its main ingredients. You are guaranteed to feed your dog high-protein treats when you combine peas with their high plant-based protein content and essential vitamins and minerals. A good portion of dietary fiber and antioxidants are provided by potatoes as well. Gluten-free potatoes make this a great reward treat or snack for dogs who have sensitive stomachs.<\/p>\r\n\r\n\r\n\r\n

    In addition to sugar, cane molasses contains magnesium, manganese, iron, calcium, and potassium, which are essential minerals. A trusted source of L-carnitine is also used in NutriSource’s recipe!<\/p>\r\n\r\n\r\n\r\n

    This dog treat packs a surprising amount of protein while keeping carbs and fat low. The good news is that even if your pooch eats a lot of these, they won’t gain weight. Make sure you don’t become accustomed to it!<\/p>\r\n\r\n\r\n\r\n

    Guaranteed Analysis<\/h2>\r\n\r\n\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    Crude Protein<\/strong><\/td>\r\nmin. 12.0%<\/td>\r\n<\/tr>\r\n
    Crude Fat<\/strong><\/td>\r\nmin. 8%<\/td>\r\n<\/tr>\r\n
    Crude Fiber<\/strong><\/td>\r\nmax. 4%<\/td>\r\n<\/tr>\r\n
    Moisture<\/strong><\/td>\r\nmax. 30%<\/td>\r\n<\/tr>\r\n
    Omega-6 Fatty Acids<\/strong><\/td>\r\nmin. 1.0%<\/td>\r\n<\/tr>\r\n
    Omega-3 Fatty Acids<\/strong><\/td>\r\nmin. 0.2%<\/td>\r\n<\/tr>\r\n
    L-Carnitine<\/strong><\/td>\r\n–<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/figure>\r\n\r\n\r\n\r\n

    Ingredients<\/h2>\r\n\r\n\r\n\r\n

    Rabbit, peas, potatoes, garbanzo beans, glycerin, flaxseed, cane molasses, dried egg product, chicken fat (preserved with tocopherols and citric acid), tapioca starch, sweet potatoes, natural smoke flavor, salt, calcium lactate, lactic acid, palm oil, salmon oil, phosphoric acid, zinc propionate, calcium propionate (a preservative), yucca schidigera extract, natural flavor, L-carnitine, rosemary extract.<\/p>\r\n\r\n\r\n\r\n

    The Takeaway: NutriSource puppy food is grain-free<\/h2>\r\n\r\n\r\n\r\n

    This brand has been around for a long time for a good reason.<\/p>\r\n\r\n\r\n\r\n

    NutriSource has earned the reputation it enjoys, albeit primarily among better-informed dog owners, due to its commitment to meeting dogs’ established nutritional needs.<\/p>\r\n\r\n\r\n\r\n

    This brand, while featuring some more expensive kibble recipes, pays off in terms of your pet’s comfort when you spend a couple of dollars more.<\/p>\r\n\r\n\r\n\r\n

    Our goal is to clear up any doubts you may have had about switching to or continuing to buy this brand.<\/p>\r\n\r\n\r\n\r\n

    That’s not all we have in store for you! Our reviews of the best dry dog food, the best dry food for small dogs or canned dog food vs dry kibbles will help you learn more about canine nutrition.<\/p>\r\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":69,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-65","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-food"],"yoast_head":"\nHow Does NutriSource Puppy Food Work? - The Food Leaks<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Does NutriSource Puppy Food Work? - The Food Leaks\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/\" \/>\n<meta property=\"og:site_name\" content=\"The Food Leaks\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-08T17:50:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-07T17:07:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/08\/Untitled_design__1659980918_93213.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"444\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/\",\"url\":\"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/\",\"name\":\"How Does NutriSource Puppy Food Work? - The Food Leaks\",\"isPartOf\":{\"@id\":\"https:\/\/thefoodleaks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/08\/Untitled_design__1659980918_93213.jpg\",\"datePublished\":\"2022-08-08T17:50:01+00:00\",\"dateModified\":\"2023-06-07T17:07:35+00:00\",\"author\":{\"@id\":\"https:\/\/thefoodleaks.com\/#\/schema\/person\/1560a0ca9c07b3246e026d72fad895a7\"},\"breadcrumb\":{\"@id\":\"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/#primaryimage\",\"url\":\"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/08\/Untitled_design__1659980918_93213.jpg\",\"contentUrl\":\"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/08\/Untitled_design__1659980918_93213.jpg\",\"width\":800,\"height\":444,\"caption\":\"NutriSource Puppy Food\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thefoodleaks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Does NutriSource Puppy Food Work?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thefoodleaks.com\/#website\",\"url\":\"https:\/\/thefoodleaks.com\/\",\"name\":\"The Food Leaks\",\"description\":\"Food For Only Taste\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thefoodleaks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/thefoodleaks.com\/#\/schema\/person\/1560a0ca9c07b3246e026d72fad895a7\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thefoodleaks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/27ebaa0370c993ef22a58c12e7e80d62?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/27ebaa0370c993ef22a58c12e7e80d62?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/thefoodleaks.com\"],\"url\":\"https:\/\/thefoodleaks.com\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Does NutriSource Puppy Food Work? - The Food Leaks","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/","og_locale":"en_US","og_type":"article","og_title":"How Does NutriSource Puppy Food Work? - The Food Leaks","og_url":"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/","og_site_name":"The Food Leaks","article_published_time":"2022-08-08T17:50:01+00:00","article_modified_time":"2023-06-07T17:07:35+00:00","og_image":[{"width":800,"height":444,"url":"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/08\/Untitled_design__1659980918_93213.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/","url":"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/","name":"How Does NutriSource Puppy Food Work? - The Food Leaks","isPartOf":{"@id":"https:\/\/thefoodleaks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/#primaryimage"},"image":{"@id":"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/#primaryimage"},"thumbnailUrl":"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/08\/Untitled_design__1659980918_93213.jpg","datePublished":"2022-08-08T17:50:01+00:00","dateModified":"2023-06-07T17:07:35+00:00","author":{"@id":"https:\/\/thefoodleaks.com\/#\/schema\/person\/1560a0ca9c07b3246e026d72fad895a7"},"breadcrumb":{"@id":"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/#primaryimage","url":"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/08\/Untitled_design__1659980918_93213.jpg","contentUrl":"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/08\/Untitled_design__1659980918_93213.jpg","width":800,"height":444,"caption":"NutriSource Puppy Food"},{"@type":"BreadcrumbList","@id":"https:\/\/thefoodleaks.com\/how-does-nutrisource-puppy-food-work\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thefoodleaks.com\/"},{"@type":"ListItem","position":2,"name":"How Does NutriSource Puppy Food Work?"}]},{"@type":"WebSite","@id":"https:\/\/thefoodleaks.com\/#website","url":"https:\/\/thefoodleaks.com\/","name":"The Food Leaks","description":"Food For Only Taste","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thefoodleaks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/thefoodleaks.com\/#\/schema\/person\/1560a0ca9c07b3246e026d72fad895a7","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thefoodleaks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/27ebaa0370c993ef22a58c12e7e80d62?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/27ebaa0370c993ef22a58c12e7e80d62?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/thefoodleaks.com"],"url":"https:\/\/thefoodleaks.com\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/posts\/65","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/comments?post=65"}],"version-history":[{"count":5,"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/posts\/65\/revisions"}],"predecessor-version":[{"id":137,"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/posts\/65\/revisions\/137"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/media\/69"}],"wp:attachment":[{"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/media?parent=65"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/categories?post=65"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/tags?post=65"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}