Gutenberg Blocks – ACF Blocks Suite - Version 1.3.0

Version Description

  • New: Social Sharing Block Added
Download this release

Release Info

Developer munirkamal
Plugin Icon 128x128 Gutenberg Blocks – ACF Blocks Suite
Version 1.3.0
Comparing to
See all releases

Code changes from version 1.2.0 to 1.3.0

acf-blocks.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: ACF Blocks
4
  * Plugin URI: https://acfblocks.com/
5
  * Description: Supercharge your Gutenberg editor with high quality beautiful WordPress blocks. Ready-to-use ACF Blocks!
6
- * Version: 1.2.0
7
  * Author: munirkamal
8
  * Author URI: https://munirkamal.wordpress.com
9
  * License: GPL2
@@ -167,7 +167,7 @@ function acfb_blocks() {
167
  'icon' => '<svg id="Outlined" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title/><g id="Fill"><path d="M16.71,22.29l-1.42,1.42L17.59,26H16A10,10,0,0,1,8.93,8.93L7.51,7.51A12,12,0,0,0,16,28h1.59l-2.3,2.29,1.42,1.42L20,28.41a2,2,0,0,0,0-2.82Z"/><path d="M16,4H14.41l2.3-2.29L15.29.29,12,3.59a2,2,0,0,0,0,2.82l3.29,3.3,1.42-1.42L14.41,6H16a10,10,0,0,1,7.07,17.07l1.42,1.42A12,12,0,0,0,16,4Z"/></g></svg>',
168
  'enqueue_assets' => function(){
169
  wp_enqueue_style( 'acfb-blocks-css', plugin_dir_url( __FILE__ ) . 'css/acfblocks.css' );
170
- wp_enqueue_script( 'acfb-blocks-js', plugin_dir_url( __FILE__ ) . 'js/acfblocks.js', array('jquery'), '', false );
171
  },
172
  ));
173
 
@@ -225,22 +225,37 @@ function acfb_blocks() {
225
 
226
  // register a Photo Collage block.
227
  acf_register_block(array(
228
- 'name' => 'acfb-photocollage',
229
- 'mode' => 'preview',
230
- 'title' => __('Photo Collage'),
231
- 'description' => __('Display beautiful photo collage using pre-made templates.'),
232
- 'render_template' => plugin_dir_path( __FILE__ ) . 'block-templates/photo-collage.php',
233
- 'category' => 'acfb-blocks',
234
- 'icon' => '<svg enable-background="new 0 0 140.637 140.637" version="1.1" viewBox="0 0 140.64 140.64" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
235
- <path d="m138.14 140.61h-135.64c-1.381 0-2.5-1.119-2.5-2.5v-135.59c0-1.381 1.119-2.5 2.5-2.5h135.64c1.381 0 2.5 1.119 2.5 2.5v135.59c0 1.381-1.119 2.5-2.5 2.5zm-50.637-5h48.091v-17.599h-48.091v17.599zm-53.138 0h48.138v-17.599h-48.138v17.599zm-29.362 0h24.362v-17.599h-24.362v17.599zm106.27-22.599h24.317v-17.598h-24.317v17.598zm-26.273 0h21.273v-17.598h-48.136v17.599h26.863zm-53.138 0h21.274v-17.598h-48.136v17.599h26.862zm76.911-22.598h26.817v-17.599h-48.09v17.598h21.273zm-53.136 0h26.863v-17.599h-48.138v17.598h21.275zm-50.637 0h24.362v-17.599h-24.362v17.599zm106.27-22.599h24.317v-17.598h-24.317v17.598zm-26.273 0h21.273v-17.598h-48.136v17.599h26.863zm-53.138 0h21.274v-17.598h-48.136v17.599h26.862zm76.911-22.598h26.817v-17.599h-48.09v17.599h21.273zm-53.136 0h26.863v-17.599h-48.138v17.599h21.275zm-50.637 0h24.362v-17.599h-24.362v17.599zm106.27-22.599h24.317v-17.598h-24.317v17.598zm-26.273 0h21.273v-17.598h-48.136v17.598h26.863zm-53.138 0h21.274v-17.598h-48.136v17.598h26.862z"/>
236
- </svg>',
237
- 'enqueue_assets' => function(){
238
- wp_enqueue_style( 'acfb-blocks-css', plugin_dir_url( __FILE__ ) . 'css/acfblocks.css' );
239
- },
240
  ));
241
-
242
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  }
 
244
  }
245
 
246
 
@@ -402,5 +417,30 @@ function acfb_four_grid_icons( $field ) {
402
  'fifteen' => '<img src="' . plugins_url( 'img/gfour-fifteen.png', __FILE__ ) . '" />',
403
  );
404
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
405
  return $field;
406
  }
3
  * Plugin Name: ACF Blocks
4
  * Plugin URI: https://acfblocks.com/
5
  * Description: Supercharge your Gutenberg editor with high quality beautiful WordPress blocks. Ready-to-use ACF Blocks!
6
+ * Version: 1.3.0
7
  * Author: munirkamal
8
  * Author URI: https://munirkamal.wordpress.com
9
  * License: GPL2
167
  'icon' => '<svg id="Outlined" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title/><g id="Fill"><path d="M16.71,22.29l-1.42,1.42L17.59,26H16A10,10,0,0,1,8.93,8.93L7.51,7.51A12,12,0,0,0,16,28h1.59l-2.3,2.29,1.42,1.42L20,28.41a2,2,0,0,0,0-2.82Z"/><path d="M16,4H14.41l2.3-2.29L15.29.29,12,3.59a2,2,0,0,0,0,2.82l3.29,3.3,1.42-1.42L14.41,6H16a10,10,0,0,1,7.07,17.07l1.42,1.42A12,12,0,0,0,16,4Z"/></g></svg>',
168
  'enqueue_assets' => function(){
169
  wp_enqueue_style( 'acfb-blocks-css', plugin_dir_url( __FILE__ ) . 'css/acfblocks.css' );
170
+ wp_enqueue_script( 'acfb-blocks-js', plugin_dir_url( __FILE__ ) . 'js/frontend.js', array('jquery'), '', false );
171
  },
172
  ));
173
 
225
 
226
  // register a Photo Collage block.
227
  acf_register_block(array(
228
+ 'name' => 'acfb-photocollage',
229
+ 'mode' => 'preview',
230
+ 'title' => __('Photo Collage'),
231
+ 'description' => __('Display beautiful photo collage using pre-made templates.'),
232
+ 'render_template' => plugin_dir_path( __FILE__ ) . 'block-templates/photo-collage.php',
233
+ 'category' => 'acfb-blocks',
234
+ 'icon' => '<svg enable-background="new 0 0 140.637 140.637" version="1.1" viewBox="0 0 140.64 140.64" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
235
+ <path d="m138.14 140.61h-135.64c-1.381 0-2.5-1.119-2.5-2.5v-135.59c0-1.381 1.119-2.5 2.5-2.5h135.64c1.381 0 2.5 1.119 2.5 2.5v135.59c0 1.381-1.119 2.5-2.5 2.5zm-50.637-5h48.091v-17.599h-48.091v17.599zm-53.138 0h48.138v-17.599h-48.138v17.599zm-29.362 0h24.362v-17.599h-24.362v17.599zm106.27-22.599h24.317v-17.598h-24.317v17.598zm-26.273 0h21.273v-17.598h-48.136v17.599h26.863zm-53.138 0h21.274v-17.598h-48.136v17.599h26.862zm76.911-22.598h26.817v-17.599h-48.09v17.598h21.273zm-53.136 0h26.863v-17.599h-48.138v17.598h21.275zm-50.637 0h24.362v-17.599h-24.362v17.599zm106.27-22.599h24.317v-17.598h-24.317v17.598zm-26.273 0h21.273v-17.598h-48.136v17.599h26.863zm-53.138 0h21.274v-17.598h-48.136v17.599h26.862zm76.911-22.598h26.817v-17.599h-48.09v17.599h21.273zm-53.136 0h26.863v-17.599h-48.138v17.599h21.275zm-50.637 0h24.362v-17.599h-24.362v17.599zm106.27-22.599h24.317v-17.598h-24.317v17.598zm-26.273 0h21.273v-17.598h-48.136v17.598h26.863zm-53.138 0h21.274v-17.598h-48.136v17.598h26.862z"/>
236
+ </svg>',
237
+ 'enqueue_assets' => function(){
238
+ wp_enqueue_style( 'acfb-blocks-css', plugin_dir_url( __FILE__ ) . 'css/acfblocks.css' );
239
+ },
240
  ));
241
+
242
+ // register a Social Sharing Block.
243
+ acf_register_block(array(
244
+ 'name' => 'acfb-socialsharing',
245
+ 'mode' => 'preview',
246
+ 'title' => __('Social Sharing'),
247
+ 'description' => __('Super fast and customizable Social Media Sharing Buttons for WordPress. No JavaScript. No tracking.'),
248
+ 'render_template' => plugin_dir_path( __FILE__ ) . 'block-templates/social-sharing.php',
249
+ 'category' => 'acfb-blocks',
250
+ 'icon' => '<svg enable-background="new 0 0 481.6 481.6" version="1.1" viewBox="0 0 481.6 481.6" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
251
+ <path d="m381.6 309.4c-27.7 0-52.4 13.2-68.2 33.6l-132.3-73.9c3.1-8.9 4.8-18.5 4.8-28.4 0-10-1.7-19.5-4.9-28.5l132.2-73.8c15.7 20.5 40.5 33.8 68.3 33.8 47.4 0 86.1-38.6 86.1-86.1s-38.6-86.1-86.1-86.1-86.1 38.6-86.1 86.1c0 10 1.7 19.6 4.9 28.5l-132.1 73.8c-15.7-20.6-40.5-33.8-68.3-33.8-47.4 0-86.1 38.6-86.1 86.1s38.7 86.1 86.2 86.1c27.8 0 52.6-13.3 68.4-33.9l132.2 73.9c-3.2 9-5 18.7-5 28.7 0 47.4 38.6 86.1 86.1 86.1s86.1-38.6 86.1-86.1-38.7-86.1-86.2-86.1zm0-282.3c32.6 0 59.1 26.5 59.1 59.1s-26.5 59.1-59.1 59.1-59.1-26.5-59.1-59.1 26.6-59.1 59.1-59.1zm-281.6 272.7c-32.6 0-59.1-26.5-59.1-59.1s26.5-59.1 59.1-59.1 59.1 26.5 59.1 59.1-26.6 59.1-59.1 59.1zm281.6 154.7c-32.6 0-59.1-26.5-59.1-59.1s26.5-59.1 59.1-59.1 59.1 26.5 59.1 59.1-26.5 59.1-59.1 59.1z"/>
252
+ </svg>',
253
+ 'enqueue_assets' => function(){
254
+ wp_enqueue_style( 'acfb-blocks-css', plugin_dir_url( __FILE__ ) . 'css/acfblocks.css' );
255
+ },
256
+ ));
257
  }
258
+
259
  }
260
 
261
 
417
  'fifteen' => '<img src="' . plugins_url( 'img/gfour-fifteen.png', __FILE__ ) . '" />',
418
  );
419
 
420
+ return $field;
421
+ }
422
+
423
+
424
+
425
+
426
+
427
+
428
+ add_filter('acf/load_field/name=social_network', 'Social_icons');
429
+ function Social_icons( $field ) {
430
+
431
+ $field['choices'] = array(
432
+ '1' => '<svg class="acfb_social_icons acfb_social_facebook_main" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.77 7.46H14.5v-1.9c0-.9.6-1.1 1-1.1h3V.5h-4.33C10.24.5 9.5 3.44 9.5 5.32v2.15h-3v4h3v12h5v-12h3.85l.42-4z" stroke="none" fill="#666666" stroke-width="2px"/></svg>',
433
+ '2' => '<svg class="acfb_social_icons acfb_social_twitter_main" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.44 4.83c-.8.37-1.5.38-2.22.02.93-.56.98-.96 1.32-2.02-.88.52-1.86.9-2.9 1.1-.82-.88-2-1.43-3.3-1.43-2.5 0-4.55 2.04-4.55 4.54 0 .36.03.7.1 1.04-3.77-.2-7.12-2-9.36-4.75-.4.67-.6 1.45-.6 2.3 0 1.56.8 2.95 2 3.77-.74-.03-1.44-.23-2.05-.57v.06c0 2.2 1.56 4.03 3.64 4.44-.67.2-1.37.2-2.06.08.58 1.8 2.26 3.12 4.25 3.16C5.78 18.1 3.37 18.74 1 18.46c2 1.3 4.4 2.04 6.97 2.04 8.35 0 12.92-6.92 12.92-12.93 0-.2 0-.4-.02-.6.9-.63 1.96-1.22 2.56-2.14z" stroke="none" fill="#666666" stroke-width="2px"/></svg>',
434
+ '3' => '<svg class="acfb_social_icons acfb_social_email_main" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4H2C.9 4 0 4.9 0 6v12c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.25 14.43l-3.5 2c-.08.05-.17.07-.25.07-.17 0-.34-.1-.43-.25-.14-.24-.06-.55.18-.68l3.5-2c.24-.14.55-.06.68.18.14.24.06.55-.18.68zm4.75.07c-.1 0-.2-.03-.27-.08l-8.5-5.5c-.23-.15-.3-.46-.15-.7.15-.22.46-.3.7-.14L12 13.4l8.23-5.32c.23-.15.54-.08.7.15.14.23.07.54-.16.7l-8.5 5.5c-.08.04-.17.07-.27.07zm8.93 1.75c-.1.16-.26.25-.43.25-.08 0-.17-.02-.25-.07l-3.5-2c-.24-.13-.32-.44-.18-.68s.44-.32.68-.18l3.5 2c.24.13.32.44.18.68z" stroke="none" fill="#666666" stroke-width="2px"/></svg>',
435
+ '4' => '<svg class="acfb_social_icons acfb_social_pinterest_main" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.14.5C5.86.5 2.7 5 2.7 8.75c0 2.27.86 4.3 2.7 5.05.3.12.57 0 .66-.33l.27-1.06c.1-.32.06-.44-.2-.73-.52-.62-.86-1.44-.86-2.6 0-3.33 2.5-6.32 6.5-6.32 3.55 0 5.5 2.17 5.5 5.07 0 3.8-1.7 7.02-4.2 7.02-1.37 0-2.4-1.14-2.07-2.54.4-1.68 1.16-3.48 1.16-4.7 0-1.07-.58-1.98-1.78-1.98-1.4 0-2.55 1.47-2.55 3.42 0 1.25.43 2.1.43 2.1l-1.7 7.2c-.5 2.13-.08 4.75-.04 5 .02.17.22.2.3.1.14-.18 1.82-2.26 2.4-4.33.16-.58.93-3.63.93-3.63.45.88 1.8 1.65 3.22 1.65 4.25 0 7.13-3.87 7.13-9.05C20.5 4.15 17.18.5 12.14.5z" stroke="none" fill="#666666" stroke-width="2px"/></svg>',
436
+ '5' => '<svg class="acfb_social_icons acfb_social_linkedin_main" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 21.5h-5v-13h5v13zM4 6.5C2.5 6.5 1.5 5.3 1.5 4s1-2.4 2.5-2.4c1.6 0 2.5 1 2.6 2.5 0 1.4-1 2.5-2.6 2.5zm11.5 6c-1 0-2 1-2 2v7h-5v-13h5V10s1.6-1.5 4-1.5c3 0 5 2.2 5 6.3v6.7h-5v-7c0-1-1-2-2-2z" stroke="none" fill="#666666" stroke-width="2px"/></svg>',
437
+ '6' => '<svg class="acfb_social_icons acfb_social_reddit_main" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 11.5c0-1.65-1.35-3-3-3-.96 0-1.86.48-2.42 1.24-1.64-1-3.75-1.64-6.07-1.72.08-1.1.4-3.05 1.52-3.7.72-.4 1.73-.24 3 .5C17.2 6.3 18.46 7.5 20 7.5c1.65 0 3-1.35 3-3s-1.35-3-3-3c-1.38 0-2.54.94-2.88 2.22-1.43-.72-2.64-.8-3.6-.25-1.64.94-1.95 3.47-2 4.55-2.33.08-4.45.7-6.1 1.72C4.86 8.98 3.96 8.5 3 8.5c-1.65 0-3 1.35-3 3 0 1.32.84 2.44 2.05 2.84-.03.22-.05.44-.05.66 0 3.86 4.5 7 10 7s10-3.14 10-7c0-.22-.02-.44-.05-.66 1.2-.4 2.05-1.54 2.05-2.84zM2.3 13.37C1.5 13.07 1 12.35 1 11.5c0-1.1.9-2 2-2 .64 0 1.22.32 1.6.82-1.1.85-1.92 1.9-2.3 3.05zm3.7.13c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm9.8 4.8c-1.08.63-2.42.96-3.8.96-1.4 0-2.74-.34-3.8-.95-.24-.13-.32-.44-.2-.68.15-.24.46-.32.7-.18 1.83 1.06 4.76 1.06 6.6 0 .23-.13.53-.05.67.2.14.23.06.54-.18.67zm.2-2.8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.7-2.13c-.38-1.16-1.2-2.2-2.3-3.05.38-.5.97-.82 1.6-.82 1.1 0 2 .9 2 2 0 .84-.53 1.57-1.3 1.87z" stroke="none" fill="#666666" stroke-width="2px"/></svg>',
438
+ '7' => '<svg class="acfb_social_icons acfb_social_xing_main" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.2 9.7l-3-5.4C7.2 4 7 4 6.8 4h-5c-.3 0-.4 0-.5.2v.5L4 10 .4 16v.5c0 .2.2.3.4.3h5c.3 0 .4 0 .5-.2l4-6.6v-.5zM24 .2l-.5-.2H18s-.2 0-.3.3l-8 14v.4l5.2 9c0 .2 0 .3.3.3h5.4s.3 0 .4-.2c.2-.2.2-.4 0-.5l-5-8.8L24 .7V.2z" stroke="none" fill="#666666" stroke-width="2px"/></svg>',
439
+ '8' => '<svg class="acfb_social_icons acfb_social_whatsapp_main" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.1 3.9C17.9 1.7 15 .5 12 .5 5.8.5.7 5.6.7 11.9c0 2 .5 3.9 1.5 5.6L.6 23.4l6-1.6c1.6.9 3.5 1.3 5.4 1.3 6.3 0 11.4-5.1 11.4-11.4-.1-2.8-1.2-5.7-3.3-7.8zM12 21.4c-1.7 0-3.3-.5-4.8-1.3l-.4-.2-3.5 1 1-3.4L4 17c-1-1.5-1.4-3.2-1.4-5.1 0-5.2 4.2-9.4 9.4-9.4 2.5 0 4.9 1 6.7 2.8 1.8 1.8 2.8 4.2 2.8 6.7-.1 5.2-4.3 9.4-9.5 9.4zm5.1-7.1c-.3-.1-1.7-.9-1.9-1-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.1-.2.2-.3.2-.6.1s-1.2-.5-2.3-1.4c-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6s.3-.3.4-.5c.2-.1.3-.3.4-.5.1-.2 0-.4 0-.5C10 9 9.3 7.6 9 7c-.1-.4-.4-.3-.5-.3h-.6s-.4.1-.7.3c-.3.3-1 1-1 2.4s1 2.8 1.1 3c.1.2 2 3.1 4.9 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.6-.1 1.7-.7 1.9-1.3.2-.7.2-1.2.2-1.3-.1-.3-.3-.4-.6-.5z" stroke="none" fill="#666666" stroke-width="2px"/></svg>',
440
+ '9' => '<svg class="acfb_social_icons acfb_social_hackernews_main" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 140"><path fill-rule="evenodd" d="M60.94 82.314L17 0h20.08l25.85 52.093c.397.927.86 1.888 1.39 2.883.53.994.995 2.02 1.393 3.08.265.4.463.764.596 1.095.13.334.262.63.395.898.662 1.325 1.26 2.618 1.79 3.877.53 1.26.993 2.42 1.39 3.48 1.06-2.254 2.22-4.673 3.48-7.258 1.26-2.585 2.552-5.27 3.877-8.052L103.49 0h18.69L77.84 83.308v53.087h-16.9v-54.08z" stroke="none" fill="#666666" stroke-width="2px"/></svg>',
441
+ '10' => '<svg class="acfb_social_icons acfb_social_vk_main" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.547 7h-3.29a.743.743 0 0 0-.655.392s-1.312 2.416-1.734 3.23C14.734 12.813 14 12.126 14 11.11V7.603A1.104 1.104 0 0 0 12.896 6.5h-2.474a1.982 1.982 0 0 0-1.75.813s1.255-.204 1.255 1.49c0 .42.022 1.626.04 2.64a.73.73 0 0 1-1.272.503 21.54 21.54 0 0 1-2.498-4.543.693.693 0 0 0-.63-.403h-2.99a.508.508 0 0 0-.48.685C3.005 10.175 6.918 18 11.38 18h1.878a.742.742 0 0 0 .742-.742v-1.135a.73.73 0 0 1 1.23-.53l2.247 2.112a1.09 1.09 0 0 0 .746.295h2.953c1.424 0 1.424-.988.647-1.753-.546-.538-2.518-2.617-2.518-2.617a1.02 1.02 0 0 1-.078-1.323c.637-.84 1.68-2.212 2.122-2.8.603-.804 1.697-2.507.197-2.507z" stroke="none" fill="#666666" stroke-width="2px"/></svg>',
442
+ '11' => '<svg class="acfb_social_icons acfb_social_telegram_main"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.707 8.475C.275 8.64 0 9.508 0 9.508s.284.867.718 1.03l5.09 1.897 1.986 6.38a1.102 1.102 0 0 0 1.75.527l2.96-2.41a.405.405 0 0 1 .494-.013l5.34 3.87a1.1 1.1 0 0 0 1.046.135 1.1 1.1 0 0 0 .682-.803l3.91-18.795A1.102 1.102 0 0 0 22.5.075L.706 8.475z" stroke="none" fill="#666666" stroke-width="2px"/></svg>',
443
+ );
444
+
445
  return $field;
446
  }
acf-json/group_5cbd743876860.json CHANGED
@@ -1,296 +1,297 @@
1
  {
2
- "key": "group_5cbd743876860",
3
- "title": "Testimonials Block",
4
- "fields": [
5
- {
6
- "key": "field_5cc81f63ae3fb",
7
- "label": "Content",
8
- "name": "",
9
- "type": "tab",
10
- "instructions": "",
11
- "required": 0,
12
- "conditional_logic": 0,
13
- "wrapper": {
14
- "width": "",
15
- "class": "",
16
- "id": ""
17
- },
18
- "placement": "top",
19
- "endpoint": 0
20
- },
21
- {
22
- "key": "field_5cbd749b53ab6",
23
- "label": "Text",
24
- "name": "acfb_testimonial_text",
25
- "type": "textarea",
26
- "instructions": "",
27
- "required": 0,
28
- "conditional_logic": 0,
29
- "wrapper": {
30
- "width": "",
31
- "class": "",
32
- "id": ""
33
- },
34
- "default_value": "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris",
35
- "placeholder": "",
36
- "maxlength": "",
37
- "rows": "",
38
- "new_lines": ""
39
- },
40
- {
41
- "key": "field_5cbd74eb53ab7",
42
- "label": "Image",
43
- "name": "acfb_testimonial_image",
44
- "type": "image",
45
- "instructions": "",
46
- "required": 0,
47
- "conditional_logic": 0,
48
- "wrapper": {
49
- "width": "",
50
- "class": "",
51
- "id": ""
52
- },
53
- "return_format": "url",
54
- "preview_size": "thumbnail",
55
- "library": "all",
56
- "min_width": "",
57
- "min_height": "",
58
- "min_size": "",
59
- "max_width": "",
60
- "max_height": "",
61
- "max_size": "",
62
- "mime_types": ""
63
- },
64
- {
65
- "key": "field_5cbd844b488e6",
66
- "label": "Image Alt",
67
- "name": "acfb_testimonial_image_alt",
68
- "type": "text",
69
- "instructions": "",
70
- "required": 0,
71
- "conditional_logic": 0,
72
- "wrapper": {
73
- "width": "",
74
- "class": "",
75
- "id": ""
76
- },
77
- "default_value": "Avatar",
78
- "placeholder": "Avatar",
79
- "prepend": "",
80
- "append": "",
81
- "maxlength": ""
82
- },
83
- {
84
- "key": "field_5cbd752e53ab8",
85
- "label": "Name",
86
- "name": "acfb_testimonial_name",
87
- "type": "text",
88
- "instructions": "",
89
- "required": 0,
90
- "conditional_logic": 0,
91
- "wrapper": {
92
- "width": "",
93
- "class": "",
94
- "id": ""
95
- },
96
- "default_value": "Name Here",
97
- "placeholder": "Name Here",
98
- "prepend": "",
99
- "append": "",
100
- "maxlength": ""
101
- },
102
- {
103
- "key": "field_5cbd753753ab9",
104
- "label": "Position",
105
- "name": "acfb_testimonial_position",
106
- "type": "text",
107
- "instructions": "",
108
- "required": 0,
109
- "conditional_logic": 0,
110
- "wrapper": {
111
- "width": "",
112
- "class": "",
113
- "id": ""
114
- },
115
- "default_value": "Position",
116
- "placeholder": "Position",
117
- "prepend": "",
118
- "append": "",
119
- "maxlength": ""
120
- },
121
- {
122
- "key": "field_5cc81fc1ae3fc",
123
- "label": "Design",
124
- "name": "",
125
- "type": "tab",
126
- "instructions": "",
127
- "required": 0,
128
- "conditional_logic": 0,
129
- "wrapper": {
130
- "width": "",
131
- "class": "",
132
- "id": ""
133
- },
134
- "placement": "top",
135
- "endpoint": 0
136
- },
137
- {
138
- "key": "field_5cbd95e83fdd9",
139
- "label": "Background Color",
140
- "name": "acfb_testimonial_background_color",
141
- "type": "color_picker",
142
- "instructions": "",
143
- "required": 0,
144
- "conditional_logic": 0,
145
- "wrapper": {
146
- "width": "",
147
- "class": "",
148
- "id": ""
149
- },
150
- "default_value": "#f3f4f5"
151
- },
152
- {
153
- "key": "field_5cbd960d3fdda",
154
- "label": "Text Color",
155
- "name": "acfb_testimonial_text_color",
156
- "type": "color_picker",
157
- "instructions": "",
158
- "required": 0,
159
- "conditional_logic": 0,
160
- "wrapper": {
161
- "width": "",
162
- "class": "",
163
- "id": ""
164
- },
165
- "default_value": "#191e23"
166
- },
167
- {
168
- "key": "field_5cbd96f33fddc",
169
- "label": "Text Size",
170
- "name": "acfb_testimonial_text_size",
171
- "type": "range",
172
- "instructions": "",
173
- "required": 0,
174
- "conditional_logic": 0,
175
- "wrapper": {
176
- "width": "",
177
- "class": "",
178
- "id": ""
179
- },
180
- "default_value": 18,
181
- "min": "",
182
- "max": 200,
183
- "step": "",
184
- "prepend": "",
185
- "append": "px"
186
- },
187
- {
188
- "key": "field_5cbd967a3fddb",
189
- "label": "Image Size",
190
- "name": "acfb_testimonial_image_size",
191
- "type": "range",
192
- "instructions": "",
193
- "required": 0,
194
- "conditional_logic": 0,
195
- "wrapper": {
196
- "width": "",
197
- "class": "",
198
- "id": ""
199
- },
200
- "default_value": 55,
201
- "min": "",
202
- "max": 200,
203
- "step": "",
204
- "prepend": "",
205
- "append": "px"
206
- },
207
- {
208
- "key": "field_5cbd97143fddd",
209
- "label": "Name Color",
210
- "name": "acfb_testimonial_name_color",
211
- "type": "color_picker",
212
- "instructions": "",
213
- "required": 0,
214
- "conditional_logic": 0,
215
- "wrapper": {
216
- "width": "",
217
- "class": "",
218
- "id": ""
219
- },
220
- "default_value": "#191e23"
221
- },
222
- {
223
- "key": "field_5cbd97423fdde",
224
- "label": "Name Size",
225
- "name": "acfb_testimonial_name_size",
226
- "type": "range",
227
- "instructions": "",
228
- "required": 0,
229
- "conditional_logic": 0,
230
- "wrapper": {
231
- "width": "",
232
- "class": "",
233
- "id": ""
234
- },
235
- "default_value": 18,
236
- "min": "",
237
- "max": 200,
238
- "step": "",
239
- "prepend": "",
240
- "append": "px"
241
- },
242
- {
243
- "key": "field_5cbd977a3fddf",
244
- "label": "Position Color",
245
- "name": "acfb_testimonial_position_color",
246
- "type": "color_picker",
247
- "instructions": "",
248
- "required": 0,
249
- "conditional_logic": 0,
250
- "wrapper": {
251
- "width": "",
252
- "class": "",
253
- "id": ""
254
- },
255
- "default_value": "#191e23"
256
- },
257
- {
258
- "key": "field_5cbd979b3fde0",
259
- "label": "Position Size",
260
- "name": "acfb_testimonial_position_size",
261
- "type": "range",
262
- "instructions": "",
263
- "required": 0,
264
- "conditional_logic": 0,
265
- "wrapper": {
266
- "width": "",
267
- "class": "",
268
- "id": ""
269
- },
270
- "default_value": 14,
271
- "min": "",
272
- "max": 200,
273
- "step": "",
274
- "prepend": "",
275
- "append": "px"
276
- }
277
- ],
278
- "location": [
279
- [
280
- {
281
- "param": "block",
282
- "operator": "==",
283
- "value": "acf\/acfb-testimonial"
284
- }
285
- ]
286
- ],
287
- "menu_order": 0,
288
- "position": "normal",
289
- "style": "default",
290
- "label_placement": "top",
291
- "instruction_placement": "label",
292
- "hide_on_screen": "",
293
- "active": 1,
294
- "description": "",
295
- "modified": 1557732899
296
- }
 
