/******/ "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":29,"date":"2022-05-21T00:42:01","date_gmt":"2022-05-21T00:42:01","guid":{"rendered":"https:\/\/thefoodleaks.com\/?p=29"},"modified":"2022-07-23T19:57:31","modified_gmt":"2022-07-23T19:57:31","slug":"top-benefits-that-a-fitness-coach-can-get-you","status":"publish","type":"post","link":"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/","title":{"rendered":"Top Benefits That A Fitness Coach Can Get You"},"content":{"rendered":"
Top Benefits That A Fitness Coach Can Get You:<\/strong> A fitness coach isn\u2019t ideal for everybody. Since there are individuals who like to do things themselves yet in particular, there are greater part of individuals that don\u2019t know about how-to lift loads and how to deal with their eating routine. It is very difficult for them to work around their eating regimen and make things as they need it. This is where a fitness coach comes in like Chris Protein. Since a fitness coach can assist you with doing numerous things that a typical individual simply isn\u2019t exactly there to see yet. Individuals don\u2019t have the foggiest idea how to shed weight or get that body that will appear as though you are featuring in a Hollywood activity film. The thing is individuals need many things and a fitness coach can assist you with arriving.<\/p>\n
Here are the benefits that a fitness coach can get you:<\/h2>\n
They can work on your structure and refine your procedure. \nFitness coach takes a gander at everything you might do and ensures that you get the right sort of structure at whatever point you are lifting loads or running, or pretty much doing anything. They need to guarantee that you are spending the right sort of energy on the right structure so in the end you get the shape that you are searching for. It is absurd to expect to get the specific shape that you are looking while at the same time utilizing a strategy that is totally off-base.<\/p>\n
You will get various techniques for preparing.<\/h2>\n
An expert mentor knows various techniques for preparing. You simply don\u2019t need to do running and running and afterward lift a couple of loads. They will stir things up constantly and let you evaluate new procedures and techniques to get the body you need. Moreover, you will not get exhausted by any means with an expert fitness coach.<\/p>\n
Keep you roused no matter what.<\/h2>\n
A fitness coach will be with you and will manage you in regards to everything, even your emotional wellness on an individual level and will attempt to figure out you. This is where the wizardry occurs with the assistance of a fit ness coach, for example, Chris Protein Personal Training since they will keep you inspired with their words and activities. They will keep you alert and aware until you arrive at your objective for the afternoon. This is the magnificence of a fit ness coach, and you should rest assured about the way that you will arrive at your ideal shape in the time you need when you recruit a fitness coach.<\/p>\n<\/body><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":52,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[],"class_list":["post-29","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-exercise"],"yoast_head":"\n
Top Benefits That A Fitness Coach Can Get You || thefoodleaks<\/title>\n<meta name=\"description\" content=\"Fitness Coach more than whatever else, comprehends the distinction between what a client needs and what that client needs. She distinguishes.\" \/>\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\/top-benefits-that-a-fitness-coach-can-get-you\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Top Benefits That A Fitness Coach Can Get You || thefoodleaks\" \/>\n<meta property=\"og:description\" content=\"Fitness Coach more than whatever else, comprehends the distinction between what a client needs and what that client needs. She distinguishes.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/\" \/>\n<meta property=\"og:site_name\" content=\"The Food Leaks\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-21T00:42:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-23T19:57:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/05\/Fitness-Coach.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/\",\"url\":\"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/\",\"name\":\"Top Benefits That A Fitness Coach Can Get You || thefoodleaks\",\"isPartOf\":{\"@id\":\"https:\/\/thefoodleaks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/05\/Fitness-Coach.jpg\",\"datePublished\":\"2022-05-21T00:42:01+00:00\",\"dateModified\":\"2022-07-23T19:57:31+00:00\",\"author\":{\"@id\":\"https:\/\/thefoodleaks.com\/#\/schema\/person\/1560a0ca9c07b3246e026d72fad895a7\"},\"description\":\"Fitness Coach more than whatever else, comprehends the distinction between what a client needs and what that client needs. She distinguishes.\",\"breadcrumb\":{\"@id\":\"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/#primaryimage\",\"url\":\"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/05\/Fitness-Coach.jpg\",\"contentUrl\":\"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/05\/Fitness-Coach.jpg\",\"width\":1200,\"height\":628,\"caption\":\"Fitness Coach\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thefoodleaks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Top Benefits That A Fitness Coach Can Get You\"}]},{\"@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":"Top Benefits That A Fitness Coach Can Get You || thefoodleaks","description":"Fitness Coach more than whatever else, comprehends the distinction between what a client needs and what that client needs. She distinguishes.","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\/top-benefits-that-a-fitness-coach-can-get-you\/","og_locale":"en_US","og_type":"article","og_title":"Top Benefits That A Fitness Coach Can Get You || thefoodleaks","og_description":"Fitness Coach more than whatever else, comprehends the distinction between what a client needs and what that client needs. She distinguishes.","og_url":"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/","og_site_name":"The Food Leaks","article_published_time":"2022-05-21T00:42:01+00:00","article_modified_time":"2022-07-23T19:57:31+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/05\/Fitness-Coach.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/","url":"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/","name":"Top Benefits That A Fitness Coach Can Get You || thefoodleaks","isPartOf":{"@id":"https:\/\/thefoodleaks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/#primaryimage"},"image":{"@id":"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/#primaryimage"},"thumbnailUrl":"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/05\/Fitness-Coach.jpg","datePublished":"2022-05-21T00:42:01+00:00","dateModified":"2022-07-23T19:57:31+00:00","author":{"@id":"https:\/\/thefoodleaks.com\/#\/schema\/person\/1560a0ca9c07b3246e026d72fad895a7"},"description":"Fitness Coach more than whatever else, comprehends the distinction between what a client needs and what that client needs. She distinguishes.","breadcrumb":{"@id":"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/#primaryimage","url":"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/05\/Fitness-Coach.jpg","contentUrl":"https:\/\/thefoodleaks.com\/wp-content\/uploads\/2022\/05\/Fitness-Coach.jpg","width":1200,"height":628,"caption":"Fitness Coach"},{"@type":"BreadcrumbList","@id":"https:\/\/thefoodleaks.com\/top-benefits-that-a-fitness-coach-can-get-you\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thefoodleaks.com\/"},{"@type":"ListItem","position":2,"name":"Top Benefits That A Fitness Coach Can Get You"}]},{"@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\/29","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=29"}],"version-history":[{"count":1,"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/posts\/29\/revisions"}],"predecessor-version":[{"id":31,"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/posts\/29\/revisions\/31"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/media\/52"}],"wp:attachment":[{"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/media?parent=29"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/categories?post=29"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thefoodleaks.com\/wp-json\/wp\/v2\/tags?post=29"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}