1
  {
2
+ "key": "group_5cbd743876860",
3
+ "title": "Testimonials Block",
4
+ "private": true,
5
+ "fields": [
6
+ {
7
+ "key": "field_5cc81f63ae3fb",
8
+ "label": "Content",
9
+ "name": "",
10
+ "type": "tab",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "placement": "top",
20
+ "endpoint": 0
21
+ },
22
+ {
23
+ "key": "field_5cbd749b53ab6",
24
+ "label": "Text",
25
+ "name": "acfb_testimonial_text",
26
+ "type": "textarea",
27
+ "instructions": "",
28
+ "required": 0,
29
+ "conditional_logic": 0,
30
+ "wrapper": {
31
+ "width": "",
32
+ "class": "",
33
+ "id": ""
34
+ },
35
+ "default_value": "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris",
36
+ "placeholder": "",
37
+ "maxlength": "",
38
+ "rows": "",
39
+ "new_lines": ""
40
+ },
41
+ {
42
+ "key": "field_5cbd74eb53ab7",
43
+ "label": "Image",
44
+ "name": "acfb_testimonial_image",
45
+ "type": "image",
46
+ "instructions": "",
47
+ "required": 0,
48
+ "conditional_logic": 0,
49
+ "wrapper": {
50
+ "width": "",
51
+ "class": "",
52
+ "id": ""
53
+ },
54
+ "return_format": "url",
55
+ "preview_size": "thumbnail",
56
+ "library": "all",
57
+ "min_width": "",
58
+ "min_height": "",
59
+ "min_size": "",
60
+ "max_width": "",
61
+ "max_height": "",
62
+ "max_size": "",
63
+ "mime_types": ""
64
+ },
65
+ {
66
+ "key": "field_5cbd844b488e6",
67
+ "label": "Image Alt",
68
+ "name": "acfb_testimonial_image_alt",
69
+ "type": "text",
70
+ "instructions": "",
71
+ "required": 0,
72
+ "conditional_logic": 0,
73
+ "wrapper": {
74
+ "width": "",
75
+ "class": "",
76
+ "id": ""
77
+ },
78
+ "default_value": "Avatar",
79
+ "placeholder": "Avatar",
80
+ "prepend": "",
81
+ "append": "",
82
+ "maxlength": ""
83
+ },
84
+ {
85
+ "key": "field_5cbd752e53ab8",
86
+ "label": "Name",
87
+ "name": "acfb_testimonial_name",
88
+ "type": "text",
89
+ "instructions": "",
90
+ "required": 0,
91
+ "conditional_logic": 0,
92
+ "wrapper": {
93
+ "width": "",
94
+ "class": "",
95
+ "id": ""
96
+ },
97
+ "default_value": "Name Here",
98
+ "placeholder": "Name Here",
99
+ "prepend": "",
100
+ "append": "",
101
+ "maxlength": ""
102
+ },
103
+ {
104
+ "key": "field_5cbd753753ab9",
105
+ "label": "Position",
106
+ "name": "acfb_testimonial_position",
107
+ "type": "text",
108
+ "instructions": "",
109
+ "required": 0,
110
+ "conditional_logic": 0,
111
+ "wrapper": {
112
+ "width": "",
113
+ "class": "",
114
+ "id": ""
115
+ },
116
+ "default_value": "Position",
117
+ "placeholder": "Position",
118
+ "prepend": "",
119
+ "append": "",
120
+ "maxlength": ""
121
+ },
122
+ {
123
+ "key": "field_5cc81fc1ae3fc",
124
+ "label": "Design",
125
+ "name": "",
126
+ "type": "tab",
127
+ "instructions": "",
128
+ "required": 0,
129
+ "conditional_logic": 0,
130
+ "wrapper": {
131
+ "width": "",
132
+ "class": "",
133
+ "id": ""
134
+ },
135
+ "placement": "top",
136
+ "endpoint": 0
137
+ },
138
+ {
139
+ "key": "field_5cbd95e83fdd9",
140
+ "label": "Background Color",
141
+ "name": "acfb_testimonial_background_color",
142
+ "type": "color_picker",
143
+ "instructions": "",
144
+ "required": 0,
145
+ "conditional_logic": 0,
146
+ "wrapper": {
147
+ "width": "",
148
+ "class": "",
149
+ "id": ""
150
+ },
151
+ "default_value": "#f3f4f5"
152
+ },
153
+ {
154
+ "key": "field_5cbd960d3fdda",
155
+ "label": "Text Color",
156
+ "name": "acfb_testimonial_text_color",
157
+ "type": "color_picker",
158
+ "instructions": "",
159
+ "required": 0,
160
+ "conditional_logic": 0,
161
+ "wrapper": {
162
+ "width": "",
163
+ "class": "",
164
+ "id": ""
165
+ },
166
+ "default_value": "#191e23"
167
+ },
168
+ {
169
+ "key": "field_5cbd96f33fddc",
170
+ "label": "Text Size",
171
+ "name": "acfb_testimonial_text_size",
172
+ "type": "range",
173
+ "instructions": "",
174
+ "required": 0,
175
+ "conditional_logic": 0,
176
+ "wrapper": {
177
+ "width": "",
178
+ "class": "",
179
+ "id": ""
180
+ },
181
+ "default_value": 18,
182
+ "min": "",
183
+ "max": 200,
184
+ "step": "",
185
+ "prepend": "",
186
+ "append": "px"
187
+ },
188
+ {
189
+ "key": "field_5cbd967a3fddb",
190
+ "label": "Image Size",
191
+ "name": "acfb_testimonial_image_size",
192
+ "type": "range",
193
+ "instructions": "",
194
+ "required": 0,
195
+ "conditional_logic": 0,
196
+ "wrapper": {
197
+ "width": "",
198
+ "class": "",
199
+ "id": ""
200
+ },
201
+ "default_value": 55,
202
+ "min": "",
203
+ "max": 200,
204
+ "step": "",
205
+ "prepend": "",
206
+ "append": "px"
207
+ },
208
+ {
209
+ "key": "field_5cbd97143fddd",
210
+ "label": "Name Color",
211
+ "name": "acfb_testimonial_name_color",
212
+ "type": "color_picker",
213
+ "instructions": "",
214
+ "required": 0,
215
+ "conditional_logic": 0,
216
+ "wrapper": {
217
+ "width": "",
218
+ "class": "",
219
+ "id": ""
220
+ },
221
+ "default_value": "#191e23"
222
+ },
223
+ {
224
+ "key": "field_5cbd97423fdde",
225
+ "label": "Name Size",
226
+ "name": "acfb_testimonial_name_size",
227
+ "type": "range",
228
+ "instructions": "",
229
+ "required": 0,
230
+ "conditional_logic": 0,
231
+ "wrapper": {
232
+ "width": "",
233
+ "class": "",
234
+ "id": ""
235
+ },
236
+ "default_value": 18,
237
+ "min": "",
238
+ "max": 200,
239
+ "step": "",
240
+ "prepend": "",
241
+ "append": "px"
242
+ },
243
+ {
244
+ "key": "field_5cbd977a3fddf",
245
+ "label": "Position Color",
246
+ "name": "acfb_testimonial_position_color",
247
+ "type": "color_picker",
248
+ "instructions": "",
249
+ "required": 0,
250
+ "conditional_logic": 0,
251
+ "wrapper": {
252
+ "width": "",
253
+ "class": "",
254
+ "id": ""
255
+ },
256
+ "default_value": "#191e23"
257
+ },
258
+ {
259
+ "key": "field_5cbd979b3fde0",
260
+ "label": "Position Size",
261
+ "name": "acfb_testimonial_position_size",
262
+ "type": "range",
263
+ "instructions": "",
264
+ "required": 0,
265
+ "conditional_logic": 0,
266
+ "wrapper": {
267
+ "width": "",
268
+ "class": "",
269
+ "id": ""
270
+ },
271
+ "default_value": 14,
272
+ "min": "",
273
+ "max": 200,
274
+ "step": "",
275
+ "prepend": "",
276
+ "append": "px"
277
+ }
278
+ ],
279
+ "location": [
280
+ [
281
+ {
282
+ "param": "block",
283
+ "operator": "==",
284
+ "value": "acf/acfb-testimonial"
285
+ }
286
+ ]
287
+ ],
288
+ "menu_order": 0,
289
+ "position": "normal",
290
+ "style": "default",
291
+ "label_placement": "top",
292
+ "instruction_placement": "label",
293
+ "hide_on_screen": "",
294
+ "active": 1,
295
+ "description": "",
296
+ "modified": 1558698542
297
+ }
acf-json/group_5cbd9e696a100.json CHANGED
@@ -1,323 +1,322 @@
1
  {
2
- "key": "group_5cbd9e696a100",
3
- "title": "Team Block",
4
- "fields": [
5
- {
6
- "key": "field_5cc828ec4ea06",
7
- "label": "Content",
8
- "name": "",
9
- "type": "tab",
10
- "instructions": "",
11
- "required": 0,
12
- "conditional_logic": 0,
13
- "wrapper": {
14
- "width": "",
15
- "class": "",
16
- "id": ""
17
- },
18
- "placement": "top",
19
- "endpoint": 0
20
- },
21
- {
22
- "key": "field_5cbda662bd5e1",
23
- "label": "Image",
24
- "name": "acfb_team_image",
25
- "type": "image",
26
- "instructions": "",
27
- "required": 0,
28
- "conditional_logic": 0,
29
- "wrapper": {
30
- "width": "",
31
- "class": "",
32
- "id": ""
33
- },
34
- "return_format": "url",
35
- "preview_size": "medium",
36
- "library": "all",
37
- "min_width": "",
38
- "min_height": "",
39
- "min_size": "",
40
- "max_width": "",
41
- "max_height": "",
42
- "max_size": "",
43
- "mime_types": ""
44
- },
45
- {
46
- "key": "field_5cbda572fa5ba",
47
- "label": "Image Position",
48
- "name": "acfb_team_image_position",
49
- "type": "select",
50
- "instructions": "",
51
- "required": 0,
52
- "conditional_logic": 0,
53
- "wrapper": {
54
- "width": "",
55
- "class": "",
56
- "id": ""
57
- },
58
- "choices": {
59
- "top": "top",
60
- "left": "left"
61
- },
62
- "default_value": [
63
- "top"
64
- ],
65
- "allow_null": 0,
66
- "multiple": 0,
67
- "ui": 0,
68
- "return_format": "value",
69
- "ajax": 0,
70
- "placeholder": ""
71
- },
72
- {
73
- "key": "field_5cbda70c97bc3",
74
- "label": "Image Alt",
75
- "name": "acfb_team_image_alt",
76
- "type": "text",
77
- "instructions": "",
78
- "required": 0,
79
- "conditional_logic": 0,
80
- "wrapper": {
81
- "width": "",
82
- "class": "",
83
- "id": ""
84
- },
85
- "default_value": "Avatar",
86
- "placeholder": "Avatar",
87
- "prepend": "",
88
- "append": "",
89
- "maxlength": ""
90
- },
91
- {
92
- "key": "field_5cbda67ebd5e2",
93
- "label": "Name",
94
- "name": "acfb_team_name",
95
- "type": "text",
96
- "instructions": "",
97
- "required": 0,
98
- "conditional_logic": 0,
99
- "wrapper": {
100
- "width": "",
101
- "class": "",
102
- "id": ""
103
- },
104
- "default_value": "Name Here",
105
- "placeholder": "Name Here",
106
- "prepend": "",
107
- "append": "",
108
- "maxlength": ""
109
- },
110
- {
111
- "key": "field_5cbda699bd5e3",
112
- "label": "Position",
113
- "name": "acfb_team_position",
114
- "type": "text",
115
- "instructions": "",
116
- "required": 0,
117
- "conditional_logic": 0,
118
- "wrapper": {
119
- "width": "",
120
- "class": "",
121
- "id": ""
122
- },
123
- "default_value": "Position",
124
- "placeholder": "Position",
125
- "prepend": "",
126
- "append": "",
127
- "maxlength": ""
128
- },
129
- {
130
- "key": "field_5cbda6a8bd5e4",
131
- "label": "Description",
132
- "name": "acfb_team_description",
133
- "type": "textarea",
134
- "instructions": "",
135
- "required": 0,
136
- "conditional_logic": 0,
137
- "wrapper": {
138
- "width": "",
139
- "class": "",
140
- "id": ""
141
- },
142
- "default_value": "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris",
143
- "placeholder": "",
144
- "maxlength": "",
145
- "rows": "",
146
- "new_lines": ""
147
- },
148
- {
149
- "key": "field_5cc8292d4ea07",
150
- "label": "Design",
151
- "name": "",
152
- "type": "tab",
153
- "instructions": "",
154
- "required": 0,
155
- "conditional_logic": 0,
156
- "wrapper": {
157
- "width": "",
158
- "class": "",
159
- "id": ""
160
- },
161
- "placement": "top",
162
- "endpoint": 0
163
- },
164
- {
165
- "key": "field_5cbdb1729c361",
166
- "label": "Background Color",
167
- "name": "acfb_team_background_color",
168
- "type": "color_picker",
169
- "instructions": "",
170
- "required": 0,
171
- "conditional_logic": 0,
172
- "wrapper": {
173
- "width": "",
174
- "class": "",
175
- "id": ""
176
- },
177
- "default_value": "#f3f4f5"
178
- },
179
- {
180
- "key": "field_5cbdb1ba9c362",
181
- "label": "Image Size",
182
- "name": "acfb_team_image_size",
183
- "type": "range",
184
- "instructions": "",
185
- "required": 0,
186
- "conditional_logic": 0,
187
- "wrapper": {
188
- "width": "",
189
- "class": "",
190
- "id": ""
191
- },
192
- "default_value": 150,
193
- "min": "",
194
- "max": 250,
195
- "step": "",
196
- "prepend": "",
197
- "append": "px"
198
- },
199
- {
200
- "key": "field_5cbdb1fb9c363",
201
- "label": "Name Color",
202
- "name": "acfb_team_name_color",
203
- "type": "color_picker",
204
- "instructions": "",
205
- "required": 0,
206
- "conditional_logic": 0,
207
- "wrapper": {
208
- "width": "",
209
- "class": "",
210
- "id": ""
211
- },
212
- "default_value": "#191e23"
213
- },
214
- {
215
- "key": "field_5cbdb2429c364",
216
- "label": "Name Size",
217
- "name": "acfb_team_name_size",
218
- "type": "range",
219
- "instructions": "",
220
- "required": 0,
221
- "conditional_logic": 0,
222
- "wrapper": {
223
- "width": "",
224
- "class": "",
225
- "id": ""
226
- },
227
- "default_value": 25,
228
- "min": "",
229
- "max": 200,
230
- "step": "",
231
- "prepend": "",
232
- "append": "px"
233
- },
234
- {
235
- "key": "field_5cbdb2749c365",
236
- "label": "Position Color",
237
- "name": "acfb_team_position_color",
238
- "type": "color_picker",
239
- "instructions": "",
240
- "required": 0,
241
- "conditional_logic": 0,
242
- "wrapper": {
243
- "width": "",
244
- "class": "",
245
- "id": ""
246
- },
247
- "default_value": "#191e23"
248
- },
249
- {
250
- "key": "field_5cbdb2a39c366",
251
- "label": "Position Size",
252
- "name": "acfb_team_position_size",
253
- "type": "range",
254
- "instructions": "",
255
- "required": 0,
256
- "conditional_logic": 0,
257
- "wrapper": {
258
- "width": "",
259
- "class": "",
260
- "id": ""
261
- },
262
- "default_value": 18,
263
- "min": "",
264
- "max": 200,
265
- "step": "",
266
- "prepend": "",
267
- "append": "px"
268
- },
269
- {
270
- "key": "field_5cbdb2da9c367",
271
- "label": "Description Color",
272
- "name": "acfb_team_description_color",
273
- "type": "color_picker",
274
- "instructions": "",
275
- "required": 0,
276
- "conditional_logic": 0,
277
- "wrapper": {
278
- "width": "",
279
- "class": "",
280
- "id": ""
281
- },
282
- "default_value": "#191e23"
283
- },
284
- {
285
- "key": "field_5cbdb3069c368",
286
- "label": "Description Size",
287
- "name": "acfb_team_description_size",
288
- "type": "range",
289
- "instructions": "",
290
- "required": 0,
291
- "conditional_logic": 0,
292
- "wrapper": {
293
- "width": "",
294
- "class": "",
295
- "id": ""
296
- },
297
- "default_value": 18,
298
- "min": "",
299
- "max": 200,
300
- "step": "",
301
- "prepend": "",
302
- "append": "px"
303
- }
304
- ],
305
- "location": [
306
- [
307
- {
308
- "param": "block",
309
- "operator": "==",
310
- "value": "acf\/acfb-team"
311
- }
312
- ]
313
- ],
314
- "menu_order": 0,
315
- "position": "normal",
316
- "style": "default",
317
- "label_placement": "top",
318
- "instruction_placement": "label",
319
- "hide_on_screen": "",
320
- "active": 1,
321
- "description": "",
322
- "modified": 1557732904
323
- }
1
  {
2
+ "key": "group_5cbd9e696a100",
3
+ "title": "Team Block",
4
+ "private": true,
5
+ "fields": [
6
+ {
7
+ "key": "field_5cc828ec4ea06",
8
+ "label": "Content",
9
+ "name": "",
10
+ "type": "tab",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "placement": "top",
20
+ "endpoint": 0
21
+ },
22
+ {
23
+ "key": "field_5cbda662bd5e1",
24
+ "label": "Image",
25
+ "name": "acfb_team_image",
26
+ "type": "image",
27
+ "instructions": "",
28
+ "required": 0,
29
+ "conditional_logic": 0,
30
+ "wrapper": {
31
+ "width": "",
32
+ "class": "",
33
+ "id": ""
34
+ },
35
+ "return_format": "url",
36
+ "preview_size": "medium",
37
+ "library": "all",
38
+ "min_width": "",
39
+ "min_height": "",
40
+ "min_size": "",
41
+ "max_width": "",
42
+ "max_height": "",
43
+ "max_size": "",
44
+ "mime_types": ""
45
+ },
46
+ {
47
+ "key": "field_5cbda572fa5ba",
48
+ "label": "Image Position",
49
+ "name": "acfb_team_image_position",
50
+ "type": "select",
51
+ "instructions": "",
52
+ "required": 0,
53
+ "conditional_logic": 0,
54
+ "wrapper": {
55
+ "width": "",
56
+ "class": "",
57
+ "id": ""
58
+ },
59
+ "choices": {
60
+ "top": "top",
61
+ "left": "left"
62
+ },
63
+ "default_value": ["top"],
64
+ "allow_null": 0,
65
+ "multiple": 0,
66
+ "ui": 0,
67
+ "return_format": "value",
68
+ "ajax": 0,
69
+ "placeholder": ""
70
+ },
71
+ {
72
+ "key": "field_5cbda70c97bc3",
73
+ "label": "Image Alt",
74
+ "name": "acfb_team_image_alt",
75
+ "type": "text",
76
+ "instructions": "",
77
+ "required": 0,
78
+ "conditional_logic": 0,
79
+ "wrapper": {
80
+ "width": "",
81
+ "class": "",
82
+ "id": ""
83
+ },
84
+ "default_value": "Avatar",
85
+ "placeholder": "Avatar",
86
+ "prepend": "",
87
+ "append": "",
88
+ "maxlength": ""
89
+ },
90
+ {
91
+ "key": "field_5cbda67ebd5e2",
92
+ "label": "Name",
93
+ "name": "acfb_team_name",
94
+ "type": "text",
95
+ "instructions": "",
96
+ "required": 0,
97
+ "conditional_logic": 0,
98
+ "wrapper": {
99
+ "width": "",
100
+ "class": "",
101
+ "id": ""
102
+ },
103
+ "default_value": "Name Here",
104
+ "placeholder": "Name Here",
105
+ "prepend": "",
106
+ "append": "",
107
+ "maxlength": ""
108
+ },
109
+ {
110
+ "key": "field_5cbda699bd5e3",
111
+ "label": "Position",
112
+ "name": "acfb_team_position",
113
+ "type": "text",
114
+ "instructions": "",
115
+ "required": 0,
116
+ "conditional_logic": 0,
117
+ "wrapper": {
118
+ "width": "",
119
+ "class": "",
120
+ "id": ""
121
+ },
122
+ "default_value": "Position",
123
+ "placeholder": "Position",
124
+ "prepend": "",
125
+ "append": "",
126
+ "maxlength": ""
127
+ },
128
+ {
129
+ "key": "field_5cbda6a8bd5e4",
130
+ "label": "Description",
131
+ "name": "acfb_team_description",
132
+ "type": "textarea",
133
+ "instructions": "",
134
+ "required": 0,
135
+ "conditional_logic": 0,
136
+ "wrapper": {
137
+ "width": "",
138
+ "class": "",
139
+ "id": ""
140
+ },
141
+ "default_value": "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris",
142
+ "placeholder": "",
143
+ "maxlength": "",
144
+ "rows": "",
145
+ "new_lines": ""
146
+ },
147
+ {
148
+ "key": "field_5cc8292d4ea07",
149
+ "label": "Design",
150
+ "name": "",
151
+ "type": "tab",
152
+ "instructions": "",
153
+ "required": 0,
154
+ "conditional_logic": 0,
155
+ "wrapper": {
156
+ "width": "",
157
+ "class": "",
158
+ "id": ""
159
+ },
160
+ "placement": "top",
161
+ "endpoint": 0
162
+ },
163
+ {
164
+ "key": "field_5cbdb1729c361",
165
+ "label": "Background Color",
166
+ "name": "acfb_team_background_color",
167
+ "type": "color_picker",
168
+ "instructions": "",
169
+ "required": 0,
170
+ "conditional_logic": 0,
171
+ "wrapper": {
172
+ "width": "",
173
+ "class": "",
174
+ "id": ""
175
+ },
176
+ "default_value": "#f3f4f5"
177
+ },
178
+ {
179
+ "key": "field_5cbdb1ba9c362",
180
+ "label": "Image Size",
181
+ "name": "acfb_team_image_size",
182
+ "type": "range",
183
+ "instructions": "",
184
+ "required": 0,
185
+ "conditional_logic": 0,
186
+ "wrapper": {
187
+ "width": "",
188
+ "class": "",
189
+ "id": ""
190
+ },
191
+ "default_value": 150,
192
+ "min": "",
193
+ "max": 250,
194
+ "step": "",
195
+ "prepend": "",
196
+ "append": "px"
197
+ },
198
+ {
199
+ "key": "field_5cbdb1fb9c363",
200
+ "label": "Name Color",
201
+ "name": "acfb_team_name_color",
202
+ "type": "color_picker",
203
+ "instructions": "",
204
+ "required": 0,
205
+ "conditional_logic": 0,
206
+ "wrapper": {
207
+ "width": "",
208
+ "class": "",
209
+ "id": ""
210
+ },
211
+ "default_value": "#191e23"
212
+ },
213
+ {
214
+ "key": "field_5cbdb2429c364",
215
+ "label": "Name Size",
216
+ "name": "acfb_team_name_size",
217
+ "type": "range",
218
+ "instructions": "",
219
+ "required": 0,
220
+ "conditional_logic": 0,
221
+ "wrapper": {
222
+ "width": "",
223
+ "class": "",
224
+ "id": ""
225
+ },
226
+ "default_value": 25,
227
+ "min": "",
228
+ "max": 200,
229
+ "step": "",
230
+ "prepend": "",
231
+ "append": "px"
232
+ },
233
+ {
234
+ "key": "field_5cbdb2749c365",
235
+ "label": "Position Color",
236
+ "name": "acfb_team_position_color",
237
+ "type": "color_picker",
238
+ "instructions": "",
239
+ "required": 0,
240
+ "conditional_logic": 0,
241
+ "wrapper": {
242
+ "width": "",
243
+ "class": "",
244
+ "id": ""
245
+ },
246
+ "default_value": "#191e23"
247
+ },
248
+ {
249
+ "key": "field_5cbdb2a39c366",
250
+ "label": "Position Size",
251
+ "name": "acfb_team_position_size",
252
+ "type": "range",
253
+ "instructions": "",
254
+ "required": 0,
255
+ "conditional_logic": 0,
256
+ "wrapper": {
257
+ "width": "",
258
+ "class": "",
259
+ "id": ""
260
+ },
261
+ "default_value": 18,
262
+ "min": "",
263
+ "max": 200,
264
+ "step": "",
265
+ "prepend": "",
266
+ "append": "px"
267
+ },
268
+ {
269
+ "key": "field_5cbdb2da9c367",
270
+ "label": "Description Color",
271
+ "name": "acfb_team_description_color",
272
+ "type": "color_picker",
273
+ "instructions": "",
274
+ "required": 0,
275
+ "conditional_logic": 0,
276
+ "wrapper": {
277
+ "width": "",
278
+ "class": "",
279
+ "id": ""
280
+ },
281
+ "default_value": "#191e23"
282
+ },
283
+ {
284
+ "key": "field_5cbdb3069c368",
285
+ "label": "Description Size",
286
+ "name": "acfb_team_description_size",
287
+ "type": "range",
288
+ "instructions": "",
289
+ "required": 0,
290
+ "conditional_logic": 0,
291
+ "wrapper": {
292
+ "width": "",
293
+ "class": "",
294
+ "id": ""
295
+ },
296
+ "default_value": 18,
297
+ "min": "",
298
+ "max": 200,
299
+ "step": "",
300
+ "prepend": "",
301
+ "append": "px"
302
+ }
303
+ ],
304
+ "location": [
305
+ [
306
+ {
307
+ "param": "block",
308
+ "operator": "==",
309
+ "value": "acf/acfb-team"
310
+ }
311
+ ]
312
+ ],
313
+ "menu_order": 0,
314
+ "position": "normal",
315
+ "style": "default",
316
+ "label_placement": "top",
317
+ "instruction_placement": "label",
318
+ "hide_on_screen": "",
319
+ "active": 1,
320
+ "description": "",
321
+ "modified": 1558698535
322
+ }
 
acf-json/group_5cbdba3909312.json CHANGED
@@ -1,192 +1,193 @@
1
  {
2
- "key": "group_5cbdba3909312",
3
- "title": "Multi Buttons",
4
- "fields": [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  {
6
- "key": "field_5cc84ecff7cb8",
7
- "label": "Content",
8
- "name": "",
9
- "type": "tab",
10
- "instructions": "",
11
- "required": 0,
12
- "conditional_logic": 0,
13
- "wrapper": {
14
- "width": "",
15
- "class": "",
16
- "id": ""
17
- },
18
- "placement": "top",
19
- "endpoint": 0
 
 
 
20
  },
21
  {
22
- "key": "field_5cbdc00df082a",
23
- "label": "Multi Buttons",
24
- "name": "acfb_multi_buttons",
25
- "type": "repeater",
26
- "instructions": "",
27
- "required": 0,
28
- "conditional_logic": 0,
29
- "wrapper": {
30
- "width": "",
31
- "class": "",
32
- "id": ""
33
- },
34
- "collapsed": "field_5cbdc09af082b",
35
- "min": 1,
36
- "max": 0,
37
- "layout": "block",
38
- "button_label": "Add Button",
39
- "sub_fields": [
40
- {
41
- "key": "field_5cbdc09af082b",
42
- "label": "Text",
43
- "name": "acfb_multibutton_text",
44
- "type": "text",
45
- "instructions": "",
46
- "required": 0,
47
- "conditional_logic": 0,
48
- "wrapper": {
49
- "width": "",
50
- "class": "",
51
- "id": ""
52
- },
53
- "default_value": "Button Text",
54
- "placeholder": "Button Text",
55
- "prepend": "",
56
- "append": "",
57
- "maxlength": ""
58
- },
59
- {
60
- "key": "field_5cbdc0b8f082c",
61
- "label": "Link",
62
- "name": "acfb_multibutton_url",
63
- "type": "url",
64
- "instructions": "",
65
- "required": 0,
66
- "conditional_logic": 0,
67
- "wrapper": {
68
- "width": "",
69
- "class": "",
70
- "id": ""
71
- },
72
- "default_value": "#",
73
- "placeholder": "#"
74
- },
75
- {
76
- "key": "field_5cbdc0f7f082d",
77
- "label": "Background Color",
78
- "name": "acfb_multibutton_background_color",
79
- "type": "color_picker",
80
- "instructions": "",
81
- "required": 0,
82
- "conditional_logic": 0,
83
- "wrapper": {
84
- "width": "",
85
- "class": "",
86
- "id": ""
87
- },
88
- "default_value": "#f3f4f5"
89
- },
90
- {
91
- "key": "field_5cbdc132f082e",
92
- "label": "Text Color",
93
- "name": "acfb_multibutton_text_color",
94
- "type": "color_picker",
95
- "instructions": "",
96
- "required": 0,
97
- "conditional_logic": 0,
98
- "wrapper": {
99
- "width": "",
100
- "class": "",
101
- "id": ""
102
- },
103
- "default_value": "#191e23"
104
- },
105
- {
106
- "key": "field_5cbdc6f9d7da3",
107
- "label": "Background Hover Color",
108
- "name": "acfb_multibutton_background_hover_color",
109
- "type": "color_picker",
110
- "instructions": "",
111
- "required": 0,
112
- "conditional_logic": 0,
113
- "wrapper": {
114
- "width": "",
115
- "class": "",
116
- "id": ""
117
- },
118
- "default_value": "#f3f4f5"
119
- },
120
- {
121
- "key": "field_5cbdc720d7da4",
122
- "label": "Text Hover Color",
123
- "name": "acfb_multibutton_text_hover_color",
124
- "type": "color_picker",
125
- "instructions": "",
126
- "required": 0,
127
- "conditional_logic": 0,
128
- "wrapper": {
129
- "width": "",
130
- "class": "",
131
- "id": ""
132
- },
133
- "default_value": "#191e23"
134
- }
135
- ]
136
  },
137
  {
138
- "key": "field_5cc84ee0f7cb9",
139
- "label": "Design",
140
- "name": "",
141
- "type": "tab",
142
- "instructions": "",
143
- "required": 0,
144
- "conditional_logic": 0,
145
- "wrapper": {
146
- "width": "",
147
- "class": "",
148
- "id": ""
149
- },
150
- "placement": "top",
151
- "endpoint": 0
152
  },
153
  {
154
- "key": "field_5cbdc740d7da5",
155
- "label": "Text Size",
156
- "name": "acfb_multibutton_text_size",
157
- "type": "range",
158
- "instructions": "",
159
- "required": 0,
160
- "conditional_logic": 0,
161
- "wrapper": {
162
- "width": "",
163
- "class": "",
164
- "id": ""
165
- },
166
- "default_value": 16,
167
- "min": "",
168
- "max": "",
169
- "step": "",
170
- "prepend": "",
171
- "append": "px"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  }
173
- ],
174
- "location": [
175
- [
176
- {
177
- "param": "block",
178
- "operator": "==",
179
- "value": "acf\/acfb-multibuttons"
180
- }
181
- ]
182
- ],
183
- "menu_order": 0,
184
- "position": "normal",
185
- "style": "default",
186
- "label_placement": "top",
187
- "instruction_placement": "label",
188
- "hide_on_screen": "",
189
- "active": 1,
190
- "description": "",
191
- "modified": 1557732944
192
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ "key": "group_5cbdba3909312",
3
+ "title": "Multi Buttons",
4
+ "private": true,
5
+ "fields": [
6
+ {
7
+ "key": "field_5cc84ecff7cb8",
8
+ "label": "Content",
9
+ "name": "",
10
+ "type": "tab",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "placement": "top",
20
+ "endpoint": 0
21
+ },
22
+ {
23
+ "key": "field_5cbdc00df082a",
24
+ "label": "Multi Buttons",
25
+ "name": "acfb_multi_buttons",
26
+ "type": "repeater",
27
+ "instructions": "",
28
+ "required": 0,
29
+ "conditional_logic": 0,
30
+ "wrapper": {
31
+ "width": "",
32
+ "class": "",
33
+ "id": ""
34
+ },
35
+ "collapsed": "field_5cbdc09af082b",
36
+ "min": 1,
37
+ "max": 0,
38
+ "layout": "block",
39
+ "button_label": "Add Button",
40
+ "sub_fields": [
41
  {
42
+ "key": "field_5cbdc09af082b",
43
+ "label": "Text",
44
+ "name": "acfb_multibutton_text",
45
+ "type": "text",
46
+ "instructions": "",
47
+ "required": 0,
48
+ "conditional_logic": 0,
49
+ "wrapper": {
50
+ "width": "",
51
+ "class": "",
52
+ "id": ""
53
+ },
54
+ "default_value": "Button Text",
55
+ "placeholder": "Button Text",
56
+ "prepend": "",
57
+ "append": "",
58
+ "maxlength": ""
59
  },
60
  {
61
+ "key": "field_5cbdc0b8f082c",
62
+ "label": "Link",
63
+ "name": "acfb_multibutton_url",
64
+ "type": "url",
65
+ "instructions": "",
66
+ "required": 0,
67
+ "conditional_logic": 0,
68
+ "wrapper": {
69
+ "width": "",
70
+ "class": "",
71
+ "id": ""
72
+ },
73
+ "default_value": "#",
74
+ "placeholder": "#"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  },
76
  {
77
+ "key": "field_5cbdc0f7f082d",
78
+ "label": "Background Color",
79
+ "name": "acfb_multibutton_background_color",
80
+ "type": "color_picker",
81
+ "instructions": "",
82
+ "required": 0,
83
+ "conditional_logic": 0,
84
+ "wrapper": {
85
+ "width": "",
86
+ "class": "",
87
+ "id": ""
88
+ },
89
+ "default_value": "#f3f4f5"
 
90
  },
91
  {
92
+ "key": "field_5cbdc132f082e",
93
+ "label": "Text Color",
94
+ "name": "acfb_multibutton_text_color",
95
+ "type": "color_picker",
96
+ "instructions": "",
97
+ "required": 0,
98
+ "conditional_logic": 0,
99
+ "wrapper": {
100
+ "width": "",
101
+ "class": "",
102
+ "id": ""
103
+ },
104
+ "default_value": "#191e23"
105
+ },
106
+ {
107
+ "key": "field_5cbdc6f9d7da3",
108
+ "label": "Background Hover Color",
109
+ "name": "acfb_multibutton_background_hover_color",
110
+ "type": "color_picker",
111
+ "instructions": "",
112
+ "required": 0,
113
+ "conditional_logic": 0,
114
+ "wrapper": {
115
+ "width": "",
116
+ "class": "",
117
+ "id": ""
118
+ },
119
+ "default_value": "#f3f4f5"
120
+ },
121
+ {
122
+ "key": "field_5cbdc720d7da4",
123
+ "label": "Text Hover Color",
124
+ "name": "acfb_multibutton_text_hover_color",
125
+ "type": "color_picker",
126
+ "instructions": "",
127
+ "required": 0,
128
+ "conditional_logic": 0,
129
+ "wrapper": {
130
+ "width": "",
131
+ "class": "",
132
+ "id": ""
133
+ },
134
+ "default_value": "#191e23"
135
  }
136
+ ]
137
+ },
138
+ {
139
+ "key": "field_5cc84ee0f7cb9",
140
+ "label": "Design",
141
+ "name": "",
142
+ "type": "tab",
143
+ "instructions": "",
144
+ "required": 0,
145
+ "conditional_logic": 0,
146
+ "wrapper": {
147
+ "width": "",
148
+ "class": "",
149
+ "id": ""
150
+ },
151
+ "placement": "top",
152
+ "endpoint": 0
153
+ },
154
+ {
155
+ "key": "field_5cbdc740d7da5",
156
+ "label": "Text Size",
157
+ "name": "acfb_multibutton_text_size",
158
+ "type": "range",
159
+ "instructions": "",
160
+ "required": 0,
161
+ "conditional_logic": 0,
162
+ "wrapper": {
163
+ "width": "",
164
+ "class": "",
165
+ "id": ""
166
+ },
167
+ "default_value": 16,
168
+ "min": "",
169
+ "max": "",
170
+ "step": "",
171
+ "prepend": "",
172
+ "append": "px"
173
+ }
174
+ ],
175
+ "location": [
176
+ [
177
+ {
178
+ "param": "block",
179
+ "operator": "==",
180
+ "value": "acf/acfb-multibuttons"
181
+ }
182
+ ]
183
+ ],
184
+ "menu_order": 0,
185
+ "position": "normal",
186
+ "style": "default",
187
+ "label_placement": "top",
188
+ "instruction_placement": "label",
189
+ "hide_on_screen": "",
190
+ "active": 1,
191
+ "description": "",
192
+ "modified": 1558698477
193
+ }
acf-json/group_5cbdd1a0caf81.json CHANGED
@@ -1,574 +1,575 @@
1
  {
2
- "key": "group_5cbdd1a0caf81",
3
- "title": "Pricing Box",
4
- "fields": [
5
- {
6
- "key": "field_5cc840c7667b5",
7
- "label": "Content",
8
- "name": "",
9
- "type": "tab",
10
- "instructions": "",
11
- "required": 0,
12
- "conditional_logic": 0,
13
- "wrapper": {
14
- "width": "",
15
- "class": "",
16
- "id": ""
17
- },
18
- "placement": "top",
19
- "endpoint": 0
20
- },
21
- {
22
- "key": "field_5cbdd1cb5fd85",
23
- "label": "Image",
24
- "name": "acfb_pricingbox_image",
25
- "type": "image",
26
- "instructions": "",
27
- "required": 0,
28
- "conditional_logic": 0,
29
- "wrapper": {
30
- "width": "",
31
- "class": "",
32
- "id": ""
33
- },
34
- "return_format": "url",
35
- "preview_size": "medium_large",
36
- "library": "all",
37
- "min_width": "",
38
- "min_height": "",
39
- "min_size": "",
40
- "max_width": "",
41
- "max_height": "",
42
- "max_size": "",
43
- "mime_types": ""
44
- },
45
- {
46
- "key": "field_5cbdd3912af72",
47
- "label": "Image Alt",
48
- "name": "acfb_pricingbox_image_alt",
49
- "type": "text",
50
- "instructions": "",
51
- "required": 0,
52
- "conditional_logic": 0,
53
- "wrapper": {
54
- "width": "",
55
- "class": "",
56
- "id": ""
57
- },
58
- "default_value": "alt Text",
59
- "placeholder": "alt Text",
60
- "prepend": "",
61
- "append": "",
62
- "maxlength": ""
63
- },
64
- {
65
- "key": "field_5cbdd2115fd86",
66
- "label": "Title",
67
- "name": "acfb_pricingbox_title",
68
- "type": "text",
69
- "instructions": "",
70
- "required": 0,
71
- "conditional_logic": 0,
72
- "wrapper": {
73
- "width": "",
74
- "class": "",
75
- "id": ""
76
- },
77
- "default_value": "Title",
78
- "placeholder": "Title",
79
- "prepend": "",
80
- "append": "",
81
- "maxlength": ""
82
- },
83
- {
84
- "key": "field_5cbddc242af73",
85
- "label": "Price Prefix",
86
- "name": "acfb_pricingbox_price_prefix",
87
- "type": "text",
88
- "instructions": "",
89
- "required": 0,
90
- "conditional_logic": 0,
91
- "wrapper": {
92
- "width": "",
93
- "class": "",
94
- "id": ""
95
- },
96
- "default_value": "$",
97
- "placeholder": "$",
98
- "prepend": "",
99
- "append": "",
100
- "maxlength": ""
101
- },
102
- {
103
- "key": "field_5cbdd21c5fd87",
104
- "label": "Price",
105
- "name": "acfb_pricingbox_price",
106
- "type": "number",
107
- "instructions": "",
108
- "required": 0,
109
- "conditional_logic": 0,
110
- "wrapper": {
111
- "width": "",
112
- "class": "",
113
- "id": ""
114
- },
115
- "default_value": 99,
116
- "placeholder": ".99",
117
- "prepend": "",
118
- "append": "",
119
- "min": "",
120
- "max": "",
121
- "step": ""
122
- },
123
- {
124
- "key": "field_5cbddc552af74",
125
- "label": "Price Suffix",
126
- "name": "acfb_pricingbox_price_suffix",
127
- "type": "text",
128
- "instructions": "",
129
- "required": 0,
130
- "conditional_logic": 0,
131
- "wrapper": {
132
- "width": "",
133
- "class": "",
134
- "id": ""
135
- },
136
- "default_value": ".99",
137
- "placeholder": ".99",
138
- "prepend": "",
139
- "append": "",
140
- "maxlength": ""
141
- },
142
- {
143
- "key": "field_5cbee0f352a41",
144
- "label": "Sub Text",
145
- "name": "acfb_pricingbox_sub_text",
146
- "type": "text",
147
- "instructions": "",
148
- "required": 0,
149
- "conditional_logic": 0,
150
- "wrapper": {
151
- "width": "",
152
- "class": "",
153
- "id": ""
154
- },
155
- "default_value": "Sub Text Here",
156
- "placeholder": "Sub Text Here",
157
- "prepend": "",
158
- "append": "",
159
- "maxlength": ""
160
- },
161
- {
162
- "key": "field_5cbdd2275fd88",
163
- "label": "Button Text",
164
- "name": "acfb_pricingbox_button_text",
165
- "type": "text",
166
- "instructions": "",
167
- "required": 0,
168
- "conditional_logic": 0,
169
- "wrapper": {
170
- "width": "",
171
- "class": "",
172
- "id": ""
173
- },
174
- "default_value": "Get Now",
175
- "placeholder": "Get Now",
176
- "prepend": "",
177
- "append": "",
178
- "maxlength": ""
179
- },
180
- {
181
- "key": "field_5cbdd2445fd89",
182
- "label": "Button Url",
183
- "name": "acfb_pricingbox_button_url",
184
- "type": "link",
185
- "instructions": "",
186
- "required": 0,
187
- "conditional_logic": 0,
188
- "wrapper": {
189
- "width": "",
190
- "class": "",
191
- "id": ""
192
- },
193
- "return_format": "url"
194
- },
195
- {
196
- "key": "field_5cbdd25b5fd8a",
197
- "label": "Description",
198
- "name": "acfb_pricingbox_description",
199
- "type": "textarea",
200
- "instructions": "",
201
- "required": 0,
202
- "conditional_logic": 0,
203
- "wrapper": {
204
- "width": "",
205
- "class": "",
206
- "id": ""
207
- },
208
- "default_value": "Description goes here...",
209
- "placeholder": "Description goes here...",
210
- "maxlength": "",
211
- "rows": "",
212
- "new_lines": ""
213
- },
214
- {
215
- "key": "field_5cc840de667b6",
216
- "label": "Design",
217
- "name": "",
218
- "type": "tab",
219
- "instructions": "",
220
- "required": 0,
221
- "conditional_logic": 0,
222
- "wrapper": {
223
- "width": "",
224
- "class": "",
225
- "id": ""
226
- },
227
- "placement": "top",
228
- "endpoint": 0
229
- },
230
- {
231
- "key": "field_5cbedec77e229",
232
- "label": "Background Color",
233
- "name": "acfb_pricingbox_background_color",
234
- "type": "color_picker",
235
- "instructions": "",
236
- "required": 0,
237
- "conditional_logic": 0,
238
- "wrapper": {
239
- "width": "",
240
- "class": "",
241
- "id": ""
242
- },
243
- "default_value": "#f3f4f5"
244
- },
245
- {
246
- "key": "field_5cbedef97e22a",
247
- "label": "Image Size",
248
- "name": "acfb_pricingbox_image_size",
249
- "type": "range",
250
- "instructions": "",
251
- "required": 0,
252
- "conditional_logic": 0,
253
- "wrapper": {
254
- "width": "",
255
- "class": "",
256
- "id": ""
257
- },
258
- "default_value": 30,
259
- "min": "",
260
- "max": "",
261
- "step": "",
262
- "prepend": "",
263
- "append": "%"
264
- },
265
- {
266
- "key": "field_5cbedf427e22b",
267
- "label": "Title Color",
268
- "name": "acfb_pricingbox_title_color",
269
- "type": "color_picker",
270
- "instructions": "",
271
- "required": 0,
272
- "conditional_logic": 0,
273
- "wrapper": {
274
- "width": "",
275
- "class": "",
276
- "id": ""
277
- },
278
- "default_value": "#191e23"
279
- },
280
- {
281
- "key": "field_5cbedf607e22c",
282
- "label": "Title Size",
283
- "name": "acfb_pricingbox_title_size",
284
- "type": "range",
285
- "instructions": "",
286
- "required": 0,
287
- "conditional_logic": 0,
288
- "wrapper": {
289
- "width": "",
290
- "class": "",
291
- "id": ""
292
- },
293
- "default_value": 32,
294
- "min": "",
295
- "max": 200,
296
- "step": "",
297
- "prepend": "",
298
- "append": "px"
299
- },
300
- {
301
- "key": "field_5cbedf8d7e22d",
302
- "label": "Prefix Color",
303
- "name": "acfb_pricingbox_prefix_color",
304
- "type": "color_picker",
305
- "instructions": "",
306
- "required": 0,
307
- "conditional_logic": 0,
308
- "wrapper": {
309
- "width": "",
310
- "class": "",
311
- "id": ""
312
- },
313
- "default_value": "#191e23"
314
- },
315
- {
316
- "key": "field_5cbedfc07e22e",
317
- "label": "Prefix Size",
318
- "name": "acfb_pricingbox_prefix_size",
319
- "type": "range",
320
- "instructions": "",
321
- "required": 0,
322
- "conditional_logic": 0,
323
- "wrapper": {
324
- "width": "",
325
- "class": "",
326
- "id": ""
327
- },
328
- "default_value": 22,
329
- "min": "",
330
- "max": "",
331
- "step": "",
332
- "prepend": "",
333
- "append": "px"
334
- },
335
- {
336
- "key": "field_5cbee0017e22f",
337
- "label": "Price Color",
338
- "name": "acfb_pricingbox_price_color",
339
- "type": "color_picker",
340
- "instructions": "",
341
- "required": 0,
342
- "conditional_logic": 0,
343
- "wrapper": {
344
- "width": "",
345
- "class": "",
346
- "id": ""
347
- },
348
- "default_value": "#191e23"
349
- },
350
- {
351
- "key": "field_5cbee0227e230",
352
- "label": "Price Size",
353
- "name": "acfb_pricingbox_price_size",
354
- "type": "range",
355
- "instructions": "",
356
- "required": 0,
357
- "conditional_logic": 0,
358
- "wrapper": {
359
- "width": "",
360
- "class": "",
361
- "id": ""
362
- },
363
- "default_value": 65,
364
- "min": "",
365
- "max": 200,
366
- "step": "",
367
- "prepend": "",
368
- "append": "px"
369
- },
370
- {
371
- "key": "field_5cbee05a7e231",
372
- "label": "Suffix Color",
373
- "name": "acfb_pricingbox_suffix_color",
374
- "type": "color_picker",
375
- "instructions": "",
376
- "required": 0,
377
- "conditional_logic": 0,
378
- "wrapper": {
379
- "width": "",
380
- "class": "",
381
- "id": ""
382
- },
383
- "default_value": "#191e23"
384
- },
385
- {
386
- "key": "field_5cbee06f7e232",
387
- "label": "Suffix Size",
388
- "name": "acfb_pricingbox_suffix_size",
389
- "type": "range",
390
- "instructions": "",
391
- "required": 0,
392
- "conditional_logic": 0,
393
- "wrapper": {
394
- "width": "",
395
- "class": "",
396
- "id": ""
397
- },
398
- "default_value": 28,
399
- "min": "",
400
- "max": "",
401
- "step": "",
402
- "prepend": "",
403
- "append": "px"
404
- },
405
- {
406
- "key": "field_5cbee14952a42",
407
- "label": "Sub Text Color",
408
- "name": "acfb_pricingbox_subtext_color",
409
- "type": "color_picker",
410
- "instructions": "",
411
- "required": 0,
412
- "conditional_logic": 0,
413
- "wrapper": {
414
- "width": "",
415
- "class": "",
416
- "id": ""
417
- },
418
- "default_value": "rgba(25, 30, 35, 0.3)"
419
- },
420
- {
421
- "key": "field_5cbee16d52a43",
422
- "label": "Sub Text Size",
423
- "name": "acfb_pricingbox_subtext_size",
424
- "type": "range",
425
- "instructions": "",
426
- "required": 0,
427
- "conditional_logic": 0,
428
- "wrapper": {
429
- "width": "",
430
- "class": "",
431
- "id": ""
432
- },
433
- "default_value": 14,
434
- "min": "",
435
- "max": "",
436
- "step": "",
437
- "prepend": "",
438
- "append": "px"
439
- },
440
- {
441
- "key": "field_5cbee1a752a44",
442
- "label": "Button Background Color",
443
- "name": "acfb_pricingbox_button_background_color",
444
- "type": "color_picker",
445
- "instructions": "",
446
- "required": 0,
447
- "conditional_logic": 0,
448
- "wrapper": {
449
- "width": "",
450
- "class": "",
451
- "id": ""
452
- },
453
- "default_value": "#e0e0e0"
454
- },
455
- {
456
- "key": "field_5cbee26552a47",
457
- "label": "Button Text Color",
458
- "name": "acfb_pricingbox_button_text_color",
459
- "type": "color_picker",
460
- "instructions": "",
461
- "required": 0,
462
- "conditional_logic": 0,
463
- "wrapper": {
464
- "width": "",
465
- "class": "",
466
- "id": ""
467
- },
468
- "default_value": "#191e23"
469
- },
470
- {
471
- "key": "field_5cbee2bb52a49",
472
- "label": "Button Background Hover Color",
473
- "name": "acfb_pricingbox_button_background_hover_color",
474
- "type": "color_picker",
475
- "instructions": "",
476
- "required": 0,
477
- "conditional_logic": 0,
478
- "wrapper": {
479
- "width": "",
480
- "class": "",
481
- "id": ""
482
- },
483
- "default_value": "#e0e0e0"
484
- },
485
- {
486
- "key": "field_5cbee28e52a48",
487
- "label": "Button Text Hover Color",
488
- "name": "acfb_pricingbox_button_text_hover_color",
489
- "type": "color_picker",
490
- "instructions": "",
491
- "required": 0,
492
- "conditional_logic": 0,
493
- "wrapper": {
494
- "width": "",
495
- "class": "",
496
- "id": ""
497
- },
498
- "default_value": "#191e23"
499
- },
500
- {
501
- "key": "field_5cbee1e452a45",
502
- "label": "Button Size",
503
- "name": "acfb_pricingbox_button_size",
504
- "type": "range",
505
- "instructions": "",
506
- "required": 0,
507
- "conditional_logic": 0,
508
- "wrapper": {
509
- "width": "",
510
- "class": "",
511
- "id": ""
512
- },
513
- "default_value": 19,
514
- "min": "",
515
- "max": "",
516
- "step": "",
517
- "prepend": "",
518
- "append": "px"
519
- },
520
- {
521
- "key": "field_5cbee2f852a4a",
522
- "label": "Description Color",
523
- "name": "acfb_pricingbox_description_color",
524
- "type": "color_picker",
525
- "instructions": "",
526
- "required": 0,
527
- "conditional_logic": 0,
528
- "wrapper": {
529
- "width": "",
530
- "class": "",
531
- "id": ""
532
- },
533
- "default_value": "#191e23"
534
- },
535
- {
536
- "key": "field_5cbee31552a4b",
537
- "label": "Description Size",
538
- "name": "acfb_pricingbox_description_size",
539
- "type": "range",
540
- "instructions": "",
541
- "required": 0,
542
- "conditional_logic": 0,
543
- "wrapper": {
544
- "width": "",
545
- "class": "",
546
- "id": ""
547
- },
548
- "default_value": 18,
549
- "min": "",
550
- "max": "",
551
- "step": "",
552
- "prepend": "",
553
- "append": "px"
554
- }
555
- ],
556
- "location": [
557
- [
558
- {
559
- "param": "block",
560
- "operator": "==",
561
- "value": "acf\/acfb-pricingbox"
562
- }
563
- ]
564
- ],
565
- "menu_order": 0,
566
- "position": "normal",
567
- "style": "default",
568
- "label_placement": "top",
569
- "instruction_placement": "label",
570
- "hide_on_screen": "",
571
- "active": 1,
572
- "description": "",
573
- "modified": 1557732909
574
- }
 
1
  {
2
+ "key": "group_5cbdd1a0caf81",
3
+ "title": "Pricing Box",
4
+ "private": true,
5
+ "fields": [
6
+ {
7
+ "key": "field_5cc840c7667b5",
8
+ "label": "Content",
9
+ "name": "",
10
+ "type": "tab",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "placement": "top",
20
+ "endpoint": 0
21
+ },
22
+ {
23
+ "key": "field_5cbdd1cb5fd85",
24
+ "label": "Image",
25
+ "name": "acfb_pricingbox_image",
26
+ "type": "image",
27
+ "instructions": "",
28
+ "required": 0,
29
+ "conditional_logic": 0,
30
+ "wrapper": {
31
+ "width": "",
32
+ "class": "",
33
+ "id": ""
34
+ },
35
+ "return_format": "url",
36
+ "preview_size": "medium_large",
37
+ "library": "all",
38
+ "min_width": "",
39
+ "min_height": "",
40
+ "min_size": "",
41
+ "max_width": "",
42
+ "max_height": "",
43
+ "max_size": "",
44
+ "mime_types": ""
45
+ },
46
+ {
47
+ "key": "field_5cbdd3912af72",
48
+ "label": "Image Alt",
49
+ "name": "acfb_pricingbox_image_alt",
50
+ "type": "text",
51
+ "instructions": "",
52
+ "required": 0,
53
+ "conditional_logic": 0,
54
+ "wrapper": {
55
+ "width": "",
56
+ "class": "",
57
+ "id": ""
58
+ },
59
+ "default_value": "alt Text",
60
+ "placeholder": "alt Text",
61
+ "prepend": "",
62
+ "append": "",
63
+ "maxlength": ""
64
+ },
65
+ {
66
+ "key": "field_5cbdd2115fd86",
67
+ "label": "Title",
68
+ "name": "acfb_pricingbox_title",
69
+ "type": "text",
70
+ "instructions": "",
71
+ "required": 0,
72
+ "conditional_logic": 0,
73
+ "wrapper": {
74
+ "width": "",
75
+ "class": "",
76
+ "id": ""
77
+ },
78
+ "default_value": "Title",
79
+ "placeholder": "Title",
80
+ "prepend": "",
81
+ "append": "",
82
+ "maxlength": ""
83
+ },
84
+ {
85
+ "key": "field_5cbddc242af73",
86
+ "label": "Price Prefix",
87
+ "name": "acfb_pricingbox_price_prefix",
88
+ "type": "text",
89
+ "instructions": "",
90
+ "required": 0,
91
+ "conditional_logic": 0,
92
+ "wrapper": {
93
+ "width": "",
94
+ "class": "",
95
+ "id": ""
96
+ },
97
+ "default_value": "$",
98
+ "placeholder": "$",
99
+ "prepend": "",
100
+ "append": "",
101
+ "maxlength": ""
102
+ },
103
+ {
104
+ "key": "field_5cbdd21c5fd87",
105
+ "label": "Price",
106
+ "name": "acfb_pricingbox_price",
107
+ "type": "number",
108
+ "instructions": "",
109
+ "required": 0,
110
+ "conditional_logic": 0,
111
+ "wrapper": {
112
+ "width": "",
113
+ "class": "",
114
+ "id": ""
115
+ },
116
+ "default_value": 99,
117
+ "placeholder": ".99",
118
+ "prepend": "",
119
+ "append": "",
120
+ "min": "",
121
+ "max": "",
122
+ "step": ""
123
+ },
124
+ {
125
+ "key": "field_5cbddc552af74",
126
+ "label": "Price Suffix",
127
+ "name": "acfb_pricingbox_price_suffix",
128
+ "type": "text",
129
+ "instructions": "",
130
+ "required": 0,
131
+ "conditional_logic": 0,
132
+ "wrapper": {
133
+ "width": "",
134
+ "class": "",
135
+ "id": ""
136
+ },
137
+ "default_value": ".99",
138
+ "placeholder": ".99",
139
+ "prepend": "",
140
+ "append": "",
141
+ "maxlength": ""
142
+ },
143
+ {
144
+ "key": "field_5cbee0f352a41",
145
+ "label": "Sub Text",
146
+ "name": "acfb_pricingbox_sub_text",
147
+ "type": "text",
148
+ "instructions": "",
149
+ "required": 0,
150
+ "conditional_logic": 0,
151
+ "wrapper": {
152
+ "width": "",
153
+ "class": "",
154
+ "id": ""
155
+ },
156
+ "default_value": "Sub Text Here",
157
+ "placeholder": "Sub Text Here",
158
+ "prepend": "",
159
+ "append": "",
160
+ "maxlength": ""
161
+ },
162
+ {
163
+ "key": "field_5cbdd2275fd88",
164
+ "label": "Button Text",
165
+ "name": "acfb_pricingbox_button_text",
166
+ "type": "text",
167
+ "instructions": "",
168
+ "required": 0,
169
+ "conditional_logic": 0,
170
+ "wrapper": {
171
+ "width": "",
172
+ "class": "",
173
+ "id": ""
174
+ },
175
+ "default_value": "Get Now",
176
+ "placeholder": "Get Now",
177
+ "prepend": "",
178
+ "append": "",
179
+ "maxlength": ""
180
+ },
181
+ {
182
+ "key": "field_5cbdd2445fd89",
183
+ "label": "Button Url",
184
+ "name": "acfb_pricingbox_button_url",
185
+ "type": "link",
186
+ "instructions": "",
187
+ "required": 0,
188
+ "conditional_logic": 0,
189
+ "wrapper": {
190
+ "width": "",
191
+ "class": "",
192
+ "id": ""
193
+ },
194
+ "return_format": "url"
195
+ },
196
+ {
197
+ "key": "field_5cbdd25b5fd8a",
198
+ "label": "Description",
199
+ "name": "acfb_pricingbox_description",
200
+ "type": "textarea",
201
+ "instructions": "",
202
+ "required": 0,
203
+ "conditional_logic": 0,
204
+ "wrapper": {
205
+ "width": "",
206
+ "class": "",
207
+ "id": ""
208
+ },
209
+ "default_value": "Description goes here...",
210
+ "placeholder": "Description goes here...",
211
+ "maxlength": "",
212
+ "rows": "",
213
+ "new_lines": ""
214
+ },
215
+ {
216
+ "key": "field_5cc840de667b6",
217
+ "label": "Design",
218
+ "name": "",
219
+ "type": "tab",
220
+ "instructions": "",
221
+ "required": 0,
222
+ "conditional_logic": 0,
223
+ "wrapper": {
224
+ "width": "",
225
+ "class": "",
226
+ "id": ""
227
+ },
228
+ "placement": "top",
229
+ "endpoint": 0
230
+ },
231
+ {
232
+ "key": "field_5cbedec77e229",
233
+ "label": "Background Color",
234
+ "name": "acfb_pricingbox_background_color",
235
+ "type": "color_picker",
236
+ "instructions": "",
237
+ "required": 0,
238
+ "conditional_logic": 0,
239
+ "wrapper": {
240
+ "width": "",
241
+ "class": "",
242
+ "id": ""
243
+ },
244
+ "default_value": "#f3f4f5"
245
+ },
246
+ {
247
+ "key": "field_5cbedef97e22a",
248
+ "label": "Image Size",
249
+ "name": "acfb_pricingbox_image_size",
250
+ "type": "range",
251
+ "instructions": "",
252
+ "required": 0,
253
+ "conditional_logic": 0,
254
+ "wrapper": {
255
+ "width": "",
256
+ "class": "",
257
+ "id": ""
258
+ },
259
+ "default_value": 30,
260
+ "min": "",
261
+ "max": "",
262
+ "step": "",
263
+ "prepend": "",
264
+ "append": "%"
265
+ },
266
+ {
267
+ "key": "field_5cbedf427e22b",
268
+ "label": "Title Color",
269
+ "name": "acfb_pricingbox_title_color",
270
+ "type": "color_picker",
271
+ "instructions": "",
272
+ "required": 0,
273
+ "conditional_logic": 0,
274
+ "wrapper": {
275
+ "width": "",
276
+ "class": "",
277
+ "id": ""
278
+ },
279
+ "default_value": "#191e23"
280
+ },
281
+ {
282
+ "key": "field_5cbedf607e22c",
283
+ "label": "Title Size",
284
+ "name": "acfb_pricingbox_title_size",
285
+ "type": "range",
286
+ "instructions": "",
287
+ "required": 0,
288
+ "conditional_logic": 0,
289
+ "wrapper": {
290
+ "width": "",
291
+ "class": "",
292
+ "id": ""
293
+ },
294
+ "default_value": 32,
295
+ "min": "",
296
+ "max": 200,
297
+ "step": "",
298
+ "prepend": "",
299
+ "append": "px"
300
+ },
301
+ {
302
+ "key": "field_5cbedf8d7e22d",
303
+ "label": "Prefix Color",
304
+ "name": "acfb_pricingbox_prefix_color",
305
+ "type": "color_picker",
306
+ "instructions": "",
307
+ "required": 0,
308
+ "conditional_logic": 0,
309
+ "wrapper": {
310
+ "width": "",
311
+ "class": "",
312
+ "id": ""
313
+ },
314
+ "default_value": "#191e23"
315
+ },
316
+ {
317
+ "key": "field_5cbedfc07e22e",
318
+ "label": "Prefix Size",
319
+ "name": "acfb_pricingbox_prefix_size",
320
+ "type": "range",
321
+ "instructions": "",
322
+ "required": 0,
323
+ "conditional_logic": 0,
324
+ "wrapper": {
325
+ "width": "",
326
+ "class": "",
327
+ "id": ""
328
+ },
329
+ "default_value": 22,
330
+ "min": "",
331
+ "max": "",
332
+ "step": "",
333
+ "prepend": "",
334
+ "append": "px"
335
+ },
336
+ {
337
+ "key": "field_5cbee0017e22f",
338
+ "label": "Price Color",
339
+ "name": "acfb_pricingbox_price_color",
340
+ "type": "color_picker",
341
+ "instructions": "",
342
+ "required": 0,
343
+ "conditional_logic": 0,
344
+ "wrapper": {
345
+ "width": "",
346
+ "class": "",
347
+ "id": ""
348
+ },
349
+ "default_value": "#191e23"
350
+ },
351
+ {
352
+ "key": "field_5cbee0227e230",
353
+ "label": "Price Size",
354
+ "name": "acfb_pricingbox_price_size",
355
+ "type": "range",
356
+ "instructions": "",
357
+ "required": 0,
358
+ "conditional_logic": 0,
359
+ "wrapper": {
360
+ "width": "",
361
+ "class": "",
362
+ "id": ""
363
+ },
364
+ "default_value": 65,
365
+ "min": "",
366
+ "max": 200,
367
+ "step": "",
368
+ "prepend": "",
369
+ "append": "px"
370
+ },
371
+ {
372
+ "key": "field_5cbee05a7e231",
373
+ "label": "Suffix Color",
374
+ "name": "acfb_pricingbox_suffix_color",
375
+ "type": "color_picker",
376
+ "instructions": "",
377
+ "required": 0,
378
+ "conditional_logic": 0,
379
+ "wrapper": {
380
+ "width": "",
381
+ "class": "",
382
+ "id": ""
383
+ },
384
+ "default_value": "#191e23"
385
+ },
386
+ {
387
+ "key": "field_5cbee06f7e232",
388
+ "label": "Suffix Size",
389
+ "name": "acfb_pricingbox_suffix_size",
390
+ "type": "range",
391
+ "instructions": "",
392
+ "required": 0,
393
+ "conditional_logic": 0,
394
+ "wrapper": {
395
+ "width": "",
396
+ "class": "",
397
+ "id": ""
398
+ },
399
+ "default_value": 28,
400
+ "min": "",
401
+ "max": "",
402
+ "step": "",
403
+ "prepend": "",
404
+ "append": "px"
405
+ },
406
+ {
407
+ "key": "field_5cbee14952a42",
408
+ "label": "Sub Text Color",
409
+ "name": "acfb_pricingbox_subtext_color",
410
+ "type": "color_picker",
411
+ "instructions": "",
412
+ "required": 0,
413
+ "conditional_logic": 0,
414
+ "wrapper": {
415
+ "width": "",
416
+ "class": "",
417
+ "id": ""
418
+ },
419
+ "default_value": "rgba(25, 30, 35, 0.3)"
420
+ },
421
+ {
422
+ "key": "field_5cbee16d52a43",
423
+ "label": "Sub Text Size",
424
+ "name": "acfb_pricingbox_subtext_size",
425
+ "type": "range",
426
+ "instructions": "",
427
+ "required": 0,
428
+ "conditional_logic": 0,
429
+ "wrapper": {
430
+ "width": "",
431
+ "class": "",
432
+ "id": ""
433
+ },
434
+ "default_value": 14,
435
+ "min": "",
436
+ "max": "",
437
+ "step": "",
438
+ "prepend": "",
439
+ "append": "px"
440
+ },
441
+ {
442
+ "key": "field_5cbee1a752a44",
443
+ "label": "Button Background Color",
444
+ "name": "acfb_pricingbox_button_background_color",
445
+ "type": "color_picker",
446
+ "instructions": "",
447
+ "required": 0,
448
+ "conditional_logic": 0,
449
+ "wrapper": {
450
+ "width": "",
451
+ "class": "",
452
+ "id": ""
453
+ },
454
+ "default_value": "#e0e0e0"
455
+ },
456
+ {
457
+ "key": "field_5cbee26552a47",
458
+ "label": "Button Text Color",
459
+ "name": "acfb_pricingbox_button_text_color",
460
+ "type": "color_picker",
461
+ "instructions": "",
462
+ "required": 0,
463
+ "conditional_logic": 0,
464
+ "wrapper": {
465
+ "width": "",
466
+ "class": "",
467
+ "id": ""
468
+ },
469
+ "default_value": "#191e23"
470
+ },
471
+ {
472
+ "key": "field_5cbee2bb52a49",
473
+ "label": "Button Background Hover Color",
474
+ "name": "acfb_pricingbox_button_background_hover_color",
475
+ "type": "color_picker",
476
+ "instructions": "",
477
+ "required": 0,
478
+ "conditional_logic": 0,
479
+ "wrapper": {
480
+ "width": "",
481
+ "class": "",
482
+ "id": ""
483
+ },
484
+ "default_value": "#e0e0e0"
485
+ },
486
+ {
487
+ "key": "field_5cbee28e52a48",
488
+ "label": "Button Text Hover Color",
489
+ "name": "acfb_pricingbox_button_text_hover_color",
490
+ "type": "color_picker",
491
+ "instructions": "",
492
+ "required": 0,
493
+ "conditional_logic": 0,
494
+ "wrapper": {
495
+ "width": "",
496
+ "class": "",
497
+ "id": ""
498
+ },
499
+ "default_value": "#191e23"
500
+ },
501
+ {
502
+ "key": "field_5cbee1e452a45",
503
+ "label": "Button Size",
504
+ "name": "acfb_pricingbox_button_size",
505
+ "type": "range",
506
+ "instructions": "",
507
+ "required": 0,
508
+ "conditional_logic": 0,
509
+ "wrapper": {
510
+ "width": "",
511
+ "class": "",
512
+ "id": ""
513
+ },
514
+ "default_value": 19,
515
+ "min": "",
516
+ "max": "",
517
+ "step": "",
518
+ "prepend": "",
519
+ "append": "px"
520
+ },
521
+ {
522
+ "key": "field_5cbee2f852a4a",
523
+ "label": "Description Color",
524
+ "name": "acfb_pricingbox_description_color",
525
+ "type": "color_picker",
526
+ "instructions": "",
527
+ "required": 0,
528
+ "conditional_logic": 0,
529
+ "wrapper": {
530
+ "width": "",
531
+ "class": "",
532
+ "id": ""
533
+ },
534
+ "default_value": "#191e23"
535
+ },
536
+ {
537
+ "key": "field_5cbee31552a4b",
538
+ "label": "Description Size",
539
+ "name": "acfb_pricingbox_description_size",
540
+ "type": "range",
541
+ "instructions": "",
542
+ "required": 0,
543
+ "conditional_logic": 0,
544
+ "wrapper": {
545
+ "width": "",
546
+ "class": "",
547
+ "id": ""
548
+ },
549
+ "default_value": 18,
550
+ "min": "",
551
+ "max": "",
552
+ "step": "",
553
+ "prepend": "",
554
+ "append": "px"
555
+ }
556
+ ],
557
+ "location": [
558
+ [
559
+ {
560
+ "param": "block",
561
+ "operator": "==",
562
+ "value": "acf/acfb-pricingbox"
563
+ }
564
+ ]
565
+ ],
566
+ "menu_order": 0,
567
+ "position": "normal",
568
+ "style": "default",
569
+ "label_placement": "top",
570
+ "instruction_placement": "label",
571
+ "hide_on_screen": "",
572
+ "active": 1,
573
+ "description": "",
574
+ "modified": 1558698503
575
+ }
acf-json/group_5cbef16c004be.json CHANGED
@@ -1,294 +1,295 @@
1
  {
2
- "key": "group_5cbef16c004be",
3
- "title": "Photo Collage",
4
- "fields": [
5
- {
6
- "key": "field_5cda7f02e757b",
7
- "label": "Content",
8
- "name": "",
9
- "type": "tab",
10
- "instructions": "",
11
- "required": 0,
12
- "conditional_logic": 0,
13
- "wrapper": {
14
- "width": "",
15
- "class": "",
16
- "id": ""
17
- },
18
- "placement": "top",
19
- "endpoint": 0
20
- },
21
- {
22
- "key": "field_5cd9575b1dc17",
23
- "label": "Select Grid",
24
- "name": "select_grid",
25
- "type": "button_group",
26
- "instructions": "",
27
- "required": 0,
28
- "conditional_logic": 0,
29
- "wrapper": {
30
- "width": "",
31
- "class": "",
32
- "id": ""
33
- },
34
- "choices": {
35
- "2": "2",
36
- "3": "3",
37
- "4": "4"
38
- },
39
- "allow_null": 0,
40
- "default_value": 2,
41
- "layout": "horizontal",
42
- "return_format": "value"
43
- },
44
- {
45
- "key": "field_5cda7f5de757d",
46
- "label": "2 Grid Layouts",
47
- "name": "2_grid_layouts",
48
- "type": "radio",
49
- "instructions": "",
50
- "required": 0,
51
- "conditional_logic": [
52
- [
53
- {
54
- "field": "field_5cd9575b1dc17",
55
- "operator": "==",
56
- "value": "2"
57
- }
58
- ]
59
- ],
60
- "wrapper": {
61
- "width": "",
62
- "class": "acfb_radio_image",
63
- "id": ""
64
- },
65
- "choices": {
66
- "one": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gtwo-one.png\" \/>",
67
- "two": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gtwo-two.png\" \/>"
68
- },
69
- "allow_null": 0,
70
- "other_choice": 0,
71
- "default_value": "one",
72
- "layout": "vertical",
73
- "return_format": "value",
74
- "save_other_choice": 0
75
- },
76
- {
77
- "key": "field_5cdaa7c03c512",
78
- "label": "3 Grid Layouts",
79
- "name": "3_grid_layouts",
80
- "type": "radio",
81
- "instructions": "",
82
- "required": 0,
83
- "conditional_logic": [
84
- [
85
- {
86
- "field": "field_5cd9575b1dc17",
87
- "operator": "==",
88
- "value": "3"
89
- }
90
- ]
91
- ],
92
- "wrapper": {
93
- "width": "",
94
- "class": "acfb_radio_image",
95
- "id": ""
96
- },
97
- "choices": {
98
- "one": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gthree-one.png\" \/>",
99
- "two": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gthree-two.png\" \/>",
100
- "three": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gthree-three.png\" \/>",
101
- "four": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gthree-four.png\" \/>",
102
- "five": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gthree-five.png\" \/>",
103
- "six": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gthree-six.png\" \/>"
104
- },
105
- "allow_null": 0,
106
- "other_choice": 0,
107
- "default_value": "one",
108
- "layout": "vertical",
109
- "return_format": "value",
110
- "save_other_choice": 0
111
- },
112
- {
113
- "key": "field_5cdaa9ebd0c00",
114
- "label": "4 Grid Layouts",
115
- "name": "4_grid_layouts",
116
- "type": "radio",
117
- "instructions": "",
118
- "required": 0,
119
- "conditional_logic": [
120
- [
121
- {
122
- "field": "field_5cd9575b1dc17",
123
- "operator": "==",
124
- "value": "4"
125
- }
126
- ]
127
- ],
128
- "wrapper": {
129
- "width": "",
130
- "class": "acfb_radio_image",
131
- "id": ""
132
- },
133
- "choices": {
134
- "one": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-one.png\" \/>",
135
- "two": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-two.png\" \/>",
136
- "three": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-three.png\" \/>",
137
- "four": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-four.png\" \/>",
138
- "five": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-five.png\" \/>",
139
- "six": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-six.png\" \/>",
140
- "seven": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-seven.png\" \/>",
141
- "eight": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-eight.png\" \/>",
142
- "nine": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-nine.png\" \/>",
143
- "ten": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-ten.png\" \/>",
144
- "eleven": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-eleven.png\" \/>",
145
- "twelve": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-twelve.png\" \/>",
146
- "thirteen": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-thirteen.png\" \/>",
147
- "fourteen": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-fourteen.png\" \/>",
148
- "fifteen": "<img src=\"http:\/\/localhost\/acf\/wp-content\/plugins\/acfblocks-master\/img\/gfour-fifteen.png\" \/>"
149
- },
150
- "allow_null": 0,
151
- "other_choice": 0,
152
- "default_value": "one",
153
- "layout": "vertical",
154
- "return_format": "value",
155
- "save_other_choice": 0
156
- },
157
- {
158
- "key": "field_5cbf04c294875",
159
- "label": "Images",
160
- "name": "acfb_photo_collage_images",
161
- "type": "gallery",
162
- "instructions": "",
163
- "required": 0,
164
- "conditional_logic": 0,
165
- "wrapper": {
166
- "width": "",
167
- "class": "",
168
- "id": ""
169
- },
170
- "min": 2,
171
- "max": 4,
172
- "insert": "append",
173
- "library": "all",
174
- "min_width": "",
175
- "min_height": "",
176
- "min_size": "",
177
- "max_width": "",
178
- "max_height": "",
179
- "max_size": "",
180
- "mime_types": ""
181
- },
182
- {
183
- "key": "field_5cc85dee4e368",
184
- "label": "Width",
185
- "name": "acfb_photo_collage_layout_width",
186
- "type": "range",
187
- "instructions": "",
188
- "required": 0,
189
- "conditional_logic": 0,
190
- "wrapper": {
191
- "width": "",
192
- "class": "",
193
- "id": ""
194
- },
195
- "default_value": 100,
196
- "min": "",
197
- "max": "",
198
- "step": "",
199
- "prepend": "",
200
- "append": "%"
201
- },
202
- {
203
- "key": "field_5cda77ca5ecee",
204
- "label": "Height",
205
- "name": "acfb_photo_collage_layout_height",
206
- "type": "range",
207
- "instructions": "",
208
- "required": 0,
209
- "conditional_logic": 0,
210
- "wrapper": {
211
- "width": "",
212
- "class": "",
213
- "id": ""
214
- },
215
- "default_value": 500,
216
- "min": "",
217
- "max": 1000,
218
- "step": "",
219
- "prepend": "",
220
- "append": "px"
221
- },
222
- {
223
- "key": "field_5cc85e1b4e369",
224
- "label": "Gutter Space",
225
- "name": "acfb_photo_collage_layout_gutter_space",
226
- "type": "range",
227
- "instructions": "",
228
- "required": 0,
229
- "conditional_logic": 0,
230
- "wrapper": {
231
- "width": "",
232
- "class": "",
233
- "id": ""
234
- },
235
- "default_value": 10,
236
- "min": "",
237
- "max": "",
238
- "step": "",
239
- "prepend": "",
240
- "append": "px"
241
- },
242
- {
243
- "key": "field_5cda7f2de757c",
244
- "label": "Design",
245
- "name": "",
246
- "type": "tab",
247
- "instructions": "",
248
- "required": 0,
249
- "conditional_logic": 0,
250
- "wrapper": {
251
- "width": "",
252
- "class": "",
253
- "id": ""
254
- },
255
- "placement": "top",
256
- "endpoint": 0
257
- },
258
- {
259
- "key": "field_5cdfc746754f7",
260
- "label": "No options available here yet.",
261
- "name": "",
262
- "type": "message",
263
- "instructions": "",
264
- "required": 0,
265
- "conditional_logic": 0,
266
- "wrapper": {
267
- "width": "",
268
- "class": "",
269
- "id": ""
270
- },
271
- "message": "",
272
- "new_lines": "wpautop",
273
- "esc_html": 0
274
- }
275
- ],
276
- "location": [
277
  [
278
- {
279
- "param": "block",
280
- "operator": "==",
281
- "value": "acf\/acfb-photocollage"
282
- }
283
  ]
284
- ],
285
- "menu_order": 0,
286
- "position": "normal",
287
- "style": "default",
288
- "label_placement": "top",
289
- "instruction_placement": "label",
290
- "hide_on_screen": "",
291
- "active": 1,
292
- "description": "",
293
- "modified": 1558169540
294
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ "key": "group_5cbef16c004be",
3
+ "title": "Photo Collage",
4
+ "private": true,
5
+ "fields": [
6
+ {
7
+ "key": "field_5cda7f02e757b",
8
+ "label": "Content",
9
+ "name": "",
10
+ "type": "tab",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "placement": "top",
20
+ "endpoint": 0
21
+ },
22
+ {
23
+ "key": "field_5cd9575b1dc17",
24
+ "label": "Select Grid",
25
+ "name": "select_grid",
26
+ "type": "button_group",
27
+ "instructions": "",
28
+ "required": 0,
29
+ "conditional_logic": 0,
30
+ "wrapper": {
31
+ "width": "",
32
+ "class": "",
33
+ "id": ""
34
+ },
35
+ "choices": {
36
+ "2": "2",
37
+ "3": "3",
38
+ "4": "4"
39
+ },
40
+ "allow_null": 0,
41
+ "default_value": 2,
42
+ "layout": "horizontal",
43
+ "return_format": "value"
44
+ },
45
+ {
46
+ "key": "field_5cda7f5de757d",
47
+ "label": "2 Grid Layouts",
48
+ "name": "2_grid_layouts",
49
+ "type": "radio",
50
+ "instructions": "",
51
+ "required": 0,
52
+ "conditional_logic": [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  [
54
+ {
55
+ "field": "field_5cd9575b1dc17",
56
+ "operator": "==",
57
+ "value": "2"
58
+ }
59
  ]
60
+ ],
61
+ "wrapper": {
62
+ "width": "",
63
+ "class": "acfb_radio_image",
64
+ "id": ""
65
+ },
66
+ "choices": {
67
+ "one": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gtwo-one.png\" />",
68
+ "two": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gtwo-two.png\" />"
69
+ },
70
+ "allow_null": 0,
71
+ "other_choice": 0,
72
+ "default_value": "one",
73
+ "layout": "vertical",
74
+ "return_format": "value",
75
+ "save_other_choice": 0
76
+ },
77
+ {
78
+ "key": "field_5cdaa7c03c512",
79
+ "label": "3 Grid Layouts",
80
+ "name": "3_grid_layouts",
81
+ "type": "radio",
82
+ "instructions": "",
83
+ "required": 0,
84
+ "conditional_logic": [
85
+ [
86
+ {
87
+ "field": "field_5cd9575b1dc17",
88
+ "operator": "==",
89
+ "value": "3"
90
+ }
91
+ ]
92
+ ],
93
+ "wrapper": {
94
+ "width": "",
95
+ "class": "acfb_radio_image",
96
+ "id": ""
97
+ },
98
+ "choices": {
99
+ "one": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gthree-one.png\" />",
100
+ "two": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gthree-two.png\" />",
101
+ "three": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gthree-three.png\" />",
102
+ "four": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gthree-four.png\" />",
103
+ "five": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gthree-five.png\" />",
104
+ "six": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gthree-six.png\" />"
105
+ },
106
+ "allow_null": 0,
107
+ "other_choice": 0,
108
+ "default_value": "one",
109
+ "layout": "vertical",
110
+ "return_format": "value",
111
+ "save_other_choice": 0
112
+ },
113
+ {
114
+ "key": "field_5cdaa9ebd0c00",
115
+ "label": "4 Grid Layouts",
116
+ "name": "4_grid_layouts",
117
+ "type": "radio",
118
+ "instructions": "",
119
+ "required": 0,
120
+ "conditional_logic": [
121
+ [
122
+ {
123
+ "field": "field_5cd9575b1dc17",
124
+ "operator": "==",
125
+ "value": "4"
126
+ }
127
+ ]
128
+ ],
129
+ "wrapper": {
130
+ "width": "",
131
+ "class": "acfb_radio_image",
132
+ "id": ""
133
+ },
134
+ "choices": {
135
+ "one": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-one.png\" />",
136
+ "two": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-two.png\" />",
137
+ "three": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-three.png\" />",
138
+ "four": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-four.png\" />",
139
+ "five": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-five.png\" />",
140
+ "six": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-six.png\" />",
141
+ "seven": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-seven.png\" />",
142
+ "eight": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-eight.png\" />",
143
+ "nine": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-nine.png\" />",
144
+ "ten": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-ten.png\" />",
145
+ "eleven": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-eleven.png\" />",
146
+ "twelve": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-twelve.png\" />",
147
+ "thirteen": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-thirteen.png\" />",
148
+ "fourteen": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-fourteen.png\" />",
149
+ "fifteen": "<img src=\"http://localhost/ACFBLOCK/wp-content/plugins/acfblocks-master/img/gfour-fifteen.png\" />"
150
+ },
151
+ "allow_null": 0,
152
+ "other_choice": 0,
153
+ "default_value": "one",
154
+ "layout": "vertical",
155
+ "return_format": "value",
156
+ "save_other_choice": 0
157
+ },
158
+ {
159
+ "key": "field_5cbf04c294875",
160
+ "label": "Images",
161
+ "name": "acfb_photo_collage_images",
162
+ "type": "gallery",
163
+ "instructions": "",
164
+ "required": 0,
165
+ "conditional_logic": 0,
166
+ "wrapper": {
167
+ "width": "",
168
+ "class": "",
169
+ "id": ""
170
+ },
171
+ "min": 2,
172
+ "max": 4,
173
+ "insert": "append",
174
+ "library": "all",
175
+ "min_width": "",
176
+ "min_height": "",
177
+ "min_size": "",
178
+ "max_width": "",
179
+ "max_height": "",
180
+ "max_size": "",
181
+ "mime_types": ""
182
+ },
183
+ {
184
+ "key": "field_5cc85dee4e368",
185
+ "label": "Width",
186
+ "name": "acfb_photo_collage_layout_width",
187
+ "type": "range",
188
+ "instructions": "",
189
+ "required": 0,
190
+ "conditional_logic": 0,
191
+ "wrapper": {
192
+ "width": "",
193
+ "class": "",
194
+ "id": ""
195
+ },
196
+ "default_value": 100,
197
+ "min": "",
198
+ "max": "",
199
+ "step": "",
200
+ "prepend": "",
201
+ "append": "%"
202
+ },
203
+ {
204
+ "key": "field_5cda77ca5ecee",
205
+ "label": "Height",
206
+ "name": "acfb_photo_collage_layout_height",
207
+ "type": "range",
208
+ "instructions": "",
209
+ "required": 0,
210
+ "conditional_logic": 0,
211
+ "wrapper": {
212
+ "width": "",
213
+ "class": "",
214
+ "id": ""
215
+ },
216
+ "default_value": 500,
217
+ "min": "",
218
+ "max": 1000,
219
+ "step": "",
220
+ "prepend": "",
221
+ "append": "px"
222
+ },
223
+ {
224
+ "key": "field_5cc85e1b4e369",
225
+ "label": "Gutter Space",
226
+ "name": "acfb_photo_collage_layout_gutter_space",
227
+ "type": "range",
228
+ "instructions": "",
229
+ "required": 0,
230
+ "conditional_logic": 0,
231
+ "wrapper": {
232
+ "width": "",
233
+ "class": "",
234
+ "id": ""
235
+ },
236
+ "default_value": 10,
237
+ "min": "",
238
+ "max": "",
239
+ "step": "",
240
+ "prepend": "",
241
+ "append": "px"
242
+ },
243
+ {
244
+ "key": "field_5cda7f2de757c",
245
+ "label": "Design",
246
+ "name": "",
247
+ "type": "tab",
248
+ "instructions": "",
249
+ "required": 0,
250
+ "conditional_logic": 0,
251
+ "wrapper": {
252
+ "width": "",
253
+ "class": "",
254
+ "id": ""
255
+ },
256
+ "placement": "top",
257
+ "endpoint": 0
258
+ },
259
+ {
260
+ "key": "field_5cdfc746754f7",
261
+ "label": "No options available here yet.",
262
+ "name": "",
263
+ "type": "message",
264
+ "instructions": "",
265
+ "required": 0,
266
+ "conditional_logic": 0,
267
+ "wrapper": {
268
+ "width": "",
269
+ "class": "",
270
+ "id": ""
271
+ },
272
+ "message": "",
273
+ "new_lines": "wpautop",
274
+ "esc_html": 0
275
+ }
276
+ ],
277
+ "location": [
278
+ [
279
+ {
280
+ "param": "block",
281
+ "operator": "==",
282
+ "value": "acf/acfb-photocollage"
283
+ }
284
+ ]
285
+ ],
286
+ "menu_order": 0,
287
+ "position": "normal",
288
+ "style": "default",
289
+ "label_placement": "top",
290
+ "instruction_placement": "label",
291
+ "hide_on_screen": "",
292
+ "active": 1,
293
+ "description": "",
294
+ "modified": 1558698483
295
+ }
acf-json/group_5cc04e691b1a8.json CHANGED
@@ -1,200 +1,201 @@
1
  {
2
- "key": "group_5cc04e691b1a8",
3
- "title": "Star Rating",
4
- "fields": [
5
- {
6
- "key": "field_5cc8304dcc37e",
7
- "label": "Content",
8
- "name": "",
9
- "type": "tab",
10
- "instructions": "",
11
- "required": 0,
12
- "conditional_logic": 0,
13
- "wrapper": {
14
- "width": "",
15
- "class": "",
16
- "id": ""
17
- },
18
- "placement": "top",
19
- "endpoint": 0
20
- },
21
- {
22
- "key": "field_5cc31aeedf5b7",
23
- "label": "Before Text",
24
- "name": "acfb_rating_before_text",
25
- "type": "text",
26
- "instructions": "",
27
- "required": 0,
28
- "conditional_logic": 0,
29
- "wrapper": {
30
- "width": "",
31
- "class": "",
32
- "id": ""
33
- },
34
- "default_value": "Some Text",
35
- "placeholder": "Some Text",
36
- "prepend": "",
37
- "append": "",
38
- "maxlength": ""
39
- },
40
- {
41
- "key": "field_5cc0811d81f77",
42
- "label": "Rating",
43
- "name": "acfb_rating",
44
- "type": "range",
45
- "instructions": "",
46
- "required": 0,
47
- "conditional_logic": 0,
48
- "wrapper": {
49
- "width": "",
50
- "class": "",
51
- "id": ""
52
- },
53
- "default_value": 3,
54
- "min": 0,
55
- "max": 5,
56
- "step": "",
57
- "prepend": "",
58
- "append": ""
59
- },
60
- {
61
- "key": "field_5cc83066cc37f",
62
- "label": "Design",
63
- "name": "",
64
- "type": "tab",
65
- "instructions": "",
66
- "required": 0,
67
- "conditional_logic": 0,
68
- "wrapper": {
69
- "width": "",
70
- "class": "",
71
- "id": ""
72
- },
73
- "placement": "top",
74
- "endpoint": 0
75
- },
76
- {
77
- "key": "field_5cc3207d3a214",
78
- "label": "Text Color",
79
- "name": "acfb_rating_before_text_color",
80
- "type": "color_picker",
81
- "instructions": "",
82
- "required": 0,
83
- "conditional_logic": 0,
84
- "wrapper": {
85
- "width": "",
86
- "class": "",
87
- "id": ""
88
- },
89
- "default_value": "#191e23"
90
- },
91
- {
92
- "key": "field_5cc3203d3a213",
93
- "label": "Text Size",
94
- "name": "acfb_rating_before_text_size",
95
- "type": "range",
96
- "instructions": "",
97
- "required": 0,
98
- "conditional_logic": 0,
99
- "wrapper": {
100
- "width": "",
101
- "class": "",
102
- "id": ""
103
- },
104
- "default_value": 18,
105
- "min": "",
106
- "max": "",
107
- "step": "",
108
- "prepend": "",
109
- "append": "px"
110
- },
111
- {
112
- "key": "field_5cc3227d434b2",
113
- "label": "Text Gap",
114
- "name": "acfb_rating_before_text_gap",
115
- "type": "range",
116
- "instructions": "",
117
- "required": 0,
118
- "conditional_logic": 0,
119
- "wrapper": {
120
- "width": "",
121
- "class": "",
122
- "id": ""
123
- },
124
- "default_value": 5,
125
- "min": "",
126
- "max": 40,
127
- "step": "",
128
- "prepend": "",
129
- "append": "px"
130
- },
131
- {
132
- "key": "field_5cc313b63cf21",
133
- "label": "Marked Star Color",
134
- "name": "acfb_marked_star_color",
135
- "type": "color_picker",
136
- "instructions": "",
137
- "required": 0,
138
- "conditional_logic": 0,
139
- "wrapper": {
140
- "width": "",
141
- "class": "",
142
- "id": ""
143
- },
144
- "default_value": "#FFD700"
145
- },
146
- {
147
- "key": "field_5cc313e83cf22",
148
- "label": "Unmarked Star Color",
149
- "name": "acfb_unmarked_star_color",
150
- "type": "color_picker",
151
- "instructions": "",
152
- "required": 0,
153
- "conditional_logic": 0,
154
- "wrapper": {
155
- "width": "",
156
- "class": "",
157
- "id": ""
158
- },
159
- "default_value": "#f3f4f5"
160
- },
161
- {
162
- "key": "field_5cc312a89b1c0",
163
- "label": "Star Icon Size",
164
- "name": "acfb_star_icon_size",
165
- "type": "range",
166
- "instructions": "",
167
- "required": 0,
168
- "conditional_logic": 0,
169
- "wrapper": {
170
- "width": "",
171
- "class": "",
172
- "id": ""
173
- },
174
- "default_value": 20,
175
- "min": "",
176
- "max": "",
177
- "step": "",
178
- "prepend": "",
179
- "append": "px"
180
- }
181
- ],
182
- "location": [
183
- [
184
- {
185
- "param": "block",
186
- "operator": "==",
187
- "value": "acf\/acfb-starrating"
188
- }
189
- ]
190
- ],
191
- "menu_order": 0,
192
- "position": "normal",
193
- "style": "default",
194
- "label_placement": "top",
195
- "instruction_placement": "label",
196
- "hide_on_screen": "",
197
- "active": 1,
198
- "description": "",
199
- "modified": 1557732907
200
- }
 
1
  {
2
+ "key": "group_5cc04e691b1a8",
3
+ "title": "Star Rating",
4
+ "private": true,
5
+ "fields": [
6
+ {
7
+ "key": "field_5cc8304dcc37e",
8
+ "label": "Content",
9
+ "name": "",
10
+ "type": "tab",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "placement": "top",
20
+ "endpoint": 0
21
+ },
22
+ {
23
+ "key": "field_5cc31aeedf5b7",
24
+ "label": "Before Text",
25
+ "name": "acfb_rating_before_text",
26
+ "type": "text",
27
+ "instructions": "",
28
+ "required": 0,
29
+ "conditional_logic": 0,
30
+ "wrapper": {
31
+ "width": "",
32
+ "class": "",
33
+ "id": ""
34
+ },
35
+ "default_value": "Some Text",
36
+ "placeholder": "Some Text",
37
+ "prepend": "",
38
+ "append": "",
39
+ "maxlength": ""
40
+ },
41
+ {
42
+ "key": "field_5cc0811d81f77",
43
+ "label": "Rating",
44
+ "name": "acfb_rating",
45
+ "type": "range",
46
+ "instructions": "",
47
+ "required": 0,
48
+ "conditional_logic": 0,
49
+ "wrapper": {
50
+ "width": "",
51
+ "class": "",
52
+ "id": ""
53
+ },
54
+ "default_value": 3,
55
+ "min": 0,
56
+ "max": 5,
57
+ "step": "",
58
+ "prepend": "",
59
+ "append": ""
60
+ },
61
+ {
62
+ "key": "field_5cc83066cc37f",
63
+ "label": "Design",
64
+ "name": "",
65
+ "type": "tab",
66
+ "instructions": "",
67
+ "required": 0,
68
+ "conditional_logic": 0,
69
+ "wrapper": {
70
+ "width": "",
71
+ "class": "",
72
+ "id": ""
73
+ },
74
+ "placement": "top",
75
+ "endpoint": 0
76
+ },
77
+ {
78
+ "key": "field_5cc3207d3a214",
79
+ "label": "Text Color",
80
+ "name": "acfb_rating_before_text_color",
81
+ "type": "color_picker",
82
+ "instructions": "",
83
+ "required": 0,
84
+ "conditional_logic": 0,
85
+ "wrapper": {
86
+ "width": "",
87
+ "class": "",
88
+ "id": ""
89
+ },
90
+ "default_value": "#191e23"
91
+ },
92
+ {
93
+ "key": "field_5cc3203d3a213",
94
+ "label": "Text Size",
95
+ "name": "acfb_rating_before_text_size",
96
+ "type": "range",
97
+ "instructions": "",
98
+ "required": 0,
99
+ "conditional_logic": 0,
100
+ "wrapper": {
101
+ "width": "",
102
+ "class": "",
103
+ "id": ""
104
+ },
105
+ "default_value": 18,
106
+ "min": "",
107
+ "max": "",
108
+ "step": "",
109
+ "prepend": "",
110
+ "append": "px"
111
+ },
112
+ {
113
+ "key": "field_5cc3227d434b2",
114
+ "label": "Text Gap",
115
+ "name": "acfb_rating_before_text_gap",
116
+ "type": "range",
117
+ "instructions": "",
118
+ "required": 0,
119
+ "conditional_logic": 0,
120
+ "wrapper": {
121
+ "width": "",
122
+ "class": "",
123
+ "id": ""
124
+ },
125
+ "default_value": 5,
126
+ "min": "",
127
+ "max": 40,
128
+ "step": "",
129
+ "prepend": "",
130
+ "append": "px"
131
+ },
132
+ {
133
+ "key": "field_5cc313b63cf21",
134
+ "label": "Marked Star Color",
135
+ "name": "acfb_marked_star_color",
136
+ "type": "color_picker",
137
+ "instructions": "",
138
+ "required": 0,
139
+ "conditional_logic": 0,
140
+ "wrapper": {
141
+ "width": "",
142
+ "class": "",
143
+ "id": ""
144
+ },
145
+ "default_value": "#FFD700"
146
+ },
147
+ {
148
+ "key": "field_5cc313e83cf22",
149
+ "label": "Unmarked Star Color",
150
+ "name": "acfb_unmarked_star_color",
151
+ "type": "color_picker",
152
+ "instructions": "",
153
+ "required": 0,
154
+ "conditional_logic": 0,
155
+ "wrapper": {
156
+ "width": "",
157
+ "class": "",
158
+ "id": ""
159
+ },
160
+ "default_value": "#f3f4f5"
161
+ },
162
+ {
163
+ "key": "field_5cc312a89b1c0",
164
+ "label": "Star Icon Size",
165
+ "name": "acfb_star_icon_size",
166
+ "type": "range",
167
+ "instructions": "",
168
+ "required": 0,
169
+ "conditional_logic": 0,
170
+ "wrapper": {
171
+ "width": "",
172
+ "class": "",
173
+ "id": ""
174
+ },
175
+ "default_value": 20,
176
+ "min": "",
177
+ "max": "",
178
+ "step": "",
179
+ "prepend": "",
180
+ "append": "px"
181
+ }
182
+ ],
183
+ "location": [
184
+ [
185
+ {
186
+ "param": "block",
187
+ "operator": "==",
188
+ "value": "acf/acfb-starrating"
189
+ }
190
+ ]
191
+ ],
192
+ "menu_order": 0,
193
+ "position": "normal",
194
+ "style": "default",
195
+ "label_placement": "top",
196
+ "instruction_placement": "label",
197
+ "hide_on_screen": "",
198
+ "active": 1,
199
+ "description": "",
200
+ "modified": 1558698530
201
+ }
acf-json/group_5cc6b8e86e751.json CHANGED
@@ -1,233 +1,234 @@
1
  {
2
- "key": "group_5cc6b8e86e751",
3
- "title": "Progress Bar",
4
- "fields": [
5
- {
6
- "key": "field_5cc835ec452d9",
7
- "label": "Content",
8
- "name": "",
9
- "type": "tab",
10
- "instructions": "",
11
- "required": 0,
12
- "conditional_logic": 0,
13
- "wrapper": {
14
- "width": "",
15
- "class": "",
16
- "id": ""
17
- },
18
- "placement": "top",
19
- "endpoint": 0
20
- },
21
- {
22
- "key": "field_5cc6bdabf9129",
23
- "label": "Title",
24
- "name": "acfb_progressbar_title",
25
- "type": "text",
26
- "instructions": "",
27
- "required": 0,
28
- "conditional_logic": 0,
29
- "wrapper": {
30
- "width": "",
31
- "class": "",
32
- "id": ""
33
- },
34
- "default_value": "Title Here",
35
- "placeholder": "Title Here",
36
- "prepend": "",
37
- "append": "",
38
- "maxlength": ""
39
- },
40
- {
41
- "key": "field_5cc6bde9f912a",
42
- "label": "Percentage",
43
- "name": "acfb_progressbar_percentage",
44
- "type": "range",
45
- "instructions": "",
46
- "required": 0,
47
- "conditional_logic": 0,
48
- "wrapper": {
49
- "width": "",
50
- "class": "",
51
- "id": ""
52
- },
53
- "default_value": 50,
54
- "min": "",
55
- "max": "",
56
- "step": "",
57
- "prepend": "",
58
- "append": "%"
59
- },
60
- {
61
- "key": "field_5cc6be0df912b",
62
- "label": "Display Percentage",
63
- "name": "acfb_progressbar_display_percentage",
64
- "type": "true_false",
65
- "instructions": "",
66
- "required": 0,
67
- "conditional_logic": 0,
68
- "wrapper": {
69
- "width": "",
70
- "class": "",
71
- "id": ""
72
- },
73
- "message": "Yes \/ No",
74
- "default_value": 1,
75
- "ui": 0,
76
- "ui_on_text": "",
77
- "ui_off_text": ""
78
- },
79
- {
80
- "key": "field_5cc6bee498c0c",
81
- "label": "Inner Text",
82
- "name": "acfb_progressbar_inner_text",
83
- "type": "text",
84
- "instructions": "",
85
- "required": 0,
86
- "conditional_logic": 0,
87
- "wrapper": {
88
- "width": "",
89
- "class": "",
90
- "id": ""
91
- },
92
- "default_value": "Web Designer",
93
- "placeholder": "Web Designer",
94
- "prepend": "",
95
- "append": "",
96
- "maxlength": ""
97
- },
98
- {
99
- "key": "field_5cc838e1452da",
100
- "label": "Design",
101
- "name": "",
102
- "type": "tab",
103
- "instructions": "",
104
- "required": 0,
105
- "conditional_logic": 0,
106
- "wrapper": {
107
- "width": "",
108
- "class": "",
109
- "id": ""
110
- },
111
- "placement": "top",
112
- "endpoint": 0
113
- },
114
- {
115
- "key": "field_5cc6c8983d17c",
116
- "label": "Bar Color",
117
- "name": "acfb_progressbar_bg_color",
118
- "type": "color_picker",
119
- "instructions": "",
120
- "required": 0,
121
- "conditional_logic": 0,
122
- "wrapper": {
123
- "width": "",
124
- "class": "",
125
- "id": ""
126
- },
127
- "default_value": "#6ec1e4"
128
- },
129
- {
130
- "key": "field_5cc6c8f93d17d",
131
- "label": "Background Color",
132
- "name": "acfb_progressbar_unactive_bg_color",
133
- "type": "color_picker",
134
- "instructions": "",
135
- "required": 0,
136
- "conditional_logic": 0,
137
- "wrapper": {
138
- "width": "",
139
- "class": "",
140
- "id": ""
141
- },
142
- "default_value": "#f3f4f5"
143
- },
144
- {
145
- "key": "field_5cc6c94e3d17e",
146
- "label": "Text Color",
147
- "name": "acfb_progressbar_text_color",
148
- "type": "color_picker",
149
- "instructions": "",
150
- "required": 0,
151
- "conditional_logic": 0,
152
- "wrapper": {
153
- "width": "",
154
- "class": "",
155
- "id": ""
156
- },
157
- "default_value": "#FFFFFF"
158
- },
159
- {
160
- "key": "field_5cc6c98f3d17f",
161
- "label": "Text Size",
162
- "name": "acfb_progressbar_text_size",
163
- "type": "range",
164
- "instructions": "",
165
- "required": 0,
166
- "conditional_logic": 0,
167
- "wrapper": {
168
- "width": "",
169
- "class": "",
170
- "id": ""
171
- },
172
- "default_value": 14,
173
- "min": "",
174
- "max": "",
175
- "step": "",
176
- "prepend": "",
177
- "append": "px"
178
- },
179
- {
180
- "key": "field_5cc6c9ba3d180",
181
- "label": "Title Color",
182
- "name": "acfb_progressbar_title_color",
183
- "type": "color_picker",
184
- "instructions": "",
185
- "required": 0,
186
- "conditional_logic": 0,
187
- "wrapper": {
188
- "width": "",
189
- "class": "",
190
- "id": ""
191
- },
192
- "default_value": "#191e23"
193
- },
194
- {
195
- "key": "field_5cc6c9d83d181",
196
- "label": "Title Size",
197
- "name": "acfb_progressbar_title_size",
198
- "type": "range",
199
- "instructions": "",
200
- "required": 0,
201
- "conditional_logic": 0,
202
- "wrapper": {
203
- "width": "",
204
- "class": "",
205
- "id": ""
206
- },
207
- "default_value": 16,
208
- "min": "",
209
- "max": "",
210
- "step": "",
211
- "prepend": "",
212
- "append": "px"
213
- }
214
- ],
215
- "location": [
216
- [
217
- {
218
- "param": "block",
219
- "operator": "==",
220
- "value": "acf\/acfb-progressbar"
221
- }
222
- ]
223
- ],
224
- "menu_order": 0,
225
- "position": "normal",
226
- "style": "default",
227
- "label_placement": "top",
228
- "instruction_placement": "label",
229
- "hide_on_screen": "",
230
- "active": 1,
231
- "description": "",
232
- "modified": 1557732908
233
- }
 
1
  {
2
+ "key": "group_5cc6b8e86e751",
3
+ "title": "Progress Bar",
4
+ "private": true,
5
+ "fields": [
6
+ {
7
+ "key": "field_5cc835ec452d9",
8
+ "label": "Content",
9
+ "name": "",
10
+ "type": "tab",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "placement": "top",
20
+ "endpoint": 0
21
+ },
22
+ {
23
+ "key": "field_5cc6bdabf9129",
24
+ "label": "Title",
25
+ "name": "acfb_progressbar_title",
26
+ "type": "text",
27
+ "instructions": "",
28
+ "required": 0,
29
+ "conditional_logic": 0,
30
+ "wrapper": {
31
+ "width": "",
32
+ "class": "",
33
+ "id": ""
34
+ },
35
+ "default_value": "Title Here",
36
+ "placeholder": "Title Here",
37
+ "prepend": "",
38
+ "append": "",
39
+ "maxlength": ""
40
+ },
41
+ {
42
+ "key": "field_5cc6bde9f912a",
43
+ "label": "Percentage",
44
+ "name": "acfb_progressbar_percentage",
45
+ "type": "range",
46
+ "instructions": "",
47
+ "required": 0,
48
+ "conditional_logic": 0,
49
+ "wrapper": {
50
+ "width": "",
51
+ "class": "",
52
+ "id": ""
53
+ },
54
+ "default_value": 50,
55
+ "min": "",
56
+ "max": "",
57
+ "step": "",
58
+ "prepend": "",
59
+ "append": "%"
60
+ },
61
+ {
62
+ "key": "field_5cc6be0df912b",
63
+ "label": "Display Percentage",
64
+ "name": "acfb_progressbar_display_percentage",
65
+ "type": "true_false",
66
+ "instructions": "",
67
+ "required": 0,
68
+ "conditional_logic": 0,
69
+ "wrapper": {
70
+ "width": "",
71
+ "class": "",
72
+ "id": ""
73
+ },
74
+ "message": "Yes / No",
75
+ "default_value": 1,
76
+ "ui": 0,
77
+ "ui_on_text": "",
78
+ "ui_off_text": ""
79
+ },
80
+ {
81
+ "key": "field_5cc6bee498c0c",
82
+ "label": "Inner Text",
83
+ "name": "acfb_progressbar_inner_text",
84
+ "type": "text",
85
+ "instructions": "",
86
+ "required": 0,
87
+ "conditional_logic": 0,
88
+ "wrapper": {
89
+ "width": "",
90
+ "class": "",
91
+ "id": ""
92
+ },
93
+ "default_value": "Web Designer",
94
+ "placeholder": "Web Designer",
95
+ "prepend": "",
96
+ "append": "",
97
+ "maxlength": ""
98
+ },
99
+ {
100
+ "key": "field_5cc838e1452da",
101
+ "label": "Design",
102
+ "name": "",
103
+ "type": "tab",
104
+ "instructions": "",
105
+ "required": 0,
106
+ "conditional_logic": 0,
107
+ "wrapper": {
108
+ "width": "",
109
+ "class": "",
110
+ "id": ""
111
+ },
112
+ "placement": "top",
113
+ "endpoint": 0
114
+ },
115
+ {
116
+ "key": "field_5cc6c8983d17c",
117
+ "label": "Bar Color",
118
+ "name": "acfb_progressbar_bg_color",
119
+ "type": "color_picker",
120
+ "instructions": "",
121
+ "required": 0,
122
+ "conditional_logic": 0,
123
+ "wrapper": {
124
+ "width": "",
125
+ "class": "",
126
+ "id": ""
127
+ },
128
+ "default_value": "#6ec1e4"
129
+ },
130
+ {
131
+ "key": "field_5cc6c8f93d17d",
132
+ "label": "Background Color",
133
+ "name": "acfb_progressbar_unactive_bg_color",
134
+ "type": "color_picker",
135
+ "instructions": "",
136
+ "required": 0,
137
+ "conditional_logic": 0,
138
+ "wrapper": {
139
+ "width": "",
140
+ "class": "",
141
+ "id": ""
142
+ },
143
+ "default_value": "#f3f4f5"
144
+ },
145
+ {
146
+ "key": "field_5cc6c94e3d17e",
147
+ "label": "Text Color",
148
+ "name": "acfb_progressbar_text_color",
149
+ "type": "color_picker",
150
+ "instructions": "",
151
+ "required": 0,
152
+ "conditional_logic": 0,
153
+ "wrapper": {
154
+ "width": "",
155
+ "class": "",
156
+ "id": ""
157
+ },
158
+ "default_value": "#FFFFFF"
159
+ },
160
+ {
161
+ "key": "field_5cc6c98f3d17f",
162
+ "label": "Text Size",
163
+ "name": "acfb_progressbar_text_size",
164
+ "type": "range",
165
+ "instructions": "",
166
+ "required": 0,
167
+ "conditional_logic": 0,
168
+ "wrapper": {
169
+ "width": "",
170
+ "class": "",
171
+ "id": ""
172
+ },
173
+ "default_value": 14,
174
+ "min": "",
175
+ "max": "",
176
+ "step": "",
177
+ "prepend": "",
178
+ "append": "px"
179
+ },
180
+ {
181
+ "key": "field_5cc6c9ba3d180",
182
+ "label": "Title Color",
183
+ "name": "acfb_progressbar_title_color",
184
+ "type": "color_picker",
185
+ "instructions": "",
186
+ "required": 0,
187
+ "conditional_logic": 0,
188
+ "wrapper": {
189
+ "width": "",
190
+ "class": "",
191
+ "id": ""
192
+ },
193
+ "default_value": "#191e23"
194
+ },
195
+ {
196
+ "key": "field_5cc6c9d83d181",
197
+ "label": "Title Size",
198
+ "name": "acfb_progressbar_title_size",
199
+ "type": "range",
200
+ "instructions": "",
201
+ "required": 0,
202
+ "conditional_logic": 0,
203
+ "wrapper": {
204
+ "width": "",
205
+ "class": "",
206
+ "id": ""
207
+ },
208
+ "default_value": 16,
209
+ "min": "",
210
+ "max": "",
211
+ "step": "",
212
+ "prepend": "",
213
+ "append": "px"
214
+ }
215
+ ],
216
+ "location": [
217
+ [
218
+ {
219
+ "param": "block",
220
+ "operator": "==",
221
+ "value": "acf/acfb-progressbar"
222
+ }
223
+ ]
224
+ ],
225
+ "menu_order": 0,
226
+ "position": "normal",
227
+ "style": "default",
228
+ "label_placement": "top",
229
+ "instruction_placement": "label",
230
+ "hide_on_screen": "",
231
+ "active": 1,
232
+ "description": "",
233
+ "modified": 1558698509
234
+ }
acf-json/group_5cc6cf92e231a.json CHANGED
@@ -1,204 +1,205 @@
1
  {
2
- "key": "group_5cc6cf92e231a",
3
- "title": "Counter Number",
4
- "fields": [
5
- {
6
- "key": "field_5cc855022aabc",
7
- "label": "Content",
8
- "name": "",
9
- "type": "tab",
10
- "instructions": "",
11
- "required": 0,
12
- "conditional_logic": 0,
13
- "wrapper": {
14
- "width": "",
15
- "class": "",
16
- "id": ""
17
- },
18
- "placement": "top",
19
- "endpoint": 0
20
- },
21
- {
22
- "key": "field_5cc6d9bdf383d",
23
- "label": "Number Prefix",
24
- "name": "acfb_counter_number_prefix",
25
- "type": "text",
26
- "instructions": "",
27
- "required": 0,
28
- "conditional_logic": 0,
29
- "wrapper": {
30
- "width": "",
31
- "class": "",
32
- "id": ""
33
- },
34
- "default_value": "",
35
- "placeholder": "",
36
- "prepend": "",
37
- "append": "",
38
- "maxlength": ""
39
- },
40
- {
41
- "key": "field_5cc6d969f383c",
42
- "label": "Number",
43
- "name": "acfb_counter_number",
44
- "type": "number",
45
- "instructions": "",
46
- "required": 0,
47
- "conditional_logic": 0,
48
- "wrapper": {
49
- "width": "",
50
- "class": "",
51
- "id": ""
52
- },
53
- "default_value": 100,
54
- "placeholder": "",
55
- "prepend": "",
56
- "append": "",
57
- "min": "",
58
- "max": "",
59
- "step": ""
60
- },
61
- {
62
- "key": "field_5cc6d9d0f383e",
63
- "label": "Number Suffix",
64
- "name": "acfb_counter_number_suffix",
65
- "type": "text",
66
- "instructions": "",
67
- "required": 0,
68
- "conditional_logic": 0,
69
- "wrapper": {
70
- "width": "",
71
- "class": "",
72
- "id": ""
73
- },
74
- "default_value": "",
75
- "placeholder": "",
76
- "prepend": "",
77
- "append": "",
78
- "maxlength": ""
79
- },
80
- {
81
- "key": "field_5cc6d9f2f383f",
82
- "label": "Title",
83
- "name": "acfb_counter_number_title",
84
- "type": "text",
85
- "instructions": "",
86
- "required": 0,
87
- "conditional_logic": 0,
88
- "wrapper": {
89
- "width": "",
90
- "class": "",
91
- "id": ""
92
- },
93
- "default_value": "Title Here",
94
- "placeholder": "Title Here",
95
- "prepend": "",
96
- "append": "",
97
- "maxlength": ""
98
- },
99
- {
100
- "key": "field_5cc855162aabd",
101
- "label": "Design",
102
- "name": "",
103
- "type": "tab",
104
- "instructions": "",
105
- "required": 0,
106
- "conditional_logic": 0,
107
- "wrapper": {
108
- "width": "",
109
- "class": "",
110
- "id": ""
111
- },
112
- "placement": "top",
113
- "endpoint": 0
114
- },
115
- {
116
- "key": "field_5cc6da54f3840",
117
- "label": "Number Color",
118
- "name": "acfb_counter_number_color",
119
- "type": "color_picker",
120
- "instructions": "",
121
- "required": 0,
122
- "conditional_logic": 0,
123
- "wrapper": {
124
- "width": "",
125
- "class": "",
126
- "id": ""
127
- },
128
- "default_value": "#191e23"
129
- },
130
- {
131
- "key": "field_5cc6da81f3841",
132
- "label": "Number Size",
133
- "name": "acfb_counter_number_size",
134
- "type": "range",
135
- "instructions": "",
136
- "required": 0,
137
- "conditional_logic": 0,
138
- "wrapper": {
139
- "width": "",
140
- "class": "",
141
- "id": ""
142
- },
143
- "default_value": 69,
144
- "min": "",
145
- "max": "",
146
- "step": "",
147
- "prepend": "",
148
- "append": "px"
149
- },
150
- {
151
- "key": "field_5cc6dab2f3842",
152
- "label": "Title Color",
153
- "name": "acfb_counter_number_title_color",
154
- "type": "color_picker",
155
- "instructions": "",
156
- "required": 0,
157
- "conditional_logic": 0,
158
- "wrapper": {
159
- "width": "",
160
- "class": "",
161
- "id": ""
162
- },
163
- "default_value": "#191e23"
164
- },
165
- {
166
- "key": "field_5cc6dae0f3843",
167
- "label": "Title Size",
168
- "name": "acfb_counter_number_title_size",
169
- "type": "range",
170
- "instructions": "",
171
- "required": 0,
172
- "conditional_logic": 0,
173
- "wrapper": {
174
- "width": "",
175
- "class": "",
176
- "id": ""
177
- },
178
- "default_value": 19,
179
- "min": "",
180
- "max": "",
181
- "step": "",
182
- "prepend": "",
183
- "append": "px"
184
- }
185
- ],
186
- "location": [
187
- [
188
- {
189
- "param": "block",
190
- "operator": "==",
191
- "value": "acf\/acfb-counternumber"
192
- }
193
- ]
194
- ],
195
- "menu_order": 0,
196
- "position": "normal",
197
- "style": "default",
198
- "label_placement": "top",
199
- "instruction_placement": "label",
200
- "hide_on_screen": "",
201
- "active": 1,
202
- "description": "",
203
- "modified": 1557732945
204
- }
 
1
  {
2
+ "key": "group_5cc6cf92e231a",
3
+ "title": "Counter Number",
4
+ "private": true,
5
+ "fields": [
6
+ {
7
+ "key": "field_5cc855022aabc",
8
+ "label": "Content",
9
+ "name": "",
10
+ "type": "tab",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "placement": "top",
20
+ "endpoint": 0
21
+ },
22
+ {
23
+ "key": "field_5cc6d9bdf383d",
24
+ "label": "Number Prefix",
25
+ "name": "acfb_counter_number_prefix",
26
+ "type": "text",
27
+ "instructions": "",
28
+ "required": 0,
29
+ "conditional_logic": 0,
30
+ "wrapper": {
31
+ "width": "",
32
+ "class": "",
33
+ "id": ""
34
+ },
35
+ "default_value": "",
36
+ "placeholder": "",
37
+ "prepend": "",
38
+ "append": "",
39
+ "maxlength": ""
40
+ },
41
+ {
42
+ "key": "field_5cc6d969f383c",
43
+ "label": "Number",
44
+ "name": "acfb_counter_number",
45
+ "type": "number",
46
+ "instructions": "",
47
+ "required": 0,
48
+ "conditional_logic": 0,
49
+ "wrapper": {
50
+ "width": "",
51
+ "class": "",
52
+ "id": ""
53
+ },
54
+ "default_value": 100,
55
+ "placeholder": "",
56
+ "prepend": "",
57
+ "append": "",
58
+ "min": "",
59
+ "max": "",
60
+ "step": ""
61
+ },
62
+ {
63
+ "key": "field_5cc6d9d0f383e",
64
+ "label": "Number Suffix",
65
+ "name": "acfb_counter_number_suffix",
66
+ "type": "text",
67
+ "instructions": "",
68
+ "required": 0,
69
+ "conditional_logic": 0,
70
+ "wrapper": {
71
+ "width": "",
72
+ "class": "",
73
+ "id": ""
74
+ },
75
+ "default_value": "",
76
+ "placeholder": "",
77
+ "prepend": "",
78
+ "append": "",
79
+ "maxlength": ""
80
+ },
81
+ {
82
+ "key": "field_5cc6d9f2f383f",
83
+ "label": "Title",
84
+ "name": "acfb_counter_number_title",
85
+ "type": "text",
86
+ "instructions": "",
87
+ "required": 0,
88
+ "conditional_logic": 0,
89
+ "wrapper": {
90
+ "width": "",
91
+ "class": "",
92
+ "id": ""
93
+ },
94
+ "default_value": "Title Here",
95
+ "placeholder": "Title Here",
96
+ "prepend": "",
97
+ "append": "",
98
+ "maxlength": ""
99
+ },
100
+ {
101
+ "key": "field_5cc855162aabd",
102
+ "label": "Design",
103
+ "name": "",
104
+ "type": "tab",
105
+ "instructions": "",
106
+ "required": 0,
107
+ "conditional_logic": 0,
108
+ "wrapper": {
109
+ "width": "",
110
+ "class": "",
111
+ "id": ""
112
+ },
113
+ "placement": "top",
114
+ "endpoint": 0
115
+ },
116
+ {
117
+ "key": "field_5cc6da54f3840",
118
+ "label": "Number Color",
119
+ "name": "acfb_counter_number_color",
120
+ "type": "color_picker",
121
+ "instructions": "",
122
+ "required": 0,
123
+ "conditional_logic": 0,
124
+ "wrapper": {
125
+ "width": "",
126
+ "class": "",
127
+ "id": ""
128
+ },
129
+ "default_value": "#191e23"
130
+ },
131
+ {
132
+ "key": "field_5cc6da81f3841",
133
+ "label": "Number Size",
134
+ "name": "acfb_counter_number_size",
135
+ "type": "range",
136
+ "instructions": "",
137
+ "required": 0,
138
+ "conditional_logic": 0,
139
+ "wrapper": {
140
+ "width": "",
141
+ "class": "",
142
+ "id": ""
143
+ },
144
+ "default_value": 69,
145
+ "min": "",
146
+ "max": "",
147
+ "step": "",
148
+ "prepend": "",
149
+ "append": "px"
150
+ },
151
+ {
152
+ "key": "field_5cc6dab2f3842",
153
+ "label": "Title Color",
154
+ "name": "acfb_counter_number_title_color",
155
+ "type": "color_picker",
156
+ "instructions": "",
157
+ "required": 0,
158
+ "conditional_logic": 0,
159
+ "wrapper": {
160
+ "width": "",
161
+ "class": "",
162
+ "id": ""
163
+ },
164
+ "default_value": "#191e23"
165
+ },
166
+ {
167
+ "key": "field_5cc6dae0f3843",
168
+ "label": "Title Size",
169
+ "name": "acfb_counter_number_title_size",
170
+ "type": "range",
171
+ "instructions": "",
172
+ "required": 0,
173
+ "conditional_logic": 0,
174
+ "wrapper": {
175
+ "width": "",
176
+ "class": "",
177
+ "id": ""
178
+ },
179
+ "default_value": 19,
180
+ "min": "",
181
+ "max": "",
182
+ "step": "",
183
+ "prepend": "",
184
+ "append": "px"
185
+ }
186
+ ],
187
+ "location": [
188
+ [
189
+ {
190
+ "param": "block",
191
+ "operator": "==",
192
+ "value": "acf/acfb-counternumber"
193
+ }
194
+ ]
195
+ ],
196
+ "menu_order": 0,
197
+ "position": "normal",
198
+ "style": "default",
199
+ "label_placement": "top",
200
+ "instruction_placement": "label",
201
+ "hide_on_screen": "",
202
+ "active": 1,
203
+ "description": "",
204
+ "modified": 1558698467
205
+ }
acf-json/group_5cc6dfe67784b.json CHANGED
@@ -1,331 +1,330 @@
1
  {
2
- "key": "group_5cc6dfe67784b",
3
- "title": "Price List",
4
- "fields": [
5
- {
6
- "key": "field_5cc849708d41e",
7
- "label": "Content",
8
- "name": "",
9
- "type": "tab",
10
- "instructions": "",
11
- "required": 0,
12
- "conditional_logic": 0,
13
- "wrapper": {
14
- "width": "",
15
- "class": "",
16
- "id": ""
17
- },
18
- "placement": "top",
19
- "endpoint": 0
20
- },
21
- {
22
- "key": "field_5cc6fc92492de",
23
- "label": "Image",
24
- "name": "acfb_price_list_image",
25
- "type": "image",
26
- "instructions": "",
27
- "required": 0,
28
- "conditional_logic": 0,
29
- "wrapper": {
30
- "width": "",
31
- "class": "",
32
- "id": ""
33
- },
34
- "return_format": "url",
35
- "preview_size": "medium",
36
- "library": "all",
37
- "min_width": "",
38
- "min_height": "",
39
- "min_size": "",
40
- "max_width": "",
41
- "max_height": "",
42
- "max_size": "",
43
- "mime_types": ""
44
- },
45
- {
46
- "key": "field_5cc6fd6ff9966",
47
- "label": "Image Alt",
48
- "name": "acfb_price_list_image_alt",
49
- "type": "text",
50
- "instructions": "",
51
- "required": 0,
52
- "conditional_logic": 0,
53
- "wrapper": {
54
- "width": "",
55
- "class": "",
56
- "id": ""
57
- },
58
- "default_value": "Alt Text",
59
- "placeholder": "Alt Text",
60
- "prepend": "",
61
- "append": "",
62
- "maxlength": ""
63
- },
64
- {
65
- "key": "field_5cc6fc32492dc",
66
- "label": "Title",
67
- "name": "acfb_price_list_title",
68
- "type": "text",
69
- "instructions": "",
70
- "required": 0,
71
- "conditional_logic": 0,
72
- "wrapper": {
73
- "width": "",
74
- "class": "",
75
- "id": ""
76
- },
77
- "default_value": "Item on the list",
78
- "placeholder": "Item on the list",
79
- "prepend": "",
80
- "append": "",
81
- "maxlength": ""
82
- },
83
- {
84
- "key": "field_5ccc4630098a1",
85
- "label": "Price Prefix",
86
- "name": "acfb_price_list_price_prefix",
87
- "type": "text",
88
- "instructions": "",
89
- "required": 0,
90
- "conditional_logic": 0,
91
- "wrapper": {
92
- "width": "",
93
- "class": "",
94
- "id": ""
95
- },
96
- "default_value": "$",
97
- "placeholder": "$",
98
- "prepend": "",
99
- "append": "",
100
- "maxlength": ""
101
- },
102
- {
103
- "key": "field_5cc6fbe2e8afe",
104
- "label": "Price",
105
- "name": "acfb_price_list_price",
106
- "type": "number",
107
- "instructions": "",
108
- "required": 0,
109
- "conditional_logic": 0,
110
- "wrapper": {
111
- "width": "",
112
- "class": "",
113
- "id": ""
114
- },
115
- "default_value": 10,
116
- "placeholder": "",
117
- "prepend": "",
118
- "append": "",
119
- "min": "",
120
- "max": "",
121
- "step": ""
122
- },
123
- {
124
- "key": "field_5cc6fc63492dd",
125
- "label": "Description",
126
- "name": "acfb_price_list_description",
127
- "type": "textarea",
128
- "instructions": "",
129
- "required": 0,
130
- "conditional_logic": 0,
131
- "wrapper": {
132
- "width": "",
133
- "class": "",
134
- "id": ""
135
- },
136
- "default_value": "I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
137
- "placeholder": "I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
138
- "maxlength": "",
139
- "rows": "",
140
- "new_lines": ""
141
- },
142
- {
143
- "key": "field_5cc6fcb7492df",
144
- "label": "Link",
145
- "name": "acfb_price_list_link",
146
- "type": "text",
147
- "instructions": "",
148
- "required": 0,
149
- "conditional_logic": 0,
150
- "wrapper": {
151
- "width": "",
152
- "class": "",
153
- "id": ""
154
- },
155
- "default_value": "#",
156
- "placeholder": "#",
157
- "prepend": "",
158
- "append": "",
159
- "maxlength": ""
160
- },
161
- {
162
- "key": "field_5cc849a38d41f",
163
- "label": "Design",
164
- "name": "",
165
- "type": "tab",
166
- "instructions": "",
167
- "required": 0,
168
- "conditional_logic": 0,
169
- "wrapper": {
170
- "width": "",
171
- "class": "",
172
- "id": ""
173
- },
174
- "placement": "top",
175
- "endpoint": 0
176
- },
177
- {
178
- "key": "field_5cc700e89b703",
179
- "label": "Title & Price Color",
180
- "name": "acfb_price_list_title_&_price_color",
181
- "type": "color_picker",
182
- "instructions": "",
183
- "required": 0,
184
- "conditional_logic": 0,
185
- "wrapper": {
186
- "width": "",
187
- "class": "",
188
- "id": ""
189
- },
190
- "default_value": "#191e23"
191
- },
192
- {
193
- "key": "field_5cc701239b704",
194
- "label": "Title & Price Size",
195
- "name": "acfb_price_list_title_&_price_size",
196
- "type": "range",
197
- "instructions": "",
198
- "required": 0,
199
- "conditional_logic": 0,
200
- "wrapper": {
201
- "width": "",
202
- "class": "",
203
- "id": ""
204
- },
205
- "default_value": 19,
206
- "min": "",
207
- "max": "",
208
- "step": "",
209
- "prepend": "",
210
- "append": "px"
211
- },
212
- {
213
- "key": "field_5cc7020b9b707",
214
- "label": "Separator Styles",
215
- "name": "acfb_price_list_separator_styles",
216
- "type": "select",
217
- "instructions": "",
218
- "required": 0,
219
- "conditional_logic": 0,
220
- "wrapper": {
221
- "width": "",
222
- "class": "",
223
- "id": ""
224
- },
225
- "choices": {
226
- "Solid": "Solid",
227
- "Dotted": "Dotted",
228
- "Dashed": "Dashed",
229
- "Double": "Double",
230
- "None": "None"
231
- },
232
- "default_value": [
233
- "Dotted"
234
- ],
235
- "allow_null": 0,
236
- "multiple": 0,
237
- "ui": 0,
238
- "return_format": "value",
239
- "ajax": 0,
240
- "placeholder": ""
241
- },
242
- {
243
- "key": "field_5cc7026a9b708",
244
- "label": "Separator Size",
245
- "name": "acfb_price_list_separator_size",
246
- "type": "range",
247
- "instructions": "",
248
- "required": 0,
249
- "conditional_logic": 0,
250
- "wrapper": {
251
- "width": "",
252
- "class": "",
253
- "id": ""
254
- },
255
- "default_value": 2,
256
- "min": "",
257
- "max": 10,
258
- "step": "",
259
- "prepend": "",
260
- "append": "px"
261
- },
262
- {
263
- "key": "field_5cc7028b9b709",
264
- "label": "Separator Color",
265
- "name": "acfb_price_list_separator_color",
266
- "type": "color_picker",
267
- "instructions": "",
268
- "required": 0,
269
- "conditional_logic": 0,
270
- "wrapper": {
271
- "width": "",
272
- "class": "",
273
- "id": ""
274
- },
275
- "default_value": "#191e23"
276
- },
277
- {
278
- "key": "field_5cc7015b9b705",
279
- "label": "Description Color",
280
- "name": "acfb_price_list_description_color",
281
- "type": "color_picker",
282
- "instructions": "",
283
- "required": 0,
284
- "conditional_logic": 0,
285
- "wrapper": {
286
- "width": "",
287
- "class": "",
288
- "id": ""
289
- },
290
- "default_value": "#191e23"
291
- },
292
- {
293
- "key": "field_5cc7017a9b706",
294
- "label": "Description Size",
295
- "name": "acfb_price_list_description_size",
296
- "type": "range",
297
- "instructions": "",
298
- "required": 0,
299
- "conditional_logic": 0,
300
- "wrapper": {
301
- "width": "",
302
- "class": "",
303
- "id": ""
304
- },
305
- "default_value": 16,
306
- "min": "",
307
- "max": "",
308
- "step": "",
309
- "prepend": "",
310
- "append": "px"
311
- }
312
- ],
313
- "location": [
314
- [
315
- {
316
- "param": "block",
317
- "operator": "==",
318
- "value": "acf\/acfb-pricelist"
319
- }
320
- ]
321
- ],
322
- "menu_order": 0,
323
- "position": "normal",
324
- "style": "default",
325
- "label_placement": "top",
326
- "instruction_placement": "label",
327
- "hide_on_screen": "",
328
- "active": 1,
329
- "description": "",
330
- "modified": 1557732983
331
- }
1
  {
2
+ "key": "group_5cc6dfe67784b",
3
+ "title": "Price List",
4
+ "private": true,
5
+ "fields": [
6
+ {
7
+ "key": "field_5cc849708d41e",
8
+ "label": "Content",
9
+ "name": "",
10
+ "type": "tab",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "placement": "top",
20
+ "endpoint": 0
21
+ },
22
+ {
23
+ "key": "field_5cc6fc92492de",
24
+ "label": "Image",
25
+ "name": "acfb_price_list_image",
26
+ "type": "image",
27
+ "instructions": "",
28
+ "required": 0,
29
+ "conditional_logic": 0,
30
+ "wrapper": {
31
+ "width": "",
32
+ "class": "",
33
+ "id": ""
34
+ },
35
+ "return_format": "url",
36
+ "preview_size": "medium",
37
+ "library": "all",
38
+ "min_width": "",
39
+ "min_height": "",
40
+ "min_size": "",
41
+ "max_width": "",
42
+ "max_height": "",
43
+ "max_size": "",
44
+ "mime_types": ""
45
+ },
46
+ {
47
+ "key": "field_5cc6fd6ff9966",
48
+ "label": "Image Alt",
49
+ "name": "acfb_price_list_image_alt",
50
+ "type": "text",
51
+ "instructions": "",
52
+ "required": 0,
53
+ "conditional_logic": 0,
54
+ "wrapper": {
55
+ "width": "",
56
+ "class": "",
57
+ "id": ""
58
+ },
59
+ "default_value": "Alt Text",
60
+ "placeholder": "Alt Text",
61
+ "prepend": "",
62
+ "append": "",
63
+ "maxlength": ""
64
+ },
65
+ {
66
+ "key": "field_5cc6fc32492dc",
67
+ "label": "Title",
68
+ "name": "acfb_price_list_title",
69
+ "type": "text",
70
+ "instructions": "",
71
+ "required": 0,
72
+ "conditional_logic": 0,
73
+ "wrapper": {
74
+ "width": "",
75
+ "class": "",
76
+ "id": ""
77
+ },
78
+ "default_value": "Item on the list",
79
+ "placeholder": "Item on the list",
80
+ "prepend": "",
81
+ "append": "",
82
+ "maxlength": ""
83
+ },
84
+ {
85
+ "key": "field_5ccc4630098a1",
86
+ "label": "Price Prefix",
87
+ "name": "acfb_price_list_price_prefix",
88
+ "type": "text",
89
+ "instructions": "",
90
+ "required": 0,
91
+ "conditional_logic": 0,
92
+ "wrapper": {
93
+ "width": "",
94
+ "class": "",
95
+ "id": ""
96
+ },
97
+ "default_value": "$",
98
+ "placeholder": "$",
99
+ "prepend": "",
100
+ "append": "",
101
+ "maxlength": ""
102
+ },
103
+ {
104
+ "key": "field_5cc6fbe2e8afe",
105
+ "label": "Price",
106
+ "name": "acfb_price_list_price",
107
+ "type": "number",
108
+ "instructions": "",
109
+ "required": 0,
110
+ "conditional_logic": 0,
111
+ "wrapper": {
112
+ "width": "",
113
+ "class": "",
114
+ "id": ""
115
+ },
116
+ "default_value": 10,
117
+ "placeholder": "",
118
+ "prepend": "",
119
+ "append": "",
120
+ "min": "",
121
+ "max": "",
122
+ "step": ""
123
+ },
124
+ {
125
+ "key": "field_5cc6fc63492dd",
126
+ "label": "Description",
127
+ "name": "acfb_price_list_description",
128
+ "type": "textarea",
129
+ "instructions": "",
130
+ "required": 0,
131
+ "conditional_logic": 0,
132
+ "wrapper": {
133
+ "width": "",
134
+ "class": "",
135
+ "id": ""
136
+ },
137
+ "default_value": "I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
138
+ "placeholder": "I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
139
+ "maxlength": "",
140
+ "rows": "",
141
+ "new_lines": ""
142
+ },
143
+ {
144
+ "key": "field_5cc6fcb7492df",
145
+ "label": "Link",
146
+ "name": "acfb_price_list_link",
147
+ "type": "text",
148
+ "instructions": "",
149
+ "required": 0,
150
+ "conditional_logic": 0,
151
+ "wrapper": {
152
+ "width": "",
153
+ "class": "",
154
+ "id": ""
155
+ },
156
+ "default_value": "#",
157
+ "placeholder": "#",
158
+ "prepend": "",
159
+ "append": "",
160
+ "maxlength": ""
161
+ },
162
+ {
163
+ "key": "field_5cc849a38d41f",
164
+ "label": "Design",
165
+ "name": "",
166
+ "type": "tab",
167
+ "instructions": "",
168
+ "required": 0,
169
+ "conditional_logic": 0,
170
+ "wrapper": {
171
+ "width": "",
172
+ "class": "",
173
+ "id": ""
174
+ },
175
+ "placement": "top",
176
+ "endpoint": 0
177
+ },
178
+ {
179
+ "key": "field_5cc700e89b703",
180
+ "label": "Title & Price Color",
181
+ "name": "acfb_price_list_title_&_price_color",
182
+ "type": "color_picker",
183
+ "instructions": "",
184
+ "required": 0,
185
+ "conditional_logic": 0,
186
+ "wrapper": {
187
+ "width": "",
188
+ "class": "",
189
+ "id": ""
190
+ },
191
+ "default_value": "#191e23"
192
+ },
193
+ {
194
+ "key": "field_5cc701239b704",
195
+ "label": "Title & Price Size",
196
+ "name": "acfb_price_list_title_&_price_size",
197
+ "type": "range",
198
+ "instructions": "",
199
+ "required": 0,
200
+ "conditional_logic": 0,
201
+ "wrapper": {
202
+ "width": "",
203
+ "class": "",
204
+ "id": ""
205
+ },
206
+ "default_value": 19,
207
+ "min": "",
208
+ "max": "",
209
+ "step": "",
210
+ "prepend": "",
211
+ "append": "px"
212
+ },
213
+ {
214
+ "key": "field_5cc7020b9b707",
215
+ "label": "Separator Styles",
216
+ "name": "acfb_price_list_separator_styles",
217
+ "type": "select",
218
+ "instructions": "",
219
+ "required": 0,
220
+ "conditional_logic": 0,
221
+ "wrapper": {
222
+ "width": "",
223
+ "class": "",
224
+ "id": ""
225
+ },
226
+ "choices": {
227
+ "Solid": "Solid",
228
+ "Dotted": "Dotted",
229
+ "Dashed": "Dashed",
230
+ "Double": "Double",
231
+ "None": "None"
232
+ },
233
+ "default_value": ["Dotted"],
234
+ "allow_null": 0,
235
+ "multiple": 0,
236
+ "ui": 0,
237
+ "return_format": "value",
238
+ "ajax": 0,
239
+ "placeholder": ""
240
+ },
241
+ {
242
+ "key": "field_5cc7026a9b708",
243
+ "label": "Separator Size",
244
+ "name": "acfb_price_list_separator_size",
245
+ "type": "range",
246
+ "instructions": "",
247
+ "required": 0,
248
+ "conditional_logic": 0,
249
+ "wrapper": {
250
+ "width": "",
251
+ "class": "",
252
+ "id": ""
253
+ },
254
+ "default_value": 2,
255
+ "min": "",
256
+ "max": 10,
257
+ "step": "",
258
+ "prepend": "",
259
+ "append": "px"
260
+ },
261
+ {
262
+ "key": "field_5cc7028b9b709",
263
+ "label": "Separator Color",
264
+ "name": "acfb_price_list_separator_color",
265
+ "type": "color_picker",
266
+ "instructions": "",
267
+ "required": 0,
268
+ "conditional_logic": 0,
269
+ "wrapper": {
270
+ "width": "",
271
+ "class": "",
272
+ "id": ""
273
+ },
274
+ "default_value": "#191e23"
275
+ },
276
+ {
277
+ "key": "field_5cc7015b9b705",
278
+ "label": "Description Color",
279
+ "name": "acfb_price_list_description_color",
280
+ "type": "color_picker",
281
+ "instructions": "",
282
+ "required": 0,
283
+ "conditional_logic": 0,
284
+ "wrapper": {
285
+ "width": "",
286
+ "class": "",
287
+ "id": ""
288
+ },
289
+ "default_value": "#191e23"
290
+ },
291
+ {
292
+ "key": "field_5cc7017a9b706",
293
+ "label": "Description Size",
294
+ "name": "acfb_price_list_description_size",
295
+ "type": "range",
296
+ "instructions": "",
297
+ "required": 0,
298
+ "conditional_logic": 0,
299
+ "wrapper": {
300
+ "width": "",
301
+ "class": "",
302
+ "id": ""
303
+ },
304
+ "default_value": 16,
305
+ "min": "",
306
+ "max": "",
307
+ "step": "",
308
+ "prepend": "",
309
+ "append": "px"
310
+ }
311
+ ],
312
+ "location": [
313
+ [
314
+ {
315
+ "param": "block",
316
+ "operator": "==",
317
+ "value": "acf/acfb-pricelist"
318
+ }
319
+ ]
320
+ ],
321
+ "menu_order": 0,
322
+ "position": "normal",
323
+ "style": "default",
324
+ "label_placement": "top",
325
+ "instruction_placement": "label",
326
+ "hide_on_screen": "",
327
+ "active": 1,
328
+ "description": "",
329
+ "modified": 1558698497
330
+ }
 
acf-json/group_5cc7092c01eb4.json CHANGED
@@ -1,213 +1,214 @@
1
  {
2
- "key": "group_5cc7092c01eb4",
3
- "title": "Click To Tweet",
4
- "fields": [
5
- {
6
- "key": "field_5cc859c489bde",
7
- "label": "Content",
8
- "name": "",
9
- "type": "tab",
10
- "instructions": "",
11
- "required": 0,
12
- "conditional_logic": 0,
13
- "wrapper": {
14
- "width": "",
15
- "class": "",
16
- "id": ""
17
- },
18
- "placement": "top",
19
- "endpoint": 0
20
- },
21
- {
22
- "key": "field_5cc70bff80772",
23
- "label": "Twitter Handle",
24
- "name": "acfb_click_to_tweet_handler",
25
- "type": "text",
26
- "instructions": "",
27
- "required": 0,
28
- "conditional_logic": 0,
29
- "wrapper": {
30
- "width": "",
31
- "class": "",
32
- "id": ""
33
- },
34
- "default_value": "acfwpblocks",
35
- "placeholder": "acfwpblocks",
36
- "prepend": "@",
37
- "append": "",
38
- "maxlength": ""
39
- },
40
- {
41
- "key": "field_5cc70bcb80771",
42
- "label": "Content",
43
- "name": "acfb_click_to_tweet_content",
44
- "type": "textarea",
45
- "instructions": "",
46
- "required": 0,
47
- "conditional_logic": 0,
48
- "wrapper": {
49
- "width": "",
50
- "class": "",
51
- "id": ""
52
- },
53
- "default_value": "#ACFBlocks is a collection of ready-to-use #Gutenberg Blocks for WordPress. Supercharge your Gutenberg editor with high quality beautiful WordPress blocks. Best of all it’s FREE.",
54
- "placeholder": "",
55
- "maxlength": "",
56
- "rows": "",
57
- "new_lines": ""
58
- },
59
- {
60
- "key": "field_5cc7104900845",
61
- "label": "Button Text",
62
- "name": "acfb_click_to_tweet_button_text",
63
- "type": "text",
64
- "instructions": "",
65
- "required": 0,
66
- "conditional_logic": 0,
67
- "wrapper": {
68
- "width": "",
69
- "class": "",
70
- "id": ""
71
- },
72
- "default_value": "Click to Tweet",
73
- "placeholder": "Click to Tweet",
74
- "prepend": "",
75
- "append": "",
76
- "maxlength": ""
77
- },
78
- {
79
- "key": "field_5cc859d789bdf",
80
- "label": "Design",
81
- "name": "",
82
- "type": "tab",
83
- "instructions": "",
84
- "required": 0,
85
- "conditional_logic": 0,
86
- "wrapper": {
87
- "width": "",
88
- "class": "",
89
- "id": ""
90
- },
91
- "placement": "top",
92
- "endpoint": 0
93
- },
94
- {
95
- "key": "field_5cc70f3700841",
96
- "label": "Background Color",
97
- "name": "acfb_click_to_tweet_bg_color",
98
- "type": "color_picker",
99
- "instructions": "",
100
- "required": 0,
101
- "conditional_logic": 0,
102
- "wrapper": {
103
- "width": "",
104
- "class": "",
105
- "id": ""
106
- },
107
- "default_value": "#f3f4f5"
108
- },
109
- {
110
- "key": "field_5cc70f7c00842",
111
- "label": "Text Color",
112
- "name": "acfb_click_to_tweet_text_color",
113
- "type": "color_picker",
114
- "instructions": "",
115
- "required": 0,
116
- "conditional_logic": 0,
117
- "wrapper": {
118
- "width": "",
119
- "class": "",
120
- "id": ""
121
- },
122
- "default_value": "#191e23"
123
- },
124
- {
125
- "key": "field_5cc70fb000843",
126
- "label": "Text Size",
127
- "name": "acfb_click_to_tweet_text_size",
128
- "type": "range",
129
- "instructions": "",
130
- "required": 0,
131
- "conditional_logic": 0,
132
- "wrapper": {
133
- "width": "",
134
- "class": "",
135
- "id": ""
136
- },
137
- "default_value": 24,
138
- "min": "",
139
- "max": "",
140
- "step": "",
141
- "prepend": "",
142
- "append": "px"
143
- },
144
- {
145
- "key": "field_5cc7101700844",
146
- "label": "Button Color",
147
- "name": "acfb_click_to_tweet_button_color",
148
- "type": "color_picker",
149
- "instructions": "",
150
- "required": 0,
151
- "conditional_logic": 0,
152
- "wrapper": {
153
- "width": "",
154
- "class": "",
155
- "id": ""
156
- },
157
- "default_value": "rgba(25, 30, 35, 0.6)"
158
- },
159
- {
160
- "key": "field_5cc711a7d4787",
161
- "label": "Button Hover Color",
162
- "name": "acfb_click_to_tweet_button_hover_color",
163
- "type": "color_picker",
164
- "instructions": "",
165
- "required": 0,
166
- "conditional_logic": 0,
167
- "wrapper": {
168
- "width": "",
169
- "class": "",
170
- "id": ""
171
- },
172
- "default_value": "#191e23"
173
- },
174
- {
175
- "key": "field_5cc7108600846",
176
- "label": "Button Size",
177
- "name": "acfb_click_to_tweet_button_size",
178
- "type": "range",
179
- "instructions": "",
180
- "required": 0,
181
- "conditional_logic": 0,
182
- "wrapper": {
183
- "width": "",
184
- "class": "",
185
- "id": ""
186
- },
187
- "default_value": 12,
188
- "min": "",
189
- "max": "",
190
- "step": "",
191
- "prepend": "",
192
- "append": "px"
193
- }
194
- ],
195
- "location": [
196
- [
197
- {
198
- "param": "block",
199
- "operator": "==",
200
- "value": "acf\/acfb-clicktotweet"
201
- }
202
- ]
203
- ],
204
- "menu_order": 0,
205
- "position": "normal",
206
- "style": "default",
207
- "label_placement": "top",
208
- "instruction_placement": "label",
209
- "hide_on_screen": "",
210
- "active": 1,
211
- "description": "",
212
- "modified": 1557732946
213
- }
 
1
  {
2
+ "key": "group_5cc7092c01eb4",
3
+ "title": "Click To Tweet",
4
+ "private": true,
5
+ "fields": [
6
+ {
7
+ "key": "field_5cc859c489bde",
8
+ "label": "Content",
9
+ "name": "",
10
+ "type": "tab",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "placement": "top",
20
+ "endpoint": 0
21
+ },
22
+ {
23
+ "key": "field_5cc70bff80772",
24
+ "label": "Twitter Handle",
25
+ "name": "acfb_click_to_tweet_handler",
26
+ "type": "text",
27
+ "instructions": "",
28
+ "required": 0,
29
+ "conditional_logic": 0,
30
+ "wrapper": {
31
+ "width": "",
32
+ "class": "",
33
+ "id": ""
34
+ },
35
+ "default_value": "acfwpblocks",
36
+ "placeholder": "acfwpblocks",
37
+ "prepend": "@",
38
+ "append": "",
39
+ "maxlength": ""
40
+ },
41
+ {
42
+ "key": "field_5cc70bcb80771",
43
+ "label": "Content",
44
+ "name": "acfb_click_to_tweet_content",
45
+ "type": "textarea",
46
+ "instructions": "",
47
+ "required": 0,
48
+ "conditional_logic": 0,
49
+ "wrapper": {
50
+ "width": "",
51
+ "class": "",
52
+ "id": ""
53
+ },
54
+ "default_value": "#ACFBlocks is a collection of ready-to-use #Gutenberg Blocks for WordPress. Supercharge your Gutenberg editor with high quality beautiful WordPress blocks. Best of all it’s FREE.",
55
+ "placeholder": "",
56
+ "maxlength": "",
57
+ "rows": "",
58
+ "new_lines": ""
59
+ },
60
+ {
61
+ "key": "field_5cc7104900845",
62
+ "label": "Button Text",
63
+ "name": "acfb_click_to_tweet_button_text",
64
+ "type": "text",
65
+ "instructions": "",
66
+ "required": 0,
67
+ "conditional_logic": 0,
68
+ "wrapper": {
69
+ "width": "",
70
+ "class": "",
71
+ "id": ""
72
+ },
73
+ "default_value": "Click to Tweet",
74
+ "placeholder": "Click to Tweet",
75
+ "prepend": "",
76
+ "append": "",
77
+ "maxlength": ""
78
+ },
79
+ {
80
+ "key": "field_5cc859d789bdf",
81
+ "label": "Design",
82
+ "name": "",
83
+ "type": "tab",
84
+ "instructions": "",
85
+ "required": 0,
86
+ "conditional_logic": 0,
87
+ "wrapper": {
88
+ "width": "",
89
+ "class": "",
90
+ "id": ""
91
+ },
92
+ "placement": "top",
93
+ "endpoint": 0
94
+ },
95
+ {
96
+ "key": "field_5cc70f3700841",
97
+ "label": "Background Color",
98
+ "name": "acfb_click_to_tweet_bg_color",
99
+ "type": "color_picker",
100
+ "instructions": "",
101
+ "required": 0,
102
+ "conditional_logic": 0,
103
+ "wrapper": {
104
+ "width": "",
105
+ "class": "",
106
+ "id": ""
107
+ },
108
+ "default_value": "#f3f4f5"
109
+ },
110
+ {
111
+ "key": "field_5cc70f7c00842",
112
+ "label": "Text Color",
113
+ "name": "acfb_click_to_tweet_text_color",
114
+ "type": "color_picker",
115
+ "instructions": "",
116
+ "required": 0,
117
+ "conditional_logic": 0,
118
+ "wrapper": {
119
+ "width": "",
120
+ "class": "",
121
+ "id": ""
122
+ },
123
+ "default_value": "#191e23"
124
+ },
125
+ {
126
+ "key": "field_5cc70fb000843",
127
+ "label": "Text Size",
128
+ "name": "acfb_click_to_tweet_text_size",
129
+ "type": "range",
130
+ "instructions": "",
131
+ "required": 0,
132
+ "conditional_logic": 0,
133
+ "wrapper": {
134
+ "width": "",
135
+ "class": "",
136
+ "id": ""
137
+ },
138
+ "default_value": 24,
139
+ "min": "",
140
+ "max": "",
141
+ "step": "",
142
+ "prepend": "",
143
+ "append": "px"
144
+ },
145
+ {
146
+ "key": "field_5cc7101700844",
147
+ "label": "Button Color",
148
+ "name": "acfb_click_to_tweet_button_color",
149
+ "type": "color_picker",
150
+ "instructions": "",
151
+ "required": 0,
152
+ "conditional_logic": 0,
153
+ "wrapper": {
154
+ "width": "",
155
+ "class": "",
156
+ "id": ""
157
+ },
158
+ "default_value": "rgba(25, 30, 35, 0.6)"
159
+ },
160
+ {
161
+ "key": "field_5cc711a7d4787",
162
+ "label": "Button Hover Color",
163
+ "name": "acfb_click_to_tweet_button_hover_color",
164
+ "type": "color_picker",
165
+ "instructions": "",
166
+ "required": 0,
167
+ "conditional_logic": 0,
168
+ "wrapper": {
169
+ "width": "",
170
+ "class": "",
171
+ "id": ""
172
+ },
173
+ "default_value": "#191e23"
174
+ },
175
+ {
176
+ "key": "field_5cc7108600846",
177
+ "label": "Button Size",
178
+ "name": "acfb_click_to_tweet_button_size",
179
+ "type": "range",
180
+ "instructions": "",
181
+ "required": 0,
182
+ "conditional_logic": 0,
183
+ "wrapper": {
184
+ "width": "",
185
+ "class": "",
186
+ "id": ""
187
+ },
188
+ "default_value": 12,
189
+ "min": "",
190
+ "max": "",
191
+ "step": "",
192
+ "prepend": "",
193
+ "append": "px"
194
+ }
195
+ ],
196
+ "location": [
197
+ [
198
+ {
199
+ "param": "block",
200
+ "operator": "==",
201
+ "value": "acf/acfb-clicktotweet"
202
+ }
203
+ ]
204
+ ],
205
+ "menu_order": 0,
206
+ "position": "normal",
207
+ "style": "default",
208
+ "label_placement": "top",
209
+ "instruction_placement": "label",
210
+ "hide_on_screen": "",
211
+ "active": 1,
212
+ "description": "",
213
+ "modified": 1558698462
214
+ }
acf-json/group_5cd00bce35670.json CHANGED
@@ -1,6 +1,7 @@
1
  {
2
  "key": "group_5cd00bce35670",
3
  "title": "Posts",
 
4
  "fields": [
5
  {
6
  "key": "field_5cd3f78c914d2",
@@ -713,5 +714,5 @@
713
  "hide_on_screen": "",
714
  "active": 1,
715
  "description": "",
716
- "modified": 1557752513
717
  }
1
  {
2
  "key": "group_5cd00bce35670",
3
  "title": "Posts",
4
+ "private" : true,
5
  "fields": [
6
  {
7
  "key": "field_5cd3f78c914d2",
714
  "hide_on_screen": "",
715
  "active": 1,
716
  "description": "",
717
+ "modified": 1558698490
718
  }
acf-json/group_5cde975abf269.json ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "key": "group_5cde975abf269",
3
+ "title": "Social Sharing Block",
4
+ "private": true,
5
+ "fields": [
6
+ {
7
+ "key": "field_5cdff704f1ebf",
8
+ "label": "Content",
9
+ "name": "",
10
+ "type": "tab",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "placement": "top",
20
+ "endpoint": 0
21
+ },
22
+ {
23
+ "key": "field_5cde9c8672840",
24
+ "label": "Social Networks",
25
+ "name": "acfb_social_network",
26
+ "type": "checkbox",
27
+ "instructions": "Click on the network icons to enable.",
28
+ "required": 0,
29
+ "conditional_logic": 0,
30
+ "wrapper": {
31
+ "width": "",
32
+ "class": "acfb_social_networks",
33
+ "id": ""
34
+ },
35
+ "choices": {
36
+ "1": "<svg class=\"acfb_social_icons acfb_social_facebook_main\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M18.77 7.46H14.5v-1.9c0-.9.6-1.1 1-1.1h3V.5h-4.33C10.24.5 9.5 3.44 9.5 5.32v2.15h-3v4h3v12h5v-12h3.85l.42-4z\" stroke=\"none\" fill=\"#666666\" stroke-width=\"2px\"/></svg>",
37
+ "2": "<svg class=\"acfb_social_icons acfb_social_twitter_main\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M23.44 4.83c-.8.37-1.5.38-2.22.02.93-.56.98-.96 1.32-2.02-.88.52-1.86.9-2.9 1.1-.82-.88-2-1.43-3.3-1.43-2.5 0-4.55 2.04-4.55 4.54 0 .36.03.7.1 1.04-3.77-.2-7.12-2-9.36-4.75-.4.67-.6 1.45-.6 2.3 0 1.56.8 2.95 2 3.77-.74-.03-1.44-.23-2.05-.57v.06c0 2.2 1.56 4.03 3.64 4.44-.67.2-1.37.2-2.06.08.58 1.8 2.26 3.12 4.25 3.16C5.78 18.1 3.37 18.74 1 18.46c2 1.3 4.4 2.04 6.97 2.04 8.35 0 12.92-6.92 12.92-12.93 0-.2 0-.4-.02-.6.9-.63 1.96-1.22 2.56-2.14z\" stroke=\"none\" fill=\"#666666\" stroke-width=\"2px\"/></svg>",
38
+ "3": "<svg class=\"acfb_social_icons acfb_social_email_main\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M22 4H2C.9 4 0 4.9 0 6v12c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.25 14.43l-3.5 2c-.08.05-.17.07-.25.07-.17 0-.34-.1-.43-.25-.14-.24-.06-.55.18-.68l3.5-2c.24-.14.55-.06.68.18.14.24.06.55-.18.68zm4.75.07c-.1 0-.2-.03-.27-.08l-8.5-5.5c-.23-.15-.3-.46-.15-.7.15-.22.46-.3.7-.14L12 13.4l8.23-5.32c.23-.15.54-.08.7.15.14.23.07.54-.16.7l-8.5 5.5c-.08.04-.17.07-.27.07zm8.93 1.75c-.1.16-.26.25-.43.25-.08 0-.17-.02-.25-.07l-3.5-2c-.24-.13-.32-.44-.18-.68s.44-.32.68-.18l3.5 2c.24.13.32.44.18.68z\" stroke=\"none\" fill=\"#666666\" stroke-width=\"2px\"/></svg>",
39
+ "4": "<svg class=\"acfb_social_icons acfb_social_pinterest_main\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M12.14.5C5.86.5 2.7 5 2.7 8.75c0 2.27.86 4.3 2.7 5.05.3.12.57 0 .66-.33l.27-1.06c.1-.32.06-.44-.2-.73-.52-.62-.86-1.44-.86-2.6 0-3.33 2.5-6.32 6.5-6.32 3.55 0 5.5 2.17 5.5 5.07 0 3.8-1.7 7.02-4.2 7.02-1.37 0-2.4-1.14-2.07-2.54.4-1.68 1.16-3.48 1.16-4.7 0-1.07-.58-1.98-1.78-1.98-1.4 0-2.55 1.47-2.55 3.42 0 1.25.43 2.1.43 2.1l-1.7 7.2c-.5 2.13-.08 4.75-.04 5 .02.17.22.2.3.1.14-.18 1.82-2.26 2.4-4.33.16-.58.93-3.63.93-3.63.45.88 1.8 1.65 3.22 1.65 4.25 0 7.13-3.87 7.13-9.05C20.5 4.15 17.18.5 12.14.5z\" stroke=\"none\" fill=\"#666666\" stroke-width=\"2px\"/></svg>",
40
+ "5": "<svg class=\"acfb_social_icons acfb_social_linkedin_main\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M6.5 21.5h-5v-13h5v13zM4 6.5C2.5 6.5 1.5 5.3 1.5 4s1-2.4 2.5-2.4c1.6 0 2.5 1 2.6 2.5 0 1.4-1 2.5-2.6 2.5zm11.5 6c-1 0-2 1-2 2v7h-5v-13h5V10s1.6-1.5 4-1.5c3 0 5 2.2 5 6.3v6.7h-5v-7c0-1-1-2-2-2z\" stroke=\"none\" fill=\"#666666\" stroke-width=\"2px\"/></svg>",
41
+ "6": "<svg class=\"acfb_social_icons acfb_social_reddit_main\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M24 11.5c0-1.65-1.35-3-3-3-.96 0-1.86.48-2.42 1.24-1.64-1-3.75-1.64-6.07-1.72.08-1.1.4-3.05 1.52-3.7.72-.4 1.73-.24 3 .5C17.2 6.3 18.46 7.5 20 7.5c1.65 0 3-1.35 3-3s-1.35-3-3-3c-1.38 0-2.54.94-2.88 2.22-1.43-.72-2.64-.8-3.6-.25-1.64.94-1.95 3.47-2 4.55-2.33.08-4.45.7-6.1 1.72C4.86 8.98 3.96 8.5 3 8.5c-1.65 0-3 1.35-3 3 0 1.32.84 2.44 2.05 2.84-.03.22-.05.44-.05.66 0 3.86 4.5 7 10 7s10-3.14 10-7c0-.22-.02-.44-.05-.66 1.2-.4 2.05-1.54 2.05-2.84zM2.3 13.37C1.5 13.07 1 12.35 1 11.5c0-1.1.9-2 2-2 .64 0 1.22.32 1.6.82-1.1.85-1.92 1.9-2.3 3.05zm3.7.13c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm9.8 4.8c-1.08.63-2.42.96-3.8.96-1.4 0-2.74-.34-3.8-.95-.24-.13-.32-.44-.2-.68.15-.24.46-.32.7-.18 1.83 1.06 4.76 1.06 6.6 0 .23-.13.53-.05.67.2.14.23.06.54-.18.67zm.2-2.8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.7-2.13c-.38-1.16-1.2-2.2-2.3-3.05.38-.5.97-.82 1.6-.82 1.1 0 2 .9 2 2 0 .84-.53 1.57-1.3 1.87z\" stroke=\"none\" fill=\"#666666\" stroke-width=\"2px\"/></svg>",
42
+ "7": "<svg class=\"acfb_social_icons acfb_social_xing_main\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M10.2 9.7l-3-5.4C7.2 4 7 4 6.8 4h-5c-.3 0-.4 0-.5.2v.5L4 10 .4 16v.5c0 .2.2.3.4.3h5c.3 0 .4 0 .5-.2l4-6.6v-.5zM24 .2l-.5-.2H18s-.2 0-.3.3l-8 14v.4l5.2 9c0 .2 0 .3.3.3h5.4s.3 0 .4-.2c.2-.2.2-.4 0-.5l-5-8.8L24 .7V.2z\" stroke=\"none\" fill=\"#666666\" stroke-width=\"2px\"/></svg>",
43
+ "8": "<svg class=\"acfb_social_icons acfb_social_whatsapp_main\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M20.1 3.9C17.9 1.7 15 .5 12 .5 5.8.5.7 5.6.7 11.9c0 2 .5 3.9 1.5 5.6L.6 23.4l6-1.6c1.6.9 3.5 1.3 5.4 1.3 6.3 0 11.4-5.1 11.4-11.4-.1-2.8-1.2-5.7-3.3-7.8zM12 21.4c-1.7 0-3.3-.5-4.8-1.3l-.4-.2-3.5 1 1-3.4L4 17c-1-1.5-1.4-3.2-1.4-5.1 0-5.2 4.2-9.4 9.4-9.4 2.5 0 4.9 1 6.7 2.8 1.8 1.8 2.8 4.2 2.8 6.7-.1 5.2-4.3 9.4-9.5 9.4zm5.1-7.1c-.3-.1-1.7-.9-1.9-1-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.1-.2.2-.3.2-.6.1s-1.2-.5-2.3-1.4c-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6s.3-.3.4-.5c.2-.1.3-.3.4-.5.1-.2 0-.4 0-.5C10 9 9.3 7.6 9 7c-.1-.4-.4-.3-.5-.3h-.6s-.4.1-.7.3c-.3.3-1 1-1 2.4s1 2.8 1.1 3c.1.2 2 3.1 4.9 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.6-.1 1.7-.7 1.9-1.3.2-.7.2-1.2.2-1.3-.1-.3-.3-.4-.6-.5z\" stroke=\"none\" fill=\"#666666\" stroke-width=\"2px\"/></svg>",
44
+ "9": "<svg class=\"acfb_social_icons acfb_social_hackernews_main\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 140 140\"><path fill-rule=\"evenodd\" d=\"M60.94 82.314L17 0h20.08l25.85 52.093c.397.927.86 1.888 1.39 2.883.53.994.995 2.02 1.393 3.08.265.4.463.764.596 1.095.13.334.262.63.395.898.662 1.325 1.26 2.618 1.79 3.877.53 1.26.993 2.42 1.39 3.48 1.06-2.254 2.22-4.673 3.48-7.258 1.26-2.585 2.552-5.27 3.877-8.052L103.49 0h18.69L77.84 83.308v53.087h-16.9v-54.08z\" stroke=\"none\" fill=\"#666666\" stroke-width=\"2px\"/></svg>",
45
+ "10": "<svg class=\"acfb_social_icons acfb_social_vk_main\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M21.547 7h-3.29a.743.743 0 0 0-.655.392s-1.312 2.416-1.734 3.23C14.734 12.813 14 12.126 14 11.11V7.603A1.104 1.104 0 0 0 12.896 6.5h-2.474a1.982 1.982 0 0 0-1.75.813s1.255-.204 1.255 1.49c0 .42.022 1.626.04 2.64a.73.73 0 0 1-1.272.503 21.54 21.54 0 0 1-2.498-4.543.693.693 0 0 0-.63-.403h-2.99a.508.508 0 0 0-.48.685C3.005 10.175 6.918 18 11.38 18h1.878a.742.742 0 0 0 .742-.742v-1.135a.73.73 0 0 1 1.23-.53l2.247 2.112a1.09 1.09 0 0 0 .746.295h2.953c1.424 0 1.424-.988.647-1.753-.546-.538-2.518-2.617-2.518-2.617a1.02 1.02 0 0 1-.078-1.323c.637-.84 1.68-2.212 2.122-2.8.603-.804 1.697-2.507.197-2.507z\" stroke=\"none\" fill=\"#666666\" stroke-width=\"2px\"/></svg>",
46
+ "11": "<svg class=\"acfb_social_icons acfb_social_telegram_main\"xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M.707 8.475C.275 8.64 0 9.508 0 9.508s.284.867.718 1.03l5.09 1.897 1.986 6.38a1.102 1.102 0 0 0 1.75.527l2.96-2.41a.405.405 0 0 1 .494-.013l5.34 3.87a1.1 1.1 0 0 0 1.046.135 1.1 1.1 0 0 0 .682-.803l3.91-18.795A1.102 1.102 0 0 0 22.5.075L.706 8.475z\" stroke=\"none\" fill=\"#666666\" stroke-width=\"2px\"/></svg>"
47
+ },
48
+ "allow_custom": 0,
49
+ "default_value": [1, 2, 3],
50
+ "layout": "vertical",
51
+ "toggle": 0,
52
+ "return_format": "value",
53
+ "save_custom": 0
54
+ },
55
+ {
56
+ "key": "field_5cdff85e00583",
57
+ "label": "Button Label",
58
+ "name": "acfb_button_label",
59
+ "type": "select",
60
+ "instructions": "",
61
+ "required": 0,
62
+ "conditional_logic": 0,
63
+ "wrapper": {
64
+ "width": "",
65
+ "class": "",
66
+ "id": ""
67
+ },
68
+ "choices": {
69
+ "bi": "Brand Name And Icon",
70
+ "b": "Brand Name",
71
+ "i": "Brand Icon"
72
+ },
73
+ "default_value": ["Brand Name And Icon"],
74
+ "allow_null": 0,
75
+ "multiple": 0,
76
+ "ui": 0,
77
+ "return_format": "value",
78
+ "ajax": 0,
79
+ "placeholder": ""
80
+ },
81
+ {
82
+ "key": "field_5cdff718f1ec0",
83
+ "label": "Design",
84
+ "name": "",
85
+ "type": "tab",
86
+ "instructions": "",
87
+ "required": 0,
88
+ "conditional_logic": 0,
89
+ "wrapper": {
90
+ "width": "",
91
+ "class": "",
92
+ "id": ""
93
+ },
94
+ "placement": "top",
95
+ "endpoint": 0
96
+ },
97
+ {
98
+ "key": "field_5ce0083c74945",
99
+ "label": "Rounded Corners",
100
+ "name": "acfb_rounded_corners",
101
+ "type": "range",
102
+ "instructions": "",
103
+ "required": 0,
104
+ "conditional_logic": 0,
105
+ "wrapper": {
106
+ "width": "",
107
+ "class": "",
108
+ "id": ""
109
+ },
110
+ "default_value": 0,
111
+ "min": "",
112
+ "max": "",
113
+ "step": "",
114
+ "prepend": "",
115
+ "append": ""
116
+ },
117
+ {
118
+ "key": "field_5ce00b5254e6a",
119
+ "label": "Buttons Color",
120
+ "name": "acfb_button_color",
121
+ "type": "true_false",
122
+ "instructions": "",
123
+ "required": 0,
124
+ "conditional_logic": 0,
125
+ "wrapper": {
126
+ "width": "",
127
+ "class": "",
128
+ "id": ""
129
+ },
130
+ "message": "",
131
+ "default_value": 0,
132
+ "ui": 1,
133
+ "ui_on_text": "Brand",
134
+ "ui_off_text": "Custom"
135
+ },
136
+ {
137
+ "key": "field_5ce00bb482a7b",
138
+ "label": "Background Color",
139
+ "name": "acfb_background_color",
140
+ "type": "color_picker",
141
+ "instructions": "",
142
+ "required": 0,
143
+ "conditional_logic": [
144
+ [
145
+ {
146
+ "field": "field_5ce00b5254e6a",
147
+ "operator": "!=",
148
+ "value": "1"
149
+ }
150
+ ]
151
+ ],
152
+ "wrapper": {
153
+ "width": "",
154
+ "class": "",
155
+ "id": ""
156
+ },
157
+ "default_value": "#f3f4f5"
158
+ },
159
+ {
160
+ "key": "field_5ce010e9cc5a7",
161
+ "label": "Text Color",
162
+ "name": "acfb_text_color",
163
+ "type": "color_picker",
164
+ "instructions": "",
165
+ "required": 0,
166
+ "conditional_logic": [
167
+ [
168
+ {
169
+ "field": "field_5ce00b5254e6a",
170
+ "operator": "!=",
171
+ "value": "1"
172
+ }
173
+ ]
174
+ ],
175
+ "wrapper": {
176
+ "width": "",
177
+ "class": "",
178
+ "id": ""
179
+ },
180
+ "default_value": "#191e23"
181
+ }
182
+ ],
183
+ "location": [
184
+ [
185
+ {
186
+ "param": "block",
187
+ "operator": "==",
188
+ "value": "acf/acfb-socialsharing"
189
+ }
190
+ ]
191
+ ],
192
+ "menu_order": 0,
193
+ "position": "normal",
194
+ "style": "default",
195
+ "label_placement": "top",
196
+ "instruction_placement": "label",
197
+ "hide_on_screen": "",
198
+ "active": 1,
199
+ "description": "",
200
+ "modified": 1558698524
201
+ }
block-templates/social-sharing.php ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $uid = $block['id'];
3
+ $acfb_permalink = get_permalink();
4
+ $acfb_pagetitle = get_the_title();
5
+
6
+ $className = 'acfb_social_sharing_main_block';
7
+ if( !empty($block['className']) ) {
8
+ $className .= ' ' . $block['className'];
9
+ }
10
+ if( !empty($block['align']) ) {
11
+ $className .= ' align' . $block['align'];
12
+ }
13
+
14
+ $acfb_socialLinks = array();
15
+ $acfb_socialNames = array();
16
+ $acfb_socialpaths = array();
17
+ array_push($acfb_socialLinks,"https://facebook.com/sharer/sharer.php?u={$acfb_permalink}","https://twitter.com/intent/tweet/?text={$acfb_pagetitle}&amp;url={$acfb_permalink}","mailto:?subject={$acfb_pagetitle}&amp;body={$acfb_permalink}","https://pinterest.com/pin/create/button/?url={$acfb_permalink}&amp;media=http%3A%2F%2Fsharingbuttons.io&amp;description={$acfb_pagetitle}.","https://www.linkedin.com/shareArticle?mini=true&amp;url={$acfb_permalink}&amp;title={$acfb_pagetitle}&amp;summary={$acfb_pagetitle}&amp;source={$acfb_permalink}","https://reddit.com/submit/?url={$acfb_permalink}&amp;resubmit=true&amp;title={$acfb_pagetitle}","https://www.xing.com/app/user?op=share;url={$acfb_permalink};title={$acfb_pagetitle}","whatsapp://send?text={$acfb_pagetitle}.{$acfb_permalink}","https://news.ycombinator.com/submitlink?u={$acfb_permalink}&amp;t={$acfb_pagetitle}","http://vk.com/share.php?title={$acfb_pagetitle}&amp;url={$acfb_permalink}","https://telegram.me/share/url?text={$acfb_pagetitle}&amp;url={$acfb_permalink}");
18
+ array_push($acfb_socialNames , "Facebook","Twitter","Email","Pinterest","Linked In","Reddit","Xing","Whatsapp","Hacker News","Vk","Telegram");
19
+ array_push($acfb_socialpaths , '<path fill="white" d="M18.77 7.46H14.5v-1.9c0-.9.6-1.1 1-1.1h3V.5h-4.33C10.24.5 9.5 3.44 9.5 5.32v2.15h-3v4h3v12h5v-12h3.85l.42-4z"/>' , '<path fill="white" d="M23.44 4.83c-.8.37-1.5.38-2.22.02.93-.56.98-.96 1.32-2.02-.88.52-1.86.9-2.9 1.1-.82-.88-2-1.43-3.3-1.43-2.5 0-4.55 2.04-4.55 4.54 0 .36.03.7.1 1.04-3.77-.2-7.12-2-9.36-4.75-.4.67-.6 1.45-.6 2.3 0 1.56.8 2.95 2 3.77-.74-.03-1.44-.23-2.05-.57v.06c0 2.2 1.56 4.03 3.64 4.44-.67.2-1.37.2-2.06.08.58 1.8 2.26 3.12 4.25 3.16C5.78 18.1 3.37 18.74 1 18.46c2 1.3 4.4 2.04 6.97 2.04 8.35 0 12.92-6.92 12.92-12.93 0-.2 0-.4-.02-.6.9-.63 1.96-1.22 2.56-2.14z"/>' , '<path fill="white" d="M22 4H2C.9 4 0 4.9 0 6v12c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.25 14.43l-3.5 2c-.08.05-.17.07-.25.07-.17 0-.34-.1-.43-.25-.14-.24-.06-.55.18-.68l3.5-2c.24-.14.55-.06.68.18.14.24.06.55-.18.68zm4.75.07c-.1 0-.2-.03-.27-.08l-8.5-5.5c-.23-.15-.3-.46-.15-.7.15-.22.46-.3.7-.14L12 13.4l8.23-5.32c.23-.15.54-.08.7.15.14.23.07.54-.16.7l-8.5 5.5c-.08.04-.17.07-.27.07zm8.93 1.75c-.1.16-.26.25-.43.25-.08 0-.17-.02-.25-.07l-3.5-2c-.24-.13-.32-.44-.18-.68s.44-.32.68-.18l3.5 2c.24.13.32.44.18.68z"/>' , '<path fill="white" d="M12.14.5C5.86.5 2.7 5 2.7 8.75c0 2.27.86 4.3 2.7 5.05.3.12.57 0 .66-.33l.27-1.06c.1-.32.06-.44-.2-.73-.52-.62-.86-1.44-.86-2.6 0-3.33 2.5-6.32 6.5-6.32 3.55 0 5.5 2.17 5.5 5.07 0 3.8-1.7 7.02-4.2 7.02-1.37 0-2.4-1.14-2.07-2.54.4-1.68 1.16-3.48 1.16-4.7 0-1.07-.58-1.98-1.78-1.98-1.4 0-2.55 1.47-2.55 3.42 0 1.25.43 2.1.43 2.1l-1.7 7.2c-.5 2.13-.08 4.75-.04 5 .02.17.22.2.3.1.14-.18 1.82-2.26 2.4-4.33.16-.58.93-3.63.93-3.63.45.88 1.8 1.65 3.22 1.65 4.25 0 7.13-3.87 7.13-9.05C20.5 4.15 17.18.5 12.14.5z"/>' , '<path fill="white" d="M6.5 21.5h-5v-13h5v13zM4 6.5C2.5 6.5 1.5 5.3 1.5 4s1-2.4 2.5-2.4c1.6 0 2.5 1 2.6 2.5 0 1.4-1 2.5-2.6 2.5zm11.5 6c-1 0-2 1-2 2v7h-5v-13h5V10s1.6-1.5 4-1.5c3 0 5 2.2 5 6.3v6.7h-5v-7c0-1-1-2-2-2z"/>' , '<path fill="white" d="M24 11.5c0-1.65-1.35-3-3-3-.96 0-1.86.48-2.42 1.24-1.64-1-3.75-1.64-6.07-1.72.08-1.1.4-3.05 1.52-3.7.72-.4 1.73-.24 3 .5C17.2 6.3 18.46 7.5 20 7.5c1.65 0 3-1.35 3-3s-1.35-3-3-3c-1.38 0-2.54.94-2.88 2.22-1.43-.72-2.64-.8-3.6-.25-1.64.94-1.95 3.47-2 4.55-2.33.08-4.45.7-6.1 1.72C4.86 8.98 3.96 8.5 3 8.5c-1.65 0-3 1.35-3 3 0 1.32.84 2.44 2.05 2.84-.03.22-.05.44-.05.66 0 3.86 4.5 7 10 7s10-3.14 10-7c0-.22-.02-.44-.05-.66 1.2-.4 2.05-1.54 2.05-2.84zM2.3 13.37C1.5 13.07 1 12.35 1 11.5c0-1.1.9-2 2-2 .64 0 1.22.32 1.6.82-1.1.85-1.92 1.9-2.3 3.05zm3.7.13c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm9.8 4.8c-1.08.63-2.42.96-3.8.96-1.4 0-2.74-.34-3.8-.95-.24-.13-.32-.44-.2-.68.15-.24.46-.32.7-.18 1.83 1.06 4.76 1.06 6.6 0 .23-.13.53-.05.67.2.14.23.06.54-.18.67zm.2-2.8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.7-2.13c-.38-1.16-1.2-2.2-2.3-3.05.38-.5.97-.82 1.6-.82 1.1 0 2 .9 2 2 0 .84-.53 1.57-1.3 1.87z"/>' , '<path fill="white" d="M10.2 9.7l-3-5.4C7.2 4 7 4 6.8 4h-5c-.3 0-.4 0-.5.2v.5L4 10 .4 16v.5c0 .2.2.3.4.3h5c.3 0 .4 0 .5-.2l4-6.6v-.5zM24 .2l-.5-.2H18s-.2 0-.3.3l-8 14v.4l5.2 9c0 .2 0 .3.3.3h5.4s.3 0 .4-.2c.2-.2.2-.4 0-.5l-5-8.8L24 .7V.2z"/>' ,'<path fill="white" d="M20.1 3.9C17.9 1.7 15 .5 12 .5 5.8.5.7 5.6.7 11.9c0 2 .5 3.9 1.5 5.6L.6 23.4l6-1.6c1.6.9 3.5 1.3 5.4 1.3 6.3 0 11.4-5.1 11.4-11.4-.1-2.8-1.2-5.7-3.3-7.8zM12 21.4c-1.7 0-3.3-.5-4.8-1.3l-.4-.2-3.5 1 1-3.4L4 17c-1-1.5-1.4-3.2-1.4-5.1 0-5.2 4.2-9.4 9.4-9.4 2.5 0 4.9 1 6.7 2.8 1.8 1.8 2.8 4.2 2.8 6.7-.1 5.2-4.3 9.4-9.5 9.4zm5.1-7.1c-.3-.1-1.7-.9-1.9-1-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.1-.2.2-.3.2-.6.1s-1.2-.5-2.3-1.4c-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6s.3-.3.4-.5c.2-.1.3-.3.4-.5.1-.2 0-.4 0-.5C10 9 9.3 7.6 9 7c-.1-.4-.4-.3-.5-.3h-.6s-.4.1-.7.3c-.3.3-1 1-1 2.4s1 2.8 1.1 3c.1.2 2 3.1 4.9 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.6-.1 1.7-.7 1.9-1.3.2-.7.2-1.2.2-1.3-.1-.3-.3-.4-.6-.5z"/>' ,'<path fill="white" d="M60.94 82.314L17 0h20.08l25.85 52.093c.397.927.86 1.888 1.39 2.883.53.994.995 2.02 1.393 3.08.265.4.463.764.596 1.095.13.334.262.63.395.898.662 1.325 1.26 2.618 1.79 3.877.53 1.26.993 2.42 1.39 3.48 1.06-2.254 2.22-4.673 3.48-7.258 1.26-2.585 2.552-5.27 3.877-8.052L103.49 0h18.69L77.84 83.308v53.087h-16.9v-54.08z"></path>' ,'<path fill="white" d="M21.547 7h-3.29a.743.743 0 0 0-.655.392s-1.312 2.416-1.734 3.23C14.734 12.813 14 12.126 14 11.11V7.603A1.104 1.104 0 0 0 12.896 6.5h-2.474a1.982 1.982 0 0 0-1.75.813s1.255-.204 1.255 1.49c0 .42.022 1.626.04 2.64a.73.73 0 0 1-1.272.503 21.54 21.54 0 0 1-2.498-4.543.693.693 0 0 0-.63-.403h-2.99a.508.508 0 0 0-.48.685C3.005 10.175 6.918 18 11.38 18h1.878a.742.742 0 0 0 .742-.742v-1.135a.73.73 0 0 1 1.23-.53l2.247 2.112a1.09 1.09 0 0 0 .746.295h2.953c1.424 0 1.424-.988.647-1.753-.546-.538-2.518-2.617-2.518-2.617a1.02 1.02 0 0 1-.078-1.323c.637-.84 1.68-2.212 2.122-2.8.603-.804 1.697-2.507.197-2.507z"/>','<path fill="white" d="M.707 8.475C.275 8.64 0 9.508 0 9.508s.284.867.718 1.03l5.09 1.897 1.986 6.38a1.102 1.102 0 0 0 1.75.527l2.96-2.41a.405.405 0 0 1 .494-.013l5.34 3.87a1.1 1.1 0 0 0 1.046.135 1.1 1.1 0 0 0 .682-.803l3.91-18.795A1.102 1.102 0 0 0 22.5.075L.706 8.475z"/>');
20
+
21
+ for ($j = 0 ; $j < count($acfb_socialLinks) ; $j++) {
22
+ $acfb_socialLinks[$j] = str_replace(" " , "%20" , $acfb_socialLinks[$j]);
23
+ }
24
+
25
+ $acfb_target = "";
26
+ if(is_admin()){
27
+ $acfb_target = 'editor';
28
+ }
29
+
30
+ ?>
31
+
32
+
33
+ <style>
34
+ .<?php echo $uid; ?> a.acfb_btn_styling {
35
+ border-radius: <?php the_field("acfb_rounded_corners"); ?>% !important;
36
+ background-color:<?php the_field("acfb_background_color"); ?> !important;
37
+ }
38
+
39
+ .<?php echo $uid; ?> a > span {
40
+ color: <?php the_field("acfb_text_color"); ?> !important;
41
+ }
42
+
43
+ .<?php echo $uid; ?> svg > path {
44
+ fill: <?php the_field("acfb_text_color"); ?>;
45
+ }
46
+ .<?php echo $uid; ?>.aligncenter {
47
+ justify-content: center !important;
48
+ }
49
+ </style>
50
+
51
+
52
+ <div class="<?php echo $uid; ?> <?php echo esc_attr($className); ?>">
53
+ <?php
54
+ if (get_field("acfb_social_network")) {
55
+ for ($i = 1 ; $i < 12 ; $i++) {
56
+ $acfb_socialSpans ='';
57
+ $afb_socialIcon = '';
58
+ $acfb_viewbox = "0 0 24 24";
59
+ if (get_field('acfb_button_label') !== 'i') {
60
+ $acfb_socialSpans = '<span>'.ucfirst($acfb_socialNames[$i - 1]).'</span>';
61
+ }
62
+ if (get_field('acfb_button_label') !== 'b') {
63
+ $afb_socialIcon = '<svg class="acfb_'.str_replace(' ' , '' , strtolower($acfb_socialNames[$i - 1])).'" viewBox="0 0 24 24">
64
+ '.$acfb_socialpaths[$i - 1].'
65
+ </svg>';
66
+ }
67
+ if (in_array($i , get_field("acfb_social_network"))) {
68
+ if ($i === 9 && get_field("acfb_button_label") === 'i') {
69
+ $afb_socialIcon = '<svg class="acfb_'.str_replace(' ' , '' , strtolower($acfb_socialNames[$i - 1])).'" viewBox="0 0 140 140">
70
+ '.$acfb_socialpaths[$i - 1].'
71
+ </svg>';
72
+ }else if ($i === 9 && get_field("acfb_button_label") === 'b') {
73
+ $afb_socialIcon = '';
74
+ }else if ($i === 9 && get_field("acfb_button_label") === 'bi') {
75
+ $afb_socialIcon = '<svg class="acfb_'.str_replace(' ' , '' , strtolower($acfb_socialNames[$i - 1])).'" viewBox="0 0 140 140">
76
+ '.$acfb_socialpaths[$i - 1].'
77
+ </svg>';
78
+ }
79
+ echo
80
+ '
81
+ <a target='.($acfb_target !== "editor" ? "_target" : "_self").' href='.($acfb_target !== "editor" ? $acfb_socialLinks[$i - 1] : "#").' class="acfb_btn_styling acfb_social_'.str_replace(' ' , '' , strtolower($acfb_socialNames[$i - 1])).'_main">
82
+ '.$afb_socialIcon.'
83
+ '.$acfb_socialSpans.'
84
+ </a>';
85
+ }
86
+ }
87
+ }
88
+ ?>
89
+ </div>
css/acfblocks.css CHANGED
@@ -1,92 +1,90 @@
1
  /************ Testimonial CSS ************/
2
- .acfb_testimonial_wrap{
3
- padding: 5%;
4
- border-radius: 5px;
5
- }
6
 
7
- .acfb_testimonial_wrap .acfb_testimonial_bio{
8
- display: flex;
9
- align-items: center;
10
- margin-top: 40px;
11
  }
12
 
13
- .acfb_testimonial_wrap .acfb_testimonial_bio .acfb_testimonial_avatar_wrap{
14
- border-radius: 100%;
15
- margin-right: 15px;
16
  }
17
 
18
- .acfb_testimonial_wrap .acfb_testimonial_bio .acfb_testimonial_avatar{
19
- object-fit: cover;
20
- height: 100%;
21
- width: 100%;
22
- position: relative;
23
- z-index: 10;
24
- border-radius: 100%;
25
- z-index: 5;
26
- border: solid 2px #000;
27
  }
28
 
29
- .acfb_testimonial_wrap .acfb_testimonial_bio .acfb_testimonial_name{
30
- font-family: "Europa", sans-serif;
31
- font-weight: 700;
32
- line-height: 1.2;
33
- margin: 0;
34
- padding: 0;
35
  }
36
 
37
  /************ Team CSS ************/
38
- .acfb_team_wrap.acfb_team_top{
39
- display: grid;
40
- grid-template-columns: 100%;
41
- justify-items: center;
42
- text-align: center;
43
  }
44
 
45
- .acfb_team_wrap.acfb_team_left{
46
- display: grid;
47
- grid-gap: 25px;
48
- grid-template-columns: auto auto;
49
- align-items: center;
50
  }
51
 
52
- .acfb_team_wrap{
53
- padding: 60px 35px;
54
  }
55
 
56
- .acfb_team_wrap .acfb_team_avatar img{
57
- object-fit: cover;
58
- height: 100%;
59
- width: 100%;
60
- border-radius: 100%;
61
  }
62
- .acfb_team_wrap .acfb_team_info{
63
- margin-top: 20px;
64
  }
65
 
66
-
67
  /************ Star Rating CSS ************/
68
- .acfb_star_rating{
69
- display: flex;
70
- align-items: center;
71
  }
72
 
73
- .acfb_star_rating .acfb_star:before{
74
- content: "\f155";
75
- font-family: dashicons;
76
  }
77
 
78
-
79
  /************ Progress Bar CSS ************/
80
- .acfb_progress_wrapper .acfb_progress_bar_title{
81
  display: block;
82
  margin-bottom: 5px;
83
  }
84
 
85
- .acfb_progress_wrapper .acfb_inner_wrap{
86
  position: relative;
87
  }
88
 
89
- .acfb_progress_wrapper .acfb_progress_bar{
90
  display: -webkit-box;
91
  display: -webkit-flex;
92
  display: -ms-flexbox;
@@ -94,7 +92,7 @@
94
  padding: 7px 15px;
95
  }
96
 
97
- .acfb_progress_wrapper .acfb_progress_bar .acfb_progress_text{
98
  -webkit-box-flex: 1;
99
  -webkit-flex-grow: 1;
100
  -ms-flex-positive: 1;
@@ -105,117 +103,122 @@
105
  text-overflow: ellipsis;
106
  }
107
 
108
-
109
-
110
  /************ Pricing Box CSS ************/
111
- .acfb_pricing_table_wrap{
112
- font-family: Lato,sans-serif;
113
- text-align: center;
114
- padding: 60px 35px;
115
- border-radius: 12px;
116
  }
117
- .acfb_pricing_table_wrap .acfb_pricing_box_title{
118
- font-weight: 700;
119
  }
120
- .acfb_pricing_table_wrap .acfb_pricing_box_price_wrapper{
121
- margin: 20px 0;
122
  }
123
- .acfb_pricing_table_wrap .acfb_pricing_box_price_line{
124
- display: flex;
125
- justify-content: center;
126
  }
127
- .acfb_pricing_table_wrap .acfb_pricing_box_price_line .acfb_pricing_box_price_prefix{
128
- align-self: flex-start;
 
 
129
  }
130
- .acfb_pricing_table_wrap .acfb_pricing_box_price_line .acfb_pricing_box_price{
131
- line-height: 100%!important;
132
  }
133
- .acfb_pricing_table_wrap .acfb_pricing_box_price_line .acfb_pricing_box_price_suffix{
134
- align-self: flex-end;
 
 
135
  }
136
- .acfb_pricing_table_wrap .acfb_pricing_box_subprice{
137
- text-transform: uppercase;
138
- line-height: 100%!important;
139
  }
140
- .acfb_pricing_table_wrap .acfb_pricing_box_button a{
141
- border-radius: 7px;
142
- align-items: center;
143
- font-weight: 600;
144
- cursor: pointer;
145
- padding: 10px 25px;
146
- display: inline-block;
147
- margin: 15px 0;
148
- text-decoration: none;
149
  }
150
 
151
-
152
  /************ Price List CSS ************/
153
  .acfb_price_list_wrap .acfb_price_list_item {
154
- display: grid;
155
- grid-column-gap: 15px;
156
- grid-template-columns: 20% auto;
157
- text-decoration: none;
158
  }
159
 
160
- .acfb_price_list_wrap .acfb_price_list_item .acfb_price_list_text .acfb_price_list_header{
161
- display: grid;
162
- grid-template-columns: max-content auto max-content;
163
- align-items: center;
164
- grid-gap: 15px;
165
- font-weight: 600;
 
 
 
166
  }
167
 
168
- .acfb_price_list_wrap .acfb_price_list_item .acfb_price_list_text p.acfb_price_list_description {
169
- margin-top: 10px;
 
 
 
170
  }
171
 
172
-
173
  /************ Multi Button CSS ************/
174
- .acfb_multibuttons_wrap{
175
- /*display: grid;*/
176
- /*grid-template-columns: auto;*/
177
  }
178
- .acfb_multibuttons_wrap .acfb_button{
179
- padding: 15px 20px;
180
- display: inline-block;
181
- text-decoration: none;
182
- margin-bottom: 5px;
183
  }
184
 
185
-
186
  /************ Counter Number CSS ************/
187
- .acfb_counter_number_wrapper{
188
- display: -webkit-box;
189
- display: -webkit-flex;
190
- display: -ms-flexbox;
191
- display: flex;
192
- font-weight: 600;
193
- line-height: 1;
194
  }
195
 
196
- .acfb_counter_number_wrapper .acfb_counter_number_prefix{
197
- text-align: right;
198
  }
199
 
200
- .acfb_counter_number_wrapper .acfb_counter_number_suffix{
201
- text-align: left;
202
  }
203
 
204
- .acfb_counter_number_wrapper .acfb_counter_number_prefix, .acfb_counter_number_wrapper .acfb_counter_number_suffix{
205
- -webkit-box-flex: 1;
206
- -webkit-flex-grow: 1;
207
- -ms-flex-positive: 1;
208
- flex-grow: 1;
209
- white-space: pre-wrap;
 
210
  }
211
 
212
- .acfb_counter .acfb_counter_title{
213
- text-align: center;
214
- font-weight: 400;
215
- line-height: 2.5;
216
  }
217
 
218
-
219
  /************ Click To Tweet CSS ************/
220
  .acfb_click_to_tweet {
221
  display: block;
@@ -234,17 +237,19 @@ margin-bottom: 5px;
234
  letter-spacing: 0.05em;
235
  }
236
 
237
- .acfb_click_to_tweet a:hover, .acfb_click_to_tweet:hover a:after{
 
238
  text-decoration: none;
239
  }
240
 
241
  .acfb_click_to_tweet a:before {
242
- content: '';
243
  display: inline-block;
244
  width: 50px;
245
  height: 50px;
246
  vertical-align: bottom;
247
- background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10,7L8,11H11V17H5V11L7,7H10M18,7L16,11H19V17H13V11L15,7H18Z' fill='%23666'/%3E%3C/svg%3E") no-repeat right center;
 
248
  }
249
 
250
  .acfb_click_to_tweet a:after {
@@ -257,88 +262,99 @@ margin-bottom: 5px;
257
  text-decoration: none;
258
  transition: all 0.5s ease;
259
  line-height: 20px;
260
- background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z' fill='%2300abf0'/%3E%3C/svg%3E") no-repeat right center;
 
261
  }
262
 
263
-
264
-
265
  /************ Posts CSS ************/
266
 
267
- .acfb_posts_block{}
 
268
 
269
  .acfb_posts_block .acfb_post {
270
  padding: 20px;
271
  }
272
 
273
- .acfb_posts_block .acfb_post_grid{
274
  display: grid;
275
  grid-gap: 10px;
276
  }
277
 
278
- .acfb_posts_block .acfb_post_grid .acfb_post{
279
  overflow: hidden;
280
  }
281
 
282
- .acfb_posts_block .acfb_post_list .acfb_post{
283
  display: grid;
284
  grid-gap: 20px;
285
  grid-template-columns: 1fr 1fr;
286
  margin-bottom: 10px;
287
  }
288
 
289
- .acfb_posts_block .acfb_post_list .acfb_post.no_thumb{
290
  grid-template-columns: 1fr;
291
  }
292
 
293
- .acfb_posts_block .acfb_post .acfb_post_thumbnail, .acfb_posts_block .acfb_post .acfb_post_title, .acfb_posts_block .acfb_post .acfb_post_meta, .acfb_posts_block .acfb_post .acfb_post_excerpt, .acfb_posts_block .acfb_post .acfb_post_button{
294
- margin-bottom: 15px;
 
 
 
 
295
  }
296
 
297
- .acfb_posts_block .acfb_post .acfb_post_title h1, .acfb_posts_block .acfb_post .acfb_post_title h2, .acfb_posts_block .acfb_post .acfb_post_title h3, .acfb_posts_block .acfb_post .acfb_post_title h4, .acfb_posts_block .acfb_post .acfb_post_title h5, .acfb_posts_block .acfb_post .acfb_post_title h6{
298
- margin: 0;
 
 
 
 
 
299
  }
300
 
301
- .acfb_posts_block .acfb_post div:nth-last-of-type(1){
302
  margin-bottom: 0;
303
  }
304
 
305
- .acfb_posts_block .acfb_post_2{
306
  grid-template-columns: 1fr 1fr;
307
  }
308
 
309
- .acfb_posts_block .acfb_post_3{
310
- grid-template-columns: 1fr 1fr 1fr;
311
  }
312
 
313
- .acfb_posts_block .acfb_post_4{
314
- grid-template-columns: 1fr 1fr 1fr 1fr;
315
  }
316
 
317
- .acfb_posts_block .acfb_post_5{
318
- grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
319
  }
320
 
321
- .acfb_posts_block .acfb_post_6{
322
- grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
323
  }
324
 
325
- .acfb_posts_block .acfb_post .acfb_post_btn{
326
- text-decoration: none;
327
- display: inline-block;
328
  }
329
 
330
-
331
  @media only screen and (max-width: 767px) {
332
- .acfb_posts_block .acfb_post_2, .acfb_posts_block .acfb_post_3, .acfb_posts_block .acfb_post_4, .acfb_posts_block .acfb_post_5, .acfb_posts_block .acfb_post_6{
333
- grid-template-columns: 1fr;
334
- }
 
 
 
 
335
 
336
- .acfb_posts_block .acfb_post_list .acfb_post{
337
- grid-template-columns: 1fr;
338
- }
339
  }
340
 
341
-
342
  /************ Photo Collage CSS ************/
343
 
344
  /* Two Gird Style 1*/
@@ -357,9 +373,16 @@ display: inline-block;
357
  grid-template-areas: "one" "two";
358
  }
359
 
360
- .acfb_collage_2 .acfb_one{ grid-area: one; background-size: cover; background-position: center; }
361
- .acfb_collage_2 .acfb_two{ grid-area: two; background-size: cover; background-position: center; }
362
-
 
 
 
 
 
 
 
363
 
364
  /* Three Gird Style 1*/
365
  .acfb_three-grid-style-one {
@@ -409,13 +432,21 @@ display: inline-block;
409
  grid-template-areas: "one two three" "one two three";
410
  }
411
 
412
-
413
- .acfb_collage_3 .acfb_one{ grid-area: one; background-size: cover; background-position: center; }
414
- .acfb_collage_3 .acfb_two{ grid-area: two; background-size: cover; background-position: center; }
415
- .acfb_collage_3 .acfb_three{ grid-area: three; background-size: cover; background-position: center; }
416
-
417
-
418
-
 
 
 
 
 
 
 
 
419
 
420
  /* Four Gird Style 1 */
421
  .acfb_four-grid-style-one {
@@ -537,31 +568,193 @@ display: inline-block;
537
  grid-template-areas: "one three" "two four";
538
  }
539
 
540
- .acfb_collage_4 .acfb_one { grid-area: one; background-size: cover; background-position: center; }
541
- .acfb_collage_4 .acfb_two { grid-area: two; background-size: cover; background-position: center; }
542
- .acfb_collage_4 .acfb_three { grid-area: three; background-size: cover; background-position: center; }
543
- .acfb_collage_4 .acfb_four { grid-area: four; background-size: cover; background-position: center; }
544
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
545
 
546
- .acfb_radio_image .acf-input .acf-radio-list:before, .acfb_radio_image .acf-input .acf-radio-list:after{
 
547
  content: none;
548
  }
549
 
550
- .acfb_radio_image .acf-input .acf-radio-list{
551
  display: grid;
552
  grid-template-columns: 1fr 1fr 1fr 1fr;
553
  grid-gap: 10px;
554
  }
555
 
556
- .acfb_radio_image .acf-input .acf-radio-list li input{
557
- display: none;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
558
  }
559
 
560
- .acfb_radio_image .acf-input .acf-radio-list li .selected img{
561
- border: 2px solid #48a8f4;
 
 
 
 
 
 
 
 
 
 
 
562
  }
563
 
 
 
 
564
 
 
 
 
565
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
566
 
567
- .acfb_svg_icon{fill:none;stroke:#555d66;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  /************ Testimonial CSS ************/
2
+ .acfb_testimonial_wrap {
3
+ padding: 5%;
4
+ border-radius: 5px;
5
+ }
6
 
7
+ .acfb_testimonial_wrap .acfb_testimonial_bio {
8
+ display: flex;
9
+ align-items: center;
10
+ margin-top: 40px;
11
  }
12
 
13
+ .acfb_testimonial_wrap .acfb_testimonial_bio .acfb_testimonial_avatar_wrap {
14
+ border-radius: 100%;
15
+ margin-right: 15px;
16
  }
17
 
18
+ .acfb_testimonial_wrap .acfb_testimonial_bio .acfb_testimonial_avatar {
19
+ object-fit: cover;
20
+ height: 100%;
21
+ width: 100%;
22
+ position: relative;
23
+ z-index: 10;
24
+ border-radius: 100%;
25
+ z-index: 5;
26
+ border: solid 2px #000;
27
  }
28
 
29
+ .acfb_testimonial_wrap .acfb_testimonial_bio .acfb_testimonial_name {
30
+ font-family: "Europa", sans-serif;
31
+ font-weight: 700;
32
+ line-height: 1.2;
33
+ margin: 0;
34
+ padding: 0;
35
  }
36
 
37
  /************ Team CSS ************/
38
+ .acfb_team_wrap.acfb_team_top {
39
+ display: grid;
40
+ grid-template-columns: 100%;
41
+ justify-items: center;
42
+ text-align: center;
43
  }
44
 
45
+ .acfb_team_wrap.acfb_team_left {
46
+ display: grid;
47
+ grid-gap: 25px;
48
+ grid-template-columns: auto auto;
49
+ align-items: center;
50
  }
51
 
52
+ .acfb_team_wrap {
53
+ padding: 60px 35px;
54
  }
55
 
56
+ .acfb_team_wrap .acfb_team_avatar img {
57
+ object-fit: cover;
58
+ height: 100%;
59
+ width: 100%;
60
+ border-radius: 100%;
61
  }
62
+ .acfb_team_wrap .acfb_team_info {
63
+ margin-top: 20px;
64
  }
65
 
 
66
  /************ Star Rating CSS ************/
67
+ .acfb_star_rating {
68
+ display: flex;
69
+ align-items: center;
70
  }
71
 
72
+ .acfb_star_rating .acfb_star:before {
73
+ content: "\f155";
74
+ font-family: dashicons;
75
  }
76
 
 
77
  /************ Progress Bar CSS ************/
78
+ .acfb_progress_wrapper .acfb_progress_bar_title {
79
  display: block;
80
  margin-bottom: 5px;
81
  }
82
 
83
+ .acfb_progress_wrapper .acfb_inner_wrap {
84
  position: relative;
85
  }
86
 
87
+ .acfb_progress_wrapper .acfb_progress_bar {
88
  display: -webkit-box;
89
  display: -webkit-flex;
90
  display: -ms-flexbox;
92
  padding: 7px 15px;
93
  }
94
 
95
+ .acfb_progress_wrapper .acfb_progress_bar .acfb_progress_text {
96
  -webkit-box-flex: 1;
97
  -webkit-flex-grow: 1;
98
  -ms-flex-positive: 1;
103
  text-overflow: ellipsis;
104
  }
105
 
 
 
106
  /************ Pricing Box CSS ************/
107
+ .acfb_pricing_table_wrap {
108
+ font-family: Lato, sans-serif;
109
+ text-align: center;
110
+ padding: 60px 35px;
111
+ border-radius: 12px;
112
  }
113
+ .acfb_pricing_table_wrap .acfb_pricing_box_title {
114
+ font-weight: 700;
115
  }
116
+ .acfb_pricing_table_wrap .acfb_pricing_box_price_wrapper {
117
+ margin: 20px 0;
118
  }
119
+ .acfb_pricing_table_wrap .acfb_pricing_box_price_line {
120
+ display: flex;
121
+ justify-content: center;
122
  }
123
+ .acfb_pricing_table_wrap
124
+ .acfb_pricing_box_price_line
125
+ .acfb_pricing_box_price_prefix {
126
+ align-self: flex-start;
127
  }
128
+ .acfb_pricing_table_wrap .acfb_pricing_box_price_line .acfb_pricing_box_price {
129
+ line-height: 100% !important;
130
  }
131
+ .acfb_pricing_table_wrap
132
+ .acfb_pricing_box_price_line
133
+ .acfb_pricing_box_price_suffix {
134
+ align-self: flex-end;
135
  }
136
+ .acfb_pricing_table_wrap .acfb_pricing_box_subprice {
137
+ text-transform: uppercase;
138
+ line-height: 100% !important;
139
  }
140
+ .acfb_pricing_table_wrap .acfb_pricing_box_button a {
141
+ border-radius: 7px;
142
+ align-items: center;
143
+ font-weight: 600;
144
+ cursor: pointer;
145
+ padding: 10px 25px;
146
+ display: inline-block;
147
+ margin: 15px 0;
148
+ text-decoration: none;
149
  }
150
 
 
151
  /************ Price List CSS ************/
152
  .acfb_price_list_wrap .acfb_price_list_item {
153
+ display: grid;
154
+ grid-column-gap: 15px;
155
+ grid-template-columns: 20% auto;
156
+ text-decoration: none;
157
  }
158
 
159
+ .acfb_price_list_wrap
160
+ .acfb_price_list_item
161
+ .acfb_price_list_text
162
+ .acfb_price_list_header {
163
+ display: grid;
164
+ grid-template-columns: max-content auto max-content;
165
+ align-items: center;
166
+ grid-gap: 15px;
167
+ font-weight: 600;
168
  }
169
 
170
+ .acfb_price_list_wrap
171
+ .acfb_price_list_item
172
+ .acfb_price_list_text
173
+ p.acfb_price_list_description {
174
+ margin-top: 10px;
175
  }
176
 
 
177
  /************ Multi Button CSS ************/
178
+ .acfb_multibuttons_wrap {
179
+ /*display: grid;*/
180
+ /*grid-template-columns: auto;*/
181
  }
182
+ .acfb_multibuttons_wrap .acfb_button {
183
+ padding: 15px 20px;
184
+ display: inline-block;
185
+ text-decoration: none;
186
+ margin-bottom: 5px;
187
  }
188
 
 
189
  /************ Counter Number CSS ************/
190
+ .acfb_counter_number_wrapper {
191
+ display: -webkit-box;
192
+ display: -webkit-flex;
193
+ display: -ms-flexbox;
194
+ display: flex;
195
+ font-weight: 600;
196
+ line-height: 1;
197
  }
198
 
199
+ .acfb_counter_number_wrapper .acfb_counter_number_prefix {
200
+ text-align: right;
201
  }
202
 
203
+ .acfb_counter_number_wrapper .acfb_counter_number_suffix {
204
+ text-align: left;
205
  }
206
 
207
+ .acfb_counter_number_wrapper .acfb_counter_number_prefix,
208
+ .acfb_counter_number_wrapper .acfb_counter_number_suffix {
209
+ -webkit-box-flex: 1;
210
+ -webkit-flex-grow: 1;
211
+ -ms-flex-positive: 1;
212
+ flex-grow: 1;
213
+ white-space: pre-wrap;
214
  }
215
 
216
+ .acfb_counter .acfb_counter_title {
217
+ text-align: center;
218
+ font-weight: 400;
219
+ line-height: 2.5;
220
  }
221
 
 
222
  /************ Click To Tweet CSS ************/
223
  .acfb_click_to_tweet {
224
  display: block;
237
  letter-spacing: 0.05em;
238
  }
239
 
240
+ .acfb_click_to_tweet a:hover,
241
+ .acfb_click_to_tweet:hover a:after {
242
  text-decoration: none;
243
  }
244
 
245
  .acfb_click_to_tweet a:before {
246
+ content: "";
247
  display: inline-block;
248
  width: 50px;
249
  height: 50px;
250
  vertical-align: bottom;
251
+ background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10,7L8,11H11V17H5V11L7,7H10M18,7L16,11H19V17H13V11L15,7H18Z' fill='%23666'/%3E%3C/svg%3E")
252
+ no-repeat right center;
253
  }
254
 
255
  .acfb_click_to_tweet a:after {
262
  text-decoration: none;
263
  transition: all 0.5s ease;
264
  line-height: 20px;
265
+ background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z' fill='%2300abf0'/%3E%3C/svg%3E")
266
+ no-repeat right center;
267
  }
268
 
 
 
269
  /************ Posts CSS ************/
270
 
271
+ .acfb_posts_block {
272
+ }
273
 
274
  .acfb_posts_block .acfb_post {
275
  padding: 20px;
276
  }
277
 
278
+ .acfb_posts_block .acfb_post_grid {
279
  display: grid;
280
  grid-gap: 10px;
281
  }
282
 
283
+ .acfb_posts_block .acfb_post_grid .acfb_post {
284
  overflow: hidden;
285
  }
286
 
287
+ .acfb_posts_block .acfb_post_list .acfb_post {
288
  display: grid;
289
  grid-gap: 20px;
290
  grid-template-columns: 1fr 1fr;
291
  margin-bottom: 10px;
292
  }
293
 
294
+ .acfb_posts_block .acfb_post_list .acfb_post.no_thumb {
295
  grid-template-columns: 1fr;
296
  }
297
 
298
+ .acfb_posts_block .acfb_post .acfb_post_thumbnail,
299
+ .acfb_posts_block .acfb_post .acfb_post_title,
300
+ .acfb_posts_block .acfb_post .acfb_post_meta,
301
+ .acfb_posts_block .acfb_post .acfb_post_excerpt,
302
+ .acfb_posts_block .acfb_post .acfb_post_button {
303
+ margin-bottom: 15px;
304
  }
305
 
306
+ .acfb_posts_block .acfb_post .acfb_post_title h1,
307
+ .acfb_posts_block .acfb_post .acfb_post_title h2,
308
+ .acfb_posts_block .acfb_post .acfb_post_title h3,
309
+ .acfb_posts_block .acfb_post .acfb_post_title h4,
310
+ .acfb_posts_block .acfb_post .acfb_post_title h5,
311
+ .acfb_posts_block .acfb_post .acfb_post_title h6 {
312
+ margin: 0;
313
  }
314
 
315
+ .acfb_posts_block .acfb_post div:nth-last-of-type(1) {
316
  margin-bottom: 0;
317
  }
318
 
319
+ .acfb_posts_block .acfb_post_2 {
320
  grid-template-columns: 1fr 1fr;
321
  }
322
 
323
+ .acfb_posts_block .acfb_post_3 {
324
+ grid-template-columns: 1fr 1fr 1fr;
325
  }
326
 
327
+ .acfb_posts_block .acfb_post_4 {
328
+ grid-template-columns: 1fr 1fr 1fr 1fr;
329
  }
330
 
331
+ .acfb_posts_block .acfb_post_5 {
332
+ grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
333
  }
334
 
335
+ .acfb_posts_block .acfb_post_6 {
336
+ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
337
  }
338
 
339
+ .acfb_posts_block .acfb_post .acfb_post_btn {
340
+ text-decoration: none;
341
+ display: inline-block;
342
  }
343
 
 
344
  @media only screen and (max-width: 767px) {
345
+ .acfb_posts_block .acfb_post_2,
346
+ .acfb_posts_block .acfb_post_3,
347
+ .acfb_posts_block .acfb_post_4,
348
+ .acfb_posts_block .acfb_post_5,
349
+ .acfb_posts_block .acfb_post_6 {
350
+ grid-template-columns: 1fr;
351
+ }
352
 
353
+ .acfb_posts_block .acfb_post_list .acfb_post {
354
+ grid-template-columns: 1fr;
355
+ }
356
  }
357
 
 
358
  /************ Photo Collage CSS ************/
359
 
360
  /* Two Gird Style 1*/
373
  grid-template-areas: "one" "two";
374
  }
375
 
376
+ .acfb_collage_2 .acfb_one {
377
+ grid-area: one;
378
+ background-size: cover;
379
+ background-position: center;
380
+ }
381
+ .acfb_collage_2 .acfb_two {
382
+ grid-area: two;
383
+ background-size: cover;
384
+ background-position: center;
385
+ }
386
 
387
  /* Three Gird Style 1*/
388
  .acfb_three-grid-style-one {
432
  grid-template-areas: "one two three" "one two three";
433
  }
434
 
435
+ .acfb_collage_3 .acfb_one {
436
+ grid-area: one;
437
+ background-size: cover;
438
+ background-position: center;
439
+ }
440
+ .acfb_collage_3 .acfb_two {
441
+ grid-area: two;
442
+ background-size: cover;
443
+ background-position: center;
444
+ }
445
+ .acfb_collage_3 .acfb_three {
446
+ grid-area: three;
447
+ background-size: cover;
448
+ background-position: center;
449
+ }
450
 
451
  /* Four Gird Style 1 */
452
  .acfb_four-grid-style-one {
568
  grid-template-areas: "one three" "two four";
569
  }
570
 
571
+ .acfb_collage_4 .acfb_one {
572
+ grid-area: one;
573
+ background-size: cover;
574
+ background-position: center;
575
+ }
576
+ .acfb_collage_4 .acfb_two {
577
+ grid-area: two;
578
+ background-size: cover;
579
+ background-position: center;
580
+ }
581
+ .acfb_collage_4 .acfb_three {
582
+ grid-area: three;
583
+ background-size: cover;
584
+ background-position: center;
585
+ }
586
+ .acfb_collage_4 .acfb_four {
587
+ grid-area: four;
588
+ background-size: cover;
589
+ background-position: center;
590
+ }
591
 
592
+ .acfb_radio_image .acf-input .acf-radio-list:before,
593
+ .acfb_radio_image .acf-input .acf-radio-list:after {
594
  content: none;
595
  }
596
 
597
+ .acfb_radio_image .acf-input .acf-radio-list {
598
  display: grid;
599
  grid-template-columns: 1fr 1fr 1fr 1fr;
600
  grid-gap: 10px;
601
  }
602
 
603
+ .acfb_radio_image .acf-input .acf-radio-list li input {
604
+ display: none;
605
+ }
606
+
607
+ .acfb_radio_image .acf-input .acf-radio-list li .selected img {
608
+ border: 2px solid #48a8f4;
609
+ }
610
+
611
+ .acfb_svg_icon {
612
+ fill: none;
613
+ stroke: #555d66;
614
+ stroke-linecap: round;
615
+ stroke-linejoin: round;
616
+ stroke-width: 2px;
617
+ }
618
+ /**SOCIAL BLOCKS CSS **/
619
+ .acfb_social_sharing_main_block a:hover {
620
+ opacity: 0.9 !important;
621
+ }
622
+
623
+ .acfb_social_networks ul.acf-checkbox-list li {
624
+ width: calc(100% / 7.7);
625
+ display: inline-block;
626
+ }
627
+
628
+ .acfb_social_networks ul.acf-checkbox-list li img.acfb_social_icons {
629
+ width: 100%;
630
+ }
631
+
632
+ .acfb_social_networks ul.acf-checkbox-list:nth-child(n + 11) {
633
+ width: 100%;
634
+ display: flex;
635
+ flex-direction: row;
636
+ }
637
+
638
+ ul.acf-radio-list li input[type="checkbox"],
639
+ ul.acf-radio-list li input[type="radio"],
640
+ ul.acf-checkbox-list li input[type="checkbox"],
641
+ ul.acf-checkbox-list li input[type="radio"] {
642
+ display: none;
643
+ visibility: hidden;
644
+ }
645
+
646
+ .acfb_social_sharing_main_block a {
647
+ padding: 10px;
648
+ font-size: 16px;
649
+ border-radius: 2px;
650
+ border: 0;
651
+ color: white;
652
+ outline: 0;
653
+ text-decoration: none !important;
654
+ text-align: center;
655
+ margin: 5px 3px;
656
+ }
657
+
658
+ .acfb_social_sharing_main_block a > span {
659
+ cursor: pointer;
660
+ }
661
+
662
+ .acfb_social_networks .acf-checkbox-list label:not(.selected) svg {
663
+ background: white !important;
664
+ }
665
+
666
+ .acfb_social_networks .acf-checkbox-list label:not(.selected) svg path {
667
+ fill: #555d66;
668
+ }
669
+
670
+ .acfb_social_sharing_main_block {
671
+ display: flex;
672
+ flex-direction: row;
673
+ flex-wrap: wrap;
674
+ }
675
+
676
+ svg.acfb_facebook,
677
+ svg.acfb_twitter,
678
+ svg.acfb_pinterest,
679
+ svg.acfb_hackernews,
680
+ svg.acfb_email,
681
+ svg.acfb_linkedin,
682
+ svg.acfb_reddit,
683
+ svg.acfb_xing,
684
+ svg.acfb_whatsapp,
685
+ svg.acfb_vk,
686
+ svg.acfb_telegram {
687
+ width: 20px;
688
  }
689
 
690
+ .acfb_social_facebook_main span,
691
+ .acfb_social_twitter_main span,
692
+ .acfb_social_pinterest_main span,
693
+ .acfb_social_hackernews_main span,
694
+ .acfb_social_email_main span,
695
+ .acfb_social_linkedin_main span,
696
+ .acfb_social_reddit_main span,
697
+ .acfb_social_xing_main span,
698
+ .acfb_social_whatsapp_main span,
699
+ .acfb_social_vk_main span,
700
+ .acfb_social_telegram_main span {
701
+ vertical-align: top !important;
702
+ color: white;
703
  }
704
 
705
+ .acfb_social_facebook_main {
706
+ background: #3b5998 !important;
707
+ }
708
 
709
+ .acfb_social_twitter_main {
710
+ background-color: #38a1f3 !important;
711
+ }
712
 
713
+ .acfb_social_email_main {
714
+ background-color: #777 !important;
715
+ }
716
+
717
+ .acfb_social_pinterest_main {
718
+ background-color: #c8232c !important;
719
+ }
720
+
721
+ .acfb_social_linkedin_main {
722
+ background-color: #0077b5 !important;
723
+ }
724
+
725
+ .acfb_social_reddit_main {
726
+ background-color: #ff4500 !important;
727
+ }
728
 
729
+ .acfb_social_xing_main {
730
+ background-color: #1a7576 !important;
731
+ }
732
+ .acfb_social_whatsapp_main {
733
+ background-color: #25d366 !important;
734
+ }
735
+
736
+ .acfb_social_hackernews_main {
737
+ background-color: #f60 !important;
738
+ }
739
+
740
+ .acfb_social_vk_main {
741
+ background-color: #507299 !important;
742
+ }
743
+
744
+ .acfb_social_telegram_main {
745
+ background-color: #54a9eb !important;
746
+ }
747
+
748
+ svg.acfb_social_icons {
749
+ background: grey;
750
+ padding: 5px 5px;
751
+ margin: 0px 4px;
752
+ }
753
+
754
+ svg.acfb_social_icons path {
755
+ fill: white;
756
+ }
757
+
758
+ .acfb_social_sharing_main_block svg {
759
+ vertical-align: sub;
760
+ }
img/placeholder-vertical.jpg ADDED
Binary file
img/svgexport-1.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.77 7.46H14.5v-1.9c0-.9.6-1.1 1-1.1h3V.5h-4.33C10.24.5 9.5 3.44 9.5 5.32v2.15h-3v4h3v12h5v-12h3.85l.42-4z" stroke="none" fill="#666666" stroke-width="2px"></path></svg>
img/svgexport-10.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.547 7h-3.29a.743.743 0 0 0-.655.392s-1.312 2.416-1.734 3.23C14.734 12.813 14 12.126 14 11.11V7.603A1.104 1.104 0 0 0 12.896 6.5h-2.474a1.982 1.982 0 0 0-1.75.813s1.255-.204 1.255 1.49c0 .42.022 1.626.04 2.64a.73.73 0 0 1-1.272.503 21.54 21.54 0 0 1-2.498-4.543.693.693 0 0 0-.63-.403h-2.99a.508.508 0 0 0-.48.685C3.005 10.175 6.918 18 11.38 18h1.878a.742.742 0 0 0 .742-.742v-1.135a.73.73 0 0 1 1.23-.53l2.247 2.112a1.09 1.09 0 0 0 .746.295h2.953c1.424 0 1.424-.988.647-1.753-.546-.538-2.518-2.617-2.518-2.617a1.02 1.02 0 0 1-.078-1.323c.637-.84 1.68-2.212 2.122-2.8.603-.804 1.697-2.507.197-2.507z" stroke="none" fill="#666666" stroke-width="2px"></path></svg>
img/svgexport-11.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.707 8.475C.275 8.64 0 9.508 0 9.508s.284.867.718 1.03l5.09 1.897 1.986 6.38a1.102 1.102 0 0 0 1.75.527l2.96-2.41a.405.405 0 0 1 .494-.013l5.34 3.87a1.1 1.1 0 0 0 1.046.135 1.1 1.1 0 0 0 .682-.803l3.91-18.795A1.102 1.102 0 0 0 22.5.075L.706 8.475z" stroke="none" fill="#666666" stroke-width="2px"></path></svg>
img/svgexport-2.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.44 4.83c-.8.37-1.5.38-2.22.02.93-.56.98-.96 1.32-2.02-.88.52-1.86.9-2.9 1.1-.82-.88-2-1.43-3.3-1.43-2.5 0-4.55 2.04-4.55 4.54 0 .36.03.7.1 1.04-3.77-.2-7.12-2-9.36-4.75-.4.67-.6 1.45-.6 2.3 0 1.56.8 2.95 2 3.77-.74-.03-1.44-.23-2.05-.57v.06c0 2.2 1.56 4.03 3.64 4.44-.67.2-1.37.2-2.06.08.58 1.8 2.26 3.12 4.25 3.16C5.78 18.1 3.37 18.74 1 18.46c2 1.3 4.4 2.04 6.97 2.04 8.35 0 12.92-6.92 12.92-12.93 0-.2 0-.4-.02-.6.9-.63 1.96-1.22 2.56-2.14z" stroke="none" fill="#666666" stroke-width="2px"></path></svg>
img/svgexport-3.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4H2C.9 4 0 4.9 0 6v12c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.25 14.43l-3.5 2c-.08.05-.17.07-.25.07-.17 0-.34-.1-.43-.25-.14-.24-.06-.55.18-.68l3.5-2c.24-.14.55-.06.68.18.14.24.06.55-.18.68zm4.75.07c-.1 0-.2-.03-.27-.08l-8.5-5.5c-.23-.15-.3-.46-.15-.7.15-.22.46-.3.7-.14L12 13.4l8.23-5.32c.23-.15.54-.08.7.15.14.23.07.54-.16.7l-8.5 5.5c-.08.04-.17.07-.27.07zm8.93 1.75c-.1.16-.26.25-.43.25-.08 0-.17-.02-.25-.07l-3.5-2c-.24-.13-.32-.44-.18-.68s.44-.32.68-.18l3.5 2c.24.13.32.44.18.68z" stroke="none" fill="#666666" stroke-width="2px"></path></svg>
img/svgexport-4.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.14.5C5.86.5 2.7 5 2.7 8.75c0 2.27.86 4.3 2.7 5.05.3.12.57 0 .66-.33l.27-1.06c.1-.32.06-.44-.2-.73-.52-.62-.86-1.44-.86-2.6 0-3.33 2.5-6.32 6.5-6.32 3.55 0 5.5 2.17 5.5 5.07 0 3.8-1.7 7.02-4.2 7.02-1.37 0-2.4-1.14-2.07-2.54.4-1.68 1.16-3.48 1.16-4.7 0-1.07-.58-1.98-1.78-1.98-1.4 0-2.55 1.47-2.55 3.42 0 1.25.43 2.1.43 2.1l-1.7 7.2c-.5 2.13-.08 4.75-.04 5 .02.17.22.2.3.1.14-.18 1.82-2.26 2.4-4.33.16-.58.93-3.63.93-3.63.45.88 1.8 1.65 3.22 1.65 4.25 0 7.13-3.87 7.13-9.05C20.5 4.15 17.18.5 12.14.5z" stroke="none" fill="#666666" stroke-width="2px"></path></svg>
img/svgexport-5.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 21.5h-5v-13h5v13zM4 6.5C2.5 6.5 1.5 5.3 1.5 4s1-2.4 2.5-2.4c1.6 0 2.5 1 2.6 2.5 0 1.4-1 2.5-2.6 2.5zm11.5 6c-1 0-2 1-2 2v7h-5v-13h5V10s1.6-1.5 4-1.5c3 0 5 2.2 5 6.3v6.7h-5v-7c0-1-1-2-2-2z" stroke="none" fill="#666666" stroke-width="2px"></path></svg>
img/svgexport-6.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 11.5c0-1.65-1.35-3-3-3-.96 0-1.86.48-2.42 1.24-1.64-1-3.75-1.64-6.07-1.72.08-1.1.4-3.05 1.52-3.7.72-.4 1.73-.24 3 .5C17.2 6.3 18.46 7.5 20 7.5c1.65 0 3-1.35 3-3s-1.35-3-3-3c-1.38 0-2.54.94-2.88 2.22-1.43-.72-2.64-.8-3.6-.25-1.64.94-1.95 3.47-2 4.55-2.33.08-4.45.7-6.1 1.72C4.86 8.98 3.96 8.5 3 8.5c-1.65 0-3 1.35-3 3 0 1.32.84 2.44 2.05 2.84-.03.22-.05.44-.05.66 0 3.86 4.5 7 10 7s10-3.14 10-7c0-.22-.02-.44-.05-.66 1.2-.4 2.05-1.54 2.05-2.84zM2.3 13.37C1.5 13.07 1 12.35 1 11.5c0-1.1.9-2 2-2 .64 0 1.22.32 1.6.82-1.1.85-1.92 1.9-2.3 3.05zm3.7.13c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm9.8 4.8c-1.08.63-2.42.96-3.8.96-1.4 0-2.74-.34-3.8-.95-.24-.13-.32-.44-.2-.68.15-.24.46-.32.7-.18 1.83 1.06 4.76 1.06 6.6 0 .23-.13.53-.05.67.2.14.23.06.54-.18.67zm.2-2.8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.7-2.13c-.38-1.16-1.2-2.2-2.3-3.05.38-.5.97-.82 1.6-.82 1.1 0 2 .9 2 2 0 .84-.53 1.57-1.3 1.87z" stroke="none" fill="#666666" stroke-width="2px"></path></svg>
img/svgexport-7.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.2 9.7l-3-5.4C7.2 4 7 4 6.8 4h-5c-.3 0-.4 0-.5.2v.5L4 10 .4 16v.5c0 .2.2.3.4.3h5c.3 0 .4 0 .5-.2l4-6.6v-.5zM24 .2l-.5-.2H18s-.2 0-.3.3l-8 14v.4l5.2 9c0 .2 0 .3.3.3h5.4s.3 0 .4-.2c.2-.2.2-.4 0-.5l-5-8.8L24 .7V.2z" stroke="none" fill="#666666" stroke-width="2px"></path></svg>
img/svgexport-8.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.1 3.9C17.9 1.7 15 .5 12 .5 5.8.5.7 5.6.7 11.9c0 2 .5 3.9 1.5 5.6L.6 23.4l6-1.6c1.6.9 3.5 1.3 5.4 1.3 6.3 0 11.4-5.1 11.4-11.4-.1-2.8-1.2-5.7-3.3-7.8zM12 21.4c-1.7 0-3.3-.5-4.8-1.3l-.4-.2-3.5 1 1-3.4L4 17c-1-1.5-1.4-3.2-1.4-5.1 0-5.2 4.2-9.4 9.4-9.4 2.5 0 4.9 1 6.7 2.8 1.8 1.8 2.8 4.2 2.8 6.7-.1 5.2-4.3 9.4-9.5 9.4zm5.1-7.1c-.3-.1-1.7-.9-1.9-1-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.1-.2.2-.3.2-.6.1s-1.2-.5-2.3-1.4c-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6s.3-.3.4-.5c.2-.1.3-.3.4-.5.1-.2 0-.4 0-.5C10 9 9.3 7.6 9 7c-.1-.4-.4-.3-.5-.3h-.6s-.4.1-.7.3c-.3.3-1 1-1 2.4s1 2.8 1.1 3c.1.2 2 3.1 4.9 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.6-.1 1.7-.7 1.9-1.3.2-.7.2-1.2.2-1.3-.1-.3-.3-.4-.6-.5z" stroke="none" fill="#666666" stroke-width="2px"></path></svg>
img/svgexport-9.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 140"><path fill-rule="evenodd" d="M60.94 82.314L17 0h20.08l25.85 52.093c.397.927.86 1.888 1.39 2.883.53.994.995 2.02 1.393 3.08.265.4.463.764.596 1.095.13.334.262.63.395.898.662 1.325 1.26 2.618 1.79 3.877.53 1.26.993 2.42 1.39 3.48 1.06-2.254 2.22-4.673 3.48-7.258 1.26-2.585 2.552-5.27 3.877-8.052L103.49 0h18.69L77.84 83.308v53.087h-16.9v-54.08z" stroke="none" fill="#666666" stroke-width="2px"></path></svg>
js/acfblocks.js DELETED
@@ -1,17 +0,0 @@
1
- jQuery(document).ready(function($){
2
-
3
- // Counter Number Jquery
4
- $('.acfb_counter_number').each(function () {
5
- $(this).prop('Counter',0).animate({
6
- Counter: $(this).text()
7
- }, {
8
- duration: 4000,
9
- easing: 'swing',
10
- step: function (now) {
11
- $(this).text(Math.ceil(now));
12
- }
13
- });
14
- });
15
-
16
- });
17
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/custom.js DELETED
@@ -1,2 +0,0 @@
1
- /*! jQuery v3.4.0 | (c) JS Foundation and other contributors | jquery.org/license */
2
- !function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.0",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}k.fn=k.prototype={jquery:f,constructor:k,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=k.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return k.each(this,e)},map:function(n){return this.pushStack(k.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},k.extend=k.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(k.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||k.isPlainObject(n)?n:{},i=!1,a[t]=k.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},k.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t){b(e,{nonce:t&&t.nonce})},each:function(e,t){var n,r=0;if(d(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(p,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(d(Object(e))?k.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(d(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g.apply([],a)},guid:1,support:y}),"function"==typeof Symbol&&(k.fn[Symbol.iterator]=t[Symbol.iterator]),k.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var h=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,k="sizzle"+1*new Date,m=n.document,S=0,r=0,p=ue(),x=ue(),A=ue(),N=ue(),D=function(e,t){return e===t&&(l=!0),0},j={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",$=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",F=new RegExp(M+"+","g"),B=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="<a id='"+k+"'></a><select id='"+k+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!==C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!==C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&j.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(D),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(F," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[S,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[S,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[k]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace(B,"$1"));return s[k]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[S,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[k]||(e[k]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===S&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[k]&&(v=Ce(v)),y&&!y[k]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[k]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(B,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace(B," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=A[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[k]?i.push(a):o.push(a);(a=A(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=S+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t===C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument===C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(S=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(S=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=k.split("").sort(D).join("")===k,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);k.find=h,k.expr=h.selectors,k.expr[":"]=k.expr.pseudos,k.uniqueSort=k.unique=h.uniqueSort,k.text=h.getText,k.isXMLDoc=h.isXML,k.contains=h.contains,k.escapeSelector=h.escape;var T=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&k(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},A=k.expr.match.needsContext;function N(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var D=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1<i.call(n,e)!==r}):k.filter(n,e,r)}k.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?k.find.matchesSelector(r,e)?[r]:[]:k.find.matches(e,k.grep(t,function(e){return 1===e.nodeType}))},k.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(k(e).filter(function(){for(t=0;t<r;t++)if(k.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)k.find(e,i[t],n);return 1<r?k.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&A.test(e)?k(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(k.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&k(e);if(!A.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&k.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?k.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(k(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(k.uniqueSort(k.merge(this.get(),k(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),k.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return T(e,"parentNode")},parentsUntil:function(e,t,n){return T(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return T(e,"nextSibling")},prevAll:function(e){return T(e,"previousSibling")},nextUntil:function(e,t,n){return T(e,"nextSibling",n)},prevUntil:function(e,t,n){return T(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return"undefined"!=typeof e.contentDocument?e.contentDocument:(N(e,"template")&&(e=e.content||e),k.merge([],e.childNodes))}},function(r,i){k.fn[r]=function(e,t){var n=k.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=k.filter(t,n)),1<this.length&&(O[r]||k.uniqueSort(n),H.test(r)&&n.reverse()),this.pushStack(n)}});var R=/[^\x20\t\r\n\f]+/g;function M(e){return e}function I(e){throw e}function W(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}k.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},k.each(e.match(R)||[],function(e,t){n[t]=!0}),n):k.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){k.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return k.each(arguments,function(e,t){var n;while(-1<(n=k.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<k.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},k.extend({Deferred:function(e){var o=[["notify","progress",k.Callbacks("memory"),k.Callbacks("memory"),2],["resolve","done",k.Callbacks("once memory"),k.Callbacks("once memory"),0,"resolved"],["reject","fail",k.Callbacks("once memory"),k.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return k.Deferred(function(r){k.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,M,s),l(u,o,I,s)):(u++,t.call(e,l(u,o,M,s),l(u,o,I,s),l(u,o,M,o.notifyWith))):(a!==M&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){k.Deferred.exceptionHook&&k.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==I&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(k.Deferred.getStackHook&&(t.stackTrace=k.Deferred.getStackHook()),C.setTimeout(t))}}return k.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:M,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:M)),o[2][3].add(l(0,e,m(n)?n:I))}).promise()},promise:function(e){return null!=e?k.extend(e,a):a}},s={};return k.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=k.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(W(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)W(i[t],a(t),o.reject);return o.promise()}});var $=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;k.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&$.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},k.readyException=function(e){C.setTimeout(function(){throw e})};var F=k.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),k.ready()}k.fn.ready=function(e){return F.then(e)["catch"](function(e){k.readyException(e)}),this},k.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--k.readyWait:k.isReady)||(k.isReady=!0)!==e&&0<--k.readyWait||F.resolveWith(E,[k])}}),k.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(k.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var _=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)_(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(k(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},z=/^-ms-/,U=/-([a-z])/g;function X(e,t){return t.toUpperCase()}function V(e){return e.replace(z,"ms-").replace(U,X)}var G=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function Y(){this.expando=k.expando+Y.uid++}Y.uid=1,Y.prototype={cache:function(e){var t=e[this.expando];return t||(t={},G(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[V(t)]=n;else for(r in t)i[V(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][V(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(V):(t=V(t))in r?[t]:t.match(R)||[]).length;while(n--)delete r[t[n]]}(void 0===t||k.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!k.isEmptyObject(t)}};var Q=new Y,J=new Y,K=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Z=/[A-Z]/g;function ee(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(Z,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:K.test(i)?JSON.parse(i):i)}catch(e){}J.set(e,t,n)}else n=void 0;return n}k.extend({hasData:function(e){return J.hasData(e)||Q.hasData(e)},data:function(e,t,n){return J.access(e,t,n)},removeData:function(e,t){J.remove(e,t)},_data:function(e,t,n){return Q.access(e,t,n)},_removeData:function(e,t){Q.remove(e,t)}}),k.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=J.get(o),1===o.nodeType&&!Q.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=V(r.slice(5)),ee(o,r,i[r]));Q.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){J.set(this,n)}):_(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=J.get(o,n))?t:void 0!==(t=ee(o,n))?t:void 0;this.each(function(){J.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){J.remove(this,e)})}}),k.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Q.get(e,t),n&&(!r||Array.isArray(n)?r=Q.access(e,t,k.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=k.queue(e,t),r=n.length,i=n.shift(),o=k._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){k.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Q.get(e,n)||Q.access(e,n,{empty:k.Callbacks("once memory").add(function(){Q.remove(e,[t+"queue",n])})})}}),k.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?k.queue(this[0],t):void 0===n?this:this.each(function(){var e=k.queue(this,t,n);k._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&k.dequeue(this,t)})},dequeue:function(e){return this.each(function(){k.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=k.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Q.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var te=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ne=new RegExp("^(?:([+-])=|)("+te+")([a-z%]*)$","i"),re=["Top","Right","Bottom","Left"],ie=E.documentElement,oe=function(e){return k.contains(e.ownerDocument,e)},ae={composed:!0};ie.attachShadow&&(oe=function(e){return k.contains(e.ownerDocument,e)||e.getRootNode(ae)===e.ownerDocument});var se=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&oe(e)&&"none"===k.css(e,"display")},ue=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];for(o in i=n.apply(e,r||[]),t)e.style[o]=a[o];return i};function le(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return k.css(e,t,"")},u=s(),l=n&&n[3]||(k.cssNumber[t]?"":"px"),c=e.nodeType&&(k.cssNumber[t]||"px"!==l&&+u)&&ne.exec(k.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)k.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,k.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ce={};function fe(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Q.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&se(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ce[s])||(o=a.body.appendChild(a.createElement(s)),u=k.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ce[s]=u)))):"none"!==n&&(l[c]="none",Q.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}k.fn.extend({show:function(){return fe(this,!0)},hide:function(){return fe(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){se(this)?k(this).show():k(this).hide()})}});var pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&N(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Q.set(e[n],"globalEval",!t||Q.get(t[n],"globalEval"))}ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;var me,xe,be=/<|&#?\w+;/;function we(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))k.merge(p,o.nodeType?[o]:o);else if(be.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+k.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;k.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<k.inArray(o,r))i&&i.push(o);else if(l=oe(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}me=E.createDocumentFragment().appendChild(E.createElement("div")),(xe=E.createElement("input")).setAttribute("type","radio"),xe.setAttribute("checked","checked"),xe.setAttribute("name","t"),me.appendChild(xe),y.checkClone=me.cloneNode(!0).cloneNode(!0).lastChild.checked,me.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ae(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ne(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ne(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n=void 0,r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n}else r&&(Q.set(this,i,k.event.trigger(k.extend(r.shift(),k.Event.prototype),r,this)),e.stopImmediatePropagation())}})):k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t<arguments.length;t++)u[t]=arguments[t];if(s.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,s)){a=k.event.handlers.call(this,s,l),t=0;while((i=a[t++])&&!s.isPropagationStopped()){s.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!s.isImmediatePropagationStopped())s.rnamespace&&!1!==o.namespace&&!s.rnamespace.test(o.namespace)||(s.handleObj=o,s.data=o.data,void 0!==(r=((k.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,u))&&!1===(s.result=r)&&(s.preventDefault(),s.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,s),s.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<k(i,this).index(l):k.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(k.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[k.expando]?e:new k.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&N(t,"input")&&void 0===Q.get(t,"click")&&De(t,"click",ke),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&N(t,"input")&&void 0===Q.get(t,"click")&&De(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&N(t,"input")&&Q.get(t,"click")||N(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},k.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},k.Event=function(e,t){if(!(this instanceof k.Event))return new k.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?ke:Se,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&k.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[k.expando]=!0},k.Event.prototype={constructor:k.Event,isDefaultPrevented:Se,isPropagationStopped:Se,isImmediatePropagationStopped:Se,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=ke,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=ke,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=ke,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},k.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&Te.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Ce.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},k.event.addProp),k.each({focus:"focusin",blur:"focusout"},function(e,t){k.event.special[e]={setup:function(){return De(this,e,Ae),!1},trigger:function(){return De(this,e),!0},delegateType:t}}),k.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){k.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||k.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),k.fn.extend({on:function(e,t,n,r){return Ne(this,e,t,n,r)},one:function(e,t,n,r){return Ne(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,k(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Se),this.each(function(){k.event.remove(this,e,n,t)})}});var je=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/<script|<style|<link/i,Le=/checked\s*(?:[^=]|=\s*.checked.)/i,He=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function Oe(e,t){return N(e,"table")&&N(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n<r;n++)k.event.add(t,i,l[i][n]);J.hasData(e)&&(s=J.access(e),u=k.extend({},s),J.set(t,u))}}function Ie(n,r,i,o){r=g.apply([],r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Le.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),Ie(t,r,i,o)});if(f&&(t=(e=we(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=k.map(ve(e,"script"),Pe)).length;c<f;c++)u=e,c!==p&&(u=k.clone(u,!0,!0),s&&k.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,k.map(a,Re),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Q.access(u,"globalEval")&&k.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?k._evalUrl&&!u.noModule&&k._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")}):b(u.textContent.replace(He,""),u,l))}return n}function We(e,t,n){for(var r,i=t?k.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||k.cleanData(ve(r)),r.parentNode&&(n&&oe(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}k.extend({htmlPrefilter:function(e){return e.replace(je,"<$1></$2>")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Me(o[r],a[r]);else Me(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=k.event.special,o=0;void 0!==(n=e[o]);o++)if(G(n)){if(t=n[Q.expando]){if(t.events)for(r in t.events)i[r]?k.event.remove(n,r):k.removeEvent(n,r,t.handle);n[Q.expando]=void 0}n[J.expando]&&(n[J.expando]=void 0)}}}),k.fn.extend({detach:function(e){return We(this,e,!0)},remove:function(e){return We(this,e)},text:function(e){return _(this,function(e){return void 0===e?k.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Ie(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Oe(this,e).appendChild(e)})},prepend:function(){return Ie(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Oe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(k.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return k.clone(this,e,t)})},html:function(e){return _(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!qe.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=k.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(k.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return Ie(this,arguments,function(e){var t=this.parentNode;k.inArray(this,n)<0&&(k.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),k.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){k.fn[e]=function(e){for(var t,n=[],r=k(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),k(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var $e=new RegExp("^("+te+")(?!px)[a-z%]+$","i"),Fe=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Be=new RegExp(re.join("|"),"i");function _e(e,t,n){var r,i,o,a,s=e.style;return(n=n||Fe(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||oe(e)||(a=k.style(e,t)),!y.pixelBoxStyles()&&$e.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function ze(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(u){s.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",u.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ie.appendChild(s).appendChild(u);var e=C.getComputedStyle(u);n="1%"!==e.top,a=12===t(e.marginLeft),u.style.right="60%",o=36===t(e.right),r=36===t(e.width),u.style.position="absolute",i=12===t(u.offsetWidth/3),ie.removeChild(s),u=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s=E.createElement("div"),u=E.createElement("div");u.style&&(u.style.backgroundClip="content-box",u.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===u.style.backgroundClip,k.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),a},scrollboxSize:function(){return e(),i}}))}();var Ue=["Webkit","Moz","ms"],Xe=E.createElement("div").style,Ve={};function Ge(e){var t=k.cssProps[e]||Ve[e];return t||(e in Xe?e:Ve[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Ue.length;while(n--)if((e=Ue[n]+t)in Xe)return e}(e)||e)}var Ye=/^(none|table(?!-c[ea]).+)/,Qe=/^--/,Je={position:"absolute",visibility:"hidden",display:"block"},Ke={letterSpacing:"0",fontWeight:"400"};function Ze(e,t,n){var r=ne.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function et(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=k.css(e,n+re[a],!0,i)),r?("content"===n&&(u-=k.css(e,"padding"+re[a],!0,i)),"margin"!==n&&(u-=k.css(e,"border"+re[a]+"Width",!0,i))):(u+=k.css(e,"padding"+re[a],!0,i),"padding"!==n?u+=k.css(e,"border"+re[a]+"Width",!0,i):s+=k.css(e,"border"+re[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function tt(e,t,n){var r=Fe(e),i=(!y.boxSizingReliable()||n)&&"border-box"===k.css(e,"boxSizing",!1,r),o=i,a=_e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if($e.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||"auto"===a||!parseFloat(a)&&"inline"===k.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===k.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+et(e,t,n||(i?"border":"content"),o,r,a)+"px"}function nt(e,t,n,r,i){return new nt.prototype.init(e,t,n,r,i)}k.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=_e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=V(t),u=Qe.test(t),l=e.style;if(u||(t=Ge(s)),a=k.cssHooks[t]||k.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=ne.exec(n))&&i[1]&&(n=le(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(k.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=V(t);return Qe.test(t)||(t=Ge(s)),(a=k.cssHooks[t]||k.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=_e(e,t,r)),"normal"===i&&t in Ke&&(i=Ke[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),k.each(["height","width"],function(e,u){k.cssHooks[u]={get:function(e,t,n){if(t)return!Ye.test(k.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?tt(e,u,n):ue(e,Je,function(){return tt(e,u,n)})},set:function(e,t,n){var r,i=Fe(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===k.css(e,"boxSizing",!1,i),s=n?et(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-et(e,u,"border",!1,i)-.5)),s&&(r=ne.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=k.css(e,u)),Ze(0,t,s)}}}),k.cssHooks.marginLeft=ze(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(_e(e,"marginLeft"))||e.getBoundingClientRect().left-ue(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),k.each({margin:"",padding:"",border:"Width"},function(i,o){k.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+re[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(k.cssHooks[i+o].set=Ze)}),k.fn.extend({css:function(e,t){return _(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Fe(e),i=t.length;a<i;a++)o[t[a]]=k.css(e,t[a],!1,r);return o}return void 0!==n?k.style(e,t,n):k.css(e,t)},e,t,1<arguments.length)}}),((k.Tween=nt).prototype={constructor:nt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||k.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(k.cssNumber[n]?"":"px")},cur:function(){var e=nt.propHooks[this.prop];return e&&e.get?e.get(this):nt.propHooks._default.get(this)},run:function(e){var t,n=nt.propHooks[this.prop];return this.options.duration?this.pos=t=k.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):nt.propHooks._default.set(this),this}}).init.prototype=nt.prototype,(nt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=k.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){k.fx.step[e.prop]?k.fx.step[e.prop](e):1!==e.elem.nodeType||!k.cssHooks[e.prop]&&null==e.elem.style[Ge(e.prop)]?e.elem[e.prop]=e.now:k.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=nt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},k.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},k.fx=nt.prototype.init,k.fx.step={};var rt,it,ot,at,st=/^(?:toggle|show|hide)$/,ut=/queueHooks$/;function lt(){it&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(lt):C.setTimeout(lt,k.fx.interval),k.fx.tick())}function ct(){return C.setTimeout(function(){rt=void 0}),rt=Date.now()}function ft(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=re[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function pt(e,t,n){for(var r,i=(dt.tweeners[t]||[]).concat(dt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function dt(o,e,t){var n,a,r=0,i=dt.prefilters.length,s=k.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=rt||ct(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:k.extend({},e),opts:k.extend(!0,{specialEasing:{},easing:k.easing._default},t),originalProperties:e,originalOptions:t,startTime:rt||ct(),duration:t.duration,tweens:[],createTween:function(e,t){var n=k.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=V(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=k.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=dt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(k._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return k.map(c,pt,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),k.fx.timer(k.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}k.Animation=k.extend(dt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return le(n.elem,e,ne.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(R);for(var n,r=0,i=e.length;r<i;r++)n=e[r],dt.tweeners[n]=dt.tweeners[n]||[],dt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&se(e),v=Q.get(e,"fxshow");for(r in n.queue||(null==(a=k._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,k.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],st.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||k.style(e,r)}if((u=!k.isEmptyObject(t))||!k.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Q.get(e,"display")),"none"===(c=k.css(e,"display"))&&(l?c=l:(fe([e],!0),l=e.style.display||l,c=k.css(e,"display"),fe([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===k.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Q.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&fe([e],!0),p.done(function(){for(r in g||fe([e]),Q.remove(e,"fxshow"),d)k.style(e,r,d[r])})),u=pt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?dt.prefilters.unshift(e):dt.prefilters.push(e)}}),k.speed=function(e,t,n){var r=e&&"object"==typeof e?k.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return k.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in k.fx.speeds?r.duration=k.fx.speeds[r.duration]:r.duration=k.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&k.dequeue(this,r.queue)},r},k.fn.extend({fadeTo:function(e,t,n,r){return this.filter(se).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=k.isEmptyObject(t),o=k.speed(e,n,r),a=function(){var e=dt(this,k.extend({},t),o);(i||Q.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&!1!==i&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=k.timers,r=Q.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&ut.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||k.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Q.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=k.timers,o=n?n.length:0;for(t.finish=!0,k.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),k.each(["toggle","show","hide"],function(e,r){var i=k.fn[r];k.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(ft(r,!0),e,t,n)}}),k.each({slideDown:ft("show"),slideUp:ft("hide"),slideToggle:ft("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){k.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),k.timers=[],k.fx.tick=function(){var e,t=0,n=k.timers;for(rt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||k.fx.stop(),rt=void 0},k.fx.timer=function(e){k.timers.push(e),k.fx.start()},k.fx.interval=13,k.fx.start=function(){it||(it=!0,lt())},k.fx.stop=function(){it=null},k.fx.speeds={slow:600,fast:200,_default:400},k.fn.delay=function(r,e){return r=k.fx&&k.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},ot=E.createElement("input"),at=E.createElement("select").appendChild(E.createElement("option")),ot.type="checkbox",y.checkOn=""!==ot.value,y.optSelected=at.selected,(ot=E.createElement("input")).value="t",ot.type="radio",y.radioValue="t"===ot.value;var ht,gt=k.expr.attrHandle;k.fn.extend({attr:function(e,t){return _(this,k.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){k.removeAttr(this,e)})}}),k.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?k.prop(e,t,n):(1===o&&k.isXMLDoc(e)||(i=k.attrHooks[t.toLowerCase()]||(k.expr.match.bool.test(t)?ht:void 0)),void 0!==n?null===n?void k.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=k.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&N(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(R);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ht={set:function(e,t,n){return!1===t?k.removeAttr(e,n):e.setAttribute(n,n),n}},k.each(k.expr.match.bool.source.match(/\w+/g),function(e,t){var a=gt[t]||k.find.attr;gt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=gt[o],gt[o]=r,r=null!=a(e,t,n)?o:null,gt[o]=i),r}});var vt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;function mt(e){return(e.match(R)||[]).join(" ")}function xt(e){return e.getAttribute&&e.getAttribute("class")||""}function bt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(R)||[]}k.fn.extend({prop:function(e,t){return _(this,k.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[k.propFix[e]||e]})}}),k.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&k.isXMLDoc(e)||(t=k.propFix[t]||t,i=k.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=k.find.attr(e,"tabindex");return t?parseInt(t,10):vt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(k.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),k.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){k.propFix[this.toLowerCase()]=this}),k.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).addClass(t.call(this,e,xt(this)))});if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).removeClass(t.call(this,e,xt(this)))});if(!arguments.length)return this.attr("class","");if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){k(this).toggleClass(i.call(this,e,xt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=k(this),r=bt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=xt(this))&&Q.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Q.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+mt(xt(n))+" ").indexOf(t))return!0;return!1}});var wt=/\r/g;k.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,k(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=k.map(t,function(e){return null==e?"":e+""})),(r=k.valHooks[this.type]||k.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=k.valHooks[t.type]||k.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(wt,""):null==e?"":e:void 0}}),k.extend({valHooks:{option:{get:function(e){var t=k.find.attr(e,"value");return null!=t?t:mt(k.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!N(n.parentNode,"optgroup"))){if(t=k(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=k.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<k.inArray(k.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),k.each(["radio","checkbox"],function(){k.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<k.inArray(k(e).val(),t)}},y.checkOn||(k.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var Tt=/^(?:focusinfocus|focusoutblur)$/,Ct=function(e){e.stopPropagation()};k.extend(k.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!Tt.test(d+k.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[k.expando]?e:new k.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:k.makeArray(t,[e]),c=k.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,Tt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Q.get(o,"events")||{})[e.type]&&Q.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&G(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!G(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),k.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,Ct),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,Ct),k.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=k.extend(new k.Event,n,{type:e,isSimulated:!0});k.event.trigger(r,null,t)}}),k.fn.extend({trigger:function(e,t){return this.each(function(){k.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return k.event.trigger(e,t,n,!0)}}),y.focusin||k.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){k.event.simulate(r,e.target,k.event.fix(e))};k.event.special[r]={setup:function(){var e=this.ownerDocument||this,t=Q.access(e,r);t||e.addEventListener(n,i,!0),Q.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this,t=Q.access(e,r)-1;t?Q.access(e,r,t):(e.removeEventListener(n,i,!0),Q.remove(e,r))}}});var Et=C.location,kt=Date.now(),St=/\?/;k.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||k.error("Invalid XML: "+e),t};var At=/\[\]$/,Nt=/\r?\n/g,Dt=/^(?:submit|button|image|reset|file)$/i,jt=/^(?:input|select|textarea|keygen)/i;function qt(n,e,r,i){var t;if(Array.isArray(e))k.each(e,function(e,t){r||At.test(n)?i(n,t):qt(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)qt(n+"["+t+"]",e[t],r,i)}k.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!k.isPlainObject(e))k.each(e,function(){i(this.name,this.value)});else for(n in e)qt(n,e[n],t,i);return r.join("&")},k.fn.extend({serialize:function(){return k.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=k.prop(this,"elements");return e?k.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!k(this).is(":disabled")&&jt.test(this.nodeName)&&!Dt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=k(this).val();return null==n?null:Array.isArray(n)?k.map(n,function(e){return{name:t.name,value:e.replace(Nt,"\r\n")}}):{name:t.name,value:n.replace(Nt,"\r\n")}}).get()}});var Lt=/%20/g,Ht=/#.*$/,Ot=/([?&])_=[^&]*/,Pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Rt=/^(?:GET|HEAD)$/,Mt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Ft=E.createElement("a");function Bt(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(R)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function _t(t,i,o,a){var s={},u=t===Wt;function l(e){var r;return s[e]=!0,k.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function zt(e,t){var n,r,i=k.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&k.extend(!0,e,r),e}Ft.href=Et.href,k.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Et.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Et.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":k.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,k.ajaxSettings),t):zt(k.ajaxSettings,e)},ajaxPrefilter:Bt(It),ajaxTransport:Bt(Wt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=k.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?k(y):k.event,x=k.Deferred(),b=k.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=Pt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||Et.href)+"").replace(Mt,Et.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(R)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Ft.protocol+"//"+Ft.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=k.param(v.data,v.traditional)),_t(It,v,t,T),h)return T;for(i in(g=k.event&&v.global)&&0==k.active++&&k.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Rt.test(v.type),f=v.url.replace(Ht,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Lt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(St.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Ot,"$1"),o=(St.test(f)?"&":"?")+"_="+kt+++o),v.url=f+o),v.ifModified&&(k.lastModified[f]&&T.setRequestHeader("If-Modified-Since",k.lastModified[f]),k.etag[f]&&T.setRequestHeader("If-None-Match",k.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+$t+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=_t(Wt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(k.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(k.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--k.active||k.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return k.get(e,t,n,"json")},getScript:function(e,t){return k.get(e,void 0,t,"script")}}),k.each(["get","post"],function(e,i){k[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),k.ajax(k.extend({url:e,type:i,dataType:r,data:t,success:n},k.isPlainObject(e)&&e))}}),k._evalUrl=function(e,t){return k.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){k.globalEval(e,t)}})},k.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=k(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){k(this).wrapInner(n.call(this,e))}):this.each(function(){var e=k(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){k(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){k(this).replaceWith(this.childNodes)}),this}}),k.expr.pseudos.hidden=function(e){return!k.expr.pseudos.visible(e)},k.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},k.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Ut={0:200,1223:204},Xt=k.ajaxSettings.xhr();y.cors=!!Xt&&"withCredentials"in Xt,y.ajax=Xt=!!Xt,k.ajaxTransport(function(i){var o,a;if(y.cors||Xt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Ut[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),k.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),k.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return k.globalEval(e),e}}}),k.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),k.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=k("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=mt(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&k.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?k("<div>").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}}),k.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),k.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),k.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||k.guid++,i},k.holdReady=function(e){e?k.readyWait++:k.ready(!0)},k.isArray=Array.isArray,k.parseJSON=JSON.parse,k.nodeName=N,k.isFunction=m,k.isWindow=x,k.camelCase=V,k.type=w,k.now=Date.now,k.isNumeric=function(e){var t=k.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},"function"==typeof define&&define.amd&&define("jquery",[],function(){return k});var Qt=C.jQuery,Jt=C.$;return k.noConflict=function(e){return C.$===k&&(C.$=Jt),e&&C.jQuery===k&&(C.jQuery=Qt),k},e||(C.jQuery=C.$=k),k});
 
 
js/frontend.js ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(document).ready(function($) {
2
+ // Counter Number Jquery
3
+
4
+ $(".acfb_counter_number").each(function() {
5
+ $(this)
6
+ .prop("Counter", 0)
7
+ .animate(
8
+ {
9
+ Counter: $(this).text()
10
+ },
11
+ {
12
+ duration: 4000,
13
+ easing: "swing",
14
+ step: function(now) {
15
+ $(this).text(Math.ceil(now));
16
+ }
17
+ }
18
+ );
19
+ });
20
+ });
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: acf, acf blocks, gutenberg, block, gutenberg blocks
4
  Requires at least: 4.7
5
  Requires PHP: 5.6
6
  Tested up to: 5.2
7
- Stable tag: 1.2.0
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -17,8 +17,8 @@ Supercharge your Gutenberg editor with high-quality beautiful WordPress blocks.
17
  ACF Blocks is a collection of ready-to-use Gutenberg Blocks for WordPress. Supercharge your Gutenberg editor with high-quality beautiful WordPress blocks. This Gutenberg addon helps you make a beautiful WordPress website.
18
 
19
  <strong>An Ultimate Gutenberg Blocks Suite</strong>
20
-
21
  <ul>
 
22
  <li>Photo Collage Block (New)</li>
23
  <li>Posts Block (New)</li>
24
  <li>Testimonial Block</li>
@@ -33,8 +33,8 @@ ACF Blocks is a collection of ready-to-use Gutenberg Blocks for WordPress. Super
33
  </ul>
34
 
35
  <strong>Many More Blocks On The Way!</strong>
36
- Visit <a href="https://www.acfblocks.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme" target="_blank" rel="">ACF Blocks</a> for more info.
37
 
 
38
 
39
  <strong>Important Note:</strong> ACF Blocks is built on-top of Advanced Custom Fields Pro. This plugin requires ACF Pro to function correctly.
40
 
@@ -66,6 +66,9 @@ Absolutely! You can definitely use the ACF Blocks on yours as well as your clien
66
 
67
  == Changelog ==
68
 
 
 
 
69
  = 1.2.0 =
70
  * New: Photo Collage Block Added
71
 
4
  Requires at least: 4.7
5
  Requires PHP: 5.6
6
  Tested up to: 5.2
7
+ Stable tag: 1.3.0
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
17
  ACF Blocks is a collection of ready-to-use Gutenberg Blocks for WordPress. Supercharge your Gutenberg editor with high-quality beautiful WordPress blocks. This Gutenberg addon helps you make a beautiful WordPress website.
18
 
19
  <strong>An Ultimate Gutenberg Blocks Suite</strong>
 
20
  <ul>
21
+ <li>Social Sharing Block (New)</li>
22
  <li>Photo Collage Block (New)</li>
23
  <li>Posts Block (New)</li>
24
  <li>Testimonial Block</li>
33
  </ul>
34
 
35
  <strong>Many More Blocks On The Way!</strong>
 
36
 
37
+ Visit <a href="https://www.acfblocks.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme" target="_blank" rel="">ACF Blocks</a> for more info.
38
 
39
  <strong>Important Note:</strong> ACF Blocks is built on-top of Advanced Custom Fields Pro. This plugin requires ACF Pro to function correctly.
40
 
66
 
67
  == Changelog ==
68
 
69
+ = 1.3.0 =
70
+ * New: Social Sharing Block Added
71
+
72
  = 1.2.0 =
73
  * New: Photo Collage Block Added
74