Gutenberg Blocks – Ultimate Addons for Gutenberg - Version 1.18.0

Version Description

  • New: Taxonomy List.
  • Improvement: FAQ Schema - Added responsive columns options for mobile and tablet.
  • Improvement: Google Map - Now user can show language-specific Google Map.
  • Improvement: How to Schema - More options to add total time.
  • Fix: Multiple file generation issue in some cases fixed.
  • Fix: Inline Notice - Dismissal of Notice issue.
  • Fix: How To Schema - Step gap issue.
  • Fix: How To Schema - Image deletion issue for steps.
  • Fix: FAQ Schema - Multiple FAQSchema on the same page not allowed issue.
  • Fix: Post Block - Infinite scroll is broken for anonymous user.
  • Fix: Unicode error in some cases issue fixed.
Download this release

Release Info

Developer brainstormworg
Plugin Icon Gutenberg Blocks – Ultimate Addons for Gutenberg
Version 1.18.0
Comparing to
See all releases

Code changes from version 1.17.0 to 1.18.0

assets/css/blocks/how-to.css CHANGED
@@ -1 +1 @@
1
- .uagb-howto__cost-wrap{display:block}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:block}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}
1
+ .uagb-howto__cost-wrap{display:block}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:block}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}.uagb-howto__time-wrap .uagb-howto-timeINmin-text{margin-left:5px}
assets/css/blocks/taxonomy-list.css ADDED
@@ -0,0 +1 @@
 
1
+ .uagb-tax-not-available{border:1px solid;padding:10px;text-align:center}.uagb-layout-list .uagb-list-wrap{margin-left:10px}.uagb-taxonomy__outer-wrap{margin-bottom:20px}ul.uagb-taxonomy-list-children{margin-bottom:0}
classes/class-uagb-admin.php CHANGED
@@ -429,6 +429,10 @@ if ( ! class_exists( 'UAGB_Admin' ) ) {
429
 
430
  check_ajax_referer( 'uagb-block-nonce', 'nonce' );
431
 
 
 
 
 
432
  wp_send_json_success(
433
  array(
434
  'success' => true,
429
 
430
  check_ajax_referer( 'uagb-block-nonce', 'nonce' );
431
 
432
+ if ( 'disabled' === $_POST['value'] ) {
433
+ UAGB_Helper::get_instance()->delete_upload_dir();
434
+ }
435
+
436
  wp_send_json_success(
437
  array(
438
  'success' => true,
classes/class-uagb-block-helper.php CHANGED
@@ -4566,6 +4566,12 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
4566
  'grid-row-gap' => UAGB_Helper::get_css_value( $attr['rowsGap'], 'px' ),
4567
  'display' => 'grid',
4568
  );
 
 
 
 
 
 
4569
  }
4570
 
4571
  $combined_selectors = array(
@@ -4737,5 +4743,119 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
4737
 
4738
  return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
4739
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4740
  }
4741
  }
4566
  'grid-row-gap' => UAGB_Helper::get_css_value( $attr['rowsGap'], 'px' ),
4567
  'display' => 'grid',
4568
  );
4569
+ $t_selectors['.uagb-faq-layout-grid .uagb-faq__wrap.uagb-buttons-layout-wrap '] = array(
4570
+ 'grid-template-columns' => 'repeat(' . $attr['tcolumns'] . ', 1fr)',
4571
+ );
4572
+ $m_selectors['.uagb-faq-layout-grid .uagb-faq__wrap.uagb-buttons-layout-wrap '] = array(
4573
+ 'grid-template-columns' => 'repeat(' . $attr['mcolumns'] . ', 1fr)',
4574
+ );
4575
  }
4576
 
4577
  $combined_selectors = array(
4743
 
4744
  return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
4745
  }
4746
+
4747
+ /**
4748
+ * Get Taxonomy List CSS.
4749
+ *
4750
+ * @since 1.18.0
4751
+ * @param array $attr The block attributes.
4752
+ * @param string $id The selector ID.
4753
+ */
4754
+ public static function get_taxonomy_list_css( $attr, $id ) {
4755
+
4756
+ $defaults = UAGB_Helper::$block_list['uagb/taxonomy-list']['attributes'];
4757
+ $attr = array_merge( $defaults, $attr );
4758
+
4759
+ $selectors = array();
4760
+ $t_selectors = array();
4761
+ $m_selectors = array();
4762
+
4763
+ $boxShadowPositionCSS = $attr['boxShadowPosition'];
4764
+
4765
+ if ( 'outset' === $attr['boxShadowPosition'] ) {
4766
+ $boxShadowPositionCSS = '';
4767
+ }
4768
+
4769
+ $selectors = array(
4770
+ ' .uagb-taxonomy-wrap.uagb-layout-grid' => array(
4771
+ 'display' => 'grid',
4772
+ 'grid-template-columns' => 'repeat(' . $attr['columns'] . ', 1fr)',
4773
+ 'grid-column-gap' => UAGB_Helper::get_css_value( $attr['columnGap'], 'px' ),
4774
+ 'grid-row-gap' => UAGB_Helper::get_css_value( $attr['rowGap'], 'px' ),
4775
+
4776
+ ),
4777
+ ' .uagb-layout-grid .uagb-taxomony-box' => array(
4778
+ 'padding' => UAGB_Helper::get_css_value( $attr['contentPadding'], 'px' ),
4779
+ 'grid-column-gap' => UAGB_Helper::get_css_value( $attr['columnGap'], 'px' ),
4780
+ 'background-color' => $attr['bgColor'],
4781
+ 'text-align' => $attr['alignment'],
4782
+ 'box-shadow' => UAGB_Helper::get_css_value( $attr['boxShadowHOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowVOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowBlur'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowSpread'], 'px' ) . ' ' . $attr['boxShadowColor'] . ' ' . $boxShadowPositionCSS,
4783
+
4784
+ ),
4785
+ ' .uagb-layout-grid .uagb-tax-title' => array(
4786
+ 'color' => $attr['titleColor'],
4787
+ 'margin-top' => '0',
4788
+ 'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleBottomSpace'], 'px' ),
4789
+ ),
4790
+ ' .uagb-layout-grid .uagb-tax-count' => array(
4791
+ 'color' => $attr['countColor'],
4792
+ ),
4793
+
4794
+ // List layout styling.
4795
+ ' .uagb-layout-list .uagb-tax-list' => array(
4796
+ 'list-style' => $attr['listStyle'],
4797
+ 'color' => $attr['listStyleColor'],
4798
+ ),
4799
+ ' .uagb-layout-list .uagb-tax-list:hover' => array(
4800
+ 'color' => $attr['hoverlistStyleColor'],
4801
+ ),
4802
+ ' .uagb-layout-list .uagb-tax-list a.uagb-tax-link' => array(
4803
+ 'color' => $attr['listTextColor'],
4804
+ ),
4805
+ ' .uagb-layout-list .uagb-tax-list a.uagb-tax-link:hover' => array(
4806
+ 'color' => $attr['hoverlistTextColor'],
4807
+ ),
4808
+ ' .uagb-layout-list .uagb-tax-list .uagb-tax-link-wrap' => array(
4809
+ 'margin-bottom' => UAGB_Helper::get_css_value( $attr['listBottomMargin'], 'px' ),
4810
+ ),
4811
+
4812
+ );
4813
+
4814
+ if ( 'none' !== $attr['seperatorStyle'] ) {
4815
+ $selectors[' .uagb-layout-list .uagb-tax-separator'] = array(
4816
+ 'border-top-color' => $attr['seperatorColor'],
4817
+ 'border-top-style' => $attr['seperatorStyle'],
4818
+ 'border-top-width' => UAGB_Helper::get_css_value( $attr['seperatorThickness'], 'px' ),
4819
+ 'width' => UAGB_Helper::get_css_value( $attr['seperatorWidth'], '%' ),
4820
+ );
4821
+ }
4822
+
4823
+ if ( 'none' !== $attr['borderStyle'] ) {
4824
+ $selectors[' .uagb-taxomony-box'] = array(
4825
+ 'border' => UAGB_Helper::get_css_value( $attr['borderThickness'], 'px' ) . ' ' . $attr['borderStyle'] . ' ' . $attr['borderColor'],
4826
+ 'border-radius' => UAGB_Helper::get_css_value( $attr['borderRadius'], 'px' ),
4827
+ );
4828
+ }
4829
+
4830
+ $t_selectors = array(
4831
+ ' .uagb-taxonomy-wrap.uagb-layout-grid' => array(
4832
+ 'grid-template-columns' => 'repeat(' . $attr['tcolumns'] . ', 1fr)',
4833
+ ),
4834
+ ' .uagb-layout-grid .uagb-taxomony-box' => array(
4835
+ 'padding' => UAGB_Helper::get_css_value( $attr['contentPaddingTablet'], 'px' ),
4836
+ ),
4837
+ );
4838
+
4839
+ $m_selectors = array(
4840
+ ' .uagb-taxonomy-wrap.uagb-layout-grid' => array(
4841
+ 'grid-template-columns' => 'repeat(' . $attr['mcolumns'] . ', 1fr)',
4842
+ ),
4843
+ ' .uagb-layout-grid .uagb-taxomony-box' => array(
4844
+ 'padding' => UAGB_Helper::get_css_value( $attr['contentPaddingMobile'], 'px' ),
4845
+ ),
4846
+ );
4847
+
4848
+ $combined_selectors = array(
4849
+ 'desktop' => $selectors,
4850
+ 'tablet' => $t_selectors,
4851
+ 'mobile' => $m_selectors,
4852
+ );
4853
+
4854
+ $combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-layout-grid .uagb-tax-title', $combined_selectors );
4855
+ $combined_selectors = UAGB_Helper::get_typography_css( $attr, 'count', ' .uagb-layout-grid .uagb-tax-count', $combined_selectors );
4856
+ $combined_selectors = UAGB_Helper::get_typography_css( $attr, 'list', ' .uagb-layout-list .uagb-tax-list', $combined_selectors );
4857
+
4858
+ return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
4859
+ }
4860
  }
4861
  }
classes/class-uagb-block-js.php CHANGED
@@ -731,5 +731,34 @@ if ( ! class_exists( 'UAGB_Block_JS' ) ) {
731
  UAGB_Helper::blocks_google_font( $input_load_google_font, $input_font_family, $input_font_weight, $input_font_subset );
732
  }
733
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
734
  }
735
  }
731
  UAGB_Helper::blocks_google_font( $input_load_google_font, $input_font_family, $input_font_weight, $input_font_subset );
732
  }
733
 
734
+ /**
735
+ * Adds Google fonts for Taxonomy List.
736
+ *
737
+ * @since 1.18.0
738
+ * @param array $attr the blocks attr.
739
+ */
740
+ public static function blocks_taxonomy_list_gfont( $attr ) {
741
+
742
+ $title_load_google_font = isset( $attr['titleLoadGoogleFonts'] ) ? $attr['titleLoadGoogleFonts'] : '';
743
+ $title_font_family = isset( $attr['titleFontFamily'] ) ? $attr['titleFontFamily'] : '';
744
+ $title_font_weight = isset( $attr['titleFontWeight'] ) ? $attr['titleFontWeight'] : '';
745
+ $title_font_subset = isset( $attr['titleFontSubset'] ) ? $attr['titleFontSubset'] : '';
746
+
747
+ $count_load_google_font = isset( $attr['countLoadGoogleFonts'] ) ? $attr['countLoadGoogleFonts'] : '';
748
+ $count_font_family = isset( $attr['countFontFamily'] ) ? $attr['countFontFamily'] : '';
749
+ $count_font_weight = isset( $attr['countFontWeight'] ) ? $attr['countFontWeight'] : '';
750
+ $count_font_subset = isset( $attr['countFontSubset'] ) ? $attr['countFontSubset'] : '';
751
+
752
+ $list_load_google_font = isset( $attr['listLoadGoogleFonts'] ) ? $attr['listLoadGoogleFonts'] : '';
753
+ $list_font_family = isset( $attr['listFontFamily'] ) ? $attr['listFontFamily'] : '';
754
+ $list_font_weight = isset( $attr['listFontWeight'] ) ? $attr['listFontWeight'] : '';
755
+ $list_font_subset = isset( $attr['listFontSubset'] ) ? $attr['listFontSubset'] : '';
756
+
757
+ UAGB_Helper::blocks_google_font( $title_load_google_font, $title_font_family, $title_font_weight, $title_font_subset );
758
+ UAGB_Helper::blocks_google_font( $count_load_google_font, $count_font_family, $count_font_weight, $count_font_subset );
759
+ UAGB_Helper::blocks_google_font( $list_load_google_font, $list_font_family, $list_font_weight, $list_font_subset );
760
+
761
+ }
762
+
763
  }
764
  }
classes/class-uagb-config.php CHANGED
@@ -703,6 +703,8 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
703
  'iconSizeTablet' => 15,
704
  'iconSizeType' => 'px',
705
  'columns' => 2,
 
 
706
  'schema' => '',
707
  'enableToggle' => true,
708
  'questionLeftPaddingTablet' => 10,
@@ -889,6 +891,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
889
  'attributes' => array(
890
  'block_id' => '',
891
  'height' => '300',
 
892
  ),
893
  ),
894
  'uagb/how-to' => array(
@@ -2248,6 +2251,96 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
2248
  'inputSizeType' => '%',
2249
  ),
2250
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2251
  );
2252
  }
2253
  return self::$block_attributes;
703
  'iconSizeTablet' => 15,
704
  'iconSizeType' => 'px',
705
  'columns' => 2,
706
+ 'tcolumns' => 2,
707
+ 'mcolumns' => 1,
708
  'schema' => '',
709
  'enableToggle' => true,
710
  'questionLeftPaddingTablet' => 10,
891
  'attributes' => array(
892
  'block_id' => '',
893
  'height' => '300',
894
+ 'language' => 'en',
895
  ),
896
  ),
897
  'uagb/how-to' => array(
2251
  'inputSizeType' => '%',
2252
  ),
2253
  ),
2254
+ 'uagb/taxonomy-list' => array(
2255
+ 'slug' => '',
2256
+ 'title' => __( 'Taxonomy List', 'ultimate-addons-for-gutenberg' ),
2257
+ 'description' => __( 'This block helps you to display content categorization for various post types', 'ultimate-addons-for-gutenberg' ),
2258
+ 'default' => true,
2259
+ 'attributes' => array(
2260
+ 'block_id' => '',
2261
+ 'postType' => 'post',
2262
+ 'taxonomyType' => 'category',
2263
+ 'categories' => '',
2264
+ 'order' => 'desc',
2265
+ 'orderBy' => 'date',
2266
+ 'postsToShow' => 8,
2267
+ 'layout' => 'grid',
2268
+ 'columns' => 3,
2269
+ 'tcolumns' => 2,
2270
+ 'mcolumns' => 1,
2271
+ 'bgColor' => '#f5f5f5',
2272
+ 'titleColor' => '#3b3b3b',
2273
+ 'countColor' => '#777777',
2274
+ 'listTextColor' => '#3b3b3b',
2275
+ 'hoverlistTextColor' => '#3b3b3b',
2276
+ 'listStyleColor' => '#3b3b3b',
2277
+ 'hoverlistStyleColor' => '#3b3b3b',
2278
+ 'rowGap' => 20,
2279
+ 'columnGap' => 20,
2280
+ 'contentPadding' => 20,
2281
+ 'contentPaddingMobile' => 15,
2282
+ 'contentPaddingTablet' => 15,
2283
+ 'titleBottomSpace' => 15,
2284
+ 'listBottomMargin' => 10,
2285
+ 'alignment' => 'center',
2286
+ 'listStyle' => 'disc',
2287
+ 'seperatorStyle' => 'none',
2288
+ 'seperatorWidth' => 100,
2289
+ 'seperatorThickness' => 1,
2290
+ 'seperatorColor' => '#b2b4b5',
2291
+ 'boxShadowColor' => '',
2292
+ 'boxShadowHOffset' => 0,
2293
+ 'boxShadowVOffset' => 0,
2294
+ 'boxShadowBlur' => '',
2295
+ 'boxShadowSpread' => '',
2296
+ 'boxShadowPosition' => 'outset',
2297
+ 'titleFontSize' => '',
2298
+ 'titleFontSizeType' => 'px',
2299
+ 'titleFontSizeMobile' => '',
2300
+ 'titleFontSizeTablet' => '',
2301
+ 'titleFontFamily' => '',
2302
+ 'titleFontWeight' => '',
2303
+ 'titleFontSubset' => '',
2304
+ 'titleLineHeightType' => 'em',
2305
+ 'titleLineHeight' => '',
2306
+ 'titleLineHeightTablet' => '',
2307
+ 'titleLineHeightMobile' => '',
2308
+ 'titleLoadGoogleFonts' => false,
2309
+ 'countFontSize' => '',
2310
+ 'countFontSizeType' => 'px',
2311
+ 'countFontSizeMobile' => '',
2312
+ 'countFontSizeTablet' => '',
2313
+ 'countFontFamily' => '',
2314
+ 'countFontWeight' => '',
2315
+ 'countFontSubset' => '',
2316
+ 'countLineHeightType' => 'em',
2317
+ 'countLineHeight' => '',
2318
+ 'countLineHeightTablet' => '',
2319
+ 'countLineHeightMobile' => '',
2320
+ 'countLoadGoogleFonts' => false,
2321
+ 'listFontSize' => '',
2322
+ 'listFontSizeType' => 'px',
2323
+ 'listFontSizeMobile' => '',
2324
+ 'listFontSizeTablet' => '',
2325
+ 'listFontFamily' => '',
2326
+ 'listFontWeight' => '',
2327
+ 'listFontSubset' => '',
2328
+ 'listLineHeightType' => 'em',
2329
+ 'listLineHeight' => '',
2330
+ 'listLineHeightTablet' => '',
2331
+ 'listLineHeightMobile' => '',
2332
+ 'listLoadGoogleFonts' => false,
2333
+ 'borderStyle' => 'solid',
2334
+ 'borderThickness' => 1,
2335
+ 'borderRadius' => 0,
2336
+ 'borderColor' => '#E0E0E0',
2337
+ 'noTaxDisplaytext' => __( 'Taxonomy Not Available.', 'ultimate-addons-for-gutenberg' ),
2338
+ 'showCount' => true,
2339
+ 'showEmptyTaxonomy' => false,
2340
+ 'showhierarchy' => false,
2341
+ 'listDisplayStyle' => 'list',
2342
+ ),
2343
+ ),
2344
  );
2345
  }
2346
  return self::$block_attributes;
classes/class-uagb-helper.php CHANGED
@@ -557,6 +557,11 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
557
  UAGB_Block_JS::blocks_wp_search_gfont( $blockattr );
558
  break;
559
 
 
 
 
 
 
560
  default:
561
  // Nothing to do here.
562
  break;
@@ -1103,6 +1108,122 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
1103
  return apply_filters( 'uagb_post_loop_taxonomies', $return_array );
1104
  }
1105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1106
  /**
1107
  * Get - RGBA Color
1108
  *
@@ -1196,6 +1317,35 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
1196
  return apply_filters( 'uag_get_upload_dir', $dir_info );
1197
  }
1198
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1199
  /**
1200
  * Checks to see if the site has SSL enabled or not.
1201
  *
@@ -1257,6 +1407,12 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
1257
  * @return boolean true/false
1258
  */
1259
  public static function create_file( $assets_info, $style_data, $timestamp, $type ) {
 
 
 
 
 
 
1260
  $file_system = self::get_instance()->get_filesystem();
1261
 
1262
  // Create a new file.
@@ -1264,7 +1420,7 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
1264
 
1265
  if ( $result ) {
1266
  // Update meta with current timestamp.
1267
- update_post_meta( get_the_ID(), 'uag_style_timestamp-' . $type, $timestamp );
1268
  }
1269
 
1270
  return $result;
@@ -1279,7 +1435,12 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
1279
  */
1280
  public static function file_write( $style_data, $type ) {
1281
 
1282
- $post_timestamp = get_post_meta( get_the_ID(), 'uag_style_timestamp-' . $type, true );
 
 
 
 
 
1283
  $var = ( 'css' === $type ) ? 'css' : 'js';
1284
  $date = new DateTime();
1285
  $new_timestamp = $date->getTimestamp();
557
  UAGB_Block_JS::blocks_wp_search_gfont( $blockattr );
558
  break;
559
 
560
+ case 'uagb/taxonomy-list':
561
+ $css += UAGB_Block_Helper::get_taxonomy_list_css( $blockattr, $block_id );
562
+ UAGB_Block_JS::blocks_taxonomy_list_gfont( $blockattr );
563
+ break;
564
+
565
  default:
566
  // Nothing to do here.
567
  break;
1108
  return apply_filters( 'uagb_post_loop_taxonomies', $return_array );
1109
  }
1110
 
1111
+ /**
1112
+ * Get all taxonomies list.
1113
+ *
1114
+ * @since 1.18.0
1115
+ * @access public
1116
+ */
1117
+ public static function get_taxonomy_list() {
1118
+
1119
+ $post_types = self::get_post_types();
1120
+
1121
+ $return_array = array();
1122
+
1123
+ foreach ( $post_types as $key => $value ) {
1124
+ $post_type = $value['value'];
1125
+
1126
+ $taxonomies = get_object_taxonomies( $post_type, 'objects' );
1127
+ $data = array();
1128
+
1129
+ $get_singular_name = get_post_type_object( $post_type );
1130
+ foreach ( $taxonomies as $tax_slug => $tax ) {
1131
+ if ( ! $tax->public || ! $tax->show_ui || ! $tax->show_in_rest ) {
1132
+ continue;
1133
+ }
1134
+
1135
+ $data[ $tax_slug ] = $tax;
1136
+
1137
+ $terms = get_terms( $tax_slug );
1138
+
1139
+ $related_tax_terms = array();
1140
+
1141
+ if ( ! empty( $terms ) ) {
1142
+ foreach ( $terms as $t_index => $t_obj ) {
1143
+ $related_tax_terms[] = array(
1144
+ 'id' => $t_obj->term_id,
1145
+ 'name' => $t_obj->name,
1146
+ 'count' => $t_obj->count,
1147
+ 'link' => get_term_link( $t_obj->term_id ),
1148
+ 'singular_name' => $get_singular_name->labels->singular_name,
1149
+ );
1150
+ }
1151
+
1152
+ $return_array[ $post_type ]['terms'][ $tax_slug ] = $related_tax_terms;
1153
+ }
1154
+
1155
+ $newcategoriesList = get_terms(
1156
+ $tax_slug,
1157
+ array(
1158
+ 'hide_empty' => true,
1159
+ 'parent' => 0,
1160
+ )
1161
+ );
1162
+
1163
+ $related_tax = array();
1164
+
1165
+ if ( ! empty( $newcategoriesList ) ) {
1166
+ foreach ( $newcategoriesList as $t_index => $t_obj ) {
1167
+ $child_arg = array(
1168
+ 'hide_empty' => true,
1169
+ 'parent' => $t_obj->term_id,
1170
+ );
1171
+ $child_cat = get_terms( $tax_slug, $child_arg );
1172
+ $child_cat_arr = $child_cat ? $child_cat : null;
1173
+ $related_tax[] = array(
1174
+ 'id' => $t_obj->term_id,
1175
+ 'name' => $t_obj->name,
1176
+ 'count' => $t_obj->count,
1177
+ 'link' => get_term_link( $t_obj->term_id ),
1178
+ 'singular_name' => $get_singular_name->labels->singular_name,
1179
+ 'children' => $child_cat_arr,
1180
+ );
1181
+
1182
+ }
1183
+
1184
+ $return_array[ $post_type ]['without_empty_taxonomy'][ $tax_slug ] = $related_tax;
1185
+
1186
+ }
1187
+
1188
+ $newcategoriesList_empty_tax = get_terms(
1189
+ $tax_slug,
1190
+ array(
1191
+ 'hide_empty' => false,
1192
+ 'parent' => 0,
1193
+ )
1194
+ );
1195
+
1196
+ $related_tax_empty_tax = array();
1197
+
1198
+ if ( ! empty( $newcategoriesList_empty_tax ) ) {
1199
+ foreach ( $newcategoriesList_empty_tax as $t_index => $t_obj ) {
1200
+ $child_arg_empty_tax = array(
1201
+ 'hide_empty' => false,
1202
+ 'parent' => $t_obj->term_id,
1203
+ );
1204
+ $child_cat_empty_tax = get_terms( $tax_slug, $child_arg_empty_tax );
1205
+ $child_cat_empty_tax_arr = $child_cat_empty_tax ? $child_cat_empty_tax : null;
1206
+ $related_tax_empty_tax[] = array(
1207
+ 'id' => $t_obj->term_id,
1208
+ 'name' => $t_obj->name,
1209
+ 'count' => $t_obj->count,
1210
+ 'link' => get_term_link( $t_obj->term_id ),
1211
+ 'singular_name' => $get_singular_name->labels->singular_name,
1212
+ 'children' => $child_cat_empty_tax_arr,
1213
+ );
1214
+ }
1215
+
1216
+ $return_array[ $post_type ]['with_empty_taxonomy'][ $tax_slug ] = $related_tax_empty_tax;
1217
+
1218
+ }
1219
+ }
1220
+ $return_array[ $post_type ]['taxonomy'] = $data;
1221
+
1222
+ }
1223
+
1224
+ return apply_filters( 'uagb_taxonomies_list', $return_array );
1225
+ }
1226
+
1227
  /**
1228
  * Get - RGBA Color
1229
  *
1317
  return apply_filters( 'uag_get_upload_dir', $dir_info );
1318
  }
1319
 
1320
+ /**
1321
+ * Deletes the upload dir.
1322
+ *
1323
+ * @since 1.18.0
1324
+ * @return array
1325
+ */
1326
+ public function delete_upload_dir() {
1327
+
1328
+ $wp_info = wp_upload_dir( null, false );
1329
+
1330
+ $dir_name = basename( UAGB_DIR );
1331
+ if ( 'ultimate-addons-for-gutenberg' === $dir_name ) {
1332
+ $dir_name = 'uag-plugin';
1333
+ }
1334
+
1335
+ // Build the paths.
1336
+ $dir_info = array(
1337
+ 'path' => trailingslashit( trailingslashit( $wp_info['basedir'] ) . $dir_name ),
1338
+ );
1339
+
1340
+ // Check the upload dir if it doesn't exist or not.
1341
+ if ( file_exists( $dir_info['path'] . 'index.html' ) ) {
1342
+ // Remove the directory.
1343
+ $wp_filesystem = self::get_instance()->get_filesystem();
1344
+ return $wp_filesystem->rmdir( $dir_info['path'], true );
1345
+ }
1346
+ return false;
1347
+ }
1348
+
1349
  /**
1350
  * Checks to see if the site has SSL enabled or not.
1351
  *
1407
  * @return boolean true/false
1408
  */
1409
  public static function create_file( $assets_info, $style_data, $timestamp, $type ) {
1410
+
1411
+ $post_id = get_the_ID();
1412
+ if ( ! $post_id ) {
1413
+ return false;
1414
+ }
1415
+
1416
  $file_system = self::get_instance()->get_filesystem();
1417
 
1418
  // Create a new file.
1420
 
1421
  if ( $result ) {
1422
  // Update meta with current timestamp.
1423
+ update_post_meta( $post_id, 'uag_style_timestamp-' . $type, $timestamp );
1424
  }
1425
 
1426
  return $result;
1435
  */
1436
  public static function file_write( $style_data, $type ) {
1437
 
1438
+ $post_id = get_the_ID();
1439
+ if ( ! $post_id ) {
1440
+ return false;
1441
+ }
1442
+
1443
+ $post_timestamp = get_post_meta( $post_id, 'uag_style_timestamp-' . $type, true );
1444
  $var = ( 'css' === $type ) ? 'css' : 'js';
1445
  $date = new DateTime();
1446
  $new_timestamp = $date->getTimestamp();
classes/class-uagb-init-blocks.php CHANGED
@@ -304,6 +304,7 @@ class UAGB_Init_Blocks {
304
  'image_sizes' => UAGB_Helper::get_image_sizes(),
305
  'post_types' => UAGB_Helper::get_post_types(),
306
  'all_taxonomy' => UAGB_Helper::get_related_taxonomy(),
 
307
  'uagb_ajax_nonce' => $uagb_ajax_nonce,
308
  'uagb_home_url' => home_url(),
309
  )
304
  'image_sizes' => UAGB_Helper::get_image_sizes(),
305
  'post_types' => UAGB_Helper::get_post_types(),
306
  'all_taxonomy' => UAGB_Helper::get_related_taxonomy(),
307
+ 'taxonomy_list' => UAGB_Helper::get_taxonomy_list(),
308
  'uagb_ajax_nonce' => $uagb_ajax_nonce,
309
  'uagb_home_url' => home_url(),
310
  )
classes/class-uagb-loader.php CHANGED
@@ -80,7 +80,7 @@ if ( ! class_exists( 'UAGB_Loader' ) ) {
80
  define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
81
  define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
82
  define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
83
- define( 'UAGB_VER', '1.17.0' );
84
  define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
85
  define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
86
  define( 'UAGB_SLUG', 'uag' );
@@ -105,6 +105,8 @@ if ( ! class_exists( 'UAGB_Loader' ) ) {
105
  require_once UAGB_DIR . 'dist/blocks/post-timeline/class-uagb-post-timeline.php';
106
  require_once UAGB_DIR . 'dist/blocks/cf7-styler/class-uagb-cf7-styler.php';
107
  require_once UAGB_DIR . 'dist/blocks/gf-styler/class-uagb-gf-styler.php';
 
 
108
  }
109
 
110
  /**
80
  define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
81
  define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
82
  define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
83
+ define( 'UAGB_VER', '1.18.0' );
84
  define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
85
  define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
86
  define( 'UAGB_SLUG', 'uag' );
105
  require_once UAGB_DIR . 'dist/blocks/post-timeline/class-uagb-post-timeline.php';
106
  require_once UAGB_DIR . 'dist/blocks/cf7-styler/class-uagb-cf7-styler.php';
107
  require_once UAGB_DIR . 'dist/blocks/gf-styler/class-uagb-gf-styler.php';
108
+ require_once UAGB_DIR . 'dist/blocks/taxonomy-list/class-uagb-taxonomy-list.php';
109
+
110
  }
111
 
112
  /**
dist/blocks.build.js CHANGED
@@ -60,7 +60,7 @@
60
  /******/ __webpack_require__.p = "";
61
  /******/
62
  /******/ // Load entry module and return exports
63
- /******/ return __webpack_require__(__webpack_require__.s = 185);
64
  /******/ })
65
  /************************************************************************/
66
  /******/ ([
@@ -190,7 +190,8 @@ var UAGB_Block_Icons = {
190
  "faq": el("svg", { width: 20, height: 20 }, el("path", { fill: "#4a00e0", d: "M10.95 14.645c0 0.524-0.425 0.949-0.949 0.949s-0.949-0.425-0.949-0.949c0-0.524 0.425-0.949 0.949-0.949s0.949 0.425 0.949 0.949z" }), el("path", { fill: "#4a00e0", d: "M10.001 0.292c-5.366 0-9.709 4.342-9.709 9.708s4.342 9.708 9.709 9.708c5.365 0 9.707-4.342 9.707-9.708 0-5.365-4.342-9.708-9.707-9.708zM10.001 18.643c-4.777 0-8.644-3.864-8.644-8.643 0-4.776 3.865-8.643 8.644-8.643 4.777 0 8.642 3.865 8.642 8.643s-3.865 8.643-8.642 8.643z" }), el("path", { fill: "#4a00e0", d: "M10.001 5.165c-1.674 0-3.034 1.361-3.034 3.033 0 0.42 0.339 0.76 0.758 0.76s0.759-0.34 0.759-0.76c0-0.836 0.68-1.516 1.518-1.516 0.835 0 1.516 0.68 1.516 1.516s-0.681 1.519-1.516 1.519c-0.421 0-0.759 0.339-0.759 0.757v1.897c0 0.417 0.338 0.757 0.759 0.757 0.418 0 0.758-0.34 0.758-0.757v-1.234c1.308-0.337 2.275-1.527 2.275-2.938-0.001-1.673-1.363-3.034-3.034-3.034z" })),
191
  "how_to": el("svg", { width: 20, height: 20, viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M29.539 1.258l-27.674 9.042c-0.782 0.256-0.894 1.318-0.182 1.733l10.458 6.082c0.33 0.189 0.742 0.166 1.048-0.059l2.939-2.182-2.182 2.939c-0.229 0.306-0.251 0.72-0.059 1.048l6.082 10.458c0.413 0.71 1.477 0.598 1.733-0.184l9.040-27.672c0.243-0.742-0.461-1.445-1.202-1.203v0zM20.549 27.518l-4.696-8.075 5.661-7.622c0.282-0.381 0.243-0.909-0.091-1.243-0.336-0.334-0.864-0.373-1.245-0.091l-7.622 5.662-8.074-4.696 23.862-7.798-7.795 23.864zM11.229 22.122l-6.336 6.338c-0.373 0.37-0.978 0.37-1.349 0-0.373-0.374-0.373-0.978 0-1.35l6.334-6.336c0.373-0.374 0.978-0.374 1.35 0 0.371 0.371 0.371 0.976 0 1.349zM2.858 22.362c-0.371-0.371-0.371-0.978 0-1.349l2.501-2.501c0.373-0.374 0.976-0.374 1.349 0 0.373 0.371 0.373 0.974 0 1.349l-2.501 2.501c-0.373 0.373-0.976 0.373-1.349 0zM13.49 25.293c0.371 0.373 0.371 0.978 0 1.35l-2.501 2.501c-0.186 0.184-0.43 0.278-0.675 0.278-0.842 0-1.277-1.027-0.674-1.63l2.501-2.501c0.37-0.371 0.976-0.371 1.349 0.002v0z" })),
192
  "inline_notice": el("svg", { width: 20, height: 20, viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M30.69 25.701l-13.094-21.389c-0.35-0.571-0.96-0.912-1.63-0.912h-0.002c-0.67 0-1.28 0.344-1.629 0.915l-13.026 21.389c-0.352 0.578-0.374 1.28-0.064 1.882 0.304 0.59 0.878 0.966 1.534 1.013 0.045 0.003 0.090 0.005 0.134 0.005h26.168c0.045 0 0.093-0.002 0.134-0.005 0.658-0.045 1.232-0.422 1.538-1.013 0.312-0.606 0.288-1.307-0.064-1.885zM3.458 26.403l12.507-20.541 12.576 20.541h-25.083z" }), el("path", { fill: "#4a00e0", d: "M15.966 11.242c-0.533 0-0.965 0.432-0.965 0.965v8.037c0 0.531 0.432 0.966 0.965 0.966s0.965-0.432 0.965-0.966v-8.037c0-0.533-0.432-0.965-0.965-0.965z" }), el("path", { fill: "#4a00e0", d: "M16.946 23.702c0 0.532-0.431 0.963-0.963 0.963s-0.963-0.431-0.963-0.963c0-0.532 0.431-0.963 0.963-0.963s0.963 0.431 0.963 0.963z" })),
193
- "wp_search": el("svg", { width: 20, height: 20, viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M20.433 1.068c-5.789 0-10.499 4.71-10.499 10.5 0 2.58 0.936 4.945 2.486 6.775l-1.187 1.187-0.618-0.618c-0.342-0.342-0.896-0.342-1.238 0l-7.542 7.54c-1.024 1.024-1.024 2.689 0 3.713s2.689 1.023 3.712 0l7.541-7.541c0.341-0.342 0.341-0.895 0-1.237l-0.619-0.62 1.187-1.187c1.83 1.55 4.196 2.486 6.776 2.486 5.791 0 10.499-4.71 10.499-10.499s-4.708-10.499-10.499-10.499zM4.311 28.927c-0.341 0.34-0.897 0.34-1.238 0s-0.341-0.896 0-1.238l4.447-4.447 1.238 1.238-4.447 4.447zM9.996 23.242l-1.238-1.238 1.238-1.238 1.238 1.238-1.238 1.238zM20.433 20.317c-4.824 0-8.749-3.924-8.749-8.749s3.925-8.75 8.749-8.75c4.826 0 8.749 3.925 8.749 8.75s-3.924 8.749-8.749 8.749z" }))
 
194
  };
195
 
196
  /* harmony default export */ __webpack_exports__["a"] = (UAGB_Block_Icons);
@@ -207,7 +208,7 @@ var UAGB_Block_Icons = {
207
  "use strict";
208
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__UAGBIcon__ = __webpack_require__(/*! ./UAGBIcon */ 9);
209
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__UAGBIcon___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__UAGBIcon__);
210
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__parseIcon__ = __webpack_require__(/*! ./parseIcon */ 415);
211
  /**
212
  * Set inline CSS class.
213
  * @param {object} props - The block object.
@@ -545,9 +546,9 @@ function generateCSS(selectors, id) {
545
  /* WEBPACK VAR INJECTION */(function(process) {
546
 
547
  if (process.env.NODE_ENV === 'production') {
548
- module.exports = __webpack_require__(/*! ./cjs/react.production.min.js */ 258);
549
  } else {
550
- module.exports = __webpack_require__(/*! ./cjs/react.development.js */ 259);
551
  }
552
 
553
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
@@ -562,10 +563,10 @@ if (process.env.NODE_ENV === 'production') {
562
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
563
 
564
  "use strict";
565
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__font_typography__ = __webpack_require__(/*! ./font-typography */ 189);
566
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__range_typography__ = __webpack_require__(/*! ./range-typography */ 279);
567
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 280);
568
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 281);
569
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
570
  /* unused harmony reexport TypographyStyles */
571
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -809,7 +810,7 @@ var TypographyControl = function (_Component) {
809
  "use strict";
810
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(/*! prop-types */ 15);
811
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__);
812
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_webfontloader__ = __webpack_require__(/*! webfontloader */ 282);
813
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_webfontloader___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_webfontloader__);
814
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
815
 
@@ -945,8 +946,8 @@ module.exports = {"500px":{"changes":["4.4","5.0.0"],"ligatures":[],"search":{"t
945
  /***/ (function(module, exports, __webpack_require__) {
946
 
947
  var baseTimes = __webpack_require__(/*! ./_baseTimes */ 124),
948
- castFunction = __webpack_require__(/*! ./_castFunction */ 397),
949
- toInteger = __webpack_require__(/*! ./toInteger */ 71);
950
 
951
  /** Used as references for various `Number` constants. */
952
  var MAX_SAFE_INTEGER = 9007199254740991;
@@ -1023,7 +1024,7 @@ module.exports = times;
1023
  * https://opensource.org/licenses/MIT
1024
  *
1025
  */
1026
- !function(e,t){ true?module.exports=t(__webpack_require__(/*! prop-types */ 15),__webpack_require__(/*! react */ 6),__webpack_require__(/*! classnames */ 0),__webpack_require__(/*! react-dom */ 18),__webpack_require__(/*! react-transition-group */ 407)):"function"==typeof define&&define.amd?define(["prop-types","react","classnames","react-dom","react-transition-group"],t):"object"==typeof exports?exports.FontIconPicker=t(require("prop-types"),require("react"),require("classnames"),require("react-dom"),require("react-transition-group")):e.FontIconPicker=t(e.PropTypes,e.React,e.classNames,e.ReactDOM,e.ReactTransitionGroup)}(window,function(e,t,r,n,a){return function(e){var t={};function r(n){if(t[n])return t[n].exports;var a=t[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,r),a.l=!0,a.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},r.r=function(e){Object.defineProperty(e,"__esModule",{value:!0})},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=15)}([function(t,r){t.exports=e},function(e,r){e.exports=t},function(e,t,r){"use strict";function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function a(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function o(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}Object.defineProperty(t,"__esModule",{value:!0}),t.flattenPossiblyCategorizedSource=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(Array.isArray(e))return o(e);if(null!==t)return void 0!==e[t]?o(e[t]):[];var r=[],n=function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{},n=Object.keys(r);"function"==typeof Object.getOwnPropertySymbols&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(e){return Object.getOwnPropertyDescriptor(r,e).enumerable}))),n.forEach(function(t){a(e,t,r[t])})}return e}({},e);return Object.keys(n).forEach(function(e){r=o(r).concat(o(n[e]))}),r},t.getPossibleCategories=function(e){return Array.isArray(e)?null:Object.keys(e)},t.convertToHex=function(e){return String.fromCodePoint(parseInt(e,10))},t.isArrayEqual=function(e,t){if(!Array.isArray(e)||!Array.isArray(t))return!1;var r=o(e);r.sort();var n=o(t);return n.sort(),JSON.stringify(r)===JSON.stringify(n)},t.getOffset=function(e){var t=e.getBoundingClientRect(),r=window.pageXOffset||document.documentElement.scrollLeft,n=window.pageYOffset||document.documentElement.scrollTop;return{top:t.top+n,left:t.left+r}},t.getSourceType=function(e){return null===e?"null":"object"!==n(e)||Array.isArray(e)?Array.isArray(e)?"array":n(e):"object"},t.InvalidSourceException=function(e,t){this.givenType=e,this.requiredType=t,this.message="Expected of type: ".concat(this.requiredType,", found: ").concat(this.givenType),this.toString=function(){return"Invalid Source Exception: ".concat(this.message)}},t.fuzzySearch=function(e,t){e=e.toLowerCase();var r=(t=t.toLowerCase()).length,n=e.length;if(n>r)return!1;if(n===r)return e===t;e:for(var a=0,o=0;a<n;a++){for(var l=e.codePointAt(a);o<r;)if(t.codePointAt(o++)===l)continue e;return!1}return!0},t.debounce=void 0,t.debounce=function(e,t){var r;return function(){var n=this,a=arguments;clearTimeout(r),r=setTimeout(function(){return e.apply(n,a)},t)}}},function(e,t){e.exports=r},,,function(e,t){e.exports=n},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=u(r(1)),a=r(6),o=u(r(0)),l=u(r(3)),i=r(2);function u(e){return e&&e.__esModule?e:{default:e}}function c(e){return(c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function f(e,t,r){return t&&s(e.prototype,t),r&&s(e,r),e}function d(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var p=function(e){function t(e){var r,n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,n=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!n||"object"!==c(n)&&"function"!=typeof n?d(this):n,Object.defineProperty(d(r),"syncPortalPosition",{configurable:!0,enumerable:!0,writable:!0,value:function(){r.resetPortalPosition(),r.fixWindowOverflow()}}),Object.defineProperty(d(r),"fixWindowOverflow",{configurable:!0,enumerable:!0,writable:!0,value:function(){var e=r.props.domRef.current.offsetWidth,t=r.props.domRef.current.offsetHeight,n=window,a=n.innerWidth,o=n.pageYOffset,l=document.documentElement.clientHeight,u=(0,i.getOffset)(r.props.domRef.current),c=u.left,s=u.top,f="self"===r.state.appendRoot?r.props.domRef.current:r.state.appendRoot,d=(0,i.getOffset)(f),p=r.props.btnRef.current,h=r.props.domRef.current,y=(0,i.getOffset)(p),b=getComputedStyle(p),g=(parseInt(b.borderTop,10)||0)+(parseInt(b.borderBottom,10)||0);if(c+e>a-20){var m=y.left+r.props.btnRef.current.offsetWidth-(e+d.left);m+d.left<0&&(m=10-d.left),h.style.left="".concat(m,"px")}t+s-o>l&&y.top-t>0&&("self"===r.state.appendRoot?h.style.top="-".concat(t-g,"px"):h.style.top="".concat(y.top+g-t,"px"))}}),r.state={},r.debouncedSyncPortalPosition=(0,i.debounce)(r.syncPortalPosition,250),r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),f(t,null,[{key:"getDerivedStateFromProps",value:function(e){var r=t.calculateAppendAndClass(e.appendRoot);return{appendRoot:r.appendRoot,portalClasses:r.portalClasses}}},{key:"calculateAppendAndClass",value:function(e){var t="self",r=(0,l.default)({"rfipdropdown--portal":!1!==e});return!1!==e&&(t=document.querySelector(e)),{portalClasses:r,appendRoot:t}}}]),f(t,[{key:"componentDidMount",value:function(){window.addEventListener("resize",this.debouncedSyncPortalPosition),window.addEventListener("scroll",this.debouncedSyncPortalPosition),this.syncPortalPosition()}},{key:"componentDidUpdate",value:function(){this.syncPortalPosition()}},{key:"componentWillUnmount",value:function(){window.removeEventListener("resize",this.debouncedSyncPortalPosition),window.removeEventListener("scroll",this.debouncedSyncPortalPosition)}},{key:"positionPortal",value:function(){var e=this.props.domRef.current.style.display;this.props.domRef.current.style.display="none";var t=this.props.btnRef.current,r=(0,i.getOffset)(t),n=(0,i.getOffset)(this.state.appendRoot),a=t.offsetHeight;this.props.domRef.current.style.left="".concat(r.left-n.left,"px"),this.props.domRef.current.style.top="".concat(r.top+a,"px"),this.props.domRef.current.style.display=e}},{key:"resetPortalPosition",value:function(){var e=this.props.domRef.current;"self"===this.state.appendRoot?e.style.top="":this.positionPortal()}},{key:"render",value:function(){var e=(0,l.default)(this.props.className,this.state.portalClasses),t=n.default.createElement("div",{className:e,ref:this.props.domRef},this.props.children);return"self"===this.state.appendRoot?t:(0,a.createPortal)(t,this.state.appendRoot)}}]),t}();Object.defineProperty(p,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{appendRoot:o.default.oneOfType([o.default.bool,o.default.string]),children:o.default.node.isRequired,domRef:o.default.object.isRequired,btnRef:o.default.object.isRequired,className:o.default.string.isRequired}}),Object.defineProperty(p,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{appendRoot:!1}});var h=p;t.default=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=i(r(1)),a=i(r(0)),o=i(r(3)),l=r(2);function i(e){return e&&e.__esModule?e:{default:e}}function u(e){return(u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function c(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function f(e,t,r){return t&&s(e.prototype,t),r&&s(e,r),e}function d(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var p=function(e){function t(e){var r,n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,n=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!n||"object"!==u(n)&&"function"!=typeof n?d(this):n,Object.defineProperty(d(r),"handleChangePage",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,a=r.props.currentPage,o=r.state.totalPage;null!==n?"next"===n?a+=1:a-=1:a=parseInt(e.target.value,10)-1,a<0&&(a=0),a>o-1&&(a=o-1),t=a+1,null===n&&Number.isNaN(a)&&(a=0,t=""),r.setState({viewPage:t}),r.props.handleChangePage(a)}}),Object.defineProperty(d(r),"handlePageKeyBoard",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){13!==e.keyCode&&32!==e.keyCode||r.handleChangePage({},t)}}),Object.defineProperty(d(r),"handleChangeValue",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.props.handleChangeValue(e)}}),Object.defineProperty(d(r),"handleValueKeyboard",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){13!==e.keyCode&&32!==e.keyCode||r.handleChangeValue(t)}}),r.state={viewPage:r.props.currentPage+1},r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),f(t,null,[{key:"getDerivedStateFromProps",value:function(e,r){var n=t.getCategoryFilteredState(e.currentCategory,e.categories,e.icons),a=t.getCategoryFilteredState(e.currentCategory,e.categories,null===e.search?e.icons:e.search),o=t.getActiveIcons(n,a,e.currentSearch),l=o.activeIcons,i=o.activeTitles,u=e.currentPage,c=e.iconsPerPage,s={iconView:t.getCurrentViewIcons(l,c,u),titleView:t.getCurrentViewIcons(i,c,u),totalPage:Math.ceil(l.length/c)};return""!==r.viewPage&&(s.viewPage=e.currentPage+1),s}},{key:"getActiveIcons",value:function(e,t,r){var n=c(e),a=c(t);if(""===r||null===r)return{activeIcons:n,activeTitles:a};var o=[],i=[];return n.forEach(function(e,n){(0,l.fuzzySearch)(r,t[n])&&(o.push(e),i.push(t[n]))}),{activeIcons:o,activeTitles:i}}},{key:"getCategoryFilteredState",value:function(e,t,r){var n=null,a=(0,l.getSourceType)(r);if(Array.isArray(t)){if("object"!==a)throw new l.InvalidSourceException(a,"object")}else if("array"!==a)throw new l.InvalidSourceException(a,"array");return 0!==e&&Array.isArray(t)&&(n=t[e]||null),(0,l.flattenPossiblyCategorizedSource)(r,n)}},{key:"getCurrentViewIcons",value:function(e,t,r){var n=r*t,a=(r+1)*t;return e.slice(n,a)}}]),f(t,[{key:"renderPager",value:function(){var e=this;if(this.state.totalPage<1)return null;var t=this.props.currentPage>0?n.default.createElement("span",{className:"rfipicons__left",role:"button",tabIndex:0,onKeyDown:function(t){return e.handlePageKeyBoard(t,"prev")},onClick:function(t){return e.handleChangePage(t,"prev")}},n.default.createElement("span",{role:"presentation",className:"rfipicons__label","aria-label":"Left"},n.default.createElement("i",{className:"fipicon-angle-left"}))):null,r=this.props.currentPage<this.state.totalPage-1?n.default.createElement("span",{className:"rfipicons__right",role:"button",tabIndex:0,onKeyDown:function(t){return e.handlePageKeyBoard(t,"next")},onClick:function(t){return e.handleChangePage(t,"next")}},n.default.createElement("span",{role:"presentation",className:"rfipicons__label","aria-label":"Right"},n.default.createElement("i",{className:"fipicon-angle-right"}))):null;return n.default.createElement("div",{className:"rfipicons__pager"},n.default.createElement("div",{className:"rfipicons__num"},n.default.createElement("input",{value:this.state.viewPage,onChange:this.handleChangePage,className:"rfipicons__cp",type:"tel",min:1}),n.default.createElement("span",{className:"rfipicons__sp"},"/"),n.default.createElement("span",{className:"rfipicons__tp"},this.state.totalPage)),n.default.createElement("div",{className:"rfipicons__arrow"},t,r))}},{key:"renderIconView",value:function(){var e=this;return this.state.totalPage>0?this.state.iconView.map(function(t,r){var a=(0,o.default)("rfipicons__icon",{"rfipicons__icon--selected":e.props.value===t||Array.isArray(e.props.value)&&e.props.value.includes(t)});return n.default.createElement("span",{className:a,key:t,title:e.state.titleView[r]},n.default.createElement("span",{className:"rfipicons__ibox",tabIndex:0,role:"button",onClick:function(){return e.handleChangeValue(t)},onKeyDown:function(r){return e.handleValueKeyboard(r,t)}},e.props.renderIcon(t)))}):n.default.createElement("span",{className:"rfipicons__icon--error"},n.default.createElement("span",{className:"rfipicons__ibox--error"},this.props.noIconPlaceholder))}},{key:"render",value:function(){return n.default.createElement("div",{className:"rfipicons"},this.renderPager(),n.default.createElement("div",{className:"rfipicons__selector"},this.renderIconView()))}}]),t}();Object.defineProperty(p,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{categories:a.default.arrayOf(a.default.string),currentCategory:a.default.number,isMulti:a.default.bool.isRequired,icons:a.default.oneOfType([a.default.arrayOf(a.default.string),a.default.arrayOf(a.default.number),a.default.objectOf(a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string)]))]).isRequired,search:a.default.oneOfType([a.default.objectOf(a.default.arrayOf(a.default.string)),a.default.arrayOf(a.default.string)]),value:a.default.oneOfType([a.default.number,a.default.string,a.default.arrayOf(a.default.oneOfType([a.default.number,a.default.string]))]).isRequired,currentSearch:a.default.string.isRequired,handleChangeValue:a.default.func.isRequired,currentPage:a.default.number.isRequired,iconsPerPage:a.default.number.isRequired,handleChangePage:a.default.func.isRequired,renderIcon:a.default.func.isRequired,noIconPlaceholder:a.default.string.isRequired}}),Object.defineProperty(p,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{categories:null,currentCategory:null,search:null}});var h=p;t.default=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=o(r(1)),a=o(r(0));function o(e){return e&&e.__esModule?e:{default:e}}var l=function(e){return n.default.createElement("div",{className:"rfipsearch"},n.default.createElement("input",{type:"text",className:"rfipsearch__input",value:e.value,onChange:e.handleSearch,placeholder:e.placeholder}))};l.propTypes={handleSearch:a.default.func.isRequired,value:a.default.string.isRequired,placeholder:a.default.string.isRequired};var i=l;t.default=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=o(r(1)),a=o(r(0));function o(e){return e&&e.__esModule?e:{default:e}}function l(e){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var u=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){return!t||"object"!==l(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),r=t,(a=[{key:"render",value:function(){return n.default.createElement("div",{className:"rfipcategory"},n.default.createElement("select",{className:"rfipcategory__select",onChange:this.props.handleCategory,value:this.props.value},this.props.categories.map(function(e,t){return n.default.createElement("option",{className:"rfipcategory__select__option",key:e,value:t},e)})),n.default.createElement("i",{className:"fipicon-angle-down",role:"presentation","aria-label":"Open"}))}}])&&i(r.prototype,a),t}();Object.defineProperty(u,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{handleCategory:a.default.func.isRequired,value:a.default.number.isRequired,categories:a.default.arrayOf(a.default.string).isRequired}});var c=u;t.default=c},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=c(r(1)),a=c(r(0)),o=c(r(10)),l=c(r(9)),i=c(r(8)),u=r(2);function c(e){return e&&e.__esModule?e:{default:e}}function s(e){return(s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function f(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function d(e,t,r){return t&&f(e.prototype,t),r&&f(e,r),e}function p(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var h=function(e){function t(e){var r,n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,n=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!n||"object"!==s(n)&&"function"!=typeof n?p(this):n,Object.defineProperty(p(r),"handleCategory",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=parseInt(e.target.value,10);Number.isNaN(t)&&(t=0),r.props.handleChangeCategory(t),r.props.handleChangePage(0)}}),Object.defineProperty(p(r),"handleSearch",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.target.value;r.props.handleChangeSearch(t)}}),r.state={},r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),d(t,null,[{key:"getDerivedStateFromProps",value:function(e){var t=(0,u.getPossibleCategories)(e.icons);return null!==t&&(t=[e.allCatPlaceholder].concat(function(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}(t))),{categories:t,searchString:e.currentSearch}}}]),d(t,[{key:"render",value:function(){return n.default.createElement("div",{className:"rfipdropdown__selector"},this.props.showSearch?n.default.createElement(l.default,{handleSearch:this.handleSearch,value:this.state.searchString,placeholder:this.props.searchPlaceholder}):null,this.props.showCategory&&this.state.categories&&this.state.categories.length?n.default.createElement(o.default,{handleCategory:this.handleCategory,value:this.props.currentCategory,categories:this.state.categories}):null,n.default.createElement(i.default,{categories:this.state.categories,currentCategory:this.props.currentCategory,isMulti:this.props.isMulti,icons:this.props.icons,search:this.props.search,value:this.props.value,currentSearch:this.props.currentSearch,handleChangeValue:this.props.handleChangeValue,currentPage:this.props.currentPage,iconsPerPage:this.props.iconsPerPage,handleChangePage:this.props.handleChangePage,renderIcon:this.props.renderIcon,noIconPlaceholder:this.props.noIconPlaceholder}))}}]),t}();Object.defineProperty(h,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{isMulti:a.default.bool.isRequired,value:a.default.oneOfType([a.default.number,a.default.string,a.default.arrayOf(a.default.any)]).isRequired,currentCategory:a.default.number.isRequired,currentPage:a.default.number.isRequired,currentSearch:a.default.string.isRequired,icons:a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string),a.default.objectOf(a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string)]))]).isRequired,search:a.default.oneOfType([a.default.object,a.default.arrayOf(a.default.string)]),showCategory:a.default.bool.isRequired,showSearch:a.default.bool.isRequired,iconsPerPage:a.default.number.isRequired,allCatPlaceholder:a.default.string.isRequired,searchPlaceholder:a.default.string.isRequired,noIconPlaceholder:a.default.string.isRequired,renderIcon:a.default.func.isRequired,handleChangeValue:a.default.func.isRequired,handleChangeCategory:a.default.func.isRequired,handleChangePage:a.default.func.isRequired,handleChangeSearch:a.default.func.isRequired}}),Object.defineProperty(h,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{search:null}});var y=h;t.default=y},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=l(r(1)),a=l(r(0)),o=l(r(3));function l(e){return e&&e.__esModule?e:{default:e}}function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function u(){return(u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}function c(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function s(e,t){return!t||"object"!==i(t)&&"function"!=typeof t?f(e):t}function f(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var d=function(e){function t(){var e,r,a;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var o=arguments.length,l=new Array(o),i=0;i<o;i++)l[i]=arguments[i];return s(a,(r=a=s(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(l))),Object.defineProperty(f(a),"handleClick",{configurable:!0,enumerable:!0,writable:!0,value:function(){a.props.onClick()}}),Object.defineProperty(f(a),"handleKeyDown",{configurable:!0,enumerable:!0,writable:!0,value:function(e){32!==e.keyCode&&13!==e.keyCode||a.props.onClick()}}),Object.defineProperty(f(a),"handleDelete",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){e.stopPropagation(),a.props.handleDeleteValue(t)}}),Object.defineProperty(f(a),"handleDeleteKeyboard",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){32!==e.keyCode&&13!==e.keyCode||a.props.handleDeleteValue(t)}}),Object.defineProperty(f(a),"renderEmptyIcon",{configurable:!0,enumerable:!0,writable:!0,value:function(){return n.default.createElement("span",{className:"rfipbtn__icon--empty"},a.props.noSelectedPlaceholder)}}),r))}var r,a;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),r=t,(a=[{key:"renderIcon",value:function(e){var t=this;return""===e||null===e||void 0===e?this.renderEmptyIcon():n.default.createElement("span",{className:"rfipbtn__icon",key:e},n.default.createElement("span",{className:"rfipbtn__elm"},this.props.renderIcon(e)),n.default.createElement("span",{className:"rfipbtn__del",onClick:function(r){return t.handleDelete(r,e)},onKeyDown:function(r){return t.handleDeleteKeyboard(r,e)},tabIndex:0,role:"button"},"×"))}},{key:"renderCurrentIcons",value:function(){var e=this;return this.props.isMulti?this.props.value.length?this.props.value.map(function(t){return e.renderIcon(t)}):this.renderEmptyIcon():this.renderIcon(this.props.value)}},{key:"render",value:function(){var e={onClick:this.handleClick,onKeyDown:this.handleKeyDown,onFocus:this.handleFocus,onBlur:this.handleBlur,tabIndex:0},t=(0,o.default)("rfipbtn__button","rfipbtn__button--".concat(this.props.isOpen?"open":"close")),r=(0,o.default)(this.props.className);return n.default.createElement("div",u({className:r,ref:this.props.domRef},e),n.default.createElement("div",{className:"rfipbtn__current"},this.renderCurrentIcons()),n.default.createElement("div",{className:t},n.default.createElement("i",{className:"fipicon-angle-down",role:"presentation","aria-label":"Open"})))}}])&&c(r.prototype,a),t}();Object.defineProperty(d,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{className:a.default.string.isRequired,isOpen:a.default.bool.isRequired,onClick:a.default.func.isRequired,domRef:a.default.object.isRequired,isMulti:a.default.bool.isRequired,value:a.default.oneOfType([a.default.number,a.default.string,a.default.arrayOf(a.default.oneOfType([a.default.number,a.default.string]))]).isRequired,renderIcon:a.default.func.isRequired,handleDeleteValue:a.default.func.isRequired,noSelectedPlaceholder:a.default.string.isRequired}});var p=d;t.default=p},function(e,t){e.exports=a},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=f(r(1)),a=f(r(0)),o=f(r(3)),l=r(13),i=f(r(12)),u=f(r(11)),c=f(r(7)),s=r(2);function f(e){return e&&e.__esModule?e:{default:e}}function d(e){return(d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function p(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}function h(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function y(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function b(e,t,r){return t&&y(e.prototype,t),r&&y(e,r),e}function g(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var m=[],v="",P=function(e){function t(e){var r,a;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,a=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!a||"object"!==d(a)&&"function"!=typeof a?g(this):a,Object.defineProperty(g(r),"handleOuterClick",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.target;r.isClickWithin(t)||r.closeDropdown()}}),Object.defineProperty(g(r),"handleEscapeKeyboard",{configurable:!0,enumerable:!0,writable:!0,value:function(e){27===e.keyCode&&r.closeDropdown()}}),Object.defineProperty(g(r),"isClickWithin",{configurable:!0,enumerable:!0,writable:!0,value:function(e){return r.fipButtonRef.current.contains(e)||r.fipDropDownRef.current&&r.fipDropDownRef.current.contains(e)}}),Object.defineProperty(g(r),"handleToggle",{configurable:!0,enumerable:!0,writable:!0,value:function(){r.setState(function(e){return r.handleDropDown(!e.isOpen,!1)})}}),Object.defineProperty(g(r),"closeDropdown",{configurable:!0,enumerable:!0,writable:!0,value:function(){r.handleDropDown(!1)}}),Object.defineProperty(g(r),"handleDropDown",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],a={isOpen:e};return a.elemClass=t.getDerivedClassName("rfip",r.props.theme,r.props.isMulti,e),a.btnClass=t.getDerivedClassName("rfipbtn",r.props.theme,r.props.isMulti,e),a.ddClass=t.getDerivedClassName("rfipdropdown",r.props.theme,r.props.isMulti,e),n&&r.setState(a),a}}),Object.defineProperty(g(r),"handleChangeValue",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t;r.props.isMulti?(t=p(r.state.value)).includes(e)?(t=t.filter(function(t){return t!==e})).length||(t=m):t.push(e):t=e===r.state.value?v:e,r.setState({value:t,isOpen:!r.props.closeOnSelect}),r.props.onChange(t)}}),Object.defineProperty(g(r),"handleDeleteValue",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var n;n=r.props.isMulti?r.state.value.filter(function(t){return t!==e}):t.getDerivedValue(n,r.props.isMulti),r.setState({value:n}),r.props.onChange(n)}}),Object.defineProperty(g(r),"handleChangePage",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.setState({currentPage:e})}}),Object.defineProperty(g(r),"handleChangeCategory",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.setState({currentCategory:e,currentPage:0})}}),Object.defineProperty(g(r),"handleChangeSearch",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.setState({currentSearch:e,currentPage:0})}}),Object.defineProperty(g(r),"resetPortalStyle",{configurable:!0,enumerable:!0,writable:!0,value:function(e){["maxHeight","paddingTop","paddingBottom"].forEach(function(t){e.style[t]=null})}}),Object.defineProperty(g(r),"handlePortalEnter",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];r.resetPortalStyle(t);var n=getComputedStyle(t);r.fipPortalComputedStyle={height:n.height,paddingTop:n.paddingTop,paddingBottom:n.paddingBottom},["maxHeight","paddingTop","paddingBottom"].forEach(function(e){t.style[e]="0px"})}}),Object.defineProperty(g(r),"handlePortalEntering",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];t.style.maxHeight=r.fipPortalComputedStyle.height,t.style.paddingTop=r.fipPortalComputedStyle.paddingTop,t.style.paddingBottom=r.fipPortalComputedStyle.paddingBottom}}),Object.defineProperty(g(r),"handlePortalEntered",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];r.resetPortalStyle(t),r.props.showSearch&&void 0===window.orientation&&-1===navigator.userAgent.indexOf("IEMobile")&&t.querySelector(".rfipsearch__input").focus()}}),Object.defineProperty(g(r),"handlePortalExit",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];r.resetPortalStyle(t);var n=getComputedStyle(t).height;t.style.maxHeight=n}}),Object.defineProperty(g(r),"handlePortalExiting",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];t.style.maxHeight="0px",t.style.paddingTop="0px",t.style.paddingBottom="0px"}}),Object.defineProperty(g(r),"renderIcon",{configurable:!0,enumerable:!0,writable:!0,value:function(e){if("function"==typeof r.props.renderFunc)return r.props.renderFunc(e);if("class"===r.props.renderUsing)return n.default.createElement("i",{className:e});var t=h({},r.props.renderUsing,r.props.convertHex?(0,s.convertToHex)(e):e);return n.default.createElement("i",t)}}),r.fipButtonRef=n.default.createRef(),r.fipDropDownRef=n.default.createRef(),r.state={currentCategory:0,currentPage:0,isOpen:!1,currentSearch:""},r.fipPortalComputedStyle=null,r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),b(t,null,[{key:"getDerivedStateFromProps",value:function(e,r){var n={};return n.elemClass=t.getDerivedClassName("rfip",e.theme,e.isMulti,r.isOpen),n.btnClass=t.getDerivedClassName("rfipbtn",e.theme,e.isMulti,r.isOpen),n.ddClass=t.getDerivedClassName("rfipdropdown",e.theme,e.isMulti,r.isOpen),n.value=t.getDerivedValue(e.value,e.isMulti),e.showCategory||(n.currentCategory=0,n.currentPage=0),e.showSearch||(n.currentSearch="",n.currentPage=0),n}},{key:"getDerivedClassName",value:function(e,t,r,n){return(0,o.default)(e,"".concat(e,"--").concat(t),h({},"".concat(e,"--multi"),r),"".concat(e,"--").concat(n?"open":"close"))}},{key:"getDerivedValue",value:function(e,t){var r=e;return t?r=Array.isArray(e)?p(e):m:"number"!=typeof e&&"string"!=typeof e&&(r=v),r}}]),b(t,[{key:"componentDidMount",value:function(){var e=this;["click"].forEach(function(t){document.addEventListener(t,e.handleOuterClick,!1)}),document.addEventListener("keydown",this.handleEscapeKeyboard,!1),this.props.onChange(this.state.value)}},{key:"componentWillUnmount",value:function(){var e=this;["click"].forEach(function(t){document.removeEventListener(t,e.handleOuterClick,!1)}),document.removeEventListener("keydown",this.handleEscapeKeyboard,!1)}},{key:"render",value:function(){var e={currentCategory:this.state.currentCategory,currentPage:this.state.currentPage,currentSearch:this.state.currentSearch,value:this.state.value,isMulti:this.props.isMulti,icons:this.props.icons,search:this.props.search,showCategory:this.props.showCategory,showSearch:this.props.showSearch,iconsPerPage:this.props.iconsPerPage,allCatPlaceholder:this.props.allCatPlaceholder,searchPlaceholder:this.props.searchPlaceholder,noIconPlaceholder:this.props.noIconPlaceholder,renderIcon:this.renderIcon,handleChangeValue:this.handleChangeValue,handleChangeCategory:this.handleChangeCategory,handleChangePage:this.handleChangePage,handleChangeSearch:this.handleChangeSearch};return n.default.createElement("div",{className:this.state.elemClass,ref:this.fipRef},n.default.createElement(i.default,{className:this.state.btnClass,isOpen:this.state.isOpen,onClick:this.handleToggle,domRef:this.fipButtonRef,isMulti:this.props.isMulti,value:this.state.value,renderIcon:this.renderIcon,handleDeleteValue:this.handleDeleteValue,noSelectedPlaceholder:this.props.noSelectedPlaceholder}),n.default.createElement(l.CSSTransition,{classNames:"fipappear",timeout:300,in:this.state.isOpen,unmountOnExit:!0,onEnter:this.handlePortalEnter,onEntering:this.handlePortalEntering,onEntered:this.handlePortalEntered,onExit:this.handlePortalExit,onExiting:this.handlePortalExiting},n.default.createElement(c.default,{appendRoot:this.props.appendTo,domRef:this.fipDropDownRef,btnRef:this.fipButtonRef,className:this.state.ddClass},n.default.createElement(u.default,e))))}}]),t}();Object.defineProperty(P,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{icons:a.default.oneOfType([a.default.arrayOf(a.default.string),a.default.arrayOf(a.default.number),a.default.objectOf(a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string)]))]).isRequired,search:a.default.oneOfType([a.default.objectOf(a.default.arrayOf(a.default.string)),a.default.arrayOf(a.default.string)]),iconsPerPage:a.default.number,theme:a.default.string,onChange:a.default.func.isRequired,showCategory:a.default.bool,showSearch:a.default.bool,value:a.default.oneOfType([a.default.arrayOf(a.default.string),a.default.arrayOf(a.default.number),a.default.number,a.default.string]),isMulti:a.default.bool,renderUsing:a.default.string,convertHex:a.default.bool,renderFunc:a.default.func,appendTo:a.default.oneOfType([a.default.bool,a.default.string]),allCatPlaceholder:a.default.string,searchPlaceholder:a.default.string,noIconPlaceholder:a.default.string,noSelectedPlaceholder:a.default.string,closeOnSelect:a.default.bool}}),Object.defineProperty(P,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{search:null,iconsPerPage:20,theme:"default",showCategory:!0,showSearch:!0,value:null,isMulti:!1,renderUsing:"class",convertHex:!0,renderFunc:null,appendTo:!1,allCatPlaceholder:"Show from all",searchPlaceholder:"Search Icons",noIconPlaceholder:"No icons found",noSelectedPlaceholder:"Select icon",closeOnSelect:!1}}),Object.defineProperty(P,"displayName",{configurable:!0,enumerable:!0,writable:!0,value:"FontIconPicker"});var O=P;t.default=O},function(e,t,r){"use strict";var n;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=((n=r(14))&&n.__esModule?n:{default:n}).default;t.default=a}]).default});
1027
  //# sourceMappingURL=fonticonpicker.react.js.map
1028
 
1029
  /***/ }),
@@ -1147,11 +1148,11 @@ if (process.env.NODE_ENV !== 'production') {
1147
  // By explicitly using `prop-types` you are opting into new development behavior.
1148
  // http://fb.me/prop-types-in-prod
1149
  var throwOnDirectAccess = true;
1150
- module.exports = __webpack_require__(/*! ./factoryWithTypeCheckers */ 276)(ReactIs.isElement, throwOnDirectAccess);
1151
  } else {
1152
  // By explicitly using `prop-types` you are opting into new production behavior.
1153
  // http://fb.me/prop-types-in-prod
1154
- module.exports = __webpack_require__(/*! ./factoryWithThrowingShims */ 277)();
1155
  }
1156
 
1157
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
@@ -1167,7 +1168,7 @@ if (process.env.NODE_ENV !== 'production') {
1167
 
1168
  var arrayMap = __webpack_require__(/*! ./_arrayMap */ 34),
1169
  baseIteratee = __webpack_require__(/*! ./_baseIteratee */ 113),
1170
- baseMap = __webpack_require__(/*! ./_baseMap */ 250),
1171
  isArray = __webpack_require__(/*! ./isArray */ 14);
1172
 
1173
  /**
@@ -1304,9 +1305,9 @@ if (process.env.NODE_ENV === 'production') {
1304
  // DCE check should happen before ReactDOM bundle executes so that
1305
  // DevTools can report bad minification during injection.
1306
  checkDCE();
1307
- module.exports = __webpack_require__(/*! ./cjs/react-dom.production.min.js */ 267);
1308
  } else {
1309
- module.exports = __webpack_require__(/*! ./cjs/react-dom.development.js */ 270);
1310
  }
1311
 
1312
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
@@ -1320,8 +1321,8 @@ if (process.env.NODE_ENV === 'production') {
1320
  /*! all exports used */
1321
  /***/ (function(module, exports, __webpack_require__) {
1322
 
1323
- var baseIsNative = __webpack_require__(/*! ./_baseIsNative */ 202),
1324
- getValue = __webpack_require__(/*! ./_getValue */ 207);
1325
 
1326
  /**
1327
  * Gets the native function at `key` of `object`.
@@ -1349,8 +1350,8 @@ module.exports = getNative;
1349
  /***/ (function(module, exports, __webpack_require__) {
1350
 
1351
  var Symbol = __webpack_require__(/*! ./_Symbol */ 21),
1352
- getRawTag = __webpack_require__(/*! ./_getRawTag */ 203),
1353
- objectToString = __webpack_require__(/*! ./_objectToString */ 204);
1354
 
1355
  /** `Object#toString` result references. */
1356
  var nullTag = '[object Null]',
@@ -1405,7 +1406,7 @@ module.exports = Symbol;
1405
  /***/ (function(module, exports, __webpack_require__) {
1406
 
1407
  var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */ 123),
1408
- baseKeys = __webpack_require__(/*! ./_baseKeys */ 234),
1409
  isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23);
1410
 
1411
  /**
@@ -1453,7 +1454,7 @@ module.exports = keys;
1453
  /***/ (function(module, exports, __webpack_require__) {
1454
 
1455
  var isFunction = __webpack_require__(/*! ./isFunction */ 114),
1456
- isLength = __webpack_require__(/*! ./isLength */ 59);
1457
 
1458
  /**
1459
  * Checks if `value` is array-like. A value is considered array-like if it's
@@ -1497,8 +1498,8 @@ module.exports = isArrayLike;
1497
  /***/ (function(module, exports, __webpack_require__) {
1498
 
1499
  var isArray = __webpack_require__(/*! ./isArray */ 14),
1500
- isKey = __webpack_require__(/*! ./_isKey */ 60),
1501
- stringToPath = __webpack_require__(/*! ./_stringToPath */ 242),
1502
  toString = __webpack_require__(/*! ./toString */ 130);
1503
 
1504
  /**
@@ -2451,11 +2452,11 @@ module.exports = arrayMap;
2451
  /*! all exports used */
2452
  /***/ (function(module, exports, __webpack_require__) {
2453
 
2454
- var listCacheClear = __webpack_require__(/*! ./_listCacheClear */ 192),
2455
- listCacheDelete = __webpack_require__(/*! ./_listCacheDelete */ 193),
2456
- listCacheGet = __webpack_require__(/*! ./_listCacheGet */ 194),
2457
- listCacheHas = __webpack_require__(/*! ./_listCacheHas */ 195),
2458
- listCacheSet = __webpack_require__(/*! ./_listCacheSet */ 196);
2459
 
2460
  /**
2461
  * Creates an list cache object.
@@ -2591,7 +2592,7 @@ module.exports = nativeCreate;
2591
  /*! all exports used */
2592
  /***/ (function(module, exports, __webpack_require__) {
2593
 
2594
- var isKeyable = __webpack_require__(/*! ./_isKeyable */ 216);
2595
 
2596
  /**
2597
  * Gets the data for `map`.
@@ -2712,7 +2713,7 @@ var nodeUtil = (function() {
2712
 
2713
  module.exports = nodeUtil;
2714
 
2715
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */ 58)(module)))
2716
 
2717
  /***/ }),
2718
  /* 43 */
@@ -2752,11 +2753,11 @@ module.exports = isPrototype;
2752
  /*! all exports used */
2753
  /***/ (function(module, exports, __webpack_require__) {
2754
 
2755
- var DataView = __webpack_require__(/*! ./_DataView */ 236),
2756
- Map = __webpack_require__(/*! ./_Map */ 51),
2757
- Promise = __webpack_require__(/*! ./_Promise */ 237),
2758
- Set = __webpack_require__(/*! ./_Set */ 238),
2759
- WeakMap = __webpack_require__(/*! ./_WeakMap */ 239),
2760
  baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 20),
2761
  toSource = __webpack_require__(/*! ./_toSource */ 116);
2762
 
@@ -3713,6 +3714,254 @@ var canUseDOM = exports.canUseDOM = function canUseDOM() {
3713
 
3714
  /***/ }),
3715
  /* 50 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3716
  /*!***************************************!*\
3717
  !*** ./node_modules/lodash/_Stack.js ***!
3718
  \***************************************/
@@ -3721,11 +3970,11 @@ var canUseDOM = exports.canUseDOM = function canUseDOM() {
3721
  /***/ (function(module, exports, __webpack_require__) {
3722
 
3723
  var ListCache = __webpack_require__(/*! ./_ListCache */ 35),
3724
- stackClear = __webpack_require__(/*! ./_stackClear */ 197),
3725
- stackDelete = __webpack_require__(/*! ./_stackDelete */ 198),
3726
- stackGet = __webpack_require__(/*! ./_stackGet */ 199),
3727
- stackHas = __webpack_require__(/*! ./_stackHas */ 200),
3728
- stackSet = __webpack_require__(/*! ./_stackSet */ 201);
3729
 
3730
  /**
3731
  * Creates a stack cache object to store key-value pairs.
@@ -3750,7 +3999,7 @@ module.exports = Stack;
3750
 
3751
 
3752
  /***/ }),
3753
- /* 51 */
3754
  /*!*************************************!*\
3755
  !*** ./node_modules/lodash/_Map.js ***!
3756
  \*************************************/
@@ -3768,7 +4017,7 @@ module.exports = Map;
3768
 
3769
 
3770
  /***/ }),
3771
- /* 52 */
3772
  /*!***********************************!*\
3773
  !*** (webpack)/buildin/global.js ***!
3774
  \***********************************/
@@ -3776,31 +4025,31 @@ module.exports = Map;
3776
  /*! all exports used */
3777
  /***/ (function(module, exports) {
3778
 
3779
- var g;
3780
-
3781
- // This works in non-strict mode
3782
- g = (function() {
3783
- return this;
3784
- })();
3785
-
3786
- try {
3787
- // This works if eval is allowed (see CSP)
3788
- g = g || Function("return this")() || (1,eval)("this");
3789
- } catch(e) {
3790
- // This works if the window reference is available
3791
- if(typeof window === "object")
3792
- g = window;
3793
- }
3794
-
3795
- // g can still be undefined, but nothing to do about it...
3796
- // We return undefined, instead of nothing here, so it's
3797
- // easier to handle this case. if(!global) { ...}
3798
-
3799
- module.exports = g;
3800
 
3801
 
3802
  /***/ }),
3803
- /* 53 */
3804
  /*!******************************************!*\
3805
  !*** ./node_modules/lodash/_MapCache.js ***!
3806
  \******************************************/
@@ -3808,11 +4057,11 @@ module.exports = g;
3808
  /*! all exports used */
3809
  /***/ (function(module, exports, __webpack_require__) {
3810
 
3811
- var mapCacheClear = __webpack_require__(/*! ./_mapCacheClear */ 208),
3812
- mapCacheDelete = __webpack_require__(/*! ./_mapCacheDelete */ 215),
3813
- mapCacheGet = __webpack_require__(/*! ./_mapCacheGet */ 217),
3814
- mapCacheHas = __webpack_require__(/*! ./_mapCacheHas */ 218),
3815
- mapCacheSet = __webpack_require__(/*! ./_mapCacheSet */ 219);
3816
 
3817
  /**
3818
  * Creates a map cache object to store key-value pairs.
@@ -3843,7 +4092,7 @@ module.exports = MapCache;
3843
 
3844
 
3845
  /***/ }),
3846
- /* 54 */
3847
  /*!*******************************************!*\
3848
  !*** ./node_modules/lodash/_arrayPush.js ***!
3849
  \*******************************************/
@@ -3874,7 +4123,7 @@ module.exports = arrayPush;
3874
 
3875
 
3876
  /***/ }),
3877
- /* 55 */
3878
  /*!********************************************!*\
3879
  !*** ./node_modules/lodash/_getSymbols.js ***!
3880
  \********************************************/
@@ -3882,7 +4131,7 @@ module.exports = arrayPush;
3882
  /*! all exports used */
3883
  /***/ (function(module, exports, __webpack_require__) {
3884
 
3885
- var arrayFilter = __webpack_require__(/*! ./_arrayFilter */ 230),
3886
  stubArray = __webpack_require__(/*! ./stubArray */ 122);
3887
 
3888
  /** Used for built-in method references. */
@@ -3915,7 +4164,7 @@ module.exports = getSymbols;
3915
 
3916
 
3917
  /***/ }),
3918
- /* 56 */
3919
  /*!********************************************!*\
3920
  !*** ./node_modules/lodash/isArguments.js ***!
3921
  \********************************************/
@@ -3923,7 +4172,7 @@ module.exports = getSymbols;
3923
  /*! all exports used */
3924
  /***/ (function(module, exports, __webpack_require__) {
3925
 
3926
- var baseIsArguments = __webpack_require__(/*! ./_baseIsArguments */ 231),
3927
  isObjectLike = __webpack_require__(/*! ./isObjectLike */ 17);
3928
 
3929
  /** Used for built-in method references. */
@@ -3962,7 +4211,7 @@ module.exports = isArguments;
3962
 
3963
 
3964
  /***/ }),
3965
- /* 57 */
3966
  /*!*****************************************!*\
3967
  !*** ./node_modules/lodash/isBuffer.js ***!
3968
  \*****************************************/
@@ -3971,7 +4220,7 @@ module.exports = isArguments;
3971
  /***/ (function(module, exports, __webpack_require__) {
3972
 
3973
  /* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(/*! ./_root */ 12),
3974
- stubFalse = __webpack_require__(/*! ./stubFalse */ 232);
3975
 
3976
  /** Detect free variable `exports`. */
3977
  var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
@@ -4009,10 +4258,10 @@ var isBuffer = nativeIsBuffer || stubFalse;
4009
 
4010
  module.exports = isBuffer;
4011
 
4012
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */ 58)(module)))
4013
 
4014
  /***/ }),
4015
- /* 58 */
4016
  /*!***********************************!*\
4017
  !*** (webpack)/buildin/module.js ***!
4018
  \***********************************/
@@ -4020,32 +4269,32 @@ module.exports = isBuffer;
4020
  /*! all exports used */
4021
  /***/ (function(module, exports) {
4022
 
4023
- module.exports = function(module) {
4024
- if(!module.webpackPolyfill) {
4025
- module.deprecate = function() {};
4026
- module.paths = [];
4027
- // module.parent = undefined by default
4028
- if(!module.children) module.children = [];
4029
- Object.defineProperty(module, "loaded", {
4030
- enumerable: true,
4031
- get: function() {
4032
- return module.l;
4033
- }
4034
- });
4035
- Object.defineProperty(module, "id", {
4036
- enumerable: true,
4037
- get: function() {
4038
- return module.i;
4039
- }
4040
- });
4041
- module.webpackPolyfill = 1;
4042
- }
4043
- return module;
4044
- };
4045
 
4046
 
4047
  /***/ }),
4048
- /* 59 */
4049
  /*!*****************************************!*\
4050
  !*** ./node_modules/lodash/isLength.js ***!
4051
  \*****************************************/
@@ -4091,7 +4340,7 @@ module.exports = isLength;
4091
 
4092
 
4093
  /***/ }),
4094
- /* 60 */
4095
  /*!***************************************!*\
4096
  !*** ./node_modules/lodash/_isKey.js ***!
4097
  \***************************************/
@@ -4131,7 +4380,7 @@ module.exports = isKey;
4131
 
4132
 
4133
  /***/ }),
4134
- /* 61 */
4135
  /*!***************************************************!*\
4136
  !*** ./node_modules/prop-types/checkPropTypes.js ***!
4137
  \***************************************************/
@@ -4152,7 +4401,7 @@ module.exports = isKey;
4152
  var printWarning = function() {};
4153
 
4154
  if (process.env.NODE_ENV !== 'production') {
4155
- var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ 62);
4156
  var loggedTypeFailures = {};
4157
  var has = Function.call.bind(Object.prototype.hasOwnProperty);
4158
 
@@ -4246,7 +4495,7 @@ module.exports = checkPropTypes;
4246
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
4247
 
4248
  /***/ }),
4249
- /* 62 */
4250
  /*!*************************************************************!*\
4251
  !*** ./node_modules/prop-types/lib/ReactPropTypesSecret.js ***!
4252
  \*************************************************************/
@@ -4270,7 +4519,7 @@ module.exports = ReactPropTypesSecret;
4270
 
4271
 
4272
  /***/ }),
4273
- /* 63 */
4274
  /*!*************************************************************!*\
4275
  !*** ./node_modules/@emotion/core/dist/core.browser.esm.js ***!
4276
  \*************************************************************/
@@ -4286,12 +4535,12 @@ module.exports = ReactPropTypesSecret;
4286
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return jsx; });
4287
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return keyframes; });
4288
  /* unused harmony export withEmotionCache */
4289
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/inheritsLoose */ 260);
4290
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose__);
4291
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 6);
4292
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
4293
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_cache__ = __webpack_require__(/*! @emotion/cache */ 134);
4294
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__emotion_utils__ = __webpack_require__(/*! @emotion/utils */ 263);
4295
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__emotion_serialize__ = __webpack_require__(/*! @emotion/serialize */ 136);
4296
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__emotion_sheet__ = __webpack_require__(/*! @emotion/sheet */ 135);
4297
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
@@ -4677,7 +4926,7 @@ var ClassNames = withEmotionCache(function (props, context) {
4677
  /* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
4678
 
4679
  /***/ }),
4680
- /* 64 */
4681
  /*!**********************************************************************!*\
4682
  !*** ./node_modules/react-select/dist/utils-06b0d5a4.browser.esm.js ***!
4683
  \**********************************************************************/
@@ -4905,7 +5154,7 @@ function isMobileDevice() {
4905
 
4906
 
4907
  /***/ }),
4908
- /* 65 */
4909
  /*!*****************************************************!*\
4910
  !*** ./src/blocks/post/components/FeaturedImage.js ***!
4911
  \*****************************************************/
@@ -4972,7 +5221,7 @@ var FeaturedImage = function (_React$Component) {
4972
  /* harmony default export */ __webpack_exports__["a"] = (FeaturedImage);
4973
 
4974
  /***/ }),
4975
- /* 66 */
4976
  /*!*********************************************!*\
4977
  !*** ./src/blocks/post/components/Title.js ***!
4978
  \*********************************************/
@@ -5040,7 +5289,7 @@ var Title = function (_React$Component) {
5040
  /* harmony default export */ __webpack_exports__["a"] = (Title);
5041
 
5042
  /***/ }),
5043
- /* 67 */
5044
  /*!********************************************!*\
5045
  !*** ./src/blocks/post/components/Meta.js ***!
5046
  \********************************************/
@@ -5131,7 +5380,7 @@ var Meta = function (_React$Component) {
5131
  /* harmony default export */ __webpack_exports__["a"] = (Meta);
5132
 
5133
  /***/ }),
5134
- /* 68 */
5135
  /*!***********************************************!*\
5136
  !*** ./src/blocks/post/components/Excerpt.js ***!
5137
  \***********************************************/
@@ -5140,7 +5389,7 @@ var Meta = function (_React$Component) {
5140
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
5141
 
5142
  "use strict";
5143
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_truncate__ = __webpack_require__(/*! lodash/truncate */ 290);
5144
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_truncate___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_truncate__);
5145
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
5146
 
@@ -5213,7 +5462,7 @@ var Excerpt = function (_React$Component) {
5213
  /* harmony default export */ __webpack_exports__["a"] = (Excerpt);
5214
 
5215
  /***/ }),
5216
- /* 69 */
5217
  /*!*******************************************!*\
5218
  !*** ./node_modules/lodash/_baseSlice.js ***!
5219
  \*******************************************/
@@ -5255,7 +5504,7 @@ module.exports = baseSlice;
5255
 
5256
 
5257
  /***/ }),
5258
- /* 70 */
5259
  /*!********************************************!*\
5260
  !*** ./node_modules/lodash/_hasUnicode.js ***!
5261
  \********************************************/
@@ -5292,7 +5541,7 @@ module.exports = hasUnicode;
5292
 
5293
 
5294
  /***/ }),
5295
- /* 71 */
5296
  /*!******************************************!*\
5297
  !*** ./node_modules/lodash/toInteger.js ***!
5298
  \******************************************/
@@ -5300,7 +5549,7 @@ module.exports = hasUnicode;
5300
  /*! all exports used */
5301
  /***/ (function(module, exports, __webpack_require__) {
5302
 
5303
- var toFinite = __webpack_require__(/*! ./toFinite */ 300);
5304
 
5305
  /**
5306
  * Converts `value` to an integer.
@@ -5339,7 +5588,7 @@ module.exports = toInteger;
5339
 
5340
 
5341
  /***/ }),
5342
- /* 72 */
5343
  /*!**********************************************!*\
5344
  !*** ./src/blocks/post/components/Button.js ***!
5345
  \**********************************************/
@@ -5414,7 +5663,7 @@ var Button = function (_React$Component) {
5414
  /* harmony default export */ __webpack_exports__["a"] = (Button);
5415
 
5416
  /***/ }),
5417
- /* 73 */
5418
  /*!************************************!*\
5419
  !*** ./src/blocks/post/styling.js ***!
5420
  \************************************/
@@ -5890,7 +6139,7 @@ function styling(props) {
5890
  /* harmony default export */ __webpack_exports__["a"] = (styling);
5891
 
5892
  /***/ }),
5893
- /* 74 */
5894
  /*!************************************!*\
5895
  !*** ./src/blocks/post/style.scss ***!
5896
  \************************************/
@@ -5900,7 +6149,7 @@ function styling(props) {
5900
  // removed by extract-text-webpack-plugin
5901
 
5902
  /***/ }),
5903
- /* 75 */
5904
  /*!*************************************!*\
5905
  !*** ./src/blocks/post/editor.scss ***!
5906
  \*************************************/
@@ -5910,7 +6159,7 @@ function styling(props) {
5910
  // removed by extract-text-webpack-plugin
5911
 
5912
  /***/ }),
5913
- /* 76 */
5914
  /*!***********************************************!*\
5915
  !*** ./node_modules/ev-emitter/ev-emitter.js ***!
5916
  \***********************************************/
@@ -6037,7 +6286,7 @@ return EvEmitter;
6037
 
6038
 
6039
  /***/ }),
6040
- /* 77 */
6041
  /*!*******************************************!*\
6042
  !*** ./node_modules/get-size/get-size.js ***!
6043
  \*******************************************/
@@ -6259,7 +6508,7 @@ return getSize;
6259
 
6260
 
6261
  /***/ }),
6262
- /* 78 */
6263
  /*!**********************************************!*\
6264
  !*** ./node_modules/lodash/_getPrototype.js ***!
6265
  \**********************************************/
@@ -6276,7 +6525,7 @@ module.exports = getPrototype;
6276
 
6277
 
6278
  /***/ }),
6279
- /* 79 */
6280
  /*!**********************************************!*\
6281
  !*** ./node_modules/lodash/_getAllKeysIn.js ***!
6282
  \**********************************************/
@@ -6304,7 +6553,7 @@ module.exports = getAllKeysIn;
6304
 
6305
 
6306
  /***/ }),
6307
- /* 80 */
6308
  /*!**************************************************!*\
6309
  !*** ./node_modules/lodash/_cloneArrayBuffer.js ***!
6310
  \**************************************************/
@@ -6330,254 +6579,6 @@ function cloneArrayBuffer(arrayBuffer) {
6330
  module.exports = cloneArrayBuffer;
6331
 
6332
 
6333
- /***/ }),
6334
- /* 81 */
6335
- /*!********************************************!*\
6336
- !*** ./src/components/box-shadow/index.js ***!
6337
- \********************************************/
6338
- /*! exports provided: default */
6339
- /*! exports used: default */
6340
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
6341
-
6342
- "use strict";
6343
- var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
6344
-
6345
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
6346
-
6347
- function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
6348
-
6349
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
6350
-
6351
- /**
6352
- * Box-Shadow reusable component.
6353
- *
6354
- */
6355
- var __ = wp.i18n.__;
6356
- var ColorPalette = wp.blockEditor.ColorPalette;
6357
- var _wp$components = wp.components,
6358
- Button = _wp$components.Button,
6359
- SelectControl = _wp$components.SelectControl,
6360
- RangeControl = _wp$components.RangeControl,
6361
- Dashicon = _wp$components.Dashicon;
6362
-
6363
- // Extend component
6364
-
6365
- var _wp$element = wp.element,
6366
- Component = _wp$element.Component,
6367
- Fragment = _wp$element.Fragment;
6368
-
6369
- var BoxShadowControl = function (_Component) {
6370
- _inherits(BoxShadowControl, _Component);
6371
-
6372
- function BoxShadowControl() {
6373
- _classCallCheck(this, BoxShadowControl);
6374
-
6375
- var _this = _possibleConstructorReturn(this, (BoxShadowControl.__proto__ || Object.getPrototypeOf(BoxShadowControl)).apply(this, arguments));
6376
-
6377
- _this.onAdvancedControlClick = _this.onAdvancedControlClick.bind(_this);
6378
- _this.onAdvancedControlReset = _this.onAdvancedControlReset.bind(_this);
6379
- return _this;
6380
- }
6381
-
6382
- _createClass(BoxShadowControl, [{
6383
- key: "onAdvancedControlClick",
6384
- value: function onAdvancedControlClick() {
6385
-
6386
- var control = true;
6387
- var label = __("Hide Advanced");
6388
-
6389
- if (this.state !== null && this.state.showAdvancedControls === true) {
6390
- control = false;
6391
- label = __("Advanced");
6392
- }
6393
-
6394
- this.setState({
6395
- showAdvancedControls: control,
6396
- showAdvancedControlsLabel: label
6397
- });
6398
- }
6399
- }, {
6400
- key: "onAdvancedControlReset",
6401
- value: function onAdvancedControlReset() {
6402
- var setAttributes = this.props.setAttributes;
6403
-
6404
-
6405
- setAttributes({ boxShadowColor: "" });
6406
- setAttributes({ boxShadowHOffset: "" });
6407
- setAttributes({ boxShadowVOffset: "" });
6408
- setAttributes({ boxShadowBlur: "" });
6409
- setAttributes({ boxShadowSpread: "" });
6410
- setAttributes({ boxShadowPosition: "" });
6411
- }
6412
- }, {
6413
- key: "render",
6414
- value: function render() {
6415
- var _props = this.props,
6416
- setAttributes = _props.setAttributes,
6417
- boxShadowColor = _props.boxShadowColor,
6418
- boxShadowHOffset = _props.boxShadowHOffset,
6419
- boxShadowVOffset = _props.boxShadowVOffset,
6420
- boxShadowBlur = _props.boxShadowBlur,
6421
- boxShadowSpread = _props.boxShadowSpread,
6422
- boxShadowPosition = _props.boxShadowPosition;
6423
-
6424
-
6425
- var advancedControls;
6426
- var boxShadowAdvancedControls;
6427
- var resetBoxShadowAdvancedControls;
6428
- if (this.state !== null && true === this.state.showAdvancedControls) {
6429
- advancedControls = wp.element.createElement(
6430
- "div",
6431
- { className: "uagb-box-shadow-advanced" },
6432
- wp.element.createElement(
6433
- Fragment,
6434
- null,
6435
- wp.element.createElement(
6436
- "p",
6437
- { className: "uagb-setting-label" },
6438
- boxShadowColor.label,
6439
- wp.element.createElement(
6440
- "span",
6441
- { className: "components-base-control__label" },
6442
- wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: boxShadowColor.value } })
6443
- )
6444
- ),
6445
- wp.element.createElement(ColorPalette, {
6446
- value: boxShadowColor.value,
6447
- onChange: function onChange(colorValue) {
6448
- return setAttributes({ boxShadowColor: colorValue });
6449
- },
6450
- allowReset: true
6451
- })
6452
- ),
6453
- wp.element.createElement(
6454
- Fragment,
6455
- null,
6456
- wp.element.createElement(
6457
- "h2",
6458
- null,
6459
- boxShadowHOffset.label
6460
- ),
6461
- wp.element.createElement(RangeControl, {
6462
- value: boxShadowHOffset.value,
6463
- onChange: function onChange(value) {
6464
- return setAttributes({ boxShadowHOffset: value });
6465
- },
6466
- min: -100,
6467
- max: 100,
6468
- allowReset: true
6469
- })
6470
- ),
6471
- wp.element.createElement(
6472
- Fragment,
6473
- null,
6474
- wp.element.createElement(
6475
- "h2",
6476
- null,
6477
- boxShadowVOffset.label
6478
- ),
6479
- wp.element.createElement(RangeControl, {
6480
- value: boxShadowVOffset.value,
6481
- onChange: function onChange(value) {
6482
- return setAttributes({ boxShadowVOffset: value });
6483
- },
6484
- min: -100,
6485
- max: 100,
6486
- allowReset: true
6487
- })
6488
- ),
6489
- wp.element.createElement(
6490
- Fragment,
6491
- null,
6492
- wp.element.createElement(
6493
- "h2",
6494
- null,
6495
- boxShadowBlur.label
6496
- ),
6497
- wp.element.createElement(RangeControl, {
6498
- value: boxShadowBlur.value,
6499
- onChange: function onChange(value) {
6500
- return setAttributes({ boxShadowBlur: value });
6501
- },
6502
- min: 0,
6503
- max: 100,
6504
- allowReset: true
6505
- })
6506
- ),
6507
- wp.element.createElement(
6508
- Fragment,
6509
- null,
6510
- wp.element.createElement(
6511
- "h2",
6512
- null,
6513
- boxShadowSpread.label
6514
- ),
6515
- wp.element.createElement(RangeControl, {
6516
- value: boxShadowSpread.value,
6517
- onChange: function onChange(value) {
6518
- return setAttributes({ boxShadowSpread: value });
6519
- },
6520
- min: 0,
6521
- max: 100,
6522
- allowReset: true
6523
- })
6524
- ),
6525
- wp.element.createElement(
6526
- Fragment,
6527
- null,
6528
- wp.element.createElement(SelectControl, {
6529
- label: boxShadowPosition.label,
6530
- value: boxShadowPosition.value,
6531
- onChange: function onChange(value) {
6532
- return setAttributes({ boxShadowPosition: value });
6533
- },
6534
- options: [{ value: "inset", label: __("Inset") }, { value: "outset", label: __("Outset") }]
6535
- })
6536
- )
6537
- );
6538
- }
6539
- resetBoxShadowAdvancedControls = wp.element.createElement(
6540
- Button,
6541
- {
6542
- className: "uagb-size-btn uagb-typography-reset-btn",
6543
- isSmall: true,
6544
- "aria-pressed": this.state !== null,
6545
- onClick: this.onAdvancedControlReset
6546
- },
6547
- wp.element.createElement(Dashicon, { icon: "image-rotate" })
6548
- );
6549
-
6550
- boxShadowAdvancedControls = wp.element.createElement(
6551
- Button,
6552
- {
6553
- className: "uagb-size-btn uagb-typography-control-btn",
6554
- isSmall: true,
6555
- "aria-pressed": this.state !== null,
6556
- onClick: this.onAdvancedControlClick
6557
- },
6558
- wp.element.createElement(Dashicon, { icon: "admin-tools" })
6559
- );
6560
-
6561
- return wp.element.createElement(
6562
- "div",
6563
- { className: "uag-typography-option-actions" },
6564
- wp.element.createElement(
6565
- "span",
6566
- null,
6567
- this.props.label
6568
- ),
6569
- boxShadowAdvancedControls,
6570
- resetBoxShadowAdvancedControls,
6571
- advancedControls
6572
- );
6573
- }
6574
- }]);
6575
-
6576
- return BoxShadowControl;
6577
- }(Component);
6578
-
6579
- /* harmony default export */ __webpack_exports__["a"] = (BoxShadowControl);
6580
-
6581
  /***/ }),
6582
  /* 82 */
6583
  /*!***************************************************!*\
@@ -8940,11 +8941,11 @@ var attributes = {
8940
  /*! all exports used */
8941
  /***/ (function(module, exports, __webpack_require__) {
8942
 
8943
- var baseMatches = __webpack_require__(/*! ./_baseMatches */ 190),
8944
- baseMatchesProperty = __webpack_require__(/*! ./_baseMatchesProperty */ 241),
8945
  identity = __webpack_require__(/*! ./identity */ 47),
8946
  isArray = __webpack_require__(/*! ./isArray */ 14),
8947
- property = __webpack_require__(/*! ./property */ 248);
8948
 
8949
  /**
8950
  * The base implementation of `_.iteratee`.
@@ -9035,7 +9036,7 @@ var freeGlobal = typeof global == 'object' && global && global.Object === Object
9035
 
9036
  module.exports = freeGlobal;
9037
 
9038
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 52)))
9039
 
9040
  /***/ }),
9041
  /* 116 */
@@ -9083,7 +9084,7 @@ module.exports = toSource;
9083
  /*! all exports used */
9084
  /***/ (function(module, exports, __webpack_require__) {
9085
 
9086
- var baseIsEqualDeep = __webpack_require__(/*! ./_baseIsEqualDeep */ 220),
9087
  isObjectLike = __webpack_require__(/*! ./isObjectLike */ 17);
9088
 
9089
  /**
@@ -9122,9 +9123,9 @@ module.exports = baseIsEqual;
9122
  /*! all exports used */
9123
  /***/ (function(module, exports, __webpack_require__) {
9124
 
9125
- var SetCache = __webpack_require__(/*! ./_SetCache */ 221),
9126
- arraySome = __webpack_require__(/*! ./_arraySome */ 224),
9127
- cacheHas = __webpack_require__(/*! ./_cacheHas */ 225);
9128
 
9129
  /** Used to compose bitmasks for value comparisons. */
9130
  var COMPARE_PARTIAL_FLAG = 1,
@@ -9234,7 +9235,7 @@ module.exports = Uint8Array;
9234
  /***/ (function(module, exports, __webpack_require__) {
9235
 
9236
  var baseGetAllKeys = __webpack_require__(/*! ./_baseGetAllKeys */ 121),
9237
- getSymbols = __webpack_require__(/*! ./_getSymbols */ 55),
9238
  keys = __webpack_require__(/*! ./keys */ 22);
9239
 
9240
  /**
@@ -9260,7 +9261,7 @@ module.exports = getAllKeys;
9260
  /*! all exports used */
9261
  /***/ (function(module, exports, __webpack_require__) {
9262
 
9263
- var arrayPush = __webpack_require__(/*! ./_arrayPush */ 54),
9264
  isArray = __webpack_require__(/*! ./isArray */ 14);
9265
 
9266
  /**
@@ -9326,9 +9327,9 @@ module.exports = stubArray;
9326
  /***/ (function(module, exports, __webpack_require__) {
9327
 
9328
  var baseTimes = __webpack_require__(/*! ./_baseTimes */ 124),
9329
- isArguments = __webpack_require__(/*! ./isArguments */ 56),
9330
  isArray = __webpack_require__(/*! ./isArray */ 14),
9331
- isBuffer = __webpack_require__(/*! ./isBuffer */ 57),
9332
  isIndex = __webpack_require__(/*! ./_isIndex */ 40),
9333
  isTypedArray = __webpack_require__(/*! ./isTypedArray */ 125);
9334
 
@@ -9416,7 +9417,7 @@ module.exports = baseTimes;
9416
  /*! all exports used */
9417
  /***/ (function(module, exports, __webpack_require__) {
9418
 
9419
- var baseIsTypedArray = __webpack_require__(/*! ./_baseIsTypedArray */ 233),
9420
  baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
9421
  nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
9422
 
@@ -9743,8 +9744,8 @@ function memoizeOne(resultFn, isEqual) {
9743
 
9744
  "use strict";
9745
  /* WEBPACK VAR INJECTION */(function(process) {/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_sheet__ = __webpack_require__(/*! @emotion/sheet */ 135);
9746
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_stylis__ = __webpack_require__(/*! @emotion/stylis */ 261);
9747
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_weak_memoize__ = __webpack_require__(/*! @emotion/weak-memoize */ 262);
9748
 
9749
 
9750
 
@@ -10118,9 +10119,9 @@ function () {
10118
 
10119
  "use strict";
10120
  /* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return serializeStyles; });
10121
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_hash__ = __webpack_require__(/*! @emotion/hash */ 264);
10122
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_unitless__ = __webpack_require__(/*! @emotion/unitless */ 265);
10123
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_memoize__ = __webpack_require__(/*! @emotion/memoize */ 266);
10124
 
10125
 
10126
 
@@ -10459,9 +10460,9 @@ var serializeStyles = function serializeStyles(args, registered, mergedProps) {
10459
  /* WEBPACK VAR INJECTION */(function(process) {
10460
 
10461
  if (process.env.NODE_ENV === 'production') {
10462
- module.exports = __webpack_require__(/*! ./cjs/scheduler.production.min.js */ 268);
10463
  } else {
10464
- module.exports = __webpack_require__(/*! ./cjs/scheduler.development.js */ 269);
10465
  }
10466
 
10467
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
@@ -10479,9 +10480,9 @@ if (process.env.NODE_ENV === 'production') {
10479
  /* WEBPACK VAR INJECTION */(function(process) {
10480
 
10481
  if (process.env.NODE_ENV === 'production') {
10482
- module.exports = __webpack_require__(/*! ./cjs/react-is.production.min.js */ 274);
10483
  } else {
10484
- module.exports = __webpack_require__(/*! ./cjs/react-is.development.js */ 275);
10485
  }
10486
 
10487
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
@@ -10524,12 +10525,12 @@ if (process.env.NODE_ENV === 'production') {
10524
  /* unused harmony export y */
10525
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(/*! react */ 6);
10526
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
10527
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_core__ = __webpack_require__(/*! @emotion/core */ 63);
10528
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_dom__ = __webpack_require__(/*! react-dom */ 18);
10529
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react_dom__);
10530
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_prop_types__ = __webpack_require__(/*! prop-types */ 15);
10531
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__);
10532
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__utils_06b0d5a4_browser_esm_js__ = __webpack_require__(/*! ./utils-06b0d5a4.browser.esm.js */ 64);
10533
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
10534
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react_input_autosize__ = __webpack_require__(/*! react-input-autosize */ 140);
10535
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react_input_autosize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react_input_autosize__);
@@ -12114,10 +12115,10 @@ exports.default = AutosizeInput;
12114
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(/*! react */ 6);
12115
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
12116
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_memoize_one__ = __webpack_require__(/*! memoize-one */ 133);
12117
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_core__ = __webpack_require__(/*! @emotion/core */ 63);
12118
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom__ = __webpack_require__(/*! react-dom */ 18);
12119
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react_dom__);
12120
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__utils_06b0d5a4_browser_esm_js__ = __webpack_require__(/*! ./utils-06b0d5a4.browser.esm.js */ 64);
12121
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__index_4322c0ed_browser_esm_js__ = __webpack_require__(/*! ./index-4322c0ed.browser.esm.js */ 139);
12122
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
12123
 
@@ -15011,7 +15012,7 @@ module.exports = defineProperty;
15011
  /*! all exports used */
15012
  /***/ (function(module, exports, __webpack_require__) {
15013
 
15014
- var apply = __webpack_require__(/*! ./_apply */ 314);
15015
 
15016
  /* Built-in method references for those with the same name as other `lodash` methods. */
15017
  var nativeMax = Math.max;
@@ -15058,8 +15059,8 @@ module.exports = overRest;
15058
  /*! all exports used */
15059
  /***/ (function(module, exports, __webpack_require__) {
15060
 
15061
- var baseSetToString = __webpack_require__(/*! ./_baseSetToString */ 315),
15062
- shortOut = __webpack_require__(/*! ./_shortOut */ 317);
15063
 
15064
  /**
15065
  * Sets the `toString` method of `func` to return `string`.
@@ -15166,7 +15167,7 @@ detector.isLegacyOpera = function() {
15166
  /***/ (function(module, exports, __webpack_require__) {
15167
 
15168
  var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */ 123),
15169
- baseKeysIn = __webpack_require__(/*! ./_baseKeysIn */ 337),
15170
  isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23);
15171
 
15172
  /**
@@ -15208,9 +15209,9 @@ module.exports = keysIn;
15208
  /*! all exports used */
15209
  /***/ (function(module, exports, __webpack_require__) {
15210
 
15211
- var arrayPush = __webpack_require__(/*! ./_arrayPush */ 54),
15212
- getPrototype = __webpack_require__(/*! ./_getPrototype */ 78),
15213
- getSymbols = __webpack_require__(/*! ./_getSymbols */ 55),
15214
  stubArray = __webpack_require__(/*! ./stubArray */ 122);
15215
 
15216
  /* Built-in method references for those with the same name as other `lodash` methods. */
@@ -15249,7 +15250,7 @@ module.exports = getSymbolsIn;
15249
 
15250
  exports.__esModule = true;
15251
 
15252
- var _slider = __webpack_require__(/*! ./slider */ 373);
15253
 
15254
  var _slider2 = _interopRequireDefault(_slider);
15255
 
@@ -15876,7 +15877,7 @@ var attributes = {
15876
  type: "string"
15877
  },
15878
  label: {
15879
- type: "string",
15880
  default: '#Click Here'
15881
  },
15882
  link: {
@@ -16835,7 +16836,7 @@ var _react = _interopRequireDefault(__webpack_require__(/*! react */ 6));
16835
 
16836
  var _reactLifecyclesCompat = __webpack_require__(/*! react-lifecycles-compat */ 159);
16837
 
16838
- var _ChildMapping = __webpack_require__(/*! ./utils/ChildMapping */ 414);
16839
 
16840
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16841
 
@@ -17627,7 +17628,7 @@ var attributes = {
17627
  default: "none"
17628
  },
17629
  ctaText: {
17630
- type: "string",
17631
  default: "Read More"
17632
  },
17633
  ctaLink: {
@@ -18787,6 +18788,7 @@ var attributes = {
18787
  type: "string"
18788
  },
18789
  label: {
 
18790
  selector: ".uagb-icon-list__label",
18791
  default: "#Label"
18792
  },
@@ -19583,7 +19585,7 @@ var attributes = {
19583
  default: "button"
19584
  },
19585
  ctaText: {
19586
- type: "string",
19587
  default: "Read More"
19588
  },
19589
  ctaLink: {
@@ -21103,7 +21105,7 @@ var attributes = {
21103
  default: Array(6).fill(true)
21104
  },
21105
  headerLinks: {
21106
- type: 'string',
21107
  default: ''
21108
  },
21109
  align: {
@@ -21755,6 +21757,325 @@ var __WEBPACK_AMD_DEFINE_RESULT__;
21755
 
21756
  /***/ }),
21757
  /* 183 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21758
  /*!**************************************!*\
21759
  !*** ./src/blocks/how-to/style.scss ***!
21760
  \**************************************/
@@ -21764,7 +22085,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;
21764
  // removed by extract-text-webpack-plugin
21765
 
21766
  /***/ }),
21767
- /* 184 */
21768
  /*!********************************************!*\
21769
  !*** ./src/blocks/faq-child/attributes.js ***!
21770
  \********************************************/
@@ -21810,7 +22131,7 @@ var attributes = {
21810
  /* harmony default export */ __webpack_exports__["a"] = (attributes);
21811
 
21812
  /***/ }),
21813
- /* 185 */
21814
  /*!***********************!*\
21815
  !*** ./src/blocks.js ***!
21816
  \***********************/
@@ -21820,35 +22141,36 @@ var attributes = {
21820
 
21821
  "use strict";
21822
  Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
21823
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__blocks_advanced_heading_block_js__ = __webpack_require__(/*! ./blocks/advanced-heading/block.js */ 186);
21824
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__blocks_post_block_js__ = __webpack_require__(/*! ./blocks/post/block.js */ 286);
21825
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__blocks_section_block_js__ = __webpack_require__(/*! ./blocks/section/block.js */ 388);
21826
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blocks_buttons_block_js__ = __webpack_require__(/*! ./blocks/buttons/block.js */ 395);
21827
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__blocks_buttons_child_block_js__ = __webpack_require__(/*! ./blocks/buttons-child/block.js */ 403);
21828
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__blocks_info_box_block_js__ = __webpack_require__(/*! ./blocks/info-box/block.js */ 418);
21829
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__blocks_testimonial_block_js__ = __webpack_require__(/*! ./blocks/testimonial/block.js */ 426);
21830
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__blocks_team_block_js__ = __webpack_require__(/*! ./blocks/team/block.js */ 433);
21831
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__blocks_social_share_block_js__ = __webpack_require__(/*! ./blocks/social-share/block.js */ 440);
21832
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__blocks_social_share_child_block_js__ = __webpack_require__(/*! ./blocks/social-share-child/block.js */ 448);
21833
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__blocks_google_map_block_js__ = __webpack_require__(/*! ./blocks/google-map/block.js */ 455);
21834
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__blocks_icon_list_block_js__ = __webpack_require__(/*! ./blocks/icon-list/block.js */ 457);
21835
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__blocks_icon_list_child_block_js__ = __webpack_require__(/*! ./blocks/icon-list-child/block.js */ 465);
21836
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__blocks_price_list_block_js__ = __webpack_require__(/*! ./blocks/price-list/block.js */ 472);
21837
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__blocks_timeline_block_js__ = __webpack_require__(/*! ./blocks/timeline/block.js */ 479);
21838
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__blocks_call_to_action_block_js__ = __webpack_require__(/*! ./blocks/call-to-action/block.js */ 498);
21839
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__blocks_column_block_js__ = __webpack_require__(/*! ./blocks/column/block.js */ 506);
21840
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__blocks_columns_block_js__ = __webpack_require__(/*! ./blocks/columns/block.js */ 514);
21841
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__blocks_cf7_styler_block_js__ = __webpack_require__(/*! ./blocks/cf7-styler/block.js */ 533);
21842
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__blocks_gf_styler_block_js__ = __webpack_require__(/*! ./blocks/gf-styler/block.js */ 538);
21843
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_20__blocks_blockquote_block_js__ = __webpack_require__(/*! ./blocks/blockquote/block.js */ 543);
21844
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_21__blocks_marketing_button_block_js__ = __webpack_require__(/*! ./blocks/marketing-button/block.js */ 551);
21845
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_22__blocks_table_of_contents_block_js__ = __webpack_require__(/*! ./blocks/table-of-contents/block.js */ 558);
21846
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_23__blocks_how_to_block_js__ = __webpack_require__(/*! ./blocks/how-to/block.js */ 567);
21847
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_24__blocks_faq_block_js__ = __webpack_require__(/*! ./blocks/faq/block.js */ 574);
21848
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_25__blocks_faq_child_block_js__ = __webpack_require__(/*! ./blocks/faq-child/block.js */ 581);
21849
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_26__blocks_inline_notice_block_js__ = __webpack_require__(/*! ./blocks/inline-notice/block.js */ 587);
21850
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_27__blocks_wp_search_block_js__ = __webpack_require__(/*! ./blocks/wp-search/block.js */ 594);
21851
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_28__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../dist/blocks/uagb-controls/block-icons */ 1);
 
21852
  /**
21853
  * Gutenberg Blocks
21854
  *
@@ -21878,6 +22200,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
21878
 
21879
 
21880
 
 
21881
 
21882
 
21883
 
@@ -21894,11 +22217,11 @@ var updateCategory = wp.blocks.updateCategory;
21894
 
21895
 
21896
  updateCategory("uagb", {
21897
- icon: __WEBPACK_IMPORTED_MODULE_28__dist_blocks_uagb_controls_block_icons__["a" /* default */].logo
21898
  });
21899
 
21900
  /***/ }),
21901
- /* 186 */
21902
  /*!**********************************************!*\
21903
  !*** ./src/blocks/advanced-heading/block.js ***!
21904
  \**********************************************/
@@ -21908,10 +22231,10 @@ updateCategory("uagb", {
21908
  "use strict";
21909
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
21910
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 112);
21911
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 187);
21912
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 283);
21913
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 284);
21914
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__transform__ = __webpack_require__(/*! ./transform */ 285);
21915
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 142);
21916
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
21917
  /**
@@ -21948,7 +22271,7 @@ registerBlockType("uagb/advanced-heading", {
21948
  });
21949
 
21950
  /***/ }),
21951
- /* 187 */
21952
  /*!*********************************************!*\
21953
  !*** ./src/blocks/advanced-heading/edit.js ***!
21954
  \*********************************************/
@@ -21959,7 +22282,7 @@ registerBlockType("uagb/advanced-heading", {
21959
  "use strict";
21960
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
21961
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
21962
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 188);
21963
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
21964
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
21965
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 142);
@@ -22456,7 +22779,7 @@ var UAGBAdvancedHeading = function (_Component) {
22456
  })(UAGBAdvancedHeading));
22457
 
22458
  /***/ }),
22459
- /* 188 */
22460
  /*!************************************************!*\
22461
  !*** ./src/blocks/advanced-heading/styling.js ***!
22462
  \************************************************/
@@ -22579,7 +22902,7 @@ function styling(props) {
22579
  /* harmony default export */ __webpack_exports__["a"] = (styling);
22580
 
22581
  /***/ }),
22582
- /* 189 */
22583
  /*!******************************************************!*\
22584
  !*** ./src/components/typography/font-typography.js ***!
22585
  \******************************************************/
@@ -22590,8 +22913,8 @@ function styling(props) {
22590
  "use strict";
22591
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
22592
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_map__);
22593
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__fonts__ = __webpack_require__(/*! ./fonts */ 256);
22594
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_select__ = __webpack_require__(/*! react-select */ 257);
22595
  var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
22596
 
22597
  function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
@@ -22754,7 +23077,7 @@ function FontFamilyControl(props) {
22754
  /* harmony default export */ __webpack_exports__["a"] = (FontFamilyControl);
22755
 
22756
  /***/ }),
22757
- /* 190 */
22758
  /*!*********************************************!*\
22759
  !*** ./node_modules/lodash/_baseMatches.js ***!
22760
  \*********************************************/
@@ -22762,8 +23085,8 @@ function FontFamilyControl(props) {
22762
  /*! all exports used */
22763
  /***/ (function(module, exports, __webpack_require__) {
22764
 
22765
- var baseIsMatch = __webpack_require__(/*! ./_baseIsMatch */ 191),
22766
- getMatchData = __webpack_require__(/*! ./_getMatchData */ 240),
22767
  matchesStrictComparable = __webpack_require__(/*! ./_matchesStrictComparable */ 128);
22768
 
22769
  /**
@@ -22787,7 +23110,7 @@ module.exports = baseMatches;
22787
 
22788
 
22789
  /***/ }),
22790
- /* 191 */
22791
  /*!*********************************************!*\
22792
  !*** ./node_modules/lodash/_baseIsMatch.js ***!
22793
  \*********************************************/
@@ -22795,7 +23118,7 @@ module.exports = baseMatches;
22795
  /*! all exports used */
22796
  /***/ (function(module, exports, __webpack_require__) {
22797
 
22798
- var Stack = __webpack_require__(/*! ./_Stack */ 50),
22799
  baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */ 117);
22800
 
22801
  /** Used to compose bitmasks for value comparisons. */
@@ -22860,7 +23183,7 @@ module.exports = baseIsMatch;
22860
 
22861
 
22862
  /***/ }),
22863
- /* 192 */
22864
  /*!************************************************!*\
22865
  !*** ./node_modules/lodash/_listCacheClear.js ***!
22866
  \************************************************/
@@ -22884,7 +23207,7 @@ module.exports = listCacheClear;
22884
 
22885
 
22886
  /***/ }),
22887
- /* 193 */
22888
  /*!*************************************************!*\
22889
  !*** ./node_modules/lodash/_listCacheDelete.js ***!
22890
  \*************************************************/
@@ -22930,7 +23253,7 @@ module.exports = listCacheDelete;
22930
 
22931
 
22932
  /***/ }),
22933
- /* 194 */
22934
  /*!**********************************************!*\
22935
  !*** ./node_modules/lodash/_listCacheGet.js ***!
22936
  \**********************************************/
@@ -22960,7 +23283,7 @@ module.exports = listCacheGet;
22960
 
22961
 
22962
  /***/ }),
22963
- /* 195 */
22964
  /*!**********************************************!*\
22965
  !*** ./node_modules/lodash/_listCacheHas.js ***!
22966
  \**********************************************/
@@ -22987,7 +23310,7 @@ module.exports = listCacheHas;
22987
 
22988
 
22989
  /***/ }),
22990
- /* 196 */
22991
  /*!**********************************************!*\
22992
  !*** ./node_modules/lodash/_listCacheSet.js ***!
22993
  \**********************************************/
@@ -23024,7 +23347,7 @@ module.exports = listCacheSet;
23024
 
23025
 
23026
  /***/ }),
23027
- /* 197 */
23028
  /*!********************************************!*\
23029
  !*** ./node_modules/lodash/_stackClear.js ***!
23030
  \********************************************/
@@ -23050,7 +23373,7 @@ module.exports = stackClear;
23050
 
23051
 
23052
  /***/ }),
23053
- /* 198 */
23054
  /*!*********************************************!*\
23055
  !*** ./node_modules/lodash/_stackDelete.js ***!
23056
  \*********************************************/
@@ -23079,7 +23402,7 @@ module.exports = stackDelete;
23079
 
23080
 
23081
  /***/ }),
23082
- /* 199 */
23083
  /*!******************************************!*\
23084
  !*** ./node_modules/lodash/_stackGet.js ***!
23085
  \******************************************/
@@ -23104,7 +23427,7 @@ module.exports = stackGet;
23104
 
23105
 
23106
  /***/ }),
23107
- /* 200 */
23108
  /*!******************************************!*\
23109
  !*** ./node_modules/lodash/_stackHas.js ***!
23110
  \******************************************/
@@ -23129,7 +23452,7 @@ module.exports = stackHas;
23129
 
23130
 
23131
  /***/ }),
23132
- /* 201 */
23133
  /*!******************************************!*\
23134
  !*** ./node_modules/lodash/_stackSet.js ***!
23135
  \******************************************/
@@ -23138,8 +23461,8 @@ module.exports = stackHas;
23138
  /***/ (function(module, exports, __webpack_require__) {
23139
 
23140
  var ListCache = __webpack_require__(/*! ./_ListCache */ 35),
23141
- Map = __webpack_require__(/*! ./_Map */ 51),
23142
- MapCache = __webpack_require__(/*! ./_MapCache */ 53);
23143
 
23144
  /** Used as the size to enable large array optimizations. */
23145
  var LARGE_ARRAY_SIZE = 200;
@@ -23174,7 +23497,7 @@ module.exports = stackSet;
23174
 
23175
 
23176
  /***/ }),
23177
- /* 202 */
23178
  /*!**********************************************!*\
23179
  !*** ./node_modules/lodash/_baseIsNative.js ***!
23180
  \**********************************************/
@@ -23183,7 +23506,7 @@ module.exports = stackSet;
23183
  /***/ (function(module, exports, __webpack_require__) {
23184
 
23185
  var isFunction = __webpack_require__(/*! ./isFunction */ 114),
23186
- isMasked = __webpack_require__(/*! ./_isMasked */ 205),
23187
  isObject = __webpack_require__(/*! ./isObject */ 13),
23188
  toSource = __webpack_require__(/*! ./_toSource */ 116);
23189
 
@@ -23232,7 +23555,7 @@ module.exports = baseIsNative;
23232
 
23233
 
23234
  /***/ }),
23235
- /* 203 */
23236
  /*!*******************************************!*\
23237
  !*** ./node_modules/lodash/_getRawTag.js ***!
23238
  \*******************************************/
@@ -23289,7 +23612,7 @@ module.exports = getRawTag;
23289
 
23290
 
23291
  /***/ }),
23292
- /* 204 */
23293
  /*!************************************************!*\
23294
  !*** ./node_modules/lodash/_objectToString.js ***!
23295
  \************************************************/
@@ -23322,7 +23645,7 @@ module.exports = objectToString;
23322
 
23323
 
23324
  /***/ }),
23325
- /* 205 */
23326
  /*!******************************************!*\
23327
  !*** ./node_modules/lodash/_isMasked.js ***!
23328
  \******************************************/
@@ -23330,7 +23653,7 @@ module.exports = objectToString;
23330
  /*! all exports used */
23331
  /***/ (function(module, exports, __webpack_require__) {
23332
 
23333
- var coreJsData = __webpack_require__(/*! ./_coreJsData */ 206);
23334
 
23335
  /** Used to detect methods masquerading as native. */
23336
  var maskSrcKey = (function() {
@@ -23353,7 +23676,7 @@ module.exports = isMasked;
23353
 
23354
 
23355
  /***/ }),
23356
- /* 206 */
23357
  /*!********************************************!*\
23358
  !*** ./node_modules/lodash/_coreJsData.js ***!
23359
  \********************************************/
@@ -23370,7 +23693,7 @@ module.exports = coreJsData;
23370
 
23371
 
23372
  /***/ }),
23373
- /* 207 */
23374
  /*!******************************************!*\
23375
  !*** ./node_modules/lodash/_getValue.js ***!
23376
  \******************************************/
@@ -23394,7 +23717,7 @@ module.exports = getValue;
23394
 
23395
 
23396
  /***/ }),
23397
- /* 208 */
23398
  /*!***********************************************!*\
23399
  !*** ./node_modules/lodash/_mapCacheClear.js ***!
23400
  \***********************************************/
@@ -23402,9 +23725,9 @@ module.exports = getValue;
23402
  /*! all exports used */
23403
  /***/ (function(module, exports, __webpack_require__) {
23404
 
23405
- var Hash = __webpack_require__(/*! ./_Hash */ 209),
23406
  ListCache = __webpack_require__(/*! ./_ListCache */ 35),
23407
- Map = __webpack_require__(/*! ./_Map */ 51);
23408
 
23409
  /**
23410
  * Removes all key-value entries from the map.
@@ -23426,7 +23749,7 @@ module.exports = mapCacheClear;
23426
 
23427
 
23428
  /***/ }),
23429
- /* 209 */
23430
  /*!**************************************!*\
23431
  !*** ./node_modules/lodash/_Hash.js ***!
23432
  \**************************************/
@@ -23434,11 +23757,11 @@ module.exports = mapCacheClear;
23434
  /*! all exports used */
23435
  /***/ (function(module, exports, __webpack_require__) {
23436
 
23437
- var hashClear = __webpack_require__(/*! ./_hashClear */ 210),
23438
- hashDelete = __webpack_require__(/*! ./_hashDelete */ 211),
23439
- hashGet = __webpack_require__(/*! ./_hashGet */ 212),
23440
- hashHas = __webpack_require__(/*! ./_hashHas */ 213),
23441
- hashSet = __webpack_require__(/*! ./_hashSet */ 214);
23442
 
23443
  /**
23444
  * Creates a hash object.
@@ -23469,7 +23792,7 @@ module.exports = Hash;
23469
 
23470
 
23471
  /***/ }),
23472
- /* 210 */
23473
  /*!*******************************************!*\
23474
  !*** ./node_modules/lodash/_hashClear.js ***!
23475
  \*******************************************/
@@ -23495,7 +23818,7 @@ module.exports = hashClear;
23495
 
23496
 
23497
  /***/ }),
23498
- /* 211 */
23499
  /*!********************************************!*\
23500
  !*** ./node_modules/lodash/_hashDelete.js ***!
23501
  \********************************************/
@@ -23523,7 +23846,7 @@ module.exports = hashDelete;
23523
 
23524
 
23525
  /***/ }),
23526
- /* 212 */
23527
  /*!*****************************************!*\
23528
  !*** ./node_modules/lodash/_hashGet.js ***!
23529
  \*****************************************/
@@ -23564,7 +23887,7 @@ module.exports = hashGet;
23564
 
23565
 
23566
  /***/ }),
23567
- /* 213 */
23568
  /*!*****************************************!*\
23569
  !*** ./node_modules/lodash/_hashHas.js ***!
23570
  \*****************************************/
@@ -23598,7 +23921,7 @@ module.exports = hashHas;
23598
 
23599
 
23600
  /***/ }),
23601
- /* 214 */
23602
  /*!*****************************************!*\
23603
  !*** ./node_modules/lodash/_hashSet.js ***!
23604
  \*****************************************/
@@ -23632,7 +23955,7 @@ module.exports = hashSet;
23632
 
23633
 
23634
  /***/ }),
23635
- /* 215 */
23636
  /*!************************************************!*\
23637
  !*** ./node_modules/lodash/_mapCacheDelete.js ***!
23638
  \************************************************/
@@ -23661,7 +23984,7 @@ module.exports = mapCacheDelete;
23661
 
23662
 
23663
  /***/ }),
23664
- /* 216 */
23665
  /*!*******************************************!*\
23666
  !*** ./node_modules/lodash/_isKeyable.js ***!
23667
  \*******************************************/
@@ -23687,7 +24010,7 @@ module.exports = isKeyable;
23687
 
23688
 
23689
  /***/ }),
23690
- /* 217 */
23691
  /*!*********************************************!*\
23692
  !*** ./node_modules/lodash/_mapCacheGet.js ***!
23693
  \*********************************************/
@@ -23714,7 +24037,7 @@ module.exports = mapCacheGet;
23714
 
23715
 
23716
  /***/ }),
23717
- /* 218 */
23718
  /*!*********************************************!*\
23719
  !*** ./node_modules/lodash/_mapCacheHas.js ***!
23720
  \*********************************************/
@@ -23741,7 +24064,7 @@ module.exports = mapCacheHas;
23741
 
23742
 
23743
  /***/ }),
23744
- /* 219 */
23745
  /*!*********************************************!*\
23746
  !*** ./node_modules/lodash/_mapCacheSet.js ***!
23747
  \*********************************************/
@@ -23774,7 +24097,7 @@ module.exports = mapCacheSet;
23774
 
23775
 
23776
  /***/ }),
23777
- /* 220 */
23778
  /*!*************************************************!*\
23779
  !*** ./node_modules/lodash/_baseIsEqualDeep.js ***!
23780
  \*************************************************/
@@ -23782,13 +24105,13 @@ module.exports = mapCacheSet;
23782
  /*! all exports used */
23783
  /***/ (function(module, exports, __webpack_require__) {
23784
 
23785
- var Stack = __webpack_require__(/*! ./_Stack */ 50),
23786
  equalArrays = __webpack_require__(/*! ./_equalArrays */ 118),
23787
- equalByTag = __webpack_require__(/*! ./_equalByTag */ 226),
23788
- equalObjects = __webpack_require__(/*! ./_equalObjects */ 229),
23789
  getTag = __webpack_require__(/*! ./_getTag */ 44),
23790
  isArray = __webpack_require__(/*! ./isArray */ 14),
23791
- isBuffer = __webpack_require__(/*! ./isBuffer */ 57),
23792
  isTypedArray = __webpack_require__(/*! ./isTypedArray */ 125);
23793
 
23794
  /** Used to compose bitmasks for value comparisons. */
@@ -23868,7 +24191,7 @@ module.exports = baseIsEqualDeep;
23868
 
23869
 
23870
  /***/ }),
23871
- /* 221 */
23872
  /*!******************************************!*\
23873
  !*** ./node_modules/lodash/_SetCache.js ***!
23874
  \******************************************/
@@ -23876,9 +24199,9 @@ module.exports = baseIsEqualDeep;
23876
  /*! all exports used */
23877
  /***/ (function(module, exports, __webpack_require__) {
23878
 
23879
- var MapCache = __webpack_require__(/*! ./_MapCache */ 53),
23880
- setCacheAdd = __webpack_require__(/*! ./_setCacheAdd */ 222),
23881
- setCacheHas = __webpack_require__(/*! ./_setCacheHas */ 223);
23882
 
23883
  /**
23884
  *
@@ -23906,7 +24229,7 @@ module.exports = SetCache;
23906
 
23907
 
23908
  /***/ }),
23909
- /* 222 */
23910
  /*!*********************************************!*\
23911
  !*** ./node_modules/lodash/_setCacheAdd.js ***!
23912
  \*********************************************/
@@ -23936,7 +24259,7 @@ module.exports = setCacheAdd;
23936
 
23937
 
23938
  /***/ }),
23939
- /* 223 */
23940
  /*!*********************************************!*\
23941
  !*** ./node_modules/lodash/_setCacheHas.js ***!
23942
  \*********************************************/
@@ -23961,7 +24284,7 @@ module.exports = setCacheHas;
23961
 
23962
 
23963
  /***/ }),
23964
- /* 224 */
23965
  /*!*******************************************!*\
23966
  !*** ./node_modules/lodash/_arraySome.js ***!
23967
  \*******************************************/
@@ -23995,7 +24318,7 @@ module.exports = arraySome;
23995
 
23996
 
23997
  /***/ }),
23998
- /* 225 */
23999
  /*!******************************************!*\
24000
  !*** ./node_modules/lodash/_cacheHas.js ***!
24001
  \******************************************/
@@ -24019,7 +24342,7 @@ module.exports = cacheHas;
24019
 
24020
 
24021
  /***/ }),
24022
- /* 226 */
24023
  /*!********************************************!*\
24024
  !*** ./node_modules/lodash/_equalByTag.js ***!
24025
  \********************************************/
@@ -24031,8 +24354,8 @@ var Symbol = __webpack_require__(/*! ./_Symbol */ 21),
24031
  Uint8Array = __webpack_require__(/*! ./_Uint8Array */ 119),
24032
  eq = __webpack_require__(/*! ./eq */ 37),
24033
  equalArrays = __webpack_require__(/*! ./_equalArrays */ 118),
24034
- mapToArray = __webpack_require__(/*! ./_mapToArray */ 227),
24035
- setToArray = __webpack_require__(/*! ./_setToArray */ 228);
24036
 
24037
  /** Used to compose bitmasks for value comparisons. */
24038
  var COMPARE_PARTIAL_FLAG = 1,
@@ -24142,7 +24465,7 @@ module.exports = equalByTag;
24142
 
24143
 
24144
  /***/ }),
24145
- /* 227 */
24146
  /*!********************************************!*\
24147
  !*** ./node_modules/lodash/_mapToArray.js ***!
24148
  \********************************************/
@@ -24171,7 +24494,7 @@ module.exports = mapToArray;
24171
 
24172
 
24173
  /***/ }),
24174
- /* 228 */
24175
  /*!********************************************!*\
24176
  !*** ./node_modules/lodash/_setToArray.js ***!
24177
  \********************************************/
@@ -24200,7 +24523,7 @@ module.exports = setToArray;
24200
 
24201
 
24202
  /***/ }),
24203
- /* 229 */
24204
  /*!**********************************************!*\
24205
  !*** ./node_modules/lodash/_equalObjects.js ***!
24206
  \**********************************************/
@@ -24300,7 +24623,7 @@ module.exports = equalObjects;
24300
 
24301
 
24302
  /***/ }),
24303
- /* 230 */
24304
  /*!*********************************************!*\
24305
  !*** ./node_modules/lodash/_arrayFilter.js ***!
24306
  \*********************************************/
@@ -24336,7 +24659,7 @@ module.exports = arrayFilter;
24336
 
24337
 
24338
  /***/ }),
24339
- /* 231 */
24340
  /*!*************************************************!*\
24341
  !*** ./node_modules/lodash/_baseIsArguments.js ***!
24342
  \*************************************************/
@@ -24365,7 +24688,7 @@ module.exports = baseIsArguments;
24365
 
24366
 
24367
  /***/ }),
24368
- /* 232 */
24369
  /*!******************************************!*\
24370
  !*** ./node_modules/lodash/stubFalse.js ***!
24371
  \******************************************/
@@ -24394,7 +24717,7 @@ module.exports = stubFalse;
24394
 
24395
 
24396
  /***/ }),
24397
- /* 233 */
24398
  /*!**************************************************!*\
24399
  !*** ./node_modules/lodash/_baseIsTypedArray.js ***!
24400
  \**************************************************/
@@ -24403,7 +24726,7 @@ module.exports = stubFalse;
24403
  /***/ (function(module, exports, __webpack_require__) {
24404
 
24405
  var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 20),
24406
- isLength = __webpack_require__(/*! ./isLength */ 59),
24407
  isObjectLike = __webpack_require__(/*! ./isObjectLike */ 17);
24408
 
24409
  /** `Object#toString` result references. */
@@ -24465,7 +24788,7 @@ module.exports = baseIsTypedArray;
24465
 
24466
 
24467
  /***/ }),
24468
- /* 234 */
24469
  /*!******************************************!*\
24470
  !*** ./node_modules/lodash/_baseKeys.js ***!
24471
  \******************************************/
@@ -24474,7 +24797,7 @@ module.exports = baseIsTypedArray;
24474
  /***/ (function(module, exports, __webpack_require__) {
24475
 
24476
  var isPrototype = __webpack_require__(/*! ./_isPrototype */ 43),
24477
- nativeKeys = __webpack_require__(/*! ./_nativeKeys */ 235);
24478
 
24479
  /** Used for built-in method references. */
24480
  var objectProto = Object.prototype;
@@ -24506,7 +24829,7 @@ module.exports = baseKeys;
24506
 
24507
 
24508
  /***/ }),
24509
- /* 235 */
24510
  /*!********************************************!*\
24511
  !*** ./node_modules/lodash/_nativeKeys.js ***!
24512
  \********************************************/
@@ -24523,7 +24846,7 @@ module.exports = nativeKeys;
24523
 
24524
 
24525
  /***/ }),
24526
- /* 236 */
24527
  /*!******************************************!*\
24528
  !*** ./node_modules/lodash/_DataView.js ***!
24529
  \******************************************/
@@ -24541,7 +24864,7 @@ module.exports = DataView;
24541
 
24542
 
24543
  /***/ }),
24544
- /* 237 */
24545
  /*!*****************************************!*\
24546
  !*** ./node_modules/lodash/_Promise.js ***!
24547
  \*****************************************/
@@ -24559,7 +24882,7 @@ module.exports = Promise;
24559
 
24560
 
24561
  /***/ }),
24562
- /* 238 */
24563
  /*!*************************************!*\
24564
  !*** ./node_modules/lodash/_Set.js ***!
24565
  \*************************************/
@@ -24577,7 +24900,7 @@ module.exports = Set;
24577
 
24578
 
24579
  /***/ }),
24580
- /* 239 */
24581
  /*!*****************************************!*\
24582
  !*** ./node_modules/lodash/_WeakMap.js ***!
24583
  \*****************************************/
@@ -24595,7 +24918,7 @@ module.exports = WeakMap;
24595
 
24596
 
24597
  /***/ }),
24598
- /* 240 */
24599
  /*!**********************************************!*\
24600
  !*** ./node_modules/lodash/_getMatchData.js ***!
24601
  \**********************************************/
@@ -24630,7 +24953,7 @@ module.exports = getMatchData;
24630
 
24631
 
24632
  /***/ }),
24633
- /* 241 */
24634
  /*!*****************************************************!*\
24635
  !*** ./node_modules/lodash/_baseMatchesProperty.js ***!
24636
  \*****************************************************/
@@ -24640,8 +24963,8 @@ module.exports = getMatchData;
24640
 
24641
  var baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */ 117),
24642
  get = __webpack_require__(/*! ./get */ 129),
24643
- hasIn = __webpack_require__(/*! ./hasIn */ 245),
24644
- isKey = __webpack_require__(/*! ./_isKey */ 60),
24645
  isStrictComparable = __webpack_require__(/*! ./_isStrictComparable */ 127),
24646
  matchesStrictComparable = __webpack_require__(/*! ./_matchesStrictComparable */ 128),
24647
  toKey = __webpack_require__(/*! ./_toKey */ 25);
@@ -24674,7 +24997,7 @@ module.exports = baseMatchesProperty;
24674
 
24675
 
24676
  /***/ }),
24677
- /* 242 */
24678
  /*!**********************************************!*\
24679
  !*** ./node_modules/lodash/_stringToPath.js ***!
24680
  \**********************************************/
@@ -24682,7 +25005,7 @@ module.exports = baseMatchesProperty;
24682
  /*! all exports used */
24683
  /***/ (function(module, exports, __webpack_require__) {
24684
 
24685
- var memoizeCapped = __webpack_require__(/*! ./_memoizeCapped */ 243);
24686
 
24687
  /** Used to match property names within property paths. */
24688
  var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g;
@@ -24712,7 +25035,7 @@ module.exports = stringToPath;
24712
 
24713
 
24714
  /***/ }),
24715
- /* 243 */
24716
  /*!***********************************************!*\
24717
  !*** ./node_modules/lodash/_memoizeCapped.js ***!
24718
  \***********************************************/
@@ -24720,7 +25043,7 @@ module.exports = stringToPath;
24720
  /*! all exports used */
24721
  /***/ (function(module, exports, __webpack_require__) {
24722
 
24723
- var memoize = __webpack_require__(/*! ./memoize */ 244);
24724
 
24725
  /** Used as the maximum memoize cache size. */
24726
  var MAX_MEMOIZE_SIZE = 500;
@@ -24749,7 +25072,7 @@ module.exports = memoizeCapped;
24749
 
24750
 
24751
  /***/ }),
24752
- /* 244 */
24753
  /*!****************************************!*\
24754
  !*** ./node_modules/lodash/memoize.js ***!
24755
  \****************************************/
@@ -24757,7 +25080,7 @@ module.exports = memoizeCapped;
24757
  /*! all exports used */
24758
  /***/ (function(module, exports, __webpack_require__) {
24759
 
24760
- var MapCache = __webpack_require__(/*! ./_MapCache */ 53);
24761
 
24762
  /** Error message constants. */
24763
  var FUNC_ERROR_TEXT = 'Expected a function';
@@ -24833,7 +25156,7 @@ module.exports = memoize;
24833
 
24834
 
24835
  /***/ }),
24836
- /* 245 */
24837
  /*!**************************************!*\
24838
  !*** ./node_modules/lodash/hasIn.js ***!
24839
  \**************************************/
@@ -24841,8 +25164,8 @@ module.exports = memoize;
24841
  /*! all exports used */
24842
  /***/ (function(module, exports, __webpack_require__) {
24843
 
24844
- var baseHasIn = __webpack_require__(/*! ./_baseHasIn */ 246),
24845
- hasPath = __webpack_require__(/*! ./_hasPath */ 247);
24846
 
24847
  /**
24848
  * Checks if `path` is a direct or inherited property of `object`.
@@ -24878,7 +25201,7 @@ module.exports = hasIn;
24878
 
24879
 
24880
  /***/ }),
24881
- /* 246 */
24882
  /*!*******************************************!*\
24883
  !*** ./node_modules/lodash/_baseHasIn.js ***!
24884
  \*******************************************/
@@ -24902,7 +25225,7 @@ module.exports = baseHasIn;
24902
 
24903
 
24904
  /***/ }),
24905
- /* 247 */
24906
  /*!*****************************************!*\
24907
  !*** ./node_modules/lodash/_hasPath.js ***!
24908
  \*****************************************/
@@ -24911,10 +25234,10 @@ module.exports = baseHasIn;
24911
  /***/ (function(module, exports, __webpack_require__) {
24912
 
24913
  var castPath = __webpack_require__(/*! ./_castPath */ 24),
24914
- isArguments = __webpack_require__(/*! ./isArguments */ 56),
24915
  isArray = __webpack_require__(/*! ./isArray */ 14),
24916
  isIndex = __webpack_require__(/*! ./_isIndex */ 40),
24917
- isLength = __webpack_require__(/*! ./isLength */ 59),
24918
  toKey = __webpack_require__(/*! ./_toKey */ 25);
24919
 
24920
  /**
@@ -24952,7 +25275,7 @@ module.exports = hasPath;
24952
 
24953
 
24954
  /***/ }),
24955
- /* 248 */
24956
  /*!*****************************************!*\
24957
  !*** ./node_modules/lodash/property.js ***!
24958
  \*****************************************/
@@ -24961,8 +25284,8 @@ module.exports = hasPath;
24961
  /***/ (function(module, exports, __webpack_require__) {
24962
 
24963
  var baseProperty = __webpack_require__(/*! ./_baseProperty */ 132),
24964
- basePropertyDeep = __webpack_require__(/*! ./_basePropertyDeep */ 249),
24965
- isKey = __webpack_require__(/*! ./_isKey */ 60),
24966
  toKey = __webpack_require__(/*! ./_toKey */ 25);
24967
 
24968
  /**
@@ -24995,7 +25318,7 @@ module.exports = property;
24995
 
24996
 
24997
  /***/ }),
24998
- /* 249 */
24999
  /*!**************************************************!*\
25000
  !*** ./node_modules/lodash/_basePropertyDeep.js ***!
25001
  \**************************************************/
@@ -25022,7 +25345,7 @@ module.exports = basePropertyDeep;
25022
 
25023
 
25024
  /***/ }),
25025
- /* 250 */
25026
  /*!*****************************************!*\
25027
  !*** ./node_modules/lodash/_baseMap.js ***!
25028
  \*****************************************/
@@ -25030,7 +25353,7 @@ module.exports = basePropertyDeep;
25030
  /*! all exports used */
25031
  /***/ (function(module, exports, __webpack_require__) {
25032
 
25033
- var baseEach = __webpack_require__(/*! ./_baseEach */ 251),
25034
  isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23);
25035
 
25036
  /**
@@ -25055,7 +25378,7 @@ module.exports = baseMap;
25055
 
25056
 
25057
  /***/ }),
25058
- /* 251 */
25059
  /*!******************************************!*\
25060
  !*** ./node_modules/lodash/_baseEach.js ***!
25061
  \******************************************/
@@ -25063,8 +25386,8 @@ module.exports = baseMap;
25063
  /*! all exports used */
25064
  /***/ (function(module, exports, __webpack_require__) {
25065
 
25066
- var baseForOwn = __webpack_require__(/*! ./_baseForOwn */ 252),
25067
- createBaseEach = __webpack_require__(/*! ./_createBaseEach */ 255);
25068
 
25069
  /**
25070
  * The base implementation of `_.forEach` without support for iteratee shorthands.
@@ -25080,7 +25403,7 @@ module.exports = baseEach;
25080
 
25081
 
25082
  /***/ }),
25083
- /* 252 */
25084
  /*!********************************************!*\
25085
  !*** ./node_modules/lodash/_baseForOwn.js ***!
25086
  \********************************************/
@@ -25088,7 +25411,7 @@ module.exports = baseEach;
25088
  /*! all exports used */
25089
  /***/ (function(module, exports, __webpack_require__) {
25090
 
25091
- var baseFor = __webpack_require__(/*! ./_baseFor */ 253),
25092
  keys = __webpack_require__(/*! ./keys */ 22);
25093
 
25094
  /**
@@ -25107,7 +25430,7 @@ module.exports = baseForOwn;
25107
 
25108
 
25109
  /***/ }),
25110
- /* 253 */
25111
  /*!*****************************************!*\
25112
  !*** ./node_modules/lodash/_baseFor.js ***!
25113
  \*****************************************/
@@ -25115,7 +25438,7 @@ module.exports = baseForOwn;
25115
  /*! all exports used */
25116
  /***/ (function(module, exports, __webpack_require__) {
25117
 
25118
- var createBaseFor = __webpack_require__(/*! ./_createBaseFor */ 254);
25119
 
25120
  /**
25121
  * The base implementation of `baseForOwn` which iterates over `object`
@@ -25134,7 +25457,7 @@ module.exports = baseFor;
25134
 
25135
 
25136
  /***/ }),
25137
- /* 254 */
25138
  /*!***********************************************!*\
25139
  !*** ./node_modules/lodash/_createBaseFor.js ***!
25140
  \***********************************************/
@@ -25170,7 +25493,7 @@ module.exports = createBaseFor;
25170
 
25171
 
25172
  /***/ }),
25173
- /* 255 */
25174
  /*!************************************************!*\
25175
  !*** ./node_modules/lodash/_createBaseEach.js ***!
25176
  \************************************************/
@@ -25213,7 +25536,7 @@ module.exports = createBaseEach;
25213
 
25214
 
25215
  /***/ }),
25216
- /* 256 */
25217
  /*!********************************************!*\
25218
  !*** ./src/components/typography/fonts.js ***!
25219
  \********************************************/
@@ -26118,7 +26441,7 @@ fonts["Zilla Slab Highlight"] = { "v": ["regular", "700"], "subset": ["latin-ext
26118
  /* harmony default export */ __webpack_exports__["a"] = (fonts);
26119
 
26120
  /***/ }),
26121
- /* 257 */
26122
  /*!********************************************************************!*\
26123
  !*** ./node_modules/react-select/dist/react-select.browser.esm.js ***!
26124
  \********************************************************************/
@@ -26131,12 +26454,12 @@ fonts["Zilla Slab Highlight"] = { "v": ["regular", "700"], "subset": ["latin-ext
26131
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(/*! react */ 6);
26132
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
26133
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_memoize_one__ = __webpack_require__(/*! memoize-one */ 133);
26134
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_core__ = __webpack_require__(/*! @emotion/core */ 63);
26135
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom__ = __webpack_require__(/*! react-dom */ 18);
26136
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react_dom__);
26137
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(/*! prop-types */ 15);
26138
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__);
26139
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__utils_06b0d5a4_browser_esm_js__ = __webpack_require__(/*! ./utils-06b0d5a4.browser.esm.js */ 64);
26140
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__index_4322c0ed_browser_esm_js__ = __webpack_require__(/*! ./index-4322c0ed.browser.esm.js */ 139);
26141
  /* unused harmony reexport components */
26142
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__Select_9fdb8cd0_browser_esm_js__ = __webpack_require__(/*! ./Select-9fdb8cd0.browser.esm.js */ 141);
@@ -26146,7 +26469,7 @@ fonts["Zilla Slab Highlight"] = { "v": ["regular", "700"], "subset": ["latin-ext
26146
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
26147
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9_react_input_autosize__ = __webpack_require__(/*! react-input-autosize */ 140);
26148
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9_react_input_autosize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_9_react_input_autosize__);
26149
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__stateManager_04f734a2_browser_esm_js__ = __webpack_require__(/*! ./stateManager-04f734a2.browser.esm.js */ 278);
26150
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__emotion_cache__ = __webpack_require__(/*! @emotion/cache */ 134);
26151
 
26152
 
@@ -26203,7 +26526,7 @@ var index = __WEBPACK_IMPORTED_MODULE_10__stateManager_04f734a2_browser_esm_js__
26203
 
26204
 
26205
  /***/ }),
26206
- /* 258 */
26207
  /*!********************************************************!*\
26208
  !*** ./node_modules/react/cjs/react.production.min.js ***!
26209
  \********************************************************/
@@ -26240,7 +26563,7 @@ __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{ReactCurrentDispatcher:I,Rea
26240
 
26241
 
26242
  /***/ }),
26243
- /* 259 */
26244
  /*!*****************************************************!*\
26245
  !*** ./node_modules/react/cjs/react.development.js ***!
26246
  \*****************************************************/
@@ -26267,7 +26590,7 @@ if (process.env.NODE_ENV !== "production") {
26267
  'use strict';
26268
 
26269
  var _assign = __webpack_require__(/*! object-assign */ 26);
26270
- var checkPropTypes = __webpack_require__(/*! prop-types/checkPropTypes */ 61);
26271
 
26272
  // TODO: this is special because it gets imported during build.
26273
 
@@ -28573,7 +28896,7 @@ module.exports = react;
28573
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
28574
 
28575
  /***/ }),
28576
- /* 260 */
28577
  /*!*****************************************************************************************!*\
28578
  !*** ./node_modules/@emotion/core/node_modules/@babel/runtime/helpers/inheritsLoose.js ***!
28579
  \*****************************************************************************************/
@@ -28590,7 +28913,7 @@ function _inheritsLoose(subClass, superClass) {
28590
  module.exports = _inheritsLoose;
28591
 
28592
  /***/ }),
28593
- /* 261 */
28594
  /*!*****************************************************************!*\
28595
  !*** ./node_modules/@emotion/stylis/dist/stylis.browser.esm.js ***!
28596
  \*****************************************************************/
@@ -29217,7 +29540,7 @@ function stylis_min (W) {
29217
 
29218
 
29219
  /***/ }),
29220
- /* 262 */
29221
  /*!*****************************************************************************!*\
29222
  !*** ./node_modules/@emotion/weak-memoize/dist/weak-memoize.browser.esm.js ***!
29223
  \*****************************************************************************/
@@ -29244,7 +29567,7 @@ var weakMemoize = function weakMemoize(func) {
29244
 
29245
 
29246
  /***/ }),
29247
- /* 263 */
29248
  /*!***************************************************************!*\
29249
  !*** ./node_modules/@emotion/utils/dist/utils.browser.esm.js ***!
29250
  \***************************************************************/
@@ -29298,7 +29621,7 @@ var insertStyles = function insertStyles(cache, serialized, isStringTag) {
29298
 
29299
 
29300
  /***/ }),
29301
- /* 264 */
29302
  /*!*************************************************************!*\
29303
  !*** ./node_modules/@emotion/hash/dist/hash.browser.esm.js ***!
29304
  \*************************************************************/
@@ -29365,7 +29688,7 @@ function murmur2(str) {
29365
 
29366
 
29367
  /***/ }),
29368
- /* 265 */
29369
  /*!*********************************************************************!*\
29370
  !*** ./node_modules/@emotion/unitless/dist/unitless.browser.esm.js ***!
29371
  \*********************************************************************/
@@ -29427,7 +29750,7 @@ var unitlessKeys = {
29427
 
29428
 
29429
  /***/ }),
29430
- /* 266 */
29431
  /*!*******************************************************************!*\
29432
  !*** ./node_modules/@emotion/memoize/dist/memoize.browser.esm.js ***!
29433
  \*******************************************************************/
@@ -29448,7 +29771,7 @@ function memoize(fn) {
29448
 
29449
 
29450
  /***/ }),
29451
- /* 267 */
29452
  /*!****************************************************************!*\
29453
  !*** ./node_modules/react-dom/cjs/react-dom.production.min.js ***!
29454
  \****************************************************************/
@@ -29750,7 +30073,7 @@ rendererPackageName:"react-dom"});var Dk={default:Ck},Ek=Dk&&Ck||Dk;module.expor
29750
 
29751
 
29752
  /***/ }),
29753
- /* 268 */
29754
  /*!***************************************************************************************!*\
29755
  !*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler.production.min.js ***!
29756
  \***************************************************************************************/
@@ -29784,7 +30107,7 @@ exports.unstable_pauseExecution=function(){};exports.unstable_getFirstCallbackNo
29784
 
29785
 
29786
  /***/ }),
29787
- /* 269 */
29788
  /*!************************************************************************************!*\
29789
  !*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler.development.js ***!
29790
  \************************************************************************************/
@@ -30701,7 +31024,7 @@ exports.unstable_Profiling = unstable_Profiling;
30701
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../../process/browser.js */ 3)))
30702
 
30703
  /***/ }),
30704
- /* 270 */
30705
  /*!*************************************************************!*\
30706
  !*** ./node_modules/react-dom/cjs/react-dom.development.js ***!
30707
  \*************************************************************/
@@ -30730,8 +31053,8 @@ if (process.env.NODE_ENV !== "production") {
30730
  var React = __webpack_require__(/*! react */ 6);
30731
  var _assign = __webpack_require__(/*! object-assign */ 26);
30732
  var Scheduler = __webpack_require__(/*! scheduler */ 137);
30733
- var checkPropTypes = __webpack_require__(/*! prop-types/checkPropTypes */ 61);
30734
- var tracing = __webpack_require__(/*! scheduler/tracing */ 271);
30735
 
30736
  // Do not require this module directly! Use normal `invariant` calls with
30737
  // template literal strings. The messages will be replaced with error codes
@@ -58509,7 +58832,7 @@ module.exports = reactDom;
58509
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
58510
 
58511
  /***/ }),
58512
- /* 271 */
58513
  /*!******************************************************************!*\
58514
  !*** ./node_modules/react-dom/node_modules/scheduler/tracing.js ***!
58515
  \******************************************************************/
@@ -58521,15 +58844,15 @@ module.exports = reactDom;
58521
  /* WEBPACK VAR INJECTION */(function(process) {
58522
 
58523
  if (process.env.NODE_ENV === 'production') {
58524
- module.exports = __webpack_require__(/*! ./cjs/scheduler-tracing.production.min.js */ 272);
58525
  } else {
58526
- module.exports = __webpack_require__(/*! ./cjs/scheduler-tracing.development.js */ 273);
58527
  }
58528
 
58529
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
58530
 
58531
  /***/ }),
58532
- /* 272 */
58533
  /*!***********************************************************************************************!*\
58534
  !*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler-tracing.production.min.js ***!
58535
  \***********************************************************************************************/
@@ -58551,7 +58874,7 @@ Object.defineProperty(exports,"__esModule",{value:!0});var b=0;exports.__interac
58551
 
58552
 
58553
  /***/ }),
58554
- /* 273 */
58555
  /*!********************************************************************************************!*\
58556
  !*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler-tracing.development.js ***!
58557
  \********************************************************************************************/
@@ -58987,7 +59310,7 @@ exports.unstable_unsubscribe = unstable_unsubscribe;
58987
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../../process/browser.js */ 3)))
58988
 
58989
  /***/ }),
58990
- /* 274 */
58991
  /*!**************************************************************!*\
58992
  !*** ./node_modules/react-is/cjs/react-is.production.min.js ***!
58993
  \**************************************************************/
@@ -59014,7 +59337,7 @@ exports.isSuspense=function(a){return t(a)===p};
59014
 
59015
 
59016
  /***/ }),
59017
- /* 275 */
59018
  /*!***********************************************************!*\
59019
  !*** ./node_modules/react-is/cjs/react-is.development.js ***!
59020
  \***********************************************************/
@@ -59254,7 +59577,7 @@ exports.isSuspense = isSuspense;
59254
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
59255
 
59256
  /***/ }),
59257
- /* 276 */
59258
  /*!************************************************************!*\
59259
  !*** ./node_modules/prop-types/factoryWithTypeCheckers.js ***!
59260
  \************************************************************/
@@ -59275,8 +59598,8 @@ exports.isSuspense = isSuspense;
59275
  var ReactIs = __webpack_require__(/*! react-is */ 138);
59276
  var assign = __webpack_require__(/*! object-assign */ 26);
59277
 
59278
- var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ 62);
59279
- var checkPropTypes = __webpack_require__(/*! ./checkPropTypes */ 61);
59280
 
59281
  var has = Function.call.bind(Object.prototype.hasOwnProperty);
59282
  var printWarning = function() {};
@@ -59858,7 +60181,7 @@ module.exports = function(isValidElement, throwOnDirectAccess) {
59858
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
59859
 
59860
  /***/ }),
59861
- /* 277 */
59862
  /*!*************************************************************!*\
59863
  !*** ./node_modules/prop-types/factoryWithThrowingShims.js ***!
59864
  \*************************************************************/
@@ -59876,7 +60199,7 @@ module.exports = function(isValidElement, throwOnDirectAccess) {
59876
 
59877
 
59878
 
59879
- var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ 62);
59880
 
59881
  function emptyFunction() {}
59882
  function emptyFunctionWithReset() {}
@@ -59934,7 +60257,7 @@ module.exports = function() {
59934
 
59935
 
59936
  /***/ }),
59937
- /* 278 */
59938
  /*!*****************************************************************************!*\
59939
  !*** ./node_modules/react-select/dist/stateManager-04f734a2.browser.esm.js ***!
59940
  \*****************************************************************************/
@@ -60078,7 +60401,7 @@ var manageState = function manageState(SelectComponent) {
60078
 
60079
 
60080
  /***/ }),
60081
- /* 279 */
60082
  /*!*******************************************************!*\
60083
  !*** ./src/components/typography/range-typography.js ***!
60084
  \*******************************************************/
@@ -60241,7 +60564,7 @@ function RangeTypographyControl(props) {
60241
  /* harmony default export */ __webpack_exports__["a"] = (RangeTypographyControl);
60242
 
60243
  /***/ }),
60244
- /* 280 */
60245
  /*!****************************************************!*\
60246
  !*** ./src/components/typography/inline-styles.js ***!
60247
  \****************************************************/
@@ -60261,7 +60584,7 @@ function TypographyStyles(props) {
60261
  /* unused harmony default export */ var _unused_webpack_default_export = (TypographyStyles);
60262
 
60263
  /***/ }),
60264
- /* 281 */
60265
  /*!***********************************************!*\
60266
  !*** ./src/components/typography/editor.scss ***!
60267
  \***********************************************/
@@ -60271,7 +60594,7 @@ function TypographyStyles(props) {
60271
  // removed by extract-text-webpack-plugin
60272
 
60273
  /***/ }),
60274
- /* 282 */
60275
  /*!*****************************************************!*\
60276
  !*** ./node_modules/webfontloader/webfontloader.js ***!
60277
  \*****************************************************/
@@ -60300,7 +60623,7 @@ g,0<d.length&&(d=za[d[0]])&&(a.c[e]=d))}a.c[e]||(d=za[e])&&(a.c[e]=d);for(d=0;d<
60300
 
60301
 
60302
  /***/ }),
60303
- /* 283 */
60304
  /*!*********************************************!*\
60305
  !*** ./src/blocks/advanced-heading/save.js ***!
60306
  \*********************************************/
@@ -60360,7 +60683,7 @@ function save(props) {
60360
  }
60361
 
60362
  /***/ }),
60363
- /* 284 */
60364
  /*!***************************************************!*\
60365
  !*** ./src/blocks/advanced-heading/deprecated.js ***!
60366
  \***************************************************/
@@ -60456,7 +60779,7 @@ var deprecated = [{
60456
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
60457
 
60458
  /***/ }),
60459
- /* 285 */
60460
  /*!**************************************************!*\
60461
  !*** ./src/blocks/advanced-heading/transform.js ***!
60462
  \**************************************************/
@@ -60521,7 +60844,7 @@ var transform = [{
60521
  /* harmony default export */ __webpack_exports__["a"] = (transform);
60522
 
60523
  /***/ }),
60524
- /* 286 */
60525
  /*!**********************************!*\
60526
  !*** ./src/blocks/post/block.js ***!
60527
  \**********************************/
@@ -60529,9 +60852,9 @@ var transform = [{
60529
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
60530
 
60531
  "use strict";
60532
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__post_grid_block_js__ = __webpack_require__(/*! ./post-grid/block.js */ 287);
60533
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__post_masonry_block_js__ = __webpack_require__(/*! ./post-masonry/block.js */ 301);
60534
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__post_carousel_block_js__ = __webpack_require__(/*! ./post-carousel/block.js */ 370);
60535
  /**
60536
  * Gutenberg Blocks
60537
  *
@@ -60548,7 +60871,7 @@ var transform = [{
60548
 
60549
 
60550
  /***/ }),
60551
- /* 287 */
60552
  /*!********************************************!*\
60553
  !*** ./src/blocks/post/post-grid/block.js ***!
60554
  \********************************************/
@@ -60556,11 +60879,11 @@ var transform = [{
60556
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
60557
 
60558
  "use strict";
60559
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 288);
60560
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
60561
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 74);
60562
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
60563
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 75);
60564
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
60565
  /**
60566
  * BLOCK: UAGB - post-grid
@@ -60597,7 +60920,7 @@ registerBlockType("uagb/post-grid", {
60597
  });
60598
 
60599
  /***/ }),
60600
- /* 288 */
60601
  /*!*******************************************!*\
60602
  !*** ./src/blocks/post/post-grid/edit.js ***!
60603
  \*******************************************/
@@ -60609,8 +60932,8 @@ registerBlockType("uagb/post-grid", {
60609
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
60610
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
60611
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
60612
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blog__ = __webpack_require__(/*! ./blog */ 289);
60613
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! .././styling */ 73);
60614
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
60615
 
60616
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
@@ -62080,7 +62403,7 @@ var UAGBPostGrid = function (_Component) {
62080
  })(UAGBPostGrid));
62081
 
62082
  /***/ }),
62083
- /* 289 */
62084
  /*!*******************************************!*\
62085
  !*** ./src/blocks/post/post-grid/blog.js ***!
62086
  \*******************************************/
@@ -62091,11 +62414,11 @@ var UAGBPostGrid = function (_Component) {
62091
  "use strict";
62092
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
62093
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
62094
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_FeaturedImage__ = __webpack_require__(/*! .././components/FeaturedImage */ 65);
62095
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! .././components/Title */ 66);
62096
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Meta__ = __webpack_require__(/*! .././components/Meta */ 67);
62097
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Excerpt__ = __webpack_require__(/*! .././components/Excerpt */ 68);
62098
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Button__ = __webpack_require__(/*! .././components/Button */ 72);
62099
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
62100
 
62101
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
@@ -62188,7 +62511,7 @@ var Blog = function (_React$Component) {
62188
  /* harmony default export */ __webpack_exports__["a"] = (Blog);
62189
 
62190
  /***/ }),
62191
- /* 290 */
62192
  /*!*****************************************!*\
62193
  !*** ./node_modules/lodash/truncate.js ***!
62194
  \*****************************************/
@@ -62196,13 +62519,13 @@ var Blog = function (_React$Component) {
62196
  /***/ (function(module, exports, __webpack_require__) {
62197
 
62198
  var baseToString = __webpack_require__(/*! ./_baseToString */ 131),
62199
- castSlice = __webpack_require__(/*! ./_castSlice */ 291),
62200
- hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 70),
62201
  isObject = __webpack_require__(/*! ./isObject */ 13),
62202
- isRegExp = __webpack_require__(/*! ./isRegExp */ 292),
62203
- stringSize = __webpack_require__(/*! ./_stringSize */ 294),
62204
- stringToArray = __webpack_require__(/*! ./_stringToArray */ 297),
62205
- toInteger = __webpack_require__(/*! ./toInteger */ 71),
62206
  toString = __webpack_require__(/*! ./toString */ 130);
62207
 
62208
  /** Used as default options for `_.truncate`. */
@@ -62309,7 +62632,7 @@ module.exports = truncate;
62309
 
62310
 
62311
  /***/ }),
62312
- /* 291 */
62313
  /*!*******************************************!*\
62314
  !*** ./node_modules/lodash/_castSlice.js ***!
62315
  \*******************************************/
@@ -62317,7 +62640,7 @@ module.exports = truncate;
62317
  /*! all exports used */
62318
  /***/ (function(module, exports, __webpack_require__) {
62319
 
62320
- var baseSlice = __webpack_require__(/*! ./_baseSlice */ 69);
62321
 
62322
  /**
62323
  * Casts `array` to a slice if it's needed.
@@ -62338,7 +62661,7 @@ module.exports = castSlice;
62338
 
62339
 
62340
  /***/ }),
62341
- /* 292 */
62342
  /*!*****************************************!*\
62343
  !*** ./node_modules/lodash/isRegExp.js ***!
62344
  \*****************************************/
@@ -62346,7 +62669,7 @@ module.exports = castSlice;
62346
  /*! all exports used */
62347
  /***/ (function(module, exports, __webpack_require__) {
62348
 
62349
- var baseIsRegExp = __webpack_require__(/*! ./_baseIsRegExp */ 293),
62350
  baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
62351
  nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
62352
 
@@ -62376,7 +62699,7 @@ module.exports = isRegExp;
62376
 
62377
 
62378
  /***/ }),
62379
- /* 293 */
62380
  /*!**********************************************!*\
62381
  !*** ./node_modules/lodash/_baseIsRegExp.js ***!
62382
  \**********************************************/
@@ -62405,7 +62728,7 @@ module.exports = baseIsRegExp;
62405
 
62406
 
62407
  /***/ }),
62408
- /* 294 */
62409
  /*!********************************************!*\
62410
  !*** ./node_modules/lodash/_stringSize.js ***!
62411
  \********************************************/
@@ -62413,9 +62736,9 @@ module.exports = baseIsRegExp;
62413
  /*! all exports used */
62414
  /***/ (function(module, exports, __webpack_require__) {
62415
 
62416
- var asciiSize = __webpack_require__(/*! ./_asciiSize */ 295),
62417
- hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 70),
62418
- unicodeSize = __webpack_require__(/*! ./_unicodeSize */ 296);
62419
 
62420
  /**
62421
  * Gets the number of symbols in `string`.
@@ -62434,7 +62757,7 @@ module.exports = stringSize;
62434
 
62435
 
62436
  /***/ }),
62437
- /* 295 */
62438
  /*!*******************************************!*\
62439
  !*** ./node_modules/lodash/_asciiSize.js ***!
62440
  \*******************************************/
@@ -62457,7 +62780,7 @@ module.exports = asciiSize;
62457
 
62458
 
62459
  /***/ }),
62460
- /* 296 */
62461
  /*!*********************************************!*\
62462
  !*** ./node_modules/lodash/_unicodeSize.js ***!
62463
  \*********************************************/
@@ -62512,7 +62835,7 @@ module.exports = unicodeSize;
62512
 
62513
 
62514
  /***/ }),
62515
- /* 297 */
62516
  /*!***********************************************!*\
62517
  !*** ./node_modules/lodash/_stringToArray.js ***!
62518
  \***********************************************/
@@ -62520,9 +62843,9 @@ module.exports = unicodeSize;
62520
  /*! all exports used */
62521
  /***/ (function(module, exports, __webpack_require__) {
62522
 
62523
- var asciiToArray = __webpack_require__(/*! ./_asciiToArray */ 298),
62524
- hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 70),
62525
- unicodeToArray = __webpack_require__(/*! ./_unicodeToArray */ 299);
62526
 
62527
  /**
62528
  * Converts `string` to an array.
@@ -62541,7 +62864,7 @@ module.exports = stringToArray;
62541
 
62542
 
62543
  /***/ }),
62544
- /* 298 */
62545
  /*!**********************************************!*\
62546
  !*** ./node_modules/lodash/_asciiToArray.js ***!
62547
  \**********************************************/
@@ -62564,7 +62887,7 @@ module.exports = asciiToArray;
62564
 
62565
 
62566
  /***/ }),
62567
- /* 299 */
62568
  /*!************************************************!*\
62569
  !*** ./node_modules/lodash/_unicodeToArray.js ***!
62570
  \************************************************/
@@ -62615,7 +62938,7 @@ module.exports = unicodeToArray;
62615
 
62616
 
62617
  /***/ }),
62618
- /* 300 */
62619
  /*!*****************************************!*\
62620
  !*** ./node_modules/lodash/toFinite.js ***!
62621
  \*****************************************/
@@ -62668,7 +62991,7 @@ module.exports = toFinite;
62668
 
62669
 
62670
  /***/ }),
62671
- /* 301 */
62672
  /*!***********************************************!*\
62673
  !*** ./src/blocks/post/post-masonry/block.js ***!
62674
  \***********************************************/
@@ -62676,11 +62999,11 @@ module.exports = toFinite;
62676
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
62677
 
62678
  "use strict";
62679
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 302);
62680
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
62681
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 74);
62682
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
62683
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 75);
62684
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
62685
  /**
62686
  * BLOCK: UAGB - post-masonry
@@ -62717,7 +63040,7 @@ registerBlockType("uagb/post-masonry", {
62717
  });
62718
 
62719
  /***/ }),
62720
- /* 302 */
62721
  /*!**********************************************!*\
62722
  !*** ./src/blocks/post/post-masonry/edit.js ***!
62723
  \**********************************************/
@@ -62729,8 +63052,8 @@ registerBlockType("uagb/post-masonry", {
62729
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
62730
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
62731
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
62732
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blog__ = __webpack_require__(/*! ./blog */ 303);
62733
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! .././styling */ 73);
62734
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
62735
 
62736
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
@@ -64369,7 +64692,7 @@ var UAGBPostMasonry = function (_Component) {
64369
  })(UAGBPostMasonry));
64370
 
64371
  /***/ }),
64372
- /* 303 */
64373
  /*!**********************************************!*\
64374
  !*** ./src/blocks/post/post-masonry/blog.js ***!
64375
  \**********************************************/
@@ -64380,13 +64703,13 @@ var UAGBPostMasonry = function (_Component) {
64380
  "use strict";
64381
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
64382
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
64383
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_masonry_component__ = __webpack_require__(/*! react-masonry-component */ 304);
64384
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_masonry_component___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react_masonry_component__);
64385
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_FeaturedImage__ = __webpack_require__(/*! .././components/FeaturedImage */ 65);
64386
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! .././components/Title */ 66);
64387
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Meta__ = __webpack_require__(/*! .././components/Meta */ 67);
64388
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Excerpt__ = __webpack_require__(/*! .././components/Excerpt */ 68);
64389
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_Button__ = __webpack_require__(/*! .././components/Button */ 72);
64390
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
64391
 
64392
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
@@ -64505,7 +64828,7 @@ var Blog = function (_React$Component) {
64505
  /* harmony default export */ __webpack_exports__["a"] = (Blog);
64506
 
64507
  /***/ }),
64508
- /* 304 */
64509
  /*!***********************************************************!*\
64510
  !*** ./node_modules/react-masonry-component/lib/index.js ***!
64511
  \***********************************************************/
@@ -64514,15 +64837,15 @@ var Blog = function (_React$Component) {
64514
  /***/ (function(module, exports, __webpack_require__) {
64515
 
64516
  var isBrowser = typeof window !== 'undefined';
64517
- var Masonry = isBrowser ? window.Masonry || __webpack_require__(/*! masonry-layout */ 305) : null;
64518
- var imagesloaded = isBrowser ? __webpack_require__(/*! imagesloaded */ 310) : null;
64519
- var assign = __webpack_require__(/*! lodash/assign */ 311);
64520
- var elementResizeDetectorMaker = __webpack_require__(/*! element-resize-detector */ 319);
64521
- var debounce = __webpack_require__(/*! lodash/debounce */ 330);
64522
- var omit = __webpack_require__(/*! lodash/omit */ 332);
64523
  var PropTypes = __webpack_require__(/*! prop-types */ 15);
64524
  var React = __webpack_require__(/*! react */ 6);
64525
- var createReactClass = __webpack_require__(/*! create-react-class */ 364);
64526
 
64527
  var propTypes = {
64528
  enableResizableChildren: PropTypes.bool,
@@ -64831,7 +65154,7 @@ module.exports.default = MasonryComponent;
64831
 
64832
 
64833
  /***/ }),
64834
- /* 305 */
64835
  /*!************************************************!*\
64836
  !*** ./node_modules/masonry-layout/masonry.js ***!
64837
  \************************************************/
@@ -64853,8 +65176,8 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
64853
  if ( true ) {
64854
  // AMD
64855
  !(__WEBPACK_AMD_DEFINE_ARRAY__ = [
64856
- __webpack_require__(/*! outlayer/outlayer */ 306),
64857
- __webpack_require__(/*! get-size/get-size */ 77)
64858
  ], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
64859
  __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
64860
  (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
@@ -65083,7 +65406,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
65083
 
65084
 
65085
  /***/ }),
65086
- /* 306 */
65087
  /*!*******************************************!*\
65088
  !*** ./node_modules/outlayer/outlayer.js ***!
65089
  \*******************************************/
@@ -65104,10 +65427,10 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
65104
  if ( true ) {
65105
  // AMD - RequireJS
65106
  !(__WEBPACK_AMD_DEFINE_ARRAY__ = [
65107
- __webpack_require__(/*! ev-emitter/ev-emitter */ 76),
65108
- __webpack_require__(/*! get-size/get-size */ 77),
65109
- __webpack_require__(/*! fizzy-ui-utils/utils */ 307),
65110
- __webpack_require__(/*! ./item */ 309)
65111
  ], __WEBPACK_AMD_DEFINE_RESULT__ = function( EvEmitter, getSize, utils, Item ) {
65112
  return factory( window, EvEmitter, getSize, utils, Item);
65113
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
@@ -66032,7 +66355,7 @@ return Outlayer;
66032
 
66033
 
66034
  /***/ }),
66035
- /* 307 */
66036
  /*!**********************************************!*\
66037
  !*** ./node_modules/fizzy-ui-utils/utils.js ***!
66038
  \**********************************************/
@@ -66054,7 +66377,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/**
66054
  if ( true ) {
66055
  // AMD
66056
  !(__WEBPACK_AMD_DEFINE_ARRAY__ = [
66057
- __webpack_require__(/*! desandro-matches-selector/matches-selector */ 308)
66058
  ], __WEBPACK_AMD_DEFINE_RESULT__ = function( matchesSelector ) {
66059
  return factory( window, matchesSelector );
66060
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
@@ -66285,7 +66608,7 @@ return utils;
66285
 
66286
 
66287
  /***/ }),
66288
- /* 308 */
66289
  /*!********************************************************************!*\
66290
  !*** ./node_modules/desandro-matches-selector/matches-selector.js ***!
66291
  \********************************************************************/
@@ -66353,7 +66676,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/**
66353
 
66354
 
66355
  /***/ }),
66356
- /* 309 */
66357
  /*!***************************************!*\
66358
  !*** ./node_modules/outlayer/item.js ***!
66359
  \***************************************/
@@ -66371,8 +66694,8 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
66371
  if ( true ) {
66372
  // AMD - RequireJS
66373
  !(__WEBPACK_AMD_DEFINE_ARRAY__ = [
66374
- __webpack_require__(/*! ev-emitter/ev-emitter */ 76),
66375
- __webpack_require__(/*! get-size/get-size */ 77)
66376
  ], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
66377
  __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
66378
  (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
@@ -66919,7 +67242,7 @@ return Item;
66919
 
66920
 
66921
  /***/ }),
66922
- /* 310 */
66923
  /*!***************************************************!*\
66924
  !*** ./node_modules/imagesloaded/imagesloaded.js ***!
66925
  \***************************************************/
@@ -66941,7 +67264,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
66941
  if ( true ) {
66942
  // AMD
66943
  !(__WEBPACK_AMD_DEFINE_ARRAY__ = [
66944
- __webpack_require__(/*! ev-emitter/ev-emitter */ 76)
66945
  ], __WEBPACK_AMD_DEFINE_RESULT__ = function( EvEmitter ) {
66946
  return factory( window, EvEmitter );
66947
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
@@ -67308,7 +67631,7 @@ return ImagesLoaded;
67308
 
67309
 
67310
  /***/ }),
67311
- /* 311 */
67312
  /*!***************************************!*\
67313
  !*** ./node_modules/lodash/assign.js ***!
67314
  \***************************************/
@@ -67318,7 +67641,7 @@ return ImagesLoaded;
67318
 
67319
  var assignValue = __webpack_require__(/*! ./_assignValue */ 48),
67320
  copyObject = __webpack_require__(/*! ./_copyObject */ 27),
67321
- createAssigner = __webpack_require__(/*! ./_createAssigner */ 312),
67322
  isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23),
67323
  isPrototype = __webpack_require__(/*! ./_isPrototype */ 43),
67324
  keys = __webpack_require__(/*! ./keys */ 22);
@@ -67377,7 +67700,7 @@ module.exports = assign;
67377
 
67378
 
67379
  /***/ }),
67380
- /* 312 */
67381
  /*!************************************************!*\
67382
  !*** ./node_modules/lodash/_createAssigner.js ***!
67383
  \************************************************/
@@ -67385,8 +67708,8 @@ module.exports = assign;
67385
  /*! all exports used */
67386
  /***/ (function(module, exports, __webpack_require__) {
67387
 
67388
- var baseRest = __webpack_require__(/*! ./_baseRest */ 313),
67389
- isIterateeCall = __webpack_require__(/*! ./_isIterateeCall */ 318);
67390
 
67391
  /**
67392
  * Creates a function like `_.assign`.
@@ -67425,7 +67748,7 @@ module.exports = createAssigner;
67425
 
67426
 
67427
  /***/ }),
67428
- /* 313 */
67429
  /*!******************************************!*\
67430
  !*** ./node_modules/lodash/_baseRest.js ***!
67431
  \******************************************/
@@ -67453,7 +67776,7 @@ module.exports = baseRest;
67453
 
67454
 
67455
  /***/ }),
67456
- /* 314 */
67457
  /*!***************************************!*\
67458
  !*** ./node_modules/lodash/_apply.js ***!
67459
  \***************************************/
@@ -67485,7 +67808,7 @@ module.exports = apply;
67485
 
67486
 
67487
  /***/ }),
67488
- /* 315 */
67489
  /*!*************************************************!*\
67490
  !*** ./node_modules/lodash/_baseSetToString.js ***!
67491
  \*************************************************/
@@ -67493,7 +67816,7 @@ module.exports = apply;
67493
  /*! all exports used */
67494
  /***/ (function(module, exports, __webpack_require__) {
67495
 
67496
- var constant = __webpack_require__(/*! ./constant */ 316),
67497
  defineProperty = __webpack_require__(/*! ./_defineProperty */ 145),
67498
  identity = __webpack_require__(/*! ./identity */ 47);
67499
 
@@ -67518,7 +67841,7 @@ module.exports = baseSetToString;
67518
 
67519
 
67520
  /***/ }),
67521
- /* 316 */
67522
  /*!*****************************************!*\
67523
  !*** ./node_modules/lodash/constant.js ***!
67524
  \*****************************************/
@@ -67555,7 +67878,7 @@ module.exports = constant;
67555
 
67556
 
67557
  /***/ }),
67558
- /* 317 */
67559
  /*!******************************************!*\
67560
  !*** ./node_modules/lodash/_shortOut.js ***!
67561
  \******************************************/
@@ -67603,7 +67926,7 @@ module.exports = shortOut;
67603
 
67604
 
67605
  /***/ }),
67606
- /* 318 */
67607
  /*!************************************************!*\
67608
  !*** ./node_modules/lodash/_isIterateeCall.js ***!
67609
  \************************************************/
@@ -67644,7 +67967,7 @@ module.exports = isIterateeCall;
67644
 
67645
 
67646
  /***/ }),
67647
- /* 319 */
67648
  /*!*****************************************************************************!*\
67649
  !*** ./node_modules/element-resize-detector/src/element-resize-detector.js ***!
67650
  \*****************************************************************************/
@@ -67656,18 +67979,18 @@ module.exports = isIterateeCall;
67656
 
67657
 
67658
  var forEach = __webpack_require__(/*! ./collection-utils */ 148).forEach;
67659
- var elementUtilsMaker = __webpack_require__(/*! ./element-utils */ 320);
67660
- var listenerHandlerMaker = __webpack_require__(/*! ./listener-handler */ 321);
67661
- var idGeneratorMaker = __webpack_require__(/*! ./id-generator */ 322);
67662
- var idHandlerMaker = __webpack_require__(/*! ./id-handler */ 323);
67663
- var reporterMaker = __webpack_require__(/*! ./reporter */ 324);
67664
  var browserDetector = __webpack_require__(/*! ./browser-detector */ 149);
67665
- var batchProcessorMaker = __webpack_require__(/*! batch-processor */ 325);
67666
- var stateHandler = __webpack_require__(/*! ./state-handler */ 327);
67667
 
67668
  //Detection strategies.
67669
- var objectStrategyMaker = __webpack_require__(/*! ./detection-strategy/object.js */ 328);
67670
- var scrollStrategyMaker = __webpack_require__(/*! ./detection-strategy/scroll.js */ 329);
67671
 
67672
  function isCollection(obj) {
67673
  return Array.isArray(obj) || obj.length !== undefined;
@@ -67984,7 +68307,7 @@ function getOption(options, name, defaultValue) {
67984
 
67985
 
67986
  /***/ }),
67987
- /* 320 */
67988
  /*!*******************************************************************!*\
67989
  !*** ./node_modules/element-resize-detector/src/element-utils.js ***!
67990
  \*******************************************************************/
@@ -68048,7 +68371,7 @@ module.exports = function(options) {
68048
 
68049
 
68050
  /***/ }),
68051
- /* 321 */
68052
  /*!**********************************************************************!*\
68053
  !*** ./node_modules/element-resize-detector/src/listener-handler.js ***!
68054
  \**********************************************************************/
@@ -68120,7 +68443,7 @@ module.exports = function(idHandler) {
68120
 
68121
 
68122
  /***/ }),
68123
- /* 322 */
68124
  /*!******************************************************************!*\
68125
  !*** ./node_modules/element-resize-detector/src/id-generator.js ***!
68126
  \******************************************************************/
@@ -68150,7 +68473,7 @@ module.exports = function() {
68150
 
68151
 
68152
  /***/ }),
68153
- /* 323 */
68154
  /*!****************************************************************!*\
68155
  !*** ./node_modules/element-resize-detector/src/id-handler.js ***!
68156
  \****************************************************************/
@@ -68209,7 +68532,7 @@ module.exports = function(options) {
68209
 
68210
 
68211
  /***/ }),
68212
- /* 324 */
68213
  /*!**************************************************************!*\
68214
  !*** ./node_modules/element-resize-detector/src/reporter.js ***!
68215
  \**************************************************************/
@@ -68263,7 +68586,7 @@ module.exports = function(quiet) {
68263
  };
68264
 
68265
  /***/ }),
68266
- /* 325 */
68267
  /*!*************************************************************!*\
68268
  !*** ./node_modules/batch-processor/src/batch-processor.js ***!
68269
  \*************************************************************/
@@ -68274,7 +68597,7 @@ module.exports = function(quiet) {
68274
  "use strict";
68275
 
68276
 
68277
- var utils = __webpack_require__(/*! ./utils */ 326);
68278
 
68279
  module.exports = function batchProcessorMaker(options) {
68280
  options = options || {};
@@ -68413,7 +68736,7 @@ function Batch() {
68413
 
68414
 
68415
  /***/ }),
68416
- /* 326 */
68417
  /*!***************************************************!*\
68418
  !*** ./node_modules/batch-processor/src/utils.js ***!
68419
  \***************************************************/
@@ -68440,7 +68763,7 @@ function getOption(options, name, defaultValue) {
68440
 
68441
 
68442
  /***/ }),
68443
- /* 327 */
68444
  /*!*******************************************************************!*\
68445
  !*** ./node_modules/element-resize-detector/src/state-handler.js ***!
68446
  \*******************************************************************/
@@ -68474,7 +68797,7 @@ module.exports = {
68474
 
68475
 
68476
  /***/ }),
68477
- /* 328 */
68478
  /*!*******************************************************************************!*\
68479
  !*** ./node_modules/element-resize-detector/src/detection-strategy/object.js ***!
68480
  \*******************************************************************************/
@@ -68733,7 +69056,7 @@ module.exports = function(options) {
68733
 
68734
 
68735
  /***/ }),
68736
- /* 329 */
68737
  /*!*******************************************************************************!*\
68738
  !*** ./node_modules/element-resize-detector/src/detection-strategy/scroll.js ***!
68739
  \*******************************************************************************/
@@ -69406,7 +69729,7 @@ module.exports = function(options) {
69406
 
69407
 
69408
  /***/ }),
69409
- /* 330 */
69410
  /*!*****************************************!*\
69411
  !*** ./node_modules/lodash/debounce.js ***!
69412
  \*****************************************/
@@ -69415,7 +69738,7 @@ module.exports = function(options) {
69415
  /***/ (function(module, exports, __webpack_require__) {
69416
 
69417
  var isObject = __webpack_require__(/*! ./isObject */ 13),
69418
- now = __webpack_require__(/*! ./now */ 331),
69419
  toNumber = __webpack_require__(/*! ./toNumber */ 143);
69420
 
69421
  /** Error message constants. */
@@ -69608,7 +69931,7 @@ module.exports = debounce;
69608
 
69609
 
69610
  /***/ }),
69611
- /* 331 */
69612
  /*!************************************!*\
69613
  !*** ./node_modules/lodash/now.js ***!
69614
  \************************************/
@@ -69642,7 +69965,7 @@ module.exports = now;
69642
 
69643
 
69644
  /***/ }),
69645
- /* 332 */
69646
  /*!*************************************!*\
69647
  !*** ./node_modules/lodash/omit.js ***!
69648
  \*************************************/
@@ -69651,13 +69974,13 @@ module.exports = now;
69651
  /***/ (function(module, exports, __webpack_require__) {
69652
 
69653
  var arrayMap = __webpack_require__(/*! ./_arrayMap */ 34),
69654
- baseClone = __webpack_require__(/*! ./_baseClone */ 333),
69655
- baseUnset = __webpack_require__(/*! ./_baseUnset */ 355),
69656
  castPath = __webpack_require__(/*! ./_castPath */ 24),
69657
  copyObject = __webpack_require__(/*! ./_copyObject */ 27),
69658
- customOmitClone = __webpack_require__(/*! ./_customOmitClone */ 358),
69659
- flatRest = __webpack_require__(/*! ./_flatRest */ 360),
69660
- getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 79);
69661
 
69662
  /** Used to compose bitmasks for cloning. */
69663
  var CLONE_DEEP_FLAG = 1,
@@ -69710,7 +70033,7 @@ module.exports = omit;
69710
 
69711
 
69712
  /***/ }),
69713
- /* 333 */
69714
  /*!*******************************************!*\
69715
  !*** ./node_modules/lodash/_baseClone.js ***!
69716
  \*******************************************/
@@ -69718,26 +70041,26 @@ module.exports = omit;
69718
  /*! all exports used */
69719
  /***/ (function(module, exports, __webpack_require__) {
69720
 
69721
- var Stack = __webpack_require__(/*! ./_Stack */ 50),
69722
- arrayEach = __webpack_require__(/*! ./_arrayEach */ 334),
69723
  assignValue = __webpack_require__(/*! ./_assignValue */ 48),
69724
- baseAssign = __webpack_require__(/*! ./_baseAssign */ 335),
69725
- baseAssignIn = __webpack_require__(/*! ./_baseAssignIn */ 336),
69726
- cloneBuffer = __webpack_require__(/*! ./_cloneBuffer */ 339),
69727
- copyArray = __webpack_require__(/*! ./_copyArray */ 340),
69728
- copySymbols = __webpack_require__(/*! ./_copySymbols */ 341),
69729
- copySymbolsIn = __webpack_require__(/*! ./_copySymbolsIn */ 342),
69730
  getAllKeys = __webpack_require__(/*! ./_getAllKeys */ 120),
69731
- getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 79),
69732
  getTag = __webpack_require__(/*! ./_getTag */ 44),
69733
- initCloneArray = __webpack_require__(/*! ./_initCloneArray */ 343),
69734
- initCloneByTag = __webpack_require__(/*! ./_initCloneByTag */ 344),
69735
- initCloneObject = __webpack_require__(/*! ./_initCloneObject */ 349),
69736
  isArray = __webpack_require__(/*! ./isArray */ 14),
69737
- isBuffer = __webpack_require__(/*! ./isBuffer */ 57),
69738
- isMap = __webpack_require__(/*! ./isMap */ 351),
69739
  isObject = __webpack_require__(/*! ./isObject */ 13),
69740
- isSet = __webpack_require__(/*! ./isSet */ 353),
69741
  keys = __webpack_require__(/*! ./keys */ 22);
69742
 
69743
  /** Used to compose bitmasks for cloning. */
@@ -69886,7 +70209,7 @@ module.exports = baseClone;
69886
 
69887
 
69888
  /***/ }),
69889
- /* 334 */
69890
  /*!*******************************************!*\
69891
  !*** ./node_modules/lodash/_arrayEach.js ***!
69892
  \*******************************************/
@@ -69919,7 +70242,7 @@ module.exports = arrayEach;
69919
 
69920
 
69921
  /***/ }),
69922
- /* 335 */
69923
  /*!********************************************!*\
69924
  !*** ./node_modules/lodash/_baseAssign.js ***!
69925
  \********************************************/
@@ -69947,7 +70270,7 @@ module.exports = baseAssign;
69947
 
69948
 
69949
  /***/ }),
69950
- /* 336 */
69951
  /*!**********************************************!*\
69952
  !*** ./node_modules/lodash/_baseAssignIn.js ***!
69953
  \**********************************************/
@@ -69975,7 +70298,7 @@ module.exports = baseAssignIn;
69975
 
69976
 
69977
  /***/ }),
69978
- /* 337 */
69979
  /*!********************************************!*\
69980
  !*** ./node_modules/lodash/_baseKeysIn.js ***!
69981
  \********************************************/
@@ -69985,7 +70308,7 @@ module.exports = baseAssignIn;
69985
 
69986
  var isObject = __webpack_require__(/*! ./isObject */ 13),
69987
  isPrototype = __webpack_require__(/*! ./_isPrototype */ 43),
69988
- nativeKeysIn = __webpack_require__(/*! ./_nativeKeysIn */ 338);
69989
 
69990
  /** Used for built-in method references. */
69991
  var objectProto = Object.prototype;
@@ -70019,7 +70342,7 @@ module.exports = baseKeysIn;
70019
 
70020
 
70021
  /***/ }),
70022
- /* 338 */
70023
  /*!**********************************************!*\
70024
  !*** ./node_modules/lodash/_nativeKeysIn.js ***!
70025
  \**********************************************/
@@ -70050,7 +70373,7 @@ module.exports = nativeKeysIn;
70050
 
70051
 
70052
  /***/ }),
70053
- /* 339 */
70054
  /*!*********************************************!*\
70055
  !*** ./node_modules/lodash/_cloneBuffer.js ***!
70056
  \*********************************************/
@@ -70094,10 +70417,10 @@ function cloneBuffer(buffer, isDeep) {
70094
 
70095
  module.exports = cloneBuffer;
70096
 
70097
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */ 58)(module)))
70098
 
70099
  /***/ }),
70100
- /* 340 */
70101
  /*!*******************************************!*\
70102
  !*** ./node_modules/lodash/_copyArray.js ***!
70103
  \*******************************************/
@@ -70128,7 +70451,7 @@ module.exports = copyArray;
70128
 
70129
 
70130
  /***/ }),
70131
- /* 341 */
70132
  /*!*********************************************!*\
70133
  !*** ./node_modules/lodash/_copySymbols.js ***!
70134
  \*********************************************/
@@ -70137,7 +70460,7 @@ module.exports = copyArray;
70137
  /***/ (function(module, exports, __webpack_require__) {
70138
 
70139
  var copyObject = __webpack_require__(/*! ./_copyObject */ 27),
70140
- getSymbols = __webpack_require__(/*! ./_getSymbols */ 55);
70141
 
70142
  /**
70143
  * Copies own symbols of `source` to `object`.
@@ -70155,7 +70478,7 @@ module.exports = copySymbols;
70155
 
70156
 
70157
  /***/ }),
70158
- /* 342 */
70159
  /*!***********************************************!*\
70160
  !*** ./node_modules/lodash/_copySymbolsIn.js ***!
70161
  \***********************************************/
@@ -70182,7 +70505,7 @@ module.exports = copySymbolsIn;
70182
 
70183
 
70184
  /***/ }),
70185
- /* 343 */
70186
  /*!************************************************!*\
70187
  !*** ./node_modules/lodash/_initCloneArray.js ***!
70188
  \************************************************/
@@ -70219,7 +70542,7 @@ module.exports = initCloneArray;
70219
 
70220
 
70221
  /***/ }),
70222
- /* 344 */
70223
  /*!************************************************!*\
70224
  !*** ./node_modules/lodash/_initCloneByTag.js ***!
70225
  \************************************************/
@@ -70227,11 +70550,11 @@ module.exports = initCloneArray;
70227
  /*! all exports used */
70228
  /***/ (function(module, exports, __webpack_require__) {
70229
 
70230
- var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */ 80),
70231
- cloneDataView = __webpack_require__(/*! ./_cloneDataView */ 345),
70232
- cloneRegExp = __webpack_require__(/*! ./_cloneRegExp */ 346),
70233
- cloneSymbol = __webpack_require__(/*! ./_cloneSymbol */ 347),
70234
- cloneTypedArray = __webpack_require__(/*! ./_cloneTypedArray */ 348);
70235
 
70236
  /** `Object#toString` result references. */
70237
  var boolTag = '[object Boolean]',
@@ -70307,7 +70630,7 @@ module.exports = initCloneByTag;
70307
 
70308
 
70309
  /***/ }),
70310
- /* 345 */
70311
  /*!***********************************************!*\
70312
  !*** ./node_modules/lodash/_cloneDataView.js ***!
70313
  \***********************************************/
@@ -70315,7 +70638,7 @@ module.exports = initCloneByTag;
70315
  /*! all exports used */
70316
  /***/ (function(module, exports, __webpack_require__) {
70317
 
70318
- var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */ 80);
70319
 
70320
  /**
70321
  * Creates a clone of `dataView`.
@@ -70334,7 +70657,7 @@ module.exports = cloneDataView;
70334
 
70335
 
70336
  /***/ }),
70337
- /* 346 */
70338
  /*!*********************************************!*\
70339
  !*** ./node_modules/lodash/_cloneRegExp.js ***!
70340
  \*********************************************/
@@ -70362,7 +70685,7 @@ module.exports = cloneRegExp;
70362
 
70363
 
70364
  /***/ }),
70365
- /* 347 */
70366
  /*!*********************************************!*\
70367
  !*** ./node_modules/lodash/_cloneSymbol.js ***!
70368
  \*********************************************/
@@ -70391,7 +70714,7 @@ module.exports = cloneSymbol;
70391
 
70392
 
70393
  /***/ }),
70394
- /* 348 */
70395
  /*!*************************************************!*\
70396
  !*** ./node_modules/lodash/_cloneTypedArray.js ***!
70397
  \*************************************************/
@@ -70399,7 +70722,7 @@ module.exports = cloneSymbol;
70399
  /*! all exports used */
70400
  /***/ (function(module, exports, __webpack_require__) {
70401
 
70402
- var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */ 80);
70403
 
70404
  /**
70405
  * Creates a clone of `typedArray`.
@@ -70418,7 +70741,7 @@ module.exports = cloneTypedArray;
70418
 
70419
 
70420
  /***/ }),
70421
- /* 349 */
70422
  /*!*************************************************!*\
70423
  !*** ./node_modules/lodash/_initCloneObject.js ***!
70424
  \*************************************************/
@@ -70426,8 +70749,8 @@ module.exports = cloneTypedArray;
70426
  /*! all exports used */
70427
  /***/ (function(module, exports, __webpack_require__) {
70428
 
70429
- var baseCreate = __webpack_require__(/*! ./_baseCreate */ 350),
70430
- getPrototype = __webpack_require__(/*! ./_getPrototype */ 78),
70431
  isPrototype = __webpack_require__(/*! ./_isPrototype */ 43);
70432
 
70433
  /**
@@ -70447,7 +70770,7 @@ module.exports = initCloneObject;
70447
 
70448
 
70449
  /***/ }),
70450
- /* 350 */
70451
  /*!********************************************!*\
70452
  !*** ./node_modules/lodash/_baseCreate.js ***!
70453
  \********************************************/
@@ -70488,7 +70811,7 @@ module.exports = baseCreate;
70488
 
70489
 
70490
  /***/ }),
70491
- /* 351 */
70492
  /*!**************************************!*\
70493
  !*** ./node_modules/lodash/isMap.js ***!
70494
  \**************************************/
@@ -70496,7 +70819,7 @@ module.exports = baseCreate;
70496
  /*! all exports used */
70497
  /***/ (function(module, exports, __webpack_require__) {
70498
 
70499
- var baseIsMap = __webpack_require__(/*! ./_baseIsMap */ 352),
70500
  baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
70501
  nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
70502
 
@@ -70526,7 +70849,7 @@ module.exports = isMap;
70526
 
70527
 
70528
  /***/ }),
70529
- /* 352 */
70530
  /*!*******************************************!*\
70531
  !*** ./node_modules/lodash/_baseIsMap.js ***!
70532
  \*******************************************/
@@ -70555,7 +70878,7 @@ module.exports = baseIsMap;
70555
 
70556
 
70557
  /***/ }),
70558
- /* 353 */
70559
  /*!**************************************!*\
70560
  !*** ./node_modules/lodash/isSet.js ***!
70561
  \**************************************/
@@ -70563,7 +70886,7 @@ module.exports = baseIsMap;
70563
  /*! all exports used */
70564
  /***/ (function(module, exports, __webpack_require__) {
70565
 
70566
- var baseIsSet = __webpack_require__(/*! ./_baseIsSet */ 354),
70567
  baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
70568
  nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
70569
 
@@ -70593,7 +70916,7 @@ module.exports = isSet;
70593
 
70594
 
70595
  /***/ }),
70596
- /* 354 */
70597
  /*!*******************************************!*\
70598
  !*** ./node_modules/lodash/_baseIsSet.js ***!
70599
  \*******************************************/
@@ -70622,7 +70945,7 @@ module.exports = baseIsSet;
70622
 
70623
 
70624
  /***/ }),
70625
- /* 355 */
70626
  /*!*******************************************!*\
70627
  !*** ./node_modules/lodash/_baseUnset.js ***!
70628
  \*******************************************/
@@ -70631,8 +70954,8 @@ module.exports = baseIsSet;
70631
  /***/ (function(module, exports, __webpack_require__) {
70632
 
70633
  var castPath = __webpack_require__(/*! ./_castPath */ 24),
70634
- last = __webpack_require__(/*! ./last */ 356),
70635
- parent = __webpack_require__(/*! ./_parent */ 357),
70636
  toKey = __webpack_require__(/*! ./_toKey */ 25);
70637
 
70638
  /**
@@ -70653,7 +70976,7 @@ module.exports = baseUnset;
70653
 
70654
 
70655
  /***/ }),
70656
- /* 356 */
70657
  /*!*************************************!*\
70658
  !*** ./node_modules/lodash/last.js ***!
70659
  \*************************************/
@@ -70684,7 +71007,7 @@ module.exports = last;
70684
 
70685
 
70686
  /***/ }),
70687
- /* 357 */
70688
  /*!****************************************!*\
70689
  !*** ./node_modules/lodash/_parent.js ***!
70690
  \****************************************/
@@ -70693,7 +71016,7 @@ module.exports = last;
70693
  /***/ (function(module, exports, __webpack_require__) {
70694
 
70695
  var baseGet = __webpack_require__(/*! ./_baseGet */ 45),
70696
- baseSlice = __webpack_require__(/*! ./_baseSlice */ 69);
70697
 
70698
  /**
70699
  * Gets the parent value at `path` of `object`.
@@ -70711,7 +71034,7 @@ module.exports = parent;
70711
 
70712
 
70713
  /***/ }),
70714
- /* 358 */
70715
  /*!*************************************************!*\
70716
  !*** ./node_modules/lodash/_customOmitClone.js ***!
70717
  \*************************************************/
@@ -70719,7 +71042,7 @@ module.exports = parent;
70719
  /*! all exports used */
70720
  /***/ (function(module, exports, __webpack_require__) {
70721
 
70722
- var isPlainObject = __webpack_require__(/*! ./isPlainObject */ 359);
70723
 
70724
  /**
70725
  * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain
@@ -70738,7 +71061,7 @@ module.exports = customOmitClone;
70738
 
70739
 
70740
  /***/ }),
70741
- /* 359 */
70742
  /*!**********************************************!*\
70743
  !*** ./node_modules/lodash/isPlainObject.js ***!
70744
  \**********************************************/
@@ -70747,7 +71070,7 @@ module.exports = customOmitClone;
70747
  /***/ (function(module, exports, __webpack_require__) {
70748
 
70749
  var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 20),
70750
- getPrototype = __webpack_require__(/*! ./_getPrototype */ 78),
70751
  isObjectLike = __webpack_require__(/*! ./isObjectLike */ 17);
70752
 
70753
  /** `Object#toString` result references. */
@@ -70811,7 +71134,7 @@ module.exports = isPlainObject;
70811
 
70812
 
70813
  /***/ }),
70814
- /* 360 */
70815
  /*!******************************************!*\
70816
  !*** ./node_modules/lodash/_flatRest.js ***!
70817
  \******************************************/
@@ -70819,7 +71142,7 @@ module.exports = isPlainObject;
70819
  /*! all exports used */
70820
  /***/ (function(module, exports, __webpack_require__) {
70821
 
70822
- var flatten = __webpack_require__(/*! ./flatten */ 361),
70823
  overRest = __webpack_require__(/*! ./_overRest */ 146),
70824
  setToString = __webpack_require__(/*! ./_setToString */ 147);
70825
 
@@ -70838,7 +71161,7 @@ module.exports = flatRest;
70838
 
70839
 
70840
  /***/ }),
70841
- /* 361 */
70842
  /*!****************************************!*\
70843
  !*** ./node_modules/lodash/flatten.js ***!
70844
  \****************************************/
@@ -70846,7 +71169,7 @@ module.exports = flatRest;
70846
  /*! all exports used */
70847
  /***/ (function(module, exports, __webpack_require__) {
70848
 
70849
- var baseFlatten = __webpack_require__(/*! ./_baseFlatten */ 362);
70850
 
70851
  /**
70852
  * Flattens `array` a single level deep.
@@ -70871,7 +71194,7 @@ module.exports = flatten;
70871
 
70872
 
70873
  /***/ }),
70874
- /* 362 */
70875
  /*!*********************************************!*\
70876
  !*** ./node_modules/lodash/_baseFlatten.js ***!
70877
  \*********************************************/
@@ -70879,8 +71202,8 @@ module.exports = flatten;
70879
  /*! all exports used */
70880
  /***/ (function(module, exports, __webpack_require__) {
70881
 
70882
- var arrayPush = __webpack_require__(/*! ./_arrayPush */ 54),
70883
- isFlattenable = __webpack_require__(/*! ./_isFlattenable */ 363);
70884
 
70885
  /**
70886
  * The base implementation of `_.flatten` with support for restricting flattening.
@@ -70920,7 +71243,7 @@ module.exports = baseFlatten;
70920
 
70921
 
70922
  /***/ }),
70923
- /* 363 */
70924
  /*!***********************************************!*\
70925
  !*** ./node_modules/lodash/_isFlattenable.js ***!
70926
  \***********************************************/
@@ -70929,7 +71252,7 @@ module.exports = baseFlatten;
70929
  /***/ (function(module, exports, __webpack_require__) {
70930
 
70931
  var Symbol = __webpack_require__(/*! ./_Symbol */ 21),
70932
- isArguments = __webpack_require__(/*! ./isArguments */ 56),
70933
  isArray = __webpack_require__(/*! ./isArray */ 14);
70934
 
70935
  /** Built-in value references. */
@@ -70951,7 +71274,7 @@ module.exports = isFlattenable;
70951
 
70952
 
70953
  /***/ }),
70954
- /* 364 */
70955
  /*!**************************************************!*\
70956
  !*** ./node_modules/create-react-class/index.js ***!
70957
  \**************************************************/
@@ -70971,7 +71294,7 @@ module.exports = isFlattenable;
70971
 
70972
 
70973
  var React = __webpack_require__(/*! react */ 6);
70974
- var factory = __webpack_require__(/*! ./factory */ 365);
70975
 
70976
  if (typeof React === 'undefined') {
70977
  throw Error(
@@ -70991,7 +71314,7 @@ module.exports = factory(
70991
 
70992
 
70993
  /***/ }),
70994
- /* 365 */
70995
  /*!****************************************************!*\
70996
  !*** ./node_modules/create-react-class/factory.js ***!
70997
  \****************************************************/
@@ -71012,11 +71335,11 @@ module.exports = factory(
71012
 
71013
  var _assign = __webpack_require__(/*! object-assign */ 26);
71014
 
71015
- var emptyObject = __webpack_require__(/*! fbjs/lib/emptyObject */ 366);
71016
- var _invariant = __webpack_require__(/*! fbjs/lib/invariant */ 367);
71017
 
71018
  if (process.env.NODE_ENV !== 'production') {
71019
- var warning = __webpack_require__(/*! fbjs/lib/warning */ 368);
71020
  }
71021
 
71022
  var MIXINS_KEY = 'mixins';
@@ -71930,7 +72253,7 @@ module.exports = factory;
71930
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
71931
 
71932
  /***/ }),
71933
- /* 366 */
71934
  /*!**********************************************!*\
71935
  !*** ./node_modules/fbjs/lib/emptyObject.js ***!
71936
  \**********************************************/
@@ -71959,7 +72282,7 @@ module.exports = emptyObject;
71959
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
71960
 
71961
  /***/ }),
71962
- /* 367 */
71963
  /*!********************************************!*\
71964
  !*** ./node_modules/fbjs/lib/invariant.js ***!
71965
  \********************************************/
@@ -72024,7 +72347,7 @@ module.exports = invariant;
72024
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
72025
 
72026
  /***/ }),
72027
- /* 368 */
72028
  /*!******************************************!*\
72029
  !*** ./node_modules/fbjs/lib/warning.js ***!
72030
  \******************************************/
@@ -72043,7 +72366,7 @@ module.exports = invariant;
72043
 
72044
 
72045
 
72046
- var emptyFunction = __webpack_require__(/*! ./emptyFunction */ 369);
72047
 
72048
  /**
72049
  * Similar to invariant but only logs a warning if the condition is not met.
@@ -72098,7 +72421,7 @@ module.exports = warning;
72098
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
72099
 
72100
  /***/ }),
72101
- /* 369 */
72102
  /*!************************************************!*\
72103
  !*** ./node_modules/fbjs/lib/emptyFunction.js ***!
72104
  \************************************************/
@@ -72145,7 +72468,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
72145
  module.exports = emptyFunction;
72146
 
72147
  /***/ }),
72148
- /* 370 */
72149
  /*!************************************************!*\
72150
  !*** ./src/blocks/post/post-carousel/block.js ***!
72151
  \************************************************/
@@ -72153,11 +72476,11 @@ module.exports = emptyFunction;
72153
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
72154
 
72155
  "use strict";
72156
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 371);
72157
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
72158
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 74);
72159
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
72160
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 75);
72161
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
72162
  /**
72163
  * BLOCK: UAGb - post-carousel
@@ -72194,7 +72517,7 @@ registerBlockType("uagb/post-carousel", {
72194
  });
72195
 
72196
  /***/ }),
72197
- /* 371 */
72198
  /*!***********************************************!*\
72199
  !*** ./src/blocks/post/post-carousel/edit.js ***!
72200
  \***********************************************/
@@ -72210,8 +72533,8 @@ registerBlockType("uagb/post-carousel", {
72210
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
72211
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
72212
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
72213
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__blog__ = __webpack_require__(/*! ./blog */ 372);
72214
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__styling__ = __webpack_require__(/*! .././styling */ 73);
72215
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
72216
 
72217
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
@@ -73514,7 +73837,7 @@ var UAGBPostCarousel = function (_Component) {
73514
  })(UAGBPostCarousel));
73515
 
73516
  /***/ }),
73517
- /* 372 */
73518
  /*!***********************************************!*\
73519
  !*** ./src/blocks/post/post-carousel/blog.js ***!
73520
  \***********************************************/
@@ -73527,11 +73850,11 @@ var UAGBPostCarousel = function (_Component) {
73527
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
73528
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_slick__ = __webpack_require__(/*! react-slick */ 152);
73529
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_slick___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react_slick__);
73530
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_FeaturedImage__ = __webpack_require__(/*! .././components/FeaturedImage */ 65);
73531
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! .././components/Title */ 66);
73532
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Meta__ = __webpack_require__(/*! .././components/Meta */ 67);
73533
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Excerpt__ = __webpack_require__(/*! .././components/Excerpt */ 68);
73534
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_Button__ = __webpack_require__(/*! .././components/Button */ 72);
73535
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
73536
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
73537
 
@@ -73715,7 +74038,7 @@ var Blog = function (_React$Component) {
73715
  /* harmony default export */ __webpack_exports__["a"] = (Blog);
73716
 
73717
  /***/ }),
73718
- /* 373 */
73719
  /*!************************************************!*\
73720
  !*** ./node_modules/react-slick/lib/slider.js ***!
73721
  \************************************************/
@@ -73734,13 +74057,13 @@ var _react = __webpack_require__(/*! react */ 6);
73734
 
73735
  var _react2 = _interopRequireDefault(_react);
73736
 
73737
- var _innerSlider = __webpack_require__(/*! ./inner-slider */ 374);
73738
 
73739
- var _json2mq = __webpack_require__(/*! json2mq */ 381);
73740
 
73741
  var _json2mq2 = _interopRequireDefault(_json2mq);
73742
 
73743
- var _defaultProps = __webpack_require__(/*! ./default-props */ 383);
73744
 
73745
  var _defaultProps2 = _interopRequireDefault(_defaultProps);
73746
 
@@ -73754,7 +74077,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
73754
 
73755
  function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
73756
 
73757
- var enquire = (0, _innerSliderUtils.canUseDOM)() && __webpack_require__(/*! enquire.js */ 384);
73758
 
73759
  var Slider = function (_React$Component) {
73760
  _inherits(Slider, _React$Component);
@@ -73970,7 +74293,7 @@ exports.default = Slider;
73970
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
73971
 
73972
  /***/ }),
73973
- /* 374 */
73974
  /*!******************************************************!*\
73975
  !*** ./node_modules/react-slick/lib/inner-slider.js ***!
73976
  \******************************************************/
@@ -73996,11 +74319,11 @@ var _reactDom = __webpack_require__(/*! react-dom */ 18);
73996
 
73997
  var _reactDom2 = _interopRequireDefault(_reactDom);
73998
 
73999
- var _initialState = __webpack_require__(/*! ./initial-state */ 375);
74000
 
74001
  var _initialState2 = _interopRequireDefault(_initialState);
74002
 
74003
- var _lodash = __webpack_require__(/*! lodash.debounce */ 376);
74004
 
74005
  var _lodash2 = _interopRequireDefault(_lodash);
74006
 
@@ -74010,13 +74333,13 @@ var _classnames2 = _interopRequireDefault(_classnames);
74010
 
74011
  var _innerSliderUtils = __webpack_require__(/*! ./utils/innerSliderUtils */ 49);
74012
 
74013
- var _track = __webpack_require__(/*! ./track */ 377);
74014
 
74015
- var _dots = __webpack_require__(/*! ./dots */ 378);
74016
 
74017
- var _arrows = __webpack_require__(/*! ./arrows */ 379);
74018
 
74019
- var _resizeObserverPolyfill = __webpack_require__(/*! resize-observer-polyfill */ 380);
74020
 
74021
  var _resizeObserverPolyfill2 = _interopRequireDefault(_resizeObserverPolyfill);
74022
 
@@ -74722,7 +75045,7 @@ var InnerSlider = exports.InnerSlider = function (_React$Component) {
74722
  }(_react2.default.Component);
74723
 
74724
  /***/ }),
74725
- /* 375 */
74726
  /*!*******************************************************!*\
74727
  !*** ./node_modules/react-slick/lib/initial-state.js ***!
74728
  \*******************************************************/
@@ -74762,7 +75085,7 @@ var initialState = {
74762
  exports.default = initialState;
74763
 
74764
  /***/ }),
74765
- /* 376 */
74766
  /*!***********************************************!*\
74767
  !*** ./node_modules/lodash.debounce/index.js ***!
74768
  \***********************************************/
@@ -75148,10 +75471,10 @@ function toNumber(value) {
75148
 
75149
  module.exports = debounce;
75150
 
75151
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 52)))
75152
 
75153
  /***/ }),
75154
- /* 377 */
75155
  /*!***********************************************!*\
75156
  !*** ./node_modules/react-slick/lib/track.js ***!
75157
  \***********************************************/
@@ -75371,7 +75694,7 @@ var Track = exports.Track = function (_React$PureComponent) {
75371
  }(_react2.default.PureComponent);
75372
 
75373
  /***/ }),
75374
- /* 378 */
75375
  /*!**********************************************!*\
75376
  !*** ./node_modules/react-slick/lib/dots.js ***!
75377
  \**********************************************/
@@ -75481,7 +75804,7 @@ var Dots = exports.Dots = function (_React$PureComponent) {
75481
  }(_react2.default.PureComponent);
75482
 
75483
  /***/ }),
75484
- /* 379 */
75485
  /*!************************************************!*\
75486
  !*** ./node_modules/react-slick/lib/arrows.js ***!
75487
  \************************************************/
@@ -75626,7 +75949,7 @@ var NextArrow = exports.NextArrow = function (_React$PureComponent2) {
75626
  }(_react2.default.PureComponent);
75627
 
75628
  /***/ }),
75629
- /* 380 */
75630
  /*!*************************************************************************!*\
75631
  !*** ./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js ***!
75632
  \*************************************************************************/
@@ -75636,939 +75959,939 @@ var NextArrow = exports.NextArrow = function (_React$PureComponent2) {
75636
 
75637
  "use strict";
75638
  Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
75639
- /* WEBPACK VAR INJECTION */(function(global) {/**
75640
- * A collection of shims that provide minimal functionality of the ES6 collections.
75641
- *
75642
- * These implementations are not meant to be used outside of the ResizeObserver
75643
- * modules as they cover only a limited range of use cases.
75644
- */
75645
- /* eslint-disable require-jsdoc, valid-jsdoc */
75646
- var MapShim = (function () {
75647
- if (typeof Map !== 'undefined') {
75648
- return Map;
75649
- }
75650
- /**
75651
- * Returns index in provided array that matches the specified key.
75652
- *
75653
- * @param {Array<Array>} arr
75654
- * @param {*} key
75655
- * @returns {number}
75656
- */
75657
- function getIndex(arr, key) {
75658
- var result = -1;
75659
- arr.some(function (entry, index) {
75660
- if (entry[0] === key) {
75661
- result = index;
75662
- return true;
75663
- }
75664
- return false;
75665
- });
75666
- return result;
75667
- }
75668
- return /** @class */ (function () {
75669
- function class_1() {
75670
- this.__entries__ = [];
75671
- }
75672
- Object.defineProperty(class_1.prototype, "size", {
75673
- /**
75674
- * @returns {boolean}
75675
- */
75676
- get: function () {
75677
- return this.__entries__.length;
75678
- },
75679
- enumerable: true,
75680
- configurable: true
75681
- });
75682
- /**
75683
- * @param {*} key
75684
- * @returns {*}
75685
- */
75686
- class_1.prototype.get = function (key) {
75687
- var index = getIndex(this.__entries__, key);
75688
- var entry = this.__entries__[index];
75689
- return entry && entry[1];
75690
- };
75691
- /**
75692
- * @param {*} key
75693
- * @param {*} value
75694
- * @returns {void}
75695
- */
75696
- class_1.prototype.set = function (key, value) {
75697
- var index = getIndex(this.__entries__, key);
75698
- if (~index) {
75699
- this.__entries__[index][1] = value;
75700
- }
75701
- else {
75702
- this.__entries__.push([key, value]);
75703
- }
75704
- };
75705
- /**
75706
- * @param {*} key
75707
- * @returns {void}
75708
- */
75709
- class_1.prototype.delete = function (key) {
75710
- var entries = this.__entries__;
75711
- var index = getIndex(entries, key);
75712
- if (~index) {
75713
- entries.splice(index, 1);
75714
- }
75715
- };
75716
- /**
75717
- * @param {*} key
75718
- * @returns {void}
75719
- */
75720
- class_1.prototype.has = function (key) {
75721
- return !!~getIndex(this.__entries__, key);
75722
- };
75723
- /**
75724
- * @returns {void}
75725
- */
75726
- class_1.prototype.clear = function () {
75727
- this.__entries__.splice(0);
75728
- };
75729
- /**
75730
- * @param {Function} callback
75731
- * @param {*} [ctx=null]
75732
- * @returns {void}
75733
- */
75734
- class_1.prototype.forEach = function (callback, ctx) {
75735
- if (ctx === void 0) { ctx = null; }
75736
- for (var _i = 0, _a = this.__entries__; _i < _a.length; _i++) {
75737
- var entry = _a[_i];
75738
- callback.call(ctx, entry[1], entry[0]);
75739
- }
75740
- };
75741
- return class_1;
75742
- }());
75743
  })();
75744
 
75745
- /**
75746
- * Detects whether window and document objects are available in current environment.
75747
- */
75748
  var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && window.document === document;
75749
 
75750
- // Returns global object of a current environment.
75751
- var global$1 = (function () {
75752
- if (typeof global !== 'undefined' && global.Math === Math) {
75753
- return global;
75754
- }
75755
- if (typeof self !== 'undefined' && self.Math === Math) {
75756
- return self;
75757
- }
75758
- if (typeof window !== 'undefined' && window.Math === Math) {
75759
- return window;
75760
- }
75761
- // eslint-disable-next-line no-new-func
75762
- return Function('return this')();
75763
  })();
75764
 
75765
- /**
75766
- * A shim for the requestAnimationFrame which falls back to the setTimeout if
75767
- * first one is not supported.
75768
- *
75769
- * @returns {number} Requests' identifier.
75770
- */
75771
- var requestAnimationFrame$1 = (function () {
75772
- if (typeof requestAnimationFrame === 'function') {
75773
- // It's required to use a bounded function because IE sometimes throws
75774
- // an "Invalid calling object" error if rAF is invoked without the global
75775
- // object on the left hand side.
75776
- return requestAnimationFrame.bind(global$1);
75777
- }
75778
- return function (callback) { return setTimeout(function () { return callback(Date.now()); }, 1000 / 60); };
75779
  })();
75780
 
75781
- // Defines minimum timeout before adding a trailing call.
75782
- var trailingTimeout = 2;
75783
- /**
75784
- * Creates a wrapper function which ensures that provided callback will be
75785
- * invoked only once during the specified delay period.
75786
- *
75787
- * @param {Function} callback - Function to be invoked after the delay period.
75788
- * @param {number} delay - Delay after which to invoke callback.
75789
- * @returns {Function}
75790
- */
75791
- function throttle (callback, delay) {
75792
- var leadingCall = false, trailingCall = false, lastCallTime = 0;
75793
- /**
75794
- * Invokes the original callback function and schedules new invocation if
75795
- * the "proxy" was called during current request.
75796
- *
75797
- * @returns {void}
75798
- */
75799
- function resolvePending() {
75800
- if (leadingCall) {
75801
- leadingCall = false;
75802
- callback();
75803
- }
75804
- if (trailingCall) {
75805
- proxy();
75806
- }
75807
- }
75808
- /**
75809
- * Callback invoked after the specified delay. It will further postpone
75810
- * invocation of the original function delegating it to the
75811
- * requestAnimationFrame.
75812
- *
75813
- * @returns {void}
75814
- */
75815
- function timeoutCallback() {
75816
- requestAnimationFrame$1(resolvePending);
75817
- }
75818
- /**
75819
- * Schedules invocation of the original function.
75820
- *
75821
- * @returns {void}
75822
- */
75823
- function proxy() {
75824
- var timeStamp = Date.now();
75825
- if (leadingCall) {
75826
- // Reject immediately following calls.
75827
- if (timeStamp - lastCallTime < trailingTimeout) {
75828
- return;
75829
- }
75830
- // Schedule new call to be in invoked when the pending one is resolved.
75831
- // This is important for "transitions" which never actually start
75832
- // immediately so there is a chance that we might miss one if change
75833
- // happens amids the pending invocation.
75834
- trailingCall = true;
75835
- }
75836
- else {
75837
- leadingCall = true;
75838
- trailingCall = false;
75839
- setTimeout(timeoutCallback, delay);
75840
- }
75841
- lastCallTime = timeStamp;
75842
- }
75843
- return proxy;
75844
- }
75845
-
75846
- // Minimum delay before invoking the update of observers.
75847
- var REFRESH_DELAY = 20;
75848
- // A list of substrings of CSS properties used to find transition events that
75849
- // might affect dimensions of observed elements.
75850
- var transitionKeys = ['top', 'right', 'bottom', 'left', 'width', 'height', 'size', 'weight'];
75851
- // Check if MutationObserver is available.
75852
- var mutationObserverSupported = typeof MutationObserver !== 'undefined';
75853
- /**
75854
- * Singleton controller class which handles updates of ResizeObserver instances.
75855
- */
75856
- var ResizeObserverController = /** @class */ (function () {
75857
- /**
75858
- * Creates a new instance of ResizeObserverController.
75859
- *
75860
- * @private
75861
- */
75862
- function ResizeObserverController() {
75863
- /**
75864
- * Indicates whether DOM listeners have been added.
75865
- *
75866
- * @private {boolean}
75867
- */
75868
- this.connected_ = false;
75869
- /**
75870
- * Tells that controller has subscribed for Mutation Events.
75871
- *
75872
- * @private {boolean}
75873
- */
75874
- this.mutationEventsAdded_ = false;
75875
- /**
75876
- * Keeps reference to the instance of MutationObserver.
75877
- *
75878
- * @private {MutationObserver}
75879
- */
75880
- this.mutationsObserver_ = null;
75881
- /**
75882
- * A list of connected observers.
75883
- *
75884
- * @private {Array<ResizeObserverSPI>}
75885
- */
75886
- this.observers_ = [];
75887
- this.onTransitionEnd_ = this.onTransitionEnd_.bind(this);
75888
- this.refresh = throttle(this.refresh.bind(this), REFRESH_DELAY);
75889
- }
75890
- /**
75891
- * Adds observer to observers list.
75892
- *
75893
- * @param {ResizeObserverSPI} observer - Observer to be added.
75894
- * @returns {void}
75895
- */
75896
- ResizeObserverController.prototype.addObserver = function (observer) {
75897
- if (!~this.observers_.indexOf(observer)) {
75898
- this.observers_.push(observer);
75899
- }
75900
- // Add listeners if they haven't been added yet.
75901
- if (!this.connected_) {
75902
- this.connect_();
75903
- }
75904
- };
75905
- /**
75906
- * Removes observer from observers list.
75907
- *
75908
- * @param {ResizeObserverSPI} observer - Observer to be removed.
75909
- * @returns {void}
75910
- */
75911
- ResizeObserverController.prototype.removeObserver = function (observer) {
75912
- var observers = this.observers_;
75913
- var index = observers.indexOf(observer);
75914
- // Remove observer if it's present in registry.
75915
- if (~index) {
75916
- observers.splice(index, 1);
75917
- }
75918
- // Remove listeners if controller has no connected observers.
75919
- if (!observers.length && this.connected_) {
75920
- this.disconnect_();
75921
- }
75922
- };
75923
- /**
75924
- * Invokes the update of observers. It will continue running updates insofar
75925
- * it detects changes.
75926
- *
75927
- * @returns {void}
75928
- */
75929
- ResizeObserverController.prototype.refresh = function () {
75930
- var changesDetected = this.updateObservers_();
75931
- // Continue running updates if changes have been detected as there might
75932
- // be future ones caused by CSS transitions.
75933
- if (changesDetected) {
75934
- this.refresh();
75935
- }
75936
- };
75937
- /**
75938
- * Updates every observer from observers list and notifies them of queued
75939
- * entries.
75940
- *
75941
- * @private
75942
- * @returns {boolean} Returns "true" if any observer has detected changes in
75943
- * dimensions of it's elements.
75944
- */
75945
- ResizeObserverController.prototype.updateObservers_ = function () {
75946
- // Collect observers that have active observations.
75947
- var activeObservers = this.observers_.filter(function (observer) {
75948
- return observer.gatherActive(), observer.hasActive();
75949
- });
75950
- // Deliver notifications in a separate cycle in order to avoid any
75951
- // collisions between observers, e.g. when multiple instances of
75952
- // ResizeObserver are tracking the same element and the callback of one
75953
- // of them changes content dimensions of the observed target. Sometimes
75954
- // this may result in notifications being blocked for the rest of observers.
75955
- activeObservers.forEach(function (observer) { return observer.broadcastActive(); });
75956
- return activeObservers.length > 0;
75957
- };
75958
- /**
75959
- * Initializes DOM listeners.
75960
- *
75961
- * @private
75962
- * @returns {void}
75963
- */
75964
- ResizeObserverController.prototype.connect_ = function () {
75965
- // Do nothing if running in a non-browser environment or if listeners
75966
- // have been already added.
75967
- if (!isBrowser || this.connected_) {
75968
- return;
75969
- }
75970
- // Subscription to the "Transitionend" event is used as a workaround for
75971
- // delayed transitions. This way it's possible to capture at least the
75972
- // final state of an element.
75973
- document.addEventListener('transitionend', this.onTransitionEnd_);
75974
- window.addEventListener('resize', this.refresh);
75975
- if (mutationObserverSupported) {
75976
- this.mutationsObserver_ = new MutationObserver(this.refresh);
75977
- this.mutationsObserver_.observe(document, {
75978
- attributes: true,
75979
- childList: true,
75980
- characterData: true,
75981
- subtree: true
75982
- });
75983
- }
75984
- else {
75985
- document.addEventListener('DOMSubtreeModified', this.refresh);
75986
- this.mutationEventsAdded_ = true;
75987
- }
75988
- this.connected_ = true;
75989
- };
75990
- /**
75991
- * Removes DOM listeners.
75992
- *
75993
- * @private
75994
- * @returns {void}
75995
- */
75996
- ResizeObserverController.prototype.disconnect_ = function () {
75997
- // Do nothing if running in a non-browser environment or if listeners
75998
- // have been already removed.
75999
- if (!isBrowser || !this.connected_) {
76000
- return;
76001
- }
76002
- document.removeEventListener('transitionend', this.onTransitionEnd_);
76003
- window.removeEventListener('resize', this.refresh);
76004
- if (this.mutationsObserver_) {
76005
- this.mutationsObserver_.disconnect();
76006
- }
76007
- if (this.mutationEventsAdded_) {
76008
- document.removeEventListener('DOMSubtreeModified', this.refresh);
76009
- }
76010
- this.mutationsObserver_ = null;
76011
- this.mutationEventsAdded_ = false;
76012
- this.connected_ = false;
76013
- };
76014
- /**
76015
- * "Transitionend" event handler.
76016
- *
76017
- * @private
76018
- * @param {TransitionEvent} event
76019
- * @returns {void}
76020
- */
76021
- ResizeObserverController.prototype.onTransitionEnd_ = function (_a) {
76022
- var _b = _a.propertyName, propertyName = _b === void 0 ? '' : _b;
76023
- // Detect whether transition may affect dimensions of an element.
76024
- var isReflowProperty = transitionKeys.some(function (key) {
76025
- return !!~propertyName.indexOf(key);
76026
- });
76027
- if (isReflowProperty) {
76028
- this.refresh();
76029
- }
76030
- };
76031
- /**
76032
- * Returns instance of the ResizeObserverController.
76033
- *
76034
- * @returns {ResizeObserverController}
76035
- */
76036
- ResizeObserverController.getInstance = function () {
76037
- if (!this.instance_) {
76038
- this.instance_ = new ResizeObserverController();
76039
- }
76040
- return this.instance_;
76041
- };
76042
- /**
76043
- * Holds reference to the controller's instance.
76044
- *
76045
- * @private {ResizeObserverController}
76046
- */
76047
- ResizeObserverController.instance_ = null;
76048
- return ResizeObserverController;
76049
  }());
76050
 
76051
- /**
76052
- * Defines non-writable/enumerable properties of the provided target object.
76053
- *
76054
- * @param {Object} target - Object for which to define properties.
76055
- * @param {Object} props - Properties to be defined.
76056
- * @returns {Object} Target object.
76057
- */
76058
- var defineConfigurable = (function (target, props) {
76059
- for (var _i = 0, _a = Object.keys(props); _i < _a.length; _i++) {
76060
- var key = _a[_i];
76061
- Object.defineProperty(target, key, {
76062
- value: props[key],
76063
- enumerable: false,
76064
- writable: false,
76065
- configurable: true
76066
- });
76067
- }
76068
- return target;
76069
  });
76070
 
76071
- /**
76072
- * Returns the global object associated with provided element.
76073
- *
76074
- * @param {Object} target
76075
- * @returns {Object}
76076
- */
76077
- var getWindowOf = (function (target) {
76078
- // Assume that the element is an instance of Node, which means that it
76079
- // has the "ownerDocument" property from which we can retrieve a
76080
- // corresponding global object.
76081
- var ownerGlobal = target && target.ownerDocument && target.ownerDocument.defaultView;
76082
- // Return the local global object if it's not possible extract one from
76083
- // provided element.
76084
- return ownerGlobal || global$1;
76085
  });
76086
 
76087
- // Placeholder of an empty content rectangle.
76088
- var emptyRect = createRectInit(0, 0, 0, 0);
76089
- /**
76090
- * Converts provided string to a number.
76091
- *
76092
- * @param {number|string} value
76093
- * @returns {number}
76094
- */
76095
- function toFloat(value) {
76096
- return parseFloat(value) || 0;
76097
- }
76098
- /**
76099
- * Extracts borders size from provided styles.
76100
- *
76101
- * @param {CSSStyleDeclaration} styles
76102
- * @param {...string} positions - Borders positions (top, right, ...)
76103
- * @returns {number}
76104
- */
76105
- function getBordersSize(styles) {
76106
- var positions = [];
76107
- for (var _i = 1; _i < arguments.length; _i++) {
76108
- positions[_i - 1] = arguments[_i];
76109
- }
76110
- return positions.reduce(function (size, position) {
76111
- var value = styles['border-' + position + '-width'];
76112
- return size + toFloat(value);
76113
- }, 0);
76114
- }
76115
- /**
76116
- * Extracts paddings sizes from provided styles.
76117
- *
76118
- * @param {CSSStyleDeclaration} styles
76119
- * @returns {Object} Paddings box.
76120
- */
76121
- function getPaddings(styles) {
76122
- var positions = ['top', 'right', 'bottom', 'left'];
76123
- var paddings = {};
76124
- for (var _i = 0, positions_1 = positions; _i < positions_1.length; _i++) {
76125
- var position = positions_1[_i];
76126
- var value = styles['padding-' + position];
76127
- paddings[position] = toFloat(value);
76128
- }
76129
- return paddings;
76130
- }
76131
- /**
76132
- * Calculates content rectangle of provided SVG element.
76133
- *
76134
- * @param {SVGGraphicsElement} target - Element content rectangle of which needs
76135
- * to be calculated.
76136
- * @returns {DOMRectInit}
76137
- */
76138
- function getSVGContentRect(target) {
76139
- var bbox = target.getBBox();
76140
- return createRectInit(0, 0, bbox.width, bbox.height);
76141
- }
76142
- /**
76143
- * Calculates content rectangle of provided HTMLElement.
76144
- *
76145
- * @param {HTMLElement} target - Element for which to calculate the content rectangle.
76146
- * @returns {DOMRectInit}
76147
- */
76148
- function getHTMLElementContentRect(target) {
76149
- // Client width & height properties can't be
76150
- // used exclusively as they provide rounded values.
76151
- var clientWidth = target.clientWidth, clientHeight = target.clientHeight;
76152
- // By this condition we can catch all non-replaced inline, hidden and
76153
- // detached elements. Though elements with width & height properties less
76154
- // than 0.5 will be discarded as well.
76155
- //
76156
- // Without it we would need to implement separate methods for each of
76157
- // those cases and it's not possible to perform a precise and performance
76158
- // effective test for hidden elements. E.g. even jQuery's ':visible' filter
76159
- // gives wrong results for elements with width & height less than 0.5.
76160
- if (!clientWidth && !clientHeight) {
76161
- return emptyRect;
76162
- }
76163
- var styles = getWindowOf(target).getComputedStyle(target);
76164
- var paddings = getPaddings(styles);
76165
- var horizPad = paddings.left + paddings.right;
76166
- var vertPad = paddings.top + paddings.bottom;
76167
- // Computed styles of width & height are being used because they are the
76168
- // only dimensions available to JS that contain non-rounded values. It could
76169
- // be possible to utilize the getBoundingClientRect if only it's data wasn't
76170
- // affected by CSS transformations let alone paddings, borders and scroll bars.
76171
- var width = toFloat(styles.width), height = toFloat(styles.height);
76172
- // Width & height include paddings and borders when the 'border-box' box
76173
- // model is applied (except for IE).
76174
- if (styles.boxSizing === 'border-box') {
76175
- // Following conditions are required to handle Internet Explorer which
76176
- // doesn't include paddings and borders to computed CSS dimensions.
76177
- //
76178
- // We can say that if CSS dimensions + paddings are equal to the "client"
76179
- // properties then it's either IE, and thus we don't need to subtract
76180
- // anything, or an element merely doesn't have paddings/borders styles.
76181
- if (Math.round(width + horizPad) !== clientWidth) {
76182
- width -= getBordersSize(styles, 'left', 'right') + horizPad;
76183
- }
76184
- if (Math.round(height + vertPad) !== clientHeight) {
76185
- height -= getBordersSize(styles, 'top', 'bottom') + vertPad;
76186
- }
76187
- }
76188
- // Following steps can't be applied to the document's root element as its
76189
- // client[Width/Height] properties represent viewport area of the window.
76190
- // Besides, it's as well not necessary as the <html> itself neither has
76191
- // rendered scroll bars nor it can be clipped.
76192
- if (!isDocumentElement(target)) {
76193
- // In some browsers (only in Firefox, actually) CSS width & height
76194
- // include scroll bars size which can be removed at this step as scroll
76195
- // bars are the only difference between rounded dimensions + paddings
76196
- // and "client" properties, though that is not always true in Chrome.
76197
- var vertScrollbar = Math.round(width + horizPad) - clientWidth;
76198
- var horizScrollbar = Math.round(height + vertPad) - clientHeight;
76199
- // Chrome has a rather weird rounding of "client" properties.
76200
- // E.g. for an element with content width of 314.2px it sometimes gives
76201
- // the client width of 315px and for the width of 314.7px it may give
76202
- // 314px. And it doesn't happen all the time. So just ignore this delta
76203
- // as a non-relevant.
76204
- if (Math.abs(vertScrollbar) !== 1) {
76205
- width -= vertScrollbar;
76206
- }
76207
- if (Math.abs(horizScrollbar) !== 1) {
76208
- height -= horizScrollbar;
76209
- }
76210
- }
76211
- return createRectInit(paddings.left, paddings.top, width, height);
76212
- }
76213
- /**
76214
- * Checks whether provided element is an instance of the SVGGraphicsElement.
76215
- *
76216
- * @param {Element} target - Element to be checked.
76217
- * @returns {boolean}
76218
- */
76219
- var isSVGGraphicsElement = (function () {
76220
- // Some browsers, namely IE and Edge, don't have the SVGGraphicsElement
76221
- // interface.
76222
- if (typeof SVGGraphicsElement !== 'undefined') {
76223
- return function (target) { return target instanceof getWindowOf(target).SVGGraphicsElement; };
76224
- }
76225
- // If it's so, then check that element is at least an instance of the
76226
- // SVGElement and that it has the "getBBox" method.
76227
- // eslint-disable-next-line no-extra-parens
76228
- return function (target) { return (target instanceof getWindowOf(target).SVGElement &&
76229
- typeof target.getBBox === 'function'); };
76230
- })();
76231
- /**
76232
- * Checks whether provided element is a document element (<html>).
76233
- *
76234
- * @param {Element} target - Element to be checked.
76235
- * @returns {boolean}
76236
- */
76237
- function isDocumentElement(target) {
76238
- return target === getWindowOf(target).document.documentElement;
76239
- }
76240
- /**
76241
- * Calculates an appropriate content rectangle for provided html or svg element.
76242
- *
76243
- * @param {Element} target - Element content rectangle of which needs to be calculated.
76244
- * @returns {DOMRectInit}
76245
- */
76246
- function getContentRect(target) {
76247
- if (!isBrowser) {
76248
- return emptyRect;
76249
- }
76250
- if (isSVGGraphicsElement(target)) {
76251
- return getSVGContentRect(target);
76252
- }
76253
- return getHTMLElementContentRect(target);
76254
- }
76255
- /**
76256
- * Creates rectangle with an interface of the DOMRectReadOnly.
76257
- * Spec: https://drafts.fxtf.org/geometry/#domrectreadonly
76258
- *
76259
- * @param {DOMRectInit} rectInit - Object with rectangle's x/y coordinates and dimensions.
76260
- * @returns {DOMRectReadOnly}
76261
- */
76262
- function createReadOnlyRect(_a) {
76263
- var x = _a.x, y = _a.y, width = _a.width, height = _a.height;
76264
- // If DOMRectReadOnly is available use it as a prototype for the rectangle.
76265
- var Constr = typeof DOMRectReadOnly !== 'undefined' ? DOMRectReadOnly : Object;
76266
- var rect = Object.create(Constr.prototype);
76267
- // Rectangle's properties are not writable and non-enumerable.
76268
- defineConfigurable(rect, {
76269
- x: x, y: y, width: width, height: height,
76270
- top: y,
76271
- right: x + width,
76272
- bottom: height + y,
76273
- left: x
76274
- });
76275
- return rect;
76276
- }
76277
- /**
76278
- * Creates DOMRectInit object based on the provided dimensions and the x/y coordinates.
76279
- * Spec: https://drafts.fxtf.org/geometry/#dictdef-domrectinit
76280
- *
76281
- * @param {number} x - X coordinate.
76282
- * @param {number} y - Y coordinate.
76283
- * @param {number} width - Rectangle's width.
76284
- * @param {number} height - Rectangle's height.
76285
- * @returns {DOMRectInit}
76286
- */
76287
- function createRectInit(x, y, width, height) {
76288
- return { x: x, y: y, width: width, height: height };
76289
- }
76290
-
76291
- /**
76292
- * Class that is responsible for computations of the content rectangle of
76293
- * provided DOM element and for keeping track of it's changes.
76294
- */
76295
- var ResizeObservation = /** @class */ (function () {
76296
- /**
76297
- * Creates an instance of ResizeObservation.
76298
- *
76299
- * @param {Element} target - Element to be observed.
76300
- */
76301
- function ResizeObservation(target) {
76302
- /**
76303
- * Broadcasted width of content rectangle.
76304
- *
76305
- * @type {number}
76306
- */
76307
- this.broadcastWidth = 0;
76308
- /**
76309
- * Broadcasted height of content rectangle.
76310
- *
76311
- * @type {number}
76312
- */
76313
- this.broadcastHeight = 0;
76314
- /**
76315
- * Reference to the last observed content rectangle.
76316
- *
76317
- * @private {DOMRectInit}
76318
- */
76319
- this.contentRect_ = createRectInit(0, 0, 0, 0);
76320
- this.target = target;
76321
- }
76322
- /**
76323
- * Updates content rectangle and tells whether it's width or height properties
76324
- * have changed since the last broadcast.
76325
- *
76326
- * @returns {boolean}
76327
- */
76328
- ResizeObservation.prototype.isActive = function () {
76329
- var rect = getContentRect(this.target);
76330
- this.contentRect_ = rect;
76331
- return (rect.width !== this.broadcastWidth ||
76332
- rect.height !== this.broadcastHeight);
76333
- };
76334
- /**
76335
- * Updates 'broadcastWidth' and 'broadcastHeight' properties with a data
76336
- * from the corresponding properties of the last observed content rectangle.
76337
- *
76338
- * @returns {DOMRectInit} Last observed content rectangle.
76339
- */
76340
- ResizeObservation.prototype.broadcastRect = function () {
76341
- var rect = this.contentRect_;
76342
- this.broadcastWidth = rect.width;
76343
- this.broadcastHeight = rect.height;
76344
- return rect;
76345
- };
76346
- return ResizeObservation;
76347
  }());
76348
 
76349
- var ResizeObserverEntry = /** @class */ (function () {
76350
- /**
76351
- * Creates an instance of ResizeObserverEntry.
76352
- *
76353
- * @param {Element} target - Element that is being observed.
76354
- * @param {DOMRectInit} rectInit - Data of the element's content rectangle.
76355
- */
76356
- function ResizeObserverEntry(target, rectInit) {
76357
- var contentRect = createReadOnlyRect(rectInit);
76358
- // According to the specification following properties are not writable
76359
- // and are also not enumerable in the native implementation.
76360
- //
76361
- // Property accessors are not being used as they'd require to define a
76362
- // private WeakMap storage which may cause memory leaks in browsers that
76363
- // don't support this type of collections.
76364
- defineConfigurable(this, { target: target, contentRect: contentRect });
76365
- }
76366
- return ResizeObserverEntry;
76367
  }());
76368
 
76369
- var ResizeObserverSPI = /** @class */ (function () {
76370
- /**
76371
- * Creates a new instance of ResizeObserver.
76372
- *
76373
- * @param {ResizeObserverCallback} callback - Callback function that is invoked
76374
- * when one of the observed elements changes it's content dimensions.
76375
- * @param {ResizeObserverController} controller - Controller instance which
76376
- * is responsible for the updates of observer.
76377
- * @param {ResizeObserver} callbackCtx - Reference to the public
76378
- * ResizeObserver instance which will be passed to callback function.
76379
- */
76380
- function ResizeObserverSPI(callback, controller, callbackCtx) {
76381
- /**
76382
- * Collection of resize observations that have detected changes in dimensions
76383
- * of elements.
76384
- *
76385
- * @private {Array<ResizeObservation>}
76386
- */
76387
- this.activeObservations_ = [];
76388
- /**
76389
- * Registry of the ResizeObservation instances.
76390
- *
76391
- * @private {Map<Element, ResizeObservation>}
76392
- */
76393
- this.observations_ = new MapShim();
76394
- if (typeof callback !== 'function') {
76395
- throw new TypeError('The callback provided as parameter 1 is not a function.');
76396
- }
76397
- this.callback_ = callback;
76398
- this.controller_ = controller;
76399
- this.callbackCtx_ = callbackCtx;
76400
- }
76401
- /**
76402
- * Starts observing provided element.
76403
- *
76404
- * @param {Element} target - Element to be observed.
76405
- * @returns {void}
76406
- */
76407
- ResizeObserverSPI.prototype.observe = function (target) {
76408
- if (!arguments.length) {
76409
- throw new TypeError('1 argument required, but only 0 present.');
76410
- }
76411
- // Do nothing if current environment doesn't have the Element interface.
76412
- if (typeof Element === 'undefined' || !(Element instanceof Object)) {
76413
- return;
76414
- }
76415
- if (!(target instanceof getWindowOf(target).Element)) {
76416
- throw new TypeError('parameter 1 is not of type "Element".');
76417
- }
76418
- var observations = this.observations_;
76419
- // Do nothing if element is already being observed.
76420
- if (observations.has(target)) {
76421
- return;
76422
- }
76423
- observations.set(target, new ResizeObservation(target));
76424
- this.controller_.addObserver(this);
76425
- // Force the update of observations.
76426
- this.controller_.refresh();
76427
- };
76428
- /**
76429
- * Stops observing provided element.
76430
- *
76431
- * @param {Element} target - Element to stop observing.
76432
- * @returns {void}
76433
- */
76434
- ResizeObserverSPI.prototype.unobserve = function (target) {
76435
- if (!arguments.length) {
76436
- throw new TypeError('1 argument required, but only 0 present.');
76437
- }
76438
- // Do nothing if current environment doesn't have the Element interface.
76439
- if (typeof Element === 'undefined' || !(Element instanceof Object)) {
76440
- return;
76441
- }
76442
- if (!(target instanceof getWindowOf(target).Element)) {
76443
- throw new TypeError('parameter 1 is not of type "Element".');
76444
- }
76445
- var observations = this.observations_;
76446
- // Do nothing if element is not being observed.
76447
- if (!observations.has(target)) {
76448
- return;
76449
- }
76450
- observations.delete(target);
76451
- if (!observations.size) {
76452
- this.controller_.removeObserver(this);
76453
- }
76454
- };
76455
- /**
76456
- * Stops observing all elements.
76457
- *
76458
- * @returns {void}
76459
- */
76460
- ResizeObserverSPI.prototype.disconnect = function () {
76461
- this.clearActive();
76462
- this.observations_.clear();
76463
- this.controller_.removeObserver(this);
76464
- };
76465
- /**
76466
- * Collects observation instances the associated element of which has changed
76467
- * it's content rectangle.
76468
- *
76469
- * @returns {void}
76470
- */
76471
- ResizeObserverSPI.prototype.gatherActive = function () {
76472
- var _this = this;
76473
- this.clearActive();
76474
- this.observations_.forEach(function (observation) {
76475
- if (observation.isActive()) {
76476
- _this.activeObservations_.push(observation);
76477
- }
76478
- });
76479
- };
76480
- /**
76481
- * Invokes initial callback function with a list of ResizeObserverEntry
76482
- * instances collected from active resize observations.
76483
- *
76484
- * @returns {void}
76485
- */
76486
- ResizeObserverSPI.prototype.broadcastActive = function () {
76487
- // Do nothing if observer doesn't have active observations.
76488
- if (!this.hasActive()) {
76489
- return;
76490
- }
76491
- var ctx = this.callbackCtx_;
76492
- // Create ResizeObserverEntry instance for every active observation.
76493
- var entries = this.activeObservations_.map(function (observation) {
76494
- return new ResizeObserverEntry(observation.target, observation.broadcastRect());
76495
- });
76496
- this.callback_.call(ctx, entries, ctx);
76497
- this.clearActive();
76498
- };
76499
- /**
76500
- * Clears the collection of active observations.
76501
- *
76502
- * @returns {void}
76503
- */
76504
- ResizeObserverSPI.prototype.clearActive = function () {
76505
- this.activeObservations_.splice(0);
76506
- };
76507
- /**
76508
- * Tells whether observer has active observations.
76509
- *
76510
- * @returns {boolean}
76511
- */
76512
- ResizeObserverSPI.prototype.hasActive = function () {
76513
- return this.activeObservations_.length > 0;
76514
- };
76515
- return ResizeObserverSPI;
76516
  }());
76517
 
76518
- // Registry of internal observers. If WeakMap is not available use current shim
76519
- // for the Map collection as it has all required methods and because WeakMap
76520
- // can't be fully polyfilled anyway.
76521
- var observers = typeof WeakMap !== 'undefined' ? new WeakMap() : new MapShim();
76522
- /**
76523
- * ResizeObserver API. Encapsulates the ResizeObserver SPI implementation
76524
- * exposing only those methods and properties that are defined in the spec.
76525
- */
76526
- var ResizeObserver = /** @class */ (function () {
76527
- /**
76528
- * Creates a new instance of ResizeObserver.
76529
- *
76530
- * @param {ResizeObserverCallback} callback - Callback that is invoked when
76531
- * dimensions of the observed elements change.
76532
- */
76533
- function ResizeObserver(callback) {
76534
- if (!(this instanceof ResizeObserver)) {
76535
- throw new TypeError('Cannot call a class as a function.');
76536
- }
76537
- if (!arguments.length) {
76538
- throw new TypeError('1 argument required, but only 0 present.');
76539
- }
76540
- var controller = ResizeObserverController.getInstance();
76541
- var observer = new ResizeObserverSPI(callback, controller, this);
76542
- observers.set(this, observer);
76543
- }
76544
- return ResizeObserver;
76545
- }());
76546
- // Expose public methods of ResizeObserver.
76547
- [
76548
- 'observe',
76549
- 'unobserve',
76550
- 'disconnect'
76551
- ].forEach(function (method) {
76552
- ResizeObserver.prototype[method] = function () {
76553
- var _a;
76554
- return (_a = observers.get(this))[method].apply(_a, arguments);
76555
- };
76556
  });
76557
 
76558
- var index = (function () {
76559
- // Export existing implementation if available.
76560
- if (typeof global$1.ResizeObserver !== 'undefined') {
76561
- return global$1.ResizeObserver;
76562
- }
76563
- return ResizeObserver;
76564
  })();
76565
 
76566
  /* harmony default export */ __webpack_exports__["default"] = (index);
76567
 
76568
- /* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../webpack/buildin/global.js */ 52)))
76569
 
76570
  /***/ }),
76571
- /* 381 */
76572
  /*!***************************************!*\
76573
  !*** ./node_modules/json2mq/index.js ***!
76574
  \***************************************/
@@ -76576,7 +76899,7 @@ var index = (function () {
76576
  /*! all exports used */
76577
  /***/ (function(module, exports, __webpack_require__) {
76578
 
76579
- var camel2hyphen = __webpack_require__(/*! string-convert/camel2hyphen */ 382);
76580
 
76581
  var isDimension = function (feature) {
76582
  var re = /[height|width]$/;
@@ -76629,7 +76952,7 @@ var json2mq = function (query) {
76629
  module.exports = json2mq;
76630
 
76631
  /***/ }),
76632
- /* 382 */
76633
  /*!*****************************************************!*\
76634
  !*** ./node_modules/string-convert/camel2hyphen.js ***!
76635
  \*****************************************************/
@@ -76648,7 +76971,7 @@ var camel2hyphen = function (str) {
76648
  module.exports = camel2hyphen;
76649
 
76650
  /***/ }),
76651
- /* 383 */
76652
  /*!*******************************************************!*\
76653
  !*** ./node_modules/react-slick/lib/default-props.js ***!
76654
  \*******************************************************/
@@ -76735,7 +77058,7 @@ var defaultProps = {
76735
  exports.default = defaultProps;
76736
 
76737
  /***/ }),
76738
- /* 384 */
76739
  /*!**********************************************!*\
76740
  !*** ./node_modules/enquire.js/src/index.js ***!
76741
  \**********************************************/
@@ -76743,12 +77066,12 @@ exports.default = defaultProps;
76743
  /*! all exports used */
76744
  /***/ (function(module, exports, __webpack_require__) {
76745
 
76746
- var MediaQueryDispatch = __webpack_require__(/*! ./MediaQueryDispatch */ 385);
76747
  module.exports = new MediaQueryDispatch();
76748
 
76749
 
76750
  /***/ }),
76751
- /* 385 */
76752
  /*!***********************************************************!*\
76753
  !*** ./node_modules/enquire.js/src/MediaQueryDispatch.js ***!
76754
  \***********************************************************/
@@ -76756,7 +77079,7 @@ module.exports = new MediaQueryDispatch();
76756
  /*! all exports used */
76757
  /***/ (function(module, exports, __webpack_require__) {
76758
 
76759
- var MediaQuery = __webpack_require__(/*! ./MediaQuery */ 386);
76760
  var Util = __webpack_require__(/*! ./Util */ 153);
76761
  var each = Util.each;
76762
  var isFunction = Util.isFunction;
@@ -76844,7 +77167,7 @@ module.exports = MediaQueryDispatch;
76844
 
76845
 
76846
  /***/ }),
76847
- /* 386 */
76848
  /*!***************************************************!*\
76849
  !*** ./node_modules/enquire.js/src/MediaQuery.js ***!
76850
  \***************************************************/
@@ -76852,7 +77175,7 @@ module.exports = MediaQueryDispatch;
76852
  /*! all exports used */
76853
  /***/ (function(module, exports, __webpack_require__) {
76854
 
76855
- var QueryHandler = __webpack_require__(/*! ./QueryHandler */ 387);
76856
  var each = __webpack_require__(/*! ./Util */ 153).each;
76857
 
76858
  /**
@@ -76948,7 +77271,7 @@ module.exports = MediaQuery;
76948
 
76949
 
76950
  /***/ }),
76951
- /* 387 */
76952
  /*!*****************************************************!*\
76953
  !*** ./node_modules/enquire.js/src/QueryHandler.js ***!
76954
  \*****************************************************/
@@ -77033,7 +77356,7 @@ module.exports = QueryHandler;
77033
 
77034
 
77035
  /***/ }),
77036
- /* 388 */
77037
  /*!*************************************!*\
77038
  !*** ./src/blocks/section/block.js ***!
77039
  \*************************************/
@@ -77044,14 +77367,14 @@ module.exports = QueryHandler;
77044
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
77045
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
77046
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
77047
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */ 389);
77048
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
77049
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 390);
77050
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
77051
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 154);
77052
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__edit__ = __webpack_require__(/*! ./edit */ 391);
77053
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__save__ = __webpack_require__(/*! ./save */ 393);
77054
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__deprecated__ = __webpack_require__(/*! ./deprecated */ 394);
77055
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 155);
77056
  /**
77057
  * BLOCK: Section
@@ -77098,7 +77421,7 @@ registerBlockType("uagb/section", {
77098
  });
77099
 
77100
  /***/ }),
77101
- /* 389 */
77102
  /*!***************************************!*\
77103
  !*** ./src/blocks/section/style.scss ***!
77104
  \***************************************/
@@ -77108,7 +77431,7 @@ registerBlockType("uagb/section", {
77108
  // removed by extract-text-webpack-plugin
77109
 
77110
  /***/ }),
77111
- /* 390 */
77112
  /*!****************************************!*\
77113
  !*** ./src/blocks/section/editor.scss ***!
77114
  \****************************************/
@@ -77118,7 +77441,7 @@ registerBlockType("uagb/section", {
77118
  // removed by extract-text-webpack-plugin
77119
 
77120
  /***/ }),
77121
- /* 391 */
77122
  /*!************************************!*\
77123
  !*** ./src/blocks/section/edit.js ***!
77124
  \************************************/
@@ -77129,9 +77452,9 @@ registerBlockType("uagb/section", {
77129
  "use strict";
77130
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
77131
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
77132
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 392);
77133
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
77134
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 81);
77135
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */ 82);
77136
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
77137
 
@@ -78339,7 +78662,7 @@ var UAGBSectionEdit = function (_Component) {
78339
  /* harmony default export */ __webpack_exports__["a"] = (withNotices(UAGBSectionEdit));
78340
 
78341
  /***/ }),
78342
- /* 392 */
78343
  /*!***************************************!*\
78344
  !*** ./src/blocks/section/styling.js ***!
78345
  \***************************************/
@@ -78553,7 +78876,7 @@ function styling(props) {
78553
  /* harmony default export */ __webpack_exports__["a"] = (styling);
78554
 
78555
  /***/ }),
78556
- /* 393 */
78557
  /*!************************************!*\
78558
  !*** ./src/blocks/section/save.js ***!
78559
  \************************************/
@@ -78623,7 +78946,7 @@ function save(props) {
78623
  }
78624
 
78625
  /***/ }),
78626
- /* 394 */
78627
  /*!******************************************!*\
78628
  !*** ./src/blocks/section/deprecated.js ***!
78629
  \******************************************/
@@ -78743,7 +79066,7 @@ var deprecated = [{
78743
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
78744
 
78745
  /***/ }),
78746
- /* 395 */
78747
  /*!*************************************!*\
78748
  !*** ./src/blocks/buttons/block.js ***!
78749
  \*************************************/
@@ -78753,12 +79076,12 @@ var deprecated = [{
78753
  "use strict";
78754
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
78755
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 156);
78756
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 396);
78757
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 399);
78758
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 400);
78759
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 401);
78760
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
78761
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 402);
78762
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
78763
  /**
78764
  * BLOCK: Multi Buttons
@@ -78797,7 +79120,7 @@ registerBlockType("uagb/buttons", {
78797
  });
78798
 
78799
  /***/ }),
78800
- /* 396 */
78801
  /*!************************************!*\
78802
  !*** ./src/blocks/buttons/edit.js ***!
78803
  \************************************/
@@ -78810,7 +79133,7 @@ registerBlockType("uagb/buttons", {
78810
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
78811
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
78812
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
78813
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 398);
78814
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 28);
78815
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
78816
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
@@ -79033,7 +79356,7 @@ var UAGBMultiButtonEdit = function (_Component) {
79033
  /* harmony default export */ __webpack_exports__["a"] = (UAGBMultiButtonEdit);
79034
 
79035
  /***/ }),
79036
- /* 397 */
79037
  /*!**********************************************!*\
79038
  !*** ./node_modules/lodash/_castFunction.js ***!
79039
  \**********************************************/
@@ -79058,7 +79381,7 @@ module.exports = castFunction;
79058
 
79059
 
79060
  /***/ }),
79061
- /* 398 */
79062
  /*!***************************************!*\
79063
  !*** ./src/blocks/buttons/styling.js ***!
79064
  \***************************************/
@@ -79182,7 +79505,7 @@ function styling(props) {
79182
  /* harmony default export */ __webpack_exports__["a"] = (styling);
79183
 
79184
  /***/ }),
79185
- /* 399 */
79186
  /*!******************************************!*\
79187
  !*** ./src/blocks/buttons/deprecated.js ***!
79188
  \******************************************/
@@ -79360,7 +79683,7 @@ var deprecated = [{
79360
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
79361
 
79362
  /***/ }),
79363
- /* 400 */
79364
  /*!************************************!*\
79365
  !*** ./src/blocks/buttons/save.js ***!
79366
  \************************************/
@@ -79406,7 +79729,7 @@ function save(props) {
79406
  }
79407
 
79408
  /***/ }),
79409
- /* 401 */
79410
  /*!***************************************!*\
79411
  !*** ./src/blocks/buttons/style.scss ***!
79412
  \***************************************/
@@ -79416,7 +79739,7 @@ function save(props) {
79416
  // removed by extract-text-webpack-plugin
79417
 
79418
  /***/ }),
79419
- /* 402 */
79420
  /*!****************************************!*\
79421
  !*** ./src/blocks/buttons/editor.scss ***!
79422
  \****************************************/
@@ -79426,7 +79749,7 @@ function save(props) {
79426
  // removed by extract-text-webpack-plugin
79427
 
79428
  /***/ }),
79429
- /* 403 */
79430
  /*!*******************************************!*\
79431
  !*** ./src/blocks/buttons-child/block.js ***!
79432
  \*******************************************/
@@ -79436,10 +79759,10 @@ function save(props) {
79436
  "use strict";
79437
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
79438
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 157);
79439
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated__ = __webpack_require__(/*! ./deprecated */ 404);
79440
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 405);
79441
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 416);
79442
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 417);
79443
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
79444
  /**
79445
  * BLOCK: Buttons - Child
@@ -79468,7 +79791,7 @@ registerBlockType("uagb/buttons-child", {
79468
  });
79469
 
79470
  /***/ }),
79471
- /* 404 */
79472
  /*!************************************************!*\
79473
  !*** ./src/blocks/buttons-child/deprecated.js ***!
79474
  \************************************************/
@@ -79531,7 +79854,7 @@ var deprecated = [{
79531
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
79532
 
79533
  /***/ }),
79534
- /* 405 */
79535
  /*!******************************************!*\
79536
  !*** ./src/blocks/buttons-child/edit.js ***!
79537
  \******************************************/
@@ -79542,7 +79865,7 @@ var deprecated = [{
79542
  "use strict";
79543
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
79544
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
79545
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 406);
79546
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
79547
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
79548
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__);
@@ -80400,7 +80723,7 @@ var UAGBButtonsChild = function (_Component) {
80400
  /* harmony default export */ __webpack_exports__["a"] = (UAGBButtonsChild);
80401
 
80402
  /***/ }),
80403
- /* 406 */
80404
  /*!*********************************************!*\
80405
  !*** ./src/blocks/buttons-child/styling.js ***!
80406
  \*********************************************/
@@ -80533,7 +80856,7 @@ function styling(props) {
80533
  /* harmony default export */ __webpack_exports__["a"] = (styling);
80534
 
80535
  /***/ }),
80536
- /* 407 */
80537
  /*!******************************************************!*\
80538
  !*** ./node_modules/react-transition-group/index.js ***!
80539
  \******************************************************/
@@ -80544,9 +80867,9 @@ function styling(props) {
80544
  "use strict";
80545
 
80546
 
80547
- var _CSSTransition = _interopRequireDefault(__webpack_require__(/*! ./CSSTransition */ 408));
80548
 
80549
- var _ReplaceTransition = _interopRequireDefault(__webpack_require__(/*! ./ReplaceTransition */ 413));
80550
 
80551
  var _TransitionGroup = _interopRequireDefault(__webpack_require__(/*! ./TransitionGroup */ 161));
80552
 
@@ -80562,7 +80885,7 @@ module.exports = {
80562
  };
80563
 
80564
  /***/ }),
80565
- /* 408 */
80566
  /*!**************************************************************!*\
80567
  !*** ./node_modules/react-transition-group/CSSTransition.js ***!
80568
  \**************************************************************/
@@ -80578,9 +80901,9 @@ exports.default = void 0;
80578
 
80579
  var PropTypes = _interopRequireWildcard(__webpack_require__(/*! prop-types */ 15));
80580
 
80581
- var _addClass = _interopRequireDefault(__webpack_require__(/*! dom-helpers/class/addClass */ 409));
80582
 
80583
- var _removeClass = _interopRequireDefault(__webpack_require__(/*! dom-helpers/class/removeClass */ 412));
80584
 
80585
  var _react = _interopRequireDefault(__webpack_require__(/*! react */ 6));
80586
 
@@ -80938,7 +81261,7 @@ module.exports = exports["default"];
80938
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
80939
 
80940
  /***/ }),
80941
- /* 409 */
80942
  /*!****************************************************!*\
80943
  !*** ./node_modules/dom-helpers/class/addClass.js ***!
80944
  \****************************************************/
@@ -80949,12 +81272,12 @@ module.exports = exports["default"];
80949
  "use strict";
80950
 
80951
 
80952
- var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 410);
80953
 
80954
  exports.__esModule = true;
80955
  exports.default = addClass;
80956
 
80957
- var _hasClass = _interopRequireDefault(__webpack_require__(/*! ./hasClass */ 411));
80958
 
80959
  function addClass(element, className) {
80960
  if (element.classList) element.classList.add(className);else if (!(0, _hasClass.default)(element, className)) if (typeof element.className === 'string') element.className = element.className + ' ' + className;else element.setAttribute('class', (element.className && element.className.baseVal || '') + ' ' + className);
@@ -80963,7 +81286,7 @@ function addClass(element, className) {
80963
  module.exports = exports["default"];
80964
 
80965
  /***/ }),
80966
- /* 410 */
80967
  /*!**********************************************************************!*\
80968
  !*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
80969
  \**********************************************************************/
@@ -80980,7 +81303,7 @@ function _interopRequireDefault(obj) {
80980
  module.exports = _interopRequireDefault;
80981
 
80982
  /***/ }),
80983
- /* 411 */
80984
  /*!****************************************************!*\
80985
  !*** ./node_modules/dom-helpers/class/hasClass.js ***!
80986
  \****************************************************/
@@ -81001,7 +81324,7 @@ function hasClass(element, className) {
81001
  module.exports = exports["default"];
81002
 
81003
  /***/ }),
81004
- /* 412 */
81005
  /*!*******************************************************!*\
81006
  !*** ./node_modules/dom-helpers/class/removeClass.js ***!
81007
  \*******************************************************/
@@ -81021,7 +81344,7 @@ module.exports = function removeClass(element, className) {
81021
  };
81022
 
81023
  /***/ }),
81024
- /* 413 */
81025
  /*!******************************************************************!*\
81026
  !*** ./node_modules/react-transition-group/ReplaceTransition.js ***!
81027
  \******************************************************************/
@@ -81183,7 +81506,7 @@ module.exports = exports["default"];
81183
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
81184
 
81185
  /***/ }),
81186
- /* 414 */
81187
  /*!*******************************************************************!*\
81188
  !*** ./node_modules/react-transition-group/utils/ChildMapping.js ***!
81189
  \*******************************************************************/
@@ -81344,7 +81667,7 @@ function getNextChildMapping(nextProps, prevChildMapping, onExited) {
81344
  }
81345
 
81346
  /***/ }),
81347
- /* 415 */
81348
  /*!************************************************!*\
81349
  !*** ./dist/blocks/uagb-controls/parseIcon.js ***!
81350
  \************************************************/
@@ -81367,7 +81690,7 @@ function parseSVG(svg) {
81367
  /* harmony default export */ __webpack_exports__["a"] = (parseSVG);
81368
 
81369
  /***/ }),
81370
- /* 416 */
81371
  /*!******************************************!*\
81372
  !*** ./src/blocks/buttons-child/save.js ***!
81373
  \******************************************/
@@ -81443,7 +81766,7 @@ function save(props) {
81443
  }
81444
 
81445
  /***/ }),
81446
- /* 417 */
81447
  /*!*********************************************!*\
81448
  !*** ./src/blocks/buttons-child/style.scss ***!
81449
  \*********************************************/
@@ -81453,7 +81776,7 @@ function save(props) {
81453
  // removed by extract-text-webpack-plugin
81454
 
81455
  /***/ }),
81456
- /* 418 */
81457
  /*!**************************************!*\
81458
  !*** ./src/blocks/info-box/block.js ***!
81459
  \**************************************/
@@ -81462,13 +81785,13 @@ function save(props) {
81462
 
81463
  "use strict";
81464
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
81465
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 419);
81466
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 420);
81467
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */ 163);
81468
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 421);
81469
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 424);
81470
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
81471
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 425);
81472
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
81473
  /**
81474
  * BLOCK: Info Box
@@ -81502,7 +81825,7 @@ registerBlockType("uagb/info-box", {
81502
  });
81503
 
81504
  /***/ }),
81505
- /* 419 */
81506
  /*!*************************************!*\
81507
  !*** ./src/blocks/info-box/edit.js ***!
81508
  \*************************************/
@@ -81670,7 +81993,7 @@ var UAGBinfoBox = function (_Component) {
81670
  var setAttributes = this.props.setAttributes;
81671
 
81672
 
81673
- setAttributes({ iconImage: null });
81674
  }
81675
 
81676
  /**
@@ -83006,7 +83329,7 @@ var UAGBinfoBox = function (_Component) {
83006
  /* harmony default export */ __webpack_exports__["a"] = (UAGBinfoBox);
83007
 
83008
  /***/ }),
83009
- /* 420 */
83010
  /*!*************************************!*\
83011
  !*** ./src/blocks/info-box/save.js ***!
83012
  \*************************************/
@@ -83188,7 +83511,7 @@ function save(props) {
83188
  }
83189
 
83190
  /***/ }),
83191
- /* 421 */
83192
  /*!*******************************************!*\
83193
  !*** ./src/blocks/info-box/deprecated.js ***!
83194
  \*******************************************/
@@ -83202,11 +83525,11 @@ function save(props) {
83202
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */ 84);
83203
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! ./components/Title */ 85);
83204
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */ 87);
83205
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_InfoBoxIcon__ = __webpack_require__(/*! ./components/InfoBoxIcon */ 422);
83206
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Icon__ = __webpack_require__(/*! ./components/Icon */ 86);
83207
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__classes__ = __webpack_require__(/*! ./classes */ 88);
83208
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */ 89);
83209
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_InfoBoxCta__ = __webpack_require__(/*! ./components/InfoBoxCta */ 423);
83210
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */ 90);
83211
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 162);
83212
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_InfoBoxIconImage__ = __webpack_require__(/*! ./components/InfoBoxIconImage */ 91);
@@ -83955,7 +84278,7 @@ var deprecated = [{
83955
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
83956
 
83957
  /***/ }),
83958
- /* 422 */
83959
  /*!*******************************************************!*\
83960
  !*** ./src/blocks/info-box/components/InfoBoxIcon.js ***!
83961
  \*******************************************************/
@@ -84015,7 +84338,7 @@ var InfoBoxIcon = function (_React$Component) {
84015
  /* harmony default export */ __webpack_exports__["a"] = (InfoBoxIcon);
84016
 
84017
  /***/ }),
84018
- /* 423 */
84019
  /*!******************************************************!*\
84020
  !*** ./src/blocks/info-box/components/InfoBoxCta.js ***!
84021
  \******************************************************/
@@ -84113,7 +84436,7 @@ var InfoBoxCta = function (_React$Component) {
84113
  /* harmony default export */ __webpack_exports__["a"] = (InfoBoxCta);
84114
 
84115
  /***/ }),
84116
- /* 424 */
84117
  /*!*****************************************!*\
84118
  !*** ./src/blocks/info-box/editor.scss ***!
84119
  \*****************************************/
@@ -84123,7 +84446,7 @@ var InfoBoxCta = function (_React$Component) {
84123
  // removed by extract-text-webpack-plugin
84124
 
84125
  /***/ }),
84126
- /* 425 */
84127
  /*!****************************************!*\
84128
  !*** ./src/blocks/info-box/style.scss ***!
84129
  \****************************************/
@@ -84133,7 +84456,7 @@ var InfoBoxCta = function (_React$Component) {
84133
  // removed by extract-text-webpack-plugin
84134
 
84135
  /***/ }),
84136
- /* 426 */
84137
  /*!*****************************************!*\
84138
  !*** ./src/blocks/testimonial/block.js ***!
84139
  \*****************************************/
@@ -84144,13 +84467,13 @@ var InfoBoxCta = function (_React$Component) {
84144
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
84145
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
84146
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
84147
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 427);
84148
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 429);
84149
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 164);
84150
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */ 430);
84151
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 431);
84152
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
84153
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 432);
84154
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
84155
  /**
84156
  * BLOCK: Testimonial
@@ -84184,7 +84507,7 @@ registerBlockType("uagb/testimonial", {
84184
  });
84185
 
84186
  /***/ }),
84187
- /* 427 */
84188
  /*!****************************************!*\
84189
  !*** ./src/blocks/testimonial/edit.js ***!
84190
  \****************************************/
@@ -84199,7 +84522,7 @@ registerBlockType("uagb/testimonial", {
84199
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Company__ = __webpack_require__(/*! ./components/Company */ 93);
84200
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 94);
84201
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */ 95);
84202
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 428);
84203
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_TestimonialImage__ = __webpack_require__(/*! ./components/TestimonialImage */ 96);
84204
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
84205
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_lodash_times__);
@@ -85390,7 +85713,7 @@ var UAGBtestimonial = function (_Component) {
85390
  /* harmony default export */ __webpack_exports__["a"] = (UAGBtestimonial);
85391
 
85392
  /***/ }),
85393
- /* 428 */
85394
  /*!*************************************************!*\
85395
  !*** ./src/blocks/testimonial/inline-styles.js ***!
85396
  \*************************************************/
@@ -85635,7 +85958,7 @@ function TestimonialStyle(props) {
85635
  /* harmony default export */ __webpack_exports__["a"] = (TestimonialStyle);
85636
 
85637
  /***/ }),
85638
- /* 429 */
85639
  /*!****************************************!*\
85640
  !*** ./src/blocks/testimonial/save.js ***!
85641
  \****************************************/
@@ -85751,7 +86074,7 @@ function save(props) {
85751
  }
85752
 
85753
  /***/ }),
85754
- /* 430 */
85755
  /*!**********************************************!*\
85756
  !*** ./src/blocks/testimonial/deprecated.js ***!
85757
  \**********************************************/
@@ -85977,7 +86300,7 @@ var deprecated = [{
85977
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
85978
 
85979
  /***/ }),
85980
- /* 431 */
85981
  /*!*******************************************!*\
85982
  !*** ./src/blocks/testimonial/style.scss ***!
85983
  \*******************************************/
@@ -85987,7 +86310,7 @@ var deprecated = [{
85987
  // removed by extract-text-webpack-plugin
85988
 
85989
  /***/ }),
85990
- /* 432 */
85991
  /*!********************************************!*\
85992
  !*** ./src/blocks/testimonial/editor.scss ***!
85993
  \********************************************/
@@ -85997,7 +86320,7 @@ var deprecated = [{
85997
  // removed by extract-text-webpack-plugin
85998
 
85999
  /***/ }),
86000
- /* 433 */
86001
  /*!**********************************!*\
86002
  !*** ./src/blocks/team/block.js ***!
86003
  \**********************************/
@@ -86009,13 +86332,13 @@ var deprecated = [{
86009
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
86010
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
86011
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
86012
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 434);
86013
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 436);
86014
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */ 437);
86015
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 165);
86016
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 438);
86017
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
86018
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__style_scss__ = __webpack_require__(/*! ./style.scss */ 439);
86019
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8__style_scss__);
86020
  /**
86021
  * BLOCK: Team
@@ -86051,7 +86374,7 @@ registerBlockType("uagb/team", {
86051
  });
86052
 
86053
  /***/ }),
86054
- /* 434 */
86055
  /*!*********************************!*\
86056
  !*** ./src/blocks/team/edit.js ***!
86057
  \*********************************/
@@ -86066,7 +86389,7 @@ registerBlockType("uagb/team", {
86066
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
86067
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
86068
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
86069
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 435);
86070
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
86071
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
86072
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
@@ -86981,7 +87304,7 @@ var UAGBTeam = function (_Component) {
86981
  /* harmony default export */ __webpack_exports__["a"] = (UAGBTeam);
86982
 
86983
  /***/ }),
86984
- /* 435 */
86985
  /*!************************************!*\
86986
  !*** ./src/blocks/team/styling.js ***!
86987
  \************************************/
@@ -87206,7 +87529,7 @@ function styling(props) {
87206
  /* harmony default export */ __webpack_exports__["a"] = (styling);
87207
 
87208
  /***/ }),
87209
- /* 436 */
87210
  /*!*********************************!*\
87211
  !*** ./src/blocks/team/save.js ***!
87212
  \*********************************/
@@ -87351,7 +87674,7 @@ function save(props) {
87351
  }
87352
 
87353
  /***/ }),
87354
- /* 437 */
87355
  /*!***************************************!*\
87356
  !*** ./src/blocks/team/deprecated.js ***!
87357
  \***************************************/
@@ -87727,7 +88050,7 @@ var deprecated = [{
87727
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
87728
 
87729
  /***/ }),
87730
- /* 438 */
87731
  /*!*************************************!*\
87732
  !*** ./src/blocks/team/editor.scss ***!
87733
  \*************************************/
@@ -87737,7 +88060,7 @@ var deprecated = [{
87737
  // removed by extract-text-webpack-plugin
87738
 
87739
  /***/ }),
87740
- /* 439 */
87741
  /*!************************************!*\
87742
  !*** ./src/blocks/team/style.scss ***!
87743
  \************************************/
@@ -87747,7 +88070,7 @@ var deprecated = [{
87747
  // removed by extract-text-webpack-plugin
87748
 
87749
  /***/ }),
87750
- /* 440 */
87751
  /*!******************************************!*\
87752
  !*** ./src/blocks/social-share/block.js ***!
87753
  \******************************************/
@@ -87759,16 +88082,16 @@ var deprecated = [{
87759
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
87760
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
87761
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
87762
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 441);
87763
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
87764
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 442);
87765
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__editor_scss__);
87766
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__transform__ = __webpack_require__(/*! ./transform */ 443);
87767
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 166);
87768
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__edit__ = __webpack_require__(/*! ./edit */ 444);
87769
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__links__ = __webpack_require__(/*! ./links */ 97);
87770
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__save__ = __webpack_require__(/*! ./save */ 446);
87771
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__deprecated__ = __webpack_require__(/*! ./deprecated */ 447);
87772
  /**
87773
  * BLOCK: Social Share
87774
  */
@@ -87806,7 +88129,7 @@ registerBlockType("uagb/social-share", {
87806
  });
87807
 
87808
  /***/ }),
87809
- /* 441 */
87810
  /*!********************************************!*\
87811
  !*** ./src/blocks/social-share/style.scss ***!
87812
  \********************************************/
@@ -87816,7 +88139,7 @@ registerBlockType("uagb/social-share", {
87816
  // removed by extract-text-webpack-plugin
87817
 
87818
  /***/ }),
87819
- /* 442 */
87820
  /*!*********************************************!*\
87821
  !*** ./src/blocks/social-share/editor.scss ***!
87822
  \*********************************************/
@@ -87826,7 +88149,7 @@ registerBlockType("uagb/social-share", {
87826
  // removed by extract-text-webpack-plugin
87827
 
87828
  /***/ }),
87829
- /* 443 */
87830
  /*!**********************************************!*\
87831
  !*** ./src/blocks/social-share/transform.js ***!
87832
  \**********************************************/
@@ -87880,7 +88203,7 @@ var transform = {
87880
  /* harmony default export */ __webpack_exports__["a"] = (transform);
87881
 
87882
  /***/ }),
87883
- /* 444 */
87884
  /*!*****************************************!*\
87885
  !*** ./src/blocks/social-share/edit.js ***!
87886
  \*****************************************/
@@ -87899,7 +88222,7 @@ var transform = {
87899
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
87900
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
87901
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json__);
87902
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 445);
87903
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
87904
 
87905
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
@@ -88229,7 +88552,7 @@ var UAGBSocialShare = function (_Component) {
88229
  /* harmony default export */ __webpack_exports__["a"] = (UAGBSocialShare);
88230
 
88231
  /***/ }),
88232
- /* 445 */
88233
  /*!********************************************!*\
88234
  !*** ./src/blocks/social-share/styling.js ***!
88235
  \********************************************/
@@ -88439,7 +88762,7 @@ function styling(props) {
88439
  /* harmony default export */ __webpack_exports__["a"] = (styling);
88440
 
88441
  /***/ }),
88442
- /* 446 */
88443
  /*!*****************************************!*\
88444
  !*** ./src/blocks/social-share/save.js ***!
88445
  \*****************************************/
@@ -88489,7 +88812,7 @@ function save(props) {
88489
  }
88490
 
88491
  /***/ }),
88492
- /* 447 */
88493
  /*!***********************************************!*\
88494
  !*** ./src/blocks/social-share/deprecated.js ***!
88495
  \***********************************************/
@@ -88724,7 +89047,7 @@ var deprecated = [{
88724
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
88725
 
88726
  /***/ }),
88727
- /* 448 */
88728
  /*!************************************************!*\
88729
  !*** ./src/blocks/social-share-child/block.js ***!
88730
  \************************************************/
@@ -88734,13 +89057,13 @@ var deprecated = [{
88734
  "use strict";
88735
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
88736
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 167);
88737
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 449);
88738
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 451);
88739
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 452);
88740
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
88741
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 453);
88742
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
88743
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 454);
88744
  /**
88745
  * BLOCK: Social Share Child
88746
  */
@@ -88771,7 +89094,7 @@ registerBlockType("uagb/social-share-child", {
88771
  });
88772
 
88773
  /***/ }),
88774
- /* 449 */
88775
  /*!***********************************************!*\
88776
  !*** ./src/blocks/social-share-child/edit.js ***!
88777
  \***********************************************/
@@ -88786,7 +89109,7 @@ registerBlockType("uagb/social-share-child", {
88786
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
88787
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
88788
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
88789
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 450);
88790
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
88791
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
88792
 
@@ -89225,7 +89548,7 @@ var UAGBSocialShareChild = function (_Component) {
89225
  /* harmony default export */ __webpack_exports__["a"] = (UAGBSocialShareChild);
89226
 
89227
  /***/ }),
89228
- /* 450 */
89229
  /*!**************************************************!*\
89230
  !*** ./src/blocks/social-share-child/styling.js ***!
89231
  \**************************************************/
@@ -89281,7 +89604,7 @@ function styling(props) {
89281
  /* harmony default export */ __webpack_exports__["a"] = (styling);
89282
 
89283
  /***/ }),
89284
- /* 451 */
89285
  /*!***********************************************!*\
89286
  !*** ./src/blocks/social-share-child/save.js ***!
89287
  \***********************************************/
@@ -89355,7 +89678,7 @@ function save(props) {
89355
  }
89356
 
89357
  /***/ }),
89358
- /* 452 */
89359
  /*!**************************************************!*\
89360
  !*** ./src/blocks/social-share-child/style.scss ***!
89361
  \**************************************************/
@@ -89365,7 +89688,7 @@ function save(props) {
89365
  // removed by extract-text-webpack-plugin
89366
 
89367
  /***/ }),
89368
- /* 453 */
89369
  /*!***************************************************!*\
89370
  !*** ./src/blocks/social-share-child/editor.scss ***!
89371
  \***************************************************/
@@ -89375,7 +89698,7 @@ function save(props) {
89375
  // removed by extract-text-webpack-plugin
89376
 
89377
  /***/ }),
89378
- /* 454 */
89379
  /*!*****************************************************!*\
89380
  !*** ./src/blocks/social-share-child/deprecated.js ***!
89381
  \*****************************************************/
@@ -89457,7 +89780,7 @@ var deprecated = [{
89457
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
89458
 
89459
  /***/ }),
89460
- /* 455 */
89461
  /*!****************************************!*\
89462
  !*** ./src/blocks/google-map/block.js ***!
89463
  \****************************************/
@@ -89468,7 +89791,7 @@ var deprecated = [{
89468
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
89469
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
89470
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
89471
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */ 456);
89472
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
89473
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
89474
 
@@ -89492,7 +89815,8 @@ var InspectorControls = wp.blockEditor.InspectorControls;
89492
  var _wp$components = wp.components,
89493
  PanelBody = _wp$components.PanelBody,
89494
  RangeControl = _wp$components.RangeControl,
89495
- TextControl = _wp$components.TextControl;
 
89496
  var _wp$element = wp.element,
89497
  Component = _wp$element.Component,
89498
  Fragment = _wp$element.Fragment;
@@ -89527,12 +89851,14 @@ var UAGBGoogleMap = function (_Component) {
89527
  _props$attributes = _props.attributes,
89528
  height = _props$attributes.height,
89529
  zoom = _props$attributes.zoom,
89530
- address = _props$attributes.address;
89531
-
89532
 
89533
  var encoded_address = encodeURI(address);
89534
 
89535
- var url = "https://www.google.com/maps/embed/v1/place?key=" + api_key + "&q=" + encoded_address + "&zoom=" + zoom;
 
 
89536
 
89537
  return wp.element.createElement(
89538
  Fragment,
@@ -89580,6 +89906,14 @@ var UAGBGoogleMap = function (_Component) {
89580
  min: 0,
89581
  max: 1000,
89582
  allowReset: true
 
 
 
 
 
 
 
 
89583
  })
89584
  )
89585
  ),
@@ -89623,6 +89957,10 @@ registerBlockType("uagb/google-map", {
89623
  zoom: {
89624
  type: "number",
89625
  default: 12
 
 
 
 
89626
  }
89627
  },
89628
  edit: UAGBGoogleMap,
@@ -89631,12 +89969,15 @@ registerBlockType("uagb/google-map", {
89631
  block_id = _props$attributes2.block_id,
89632
  height = _props$attributes2.height,
89633
  zoom = _props$attributes2.zoom,
89634
- address = _props$attributes2.address;
 
89635
 
89636
 
89637
  var encoded_address = encodeURI(address);
89638
 
89639
- var url = "https://www.google.com/maps/embed/v1/place?key=" + api_key + "&q=" + encoded_address + "&zoom=" + zoom;
 
 
89640
 
89641
  return wp.element.createElement(
89642
  "div",
@@ -89680,9 +90021,10 @@ registerBlockType("uagb/google-map", {
89680
 
89681
  return wp.element.createElement(
89682
  "div",
89683
- { className: __WEBPACK_IMPORTED_MODULE_0_classnames___default.a(props.className, "uagb-google-map__wrap"), id: "uagb-google-map-" + block_id },
89684
  wp.element.createElement("iframe", {
89685
  className: "uagb-google-map__iframe",
 
89686
  src: url,
89687
  style: { height: height } })
89688
  );
@@ -89713,6 +90055,45 @@ registerBlockType("uagb/google-map", {
89713
  address = _props$attributes4.address;
89714
 
89715
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89716
  var encoded_address = encodeURI(address);
89717
 
89718
  var url = "https://www.google.com/maps/embed/v1/place?key=" + api_key + "&q=" + encoded_address + "&zoom=" + zoom;
@@ -89730,7 +90111,7 @@ registerBlockType("uagb/google-map", {
89730
  });
89731
 
89732
  /***/ }),
89733
- /* 456 */
89734
  /*!******************************************!*\
89735
  !*** ./src/blocks/google-map/style.scss ***!
89736
  \******************************************/
@@ -89740,7 +90121,7 @@ registerBlockType("uagb/google-map", {
89740
  // removed by extract-text-webpack-plugin
89741
 
89742
  /***/ }),
89743
- /* 457 */
89744
  /*!***************************************!*\
89745
  !*** ./src/blocks/icon-list/block.js ***!
89746
  \***************************************/
@@ -89750,13 +90131,13 @@ registerBlockType("uagb/google-map", {
89750
  "use strict";
89751
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
89752
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 169);
89753
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 458);
89754
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 460);
89755
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__transform__ = __webpack_require__(/*! ./transform */ 461);
89756
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */ 462);
89757
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 463);
89758
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
89759
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 464);
89760
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
89761
  /**
89762
  * BLOCK: Icon List
@@ -89792,7 +90173,7 @@ registerBlockType("uagb/icon-list", {
89792
  });
89793
 
89794
  /***/ }),
89795
- /* 458 */
89796
  /*!**************************************!*\
89797
  !*** ./src/blocks/icon-list/edit.js ***!
89798
  \**************************************/
@@ -89809,7 +90190,7 @@ registerBlockType("uagb/icon-list", {
89809
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
89810
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 28);
89811
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
89812
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! ./styling */ 459);
89813
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
89814
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
89815
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
@@ -90228,7 +90609,7 @@ var UAGBIconList = function (_Component) {
90228
  /* harmony default export */ __webpack_exports__["a"] = (UAGBIconList);
90229
 
90230
  /***/ }),
90231
- /* 459 */
90232
  /*!*****************************************!*\
90233
  !*** ./src/blocks/icon-list/styling.js ***!
90234
  \*****************************************/
@@ -90460,7 +90841,7 @@ function styling(props) {
90460
  /* harmony default export */ __webpack_exports__["a"] = (styling);
90461
 
90462
  /***/ }),
90463
- /* 460 */
90464
  /*!**************************************!*\
90465
  !*** ./src/blocks/icon-list/save.js ***!
90466
  \**************************************/
@@ -90507,7 +90888,7 @@ function save(props) {
90507
  }
90508
 
90509
  /***/ }),
90510
- /* 461 */
90511
  /*!*******************************************!*\
90512
  !*** ./src/blocks/icon-list/transform.js ***!
90513
  \*******************************************/
@@ -90561,7 +90942,7 @@ var transform = {
90561
  /* harmony default export */ __webpack_exports__["a"] = (transform);
90562
 
90563
  /***/ }),
90564
- /* 462 */
90565
  /*!********************************************!*\
90566
  !*** ./src/blocks/icon-list/deprecated.js ***!
90567
  \********************************************/
@@ -91017,7 +91398,7 @@ var deprecated = [{
91017
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
91018
 
91019
  /***/ }),
91020
- /* 463 */
91021
  /*!*****************************************!*\
91022
  !*** ./src/blocks/icon-list/style.scss ***!
91023
  \*****************************************/
@@ -91027,7 +91408,7 @@ var deprecated = [{
91027
  // removed by extract-text-webpack-plugin
91028
 
91029
  /***/ }),
91030
- /* 464 */
91031
  /*!******************************************!*\
91032
  !*** ./src/blocks/icon-list/editor.scss ***!
91033
  \******************************************/
@@ -91037,7 +91418,7 @@ var deprecated = [{
91037
  // removed by extract-text-webpack-plugin
91038
 
91039
  /***/ }),
91040
- /* 465 */
91041
  /*!*********************************************!*\
91042
  !*** ./src/blocks/icon-list-child/block.js ***!
91043
  \*********************************************/
@@ -91047,13 +91428,13 @@ var deprecated = [{
91047
  "use strict";
91048
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
91049
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 170);
91050
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 466);
91051
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 468);
91052
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 469);
91053
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
91054
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 470);
91055
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
91056
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 471);
91057
  /**
91058
  * BLOCK: Icon List - Child
91059
  */
@@ -91083,7 +91464,7 @@ registerBlockType("uagb/icon-list-child", {
91083
  });
91084
 
91085
  /***/ }),
91086
- /* 466 */
91087
  /*!********************************************!*\
91088
  !*** ./src/blocks/icon-list-child/edit.js ***!
91089
  \********************************************/
@@ -91098,7 +91479,7 @@ registerBlockType("uagb/icon-list-child", {
91098
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
91099
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
91100
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
91101
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 467);
91102
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
91103
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
91104
 
@@ -91699,7 +92080,7 @@ var UAGBIconListChild = function (_Component) {
91699
  /* harmony default export */ __webpack_exports__["a"] = (UAGBIconListChild);
91700
 
91701
  /***/ }),
91702
- /* 467 */
91703
  /*!***********************************************!*\
91704
  !*** ./src/blocks/icon-list-child/styling.js ***!
91705
  \***********************************************/
@@ -91767,7 +92148,7 @@ function styling(props) {
91767
  /* harmony default export */ __webpack_exports__["a"] = (styling);
91768
 
91769
  /***/ }),
91770
- /* 468 */
91771
  /*!********************************************!*\
91772
  !*** ./src/blocks/icon-list-child/save.js ***!
91773
  \********************************************/
@@ -91851,7 +92232,7 @@ function save(props) {
91851
  }
91852
 
91853
  /***/ }),
91854
- /* 469 */
91855
  /*!***********************************************!*\
91856
  !*** ./src/blocks/icon-list-child/style.scss ***!
91857
  \***********************************************/
@@ -91861,7 +92242,7 @@ function save(props) {
91861
  // removed by extract-text-webpack-plugin
91862
 
91863
  /***/ }),
91864
- /* 470 */
91865
  /*!************************************************!*\
91866
  !*** ./src/blocks/icon-list-child/editor.scss ***!
91867
  \************************************************/
@@ -91871,7 +92252,7 @@ function save(props) {
91871
  // removed by extract-text-webpack-plugin
91872
 
91873
  /***/ }),
91874
- /* 471 */
91875
  /*!**************************************************!*\
91876
  !*** ./src/blocks/icon-list-child/deprecated.js ***!
91877
  \**************************************************/
@@ -91960,7 +92341,7 @@ var deprecated = [{
91960
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
91961
 
91962
  /***/ }),
91963
- /* 472 */
91964
  /*!****************************************!*\
91965
  !*** ./src/blocks/price-list/block.js ***!
91966
  \****************************************/
@@ -91969,13 +92350,13 @@ var deprecated = [{
91969
 
91970
  "use strict";
91971
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
91972
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 473);
91973
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 475);
91974
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 476);
91975
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 171);
91976
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 477);
91977
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
91978
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 478);
91979
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
91980
  /**
91981
  * BLOCK: Price List
@@ -92011,7 +92392,7 @@ registerBlockType("uagb/restaurant-menu", {
92011
  });
92012
 
92013
  /***/ }),
92014
- /* 473 */
92015
  /*!***************************************!*\
92016
  !*** ./src/blocks/price-list/edit.js ***!
92017
  \***************************************/
@@ -92026,7 +92407,7 @@ registerBlockType("uagb/restaurant-menu", {
92026
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Price__ = __webpack_require__(/*! ./components/Price */ 99);
92027
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 100);
92028
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */ 101);
92029
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 474);
92030
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_RestMenuImage__ = __webpack_require__(/*! ./components/RestMenuImage */ 102);
92031
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
92032
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_lodash_times__);
@@ -92910,7 +93291,7 @@ var UAGBRestaurantMenu = function (_Component) {
92910
  /* harmony default export */ __webpack_exports__["a"] = (UAGBRestaurantMenu);
92911
 
92912
  /***/ }),
92913
- /* 474 */
92914
  /*!************************************************!*\
92915
  !*** ./src/blocks/price-list/inline-styles.js ***!
92916
  \************************************************/
@@ -93127,7 +93508,7 @@ function RestMenuStyle(props) {
93127
  /* harmony default export */ __webpack_exports__["a"] = (RestMenuStyle);
93128
 
93129
  /***/ }),
93130
- /* 475 */
93131
  /*!***************************************!*\
93132
  !*** ./src/blocks/price-list/save.js ***!
93133
  \***************************************/
@@ -93225,7 +93606,7 @@ function save(props) {
93225
  }
93226
 
93227
  /***/ }),
93228
- /* 476 */
93229
  /*!*********************************************!*\
93230
  !*** ./src/blocks/price-list/deprecated.js ***!
93231
  \*********************************************/
@@ -93330,7 +93711,7 @@ var deprecated = [{
93330
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
93331
 
93332
  /***/ }),
93333
- /* 477 */
93334
  /*!******************************************!*\
93335
  !*** ./src/blocks/price-list/style.scss ***!
93336
  \******************************************/
@@ -93340,7 +93721,7 @@ var deprecated = [{
93340
  // removed by extract-text-webpack-plugin
93341
 
93342
  /***/ }),
93343
- /* 478 */
93344
  /*!*******************************************!*\
93345
  !*** ./src/blocks/price-list/editor.scss ***!
93346
  \*******************************************/
@@ -93350,7 +93731,7 @@ var deprecated = [{
93350
  // removed by extract-text-webpack-plugin
93351
 
93352
  /***/ }),
93353
- /* 479 */
93354
  /*!**************************************!*\
93355
  !*** ./src/blocks/timeline/block.js ***!
93356
  \**************************************/
@@ -93358,13 +93739,13 @@ var deprecated = [{
93358
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
93359
 
93360
  "use strict";
93361
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__content_timeline_block_js__ = __webpack_require__(/*! ./content-timeline/block.js */ 480);
93362
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__post_timeline_block_js__ = __webpack_require__(/*! ./post-timeline/block.js */ 484);
93363
 
93364
 
93365
 
93366
  /***/ }),
93367
- /* 480 */
93368
  /*!*******************************************************!*\
93369
  !*** ./src/blocks/timeline/content-timeline/block.js ***!
93370
  \*******************************************************/
@@ -93379,10 +93760,10 @@ var deprecated = [{
93379
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
93380
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! .././style.scss */ 172);
93381
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
93382
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 481);
93383
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__save__ = __webpack_require__(/*! ./save */ 482);
93384
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 173);
93385
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__edit__ = __webpack_require__(/*! ./edit */ 483);
93386
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! .././inline-styles */ 30);
93387
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__classes__ = __webpack_require__(/*! .././classes */ 31);
93388
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__align_classes__ = __webpack_require__(/*! .././align-classes */ 32);
@@ -93446,7 +93827,7 @@ registerBlockType("uagb/content-timeline", {
93446
  });
93447
 
93448
  /***/ }),
93449
- /* 481 */
93450
  /*!************************************************************!*\
93451
  !*** ./src/blocks/timeline/content-timeline/deprecated.js ***!
93452
  \************************************************************/
@@ -93887,7 +94268,7 @@ var deprecated = [{
93887
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
93888
 
93889
  /***/ }),
93890
- /* 482 */
93891
  /*!******************************************************!*\
93892
  !*** ./src/blocks/timeline/content-timeline/save.js ***!
93893
  \******************************************************/
@@ -94066,7 +94447,7 @@ function save(props) {
94066
  }
94067
 
94068
  /***/ }),
94069
- /* 483 */
94070
  /*!******************************************************!*\
94071
  !*** ./src/blocks/timeline/content-timeline/edit.js ***!
94072
  \******************************************************/
@@ -95226,7 +95607,7 @@ var UAGBcontentTimeline = function (_Component) {
95226
  /* harmony default export */ __webpack_exports__["a"] = (UAGBcontentTimeline);
95227
 
95228
  /***/ }),
95229
- /* 484 */
95230
  /*!****************************************************!*\
95231
  !*** ./src/blocks/timeline/post-timeline/block.js ***!
95232
  \****************************************************/
@@ -95238,9 +95619,9 @@ var UAGBcontentTimeline = function (_Component) {
95238
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
95239
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! .././style.scss */ 172);
95240
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
95241
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 485);
95242
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
95243
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 486);
95244
  /**
95245
  * BLOCK: Post Timeline Js.
95246
  */
@@ -95281,7 +95662,7 @@ registerBlockType("uagb/post-timeline", {
95281
  });
95282
 
95283
  /***/ }),
95284
- /* 485 */
95285
  /*!*****************************************!*\
95286
  !*** ./src/blocks/timeline/editor.scss ***!
95287
  \*****************************************/
@@ -95291,7 +95672,7 @@ registerBlockType("uagb/post-timeline", {
95291
  // removed by extract-text-webpack-plugin
95292
 
95293
  /***/ }),
95294
- /* 486 */
95295
  /*!***************************************************!*\
95296
  !*** ./src/blocks/timeline/post-timeline/edit.js ***!
95297
  \***************************************************/
@@ -95300,9 +95681,9 @@ registerBlockType("uagb/post-timeline", {
95300
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
95301
 
95302
  "use strict";
95303
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined__ = __webpack_require__(/*! lodash/isUndefined */ 487);
95304
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined__);
95305
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_pickBy__ = __webpack_require__(/*! lodash/pickBy */ 488);
95306
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_pickBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_pickBy__);
95307
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
95308
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
@@ -95317,13 +95698,13 @@ registerBlockType("uagb/post-timeline", {
95317
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__classes__ = __webpack_require__(/*! .././classes */ 31);
95318
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__align_classes__ = __webpack_require__(/*! .././align-classes */ 32);
95319
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__day_align_classes__ = __webpack_require__(/*! .././day-align-classes */ 33);
95320
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_Title__ = __webpack_require__(/*! ./components/Title */ 491);
95321
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__components_FeaturedImage__ = __webpack_require__(/*! ./components/FeaturedImage */ 492);
95322
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__components_Excerpt__ = __webpack_require__(/*! ./components/Excerpt */ 493);
95323
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__components_CtaLink__ = __webpack_require__(/*! ./components/CtaLink */ 494);
95324
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__components_Author__ = __webpack_require__(/*! ./components/Author */ 495);
95325
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__components_PostDate__ = __webpack_require__(/*! ./components/PostDate */ 496);
95326
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__components_Icon__ = __webpack_require__(/*! ./components/Icon */ 497);
95327
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
95328
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
95329
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -96727,7 +97108,7 @@ var UAGBTimeline = function (_Component) {
96727
  })(UAGBTimeline));
96728
 
96729
  /***/ }),
96730
- /* 487 */
96731
  /*!********************************************!*\
96732
  !*** ./node_modules/lodash/isUndefined.js ***!
96733
  \********************************************/
@@ -96759,7 +97140,7 @@ module.exports = isUndefined;
96759
 
96760
 
96761
  /***/ }),
96762
- /* 488 */
96763
  /*!***************************************!*\
96764
  !*** ./node_modules/lodash/pickBy.js ***!
96765
  \***************************************/
@@ -96768,8 +97149,8 @@ module.exports = isUndefined;
96768
 
96769
  var arrayMap = __webpack_require__(/*! ./_arrayMap */ 34),
96770
  baseIteratee = __webpack_require__(/*! ./_baseIteratee */ 113),
96771
- basePickBy = __webpack_require__(/*! ./_basePickBy */ 489),
96772
- getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 79);
96773
 
96774
  /**
96775
  * Creates an object composed of the `object` properties `predicate` returns
@@ -96806,7 +97187,7 @@ module.exports = pickBy;
96806
 
96807
 
96808
  /***/ }),
96809
- /* 489 */
96810
  /*!********************************************!*\
96811
  !*** ./node_modules/lodash/_basePickBy.js ***!
96812
  \********************************************/
@@ -96815,7 +97196,7 @@ module.exports = pickBy;
96815
  /***/ (function(module, exports, __webpack_require__) {
96816
 
96817
  var baseGet = __webpack_require__(/*! ./_baseGet */ 45),
96818
- baseSet = __webpack_require__(/*! ./_baseSet */ 490),
96819
  castPath = __webpack_require__(/*! ./_castPath */ 24);
96820
 
96821
  /**
@@ -96847,7 +97228,7 @@ module.exports = basePickBy;
96847
 
96848
 
96849
  /***/ }),
96850
- /* 490 */
96851
  /*!*****************************************!*\
96852
  !*** ./node_modules/lodash/_baseSet.js ***!
96853
  \*****************************************/
@@ -96905,7 +97286,7 @@ module.exports = baseSet;
96905
 
96906
 
96907
  /***/ }),
96908
- /* 491 */
96909
  /*!***************************************************************!*\
96910
  !*** ./src/blocks/timeline/post-timeline/components/Title.js ***!
96911
  \***************************************************************/
@@ -96971,7 +97352,7 @@ var Title = function (_React$Component) {
96971
  /* harmony default export */ __webpack_exports__["a"] = (Title);
96972
 
96973
  /***/ }),
96974
- /* 492 */
96975
  /*!***********************************************************************!*\
96976
  !*** ./src/blocks/timeline/post-timeline/components/FeaturedImage.js ***!
96977
  \***********************************************************************/
@@ -97040,7 +97421,7 @@ var FeaturedImage = function (_React$Component) {
97040
  /* harmony default export */ __webpack_exports__["a"] = (FeaturedImage);
97041
 
97042
  /***/ }),
97043
- /* 493 */
97044
  /*!*****************************************************************!*\
97045
  !*** ./src/blocks/timeline/post-timeline/components/Excerpt.js ***!
97046
  \*****************************************************************/
@@ -97099,7 +97480,7 @@ var Excerpt = function (_React$Component) {
97099
  /* harmony default export */ __webpack_exports__["a"] = (Excerpt);
97100
 
97101
  /***/ }),
97102
- /* 494 */
97103
  /*!*****************************************************************!*\
97104
  !*** ./src/blocks/timeline/post-timeline/components/CtaLink.js ***!
97105
  \*****************************************************************/
@@ -97159,7 +97540,7 @@ var CtaLink = function (_React$Component) {
97159
  /* harmony default export */ __webpack_exports__["a"] = (CtaLink);
97160
 
97161
  /***/ }),
97162
- /* 495 */
97163
  /*!****************************************************************!*\
97164
  !*** ./src/blocks/timeline/post-timeline/components/Author.js ***!
97165
  \****************************************************************/
@@ -97223,7 +97604,7 @@ var Author = function (_React$Component) {
97223
  /* harmony default export */ __webpack_exports__["a"] = (Author);
97224
 
97225
  /***/ }),
97226
- /* 496 */
97227
  /*!******************************************************************!*\
97228
  !*** ./src/blocks/timeline/post-timeline/components/PostDate.js ***!
97229
  \******************************************************************/
@@ -97283,7 +97664,7 @@ var PostDate = function (_React$Component) {
97283
  /* harmony default export */ __webpack_exports__["a"] = (PostDate);
97284
 
97285
  /***/ }),
97286
- /* 497 */
97287
  /*!**************************************************************!*\
97288
  !*** ./src/blocks/timeline/post-timeline/components/Icon.js ***!
97289
  \**************************************************************/
@@ -97337,7 +97718,7 @@ var Icon = function (_React$Component) {
97337
  /* harmony default export */ __webpack_exports__["a"] = (Icon);
97338
 
97339
  /***/ }),
97340
- /* 498 */
97341
  /*!********************************************!*\
97342
  !*** ./src/blocks/call-to-action/block.js ***!
97343
  \********************************************/
@@ -97346,13 +97727,13 @@ var Icon = function (_React$Component) {
97346
 
97347
  "use strict";
97348
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
97349
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 499);
97350
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 501);
97351
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */ 174);
97352
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 502);
97353
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 504);
97354
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
97355
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 505);
97356
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
97357
  /**
97358
  * BLOCK: Call To Action.
@@ -97389,7 +97770,7 @@ registerBlockType("uagb/call-to-action", {
97389
  });
97390
 
97391
  /***/ }),
97392
- /* 499 */
97393
  /*!*******************************************!*\
97394
  !*** ./src/blocks/call-to-action/edit.js ***!
97395
  \*******************************************/
@@ -97409,7 +97790,7 @@ registerBlockType("uagb/call-to-action", {
97409
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */ 105);
97410
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_CTA__ = __webpack_require__(/*! ./components/CTA */ 106);
97411
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
97412
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 500);
97413
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
97414
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
97415
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
@@ -98313,7 +98694,7 @@ var UAGBCallToAction = function (_Component) {
98313
  /* harmony default export */ __webpack_exports__["a"] = (UAGBCallToAction);
98314
 
98315
  /***/ }),
98316
- /* 500 */
98317
  /*!****************************************************!*\
98318
  !*** ./src/blocks/call-to-action/inline-styles.js ***!
98319
  \****************************************************/
@@ -98550,7 +98931,7 @@ function CtaStyle(props) {
98550
  /* harmony default export */ __webpack_exports__["a"] = (CtaStyle);
98551
 
98552
  /***/ }),
98553
- /* 501 */
98554
  /*!*******************************************!*\
98555
  !*** ./src/blocks/call-to-action/save.js ***!
98556
  \*******************************************/
@@ -98679,7 +99060,7 @@ function save(props) {
98679
  }
98680
 
98681
  /***/ }),
98682
- /* 502 */
98683
  /*!*************************************************!*\
98684
  !*** ./src/blocks/call-to-action/deprecated.js ***!
98685
  \*************************************************/
@@ -98693,7 +99074,7 @@ function save(props) {
98693
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */ 103);
98694
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */ 104);
98695
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! ./classes */ 105);
98696
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */ 503);
98697
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_CTA__ = __webpack_require__(/*! ./components/CTA */ 106);
98698
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 174);
98699
  function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
@@ -99018,7 +99399,7 @@ var deprecated = [{
99018
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
99019
 
99020
  /***/ }),
99021
- /* 503 */
99022
  /*!**************************************************************!*\
99023
  !*** ./src/blocks/call-to-action/components/CallToAction.js ***!
99024
  \**************************************************************/
@@ -99112,7 +99493,7 @@ var CallToAction = function (_React$Component) {
99112
  /* harmony default export */ __webpack_exports__["a"] = (CallToAction);
99113
 
99114
  /***/ }),
99115
- /* 504 */
99116
  /*!***********************************************!*\
99117
  !*** ./src/blocks/call-to-action/editor.scss ***!
99118
  \***********************************************/
@@ -99122,7 +99503,7 @@ var CallToAction = function (_React$Component) {
99122
  // removed by extract-text-webpack-plugin
99123
 
99124
  /***/ }),
99125
- /* 505 */
99126
  /*!**********************************************!*\
99127
  !*** ./src/blocks/call-to-action/style.scss ***!
99128
  \**********************************************/
@@ -99132,7 +99513,7 @@ var CallToAction = function (_React$Component) {
99132
  // removed by extract-text-webpack-plugin
99133
 
99134
  /***/ }),
99135
- /* 506 */
99136
  /*!************************************!*\
99137
  !*** ./src/blocks/column/block.js ***!
99138
  \************************************/
@@ -99141,13 +99522,13 @@ var CallToAction = function (_React$Component) {
99141
 
99142
  "use strict";
99143
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
99144
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 507);
99145
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 510);
99146
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 511);
99147
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 175);
99148
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 512);
99149
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
99150
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 513);
99151
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
99152
  /**
99153
  * BLOCK: Column
@@ -99183,7 +99564,7 @@ registerBlockType("uagb/column", {
99183
  });
99184
 
99185
  /***/ }),
99186
- /* 507 */
99187
  /*!***********************************!*\
99188
  !*** ./src/blocks/column/edit.js ***!
99189
  \***********************************/
@@ -99195,7 +99576,7 @@ registerBlockType("uagb/column", {
99195
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
99196
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
99197
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
99198
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 508);
99199
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */ 82);
99200
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
99201
 
@@ -100240,7 +100621,7 @@ var UAGBColumnEdit = function (_Component) {
100240
  /* harmony default export */ __webpack_exports__["a"] = (UAGBColumnEdit);
100241
 
100242
  /***/ }),
100243
- /* 508 */
100244
  /*!**************************************!*\
100245
  !*** ./src/blocks/column/styling.js ***!
100246
  \**************************************/
@@ -100249,7 +100630,7 @@ var UAGBColumnEdit = function (_Component) {
100249
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
100250
 
100251
  "use strict";
100252
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 509);
100253
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
100254
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
100255
  /**
@@ -100397,7 +100778,7 @@ function styling(props) {
100397
  /* harmony default export */ __webpack_exports__["a"] = (styling);
100398
 
100399
  /***/ }),
100400
- /* 509 */
100401
  /*!********************************************!*\
100402
  !*** ./src/blocks/column/inline-styles.js ***!
100403
  \********************************************/
@@ -100483,7 +100864,7 @@ function inlineStyles(props, isEditor) {
100483
  /* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
100484
 
100485
  /***/ }),
100486
- /* 510 */
100487
  /*!***********************************!*\
100488
  !*** ./src/blocks/column/save.js ***!
100489
  \***********************************/
@@ -100533,7 +100914,7 @@ function save(_ref) {
100533
  }
100534
 
100535
  /***/ }),
100536
- /* 511 */
100537
  /*!*****************************************!*\
100538
  !*** ./src/blocks/column/deprecated.js ***!
100539
  \*****************************************/
@@ -100594,7 +100975,7 @@ var deprecated = [{
100594
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
100595
 
100596
  /***/ }),
100597
- /* 512 */
100598
  /*!**************************************!*\
100599
  !*** ./src/blocks/column/style.scss ***!
100600
  \**************************************/
@@ -100604,7 +100985,7 @@ var deprecated = [{
100604
  // removed by extract-text-webpack-plugin
100605
 
100606
  /***/ }),
100607
- /* 513 */
100608
  /*!***************************************!*\
100609
  !*** ./src/blocks/column/editor.scss ***!
100610
  \***************************************/
@@ -100614,7 +100995,7 @@ var deprecated = [{
100614
  // removed by extract-text-webpack-plugin
100615
 
100616
  /***/ }),
100617
- /* 514 */
100618
  /*!*************************************!*\
100619
  !*** ./src/blocks/columns/block.js ***!
100620
  \*************************************/
@@ -100626,13 +101007,13 @@ var deprecated = [{
100626
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
100627
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
100628
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 176);
100629
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 515);
100630
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 520);
100631
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__shapes__ = __webpack_require__(/*! ./shapes */ 107);
100632
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__variations__ = __webpack_require__(/*! ./variations */ 521);
100633
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__style_scss__ = __webpack_require__(/*! ./style.scss */ 531);
100634
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__style_scss__);
100635
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 532);
100636
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8__editor_scss__);
100637
  /**
100638
  * BLOCK: Columns
@@ -100743,7 +101124,7 @@ registerBlockType("uagb/columns", {
100743
  });
100744
 
100745
  /***/ }),
100746
- /* 515 */
100747
  /*!************************************!*\
100748
  !*** ./src/blocks/columns/edit.js ***!
100749
  \************************************/
@@ -100752,21 +101133,21 @@ registerBlockType("uagb/columns", {
100752
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
100753
 
100754
  "use strict";
100755
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__components_option_selector_control__ = __webpack_require__(/*! ../../components/option-selector-control */ 516);
100756
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames__ = __webpack_require__(/*! classnames */ 0);
100757
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_classnames__);
100758
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 517);
100759
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 28);
100760
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
100761
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
100762
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_times__);
100763
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
100764
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_lodash_map__);
100765
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_dropRight__ = __webpack_require__(/*! lodash/dropRight */ 519);
100766
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_dropRight___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_dropRight__);
100767
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
100768
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__shapes__ = __webpack_require__(/*! ./shapes */ 107);
100769
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 81);
100770
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */ 82);
100771
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__icons__ = __webpack_require__(/*! ./icons */ 177);
100772
  var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
@@ -102272,7 +102653,7 @@ var applyWithSelect = withSelect(function (select, props) {
102272
  /* harmony default export */ __webpack_exports__["a"] = (compose(withNotices, applyWithSelect)(UAGBColumns));
102273
 
102274
  /***/ }),
102275
- /* 516 */
102276
  /*!*********************************************************!*\
102277
  !*** ./src/components/option-selector-control/index.js ***!
102278
  \*********************************************************/
@@ -102418,7 +102799,7 @@ var OptionSelectorControl = function (_Component) {
102418
  /* harmony default export */ __webpack_exports__["a"] = (OptionSelectorControl);
102419
 
102420
  /***/ }),
102421
- /* 517 */
102422
  /*!***************************************!*\
102423
  !*** ./src/blocks/columns/styling.js ***!
102424
  \***************************************/
@@ -102427,7 +102808,7 @@ var OptionSelectorControl = function (_Component) {
102427
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
102428
 
102429
  "use strict";
102430
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 518);
102431
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
102432
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */ 83);
102433
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
@@ -102629,7 +103010,7 @@ function styling(props) {
102629
  /* harmony default export */ __webpack_exports__["a"] = (styling);
102630
 
102631
  /***/ }),
102632
- /* 518 */
102633
  /*!*********************************************!*\
102634
  !*** ./src/blocks/columns/inline-styles.js ***!
102635
  \*********************************************/
@@ -102699,15 +103080,15 @@ function inlineStyles(props, isEditor) {
102699
  /* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
102700
 
102701
  /***/ }),
102702
- /* 519 */
102703
  /*!******************************************!*\
102704
  !*** ./node_modules/lodash/dropRight.js ***!
102705
  \******************************************/
102706
  /*! no static exports found */
102707
  /***/ (function(module, exports, __webpack_require__) {
102708
 
102709
- var baseSlice = __webpack_require__(/*! ./_baseSlice */ 69),
102710
- toInteger = __webpack_require__(/*! ./toInteger */ 71);
102711
 
102712
  /**
102713
  * Creates a slice of `array` with `n` elements dropped from the end.
@@ -102748,7 +103129,7 @@ module.exports = dropRight;
102748
 
102749
 
102750
  /***/ }),
102751
- /* 520 */
102752
  /*!******************************************!*\
102753
  !*** ./src/blocks/columns/deprecated.js ***!
102754
  \******************************************/
@@ -102920,7 +103301,7 @@ var deprecated = [{
102920
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
102921
 
102922
  /***/ }),
102923
- /* 521 */
102924
  /*!******************************************!*\
102925
  !*** ./src/blocks/columns/variations.js ***!
102926
  \******************************************/
@@ -102930,7 +103311,7 @@ var deprecated = [{
102930
 
102931
  "use strict";
102932
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__icons__ = __webpack_require__(/*! ./icons */ 177);
102933
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__wordpress_i18n__ = __webpack_require__(/*! @wordpress/i18n */ 522);
102934
  /**
102935
  * Internal dependencies
102936
  */
@@ -103029,7 +103410,7 @@ var variations = [{
103029
  /* harmony default export */ __webpack_exports__["a"] = (variations);
103030
 
103031
  /***/ }),
103032
- /* 522 */
103033
  /*!************************************************************!*\
103034
  !*** ./node_modules/@wordpress/i18n/build-module/index.js ***!
103035
  \************************************************************/
@@ -103044,11 +103425,11 @@ var variations = [{
103044
  /* unused harmony export _n */
103045
  /* unused harmony export _nx */
103046
  /* unused harmony export sprintf */
103047
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectSpread__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectSpread */ 523);
103048
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_tannin__ = __webpack_require__(/*! tannin */ 525);
103049
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_memize__ = __webpack_require__(/*! memize */ 28);
103050
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_memize__);
103051
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_sprintf_js__ = __webpack_require__(/*! sprintf-js */ 530);
103052
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_sprintf_js___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_sprintf_js__);
103053
 
103054
 
@@ -103226,7 +103607,7 @@ function sprintf(format) {
103226
  //# sourceMappingURL=index.js.map
103227
 
103228
  /***/ }),
103229
- /* 523 */
103230
  /*!*****************************************************************!*\
103231
  !*** ./node_modules/@babel/runtime/helpers/esm/objectSpread.js ***!
103232
  \*****************************************************************/
@@ -103236,7 +103617,7 @@ function sprintf(format) {
103236
 
103237
  "use strict";
103238
  /* harmony export (immutable) */ __webpack_exports__["a"] = _objectSpread;
103239
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__defineProperty__ = __webpack_require__(/*! ./defineProperty */ 524);
103240
 
103241
  function _objectSpread(target) {
103242
  for (var i = 1; i < arguments.length; i++) {
@@ -103258,7 +103639,7 @@ function _objectSpread(target) {
103258
  }
103259
 
103260
  /***/ }),
103261
- /* 524 */
103262
  /*!*******************************************************************!*\
103263
  !*** ./node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
103264
  \*******************************************************************/
@@ -103284,7 +103665,7 @@ function _defineProperty(obj, key, value) {
103284
  }
103285
 
103286
  /***/ }),
103287
- /* 525 */
103288
  /*!**************************************!*\
103289
  !*** ./node_modules/tannin/index.js ***!
103290
  \**************************************/
@@ -103294,7 +103675,7 @@ function _defineProperty(obj, key, value) {
103294
 
103295
  "use strict";
103296
  /* harmony export (immutable) */ __webpack_exports__["a"] = Tannin;
103297
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_plural_forms__ = __webpack_require__(/*! @tannin/plural-forms */ 526);
103298
 
103299
 
103300
  /**
@@ -103438,7 +103819,7 @@ Tannin.prototype.dcnpgettext = function( domain, context, singular, plural, n )
103438
 
103439
 
103440
  /***/ }),
103441
- /* 526 */
103442
  /*!****************************************************!*\
103443
  !*** ./node_modules/@tannin/plural-forms/index.js ***!
103444
  \****************************************************/
@@ -103448,7 +103829,7 @@ Tannin.prototype.dcnpgettext = function( domain, context, singular, plural, n )
103448
 
103449
  "use strict";
103450
  /* harmony export (immutable) */ __webpack_exports__["a"] = pluralForms;
103451
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_compile__ = __webpack_require__(/*! @tannin/compile */ 527);
103452
 
103453
 
103454
  /**
@@ -103470,7 +103851,7 @@ function pluralForms( expression ) {
103470
 
103471
 
103472
  /***/ }),
103473
- /* 527 */
103474
  /*!***********************************************!*\
103475
  !*** ./node_modules/@tannin/compile/index.js ***!
103476
  \***********************************************/
@@ -103480,8 +103861,8 @@ function pluralForms( expression ) {
103480
 
103481
  "use strict";
103482
  /* harmony export (immutable) */ __webpack_exports__["a"] = compile;
103483
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_postfix__ = __webpack_require__(/*! @tannin/postfix */ 528);
103484
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__tannin_evaluate__ = __webpack_require__(/*! @tannin/evaluate */ 529);
103485
 
103486
 
103487
 
@@ -103514,7 +103895,7 @@ function compile( expression ) {
103514
 
103515
 
103516
  /***/ }),
103517
- /* 528 */
103518
  /*!***********************************************!*\
103519
  !*** ./node_modules/@tannin/postfix/index.js ***!
103520
  \***********************************************/
@@ -103651,7 +104032,7 @@ function postfix( expression ) {
103651
 
103652
 
103653
  /***/ }),
103654
- /* 529 */
103655
  /*!************************************************!*\
103656
  !*** ./node_modules/@tannin/evaluate/index.js ***!
103657
  \************************************************/
@@ -103774,7 +104155,7 @@ function evaluate( postfix, variables ) {
103774
 
103775
 
103776
  /***/ }),
103777
- /* 530 */
103778
  /*!*****************************************************************************!*\
103779
  !*** ./node_modules/@wordpress/i18n/node_modules/sprintf-js/src/sprintf.js ***!
103780
  \*****************************************************************************/
@@ -104017,7 +104398,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/* global window, exports, define */
104017
 
104018
 
104019
  /***/ }),
104020
- /* 531 */
104021
  /*!***************************************!*\
104022
  !*** ./src/blocks/columns/style.scss ***!
104023
  \***************************************/
@@ -104027,7 +104408,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/* global window, exports, define */
104027
  // removed by extract-text-webpack-plugin
104028
 
104029
  /***/ }),
104030
- /* 532 */
104031
  /*!****************************************!*\
104032
  !*** ./src/blocks/columns/editor.scss ***!
104033
  \****************************************/
@@ -104037,7 +104418,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/* global window, exports, define */
104037
  // removed by extract-text-webpack-plugin
104038
 
104039
  /***/ }),
104040
- /* 533 */
104041
  /*!****************************************!*\
104042
  !*** ./src/blocks/cf7-styler/block.js ***!
104043
  \****************************************/
@@ -104046,10 +104427,10 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/* global window, exports, define */
104046
 
104047
  "use strict";
104048
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
104049
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 534);
104050
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 536);
104051
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
104052
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 537);
104053
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
104054
  /**
104055
  * BLOCK: Contact Form 7 Styler
@@ -104100,7 +104481,7 @@ if (uagb_blocks_info.blocks["uagb/cf7-styler"]["is_active"]) {
104100
  }
104101
 
104102
  /***/ }),
104103
- /* 534 */
104104
  /*!***************************************!*\
104105
  !*** ./src/blocks/cf7-styler/edit.js ***!
104106
  \***************************************/
@@ -104114,7 +104495,7 @@ if (uagb_blocks_info.blocks["uagb/cf7-styler"]["is_active"]) {
104114
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
104115
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
104116
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
104117
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! ./styling */ 535);
104118
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
104119
 
104120
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
@@ -105556,7 +105937,7 @@ var UAGBCF7 = function (_Component) {
105556
  })(UAGBCF7));
105557
 
105558
  /***/ }),
105559
- /* 535 */
105560
  /*!******************************************!*\
105561
  !*** ./src/blocks/cf7-styler/styling.js ***!
105562
  \******************************************/
@@ -105969,7 +106350,7 @@ function styling(props) {
105969
  /* harmony default export */ __webpack_exports__["a"] = (styling);
105970
 
105971
  /***/ }),
105972
- /* 536 */
105973
  /*!*******************************************!*\
105974
  !*** ./src/blocks/cf7-styler/editor.scss ***!
105975
  \*******************************************/
@@ -105979,7 +106360,7 @@ function styling(props) {
105979
  // removed by extract-text-webpack-plugin
105980
 
105981
  /***/ }),
105982
- /* 537 */
105983
  /*!******************************************!*\
105984
  !*** ./src/blocks/cf7-styler/style.scss ***!
105985
  \******************************************/
@@ -105989,7 +106370,7 @@ function styling(props) {
105989
  // removed by extract-text-webpack-plugin
105990
 
105991
  /***/ }),
105992
- /* 538 */
105993
  /*!***************************************!*\
105994
  !*** ./src/blocks/gf-styler/block.js ***!
105995
  \***************************************/
@@ -105998,10 +106379,10 @@ function styling(props) {
105998
 
105999
  "use strict";
106000
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
106001
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 539);
106002
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 541);
106003
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
106004
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 542);
106005
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
106006
  /**
106007
  * BLOCK: Gravity Form Styler
@@ -106052,7 +106433,7 @@ if (uagb_blocks_info.blocks["uagb/gf-styler"]["is_active"]) {
106052
  }
106053
 
106054
  /***/ }),
106055
- /* 539 */
106056
  /*!**************************************!*\
106057
  !*** ./src/blocks/gf-styler/edit.js ***!
106058
  \**************************************/
@@ -106068,7 +106449,7 @@ if (uagb_blocks_info.blocks["uagb/gf-styler"]["is_active"]) {
106068
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
106069
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
106070
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_map__);
106071
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 540);
106072
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
106073
 
106074
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
@@ -107549,7 +107930,7 @@ var UAGBGF = function (_Component) {
107549
  })(UAGBGF));
107550
 
107551
  /***/ }),
107552
- /* 540 */
107553
  /*!*****************************************!*\
107554
  !*** ./src/blocks/gf-styler/styling.js ***!
107555
  \*****************************************/
@@ -108187,7 +108568,7 @@ function styling(props) {
108187
  /* harmony default export */ __webpack_exports__["a"] = (styling);
108188
 
108189
  /***/ }),
108190
- /* 541 */
108191
  /*!******************************************!*\
108192
  !*** ./src/blocks/gf-styler/editor.scss ***!
108193
  \******************************************/
@@ -108197,7 +108578,7 @@ function styling(props) {
108197
  // removed by extract-text-webpack-plugin
108198
 
108199
  /***/ }),
108200
- /* 542 */
108201
  /*!*****************************************!*\
108202
  !*** ./src/blocks/gf-styler/style.scss ***!
108203
  \*****************************************/
@@ -108207,7 +108588,7 @@ function styling(props) {
108207
  // removed by extract-text-webpack-plugin
108208
 
108209
  /***/ }),
108210
- /* 543 */
108211
  /*!****************************************!*\
108212
  !*** ./src/blocks/blockquote/block.js ***!
108213
  \****************************************/
@@ -108216,13 +108597,13 @@ function styling(props) {
108216
 
108217
  "use strict";
108218
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
108219
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 544);
108220
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated__ = __webpack_require__(/*! ./deprecated */ 546);
108221
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 548);
108222
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 178);
108223
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 549);
108224
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
108225
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 550);
108226
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
108227
  /**
108228
  * BLOCK: Quote
@@ -108273,7 +108654,7 @@ registerBlockType("uagb/blockquote", {
108273
  });
108274
 
108275
  /***/ }),
108276
- /* 544 */
108277
  /*!***************************************!*\
108278
  !*** ./src/blocks/blockquote/edit.js ***!
108279
  \***************************************/
@@ -108288,7 +108669,7 @@ registerBlockType("uagb/blockquote", {
108288
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */ 109);
108289
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */ 110);
108290
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */ 111);
108291
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 545);
108292
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
108293
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_map__);
108294
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
@@ -109722,7 +110103,7 @@ var UAGBBlockQuote = function (_Component) {
109722
  /* harmony default export */ __webpack_exports__["a"] = (UAGBBlockQuote);
109723
 
109724
  /***/ }),
109725
- /* 545 */
109726
  /*!******************************************!*\
109727
  !*** ./src/blocks/blockquote/styling.js ***!
109728
  \******************************************/
@@ -110045,7 +110426,7 @@ function styling(props) {
110045
  /* harmony default export */ __webpack_exports__["a"] = (styling);
110046
 
110047
  /***/ }),
110048
- /* 546 */
110049
  /*!*********************************************!*\
110050
  !*** ./src/blocks/blockquote/deprecated.js ***!
110051
  \*********************************************/
@@ -110058,7 +110439,7 @@ function styling(props) {
110058
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames__ = __webpack_require__(/*! classnames */ 0);
110059
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_classnames__);
110060
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
110061
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_TweetButton__ = __webpack_require__(/*! ./components/TweetButton */ 547);
110062
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */ 108);
110063
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Description__ = __webpack_require__(/*! ./components/Description */ 109);
110064
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */ 110);
@@ -110200,7 +110581,7 @@ var deprecated = [{
110200
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
110201
 
110202
  /***/ }),
110203
- /* 547 */
110204
  /*!*********************************************************!*\
110205
  !*** ./src/blocks/blockquote/components/TweetButton.js ***!
110206
  \*********************************************************/
@@ -110274,7 +110655,7 @@ var TweetButton = function (_React$Component) {
110274
  /* harmony default export */ __webpack_exports__["a"] = (TweetButton);
110275
 
110276
  /***/ }),
110277
- /* 548 */
110278
  /*!***************************************!*\
110279
  !*** ./src/blocks/blockquote/save.js ***!
110280
  \***************************************/
@@ -110367,7 +110748,7 @@ function save(props) {
110367
  }
110368
 
110369
  /***/ }),
110370
- /* 549 */
110371
  /*!*******************************************!*\
110372
  !*** ./src/blocks/blockquote/editor.scss ***!
110373
  \*******************************************/
@@ -110377,7 +110758,7 @@ function save(props) {
110377
  // removed by extract-text-webpack-plugin
110378
 
110379
  /***/ }),
110380
- /* 550 */
110381
  /*!******************************************!*\
110382
  !*** ./src/blocks/blockquote/style.scss ***!
110383
  \******************************************/
@@ -110387,7 +110768,7 @@ function save(props) {
110387
  // removed by extract-text-webpack-plugin
110388
 
110389
  /***/ }),
110390
- /* 551 */
110391
  /*!**********************************************!*\
110392
  !*** ./src/blocks/marketing-button/block.js ***!
110393
  \**********************************************/
@@ -110397,12 +110778,12 @@ function save(props) {
110397
  "use strict";
110398
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
110399
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 179);
110400
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 552);
110401
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 554);
110402
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 555);
110403
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 556);
110404
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
110405
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 557);
110406
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
110407
  /**
110408
  * BLOCK: Marketing Button
@@ -110435,7 +110816,7 @@ registerBlockType("uagb/marketing-button", {
110435
  });
110436
 
110437
  /***/ }),
110438
- /* 552 */
110439
  /*!*********************************************!*\
110440
  !*** ./src/blocks/marketing-button/edit.js ***!
110441
  \*********************************************/
@@ -110446,7 +110827,7 @@ registerBlockType("uagb/marketing-button", {
110446
  "use strict";
110447
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
110448
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
110449
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 553);
110450
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
110451
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
110452
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
@@ -111460,7 +111841,7 @@ var UAGBMarketingButtonEdit = function (_Component) {
111460
  /* harmony default export */ __webpack_exports__["a"] = (UAGBMarketingButtonEdit);
111461
 
111462
  /***/ }),
111463
- /* 553 */
111464
  /*!************************************************!*\
111465
  !*** ./src/blocks/marketing-button/styling.js ***!
111466
  \************************************************/
@@ -111678,7 +112059,7 @@ function styling(props) {
111678
  /* harmony default export */ __webpack_exports__["a"] = (styling);
111679
 
111680
  /***/ }),
111681
- /* 554 */
111682
  /*!*********************************************!*\
111683
  !*** ./src/blocks/marketing-button/save.js ***!
111684
  \*********************************************/
@@ -111758,7 +112139,7 @@ function save(props) {
111758
  }
111759
 
111760
  /***/ }),
111761
- /* 555 */
111762
  /*!***************************************************!*\
111763
  !*** ./src/blocks/marketing-button/deprecated.js ***!
111764
  \***************************************************/
@@ -111844,7 +112225,7 @@ var deprecated = [{
111844
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
111845
 
111846
  /***/ }),
111847
- /* 556 */
111848
  /*!************************************************!*\
111849
  !*** ./src/blocks/marketing-button/style.scss ***!
111850
  \************************************************/
@@ -111854,7 +112235,7 @@ var deprecated = [{
111854
  // removed by extract-text-webpack-plugin
111855
 
111856
  /***/ }),
111857
- /* 557 */
111858
  /*!*************************************************!*\
111859
  !*** ./src/blocks/marketing-button/editor.scss ***!
111860
  \*************************************************/
@@ -111864,7 +112245,7 @@ var deprecated = [{
111864
  // removed by extract-text-webpack-plugin
111865
 
111866
  /***/ }),
111867
- /* 558 */
111868
  /*!***********************************************!*\
111869
  !*** ./src/blocks/table-of-contents/block.js ***!
111870
  \***********************************************/
@@ -111874,12 +112255,12 @@ var deprecated = [{
111874
  "use strict";
111875
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
111876
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 180);
111877
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 559);
111878
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 561);
111879
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 562);
111880
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 565);
111881
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
111882
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 566);
111883
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
111884
  /**
111885
  * BLOCK: Table of Contents
@@ -111913,7 +112294,7 @@ registerBlockType("uagb/table-of-contents", {
111913
  });
111914
 
111915
  /***/ }),
111916
- /* 559 */
111917
  /*!**********************************************!*\
111918
  !*** ./src/blocks/table-of-contents/edit.js ***!
111919
  \**********************************************/
@@ -111924,7 +112305,7 @@ registerBlockType("uagb/table-of-contents", {
111924
  "use strict";
111925
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
111926
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
111927
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 560);
111928
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
111929
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
111930
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__);
@@ -113422,7 +113803,7 @@ var UAGBTableOfContentsEdit = function (_Component) {
113422
  }))(UAGBTableOfContentsEdit));
113423
 
113424
  /***/ }),
113425
- /* 560 */
113426
  /*!*************************************************!*\
113427
  !*** ./src/blocks/table-of-contents/styling.js ***!
113428
  \*************************************************/
@@ -113672,7 +114053,7 @@ function styling(props) {
113672
  /* harmony default export */ __webpack_exports__["a"] = (styling);
113673
 
113674
  /***/ }),
113675
- /* 561 */
113676
  /*!**********************************************!*\
113677
  !*** ./src/blocks/table-of-contents/save.js ***!
113678
  \**********************************************/
@@ -113754,7 +114135,7 @@ function save(props) {
113754
  }
113755
 
113756
  /***/ }),
113757
- /* 562 */
113758
  /*!****************************************************!*\
113759
  !*** ./src/blocks/table-of-contents/deprecated.js ***!
113760
  \****************************************************/
@@ -113765,8 +114146,8 @@ function save(props) {
113765
  "use strict";
113766
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
113767
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
113768
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__deprecated_components__ = __webpack_require__(/*! ./deprecated/components */ 563);
113769
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated_table_of_contents__ = __webpack_require__(/*! ./deprecated/table-of-contents */ 564);
113770
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */ 180);
113771
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
113772
  /**
@@ -113941,7 +114322,7 @@ var deprecated = [{
113941
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
113942
 
113943
  /***/ }),
113944
- /* 563 */
113945
  /*!***************************************************************!*\
113946
  !*** ./src/blocks/table-of-contents/deprecated/components.js ***!
113947
  \***************************************************************/
@@ -114180,7 +114561,7 @@ var TableOfContents = function (_Component) {
114180
  /* harmony default export */ __webpack_exports__["a"] = (TableOfContents);
114181
 
114182
  /***/ }),
114183
- /* 564 */
114184
  /*!**********************************************************************!*\
114185
  !*** ./src/blocks/table-of-contents/deprecated/table-of-contents.js ***!
114186
  \**********************************************************************/
@@ -114313,7 +114694,7 @@ var TOC = function (_React$Component) {
114313
  /* harmony default export */ __webpack_exports__["a"] = (TOC);
114314
 
114315
  /***/ }),
114316
- /* 565 */
114317
  /*!*************************************************!*\
114318
  !*** ./src/blocks/table-of-contents/style.scss ***!
114319
  \*************************************************/
@@ -114323,7 +114704,7 @@ var TOC = function (_React$Component) {
114323
  // removed by extract-text-webpack-plugin
114324
 
114325
  /***/ }),
114326
- /* 566 */
114327
  /*!**************************************************!*\
114328
  !*** ./src/blocks/table-of-contents/editor.scss ***!
114329
  \**************************************************/
@@ -114333,7 +114714,7 @@ var TOC = function (_React$Component) {
114333
  // removed by extract-text-webpack-plugin
114334
 
114335
  /***/ }),
114336
- /* 567 */
114337
  /*!************************************!*\
114338
  !*** ./src/blocks/how-to/block.js ***!
114339
  \************************************/
@@ -114342,13 +114723,14 @@ var TOC = function (_React$Component) {
114342
 
114343
  "use strict";
114344
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
114345
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 568);
114346
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 569);
114347
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 572);
114348
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 183);
114349
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
114350
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 573);
114351
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
 
114352
  /**
114353
  * BLOCK: How-To Schema
114354
  */
@@ -114360,6 +114742,7 @@ var TOC = function (_React$Component) {
114360
 
114361
 
114362
 
 
114363
  var __ = wp.i18n.__;
114364
  var registerBlockType = wp.blocks.registerBlockType;
114365
 
@@ -114375,311 +114758,10 @@ registerBlockType("uagb/how-to", {
114375
  },
114376
  attributes: __WEBPACK_IMPORTED_MODULE_1__attributes__["a" /* default */],
114377
  edit: __WEBPACK_IMPORTED_MODULE_2__edit__["a" /* default */],
114378
- save: __WEBPACK_IMPORTED_MODULE_3__save__["a" /* default */]
114379
- });
114380
-
114381
- /***/ }),
114382
- /* 568 */
114383
- /*!*****************************************!*\
114384
- !*** ./src/blocks/how-to/attributes.js ***!
114385
- \*****************************************/
114386
- /*! exports provided: default */
114387
- /*! exports used: default */
114388
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
114389
-
114390
- "use strict";
114391
- /**
114392
- * BLOCK: UAGB How-To Schema Attributes
114393
- */
114394
-
114395
- var __ = wp.i18n.__;
114396
-
114397
-
114398
- var tools = [];
114399
-
114400
- var materials = [];
114401
-
114402
- tools.push({
114403
- "add_required_tools": __("- A Computer.")
114404
- });
114405
-
114406
- materials.push({
114407
- "add_required_materials": __("- A WordPress Website.")
114408
  });
114409
 
114410
- var attributes = {
114411
- block_id: {
114412
- type: "string"
114413
- },
114414
- overallAlignment: {
114415
- type: "string",
114416
- default: "left"
114417
- },
114418
- toolsTitle: {
114419
- type: "string",
114420
- default: __("Required Tools:")
114421
- },
114422
- materialTitle: {
114423
- type: "string",
114424
- default: __("Things Needed?")
114425
- },
114426
- stepsTitle: {
114427
- type: "string",
114428
- default: __("Steps to configure the How-to Schema:")
114429
- },
114430
- tools_count: {
114431
- type: "number",
114432
- default: 1
114433
- },
114434
- material_count: {
114435
- type: "number",
114436
- default: 1
114437
- },
114438
- tools: {
114439
- type: "array",
114440
- default: tools
114441
- },
114442
- materials: {
114443
- type: "array",
114444
- default: materials
114445
- },
114446
- showTotaltime: {
114447
- type: "boolean",
114448
- default: true
114449
- },
114450
- showEstcost: {
114451
- type: "boolean",
114452
- default: true
114453
- },
114454
- showTools: {
114455
- type: "boolean",
114456
- default: true
114457
- },
114458
- showMaterials: {
114459
- type: "boolean",
114460
- default: true
114461
- },
114462
- mainimage: {
114463
- type: "object",
114464
- default: {
114465
- "url": ""
114466
- }
114467
- },
114468
- estCost: {
114469
- type: "string",
114470
- default: __("Total Cost:")
114471
- },
114472
- timeNeeded: {
114473
- type: "string",
114474
- default: __("Total Time Needed :")
114475
- },
114476
- timeIn: {
114477
- type: "string",
114478
- default: __(" Minutes")
114479
- },
114480
- imgSize: {
114481
- type: "string",
114482
- default: "thumbnail"
114483
- },
114484
- timeSpace: {
114485
- type: "number",
114486
- default: 5
114487
- },
114488
- costSpace: {
114489
- type: "number",
114490
- default: 5
114491
- },
114492
- time: {
114493
- type: "string",
114494
- default: "30"
114495
- },
114496
- cost: {
114497
- type: "string",
114498
- default: "65"
114499
- },
114500
- headingTitle: {
114501
- source: "html",
114502
- selector: "h1,h2,h3,h4,h5,h6",
114503
- default: __("How To Configure How-To Schema In Ultimate Addons For Gutenberg?")
114504
- },
114505
- currencyType: {
114506
- type: "string",
114507
- default: " USD"
114508
- },
114509
- headingDesc: {
114510
- source: "html",
114511
- selector: "p",
114512
- default: __("So to get started, you will just need to drag-n-drop the How-to Schema block in the Gutenberg editor. The How-to Schema block can be used on pages that contain a How-to in their title and describe steps to achieve certain requirements.")
114513
- },
114514
- headingAlign: {
114515
- type: "string",
114516
- default: "left"
114517
- },
114518
- descriptionAlign: {
114519
- type: "string",
114520
- default: "left"
114521
- },
114522
- headingColor: {
114523
- type: "string"
114524
- },
114525
- showEstcostcolor: {
114526
- type: "string"
114527
- },
114528
- showTotaltimecolor: {
114529
- type: "string",
114530
- default: ""
114531
- },
114532
- subHeadingColor: {
114533
- type: "string",
114534
- default: ""
114535
- },
114536
- headingTag: {
114537
- type: "string",
114538
- default: "h3"
114539
- },
114540
- headSpace: {
114541
- type: "number",
114542
- default: 15
114543
- },
114544
- headFontFamily: {
114545
- type: "string",
114546
- default: "Default"
114547
- },
114548
- headFontWeight: {
114549
- type: "string"
114550
- },
114551
- headFontSubset: {
114552
- type: "string"
114553
- },
114554
- headFontSizeType: {
114555
- type: "string",
114556
- default: "px"
114557
- },
114558
- headLineHeightType: {
114559
- type: "string",
114560
- default: "em"
114561
- },
114562
- headFontSize: {
114563
- type: "number"
114564
- },
114565
- headFontSizeTablet: {
114566
- type: "number"
114567
- },
114568
- headFontSizeMobile: {
114569
- type: "number"
114570
- },
114571
- headLineHeight: {
114572
- type: "number"
114573
- },
114574
- headLineHeightTablet: {
114575
- type: "number"
114576
- },
114577
- headLineHeightMobile: {
114578
- type: "number"
114579
- },
114580
- subHeadFontFamily: {
114581
- type: "string",
114582
- default: "Default"
114583
- },
114584
- subHeadFontWeight: {
114585
- type: "string"
114586
- },
114587
- subHeadFontSubset: {
114588
- type: "string"
114589
- },
114590
- subHeadFontSize: {
114591
- type: "number"
114592
- },
114593
- subHeadFontSizeType: {
114594
- type: "string",
114595
- default: "px"
114596
- },
114597
- subHeadFontSizeTablet: {
114598
- type: "number"
114599
- },
114600
- subHeadFontSizeMobile: {
114601
- type: "number"
114602
- },
114603
- subHeadLineHeight: {
114604
- type: "number"
114605
- },
114606
- subHeadLineHeightType: {
114607
- type: "string",
114608
- default: "em"
114609
- },
114610
- subHeadLineHeightTablet: {
114611
- type: "number"
114612
- },
114613
- subHeadLineHeightMobile: {
114614
- type: "number"
114615
- },
114616
- separatorSpace: {
114617
- type: "number",
114618
- default: 15
114619
- },
114620
- headLoadGoogleFonts: {
114621
- type: "boolean",
114622
- default: false
114623
- },
114624
- subHeadLoadGoogleFonts: {
114625
- type: "boolean",
114626
- default: false
114627
- },
114628
- priceFontSizeType: {
114629
- type: "string",
114630
- default: "px"
114631
- },
114632
- priceFontSize: {
114633
- type: "number"
114634
- },
114635
- priceFontSizeTablet: {
114636
- type: "number"
114637
- },
114638
- priceFontSizeMobile: {
114639
- type: "number"
114640
- },
114641
- priceFontFamily: {
114642
- type: "string",
114643
- default: "Default"
114644
- },
114645
- priceFontWeight: {
114646
- type: "string"
114647
- },
114648
- priceFontSubset: {
114649
- type: "string"
114650
- },
114651
- priceLineHeightType: {
114652
- type: "string",
114653
- default: "em"
114654
- },
114655
- priceLineHeight: {
114656
- type: "number"
114657
- },
114658
- priceLineHeightTablet: {
114659
- type: "number"
114660
- },
114661
- priceLineHeightMobile: {
114662
- type: "number"
114663
- },
114664
- priceLoadGoogleFonts: {
114665
- type: "boolean",
114666
- default: false
114667
- },
114668
- row_gap: {
114669
- type: "number",
114670
- default: 20
114671
- },
114672
- step_gap: {
114673
- type: "number"
114674
- },
114675
- schema: {
114676
- type: "string",
114677
- default: ""
114678
- }
114679
- };
114680
-
114681
- /* harmony default export */ __webpack_exports__["a"] = (attributes);
114682
-
114683
  /***/ }),
114684
  /* 569 */
114685
  /*!***********************************!*\
@@ -114698,7 +114780,7 @@ var attributes = {
114698
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 571);
114699
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
114700
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
114701
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 183);
114702
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
114703
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
114704
 
@@ -114976,7 +115058,12 @@ var UAGBHowTo = function (_Component) {
114976
  timeSpace = _props3$attributes.timeSpace,
114977
  costSpace = _props3$attributes.costSpace,
114978
  row_gap = _props3$attributes.row_gap,
114979
- step_gap = _props3$attributes.step_gap;
 
 
 
 
 
114980
 
114981
 
114982
  if (mainimage && mainimage["sizes"]) {
@@ -115045,6 +115132,8 @@ var UAGBHowTo = function (_Component) {
115045
  image_icon_html = wp.element.createElement("img", { className: "uagb-howto__source-image", src: url, title: title });
115046
  }
115047
 
 
 
115048
  var getInfoBoxAsChild = [['uagb/info-box', {
115049
  infoBoxTitle: "Step 1",
115050
  iconimgPosition: "left",
@@ -115137,6 +115226,65 @@ var UAGBHowTo = function (_Component) {
115137
  },
115138
  help: __("Note: Time is recommended field for schema. It should be ON")
115139
  }),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115140
  wp.element.createElement(ToggleControl, {
115141
  label: __("Show Estimated Cost"),
115142
  checked: showEstcost,
@@ -115406,6 +115554,13 @@ var UAGBHowTo = function (_Component) {
115406
  );
115407
  };
115408
 
 
 
 
 
 
 
 
115409
  return wp.element.createElement(
115410
  Fragment,
115411
  null,
@@ -115415,8 +115570,11 @@ var UAGBHowTo = function (_Component) {
115415
  mainimage: mainimage,
115416
  showTotaltime: showTotaltime,
115417
  timeNeeded: timeNeeded,
115418
- time: time,
115419
- timeIn: timeIn,
 
 
 
115420
  showEstcost: showEstcost,
115421
  estCost: estCost,
115422
  cost: cost,
@@ -115507,34 +115665,82 @@ var UAGBHowTo = function (_Component) {
115507
  return onReplace([]);
115508
  }
115509
  }),
115510
- showTotaltime && wp.element.createElement(RichText, {
115511
- tagName: "p",
115512
- placeholder: __("30"),
115513
- value: time,
115514
- className: "uagb-howto-timeNeeded-value",
115515
- onChange: function onChange(value) {
115516
- return setAttributes({ time: value });
115517
- },
115518
- onMerge: mergeBlocks,
115519
- unstableOnSplit: this.splitBlock,
115520
- onRemove: function onRemove() {
115521
- return onReplace([]);
115522
- }
115523
- }),
115524
- showTotaltime && wp.element.createElement(RichText, {
115525
- tagName: "p",
115526
- placeholder: __("Minutes"),
115527
- value: timeIn,
115528
- className: "uagb-howto-timeINmin-text",
115529
- onChange: function onChange(value) {
115530
- return setAttributes({ timeIn: value });
115531
- },
115532
- onMerge: mergeBlocks,
115533
- unstableOnSplit: this.splitBlock,
115534
- onRemove: function onRemove() {
115535
- return onReplace([]);
115536
- }
115537
- })
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115538
  ),
115539
  wp.element.createElement(
115540
  "span",
@@ -115742,8 +115948,15 @@ var UAGBHowTo = function (_Component) {
115742
  "step": []
115743
  };
115744
 
 
 
 
 
 
 
 
115745
  if (ownProps.attributes.showTotaltime) {
115746
- json_data.totalTime = "PT" + ownProps.attributes.time + "M";
115747
  }
115748
 
115749
  if (ownProps.attributes.showEstcost) {
@@ -115848,7 +116061,12 @@ var SchemaNotices = function (_Component) {
115848
  currencyType = _props.currencyType,
115849
  tools = _props.tools,
115850
  materials = _props.materials,
115851
- clientId = _props.clientId;
 
 
 
 
 
115852
 
115853
 
115854
  var emptyItems = [];
@@ -115872,12 +116090,9 @@ var SchemaNotices = function (_Component) {
115872
  if (true === showTotaltime && ('undefined' === typeof timeNeeded || '' === timeNeeded)) {
115873
  emptyItems.push('Time Needed Label');
115874
  }
115875
- if (true === showTotaltime && ('undefined' === typeof time || '' === time)) {
115876
  emptyItems.push('Time');
115877
  }
115878
- if (true === showTotaltime && ('undefined' === typeof timeIn || '' === timeIn)) {
115879
- emptyItems.push('Time Unit');
115880
- }
115881
  if (true === showEstcost && ('undefined' === typeof estCost || '' === estCost)) {
115882
  emptyItems.push('Total Cost Label');
115883
  }
@@ -116057,8 +116272,8 @@ function styling(props) {
116057
  ' .uagb-how-to-materials .uagb-how-to-materials-child__wrapper:last-child': {
116058
  "margin-bottom": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](row_gap, 'px')
116059
  },
116060
- ' .uagb-howto-steps__wrap .wp-block.block-editor-block-list__block': {
116061
- 'margin-bottom': __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_generateCSS__["a" /* default */](s_gap, 'px')
116062
  },
116063
  " .block-editor-rich-text__editable.uagb-howto-timeNeeded-text": {
116064
  "font-family": priceFontFamily,
@@ -116067,7 +116282,7 @@ function styling(props) {
116067
  "line-height": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](priceLineHeight, priceLineHeightType),
116068
  "color": showTotaltimecolor
116069
  },
116070
- " .block-editor-rich-text__editable.uagb-howto-timeNeeded-value": {
116071
  "font-family": subHeadFontFamily,
116072
  "font-weight": subHeadFontWeight,
116073
  "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](subHeadFontSize, subHeadFontSizeType),
@@ -116075,7 +116290,7 @@ function styling(props) {
116075
  "color": subHeadingColor,
116076
  "margin-left": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](timeSpace, "px")
116077
  },
116078
- " .block-editor-rich-text__editable.uagb-howto-timeINmin-text ": {
116079
  "font-family": subHeadFontFamily,
116080
  "font-weight": subHeadFontWeight,
116081
  "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](subHeadFontSize, subHeadFontSizeType),
@@ -116308,12 +116523,12 @@ function styling(props) {
116308
  * BLOCK: How-To Schema - Save Block
116309
  */
116310
 
116311
- // Import block dependencies and components.
116312
 
116313
 
116314
  var _wp$blockEditor = wp.blockEditor,
116315
  RichText = _wp$blockEditor.RichText,
116316
  InnerBlocks = _wp$blockEditor.InnerBlocks;
 
116317
 
116318
 
116319
  function save(props) {
@@ -116339,7 +116554,12 @@ function save(props) {
116339
  showTotaltime = attributes.showTotaltime,
116340
  showEstcost = attributes.showEstcost,
116341
  showTools = attributes.showTools,
116342
- showMaterials = attributes.showMaterials;
 
 
 
 
 
116343
 
116344
 
116345
  var url_chk = '';
@@ -116368,6 +116588,15 @@ function save(props) {
116368
  image_icon_html = wp.element.createElement('img', { className: 'uagb-howto__source-image', src: url, title: title });
116369
  }
116370
 
 
 
 
 
 
 
 
 
 
116371
  return wp.element.createElement(
116372
  'div',
116373
  {
@@ -116407,16 +116636,82 @@ function save(props) {
116407
  tagName: 'h4',
116408
  className: 'uagb-howto-timeNeeded-text'
116409
  }),
116410
- wp.element.createElement(RichText.Content, {
116411
- value: time,
116412
- tagName: 'p',
116413
- className: 'uagb-howto-timeNeeded-value'
116414
- }),
116415
- wp.element.createElement(RichText.Content, {
116416
- tagName: 'p',
116417
- value: timeIn,
116418
- className: 'uagb-howto-timeINmin-text'
116419
- })
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116420
  ),
116421
  showEstcost && wp.element.createElement(
116422
  'span',
@@ -116529,6 +116824,236 @@ function save(props) {
116529
 
116530
  /***/ }),
116531
  /* 574 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116532
  /*!*********************************!*\
116533
  !*** ./src/blocks/faq/block.js ***!
116534
  \*********************************/
@@ -116537,12 +117062,12 @@ function save(props) {
116537
 
116538
  "use strict";
116539
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
116540
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 575);
116541
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 576);
116542
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 578);
116543
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 579);
116544
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
116545
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 580);
116546
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
116547
  function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
116548
 
@@ -116613,7 +117138,7 @@ registerBlockType("uagb/faq", {
116613
  addFilter('editor.BlockEdit', 'uagb/faq', withFaq);
116614
 
116615
  /***/ }),
116616
- /* 575 */
116617
  /*!**************************************!*\
116618
  !*** ./src/blocks/faq/attributes.js ***!
116619
  \**************************************/
@@ -116904,6 +117429,14 @@ var attributes = {
116904
  type: "number",
116905
  default: 2
116906
  },
 
 
 
 
 
 
 
 
116907
  schema: {
116908
  type: "string",
116909
  default: ""
@@ -116949,7 +117482,7 @@ var attributes = {
116949
  /* harmony default export */ __webpack_exports__["a"] = (attributes);
116950
 
116951
  /***/ }),
116952
- /* 576 */
116953
  /*!********************************!*\
116954
  !*** ./src/blocks/faq/edit.js ***!
116955
  \********************************/
@@ -116967,7 +117500,7 @@ var attributes = {
116967
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__);
116968
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
116969
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_times__);
116970
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 577);
116971
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_memize__ = __webpack_require__(/*! memize */ 28);
116972
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_memize__);
116973
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
@@ -117240,6 +117773,8 @@ var UAGBFaqEdit = function (_Component) {
117240
  iconSizeTablet = attributes.iconSizeTablet,
117241
  iconSize = attributes.iconSize,
117242
  columns = attributes.columns,
 
 
117243
  enableToggle = attributes.enableToggle,
117244
  equalHeight = attributes.equalHeight,
117245
  questionLeftPaddingTablet = attributes.questionLeftPaddingTablet,
@@ -117340,15 +117875,64 @@ var UAGBFaqEdit = function (_Component) {
117340
  }
117341
  }),
117342
  wp.element.createElement("hr", { className: "uagb-editor__separator" }),
117343
- 'grid' === layout && wp.element.createElement(RangeControl, {
117344
- label: __("Columns"),
117345
- value: columns,
117346
- onChange: function onChange(value) {
117347
- return setAttributes({ columns: value });
117348
- },
117349
- min: 0,
117350
- max: 6
117351
- }),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117352
  'grid' === layout && wp.element.createElement(
117353
  Fragment,
117354
  null,
@@ -118340,11 +118924,12 @@ var UAGBFaqEdit = function (_Component) {
118340
  }(Component);
118341
 
118342
  /* harmony default export */ __webpack_exports__["a"] = (compose(withSelect(function (select, ownProps) {
118343
-
118344
  var faq_data = {};
118345
  var json_data = {
118346
  "@context": "https://schema.org",
118347
  "@type": "FAQPage",
 
118348
  "mainEntity": []
118349
  };
118350
  var faqChildBlocks = select('core/block-editor').getBlocks(ownProps.clientId);
@@ -118368,7 +118953,7 @@ var UAGBFaqEdit = function (_Component) {
118368
  }))(UAGBFaqEdit));
118369
 
118370
  /***/ }),
118371
- /* 577 */
118372
  /*!***********************************!*\
118373
  !*** ./src/blocks/faq/styling.js ***!
118374
  \***********************************/
@@ -118446,6 +119031,8 @@ function styling(props) {
118446
  iconSizeMobile = _props$attributes.iconSizeMobile,
118447
  iconSizeTablet = _props$attributes.iconSizeTablet,
118448
  columns = _props$attributes.columns,
 
 
118449
  questionLeftPaddingTablet = _props$attributes.questionLeftPaddingTablet,
118450
  questionBottomPaddingTablet = _props$attributes.questionBottomPaddingTablet,
118451
  questionLeftPaddingDesktop = _props$attributes.questionLeftPaddingDesktop,
@@ -118653,6 +119240,12 @@ function styling(props) {
118653
  selectors[".uagb-faq-layout-grid .block-editor-inner-blocks > .block-editor-block-list__layout "] = {
118654
  "grid-template-columns": 'repeat(' + columns + ', 1fr)'
118655
  };
 
 
 
 
 
 
118656
  }
118657
 
118658
  var styling_css = '';
@@ -118670,7 +119263,7 @@ function styling(props) {
118670
  /* harmony default export */ __webpack_exports__["a"] = (styling);
118671
 
118672
  /***/ }),
118673
- /* 578 */
118674
  /*!********************************!*\
118675
  !*** ./src/blocks/faq/save.js ***!
118676
  \********************************/
@@ -118731,7 +119324,7 @@ function save(props) {
118731
  }
118732
 
118733
  /***/ }),
118734
- /* 579 */
118735
  /*!***********************************!*\
118736
  !*** ./src/blocks/faq/style.scss ***!
118737
  \***********************************/
@@ -118741,7 +119334,7 @@ function save(props) {
118741
  // removed by extract-text-webpack-plugin
118742
 
118743
  /***/ }),
118744
- /* 580 */
118745
  /*!************************************!*\
118746
  !*** ./src/blocks/faq/editor.scss ***!
118747
  \************************************/
@@ -118751,7 +119344,7 @@ function save(props) {
118751
  // removed by extract-text-webpack-plugin
118752
 
118753
  /***/ }),
118754
- /* 581 */
118755
  /*!***************************************!*\
118756
  !*** ./src/blocks/faq-child/block.js ***!
118757
  \***************************************/
@@ -118760,14 +119353,14 @@ function save(props) {
118760
 
118761
  "use strict";
118762
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
118763
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 184);
118764
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 582);
118765
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 583);
118766
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 584);
118767
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
118768
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 585);
118769
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
118770
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 586);
118771
  /**
118772
  * BLOCK: FAQ - Schema - Child
118773
  */
@@ -118800,7 +119393,7 @@ registerBlockType("uagb/faq-child", {
118800
  });
118801
 
118802
  /***/ }),
118803
- /* 582 */
118804
  /*!**************************************!*\
118805
  !*** ./src/blocks/faq-child/edit.js ***!
118806
  \**************************************/
@@ -118981,7 +119574,7 @@ var UAGBFaqChildEdit = function (_Component) {
118981
  /* harmony default export */ __webpack_exports__["a"] = (UAGBFaqChildEdit);
118982
 
118983
  /***/ }),
118984
- /* 583 */
118985
  /*!**************************************!*\
118986
  !*** ./src/blocks/faq-child/save.js ***!
118987
  \**************************************/
@@ -119076,7 +119669,7 @@ function save(props) {
119076
  }
119077
 
119078
  /***/ }),
119079
- /* 584 */
119080
  /*!*****************************************!*\
119081
  !*** ./src/blocks/faq-child/style.scss ***!
119082
  \*****************************************/
@@ -119086,7 +119679,7 @@ function save(props) {
119086
  // removed by extract-text-webpack-plugin
119087
 
119088
  /***/ }),
119089
- /* 585 */
119090
  /*!******************************************!*\
119091
  !*** ./src/blocks/faq-child/editor.scss ***!
119092
  \******************************************/
@@ -119096,7 +119689,7 @@ function save(props) {
119096
  // removed by extract-text-webpack-plugin
119097
 
119098
  /***/ }),
119099
- /* 586 */
119100
  /*!********************************************!*\
119101
  !*** ./src/blocks/faq-child/deprecated.js ***!
119102
  \********************************************/
@@ -119108,7 +119701,7 @@ function save(props) {
119108
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
119109
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
119110
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
119111
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 184);
119112
  /**
119113
  * BLOCK: FAQ-Child - Deprecated Block
119114
  */
@@ -119196,7 +119789,7 @@ var deprecated = [{
119196
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
119197
 
119198
  /***/ }),
119199
- /* 587 */
119200
  /*!*******************************************!*\
119201
  !*** ./src/blocks/inline-notice/block.js ***!
119202
  \*******************************************/
@@ -119205,12 +119798,12 @@ var deprecated = [{
119205
 
119206
  "use strict";
119207
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
119208
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 588);
119209
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 589);
119210
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 591);
119211
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 592);
119212
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
119213
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 593);
119214
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
119215
  /**
119216
  * BLOCK: Inline Notice Block.
@@ -119241,7 +119834,7 @@ registerBlockType("uagb/inline-notice", {
119241
  });
119242
 
119243
  /***/ }),
119244
- /* 588 */
119245
  /*!************************************************!*\
119246
  !*** ./src/blocks/inline-notice/attributes.js ***!
119247
  \************************************************/
@@ -119263,8 +119856,9 @@ var attributes = {
119263
  default: null
119264
  },
119265
  noticeTitle: {
 
119266
  source: "html",
119267
- selector: "h1,h2,h3,h4,h5,h6,span,p",
119268
  default: "Notice Title"
119269
  },
119270
  headingTag: {
@@ -119415,7 +120009,7 @@ var attributes = {
119415
  /* harmony default export */ __webpack_exports__["a"] = (attributes);
119416
 
119417
  /***/ }),
119418
- /* 589 */
119419
  /*!******************************************!*\
119420
  !*** ./src/blocks/inline-notice/edit.js ***!
119421
  \******************************************/
@@ -119426,7 +120020,7 @@ var attributes = {
119426
  "use strict";
119427
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
119428
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
119429
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 590);
119430
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
119431
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
119432
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__);
@@ -119935,7 +120529,7 @@ var UAGBInlineNoticeEdit = function (_Component) {
119935
  /* harmony default export */ __webpack_exports__["a"] = (UAGBInlineNoticeEdit);
119936
 
119937
  /***/ }),
119938
- /* 590 */
119939
  /*!*********************************************!*\
119940
  !*** ./src/blocks/inline-notice/styling.js ***!
119941
  \*********************************************/
@@ -120083,7 +120677,7 @@ function styling(props) {
120083
  /* harmony default export */ __webpack_exports__["a"] = (styling);
120084
 
120085
  /***/ }),
120086
- /* 591 */
120087
  /*!******************************************!*\
120088
  !*** ./src/blocks/inline-notice/save.js ***!
120089
  \******************************************/
@@ -120155,7 +120749,7 @@ function save(props) {
120155
  }
120156
 
120157
  /***/ }),
120158
- /* 592 */
120159
  /*!*********************************************!*\
120160
  !*** ./src/blocks/inline-notice/style.scss ***!
120161
  \*********************************************/
@@ -120165,7 +120759,7 @@ function save(props) {
120165
  // removed by extract-text-webpack-plugin
120166
 
120167
  /***/ }),
120168
- /* 593 */
120169
  /*!**********************************************!*\
120170
  !*** ./src/blocks/inline-notice/editor.scss ***!
120171
  \**********************************************/
@@ -120175,7 +120769,7 @@ function save(props) {
120175
  // removed by extract-text-webpack-plugin
120176
 
120177
  /***/ }),
120178
- /* 594 */
120179
  /*!***************************************!*\
120180
  !*** ./src/blocks/wp-search/block.js ***!
120181
  \***************************************/
@@ -120183,13 +120777,13 @@ function save(props) {
120183
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
120184
 
120185
  "use strict";
120186
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__style_scss__ = __webpack_require__(/*! ./style.scss */ 595);
120187
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__style_scss__);
120188
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 596);
120189
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__editor_scss__);
120190
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 597);
120191
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 598);
120192
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 600);
120193
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
120194
  /**
120195
  * BLOCK: WP-Search
@@ -120221,7 +120815,7 @@ registerBlockType("uagb/wp-search", {
120221
  });
120222
 
120223
  /***/ }),
120224
- /* 595 */
120225
  /*!*****************************************!*\
120226
  !*** ./src/blocks/wp-search/style.scss ***!
120227
  \*****************************************/
@@ -120231,7 +120825,7 @@ registerBlockType("uagb/wp-search", {
120231
  // removed by extract-text-webpack-plugin
120232
 
120233
  /***/ }),
120234
- /* 596 */
120235
  /*!******************************************!*\
120236
  !*** ./src/blocks/wp-search/editor.scss ***!
120237
  \******************************************/
@@ -120241,7 +120835,7 @@ registerBlockType("uagb/wp-search", {
120241
  // removed by extract-text-webpack-plugin
120242
 
120243
  /***/ }),
120244
- /* 597 */
120245
  /*!**************************************!*\
120246
  !*** ./src/blocks/wp-search/save.js ***!
120247
  \**************************************/
@@ -120339,7 +120933,7 @@ function save(props) {
120339
  }
120340
 
120341
  /***/ }),
120342
- /* 598 */
120343
  /*!**************************************!*\
120344
  !*** ./src/blocks/wp-search/edit.js ***!
120345
  \**************************************/
@@ -120348,12 +120942,12 @@ function save(props) {
120348
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
120349
 
120350
  "use strict";
120351
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__styling__ = __webpack_require__(/*! ./styling */ 599);
120352
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 6);
120353
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
120354
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_classnames__ = __webpack_require__(/*! classnames */ 0);
120355
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_classnames__);
120356
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 81);
120357
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
120358
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
120359
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
@@ -121232,7 +121826,7 @@ var UAGBWpSearchEdit = function (_Component) {
121232
  /* harmony default export */ __webpack_exports__["a"] = (UAGBWpSearchEdit);
121233
 
121234
  /***/ }),
121235
- /* 599 */
121236
  /*!*****************************************!*\
121237
  !*** ./src/blocks/wp-search/styling.js ***!
121238
  \*****************************************/
@@ -121483,7 +122077,7 @@ function styling(props) {
121483
  /* harmony default export */ __webpack_exports__["a"] = (styling);
121484
 
121485
  /***/ }),
121486
- /* 600 */
121487
  /*!********************************************!*\
121488
  !*** ./src/blocks/wp-search/attributes.js ***!
121489
  \********************************************/
@@ -121714,5 +122308,1435 @@ var attributes = {
121714
 
121715
  /* harmony default export */ __webpack_exports__["a"] = (attributes);
121716
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121717
  /***/ })
121718
  /******/ ]);
60
  /******/ __webpack_require__.p = "";
61
  /******/
62
  /******/ // Load entry module and return exports
63
+ /******/ return __webpack_require__(__webpack_require__.s = 186);
64
  /******/ })
65
  /************************************************************************/
66
  /******/ ([
190
  "faq": el("svg", { width: 20, height: 20 }, el("path", { fill: "#4a00e0", d: "M10.95 14.645c0 0.524-0.425 0.949-0.949 0.949s-0.949-0.425-0.949-0.949c0-0.524 0.425-0.949 0.949-0.949s0.949 0.425 0.949 0.949z" }), el("path", { fill: "#4a00e0", d: "M10.001 0.292c-5.366 0-9.709 4.342-9.709 9.708s4.342 9.708 9.709 9.708c5.365 0 9.707-4.342 9.707-9.708 0-5.365-4.342-9.708-9.707-9.708zM10.001 18.643c-4.777 0-8.644-3.864-8.644-8.643 0-4.776 3.865-8.643 8.644-8.643 4.777 0 8.642 3.865 8.642 8.643s-3.865 8.643-8.642 8.643z" }), el("path", { fill: "#4a00e0", d: "M10.001 5.165c-1.674 0-3.034 1.361-3.034 3.033 0 0.42 0.339 0.76 0.758 0.76s0.759-0.34 0.759-0.76c0-0.836 0.68-1.516 1.518-1.516 0.835 0 1.516 0.68 1.516 1.516s-0.681 1.519-1.516 1.519c-0.421 0-0.759 0.339-0.759 0.757v1.897c0 0.417 0.338 0.757 0.759 0.757 0.418 0 0.758-0.34 0.758-0.757v-1.234c1.308-0.337 2.275-1.527 2.275-2.938-0.001-1.673-1.363-3.034-3.034-3.034z" })),
191
  "how_to": el("svg", { width: 20, height: 20, viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M29.539 1.258l-27.674 9.042c-0.782 0.256-0.894 1.318-0.182 1.733l10.458 6.082c0.33 0.189 0.742 0.166 1.048-0.059l2.939-2.182-2.182 2.939c-0.229 0.306-0.251 0.72-0.059 1.048l6.082 10.458c0.413 0.71 1.477 0.598 1.733-0.184l9.040-27.672c0.243-0.742-0.461-1.445-1.202-1.203v0zM20.549 27.518l-4.696-8.075 5.661-7.622c0.282-0.381 0.243-0.909-0.091-1.243-0.336-0.334-0.864-0.373-1.245-0.091l-7.622 5.662-8.074-4.696 23.862-7.798-7.795 23.864zM11.229 22.122l-6.336 6.338c-0.373 0.37-0.978 0.37-1.349 0-0.373-0.374-0.373-0.978 0-1.35l6.334-6.336c0.373-0.374 0.978-0.374 1.35 0 0.371 0.371 0.371 0.976 0 1.349zM2.858 22.362c-0.371-0.371-0.371-0.978 0-1.349l2.501-2.501c0.373-0.374 0.976-0.374 1.349 0 0.373 0.371 0.373 0.974 0 1.349l-2.501 2.501c-0.373 0.373-0.976 0.373-1.349 0zM13.49 25.293c0.371 0.373 0.371 0.978 0 1.35l-2.501 2.501c-0.186 0.184-0.43 0.278-0.675 0.278-0.842 0-1.277-1.027-0.674-1.63l2.501-2.501c0.37-0.371 0.976-0.371 1.349 0.002v0z" })),
192
  "inline_notice": el("svg", { width: 20, height: 20, viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M30.69 25.701l-13.094-21.389c-0.35-0.571-0.96-0.912-1.63-0.912h-0.002c-0.67 0-1.28 0.344-1.629 0.915l-13.026 21.389c-0.352 0.578-0.374 1.28-0.064 1.882 0.304 0.59 0.878 0.966 1.534 1.013 0.045 0.003 0.090 0.005 0.134 0.005h26.168c0.045 0 0.093-0.002 0.134-0.005 0.658-0.045 1.232-0.422 1.538-1.013 0.312-0.606 0.288-1.307-0.064-1.885zM3.458 26.403l12.507-20.541 12.576 20.541h-25.083z" }), el("path", { fill: "#4a00e0", d: "M15.966 11.242c-0.533 0-0.965 0.432-0.965 0.965v8.037c0 0.531 0.432 0.966 0.965 0.966s0.965-0.432 0.965-0.966v-8.037c0-0.533-0.432-0.965-0.965-0.965z" }), el("path", { fill: "#4a00e0", d: "M16.946 23.702c0 0.532-0.431 0.963-0.963 0.963s-0.963-0.431-0.963-0.963c0-0.532 0.431-0.963 0.963-0.963s0.963 0.431 0.963 0.963z" })),
193
+ "wp_search": el("svg", { width: 20, height: 20, viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M20.433 1.068c-5.789 0-10.499 4.71-10.499 10.5 0 2.58 0.936 4.945 2.486 6.775l-1.187 1.187-0.618-0.618c-0.342-0.342-0.896-0.342-1.238 0l-7.542 7.54c-1.024 1.024-1.024 2.689 0 3.713s2.689 1.023 3.712 0l7.541-7.541c0.341-0.342 0.341-0.895 0-1.237l-0.619-0.62 1.187-1.187c1.83 1.55 4.196 2.486 6.776 2.486 5.791 0 10.499-4.71 10.499-10.499s-4.708-10.499-10.499-10.499zM4.311 28.927c-0.341 0.34-0.897 0.34-1.238 0s-0.341-0.896 0-1.238l4.447-4.447 1.238 1.238-4.447 4.447zM9.996 23.242l-1.238-1.238 1.238-1.238 1.238 1.238-1.238 1.238zM20.433 20.317c-4.824 0-8.749-3.924-8.749-8.749s3.925-8.75 8.749-8.75c4.826 0 8.749 3.925 8.749 8.75s-3.924 8.749-8.749 8.749z" })),
194
+ "taxonomy_list": el("svg", { width: 20, height: 20, viewBox: "0 0 38 32" }, el("path", { fill: "#4a00e0", d: "M14 24.68h-2.4c-0.24-0.96-0.72-1.84-1.4-2.52l1.28-2c0.44-0.68 0.24-1.6-0.44-2.040s-1.6-0.24-2.040 0.44l-1.28 2c-0.56-0.2-1.2-0.28-1.8-0.28-3.24 0-5.88 2.64-5.88 5.88s2.68 5.84 5.92 5.84c2.72 0 5.040-1.88 5.68-4.4h2.4c0.8 0 1.48-0.64 1.48-1.48-0.040-0.8-0.68-1.44-1.52-1.44zM5.96 29.080c-1.6 0-2.92-1.32-2.92-2.92s1.32-2.92 2.92-2.92 2.92 1.32 2.92 2.92c0 1.6-1.32 2.92-2.92 2.92z" }), el("path", { fill: "#4a00e0", d: "M31.76 20.24c-0.64 0-1.24 0.12-1.8 0.28l-1.28-2c-0.44-0.68-1.36-0.88-2.040-0.44s-0.88 1.36-0.44 2.040l1.28 2c-0.64 0.72-1.16 1.56-1.4 2.52h-2.4c-0.8 0-1.48 0.64-1.48 1.48 0 0.8 0.64 1.48 1.48 1.48h2.4c0.64 2.52 2.96 4.4 5.68 4.4 3.24 0 5.88-2.64 5.88-5.88s-2.64-5.88-5.88-5.88zM31.76 29.080c-1.6 0-2.92-1.32-2.92-2.92s1.32-2.92 2.92-2.92c1.6 0 2.92 1.32 2.92 2.92 0.040 1.6-1.28 2.92-2.92 2.92z" }), el("path", { fill: "#4a00e0", d: "M24 13.92c0.68-0.44 0.88-1.36 0.44-2.040l-1.28-2c0.96-1.040 1.56-2.44 1.56-4 0-3.24-2.64-5.88-5.84-5.88s-5.88 2.64-5.88 5.88c0 1.56 0.6 2.96 1.56 4l-1.28 2c-0.44 0.68-0.24 1.6 0.44 2.040s1.6 0.24 2.040-0.44l1.28-2c0.56 0.2 1.2 0.28 1.8 0.28s1.24-0.12 1.8-0.28l1.28 2c0.48 0.68 1.4 0.88 2.080 0.44zM18.88 8.8c-1.6 0-2.92-1.32-2.92-2.92s1.32-2.92 2.92-2.92 2.92 1.32 2.92 2.92c0 1.6-1.32 2.92-2.92 2.92z" }))
195
  };
196
 
197
  /* harmony default export */ __webpack_exports__["a"] = (UAGB_Block_Icons);
208
  "use strict";
209
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__UAGBIcon__ = __webpack_require__(/*! ./UAGBIcon */ 9);
210
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__UAGBIcon___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__UAGBIcon__);
211
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__parseIcon__ = __webpack_require__(/*! ./parseIcon */ 416);
212
  /**
213
  * Set inline CSS class.
214
  * @param {object} props - The block object.
546
  /* WEBPACK VAR INJECTION */(function(process) {
547
 
548
  if (process.env.NODE_ENV === 'production') {
549
+ module.exports = __webpack_require__(/*! ./cjs/react.production.min.js */ 259);
550
  } else {
551
+ module.exports = __webpack_require__(/*! ./cjs/react.development.js */ 260);
552
  }
553
 
554
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
563
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
564
 
565
  "use strict";
566
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__font_typography__ = __webpack_require__(/*! ./font-typography */ 190);
567
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__range_typography__ = __webpack_require__(/*! ./range-typography */ 280);
568
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 281);
569
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 282);
570
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
571
  /* unused harmony reexport TypographyStyles */
572
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
810
  "use strict";
811
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(/*! prop-types */ 15);
812
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__);
813
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_webfontloader__ = __webpack_require__(/*! webfontloader */ 283);
814
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_webfontloader___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_webfontloader__);
815
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
816
 
946
  /***/ (function(module, exports, __webpack_require__) {
947
 
948
  var baseTimes = __webpack_require__(/*! ./_baseTimes */ 124),
949
+ castFunction = __webpack_require__(/*! ./_castFunction */ 398),
950
+ toInteger = __webpack_require__(/*! ./toInteger */ 72);
951
 
952
  /** Used as references for various `Number` constants. */
953
  var MAX_SAFE_INTEGER = 9007199254740991;
1024
  * https://opensource.org/licenses/MIT
1025
  *
1026
  */
1027
+ !function(e,t){ true?module.exports=t(__webpack_require__(/*! prop-types */ 15),__webpack_require__(/*! react */ 6),__webpack_require__(/*! classnames */ 0),__webpack_require__(/*! react-dom */ 18),__webpack_require__(/*! react-transition-group */ 408)):"function"==typeof define&&define.amd?define(["prop-types","react","classnames","react-dom","react-transition-group"],t):"object"==typeof exports?exports.FontIconPicker=t(require("prop-types"),require("react"),require("classnames"),require("react-dom"),require("react-transition-group")):e.FontIconPicker=t(e.PropTypes,e.React,e.classNames,e.ReactDOM,e.ReactTransitionGroup)}(window,function(e,t,r,n,a){return function(e){var t={};function r(n){if(t[n])return t[n].exports;var a=t[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,r),a.l=!0,a.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},r.r=function(e){Object.defineProperty(e,"__esModule",{value:!0})},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=15)}([function(t,r){t.exports=e},function(e,r){e.exports=t},function(e,t,r){"use strict";function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function a(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function o(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}Object.defineProperty(t,"__esModule",{value:!0}),t.flattenPossiblyCategorizedSource=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(Array.isArray(e))return o(e);if(null!==t)return void 0!==e[t]?o(e[t]):[];var r=[],n=function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{},n=Object.keys(r);"function"==typeof Object.getOwnPropertySymbols&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(e){return Object.getOwnPropertyDescriptor(r,e).enumerable}))),n.forEach(function(t){a(e,t,r[t])})}return e}({},e);return Object.keys(n).forEach(function(e){r=o(r).concat(o(n[e]))}),r},t.getPossibleCategories=function(e){return Array.isArray(e)?null:Object.keys(e)},t.convertToHex=function(e){return String.fromCodePoint(parseInt(e,10))},t.isArrayEqual=function(e,t){if(!Array.isArray(e)||!Array.isArray(t))return!1;var r=o(e);r.sort();var n=o(t);return n.sort(),JSON.stringify(r)===JSON.stringify(n)},t.getOffset=function(e){var t=e.getBoundingClientRect(),r=window.pageXOffset||document.documentElement.scrollLeft,n=window.pageYOffset||document.documentElement.scrollTop;return{top:t.top+n,left:t.left+r}},t.getSourceType=function(e){return null===e?"null":"object"!==n(e)||Array.isArray(e)?Array.isArray(e)?"array":n(e):"object"},t.InvalidSourceException=function(e,t){this.givenType=e,this.requiredType=t,this.message="Expected of type: ".concat(this.requiredType,", found: ").concat(this.givenType),this.toString=function(){return"Invalid Source Exception: ".concat(this.message)}},t.fuzzySearch=function(e,t){e=e.toLowerCase();var r=(t=t.toLowerCase()).length,n=e.length;if(n>r)return!1;if(n===r)return e===t;e:for(var a=0,o=0;a<n;a++){for(var l=e.codePointAt(a);o<r;)if(t.codePointAt(o++)===l)continue e;return!1}return!0},t.debounce=void 0,t.debounce=function(e,t){var r;return function(){var n=this,a=arguments;clearTimeout(r),r=setTimeout(function(){return e.apply(n,a)},t)}}},function(e,t){e.exports=r},,,function(e,t){e.exports=n},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=u(r(1)),a=r(6),o=u(r(0)),l=u(r(3)),i=r(2);function u(e){return e&&e.__esModule?e:{default:e}}function c(e){return(c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function f(e,t,r){return t&&s(e.prototype,t),r&&s(e,r),e}function d(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var p=function(e){function t(e){var r,n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,n=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!n||"object"!==c(n)&&"function"!=typeof n?d(this):n,Object.defineProperty(d(r),"syncPortalPosition",{configurable:!0,enumerable:!0,writable:!0,value:function(){r.resetPortalPosition(),r.fixWindowOverflow()}}),Object.defineProperty(d(r),"fixWindowOverflow",{configurable:!0,enumerable:!0,writable:!0,value:function(){var e=r.props.domRef.current.offsetWidth,t=r.props.domRef.current.offsetHeight,n=window,a=n.innerWidth,o=n.pageYOffset,l=document.documentElement.clientHeight,u=(0,i.getOffset)(r.props.domRef.current),c=u.left,s=u.top,f="self"===r.state.appendRoot?r.props.domRef.current:r.state.appendRoot,d=(0,i.getOffset)(f),p=r.props.btnRef.current,h=r.props.domRef.current,y=(0,i.getOffset)(p),b=getComputedStyle(p),g=(parseInt(b.borderTop,10)||0)+(parseInt(b.borderBottom,10)||0);if(c+e>a-20){var m=y.left+r.props.btnRef.current.offsetWidth-(e+d.left);m+d.left<0&&(m=10-d.left),h.style.left="".concat(m,"px")}t+s-o>l&&y.top-t>0&&("self"===r.state.appendRoot?h.style.top="-".concat(t-g,"px"):h.style.top="".concat(y.top+g-t,"px"))}}),r.state={},r.debouncedSyncPortalPosition=(0,i.debounce)(r.syncPortalPosition,250),r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),f(t,null,[{key:"getDerivedStateFromProps",value:function(e){var r=t.calculateAppendAndClass(e.appendRoot);return{appendRoot:r.appendRoot,portalClasses:r.portalClasses}}},{key:"calculateAppendAndClass",value:function(e){var t="self",r=(0,l.default)({"rfipdropdown--portal":!1!==e});return!1!==e&&(t=document.querySelector(e)),{portalClasses:r,appendRoot:t}}}]),f(t,[{key:"componentDidMount",value:function(){window.addEventListener("resize",this.debouncedSyncPortalPosition),window.addEventListener("scroll",this.debouncedSyncPortalPosition),this.syncPortalPosition()}},{key:"componentDidUpdate",value:function(){this.syncPortalPosition()}},{key:"componentWillUnmount",value:function(){window.removeEventListener("resize",this.debouncedSyncPortalPosition),window.removeEventListener("scroll",this.debouncedSyncPortalPosition)}},{key:"positionPortal",value:function(){var e=this.props.domRef.current.style.display;this.props.domRef.current.style.display="none";var t=this.props.btnRef.current,r=(0,i.getOffset)(t),n=(0,i.getOffset)(this.state.appendRoot),a=t.offsetHeight;this.props.domRef.current.style.left="".concat(r.left-n.left,"px"),this.props.domRef.current.style.top="".concat(r.top+a,"px"),this.props.domRef.current.style.display=e}},{key:"resetPortalPosition",value:function(){var e=this.props.domRef.current;"self"===this.state.appendRoot?e.style.top="":this.positionPortal()}},{key:"render",value:function(){var e=(0,l.default)(this.props.className,this.state.portalClasses),t=n.default.createElement("div",{className:e,ref:this.props.domRef},this.props.children);return"self"===this.state.appendRoot?t:(0,a.createPortal)(t,this.state.appendRoot)}}]),t}();Object.defineProperty(p,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{appendRoot:o.default.oneOfType([o.default.bool,o.default.string]),children:o.default.node.isRequired,domRef:o.default.object.isRequired,btnRef:o.default.object.isRequired,className:o.default.string.isRequired}}),Object.defineProperty(p,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{appendRoot:!1}});var h=p;t.default=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=i(r(1)),a=i(r(0)),o=i(r(3)),l=r(2);function i(e){return e&&e.__esModule?e:{default:e}}function u(e){return(u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function c(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function f(e,t,r){return t&&s(e.prototype,t),r&&s(e,r),e}function d(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var p=function(e){function t(e){var r,n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,n=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!n||"object"!==u(n)&&"function"!=typeof n?d(this):n,Object.defineProperty(d(r),"handleChangePage",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,a=r.props.currentPage,o=r.state.totalPage;null!==n?"next"===n?a+=1:a-=1:a=parseInt(e.target.value,10)-1,a<0&&(a=0),a>o-1&&(a=o-1),t=a+1,null===n&&Number.isNaN(a)&&(a=0,t=""),r.setState({viewPage:t}),r.props.handleChangePage(a)}}),Object.defineProperty(d(r),"handlePageKeyBoard",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){13!==e.keyCode&&32!==e.keyCode||r.handleChangePage({},t)}}),Object.defineProperty(d(r),"handleChangeValue",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.props.handleChangeValue(e)}}),Object.defineProperty(d(r),"handleValueKeyboard",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){13!==e.keyCode&&32!==e.keyCode||r.handleChangeValue(t)}}),r.state={viewPage:r.props.currentPage+1},r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),f(t,null,[{key:"getDerivedStateFromProps",value:function(e,r){var n=t.getCategoryFilteredState(e.currentCategory,e.categories,e.icons),a=t.getCategoryFilteredState(e.currentCategory,e.categories,null===e.search?e.icons:e.search),o=t.getActiveIcons(n,a,e.currentSearch),l=o.activeIcons,i=o.activeTitles,u=e.currentPage,c=e.iconsPerPage,s={iconView:t.getCurrentViewIcons(l,c,u),titleView:t.getCurrentViewIcons(i,c,u),totalPage:Math.ceil(l.length/c)};return""!==r.viewPage&&(s.viewPage=e.currentPage+1),s}},{key:"getActiveIcons",value:function(e,t,r){var n=c(e),a=c(t);if(""===r||null===r)return{activeIcons:n,activeTitles:a};var o=[],i=[];return n.forEach(function(e,n){(0,l.fuzzySearch)(r,t[n])&&(o.push(e),i.push(t[n]))}),{activeIcons:o,activeTitles:i}}},{key:"getCategoryFilteredState",value:function(e,t,r){var n=null,a=(0,l.getSourceType)(r);if(Array.isArray(t)){if("object"!==a)throw new l.InvalidSourceException(a,"object")}else if("array"!==a)throw new l.InvalidSourceException(a,"array");return 0!==e&&Array.isArray(t)&&(n=t[e]||null),(0,l.flattenPossiblyCategorizedSource)(r,n)}},{key:"getCurrentViewIcons",value:function(e,t,r){var n=r*t,a=(r+1)*t;return e.slice(n,a)}}]),f(t,[{key:"renderPager",value:function(){var e=this;if(this.state.totalPage<1)return null;var t=this.props.currentPage>0?n.default.createElement("span",{className:"rfipicons__left",role:"button",tabIndex:0,onKeyDown:function(t){return e.handlePageKeyBoard(t,"prev")},onClick:function(t){return e.handleChangePage(t,"prev")}},n.default.createElement("span",{role:"presentation",className:"rfipicons__label","aria-label":"Left"},n.default.createElement("i",{className:"fipicon-angle-left"}))):null,r=this.props.currentPage<this.state.totalPage-1?n.default.createElement("span",{className:"rfipicons__right",role:"button",tabIndex:0,onKeyDown:function(t){return e.handlePageKeyBoard(t,"next")},onClick:function(t){return e.handleChangePage(t,"next")}},n.default.createElement("span",{role:"presentation",className:"rfipicons__label","aria-label":"Right"},n.default.createElement("i",{className:"fipicon-angle-right"}))):null;return n.default.createElement("div",{className:"rfipicons__pager"},n.default.createElement("div",{className:"rfipicons__num"},n.default.createElement("input",{value:this.state.viewPage,onChange:this.handleChangePage,className:"rfipicons__cp",type:"tel",min:1}),n.default.createElement("span",{className:"rfipicons__sp"},"/"),n.default.createElement("span",{className:"rfipicons__tp"},this.state.totalPage)),n.default.createElement("div",{className:"rfipicons__arrow"},t,r))}},{key:"renderIconView",value:function(){var e=this;return this.state.totalPage>0?this.state.iconView.map(function(t,r){var a=(0,o.default)("rfipicons__icon",{"rfipicons__icon--selected":e.props.value===t||Array.isArray(e.props.value)&&e.props.value.includes(t)});return n.default.createElement("span",{className:a,key:t,title:e.state.titleView[r]},n.default.createElement("span",{className:"rfipicons__ibox",tabIndex:0,role:"button",onClick:function(){return e.handleChangeValue(t)},onKeyDown:function(r){return e.handleValueKeyboard(r,t)}},e.props.renderIcon(t)))}):n.default.createElement("span",{className:"rfipicons__icon--error"},n.default.createElement("span",{className:"rfipicons__ibox--error"},this.props.noIconPlaceholder))}},{key:"render",value:function(){return n.default.createElement("div",{className:"rfipicons"},this.renderPager(),n.default.createElement("div",{className:"rfipicons__selector"},this.renderIconView()))}}]),t}();Object.defineProperty(p,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{categories:a.default.arrayOf(a.default.string),currentCategory:a.default.number,isMulti:a.default.bool.isRequired,icons:a.default.oneOfType([a.default.arrayOf(a.default.string),a.default.arrayOf(a.default.number),a.default.objectOf(a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string)]))]).isRequired,search:a.default.oneOfType([a.default.objectOf(a.default.arrayOf(a.default.string)),a.default.arrayOf(a.default.string)]),value:a.default.oneOfType([a.default.number,a.default.string,a.default.arrayOf(a.default.oneOfType([a.default.number,a.default.string]))]).isRequired,currentSearch:a.default.string.isRequired,handleChangeValue:a.default.func.isRequired,currentPage:a.default.number.isRequired,iconsPerPage:a.default.number.isRequired,handleChangePage:a.default.func.isRequired,renderIcon:a.default.func.isRequired,noIconPlaceholder:a.default.string.isRequired}}),Object.defineProperty(p,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{categories:null,currentCategory:null,search:null}});var h=p;t.default=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=o(r(1)),a=o(r(0));function o(e){return e&&e.__esModule?e:{default:e}}var l=function(e){return n.default.createElement("div",{className:"rfipsearch"},n.default.createElement("input",{type:"text",className:"rfipsearch__input",value:e.value,onChange:e.handleSearch,placeholder:e.placeholder}))};l.propTypes={handleSearch:a.default.func.isRequired,value:a.default.string.isRequired,placeholder:a.default.string.isRequired};var i=l;t.default=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=o(r(1)),a=o(r(0));function o(e){return e&&e.__esModule?e:{default:e}}function l(e){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var u=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){return!t||"object"!==l(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),r=t,(a=[{key:"render",value:function(){return n.default.createElement("div",{className:"rfipcategory"},n.default.createElement("select",{className:"rfipcategory__select",onChange:this.props.handleCategory,value:this.props.value},this.props.categories.map(function(e,t){return n.default.createElement("option",{className:"rfipcategory__select__option",key:e,value:t},e)})),n.default.createElement("i",{className:"fipicon-angle-down",role:"presentation","aria-label":"Open"}))}}])&&i(r.prototype,a),t}();Object.defineProperty(u,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{handleCategory:a.default.func.isRequired,value:a.default.number.isRequired,categories:a.default.arrayOf(a.default.string).isRequired}});var c=u;t.default=c},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=c(r(1)),a=c(r(0)),o=c(r(10)),l=c(r(9)),i=c(r(8)),u=r(2);function c(e){return e&&e.__esModule?e:{default:e}}function s(e){return(s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function f(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function d(e,t,r){return t&&f(e.prototype,t),r&&f(e,r),e}function p(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var h=function(e){function t(e){var r,n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,n=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!n||"object"!==s(n)&&"function"!=typeof n?p(this):n,Object.defineProperty(p(r),"handleCategory",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=parseInt(e.target.value,10);Number.isNaN(t)&&(t=0),r.props.handleChangeCategory(t),r.props.handleChangePage(0)}}),Object.defineProperty(p(r),"handleSearch",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.target.value;r.props.handleChangeSearch(t)}}),r.state={},r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),d(t,null,[{key:"getDerivedStateFromProps",value:function(e){var t=(0,u.getPossibleCategories)(e.icons);return null!==t&&(t=[e.allCatPlaceholder].concat(function(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}(t))),{categories:t,searchString:e.currentSearch}}}]),d(t,[{key:"render",value:function(){return n.default.createElement("div",{className:"rfipdropdown__selector"},this.props.showSearch?n.default.createElement(l.default,{handleSearch:this.handleSearch,value:this.state.searchString,placeholder:this.props.searchPlaceholder}):null,this.props.showCategory&&this.state.categories&&this.state.categories.length?n.default.createElement(o.default,{handleCategory:this.handleCategory,value:this.props.currentCategory,categories:this.state.categories}):null,n.default.createElement(i.default,{categories:this.state.categories,currentCategory:this.props.currentCategory,isMulti:this.props.isMulti,icons:this.props.icons,search:this.props.search,value:this.props.value,currentSearch:this.props.currentSearch,handleChangeValue:this.props.handleChangeValue,currentPage:this.props.currentPage,iconsPerPage:this.props.iconsPerPage,handleChangePage:this.props.handleChangePage,renderIcon:this.props.renderIcon,noIconPlaceholder:this.props.noIconPlaceholder}))}}]),t}();Object.defineProperty(h,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{isMulti:a.default.bool.isRequired,value:a.default.oneOfType([a.default.number,a.default.string,a.default.arrayOf(a.default.any)]).isRequired,currentCategory:a.default.number.isRequired,currentPage:a.default.number.isRequired,currentSearch:a.default.string.isRequired,icons:a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string),a.default.objectOf(a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string)]))]).isRequired,search:a.default.oneOfType([a.default.object,a.default.arrayOf(a.default.string)]),showCategory:a.default.bool.isRequired,showSearch:a.default.bool.isRequired,iconsPerPage:a.default.number.isRequired,allCatPlaceholder:a.default.string.isRequired,searchPlaceholder:a.default.string.isRequired,noIconPlaceholder:a.default.string.isRequired,renderIcon:a.default.func.isRequired,handleChangeValue:a.default.func.isRequired,handleChangeCategory:a.default.func.isRequired,handleChangePage:a.default.func.isRequired,handleChangeSearch:a.default.func.isRequired}}),Object.defineProperty(h,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{search:null}});var y=h;t.default=y},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=l(r(1)),a=l(r(0)),o=l(r(3));function l(e){return e&&e.__esModule?e:{default:e}}function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function u(){return(u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}function c(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function s(e,t){return!t||"object"!==i(t)&&"function"!=typeof t?f(e):t}function f(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var d=function(e){function t(){var e,r,a;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var o=arguments.length,l=new Array(o),i=0;i<o;i++)l[i]=arguments[i];return s(a,(r=a=s(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(l))),Object.defineProperty(f(a),"handleClick",{configurable:!0,enumerable:!0,writable:!0,value:function(){a.props.onClick()}}),Object.defineProperty(f(a),"handleKeyDown",{configurable:!0,enumerable:!0,writable:!0,value:function(e){32!==e.keyCode&&13!==e.keyCode||a.props.onClick()}}),Object.defineProperty(f(a),"handleDelete",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){e.stopPropagation(),a.props.handleDeleteValue(t)}}),Object.defineProperty(f(a),"handleDeleteKeyboard",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){32!==e.keyCode&&13!==e.keyCode||a.props.handleDeleteValue(t)}}),Object.defineProperty(f(a),"renderEmptyIcon",{configurable:!0,enumerable:!0,writable:!0,value:function(){return n.default.createElement("span",{className:"rfipbtn__icon--empty"},a.props.noSelectedPlaceholder)}}),r))}var r,a;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),r=t,(a=[{key:"renderIcon",value:function(e){var t=this;return""===e||null===e||void 0===e?this.renderEmptyIcon():n.default.createElement("span",{className:"rfipbtn__icon",key:e},n.default.createElement("span",{className:"rfipbtn__elm"},this.props.renderIcon(e)),n.default.createElement("span",{className:"rfipbtn__del",onClick:function(r){return t.handleDelete(r,e)},onKeyDown:function(r){return t.handleDeleteKeyboard(r,e)},tabIndex:0,role:"button"},"×"))}},{key:"renderCurrentIcons",value:function(){var e=this;return this.props.isMulti?this.props.value.length?this.props.value.map(function(t){return e.renderIcon(t)}):this.renderEmptyIcon():this.renderIcon(this.props.value)}},{key:"render",value:function(){var e={onClick:this.handleClick,onKeyDown:this.handleKeyDown,onFocus:this.handleFocus,onBlur:this.handleBlur,tabIndex:0},t=(0,o.default)("rfipbtn__button","rfipbtn__button--".concat(this.props.isOpen?"open":"close")),r=(0,o.default)(this.props.className);return n.default.createElement("div",u({className:r,ref:this.props.domRef},e),n.default.createElement("div",{className:"rfipbtn__current"},this.renderCurrentIcons()),n.default.createElement("div",{className:t},n.default.createElement("i",{className:"fipicon-angle-down",role:"presentation","aria-label":"Open"})))}}])&&c(r.prototype,a),t}();Object.defineProperty(d,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{className:a.default.string.isRequired,isOpen:a.default.bool.isRequired,onClick:a.default.func.isRequired,domRef:a.default.object.isRequired,isMulti:a.default.bool.isRequired,value:a.default.oneOfType([a.default.number,a.default.string,a.default.arrayOf(a.default.oneOfType([a.default.number,a.default.string]))]).isRequired,renderIcon:a.default.func.isRequired,handleDeleteValue:a.default.func.isRequired,noSelectedPlaceholder:a.default.string.isRequired}});var p=d;t.default=p},function(e,t){e.exports=a},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=f(r(1)),a=f(r(0)),o=f(r(3)),l=r(13),i=f(r(12)),u=f(r(11)),c=f(r(7)),s=r(2);function f(e){return e&&e.__esModule?e:{default:e}}function d(e){return(d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function p(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}function h(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function y(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function b(e,t,r){return t&&y(e.prototype,t),r&&y(e,r),e}function g(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var m=[],v="",P=function(e){function t(e){var r,a;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,a=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!a||"object"!==d(a)&&"function"!=typeof a?g(this):a,Object.defineProperty(g(r),"handleOuterClick",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.target;r.isClickWithin(t)||r.closeDropdown()}}),Object.defineProperty(g(r),"handleEscapeKeyboard",{configurable:!0,enumerable:!0,writable:!0,value:function(e){27===e.keyCode&&r.closeDropdown()}}),Object.defineProperty(g(r),"isClickWithin",{configurable:!0,enumerable:!0,writable:!0,value:function(e){return r.fipButtonRef.current.contains(e)||r.fipDropDownRef.current&&r.fipDropDownRef.current.contains(e)}}),Object.defineProperty(g(r),"handleToggle",{configurable:!0,enumerable:!0,writable:!0,value:function(){r.setState(function(e){return r.handleDropDown(!e.isOpen,!1)})}}),Object.defineProperty(g(r),"closeDropdown",{configurable:!0,enumerable:!0,writable:!0,value:function(){r.handleDropDown(!1)}}),Object.defineProperty(g(r),"handleDropDown",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],a={isOpen:e};return a.elemClass=t.getDerivedClassName("rfip",r.props.theme,r.props.isMulti,e),a.btnClass=t.getDerivedClassName("rfipbtn",r.props.theme,r.props.isMulti,e),a.ddClass=t.getDerivedClassName("rfipdropdown",r.props.theme,r.props.isMulti,e),n&&r.setState(a),a}}),Object.defineProperty(g(r),"handleChangeValue",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t;r.props.isMulti?(t=p(r.state.value)).includes(e)?(t=t.filter(function(t){return t!==e})).length||(t=m):t.push(e):t=e===r.state.value?v:e,r.setState({value:t,isOpen:!r.props.closeOnSelect}),r.props.onChange(t)}}),Object.defineProperty(g(r),"handleDeleteValue",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var n;n=r.props.isMulti?r.state.value.filter(function(t){return t!==e}):t.getDerivedValue(n,r.props.isMulti),r.setState({value:n}),r.props.onChange(n)}}),Object.defineProperty(g(r),"handleChangePage",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.setState({currentPage:e})}}),Object.defineProperty(g(r),"handleChangeCategory",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.setState({currentCategory:e,currentPage:0})}}),Object.defineProperty(g(r),"handleChangeSearch",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.setState({currentSearch:e,currentPage:0})}}),Object.defineProperty(g(r),"resetPortalStyle",{configurable:!0,enumerable:!0,writable:!0,value:function(e){["maxHeight","paddingTop","paddingBottom"].forEach(function(t){e.style[t]=null})}}),Object.defineProperty(g(r),"handlePortalEnter",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];r.resetPortalStyle(t);var n=getComputedStyle(t);r.fipPortalComputedStyle={height:n.height,paddingTop:n.paddingTop,paddingBottom:n.paddingBottom},["maxHeight","paddingTop","paddingBottom"].forEach(function(e){t.style[e]="0px"})}}),Object.defineProperty(g(r),"handlePortalEntering",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];t.style.maxHeight=r.fipPortalComputedStyle.height,t.style.paddingTop=r.fipPortalComputedStyle.paddingTop,t.style.paddingBottom=r.fipPortalComputedStyle.paddingBottom}}),Object.defineProperty(g(r),"handlePortalEntered",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];r.resetPortalStyle(t),r.props.showSearch&&void 0===window.orientation&&-1===navigator.userAgent.indexOf("IEMobile")&&t.querySelector(".rfipsearch__input").focus()}}),Object.defineProperty(g(r),"handlePortalExit",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];r.resetPortalStyle(t);var n=getComputedStyle(t).height;t.style.maxHeight=n}}),Object.defineProperty(g(r),"handlePortalExiting",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];t.style.maxHeight="0px",t.style.paddingTop="0px",t.style.paddingBottom="0px"}}),Object.defineProperty(g(r),"renderIcon",{configurable:!0,enumerable:!0,writable:!0,value:function(e){if("function"==typeof r.props.renderFunc)return r.props.renderFunc(e);if("class"===r.props.renderUsing)return n.default.createElement("i",{className:e});var t=h({},r.props.renderUsing,r.props.convertHex?(0,s.convertToHex)(e):e);return n.default.createElement("i",t)}}),r.fipButtonRef=n.default.createRef(),r.fipDropDownRef=n.default.createRef(),r.state={currentCategory:0,currentPage:0,isOpen:!1,currentSearch:""},r.fipPortalComputedStyle=null,r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),b(t,null,[{key:"getDerivedStateFromProps",value:function(e,r){var n={};return n.elemClass=t.getDerivedClassName("rfip",e.theme,e.isMulti,r.isOpen),n.btnClass=t.getDerivedClassName("rfipbtn",e.theme,e.isMulti,r.isOpen),n.ddClass=t.getDerivedClassName("rfipdropdown",e.theme,e.isMulti,r.isOpen),n.value=t.getDerivedValue(e.value,e.isMulti),e.showCategory||(n.currentCategory=0,n.currentPage=0),e.showSearch||(n.currentSearch="",n.currentPage=0),n}},{key:"getDerivedClassName",value:function(e,t,r,n){return(0,o.default)(e,"".concat(e,"--").concat(t),h({},"".concat(e,"--multi"),r),"".concat(e,"--").concat(n?"open":"close"))}},{key:"getDerivedValue",value:function(e,t){var r=e;return t?r=Array.isArray(e)?p(e):m:"number"!=typeof e&&"string"!=typeof e&&(r=v),r}}]),b(t,[{key:"componentDidMount",value:function(){var e=this;["click"].forEach(function(t){document.addEventListener(t,e.handleOuterClick,!1)}),document.addEventListener("keydown",this.handleEscapeKeyboard,!1),this.props.onChange(this.state.value)}},{key:"componentWillUnmount",value:function(){var e=this;["click"].forEach(function(t){document.removeEventListener(t,e.handleOuterClick,!1)}),document.removeEventListener("keydown",this.handleEscapeKeyboard,!1)}},{key:"render",value:function(){var e={currentCategory:this.state.currentCategory,currentPage:this.state.currentPage,currentSearch:this.state.currentSearch,value:this.state.value,isMulti:this.props.isMulti,icons:this.props.icons,search:this.props.search,showCategory:this.props.showCategory,showSearch:this.props.showSearch,iconsPerPage:this.props.iconsPerPage,allCatPlaceholder:this.props.allCatPlaceholder,searchPlaceholder:this.props.searchPlaceholder,noIconPlaceholder:this.props.noIconPlaceholder,renderIcon:this.renderIcon,handleChangeValue:this.handleChangeValue,handleChangeCategory:this.handleChangeCategory,handleChangePage:this.handleChangePage,handleChangeSearch:this.handleChangeSearch};return n.default.createElement("div",{className:this.state.elemClass,ref:this.fipRef},n.default.createElement(i.default,{className:this.state.btnClass,isOpen:this.state.isOpen,onClick:this.handleToggle,domRef:this.fipButtonRef,isMulti:this.props.isMulti,value:this.state.value,renderIcon:this.renderIcon,handleDeleteValue:this.handleDeleteValue,noSelectedPlaceholder:this.props.noSelectedPlaceholder}),n.default.createElement(l.CSSTransition,{classNames:"fipappear",timeout:300,in:this.state.isOpen,unmountOnExit:!0,onEnter:this.handlePortalEnter,onEntering:this.handlePortalEntering,onEntered:this.handlePortalEntered,onExit:this.handlePortalExit,onExiting:this.handlePortalExiting},n.default.createElement(c.default,{appendRoot:this.props.appendTo,domRef:this.fipDropDownRef,btnRef:this.fipButtonRef,className:this.state.ddClass},n.default.createElement(u.default,e))))}}]),t}();Object.defineProperty(P,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{icons:a.default.oneOfType([a.default.arrayOf(a.default.string),a.default.arrayOf(a.default.number),a.default.objectOf(a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string)]))]).isRequired,search:a.default.oneOfType([a.default.objectOf(a.default.arrayOf(a.default.string)),a.default.arrayOf(a.default.string)]),iconsPerPage:a.default.number,theme:a.default.string,onChange:a.default.func.isRequired,showCategory:a.default.bool,showSearch:a.default.bool,value:a.default.oneOfType([a.default.arrayOf(a.default.string),a.default.arrayOf(a.default.number),a.default.number,a.default.string]),isMulti:a.default.bool,renderUsing:a.default.string,convertHex:a.default.bool,renderFunc:a.default.func,appendTo:a.default.oneOfType([a.default.bool,a.default.string]),allCatPlaceholder:a.default.string,searchPlaceholder:a.default.string,noIconPlaceholder:a.default.string,noSelectedPlaceholder:a.default.string,closeOnSelect:a.default.bool}}),Object.defineProperty(P,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{search:null,iconsPerPage:20,theme:"default",showCategory:!0,showSearch:!0,value:null,isMulti:!1,renderUsing:"class",convertHex:!0,renderFunc:null,appendTo:!1,allCatPlaceholder:"Show from all",searchPlaceholder:"Search Icons",noIconPlaceholder:"No icons found",noSelectedPlaceholder:"Select icon",closeOnSelect:!1}}),Object.defineProperty(P,"displayName",{configurable:!0,enumerable:!0,writable:!0,value:"FontIconPicker"});var O=P;t.default=O},function(e,t,r){"use strict";var n;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=((n=r(14))&&n.__esModule?n:{default:n}).default;t.default=a}]).default});
1028
  //# sourceMappingURL=fonticonpicker.react.js.map
1029
 
1030
  /***/ }),
1148
  // By explicitly using `prop-types` you are opting into new development behavior.
1149
  // http://fb.me/prop-types-in-prod
1150
  var throwOnDirectAccess = true;
1151
+ module.exports = __webpack_require__(/*! ./factoryWithTypeCheckers */ 277)(ReactIs.isElement, throwOnDirectAccess);
1152
  } else {
1153
  // By explicitly using `prop-types` you are opting into new production behavior.
1154
  // http://fb.me/prop-types-in-prod
1155
+ module.exports = __webpack_require__(/*! ./factoryWithThrowingShims */ 278)();
1156
  }
1157
 
1158
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
1168
 
1169
  var arrayMap = __webpack_require__(/*! ./_arrayMap */ 34),
1170
  baseIteratee = __webpack_require__(/*! ./_baseIteratee */ 113),
1171
+ baseMap = __webpack_require__(/*! ./_baseMap */ 251),
1172
  isArray = __webpack_require__(/*! ./isArray */ 14);
1173
 
1174
  /**
1305
  // DCE check should happen before ReactDOM bundle executes so that
1306
  // DevTools can report bad minification during injection.
1307
  checkDCE();
1308
+ module.exports = __webpack_require__(/*! ./cjs/react-dom.production.min.js */ 268);
1309
  } else {
1310
+ module.exports = __webpack_require__(/*! ./cjs/react-dom.development.js */ 271);
1311
  }
1312
 
1313
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
1321
  /*! all exports used */
1322
  /***/ (function(module, exports, __webpack_require__) {
1323
 
1324
+ var baseIsNative = __webpack_require__(/*! ./_baseIsNative */ 203),
1325
+ getValue = __webpack_require__(/*! ./_getValue */ 208);
1326
 
1327
  /**
1328
  * Gets the native function at `key` of `object`.
1350
  /***/ (function(module, exports, __webpack_require__) {
1351
 
1352
  var Symbol = __webpack_require__(/*! ./_Symbol */ 21),
1353
+ getRawTag = __webpack_require__(/*! ./_getRawTag */ 204),
1354
+ objectToString = __webpack_require__(/*! ./_objectToString */ 205);
1355
 
1356
  /** `Object#toString` result references. */
1357
  var nullTag = '[object Null]',
1406
  /***/ (function(module, exports, __webpack_require__) {
1407
 
1408
  var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */ 123),
1409
+ baseKeys = __webpack_require__(/*! ./_baseKeys */ 235),
1410
  isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23);
1411
 
1412
  /**
1454
  /***/ (function(module, exports, __webpack_require__) {
1455
 
1456
  var isFunction = __webpack_require__(/*! ./isFunction */ 114),
1457
+ isLength = __webpack_require__(/*! ./isLength */ 60);
1458
 
1459
  /**
1460
  * Checks if `value` is array-like. A value is considered array-like if it's
1498
  /***/ (function(module, exports, __webpack_require__) {
1499
 
1500
  var isArray = __webpack_require__(/*! ./isArray */ 14),
1501
+ isKey = __webpack_require__(/*! ./_isKey */ 61),
1502
+ stringToPath = __webpack_require__(/*! ./_stringToPath */ 243),
1503
  toString = __webpack_require__(/*! ./toString */ 130);
1504
 
1505
  /**
2452
  /*! all exports used */
2453
  /***/ (function(module, exports, __webpack_require__) {
2454
 
2455
+ var listCacheClear = __webpack_require__(/*! ./_listCacheClear */ 193),
2456
+ listCacheDelete = __webpack_require__(/*! ./_listCacheDelete */ 194),
2457
+ listCacheGet = __webpack_require__(/*! ./_listCacheGet */ 195),
2458
+ listCacheHas = __webpack_require__(/*! ./_listCacheHas */ 196),
2459
+ listCacheSet = __webpack_require__(/*! ./_listCacheSet */ 197);
2460
 
2461
  /**
2462
  * Creates an list cache object.
2592
  /*! all exports used */
2593
  /***/ (function(module, exports, __webpack_require__) {
2594
 
2595
+ var isKeyable = __webpack_require__(/*! ./_isKeyable */ 217);
2596
 
2597
  /**
2598
  * Gets the data for `map`.
2713
 
2714
  module.exports = nodeUtil;
2715
 
2716
+ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */ 59)(module)))
2717
 
2718
  /***/ }),
2719
  /* 43 */
2753
  /*! all exports used */
2754
  /***/ (function(module, exports, __webpack_require__) {
2755
 
2756
+ var DataView = __webpack_require__(/*! ./_DataView */ 237),
2757
+ Map = __webpack_require__(/*! ./_Map */ 52),
2758
+ Promise = __webpack_require__(/*! ./_Promise */ 238),
2759
+ Set = __webpack_require__(/*! ./_Set */ 239),
2760
+ WeakMap = __webpack_require__(/*! ./_WeakMap */ 240),
2761
  baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 20),
2762
  toSource = __webpack_require__(/*! ./_toSource */ 116);
2763
 
3714
 
3715
  /***/ }),
3716
  /* 50 */
3717
+ /*!********************************************!*\
3718
+ !*** ./src/components/box-shadow/index.js ***!
3719
+ \********************************************/
3720
+ /*! exports provided: default */
3721
+ /*! exports used: default */
3722
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
3723
+
3724
+ "use strict";
3725
+ var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
3726
+
3727
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
3728
+
3729
+ function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
3730
+
3731
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
3732
+
3733
+ /**
3734
+ * Box-Shadow reusable component.
3735
+ *
3736
+ */
3737
+ var __ = wp.i18n.__;
3738
+ var ColorPalette = wp.blockEditor.ColorPalette;
3739
+ var _wp$components = wp.components,
3740
+ Button = _wp$components.Button,
3741
+ SelectControl = _wp$components.SelectControl,
3742
+ RangeControl = _wp$components.RangeControl,
3743
+ Dashicon = _wp$components.Dashicon;
3744
+
3745
+ // Extend component
3746
+
3747
+ var _wp$element = wp.element,
3748
+ Component = _wp$element.Component,
3749
+ Fragment = _wp$element.Fragment;
3750
+
3751
+ var BoxShadowControl = function (_Component) {
3752
+ _inherits(BoxShadowControl, _Component);
3753
+
3754
+ function BoxShadowControl() {
3755
+ _classCallCheck(this, BoxShadowControl);
3756
+
3757
+ var _this = _possibleConstructorReturn(this, (BoxShadowControl.__proto__ || Object.getPrototypeOf(BoxShadowControl)).apply(this, arguments));
3758
+
3759
+ _this.onAdvancedControlClick = _this.onAdvancedControlClick.bind(_this);
3760
+ _this.onAdvancedControlReset = _this.onAdvancedControlReset.bind(_this);
3761
+ return _this;
3762
+ }
3763
+
3764
+ _createClass(BoxShadowControl, [{
3765
+ key: "onAdvancedControlClick",
3766
+ value: function onAdvancedControlClick() {
3767
+
3768
+ var control = true;
3769
+ var label = __("Hide Advanced");
3770
+
3771
+ if (this.state !== null && this.state.showAdvancedControls === true) {
3772
+ control = false;
3773
+ label = __("Advanced");
3774
+ }
3775
+
3776
+ this.setState({
3777
+ showAdvancedControls: control,
3778
+ showAdvancedControlsLabel: label
3779
+ });
3780
+ }
3781
+ }, {
3782
+ key: "onAdvancedControlReset",
3783
+ value: function onAdvancedControlReset() {
3784
+ var setAttributes = this.props.setAttributes;
3785
+
3786
+
3787
+ setAttributes({ boxShadowColor: "" });
3788
+ setAttributes({ boxShadowHOffset: "" });
3789
+ setAttributes({ boxShadowVOffset: "" });
3790
+ setAttributes({ boxShadowBlur: "" });
3791
+ setAttributes({ boxShadowSpread: "" });
3792
+ setAttributes({ boxShadowPosition: "" });
3793
+ }
3794
+ }, {
3795
+ key: "render",
3796
+ value: function render() {
3797
+ var _props = this.props,
3798
+ setAttributes = _props.setAttributes,
3799
+ boxShadowColor = _props.boxShadowColor,
3800
+ boxShadowHOffset = _props.boxShadowHOffset,
3801
+ boxShadowVOffset = _props.boxShadowVOffset,
3802
+ boxShadowBlur = _props.boxShadowBlur,
3803
+ boxShadowSpread = _props.boxShadowSpread,
3804
+ boxShadowPosition = _props.boxShadowPosition;
3805
+
3806
+
3807
+ var advancedControls;
3808
+ var boxShadowAdvancedControls;
3809
+ var resetBoxShadowAdvancedControls;
3810
+ if (this.state !== null && true === this.state.showAdvancedControls) {
3811
+ advancedControls = wp.element.createElement(
3812
+ "div",
3813
+ { className: "uagb-box-shadow-advanced" },
3814
+ wp.element.createElement(
3815
+ Fragment,
3816
+ null,
3817
+ wp.element.createElement(
3818
+ "p",
3819
+ { className: "uagb-setting-label" },
3820
+ boxShadowColor.label,
3821
+ wp.element.createElement(
3822
+ "span",
3823
+ { className: "components-base-control__label" },
3824
+ wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: boxShadowColor.value } })
3825
+ )
3826
+ ),
3827
+ wp.element.createElement(ColorPalette, {
3828
+ value: boxShadowColor.value,
3829
+ onChange: function onChange(colorValue) {
3830
+ return setAttributes({ boxShadowColor: colorValue });
3831
+ },
3832
+ allowReset: true
3833
+ })
3834
+ ),
3835
+ wp.element.createElement(
3836
+ Fragment,
3837
+ null,
3838
+ wp.element.createElement(
3839
+ "h2",
3840
+ null,
3841
+ boxShadowHOffset.label
3842
+ ),
3843
+ wp.element.createElement(RangeControl, {
3844
+ value: boxShadowHOffset.value,
3845
+ onChange: function onChange(value) {
3846
+ return setAttributes({ boxShadowHOffset: value });
3847
+ },
3848
+ min: -100,
3849
+ max: 100,
3850
+ allowReset: true
3851
+ })
3852
+ ),
3853
+ wp.element.createElement(
3854
+ Fragment,
3855
+ null,
3856
+ wp.element.createElement(
3857
+ "h2",
3858
+ null,
3859
+ boxShadowVOffset.label
3860
+ ),
3861
+ wp.element.createElement(RangeControl, {
3862
+ value: boxShadowVOffset.value,
3863
+ onChange: function onChange(value) {
3864
+ return setAttributes({ boxShadowVOffset: value });
3865
+ },
3866
+ min: -100,
3867
+ max: 100,
3868
+ allowReset: true
3869
+ })
3870
+ ),
3871
+ wp.element.createElement(
3872
+ Fragment,
3873
+ null,
3874
+ wp.element.createElement(
3875
+ "h2",
3876
+ null,
3877
+ boxShadowBlur.label
3878
+ ),
3879
+ wp.element.createElement(RangeControl, {
3880
+ value: boxShadowBlur.value,
3881
+ onChange: function onChange(value) {
3882
+ return setAttributes({ boxShadowBlur: value });
3883
+ },
3884
+ min: 0,
3885
+ max: 100,
3886
+ allowReset: true
3887
+ })
3888
+ ),
3889
+ wp.element.createElement(
3890
+ Fragment,
3891
+ null,
3892
+ wp.element.createElement(
3893
+ "h2",
3894
+ null,
3895
+ boxShadowSpread.label
3896
+ ),
3897
+ wp.element.createElement(RangeControl, {
3898
+ value: boxShadowSpread.value,
3899
+ onChange: function onChange(value) {
3900
+ return setAttributes({ boxShadowSpread: value });
3901
+ },
3902
+ min: 0,
3903
+ max: 100,
3904
+ allowReset: true
3905
+ })
3906
+ ),
3907
+ wp.element.createElement(
3908
+ Fragment,
3909
+ null,
3910
+ wp.element.createElement(SelectControl, {
3911
+ label: boxShadowPosition.label,
3912
+ value: boxShadowPosition.value,
3913
+ onChange: function onChange(value) {
3914
+ return setAttributes({ boxShadowPosition: value });
3915
+ },
3916
+ options: [{ value: "inset", label: __("Inset") }, { value: "outset", label: __("Outset") }]
3917
+ })
3918
+ )
3919
+ );
3920
+ }
3921
+ resetBoxShadowAdvancedControls = wp.element.createElement(
3922
+ Button,
3923
+ {
3924
+ className: "uagb-size-btn uagb-typography-reset-btn",
3925
+ isSmall: true,
3926
+ "aria-pressed": this.state !== null,
3927
+ onClick: this.onAdvancedControlReset
3928
+ },
3929
+ wp.element.createElement(Dashicon, { icon: "image-rotate" })
3930
+ );
3931
+
3932
+ boxShadowAdvancedControls = wp.element.createElement(
3933
+ Button,
3934
+ {
3935
+ className: "uagb-size-btn uagb-typography-control-btn",
3936
+ isSmall: true,
3937
+ "aria-pressed": this.state !== null,
3938
+ onClick: this.onAdvancedControlClick
3939
+ },
3940
+ wp.element.createElement(Dashicon, { icon: "admin-tools" })
3941
+ );
3942
+
3943
+ return wp.element.createElement(
3944
+ "div",
3945
+ { className: "uag-typography-option-actions" },
3946
+ wp.element.createElement(
3947
+ "span",
3948
+ null,
3949
+ this.props.label
3950
+ ),
3951
+ boxShadowAdvancedControls,
3952
+ resetBoxShadowAdvancedControls,
3953
+ advancedControls
3954
+ );
3955
+ }
3956
+ }]);
3957
+
3958
+ return BoxShadowControl;
3959
+ }(Component);
3960
+
3961
+ /* harmony default export */ __webpack_exports__["a"] = (BoxShadowControl);
3962
+
3963
+ /***/ }),
3964
+ /* 51 */
3965
  /*!***************************************!*\
3966
  !*** ./node_modules/lodash/_Stack.js ***!
3967
  \***************************************/
3970
  /***/ (function(module, exports, __webpack_require__) {
3971
 
3972
  var ListCache = __webpack_require__(/*! ./_ListCache */ 35),
3973
+ stackClear = __webpack_require__(/*! ./_stackClear */ 198),
3974
+ stackDelete = __webpack_require__(/*! ./_stackDelete */ 199),
3975
+ stackGet = __webpack_require__(/*! ./_stackGet */ 200),
3976
+ stackHas = __webpack_require__(/*! ./_stackHas */ 201),
3977
+ stackSet = __webpack_require__(/*! ./_stackSet */ 202);
3978
 
3979
  /**
3980
  * Creates a stack cache object to store key-value pairs.
3999
 
4000
 
4001
  /***/ }),
4002
+ /* 52 */
4003
  /*!*************************************!*\
4004
  !*** ./node_modules/lodash/_Map.js ***!
4005
  \*************************************/
4017
 
4018
 
4019
  /***/ }),
4020
+ /* 53 */
4021
  /*!***********************************!*\
4022
  !*** (webpack)/buildin/global.js ***!
4023
  \***********************************/
4025
  /*! all exports used */
4026
  /***/ (function(module, exports) {
4027
 
4028
+ var g;
4029
+
4030
+ // This works in non-strict mode
4031
+ g = (function() {
4032
+ return this;
4033
+ })();
4034
+
4035
+ try {
4036
+ // This works if eval is allowed (see CSP)
4037
+ g = g || Function("return this")() || (1,eval)("this");
4038
+ } catch(e) {
4039
+ // This works if the window reference is available
4040
+ if(typeof window === "object")
4041
+ g = window;
4042
+ }
4043
+
4044
+ // g can still be undefined, but nothing to do about it...
4045
+ // We return undefined, instead of nothing here, so it's
4046
+ // easier to handle this case. if(!global) { ...}
4047
+
4048
+ module.exports = g;
4049
 
4050
 
4051
  /***/ }),
4052
+ /* 54 */
4053
  /*!******************************************!*\
4054
  !*** ./node_modules/lodash/_MapCache.js ***!
4055
  \******************************************/
4057
  /*! all exports used */
4058
  /***/ (function(module, exports, __webpack_require__) {
4059
 
4060
+ var mapCacheClear = __webpack_require__(/*! ./_mapCacheClear */ 209),
4061
+ mapCacheDelete = __webpack_require__(/*! ./_mapCacheDelete */ 216),
4062
+ mapCacheGet = __webpack_require__(/*! ./_mapCacheGet */ 218),
4063
+ mapCacheHas = __webpack_require__(/*! ./_mapCacheHas */ 219),
4064
+ mapCacheSet = __webpack_require__(/*! ./_mapCacheSet */ 220);
4065
 
4066
  /**
4067
  * Creates a map cache object to store key-value pairs.
4092
 
4093
 
4094
  /***/ }),
4095
+ /* 55 */
4096
  /*!*******************************************!*\
4097
  !*** ./node_modules/lodash/_arrayPush.js ***!
4098
  \*******************************************/
4123
 
4124
 
4125
  /***/ }),
4126
+ /* 56 */
4127
  /*!********************************************!*\
4128
  !*** ./node_modules/lodash/_getSymbols.js ***!
4129
  \********************************************/
4131
  /*! all exports used */
4132
  /***/ (function(module, exports, __webpack_require__) {
4133
 
4134
+ var arrayFilter = __webpack_require__(/*! ./_arrayFilter */ 231),
4135
  stubArray = __webpack_require__(/*! ./stubArray */ 122);
4136
 
4137
  /** Used for built-in method references. */
4164
 
4165
 
4166
  /***/ }),
4167
+ /* 57 */
4168
  /*!********************************************!*\
4169
  !*** ./node_modules/lodash/isArguments.js ***!
4170
  \********************************************/
4172
  /*! all exports used */
4173
  /***/ (function(module, exports, __webpack_require__) {
4174
 
4175
+ var baseIsArguments = __webpack_require__(/*! ./_baseIsArguments */ 232),
4176
  isObjectLike = __webpack_require__(/*! ./isObjectLike */ 17);
4177
 
4178
  /** Used for built-in method references. */
4211
 
4212
 
4213
  /***/ }),
4214
+ /* 58 */
4215
  /*!*****************************************!*\
4216
  !*** ./node_modules/lodash/isBuffer.js ***!
4217
  \*****************************************/
4220
  /***/ (function(module, exports, __webpack_require__) {
4221
 
4222
  /* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(/*! ./_root */ 12),
4223
+ stubFalse = __webpack_require__(/*! ./stubFalse */ 233);
4224
 
4225
  /** Detect free variable `exports`. */
4226
  var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
4258
 
4259
  module.exports = isBuffer;
4260
 
4261
+ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */ 59)(module)))
4262
 
4263
  /***/ }),
4264
+ /* 59 */
4265
  /*!***********************************!*\
4266
  !*** (webpack)/buildin/module.js ***!
4267
  \***********************************/
4269
  /*! all exports used */
4270
  /***/ (function(module, exports) {
4271
 
4272
+ module.exports = function(module) {
4273
+ if(!module.webpackPolyfill) {
4274
+ module.deprecate = function() {};
4275
+ module.paths = [];
4276
+ // module.parent = undefined by default
4277
+ if(!module.children) module.children = [];
4278
+ Object.defineProperty(module, "loaded", {
4279
+ enumerable: true,
4280
+ get: function() {
4281
+ return module.l;
4282
+ }
4283
+ });
4284
+ Object.defineProperty(module, "id", {
4285
+ enumerable: true,
4286
+ get: function() {
4287
+ return module.i;
4288
+ }
4289
+ });
4290
+ module.webpackPolyfill = 1;
4291
+ }
4292
+ return module;
4293
+ };
4294
 
4295
 
4296
  /***/ }),
4297
+ /* 60 */
4298
  /*!*****************************************!*\
4299
  !*** ./node_modules/lodash/isLength.js ***!
4300
  \*****************************************/
4340
 
4341
 
4342
  /***/ }),
4343
+ /* 61 */
4344
  /*!***************************************!*\
4345
  !*** ./node_modules/lodash/_isKey.js ***!
4346
  \***************************************/
4380
 
4381
 
4382
  /***/ }),
4383
+ /* 62 */
4384
  /*!***************************************************!*\
4385
  !*** ./node_modules/prop-types/checkPropTypes.js ***!
4386
  \***************************************************/
4401
  var printWarning = function() {};
4402
 
4403
  if (process.env.NODE_ENV !== 'production') {
4404
+ var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ 63);
4405
  var loggedTypeFailures = {};
4406
  var has = Function.call.bind(Object.prototype.hasOwnProperty);
4407
 
4495
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
4496
 
4497
  /***/ }),
4498
+ /* 63 */
4499
  /*!*************************************************************!*\
4500
  !*** ./node_modules/prop-types/lib/ReactPropTypesSecret.js ***!
4501
  \*************************************************************/
4519
 
4520
 
4521
  /***/ }),
4522
+ /* 64 */
4523
  /*!*************************************************************!*\
4524
  !*** ./node_modules/@emotion/core/dist/core.browser.esm.js ***!
4525
  \*************************************************************/
4535
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return jsx; });
4536
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return keyframes; });
4537
  /* unused harmony export withEmotionCache */
4538
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/inheritsLoose */ 261);
4539
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose__);
4540
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 6);
4541
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
4542
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_cache__ = __webpack_require__(/*! @emotion/cache */ 134);
4543
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__emotion_utils__ = __webpack_require__(/*! @emotion/utils */ 264);
4544
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__emotion_serialize__ = __webpack_require__(/*! @emotion/serialize */ 136);
4545
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__emotion_sheet__ = __webpack_require__(/*! @emotion/sheet */ 135);
4546
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
4926
  /* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
4927
 
4928
  /***/ }),
4929
+ /* 65 */
4930
  /*!**********************************************************************!*\
4931
  !*** ./node_modules/react-select/dist/utils-06b0d5a4.browser.esm.js ***!
4932
  \**********************************************************************/
5154
 
5155
 
5156
  /***/ }),
5157
+ /* 66 */
5158
  /*!*****************************************************!*\
5159
  !*** ./src/blocks/post/components/FeaturedImage.js ***!
5160
  \*****************************************************/
5221
  /* harmony default export */ __webpack_exports__["a"] = (FeaturedImage);
5222
 
5223
  /***/ }),
5224
+ /* 67 */
5225
  /*!*********************************************!*\
5226
  !*** ./src/blocks/post/components/Title.js ***!
5227
  \*********************************************/
5289
  /* harmony default export */ __webpack_exports__["a"] = (Title);
5290
 
5291
  /***/ }),
5292
+ /* 68 */
5293
  /*!********************************************!*\
5294
  !*** ./src/blocks/post/components/Meta.js ***!
5295
  \********************************************/
5380
  /* harmony default export */ __webpack_exports__["a"] = (Meta);
5381
 
5382
  /***/ }),
5383
+ /* 69 */
5384
  /*!***********************************************!*\
5385
  !*** ./src/blocks/post/components/Excerpt.js ***!
5386
  \***********************************************/
5389
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
5390
 
5391
  "use strict";
5392
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_truncate__ = __webpack_require__(/*! lodash/truncate */ 291);
5393
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_truncate___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_truncate__);
5394
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
5395
 
5462
  /* harmony default export */ __webpack_exports__["a"] = (Excerpt);
5463
 
5464
  /***/ }),
5465
+ /* 70 */
5466
  /*!*******************************************!*\
5467
  !*** ./node_modules/lodash/_baseSlice.js ***!
5468
  \*******************************************/
5504
 
5505
 
5506
  /***/ }),
5507
+ /* 71 */
5508
  /*!********************************************!*\
5509
  !*** ./node_modules/lodash/_hasUnicode.js ***!
5510
  \********************************************/
5541
 
5542
 
5543
  /***/ }),
5544
+ /* 72 */
5545
  /*!******************************************!*\
5546
  !*** ./node_modules/lodash/toInteger.js ***!
5547
  \******************************************/
5549
  /*! all exports used */
5550
  /***/ (function(module, exports, __webpack_require__) {
5551
 
5552
+ var toFinite = __webpack_require__(/*! ./toFinite */ 301);
5553
 
5554
  /**
5555
  * Converts `value` to an integer.
5588
 
5589
 
5590
  /***/ }),
5591
+ /* 73 */
5592
  /*!**********************************************!*\
5593
  !*** ./src/blocks/post/components/Button.js ***!
5594
  \**********************************************/
5663
  /* harmony default export */ __webpack_exports__["a"] = (Button);
5664
 
5665
  /***/ }),
5666
+ /* 74 */
5667
  /*!************************************!*\
5668
  !*** ./src/blocks/post/styling.js ***!
5669
  \************************************/
6139
  /* harmony default export */ __webpack_exports__["a"] = (styling);
6140
 
6141
  /***/ }),
6142
+ /* 75 */
6143
  /*!************************************!*\
6144
  !*** ./src/blocks/post/style.scss ***!
6145
  \************************************/
6149
  // removed by extract-text-webpack-plugin
6150
 
6151
  /***/ }),
6152
+ /* 76 */
6153
  /*!*************************************!*\
6154
  !*** ./src/blocks/post/editor.scss ***!
6155
  \*************************************/
6159
  // removed by extract-text-webpack-plugin
6160
 
6161
  /***/ }),
6162
+ /* 77 */
6163
  /*!***********************************************!*\
6164
  !*** ./node_modules/ev-emitter/ev-emitter.js ***!
6165
  \***********************************************/
6286
 
6287
 
6288
  /***/ }),
6289
+ /* 78 */
6290
  /*!*******************************************!*\
6291
  !*** ./node_modules/get-size/get-size.js ***!
6292
  \*******************************************/
6508
 
6509
 
6510
  /***/ }),
6511
+ /* 79 */
6512
  /*!**********************************************!*\
6513
  !*** ./node_modules/lodash/_getPrototype.js ***!
6514
  \**********************************************/
6525
 
6526
 
6527
  /***/ }),
6528
+ /* 80 */
6529
  /*!**********************************************!*\
6530
  !*** ./node_modules/lodash/_getAllKeysIn.js ***!
6531
  \**********************************************/
6553
 
6554
 
6555
  /***/ }),
6556
+ /* 81 */
6557
  /*!**************************************************!*\
6558
  !*** ./node_modules/lodash/_cloneArrayBuffer.js ***!
6559
  \**************************************************/
6579
  module.exports = cloneArrayBuffer;
6580
 
6581
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6582
  /***/ }),
6583
  /* 82 */
6584
  /*!***************************************************!*\
8941
  /*! all exports used */
8942
  /***/ (function(module, exports, __webpack_require__) {
8943
 
8944
+ var baseMatches = __webpack_require__(/*! ./_baseMatches */ 191),
8945
+ baseMatchesProperty = __webpack_require__(/*! ./_baseMatchesProperty */ 242),
8946
  identity = __webpack_require__(/*! ./identity */ 47),
8947
  isArray = __webpack_require__(/*! ./isArray */ 14),
8948
+ property = __webpack_require__(/*! ./property */ 249);
8949
 
8950
  /**
8951
  * The base implementation of `_.iteratee`.
9036
 
9037
  module.exports = freeGlobal;
9038
 
9039
+ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 53)))
9040
 
9041
  /***/ }),
9042
  /* 116 */
9084
  /*! all exports used */
9085
  /***/ (function(module, exports, __webpack_require__) {
9086
 
9087
+ var baseIsEqualDeep = __webpack_require__(/*! ./_baseIsEqualDeep */ 221),
9088
  isObjectLike = __webpack_require__(/*! ./isObjectLike */ 17);
9089
 
9090
  /**
9123
  /*! all exports used */
9124
  /***/ (function(module, exports, __webpack_require__) {
9125
 
9126
+ var SetCache = __webpack_require__(/*! ./_SetCache */ 222),
9127
+ arraySome = __webpack_require__(/*! ./_arraySome */ 225),
9128
+ cacheHas = __webpack_require__(/*! ./_cacheHas */ 226);
9129
 
9130
  /** Used to compose bitmasks for value comparisons. */
9131
  var COMPARE_PARTIAL_FLAG = 1,
9235
  /***/ (function(module, exports, __webpack_require__) {
9236
 
9237
  var baseGetAllKeys = __webpack_require__(/*! ./_baseGetAllKeys */ 121),
9238
+ getSymbols = __webpack_require__(/*! ./_getSymbols */ 56),
9239
  keys = __webpack_require__(/*! ./keys */ 22);
9240
 
9241
  /**
9261
  /*! all exports used */
9262
  /***/ (function(module, exports, __webpack_require__) {
9263
 
9264
+ var arrayPush = __webpack_require__(/*! ./_arrayPush */ 55),
9265
  isArray = __webpack_require__(/*! ./isArray */ 14);
9266
 
9267
  /**
9327
  /***/ (function(module, exports, __webpack_require__) {
9328
 
9329
  var baseTimes = __webpack_require__(/*! ./_baseTimes */ 124),
9330
+ isArguments = __webpack_require__(/*! ./isArguments */ 57),
9331
  isArray = __webpack_require__(/*! ./isArray */ 14),
9332
+ isBuffer = __webpack_require__(/*! ./isBuffer */ 58),
9333
  isIndex = __webpack_require__(/*! ./_isIndex */ 40),
9334
  isTypedArray = __webpack_require__(/*! ./isTypedArray */ 125);
9335
 
9417
  /*! all exports used */
9418
  /***/ (function(module, exports, __webpack_require__) {
9419
 
9420
+ var baseIsTypedArray = __webpack_require__(/*! ./_baseIsTypedArray */ 234),
9421
  baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
9422
  nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
9423
 
9744
 
9745
  "use strict";
9746
  /* WEBPACK VAR INJECTION */(function(process) {/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_sheet__ = __webpack_require__(/*! @emotion/sheet */ 135);
9747
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_stylis__ = __webpack_require__(/*! @emotion/stylis */ 262);
9748
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_weak_memoize__ = __webpack_require__(/*! @emotion/weak-memoize */ 263);
9749
 
9750
 
9751
 
10119
 
10120
  "use strict";
10121
  /* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return serializeStyles; });
10122
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_hash__ = __webpack_require__(/*! @emotion/hash */ 265);
10123
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_unitless__ = __webpack_require__(/*! @emotion/unitless */ 266);
10124
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_memoize__ = __webpack_require__(/*! @emotion/memoize */ 267);
10125
 
10126
 
10127
 
10460
  /* WEBPACK VAR INJECTION */(function(process) {
10461
 
10462
  if (process.env.NODE_ENV === 'production') {
10463
+ module.exports = __webpack_require__(/*! ./cjs/scheduler.production.min.js */ 269);
10464
  } else {
10465
+ module.exports = __webpack_require__(/*! ./cjs/scheduler.development.js */ 270);
10466
  }
10467
 
10468
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
10480
  /* WEBPACK VAR INJECTION */(function(process) {
10481
 
10482
  if (process.env.NODE_ENV === 'production') {
10483
+ module.exports = __webpack_require__(/*! ./cjs/react-is.production.min.js */ 275);
10484
  } else {
10485
+ module.exports = __webpack_require__(/*! ./cjs/react-is.development.js */ 276);
10486
  }
10487
 
10488
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
10525
  /* unused harmony export y */
10526
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(/*! react */ 6);
10527
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
10528
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_core__ = __webpack_require__(/*! @emotion/core */ 64);
10529
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_dom__ = __webpack_require__(/*! react-dom */ 18);
10530
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react_dom__);
10531
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_prop_types__ = __webpack_require__(/*! prop-types */ 15);
10532
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__);
10533
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__utils_06b0d5a4_browser_esm_js__ = __webpack_require__(/*! ./utils-06b0d5a4.browser.esm.js */ 65);
10534
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
10535
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react_input_autosize__ = __webpack_require__(/*! react-input-autosize */ 140);
10536
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react_input_autosize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react_input_autosize__);
12115
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(/*! react */ 6);
12116
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
12117
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_memoize_one__ = __webpack_require__(/*! memoize-one */ 133);
12118
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_core__ = __webpack_require__(/*! @emotion/core */ 64);
12119
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom__ = __webpack_require__(/*! react-dom */ 18);
12120
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react_dom__);
12121
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__utils_06b0d5a4_browser_esm_js__ = __webpack_require__(/*! ./utils-06b0d5a4.browser.esm.js */ 65);
12122
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__index_4322c0ed_browser_esm_js__ = __webpack_require__(/*! ./index-4322c0ed.browser.esm.js */ 139);
12123
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
12124
 
15012
  /*! all exports used */
15013
  /***/ (function(module, exports, __webpack_require__) {
15014
 
15015
+ var apply = __webpack_require__(/*! ./_apply */ 315);
15016
 
15017
  /* Built-in method references for those with the same name as other `lodash` methods. */
15018
  var nativeMax = Math.max;
15059
  /*! all exports used */
15060
  /***/ (function(module, exports, __webpack_require__) {
15061
 
15062
+ var baseSetToString = __webpack_require__(/*! ./_baseSetToString */ 316),
15063
+ shortOut = __webpack_require__(/*! ./_shortOut */ 318);
15064
 
15065
  /**
15066
  * Sets the `toString` method of `func` to return `string`.
15167
  /***/ (function(module, exports, __webpack_require__) {
15168
 
15169
  var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */ 123),
15170
+ baseKeysIn = __webpack_require__(/*! ./_baseKeysIn */ 338),
15171
  isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23);
15172
 
15173
  /**
15209
  /*! all exports used */
15210
  /***/ (function(module, exports, __webpack_require__) {
15211
 
15212
+ var arrayPush = __webpack_require__(/*! ./_arrayPush */ 55),
15213
+ getPrototype = __webpack_require__(/*! ./_getPrototype */ 79),
15214
+ getSymbols = __webpack_require__(/*! ./_getSymbols */ 56),
15215
  stubArray = __webpack_require__(/*! ./stubArray */ 122);
15216
 
15217
  /* Built-in method references for those with the same name as other `lodash` methods. */
15250
 
15251
  exports.__esModule = true;
15252
 
15253
+ var _slider = __webpack_require__(/*! ./slider */ 374);
15254
 
15255
  var _slider2 = _interopRequireDefault(_slider);
15256
 
15877
  type: "string"
15878
  },
15879
  label: {
15880
+ type: "html",
15881
  default: '#Click Here'
15882
  },
15883
  link: {
16836
 
16837
  var _reactLifecyclesCompat = __webpack_require__(/*! react-lifecycles-compat */ 159);
16838
 
16839
+ var _ChildMapping = __webpack_require__(/*! ./utils/ChildMapping */ 415);
16840
 
16841
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16842
 
17628
  default: "none"
17629
  },
17630
  ctaText: {
17631
+ type: "html",
17632
  default: "Read More"
17633
  },
17634
  ctaLink: {
18788
  type: "string"
18789
  },
18790
  label: {
18791
+ type: 'html',
18792
  selector: ".uagb-icon-list__label",
18793
  default: "#Label"
18794
  },
19585
  default: "button"
19586
  },
19587
  ctaText: {
19588
+ type: "html",
19589
  default: "Read More"
19590
  },
19591
  ctaLink: {
21105
  default: Array(6).fill(true)
21106
  },
21107
  headerLinks: {
21108
+ type: 'html',
21109
  default: ''
21110
  },
21111
  align: {
21757
 
21758
  /***/ }),
21759
  /* 183 */
21760
+ /*!*****************************************!*\
21761
+ !*** ./src/blocks/how-to/attributes.js ***!
21762
+ \*****************************************/
21763
+ /*! exports provided: default */
21764
+ /*! exports used: default */
21765
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
21766
+
21767
+ "use strict";
21768
+ /**
21769
+ * BLOCK: UAGB How-To Schema Attributes
21770
+ */
21771
+
21772
+ var __ = wp.i18n.__;
21773
+
21774
+
21775
+ var tools = [];
21776
+
21777
+ var materials = [];
21778
+
21779
+ tools.push({
21780
+ "add_required_tools": __("- A Computer.")
21781
+ });
21782
+
21783
+ materials.push({
21784
+ "add_required_materials": __("- A WordPress Website.")
21785
+ });
21786
+
21787
+ var attributes = {
21788
+ block_id: {
21789
+ type: "string"
21790
+ },
21791
+ overallAlignment: {
21792
+ type: "string",
21793
+ default: "left"
21794
+ },
21795
+ toolsTitle: {
21796
+ type: "html",
21797
+ default: __("Required Tools:")
21798
+ },
21799
+ materialTitle: {
21800
+ type: "html",
21801
+ default: __("Things Needed?")
21802
+ },
21803
+ stepsTitle: {
21804
+ type: "html",
21805
+ default: __("Steps to configure the How-to Schema:")
21806
+ },
21807
+ tools_count: {
21808
+ type: "number",
21809
+ default: 1
21810
+ },
21811
+ material_count: {
21812
+ type: "number",
21813
+ default: 1
21814
+ },
21815
+ tools: {
21816
+ type: "array",
21817
+ default: tools
21818
+ },
21819
+ materials: {
21820
+ type: "array",
21821
+ default: materials
21822
+ },
21823
+ showTotaltime: {
21824
+ type: "boolean",
21825
+ default: true
21826
+ },
21827
+ showEstcost: {
21828
+ type: "boolean",
21829
+ default: true
21830
+ },
21831
+ showTools: {
21832
+ type: "boolean",
21833
+ default: true
21834
+ },
21835
+ showMaterials: {
21836
+ type: "boolean",
21837
+ default: true
21838
+ },
21839
+ mainimage: {
21840
+ type: "object",
21841
+ default: {
21842
+ "url": ""
21843
+ }
21844
+ },
21845
+ estCost: {
21846
+ type: "html",
21847
+ default: __("Total Cost:")
21848
+ },
21849
+ timeNeeded: {
21850
+ type: "html",
21851
+ default: __("Total Time Needed :")
21852
+ },
21853
+ timeIn: {
21854
+ type: "html",
21855
+ default: __(" Minutes")
21856
+ },
21857
+ imgSize: {
21858
+ type: "string",
21859
+ default: "thumbnail"
21860
+ },
21861
+ timeSpace: {
21862
+ type: "number",
21863
+ default: 5
21864
+ },
21865
+ costSpace: {
21866
+ type: "number",
21867
+ default: 5
21868
+ },
21869
+ time: {
21870
+ type: "string",
21871
+ default: "30"
21872
+ },
21873
+ cost: {
21874
+ type: "string",
21875
+ default: "65"
21876
+ },
21877
+ headingTitle: {
21878
+ source: "html",
21879
+ selector: "h1,h2,h3,h4,h5,h6",
21880
+ default: __("How To Configure How-To Schema In Ultimate Addons For Gutenberg?")
21881
+ },
21882
+ currencyType: {
21883
+ type: "html",
21884
+ default: " USD"
21885
+ },
21886
+ headingDesc: {
21887
+ source: "html",
21888
+ selector: "p",
21889
+ default: __("So to get started, you will just need to drag-n-drop the How-to Schema block in the Gutenberg editor. The How-to Schema block can be used on pages that contain a How-to in their title and describe steps to achieve certain requirements.")
21890
+ },
21891
+ headingAlign: {
21892
+ type: "string",
21893
+ default: "left"
21894
+ },
21895
+ descriptionAlign: {
21896
+ type: "string",
21897
+ default: "left"
21898
+ },
21899
+ headingColor: {
21900
+ type: "string"
21901
+ },
21902
+ showEstcostcolor: {
21903
+ type: "string"
21904
+ },
21905
+ showTotaltimecolor: {
21906
+ type: "string",
21907
+ default: ""
21908
+ },
21909
+ subHeadingColor: {
21910
+ type: "string",
21911
+ default: ""
21912
+ },
21913
+ headingTag: {
21914
+ type: "string",
21915
+ default: "h3"
21916
+ },
21917
+ headSpace: {
21918
+ type: "number",
21919
+ default: 15
21920
+ },
21921
+ headFontFamily: {
21922
+ type: "string",
21923
+ default: "Default"
21924
+ },
21925
+ headFontWeight: {
21926
+ type: "string"
21927
+ },
21928
+ headFontSubset: {
21929
+ type: "string"
21930
+ },
21931
+ headFontSizeType: {
21932
+ type: "string",
21933
+ default: "px"
21934
+ },
21935
+ headLineHeightType: {
21936
+ type: "string",
21937
+ default: "em"
21938
+ },
21939
+ headFontSize: {
21940
+ type: "number"
21941
+ },
21942
+ headFontSizeTablet: {
21943
+ type: "number"
21944
+ },
21945
+ headFontSizeMobile: {
21946
+ type: "number"
21947
+ },
21948
+ headLineHeight: {
21949
+ type: "number"
21950
+ },
21951
+ headLineHeightTablet: {
21952
+ type: "number"
21953
+ },
21954
+ headLineHeightMobile: {
21955
+ type: "number"
21956
+ },
21957
+ subHeadFontFamily: {
21958
+ type: "string",
21959
+ default: "Default"
21960
+ },
21961
+ subHeadFontWeight: {
21962
+ type: "string"
21963
+ },
21964
+ subHeadFontSubset: {
21965
+ type: "string"
21966
+ },
21967
+ subHeadFontSize: {
21968
+ type: "number"
21969
+ },
21970
+ subHeadFontSizeType: {
21971
+ type: "string",
21972
+ default: "px"
21973
+ },
21974
+ subHeadFontSizeTablet: {
21975
+ type: "number"
21976
+ },
21977
+ subHeadFontSizeMobile: {
21978
+ type: "number"
21979
+ },
21980
+ subHeadLineHeight: {
21981
+ type: "number"
21982
+ },
21983
+ subHeadLineHeightType: {
21984
+ type: "string",
21985
+ default: "em"
21986
+ },
21987
+ subHeadLineHeightTablet: {
21988
+ type: "number"
21989
+ },
21990
+ subHeadLineHeightMobile: {
21991
+ type: "number"
21992
+ },
21993
+ separatorSpace: {
21994
+ type: "number",
21995
+ default: 15
21996
+ },
21997
+ headLoadGoogleFonts: {
21998
+ type: "boolean",
21999
+ default: false
22000
+ },
22001
+ subHeadLoadGoogleFonts: {
22002
+ type: "boolean",
22003
+ default: false
22004
+ },
22005
+ priceFontSizeType: {
22006
+ type: "string",
22007
+ default: "px"
22008
+ },
22009
+ priceFontSize: {
22010
+ type: "number"
22011
+ },
22012
+ priceFontSizeTablet: {
22013
+ type: "number"
22014
+ },
22015
+ priceFontSizeMobile: {
22016
+ type: "number"
22017
+ },
22018
+ priceFontFamily: {
22019
+ type: "string",
22020
+ default: "Default"
22021
+ },
22022
+ priceFontWeight: {
22023
+ type: "string"
22024
+ },
22025
+ priceFontSubset: {
22026
+ type: "string"
22027
+ },
22028
+ priceLineHeightType: {
22029
+ type: "string",
22030
+ default: "em"
22031
+ },
22032
+ priceLineHeight: {
22033
+ type: "number"
22034
+ },
22035
+ priceLineHeightTablet: {
22036
+ type: "number"
22037
+ },
22038
+ priceLineHeightMobile: {
22039
+ type: "number"
22040
+ },
22041
+ priceLoadGoogleFonts: {
22042
+ type: "boolean",
22043
+ default: false
22044
+ },
22045
+ row_gap: {
22046
+ type: "number",
22047
+ default: 20
22048
+ },
22049
+ step_gap: {
22050
+ type: "number"
22051
+ },
22052
+ schema: {
22053
+ type: "html",
22054
+ default: ""
22055
+ },
22056
+ timeInMins: {
22057
+ type: "number"
22058
+
22059
+ },
22060
+ timeInHours: {
22061
+ type: "number"
22062
+ },
22063
+ timeInDays: {
22064
+ type: "number"
22065
+ },
22066
+ timeInMonths: {
22067
+ type: "number"
22068
+ },
22069
+ timeInYears: {
22070
+ type: "number"
22071
+ }
22072
+
22073
+ };
22074
+
22075
+ /* harmony default export */ __webpack_exports__["a"] = (attributes);
22076
+
22077
+ /***/ }),
22078
+ /* 184 */
22079
  /*!**************************************!*\
22080
  !*** ./src/blocks/how-to/style.scss ***!
22081
  \**************************************/
22085
  // removed by extract-text-webpack-plugin
22086
 
22087
  /***/ }),
22088
+ /* 185 */
22089
  /*!********************************************!*\
22090
  !*** ./src/blocks/faq-child/attributes.js ***!
22091
  \********************************************/
22131
  /* harmony default export */ __webpack_exports__["a"] = (attributes);
22132
 
22133
  /***/ }),
22134
+ /* 186 */
22135
  /*!***********************!*\
22136
  !*** ./src/blocks.js ***!
22137
  \***********************/
22141
 
22142
  "use strict";
22143
  Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
22144
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__blocks_advanced_heading_block_js__ = __webpack_require__(/*! ./blocks/advanced-heading/block.js */ 187);
22145
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__blocks_post_block_js__ = __webpack_require__(/*! ./blocks/post/block.js */ 287);
22146
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__blocks_section_block_js__ = __webpack_require__(/*! ./blocks/section/block.js */ 389);
22147
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blocks_buttons_block_js__ = __webpack_require__(/*! ./blocks/buttons/block.js */ 396);
22148
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__blocks_buttons_child_block_js__ = __webpack_require__(/*! ./blocks/buttons-child/block.js */ 404);
22149
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__blocks_info_box_block_js__ = __webpack_require__(/*! ./blocks/info-box/block.js */ 419);
22150
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__blocks_testimonial_block_js__ = __webpack_require__(/*! ./blocks/testimonial/block.js */ 427);
22151
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__blocks_team_block_js__ = __webpack_require__(/*! ./blocks/team/block.js */ 434);
22152
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__blocks_social_share_block_js__ = __webpack_require__(/*! ./blocks/social-share/block.js */ 441);
22153
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__blocks_social_share_child_block_js__ = __webpack_require__(/*! ./blocks/social-share-child/block.js */ 449);
22154
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__blocks_google_map_block_js__ = __webpack_require__(/*! ./blocks/google-map/block.js */ 456);
22155
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__blocks_icon_list_block_js__ = __webpack_require__(/*! ./blocks/icon-list/block.js */ 458);
22156
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__blocks_icon_list_child_block_js__ = __webpack_require__(/*! ./blocks/icon-list-child/block.js */ 466);
22157
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__blocks_price_list_block_js__ = __webpack_require__(/*! ./blocks/price-list/block.js */ 473);
22158
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__blocks_timeline_block_js__ = __webpack_require__(/*! ./blocks/timeline/block.js */ 480);
22159
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__blocks_call_to_action_block_js__ = __webpack_require__(/*! ./blocks/call-to-action/block.js */ 499);
22160
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__blocks_column_block_js__ = __webpack_require__(/*! ./blocks/column/block.js */ 507);
22161
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__blocks_columns_block_js__ = __webpack_require__(/*! ./blocks/columns/block.js */ 515);
22162
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__blocks_cf7_styler_block_js__ = __webpack_require__(/*! ./blocks/cf7-styler/block.js */ 534);
22163
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__blocks_gf_styler_block_js__ = __webpack_require__(/*! ./blocks/gf-styler/block.js */ 539);
22164
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_20__blocks_blockquote_block_js__ = __webpack_require__(/*! ./blocks/blockquote/block.js */ 544);
22165
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_21__blocks_marketing_button_block_js__ = __webpack_require__(/*! ./blocks/marketing-button/block.js */ 552);
22166
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_22__blocks_table_of_contents_block_js__ = __webpack_require__(/*! ./blocks/table-of-contents/block.js */ 559);
22167
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_23__blocks_how_to_block_js__ = __webpack_require__(/*! ./blocks/how-to/block.js */ 568);
22168
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_24__blocks_faq_block_js__ = __webpack_require__(/*! ./blocks/faq/block.js */ 575);
22169
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_25__blocks_faq_child_block_js__ = __webpack_require__(/*! ./blocks/faq-child/block.js */ 582);
22170
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_26__blocks_inline_notice_block_js__ = __webpack_require__(/*! ./blocks/inline-notice/block.js */ 588);
22171
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_27__blocks_wp_search_block_js__ = __webpack_require__(/*! ./blocks/wp-search/block.js */ 595);
22172
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_28__blocks_taxonomy_list_block_js__ = __webpack_require__(/*! ./blocks/taxonomy-list/block.js */ 602);
22173
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_29__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../dist/blocks/uagb-controls/block-icons */ 1);
22174
  /**
22175
  * Gutenberg Blocks
22176
  *
22200
 
22201
 
22202
 
22203
+
22204
 
22205
 
22206
 
22217
 
22218
 
22219
  updateCategory("uagb", {
22220
+ icon: __WEBPACK_IMPORTED_MODULE_29__dist_blocks_uagb_controls_block_icons__["a" /* default */].logo
22221
  });
22222
 
22223
  /***/ }),
22224
+ /* 187 */
22225
  /*!**********************************************!*\
22226
  !*** ./src/blocks/advanced-heading/block.js ***!
22227
  \**********************************************/
22231
  "use strict";
22232
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
22233
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 112);
22234
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 188);
22235
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 284);
22236
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 285);
22237
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__transform__ = __webpack_require__(/*! ./transform */ 286);
22238
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 142);
22239
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
22240
  /**
22271
  });
22272
 
22273
  /***/ }),
22274
+ /* 188 */
22275
  /*!*********************************************!*\
22276
  !*** ./src/blocks/advanced-heading/edit.js ***!
22277
  \*********************************************/
22282
  "use strict";
22283
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
22284
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
22285
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 189);
22286
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
22287
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
22288
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 142);
22779
  })(UAGBAdvancedHeading));
22780
 
22781
  /***/ }),
22782
+ /* 189 */
22783
  /*!************************************************!*\
22784
  !*** ./src/blocks/advanced-heading/styling.js ***!
22785
  \************************************************/
22902
  /* harmony default export */ __webpack_exports__["a"] = (styling);
22903
 
22904
  /***/ }),
22905
+ /* 190 */
22906
  /*!******************************************************!*\
22907
  !*** ./src/components/typography/font-typography.js ***!
22908
  \******************************************************/
22913
  "use strict";
22914
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
22915
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_map__);
22916
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__fonts__ = __webpack_require__(/*! ./fonts */ 257);
22917
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_select__ = __webpack_require__(/*! react-select */ 258);
22918
  var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
22919
 
22920
  function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
23077
  /* harmony default export */ __webpack_exports__["a"] = (FontFamilyControl);
23078
 
23079
  /***/ }),
23080
+ /* 191 */
23081
  /*!*********************************************!*\
23082
  !*** ./node_modules/lodash/_baseMatches.js ***!
23083
  \*********************************************/
23085
  /*! all exports used */
23086
  /***/ (function(module, exports, __webpack_require__) {
23087
 
23088
+ var baseIsMatch = __webpack_require__(/*! ./_baseIsMatch */ 192),
23089
+ getMatchData = __webpack_require__(/*! ./_getMatchData */ 241),
23090
  matchesStrictComparable = __webpack_require__(/*! ./_matchesStrictComparable */ 128);
23091
 
23092
  /**
23110
 
23111
 
23112
  /***/ }),
23113
+ /* 192 */
23114
  /*!*********************************************!*\
23115
  !*** ./node_modules/lodash/_baseIsMatch.js ***!
23116
  \*********************************************/
23118
  /*! all exports used */
23119
  /***/ (function(module, exports, __webpack_require__) {
23120
 
23121
+ var Stack = __webpack_require__(/*! ./_Stack */ 51),
23122
  baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */ 117);
23123
 
23124
  /** Used to compose bitmasks for value comparisons. */
23183
 
23184
 
23185
  /***/ }),
23186
+ /* 193 */
23187
  /*!************************************************!*\
23188
  !*** ./node_modules/lodash/_listCacheClear.js ***!
23189
  \************************************************/
23207
 
23208
 
23209
  /***/ }),
23210
+ /* 194 */
23211
  /*!*************************************************!*\
23212
  !*** ./node_modules/lodash/_listCacheDelete.js ***!
23213
  \*************************************************/
23253
 
23254
 
23255
  /***/ }),
23256
+ /* 195 */
23257
  /*!**********************************************!*\
23258
  !*** ./node_modules/lodash/_listCacheGet.js ***!
23259
  \**********************************************/
23283
 
23284
 
23285
  /***/ }),
23286
+ /* 196 */
23287
  /*!**********************************************!*\
23288
  !*** ./node_modules/lodash/_listCacheHas.js ***!
23289
  \**********************************************/
23310
 
23311
 
23312
  /***/ }),
23313
+ /* 197 */
23314
  /*!**********************************************!*\
23315
  !*** ./node_modules/lodash/_listCacheSet.js ***!
23316
  \**********************************************/
23347
 
23348
 
23349
  /***/ }),
23350
+ /* 198 */
23351
  /*!********************************************!*\
23352
  !*** ./node_modules/lodash/_stackClear.js ***!
23353
  \********************************************/
23373
 
23374
 
23375
  /***/ }),
23376
+ /* 199 */
23377
  /*!*********************************************!*\
23378
  !*** ./node_modules/lodash/_stackDelete.js ***!
23379
  \*********************************************/
23402
 
23403
 
23404
  /***/ }),
23405
+ /* 200 */
23406
  /*!******************************************!*\
23407
  !*** ./node_modules/lodash/_stackGet.js ***!
23408
  \******************************************/
23427
 
23428
 
23429
  /***/ }),
23430
+ /* 201 */
23431
  /*!******************************************!*\
23432
  !*** ./node_modules/lodash/_stackHas.js ***!
23433
  \******************************************/
23452
 
23453
 
23454
  /***/ }),
23455
+ /* 202 */
23456
  /*!******************************************!*\
23457
  !*** ./node_modules/lodash/_stackSet.js ***!
23458
  \******************************************/
23461
  /***/ (function(module, exports, __webpack_require__) {
23462
 
23463
  var ListCache = __webpack_require__(/*! ./_ListCache */ 35),
23464
+ Map = __webpack_require__(/*! ./_Map */ 52),
23465
+ MapCache = __webpack_require__(/*! ./_MapCache */ 54);
23466
 
23467
  /** Used as the size to enable large array optimizations. */
23468
  var LARGE_ARRAY_SIZE = 200;
23497
 
23498
 
23499
  /***/ }),
23500
+ /* 203 */
23501
  /*!**********************************************!*\
23502
  !*** ./node_modules/lodash/_baseIsNative.js ***!
23503
  \**********************************************/
23506
  /***/ (function(module, exports, __webpack_require__) {
23507
 
23508
  var isFunction = __webpack_require__(/*! ./isFunction */ 114),
23509
+ isMasked = __webpack_require__(/*! ./_isMasked */ 206),
23510
  isObject = __webpack_require__(/*! ./isObject */ 13),
23511
  toSource = __webpack_require__(/*! ./_toSource */ 116);
23512
 
23555
 
23556
 
23557
  /***/ }),
23558
+ /* 204 */
23559
  /*!*******************************************!*\
23560
  !*** ./node_modules/lodash/_getRawTag.js ***!
23561
  \*******************************************/
23612
 
23613
 
23614
  /***/ }),
23615
+ /* 205 */
23616
  /*!************************************************!*\
23617
  !*** ./node_modules/lodash/_objectToString.js ***!
23618
  \************************************************/
23645
 
23646
 
23647
  /***/ }),
23648
+ /* 206 */
23649
  /*!******************************************!*\
23650
  !*** ./node_modules/lodash/_isMasked.js ***!
23651
  \******************************************/
23653
  /*! all exports used */
23654
  /***/ (function(module, exports, __webpack_require__) {
23655
 
23656
+ var coreJsData = __webpack_require__(/*! ./_coreJsData */ 207);
23657
 
23658
  /** Used to detect methods masquerading as native. */
23659
  var maskSrcKey = (function() {
23676
 
23677
 
23678
  /***/ }),
23679
+ /* 207 */
23680
  /*!********************************************!*\
23681
  !*** ./node_modules/lodash/_coreJsData.js ***!
23682
  \********************************************/
23693
 
23694
 
23695
  /***/ }),
23696
+ /* 208 */
23697
  /*!******************************************!*\
23698
  !*** ./node_modules/lodash/_getValue.js ***!
23699
  \******************************************/
23717
 
23718
 
23719
  /***/ }),
23720
+ /* 209 */
23721
  /*!***********************************************!*\
23722
  !*** ./node_modules/lodash/_mapCacheClear.js ***!
23723
  \***********************************************/
23725
  /*! all exports used */
23726
  /***/ (function(module, exports, __webpack_require__) {
23727
 
23728
+ var Hash = __webpack_require__(/*! ./_Hash */ 210),
23729
  ListCache = __webpack_require__(/*! ./_ListCache */ 35),
23730
+ Map = __webpack_require__(/*! ./_Map */ 52);
23731
 
23732
  /**
23733
  * Removes all key-value entries from the map.
23749
 
23750
 
23751
  /***/ }),
23752
+ /* 210 */
23753
  /*!**************************************!*\
23754
  !*** ./node_modules/lodash/_Hash.js ***!
23755
  \**************************************/
23757
  /*! all exports used */
23758
  /***/ (function(module, exports, __webpack_require__) {
23759
 
23760
+ var hashClear = __webpack_require__(/*! ./_hashClear */ 211),
23761
+ hashDelete = __webpack_require__(/*! ./_hashDelete */ 212),
23762
+ hashGet = __webpack_require__(/*! ./_hashGet */ 213),
23763
+ hashHas = __webpack_require__(/*! ./_hashHas */ 214),
23764
+ hashSet = __webpack_require__(/*! ./_hashSet */ 215);
23765
 
23766
  /**
23767
  * Creates a hash object.
23792
 
23793
 
23794
  /***/ }),
23795
+ /* 211 */
23796
  /*!*******************************************!*\
23797
  !*** ./node_modules/lodash/_hashClear.js ***!
23798
  \*******************************************/
23818
 
23819
 
23820
  /***/ }),
23821
+ /* 212 */
23822
  /*!********************************************!*\
23823
  !*** ./node_modules/lodash/_hashDelete.js ***!
23824
  \********************************************/
23846
 
23847
 
23848
  /***/ }),
23849
+ /* 213 */
23850
  /*!*****************************************!*\
23851
  !*** ./node_modules/lodash/_hashGet.js ***!
23852
  \*****************************************/
23887
 
23888
 
23889
  /***/ }),
23890
+ /* 214 */
23891
  /*!*****************************************!*\
23892
  !*** ./node_modules/lodash/_hashHas.js ***!
23893
  \*****************************************/
23921
 
23922
 
23923
  /***/ }),
23924
+ /* 215 */
23925
  /*!*****************************************!*\
23926
  !*** ./node_modules/lodash/_hashSet.js ***!
23927
  \*****************************************/
23955
 
23956
 
23957
  /***/ }),
23958
+ /* 216 */
23959
  /*!************************************************!*\
23960
  !*** ./node_modules/lodash/_mapCacheDelete.js ***!
23961
  \************************************************/
23984
 
23985
 
23986
  /***/ }),
23987
+ /* 217 */
23988
  /*!*******************************************!*\
23989
  !*** ./node_modules/lodash/_isKeyable.js ***!
23990
  \*******************************************/
24010
 
24011
 
24012
  /***/ }),
24013
+ /* 218 */
24014
  /*!*********************************************!*\
24015
  !*** ./node_modules/lodash/_mapCacheGet.js ***!
24016
  \*********************************************/
24037
 
24038
 
24039
  /***/ }),
24040
+ /* 219 */
24041
  /*!*********************************************!*\
24042
  !*** ./node_modules/lodash/_mapCacheHas.js ***!
24043
  \*********************************************/
24064
 
24065
 
24066
  /***/ }),
24067
+ /* 220 */
24068
  /*!*********************************************!*\
24069
  !*** ./node_modules/lodash/_mapCacheSet.js ***!
24070
  \*********************************************/
24097
 
24098
 
24099
  /***/ }),
24100
+ /* 221 */
24101
  /*!*************************************************!*\
24102
  !*** ./node_modules/lodash/_baseIsEqualDeep.js ***!
24103
  \*************************************************/
24105
  /*! all exports used */
24106
  /***/ (function(module, exports, __webpack_require__) {
24107
 
24108
+ var Stack = __webpack_require__(/*! ./_Stack */ 51),
24109
  equalArrays = __webpack_require__(/*! ./_equalArrays */ 118),
24110
+ equalByTag = __webpack_require__(/*! ./_equalByTag */ 227),
24111
+ equalObjects = __webpack_require__(/*! ./_equalObjects */ 230),
24112
  getTag = __webpack_require__(/*! ./_getTag */ 44),
24113
  isArray = __webpack_require__(/*! ./isArray */ 14),
24114
+ isBuffer = __webpack_require__(/*! ./isBuffer */ 58),
24115
  isTypedArray = __webpack_require__(/*! ./isTypedArray */ 125);
24116
 
24117
  /** Used to compose bitmasks for value comparisons. */
24191
 
24192
 
24193
  /***/ }),
24194
+ /* 222 */
24195
  /*!******************************************!*\
24196
  !*** ./node_modules/lodash/_SetCache.js ***!
24197
  \******************************************/
24199
  /*! all exports used */
24200
  /***/ (function(module, exports, __webpack_require__) {
24201
 
24202
+ var MapCache = __webpack_require__(/*! ./_MapCache */ 54),
24203
+ setCacheAdd = __webpack_require__(/*! ./_setCacheAdd */ 223),
24204
+ setCacheHas = __webpack_require__(/*! ./_setCacheHas */ 224);
24205
 
24206
  /**
24207
  *
24229
 
24230
 
24231
  /***/ }),
24232
+ /* 223 */
24233
  /*!*********************************************!*\
24234
  !*** ./node_modules/lodash/_setCacheAdd.js ***!
24235
  \*********************************************/
24259
 
24260
 
24261
  /***/ }),
24262
+ /* 224 */
24263
  /*!*********************************************!*\
24264
  !*** ./node_modules/lodash/_setCacheHas.js ***!
24265
  \*********************************************/
24284
 
24285
 
24286
  /***/ }),
24287
+ /* 225 */
24288
  /*!*******************************************!*\
24289
  !*** ./node_modules/lodash/_arraySome.js ***!
24290
  \*******************************************/
24318
 
24319
 
24320
  /***/ }),
24321
+ /* 226 */
24322
  /*!******************************************!*\
24323
  !*** ./node_modules/lodash/_cacheHas.js ***!
24324
  \******************************************/
24342
 
24343
 
24344
  /***/ }),
24345
+ /* 227 */
24346
  /*!********************************************!*\
24347
  !*** ./node_modules/lodash/_equalByTag.js ***!
24348
  \********************************************/
24354
  Uint8Array = __webpack_require__(/*! ./_Uint8Array */ 119),
24355
  eq = __webpack_require__(/*! ./eq */ 37),
24356
  equalArrays = __webpack_require__(/*! ./_equalArrays */ 118),
24357
+ mapToArray = __webpack_require__(/*! ./_mapToArray */ 228),
24358
+ setToArray = __webpack_require__(/*! ./_setToArray */ 229);
24359
 
24360
  /** Used to compose bitmasks for value comparisons. */
24361
  var COMPARE_PARTIAL_FLAG = 1,
24465
 
24466
 
24467
  /***/ }),
24468
+ /* 228 */
24469
  /*!********************************************!*\
24470
  !*** ./node_modules/lodash/_mapToArray.js ***!
24471
  \********************************************/
24494
 
24495
 
24496
  /***/ }),
24497
+ /* 229 */
24498
  /*!********************************************!*\
24499
  !*** ./node_modules/lodash/_setToArray.js ***!
24500
  \********************************************/
24523
 
24524
 
24525
  /***/ }),
24526
+ /* 230 */
24527
  /*!**********************************************!*\
24528
  !*** ./node_modules/lodash/_equalObjects.js ***!
24529
  \**********************************************/
24623
 
24624
 
24625
  /***/ }),
24626
+ /* 231 */
24627
  /*!*********************************************!*\
24628
  !*** ./node_modules/lodash/_arrayFilter.js ***!
24629
  \*********************************************/
24659
 
24660
 
24661
  /***/ }),
24662
+ /* 232 */
24663
  /*!*************************************************!*\
24664
  !*** ./node_modules/lodash/_baseIsArguments.js ***!
24665
  \*************************************************/
24688
 
24689
 
24690
  /***/ }),
24691
+ /* 233 */
24692
  /*!******************************************!*\
24693
  !*** ./node_modules/lodash/stubFalse.js ***!
24694
  \******************************************/
24717
 
24718
 
24719
  /***/ }),
24720
+ /* 234 */
24721
  /*!**************************************************!*\
24722
  !*** ./node_modules/lodash/_baseIsTypedArray.js ***!
24723
  \**************************************************/
24726
  /***/ (function(module, exports, __webpack_require__) {
24727
 
24728
  var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 20),
24729
+ isLength = __webpack_require__(/*! ./isLength */ 60),
24730
  isObjectLike = __webpack_require__(/*! ./isObjectLike */ 17);
24731
 
24732
  /** `Object#toString` result references. */
24788
 
24789
 
24790
  /***/ }),
24791
+ /* 235 */
24792
  /*!******************************************!*\
24793
  !*** ./node_modules/lodash/_baseKeys.js ***!
24794
  \******************************************/
24797
  /***/ (function(module, exports, __webpack_require__) {
24798
 
24799
  var isPrototype = __webpack_require__(/*! ./_isPrototype */ 43),
24800
+ nativeKeys = __webpack_require__(/*! ./_nativeKeys */ 236);
24801
 
24802
  /** Used for built-in method references. */
24803
  var objectProto = Object.prototype;
24829
 
24830
 
24831
  /***/ }),
24832
+ /* 236 */
24833
  /*!********************************************!*\
24834
  !*** ./node_modules/lodash/_nativeKeys.js ***!
24835
  \********************************************/
24846
 
24847
 
24848
  /***/ }),
24849
+ /* 237 */
24850
  /*!******************************************!*\
24851
  !*** ./node_modules/lodash/_DataView.js ***!
24852
  \******************************************/
24864
 
24865
 
24866
  /***/ }),
24867
+ /* 238 */
24868
  /*!*****************************************!*\
24869
  !*** ./node_modules/lodash/_Promise.js ***!
24870
  \*****************************************/
24882
 
24883
 
24884
  /***/ }),
24885
+ /* 239 */
24886
  /*!*************************************!*\
24887
  !*** ./node_modules/lodash/_Set.js ***!
24888
  \*************************************/
24900
 
24901
 
24902
  /***/ }),
24903
+ /* 240 */
24904
  /*!*****************************************!*\
24905
  !*** ./node_modules/lodash/_WeakMap.js ***!
24906
  \*****************************************/
24918
 
24919
 
24920
  /***/ }),
24921
+ /* 241 */
24922
  /*!**********************************************!*\
24923
  !*** ./node_modules/lodash/_getMatchData.js ***!
24924
  \**********************************************/
24953
 
24954
 
24955
  /***/ }),
24956
+ /* 242 */
24957
  /*!*****************************************************!*\
24958
  !*** ./node_modules/lodash/_baseMatchesProperty.js ***!
24959
  \*****************************************************/
24963
 
24964
  var baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */ 117),
24965
  get = __webpack_require__(/*! ./get */ 129),
24966
+ hasIn = __webpack_require__(/*! ./hasIn */ 246),
24967
+ isKey = __webpack_require__(/*! ./_isKey */ 61),
24968
  isStrictComparable = __webpack_require__(/*! ./_isStrictComparable */ 127),
24969
  matchesStrictComparable = __webpack_require__(/*! ./_matchesStrictComparable */ 128),
24970
  toKey = __webpack_require__(/*! ./_toKey */ 25);
24997
 
24998
 
24999
  /***/ }),
25000
+ /* 243 */
25001
  /*!**********************************************!*\
25002
  !*** ./node_modules/lodash/_stringToPath.js ***!
25003
  \**********************************************/
25005
  /*! all exports used */
25006
  /***/ (function(module, exports, __webpack_require__) {
25007
 
25008
+ var memoizeCapped = __webpack_require__(/*! ./_memoizeCapped */ 244);
25009
 
25010
  /** Used to match property names within property paths. */
25011
  var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g;
25035
 
25036
 
25037
  /***/ }),
25038
+ /* 244 */
25039
  /*!***********************************************!*\
25040
  !*** ./node_modules/lodash/_memoizeCapped.js ***!
25041
  \***********************************************/
25043
  /*! all exports used */
25044
  /***/ (function(module, exports, __webpack_require__) {
25045
 
25046
+ var memoize = __webpack_require__(/*! ./memoize */ 245);
25047
 
25048
  /** Used as the maximum memoize cache size. */
25049
  var MAX_MEMOIZE_SIZE = 500;
25072
 
25073
 
25074
  /***/ }),
25075
+ /* 245 */
25076
  /*!****************************************!*\
25077
  !*** ./node_modules/lodash/memoize.js ***!
25078
  \****************************************/
25080
  /*! all exports used */
25081
  /***/ (function(module, exports, __webpack_require__) {
25082
 
25083
+ var MapCache = __webpack_require__(/*! ./_MapCache */ 54);
25084
 
25085
  /** Error message constants. */
25086
  var FUNC_ERROR_TEXT = 'Expected a function';
25156
 
25157
 
25158
  /***/ }),
25159
+ /* 246 */
25160
  /*!**************************************!*\
25161
  !*** ./node_modules/lodash/hasIn.js ***!
25162
  \**************************************/
25164
  /*! all exports used */
25165
  /***/ (function(module, exports, __webpack_require__) {
25166
 
25167
+ var baseHasIn = __webpack_require__(/*! ./_baseHasIn */ 247),
25168
+ hasPath = __webpack_require__(/*! ./_hasPath */ 248);
25169
 
25170
  /**
25171
  * Checks if `path` is a direct or inherited property of `object`.
25201
 
25202
 
25203
  /***/ }),
25204
+ /* 247 */
25205
  /*!*******************************************!*\
25206
  !*** ./node_modules/lodash/_baseHasIn.js ***!
25207
  \*******************************************/
25225
 
25226
 
25227
  /***/ }),
25228
+ /* 248 */
25229
  /*!*****************************************!*\
25230
  !*** ./node_modules/lodash/_hasPath.js ***!
25231
  \*****************************************/
25234
  /***/ (function(module, exports, __webpack_require__) {
25235
 
25236
  var castPath = __webpack_require__(/*! ./_castPath */ 24),
25237
+ isArguments = __webpack_require__(/*! ./isArguments */ 57),
25238
  isArray = __webpack_require__(/*! ./isArray */ 14),
25239
  isIndex = __webpack_require__(/*! ./_isIndex */ 40),
25240
+ isLength = __webpack_require__(/*! ./isLength */ 60),
25241
  toKey = __webpack_require__(/*! ./_toKey */ 25);
25242
 
25243
  /**
25275
 
25276
 
25277
  /***/ }),
25278
+ /* 249 */
25279
  /*!*****************************************!*\
25280
  !*** ./node_modules/lodash/property.js ***!
25281
  \*****************************************/
25284
  /***/ (function(module, exports, __webpack_require__) {
25285
 
25286
  var baseProperty = __webpack_require__(/*! ./_baseProperty */ 132),
25287
+ basePropertyDeep = __webpack_require__(/*! ./_basePropertyDeep */ 250),
25288
+ isKey = __webpack_require__(/*! ./_isKey */ 61),
25289
  toKey = __webpack_require__(/*! ./_toKey */ 25);
25290
 
25291
  /**
25318
 
25319
 
25320
  /***/ }),
25321
+ /* 250 */
25322
  /*!**************************************************!*\
25323
  !*** ./node_modules/lodash/_basePropertyDeep.js ***!
25324
  \**************************************************/
25345
 
25346
 
25347
  /***/ }),
25348
+ /* 251 */
25349
  /*!*****************************************!*\
25350
  !*** ./node_modules/lodash/_baseMap.js ***!
25351
  \*****************************************/
25353
  /*! all exports used */
25354
  /***/ (function(module, exports, __webpack_require__) {
25355
 
25356
+ var baseEach = __webpack_require__(/*! ./_baseEach */ 252),
25357
  isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23);
25358
 
25359
  /**
25378
 
25379
 
25380
  /***/ }),
25381
+ /* 252 */
25382
  /*!******************************************!*\
25383
  !*** ./node_modules/lodash/_baseEach.js ***!
25384
  \******************************************/
25386
  /*! all exports used */
25387
  /***/ (function(module, exports, __webpack_require__) {
25388
 
25389
+ var baseForOwn = __webpack_require__(/*! ./_baseForOwn */ 253),
25390
+ createBaseEach = __webpack_require__(/*! ./_createBaseEach */ 256);
25391
 
25392
  /**
25393
  * The base implementation of `_.forEach` without support for iteratee shorthands.
25403
 
25404
 
25405
  /***/ }),
25406
+ /* 253 */
25407
  /*!********************************************!*\
25408
  !*** ./node_modules/lodash/_baseForOwn.js ***!
25409
  \********************************************/
25411
  /*! all exports used */
25412
  /***/ (function(module, exports, __webpack_require__) {
25413
 
25414
+ var baseFor = __webpack_require__(/*! ./_baseFor */ 254),
25415
  keys = __webpack_require__(/*! ./keys */ 22);
25416
 
25417
  /**
25430
 
25431
 
25432
  /***/ }),
25433
+ /* 254 */
25434
  /*!*****************************************!*\
25435
  !*** ./node_modules/lodash/_baseFor.js ***!
25436
  \*****************************************/
25438
  /*! all exports used */
25439
  /***/ (function(module, exports, __webpack_require__) {
25440
 
25441
+ var createBaseFor = __webpack_require__(/*! ./_createBaseFor */ 255);
25442
 
25443
  /**
25444
  * The base implementation of `baseForOwn` which iterates over `object`
25457
 
25458
 
25459
  /***/ }),
25460
+ /* 255 */
25461
  /*!***********************************************!*\
25462
  !*** ./node_modules/lodash/_createBaseFor.js ***!
25463
  \***********************************************/
25493
 
25494
 
25495
  /***/ }),
25496
+ /* 256 */
25497
  /*!************************************************!*\
25498
  !*** ./node_modules/lodash/_createBaseEach.js ***!
25499
  \************************************************/
25536
 
25537
 
25538
  /***/ }),
25539
+ /* 257 */
25540
  /*!********************************************!*\
25541
  !*** ./src/components/typography/fonts.js ***!
25542
  \********************************************/
26441
  /* harmony default export */ __webpack_exports__["a"] = (fonts);
26442
 
26443
  /***/ }),
26444
+ /* 258 */
26445
  /*!********************************************************************!*\
26446
  !*** ./node_modules/react-select/dist/react-select.browser.esm.js ***!
26447
  \********************************************************************/
26454
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(/*! react */ 6);
26455
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
26456
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_memoize_one__ = __webpack_require__(/*! memoize-one */ 133);
26457
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_core__ = __webpack_require__(/*! @emotion/core */ 64);
26458
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom__ = __webpack_require__(/*! react-dom */ 18);
26459
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react_dom__);
26460
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(/*! prop-types */ 15);
26461
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__);
26462
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__utils_06b0d5a4_browser_esm_js__ = __webpack_require__(/*! ./utils-06b0d5a4.browser.esm.js */ 65);
26463
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__index_4322c0ed_browser_esm_js__ = __webpack_require__(/*! ./index-4322c0ed.browser.esm.js */ 139);
26464
  /* unused harmony reexport components */
26465
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__Select_9fdb8cd0_browser_esm_js__ = __webpack_require__(/*! ./Select-9fdb8cd0.browser.esm.js */ 141);
26469
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
26470
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9_react_input_autosize__ = __webpack_require__(/*! react-input-autosize */ 140);
26471
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9_react_input_autosize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_9_react_input_autosize__);
26472
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__stateManager_04f734a2_browser_esm_js__ = __webpack_require__(/*! ./stateManager-04f734a2.browser.esm.js */ 279);
26473
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__emotion_cache__ = __webpack_require__(/*! @emotion/cache */ 134);
26474
 
26475
 
26526
 
26527
 
26528
  /***/ }),
26529
+ /* 259 */
26530
  /*!********************************************************!*\
26531
  !*** ./node_modules/react/cjs/react.production.min.js ***!
26532
  \********************************************************/
26563
 
26564
 
26565
  /***/ }),
26566
+ /* 260 */
26567
  /*!*****************************************************!*\
26568
  !*** ./node_modules/react/cjs/react.development.js ***!
26569
  \*****************************************************/
26590
  'use strict';
26591
 
26592
  var _assign = __webpack_require__(/*! object-assign */ 26);
26593
+ var checkPropTypes = __webpack_require__(/*! prop-types/checkPropTypes */ 62);
26594
 
26595
  // TODO: this is special because it gets imported during build.
26596
 
28896
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
28897
 
28898
  /***/ }),
28899
+ /* 261 */
28900
  /*!*****************************************************************************************!*\
28901
  !*** ./node_modules/@emotion/core/node_modules/@babel/runtime/helpers/inheritsLoose.js ***!
28902
  \*****************************************************************************************/
28913
  module.exports = _inheritsLoose;
28914
 
28915
  /***/ }),
28916
+ /* 262 */
28917
  /*!*****************************************************************!*\
28918
  !*** ./node_modules/@emotion/stylis/dist/stylis.browser.esm.js ***!
28919
  \*****************************************************************/
29540
 
29541
 
29542
  /***/ }),
29543
+ /* 263 */
29544
  /*!*****************************************************************************!*\
29545
  !*** ./node_modules/@emotion/weak-memoize/dist/weak-memoize.browser.esm.js ***!
29546
  \*****************************************************************************/
29567
 
29568
 
29569
  /***/ }),
29570
+ /* 264 */
29571
  /*!***************************************************************!*\
29572
  !*** ./node_modules/@emotion/utils/dist/utils.browser.esm.js ***!
29573
  \***************************************************************/
29621
 
29622
 
29623
  /***/ }),
29624
+ /* 265 */
29625
  /*!*************************************************************!*\
29626
  !*** ./node_modules/@emotion/hash/dist/hash.browser.esm.js ***!
29627
  \*************************************************************/
29688
 
29689
 
29690
  /***/ }),
29691
+ /* 266 */
29692
  /*!*********************************************************************!*\
29693
  !*** ./node_modules/@emotion/unitless/dist/unitless.browser.esm.js ***!
29694
  \*********************************************************************/
29750
 
29751
 
29752
  /***/ }),
29753
+ /* 267 */
29754
  /*!*******************************************************************!*\
29755
  !*** ./node_modules/@emotion/memoize/dist/memoize.browser.esm.js ***!
29756
  \*******************************************************************/
29771
 
29772
 
29773
  /***/ }),
29774
+ /* 268 */
29775
  /*!****************************************************************!*\
29776
  !*** ./node_modules/react-dom/cjs/react-dom.production.min.js ***!
29777
  \****************************************************************/
30073
 
30074
 
30075
  /***/ }),
30076
+ /* 269 */
30077
  /*!***************************************************************************************!*\
30078
  !*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler.production.min.js ***!
30079
  \***************************************************************************************/
30107
 
30108
 
30109
  /***/ }),
30110
+ /* 270 */
30111
  /*!************************************************************************************!*\
30112
  !*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler.development.js ***!
30113
  \************************************************************************************/
31024
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../../process/browser.js */ 3)))
31025
 
31026
  /***/ }),
31027
+ /* 271 */
31028
  /*!*************************************************************!*\
31029
  !*** ./node_modules/react-dom/cjs/react-dom.development.js ***!
31030
  \*************************************************************/
31053
  var React = __webpack_require__(/*! react */ 6);
31054
  var _assign = __webpack_require__(/*! object-assign */ 26);
31055
  var Scheduler = __webpack_require__(/*! scheduler */ 137);
31056
+ var checkPropTypes = __webpack_require__(/*! prop-types/checkPropTypes */ 62);
31057
+ var tracing = __webpack_require__(/*! scheduler/tracing */ 272);
31058
 
31059
  // Do not require this module directly! Use normal `invariant` calls with
31060
  // template literal strings. The messages will be replaced with error codes
58832
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
58833
 
58834
  /***/ }),
58835
+ /* 272 */
58836
  /*!******************************************************************!*\
58837
  !*** ./node_modules/react-dom/node_modules/scheduler/tracing.js ***!
58838
  \******************************************************************/
58844
  /* WEBPACK VAR INJECTION */(function(process) {
58845
 
58846
  if (process.env.NODE_ENV === 'production') {
58847
+ module.exports = __webpack_require__(/*! ./cjs/scheduler-tracing.production.min.js */ 273);
58848
  } else {
58849
+ module.exports = __webpack_require__(/*! ./cjs/scheduler-tracing.development.js */ 274);
58850
  }
58851
 
58852
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
58853
 
58854
  /***/ }),
58855
+ /* 273 */
58856
  /*!***********************************************************************************************!*\
58857
  !*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler-tracing.production.min.js ***!
58858
  \***********************************************************************************************/
58874
 
58875
 
58876
  /***/ }),
58877
+ /* 274 */
58878
  /*!********************************************************************************************!*\
58879
  !*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler-tracing.development.js ***!
58880
  \********************************************************************************************/
59310
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../../process/browser.js */ 3)))
59311
 
59312
  /***/ }),
59313
+ /* 275 */
59314
  /*!**************************************************************!*\
59315
  !*** ./node_modules/react-is/cjs/react-is.production.min.js ***!
59316
  \**************************************************************/
59337
 
59338
 
59339
  /***/ }),
59340
+ /* 276 */
59341
  /*!***********************************************************!*\
59342
  !*** ./node_modules/react-is/cjs/react-is.development.js ***!
59343
  \***********************************************************/
59577
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
59578
 
59579
  /***/ }),
59580
+ /* 277 */
59581
  /*!************************************************************!*\
59582
  !*** ./node_modules/prop-types/factoryWithTypeCheckers.js ***!
59583
  \************************************************************/
59598
  var ReactIs = __webpack_require__(/*! react-is */ 138);
59599
  var assign = __webpack_require__(/*! object-assign */ 26);
59600
 
59601
+ var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ 63);
59602
+ var checkPropTypes = __webpack_require__(/*! ./checkPropTypes */ 62);
59603
 
59604
  var has = Function.call.bind(Object.prototype.hasOwnProperty);
59605
  var printWarning = function() {};
60181
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
60182
 
60183
  /***/ }),
60184
+ /* 278 */
60185
  /*!*************************************************************!*\
60186
  !*** ./node_modules/prop-types/factoryWithThrowingShims.js ***!
60187
  \*************************************************************/
60199
 
60200
 
60201
 
60202
+ var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ 63);
60203
 
60204
  function emptyFunction() {}
60205
  function emptyFunctionWithReset() {}
60257
 
60258
 
60259
  /***/ }),
60260
+ /* 279 */
60261
  /*!*****************************************************************************!*\
60262
  !*** ./node_modules/react-select/dist/stateManager-04f734a2.browser.esm.js ***!
60263
  \*****************************************************************************/
60401
 
60402
 
60403
  /***/ }),
60404
+ /* 280 */
60405
  /*!*******************************************************!*\
60406
  !*** ./src/components/typography/range-typography.js ***!
60407
  \*******************************************************/
60564
  /* harmony default export */ __webpack_exports__["a"] = (RangeTypographyControl);
60565
 
60566
  /***/ }),
60567
+ /* 281 */
60568
  /*!****************************************************!*\
60569
  !*** ./src/components/typography/inline-styles.js ***!
60570
  \****************************************************/
60584
  /* unused harmony default export */ var _unused_webpack_default_export = (TypographyStyles);
60585
 
60586
  /***/ }),
60587
+ /* 282 */
60588
  /*!***********************************************!*\
60589
  !*** ./src/components/typography/editor.scss ***!
60590
  \***********************************************/
60594
  // removed by extract-text-webpack-plugin
60595
 
60596
  /***/ }),
60597
+ /* 283 */
60598
  /*!*****************************************************!*\
60599
  !*** ./node_modules/webfontloader/webfontloader.js ***!
60600
  \*****************************************************/
60623
 
60624
 
60625
  /***/ }),
60626
+ /* 284 */
60627
  /*!*********************************************!*\
60628
  !*** ./src/blocks/advanced-heading/save.js ***!
60629
  \*********************************************/
60683
  }
60684
 
60685
  /***/ }),
60686
+ /* 285 */
60687
  /*!***************************************************!*\
60688
  !*** ./src/blocks/advanced-heading/deprecated.js ***!
60689
  \***************************************************/
60779
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
60780
 
60781
  /***/ }),
60782
+ /* 286 */
60783
  /*!**************************************************!*\
60784
  !*** ./src/blocks/advanced-heading/transform.js ***!
60785
  \**************************************************/
60844
  /* harmony default export */ __webpack_exports__["a"] = (transform);
60845
 
60846
  /***/ }),
60847
+ /* 287 */
60848
  /*!**********************************!*\
60849
  !*** ./src/blocks/post/block.js ***!
60850
  \**********************************/
60852
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
60853
 
60854
  "use strict";
60855
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__post_grid_block_js__ = __webpack_require__(/*! ./post-grid/block.js */ 288);
60856
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__post_masonry_block_js__ = __webpack_require__(/*! ./post-masonry/block.js */ 302);
60857
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__post_carousel_block_js__ = __webpack_require__(/*! ./post-carousel/block.js */ 371);
60858
  /**
60859
  * Gutenberg Blocks
60860
  *
60871
 
60872
 
60873
  /***/ }),
60874
+ /* 288 */
60875
  /*!********************************************!*\
60876
  !*** ./src/blocks/post/post-grid/block.js ***!
60877
  \********************************************/
60879
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
60880
 
60881
  "use strict";
60882
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 289);
60883
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
60884
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 75);
60885
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
60886
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 76);
60887
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
60888
  /**
60889
  * BLOCK: UAGB - post-grid
60920
  });
60921
 
60922
  /***/ }),
60923
+ /* 289 */
60924
  /*!*******************************************!*\
60925
  !*** ./src/blocks/post/post-grid/edit.js ***!
60926
  \*******************************************/
60932
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
60933
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
60934
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
60935
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blog__ = __webpack_require__(/*! ./blog */ 290);
60936
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! .././styling */ 74);
60937
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
60938
 
60939
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
62403
  })(UAGBPostGrid));
62404
 
62405
  /***/ }),
62406
+ /* 290 */
62407
  /*!*******************************************!*\
62408
  !*** ./src/blocks/post/post-grid/blog.js ***!
62409
  \*******************************************/
62414
  "use strict";
62415
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
62416
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
62417
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_FeaturedImage__ = __webpack_require__(/*! .././components/FeaturedImage */ 66);
62418
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! .././components/Title */ 67);
62419
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Meta__ = __webpack_require__(/*! .././components/Meta */ 68);
62420
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Excerpt__ = __webpack_require__(/*! .././components/Excerpt */ 69);
62421
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Button__ = __webpack_require__(/*! .././components/Button */ 73);
62422
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
62423
 
62424
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
62511
  /* harmony default export */ __webpack_exports__["a"] = (Blog);
62512
 
62513
  /***/ }),
62514
+ /* 291 */
62515
  /*!*****************************************!*\
62516
  !*** ./node_modules/lodash/truncate.js ***!
62517
  \*****************************************/
62519
  /***/ (function(module, exports, __webpack_require__) {
62520
 
62521
  var baseToString = __webpack_require__(/*! ./_baseToString */ 131),
62522
+ castSlice = __webpack_require__(/*! ./_castSlice */ 292),
62523
+ hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 71),
62524
  isObject = __webpack_require__(/*! ./isObject */ 13),
62525
+ isRegExp = __webpack_require__(/*! ./isRegExp */ 293),
62526
+ stringSize = __webpack_require__(/*! ./_stringSize */ 295),
62527
+ stringToArray = __webpack_require__(/*! ./_stringToArray */ 298),
62528
+ toInteger = __webpack_require__(/*! ./toInteger */ 72),
62529
  toString = __webpack_require__(/*! ./toString */ 130);
62530
 
62531
  /** Used as default options for `_.truncate`. */
62632
 
62633
 
62634
  /***/ }),
62635
+ /* 292 */
62636
  /*!*******************************************!*\
62637
  !*** ./node_modules/lodash/_castSlice.js ***!
62638
  \*******************************************/
62640
  /*! all exports used */
62641
  /***/ (function(module, exports, __webpack_require__) {
62642
 
62643
+ var baseSlice = __webpack_require__(/*! ./_baseSlice */ 70);
62644
 
62645
  /**
62646
  * Casts `array` to a slice if it's needed.
62661
 
62662
 
62663
  /***/ }),
62664
+ /* 293 */
62665
  /*!*****************************************!*\
62666
  !*** ./node_modules/lodash/isRegExp.js ***!
62667
  \*****************************************/
62669
  /*! all exports used */
62670
  /***/ (function(module, exports, __webpack_require__) {
62671
 
62672
+ var baseIsRegExp = __webpack_require__(/*! ./_baseIsRegExp */ 294),
62673
  baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
62674
  nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
62675
 
62699
 
62700
 
62701
  /***/ }),
62702
+ /* 294 */
62703
  /*!**********************************************!*\
62704
  !*** ./node_modules/lodash/_baseIsRegExp.js ***!
62705
  \**********************************************/
62728
 
62729
 
62730
  /***/ }),
62731
+ /* 295 */
62732
  /*!********************************************!*\
62733
  !*** ./node_modules/lodash/_stringSize.js ***!
62734
  \********************************************/
62736
  /*! all exports used */
62737
  /***/ (function(module, exports, __webpack_require__) {
62738
 
62739
+ var asciiSize = __webpack_require__(/*! ./_asciiSize */ 296),
62740
+ hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 71),
62741
+ unicodeSize = __webpack_require__(/*! ./_unicodeSize */ 297);
62742
 
62743
  /**
62744
  * Gets the number of symbols in `string`.
62757
 
62758
 
62759
  /***/ }),
62760
+ /* 296 */
62761
  /*!*******************************************!*\
62762
  !*** ./node_modules/lodash/_asciiSize.js ***!
62763
  \*******************************************/
62780
 
62781
 
62782
  /***/ }),
62783
+ /* 297 */
62784
  /*!*********************************************!*\
62785
  !*** ./node_modules/lodash/_unicodeSize.js ***!
62786
  \*********************************************/
62835
 
62836
 
62837
  /***/ }),
62838
+ /* 298 */
62839
  /*!***********************************************!*\
62840
  !*** ./node_modules/lodash/_stringToArray.js ***!
62841
  \***********************************************/
62843
  /*! all exports used */
62844
  /***/ (function(module, exports, __webpack_require__) {
62845
 
62846
+ var asciiToArray = __webpack_require__(/*! ./_asciiToArray */ 299),
62847
+ hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 71),
62848
+ unicodeToArray = __webpack_require__(/*! ./_unicodeToArray */ 300);
62849
 
62850
  /**
62851
  * Converts `string` to an array.
62864
 
62865
 
62866
  /***/ }),
62867
+ /* 299 */
62868
  /*!**********************************************!*\
62869
  !*** ./node_modules/lodash/_asciiToArray.js ***!
62870
  \**********************************************/
62887
 
62888
 
62889
  /***/ }),
62890
+ /* 300 */
62891
  /*!************************************************!*\
62892
  !*** ./node_modules/lodash/_unicodeToArray.js ***!
62893
  \************************************************/
62938
 
62939
 
62940
  /***/ }),
62941
+ /* 301 */
62942
  /*!*****************************************!*\
62943
  !*** ./node_modules/lodash/toFinite.js ***!
62944
  \*****************************************/
62991
 
62992
 
62993
  /***/ }),
62994
+ /* 302 */
62995
  /*!***********************************************!*\
62996
  !*** ./src/blocks/post/post-masonry/block.js ***!
62997
  \***********************************************/
62999
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
63000
 
63001
  "use strict";
63002
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 303);
63003
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
63004
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 75);
63005
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
63006
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 76);
63007
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
63008
  /**
63009
  * BLOCK: UAGB - post-masonry
63040
  });
63041
 
63042
  /***/ }),
63043
+ /* 303 */
63044
  /*!**********************************************!*\
63045
  !*** ./src/blocks/post/post-masonry/edit.js ***!
63046
  \**********************************************/
63052
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
63053
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
63054
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
63055
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blog__ = __webpack_require__(/*! ./blog */ 304);
63056
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! .././styling */ 74);
63057
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
63058
 
63059
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
64692
  })(UAGBPostMasonry));
64693
 
64694
  /***/ }),
64695
+ /* 304 */
64696
  /*!**********************************************!*\
64697
  !*** ./src/blocks/post/post-masonry/blog.js ***!
64698
  \**********************************************/
64703
  "use strict";
64704
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
64705
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
64706
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_masonry_component__ = __webpack_require__(/*! react-masonry-component */ 305);
64707
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_masonry_component___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react_masonry_component__);
64708
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_FeaturedImage__ = __webpack_require__(/*! .././components/FeaturedImage */ 66);
64709
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! .././components/Title */ 67);
64710
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Meta__ = __webpack_require__(/*! .././components/Meta */ 68);
64711
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Excerpt__ = __webpack_require__(/*! .././components/Excerpt */ 69);
64712
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_Button__ = __webpack_require__(/*! .././components/Button */ 73);
64713
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
64714
 
64715
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
64828
  /* harmony default export */ __webpack_exports__["a"] = (Blog);
64829
 
64830
  /***/ }),
64831
+ /* 305 */
64832
  /*!***********************************************************!*\
64833
  !*** ./node_modules/react-masonry-component/lib/index.js ***!
64834
  \***********************************************************/
64837
  /***/ (function(module, exports, __webpack_require__) {
64838
 
64839
  var isBrowser = typeof window !== 'undefined';
64840
+ var Masonry = isBrowser ? window.Masonry || __webpack_require__(/*! masonry-layout */ 306) : null;
64841
+ var imagesloaded = isBrowser ? __webpack_require__(/*! imagesloaded */ 311) : null;
64842
+ var assign = __webpack_require__(/*! lodash/assign */ 312);
64843
+ var elementResizeDetectorMaker = __webpack_require__(/*! element-resize-detector */ 320);
64844
+ var debounce = __webpack_require__(/*! lodash/debounce */ 331);
64845
+ var omit = __webpack_require__(/*! lodash/omit */ 333);
64846
  var PropTypes = __webpack_require__(/*! prop-types */ 15);
64847
  var React = __webpack_require__(/*! react */ 6);
64848
+ var createReactClass = __webpack_require__(/*! create-react-class */ 365);
64849
 
64850
  var propTypes = {
64851
  enableResizableChildren: PropTypes.bool,
65154
 
65155
 
65156
  /***/ }),
65157
+ /* 306 */
65158
  /*!************************************************!*\
65159
  !*** ./node_modules/masonry-layout/masonry.js ***!
65160
  \************************************************/
65176
  if ( true ) {
65177
  // AMD
65178
  !(__WEBPACK_AMD_DEFINE_ARRAY__ = [
65179
+ __webpack_require__(/*! outlayer/outlayer */ 307),
65180
+ __webpack_require__(/*! get-size/get-size */ 78)
65181
  ], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
65182
  __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
65183
  (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
65406
 
65407
 
65408
  /***/ }),
65409
+ /* 307 */
65410
  /*!*******************************************!*\
65411
  !*** ./node_modules/outlayer/outlayer.js ***!
65412
  \*******************************************/
65427
  if ( true ) {
65428
  // AMD - RequireJS
65429
  !(__WEBPACK_AMD_DEFINE_ARRAY__ = [
65430
+ __webpack_require__(/*! ev-emitter/ev-emitter */ 77),
65431
+ __webpack_require__(/*! get-size/get-size */ 78),
65432
+ __webpack_require__(/*! fizzy-ui-utils/utils */ 308),
65433
+ __webpack_require__(/*! ./item */ 310)
65434
  ], __WEBPACK_AMD_DEFINE_RESULT__ = function( EvEmitter, getSize, utils, Item ) {
65435
  return factory( window, EvEmitter, getSize, utils, Item);
65436
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
66355
 
66356
 
66357
  /***/ }),
66358
+ /* 308 */
66359
  /*!**********************************************!*\
66360
  !*** ./node_modules/fizzy-ui-utils/utils.js ***!
66361
  \**********************************************/
66377
  if ( true ) {
66378
  // AMD
66379
  !(__WEBPACK_AMD_DEFINE_ARRAY__ = [
66380
+ __webpack_require__(/*! desandro-matches-selector/matches-selector */ 309)
66381
  ], __WEBPACK_AMD_DEFINE_RESULT__ = function( matchesSelector ) {
66382
  return factory( window, matchesSelector );
66383
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
66608
 
66609
 
66610
  /***/ }),
66611
+ /* 309 */
66612
  /*!********************************************************************!*\
66613
  !*** ./node_modules/desandro-matches-selector/matches-selector.js ***!
66614
  \********************************************************************/
66676
 
66677
 
66678
  /***/ }),
66679
+ /* 310 */
66680
  /*!***************************************!*\
66681
  !*** ./node_modules/outlayer/item.js ***!
66682
  \***************************************/
66694
  if ( true ) {
66695
  // AMD - RequireJS
66696
  !(__WEBPACK_AMD_DEFINE_ARRAY__ = [
66697
+ __webpack_require__(/*! ev-emitter/ev-emitter */ 77),
66698
+ __webpack_require__(/*! get-size/get-size */ 78)
66699
  ], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
66700
  __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
66701
  (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
67242
 
67243
 
67244
  /***/ }),
67245
+ /* 311 */
67246
  /*!***************************************************!*\
67247
  !*** ./node_modules/imagesloaded/imagesloaded.js ***!
67248
  \***************************************************/
67264
  if ( true ) {
67265
  // AMD
67266
  !(__WEBPACK_AMD_DEFINE_ARRAY__ = [
67267
+ __webpack_require__(/*! ev-emitter/ev-emitter */ 77)
67268
  ], __WEBPACK_AMD_DEFINE_RESULT__ = function( EvEmitter ) {
67269
  return factory( window, EvEmitter );
67270
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
67631
 
67632
 
67633
  /***/ }),
67634
+ /* 312 */
67635
  /*!***************************************!*\
67636
  !*** ./node_modules/lodash/assign.js ***!
67637
  \***************************************/
67641
 
67642
  var assignValue = __webpack_require__(/*! ./_assignValue */ 48),
67643
  copyObject = __webpack_require__(/*! ./_copyObject */ 27),
67644
+ createAssigner = __webpack_require__(/*! ./_createAssigner */ 313),
67645
  isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23),
67646
  isPrototype = __webpack_require__(/*! ./_isPrototype */ 43),
67647
  keys = __webpack_require__(/*! ./keys */ 22);
67700
 
67701
 
67702
  /***/ }),
67703
+ /* 313 */
67704
  /*!************************************************!*\
67705
  !*** ./node_modules/lodash/_createAssigner.js ***!
67706
  \************************************************/
67708
  /*! all exports used */
67709
  /***/ (function(module, exports, __webpack_require__) {
67710
 
67711
+ var baseRest = __webpack_require__(/*! ./_baseRest */ 314),
67712
+ isIterateeCall = __webpack_require__(/*! ./_isIterateeCall */ 319);
67713
 
67714
  /**
67715
  * Creates a function like `_.assign`.
67748
 
67749
 
67750
  /***/ }),
67751
+ /* 314 */
67752
  /*!******************************************!*\
67753
  !*** ./node_modules/lodash/_baseRest.js ***!
67754
  \******************************************/
67776
 
67777
 
67778
  /***/ }),
67779
+ /* 315 */
67780
  /*!***************************************!*\
67781
  !*** ./node_modules/lodash/_apply.js ***!
67782
  \***************************************/
67808
 
67809
 
67810
  /***/ }),
67811
+ /* 316 */
67812
  /*!*************************************************!*\
67813
  !*** ./node_modules/lodash/_baseSetToString.js ***!
67814
  \*************************************************/
67816
  /*! all exports used */
67817
  /***/ (function(module, exports, __webpack_require__) {
67818
 
67819
+ var constant = __webpack_require__(/*! ./constant */ 317),
67820
  defineProperty = __webpack_require__(/*! ./_defineProperty */ 145),
67821
  identity = __webpack_require__(/*! ./identity */ 47);
67822
 
67841
 
67842
 
67843
  /***/ }),
67844
+ /* 317 */
67845
  /*!*****************************************!*\
67846
  !*** ./node_modules/lodash/constant.js ***!
67847
  \*****************************************/
67878
 
67879
 
67880
  /***/ }),
67881
+ /* 318 */
67882
  /*!******************************************!*\
67883
  !*** ./node_modules/lodash/_shortOut.js ***!
67884
  \******************************************/
67926
 
67927
 
67928
  /***/ }),
67929
+ /* 319 */
67930
  /*!************************************************!*\
67931
  !*** ./node_modules/lodash/_isIterateeCall.js ***!
67932
  \************************************************/
67967
 
67968
 
67969
  /***/ }),
67970
+ /* 320 */
67971
  /*!*****************************************************************************!*\
67972
  !*** ./node_modules/element-resize-detector/src/element-resize-detector.js ***!
67973
  \*****************************************************************************/
67979
 
67980
 
67981
  var forEach = __webpack_require__(/*! ./collection-utils */ 148).forEach;
67982
+ var elementUtilsMaker = __webpack_require__(/*! ./element-utils */ 321);
67983
+ var listenerHandlerMaker = __webpack_require__(/*! ./listener-handler */ 322);
67984
+ var idGeneratorMaker = __webpack_require__(/*! ./id-generator */ 323);
67985
+ var idHandlerMaker = __webpack_require__(/*! ./id-handler */ 324);
67986
+ var reporterMaker = __webpack_require__(/*! ./reporter */ 325);
67987
  var browserDetector = __webpack_require__(/*! ./browser-detector */ 149);
67988
+ var batchProcessorMaker = __webpack_require__(/*! batch-processor */ 326);
67989
+ var stateHandler = __webpack_require__(/*! ./state-handler */ 328);
67990
 
67991
  //Detection strategies.
67992
+ var objectStrategyMaker = __webpack_require__(/*! ./detection-strategy/object.js */ 329);
67993
+ var scrollStrategyMaker = __webpack_require__(/*! ./detection-strategy/scroll.js */ 330);
67994
 
67995
  function isCollection(obj) {
67996
  return Array.isArray(obj) || obj.length !== undefined;
68307
 
68308
 
68309
  /***/ }),
68310
+ /* 321 */
68311
  /*!*******************************************************************!*\
68312
  !*** ./node_modules/element-resize-detector/src/element-utils.js ***!
68313
  \*******************************************************************/
68371
 
68372
 
68373
  /***/ }),
68374
+ /* 322 */
68375
  /*!**********************************************************************!*\
68376
  !*** ./node_modules/element-resize-detector/src/listener-handler.js ***!
68377
  \**********************************************************************/
68443
 
68444
 
68445
  /***/ }),
68446
+ /* 323 */
68447
  /*!******************************************************************!*\
68448
  !*** ./node_modules/element-resize-detector/src/id-generator.js ***!
68449
  \******************************************************************/
68473
 
68474
 
68475
  /***/ }),
68476
+ /* 324 */
68477
  /*!****************************************************************!*\
68478
  !*** ./node_modules/element-resize-detector/src/id-handler.js ***!
68479
  \****************************************************************/
68532
 
68533
 
68534
  /***/ }),
68535
+ /* 325 */
68536
  /*!**************************************************************!*\
68537
  !*** ./node_modules/element-resize-detector/src/reporter.js ***!
68538
  \**************************************************************/
68586
  };
68587
 
68588
  /***/ }),
68589
+ /* 326 */
68590
  /*!*************************************************************!*\
68591
  !*** ./node_modules/batch-processor/src/batch-processor.js ***!
68592
  \*************************************************************/
68597
  "use strict";
68598
 
68599
 
68600
+ var utils = __webpack_require__(/*! ./utils */ 327);
68601
 
68602
  module.exports = function batchProcessorMaker(options) {
68603
  options = options || {};
68736
 
68737
 
68738
  /***/ }),
68739
+ /* 327 */
68740
  /*!***************************************************!*\
68741
  !*** ./node_modules/batch-processor/src/utils.js ***!
68742
  \***************************************************/
68763
 
68764
 
68765
  /***/ }),
68766
+ /* 328 */
68767
  /*!*******************************************************************!*\
68768
  !*** ./node_modules/element-resize-detector/src/state-handler.js ***!
68769
  \*******************************************************************/
68797
 
68798
 
68799
  /***/ }),
68800
+ /* 329 */
68801
  /*!*******************************************************************************!*\
68802
  !*** ./node_modules/element-resize-detector/src/detection-strategy/object.js ***!
68803
  \*******************************************************************************/
69056
 
69057
 
69058
  /***/ }),
69059
+ /* 330 */
69060
  /*!*******************************************************************************!*\
69061
  !*** ./node_modules/element-resize-detector/src/detection-strategy/scroll.js ***!
69062
  \*******************************************************************************/
69729
 
69730
 
69731
  /***/ }),
69732
+ /* 331 */
69733
  /*!*****************************************!*\
69734
  !*** ./node_modules/lodash/debounce.js ***!
69735
  \*****************************************/
69738
  /***/ (function(module, exports, __webpack_require__) {
69739
 
69740
  var isObject = __webpack_require__(/*! ./isObject */ 13),
69741
+ now = __webpack_require__(/*! ./now */ 332),
69742
  toNumber = __webpack_require__(/*! ./toNumber */ 143);
69743
 
69744
  /** Error message constants. */
69931
 
69932
 
69933
  /***/ }),
69934
+ /* 332 */
69935
  /*!************************************!*\
69936
  !*** ./node_modules/lodash/now.js ***!
69937
  \************************************/
69965
 
69966
 
69967
  /***/ }),
69968
+ /* 333 */
69969
  /*!*************************************!*\
69970
  !*** ./node_modules/lodash/omit.js ***!
69971
  \*************************************/
69974
  /***/ (function(module, exports, __webpack_require__) {
69975
 
69976
  var arrayMap = __webpack_require__(/*! ./_arrayMap */ 34),
69977
+ baseClone = __webpack_require__(/*! ./_baseClone */ 334),
69978
+ baseUnset = __webpack_require__(/*! ./_baseUnset */ 356),
69979
  castPath = __webpack_require__(/*! ./_castPath */ 24),
69980
  copyObject = __webpack_require__(/*! ./_copyObject */ 27),
69981
+ customOmitClone = __webpack_require__(/*! ./_customOmitClone */ 359),
69982
+ flatRest = __webpack_require__(/*! ./_flatRest */ 361),
69983
+ getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 80);
69984
 
69985
  /** Used to compose bitmasks for cloning. */
69986
  var CLONE_DEEP_FLAG = 1,
70033
 
70034
 
70035
  /***/ }),
70036
+ /* 334 */
70037
  /*!*******************************************!*\
70038
  !*** ./node_modules/lodash/_baseClone.js ***!
70039
  \*******************************************/
70041
  /*! all exports used */
70042
  /***/ (function(module, exports, __webpack_require__) {
70043
 
70044
+ var Stack = __webpack_require__(/*! ./_Stack */ 51),
70045
+ arrayEach = __webpack_require__(/*! ./_arrayEach */ 335),
70046
  assignValue = __webpack_require__(/*! ./_assignValue */ 48),
70047
+ baseAssign = __webpack_require__(/*! ./_baseAssign */ 336),
70048
+ baseAssignIn = __webpack_require__(/*! ./_baseAssignIn */ 337),
70049
+ cloneBuffer = __webpack_require__(/*! ./_cloneBuffer */ 340),
70050
+ copyArray = __webpack_require__(/*! ./_copyArray */ 341),
70051
+ copySymbols = __webpack_require__(/*! ./_copySymbols */ 342),
70052
+ copySymbolsIn = __webpack_require__(/*! ./_copySymbolsIn */ 343),
70053
  getAllKeys = __webpack_require__(/*! ./_getAllKeys */ 120),
70054
+ getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 80),
70055
  getTag = __webpack_require__(/*! ./_getTag */ 44),
70056
+ initCloneArray = __webpack_require__(/*! ./_initCloneArray */ 344),
70057
+ initCloneByTag = __webpack_require__(/*! ./_initCloneByTag */ 345),
70058
+ initCloneObject = __webpack_require__(/*! ./_initCloneObject */ 350),
70059
  isArray = __webpack_require__(/*! ./isArray */ 14),
70060
+ isBuffer = __webpack_require__(/*! ./isBuffer */ 58),
70061
+ isMap = __webpack_require__(/*! ./isMap */ 352),
70062
  isObject = __webpack_require__(/*! ./isObject */ 13),
70063
+ isSet = __webpack_require__(/*! ./isSet */ 354),
70064
  keys = __webpack_require__(/*! ./keys */ 22);
70065
 
70066
  /** Used to compose bitmasks for cloning. */
70209
 
70210
 
70211
  /***/ }),
70212
+ /* 335 */
70213
  /*!*******************************************!*\
70214
  !*** ./node_modules/lodash/_arrayEach.js ***!
70215
  \*******************************************/
70242
 
70243
 
70244
  /***/ }),
70245
+ /* 336 */
70246
  /*!********************************************!*\
70247
  !*** ./node_modules/lodash/_baseAssign.js ***!
70248
  \********************************************/
70270
 
70271
 
70272
  /***/ }),
70273
+ /* 337 */
70274
  /*!**********************************************!*\
70275
  !*** ./node_modules/lodash/_baseAssignIn.js ***!
70276
  \**********************************************/
70298
 
70299
 
70300
  /***/ }),
70301
+ /* 338 */
70302
  /*!********************************************!*\
70303
  !*** ./node_modules/lodash/_baseKeysIn.js ***!
70304
  \********************************************/
70308
 
70309
  var isObject = __webpack_require__(/*! ./isObject */ 13),
70310
  isPrototype = __webpack_require__(/*! ./_isPrototype */ 43),
70311
+ nativeKeysIn = __webpack_require__(/*! ./_nativeKeysIn */ 339);
70312
 
70313
  /** Used for built-in method references. */
70314
  var objectProto = Object.prototype;
70342
 
70343
 
70344
  /***/ }),
70345
+ /* 339 */
70346
  /*!**********************************************!*\
70347
  !*** ./node_modules/lodash/_nativeKeysIn.js ***!
70348
  \**********************************************/
70373
 
70374
 
70375
  /***/ }),
70376
+ /* 340 */
70377
  /*!*********************************************!*\
70378
  !*** ./node_modules/lodash/_cloneBuffer.js ***!
70379
  \*********************************************/
70417
 
70418
  module.exports = cloneBuffer;
70419
 
70420
+ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */ 59)(module)))
70421
 
70422
  /***/ }),
70423
+ /* 341 */
70424
  /*!*******************************************!*\
70425
  !*** ./node_modules/lodash/_copyArray.js ***!
70426
  \*******************************************/
70451
 
70452
 
70453
  /***/ }),
70454
+ /* 342 */
70455
  /*!*********************************************!*\
70456
  !*** ./node_modules/lodash/_copySymbols.js ***!
70457
  \*********************************************/
70460
  /***/ (function(module, exports, __webpack_require__) {
70461
 
70462
  var copyObject = __webpack_require__(/*! ./_copyObject */ 27),
70463
+ getSymbols = __webpack_require__(/*! ./_getSymbols */ 56);
70464
 
70465
  /**
70466
  * Copies own symbols of `source` to `object`.
70478
 
70479
 
70480
  /***/ }),
70481
+ /* 343 */
70482
  /*!***********************************************!*\
70483
  !*** ./node_modules/lodash/_copySymbolsIn.js ***!
70484
  \***********************************************/
70505
 
70506
 
70507
  /***/ }),
70508
+ /* 344 */
70509
  /*!************************************************!*\
70510
  !*** ./node_modules/lodash/_initCloneArray.js ***!
70511
  \************************************************/
70542
 
70543
 
70544
  /***/ }),
70545
+ /* 345 */
70546
  /*!************************************************!*\
70547
  !*** ./node_modules/lodash/_initCloneByTag.js ***!
70548
  \************************************************/
70550
  /*! all exports used */
70551
  /***/ (function(module, exports, __webpack_require__) {
70552
 
70553
+ var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */ 81),
70554
+ cloneDataView = __webpack_require__(/*! ./_cloneDataView */ 346),
70555
+ cloneRegExp = __webpack_require__(/*! ./_cloneRegExp */ 347),
70556
+ cloneSymbol = __webpack_require__(/*! ./_cloneSymbol */ 348),
70557
+ cloneTypedArray = __webpack_require__(/*! ./_cloneTypedArray */ 349);
70558
 
70559
  /** `Object#toString` result references. */
70560
  var boolTag = '[object Boolean]',
70630
 
70631
 
70632
  /***/ }),
70633
+ /* 346 */
70634
  /*!***********************************************!*\
70635
  !*** ./node_modules/lodash/_cloneDataView.js ***!
70636
  \***********************************************/
70638
  /*! all exports used */
70639
  /***/ (function(module, exports, __webpack_require__) {
70640
 
70641
+ var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */ 81);
70642
 
70643
  /**
70644
  * Creates a clone of `dataView`.
70657
 
70658
 
70659
  /***/ }),
70660
+ /* 347 */
70661
  /*!*********************************************!*\
70662
  !*** ./node_modules/lodash/_cloneRegExp.js ***!
70663
  \*********************************************/
70685
 
70686
 
70687
  /***/ }),
70688
+ /* 348 */
70689
  /*!*********************************************!*\
70690
  !*** ./node_modules/lodash/_cloneSymbol.js ***!
70691
  \*********************************************/
70714
 
70715
 
70716
  /***/ }),
70717
+ /* 349 */
70718
  /*!*************************************************!*\
70719
  !*** ./node_modules/lodash/_cloneTypedArray.js ***!
70720
  \*************************************************/
70722
  /*! all exports used */
70723
  /***/ (function(module, exports, __webpack_require__) {
70724
 
70725
+ var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */ 81);
70726
 
70727
  /**
70728
  * Creates a clone of `typedArray`.
70741
 
70742
 
70743
  /***/ }),
70744
+ /* 350 */
70745
  /*!*************************************************!*\
70746
  !*** ./node_modules/lodash/_initCloneObject.js ***!
70747
  \*************************************************/
70749
  /*! all exports used */
70750
  /***/ (function(module, exports, __webpack_require__) {
70751
 
70752
+ var baseCreate = __webpack_require__(/*! ./_baseCreate */ 351),
70753
+ getPrototype = __webpack_require__(/*! ./_getPrototype */ 79),
70754
  isPrototype = __webpack_require__(/*! ./_isPrototype */ 43);
70755
 
70756
  /**
70770
 
70771
 
70772
  /***/ }),
70773
+ /* 351 */
70774
  /*!********************************************!*\
70775
  !*** ./node_modules/lodash/_baseCreate.js ***!
70776
  \********************************************/
70811
 
70812
 
70813
  /***/ }),
70814
+ /* 352 */
70815
  /*!**************************************!*\
70816
  !*** ./node_modules/lodash/isMap.js ***!
70817
  \**************************************/
70819
  /*! all exports used */
70820
  /***/ (function(module, exports, __webpack_require__) {
70821
 
70822
+ var baseIsMap = __webpack_require__(/*! ./_baseIsMap */ 353),
70823
  baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
70824
  nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
70825
 
70849
 
70850
 
70851
  /***/ }),
70852
+ /* 353 */
70853
  /*!*******************************************!*\
70854
  !*** ./node_modules/lodash/_baseIsMap.js ***!
70855
  \*******************************************/
70878
 
70879
 
70880
  /***/ }),
70881
+ /* 354 */
70882
  /*!**************************************!*\
70883
  !*** ./node_modules/lodash/isSet.js ***!
70884
  \**************************************/
70886
  /*! all exports used */
70887
  /***/ (function(module, exports, __webpack_require__) {
70888
 
70889
+ var baseIsSet = __webpack_require__(/*! ./_baseIsSet */ 355),
70890
  baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
70891
  nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
70892
 
70916
 
70917
 
70918
  /***/ }),
70919
+ /* 355 */
70920
  /*!*******************************************!*\
70921
  !*** ./node_modules/lodash/_baseIsSet.js ***!
70922
  \*******************************************/
70945
 
70946
 
70947
  /***/ }),
70948
+ /* 356 */
70949
  /*!*******************************************!*\
70950
  !*** ./node_modules/lodash/_baseUnset.js ***!
70951
  \*******************************************/
70954
  /***/ (function(module, exports, __webpack_require__) {
70955
 
70956
  var castPath = __webpack_require__(/*! ./_castPath */ 24),
70957
+ last = __webpack_require__(/*! ./last */ 357),
70958
+ parent = __webpack_require__(/*! ./_parent */ 358),
70959
  toKey = __webpack_require__(/*! ./_toKey */ 25);
70960
 
70961
  /**
70976
 
70977
 
70978
  /***/ }),
70979
+ /* 357 */
70980
  /*!*************************************!*\
70981
  !*** ./node_modules/lodash/last.js ***!
70982
  \*************************************/
71007
 
71008
 
71009
  /***/ }),
71010
+ /* 358 */
71011
  /*!****************************************!*\
71012
  !*** ./node_modules/lodash/_parent.js ***!
71013
  \****************************************/
71016
  /***/ (function(module, exports, __webpack_require__) {
71017
 
71018
  var baseGet = __webpack_require__(/*! ./_baseGet */ 45),
71019
+ baseSlice = __webpack_require__(/*! ./_baseSlice */ 70);
71020
 
71021
  /**
71022
  * Gets the parent value at `path` of `object`.
71034
 
71035
 
71036
  /***/ }),
71037
+ /* 359 */
71038
  /*!*************************************************!*\
71039
  !*** ./node_modules/lodash/_customOmitClone.js ***!
71040
  \*************************************************/
71042
  /*! all exports used */
71043
  /***/ (function(module, exports, __webpack_require__) {
71044
 
71045
+ var isPlainObject = __webpack_require__(/*! ./isPlainObject */ 360);
71046
 
71047
  /**
71048
  * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain
71061
 
71062
 
71063
  /***/ }),
71064
+ /* 360 */
71065
  /*!**********************************************!*\
71066
  !*** ./node_modules/lodash/isPlainObject.js ***!
71067
  \**********************************************/
71070
  /***/ (function(module, exports, __webpack_require__) {
71071
 
71072
  var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 20),
71073
+ getPrototype = __webpack_require__(/*! ./_getPrototype */ 79),
71074
  isObjectLike = __webpack_require__(/*! ./isObjectLike */ 17);
71075
 
71076
  /** `Object#toString` result references. */
71134
 
71135
 
71136
  /***/ }),
71137
+ /* 361 */
71138
  /*!******************************************!*\
71139
  !*** ./node_modules/lodash/_flatRest.js ***!
71140
  \******************************************/
71142
  /*! all exports used */
71143
  /***/ (function(module, exports, __webpack_require__) {
71144
 
71145
+ var flatten = __webpack_require__(/*! ./flatten */ 362),
71146
  overRest = __webpack_require__(/*! ./_overRest */ 146),
71147
  setToString = __webpack_require__(/*! ./_setToString */ 147);
71148
 
71161
 
71162
 
71163
  /***/ }),
71164
+ /* 362 */
71165
  /*!****************************************!*\
71166
  !*** ./node_modules/lodash/flatten.js ***!
71167
  \****************************************/
71169
  /*! all exports used */
71170
  /***/ (function(module, exports, __webpack_require__) {
71171
 
71172
+ var baseFlatten = __webpack_require__(/*! ./_baseFlatten */ 363);
71173
 
71174
  /**
71175
  * Flattens `array` a single level deep.
71194
 
71195
 
71196
  /***/ }),
71197
+ /* 363 */
71198
  /*!*********************************************!*\
71199
  !*** ./node_modules/lodash/_baseFlatten.js ***!
71200
  \*********************************************/
71202
  /*! all exports used */
71203
  /***/ (function(module, exports, __webpack_require__) {
71204
 
71205
+ var arrayPush = __webpack_require__(/*! ./_arrayPush */ 55),
71206
+ isFlattenable = __webpack_require__(/*! ./_isFlattenable */ 364);
71207
 
71208
  /**
71209
  * The base implementation of `_.flatten` with support for restricting flattening.
71243
 
71244
 
71245
  /***/ }),
71246
+ /* 364 */
71247
  /*!***********************************************!*\
71248
  !*** ./node_modules/lodash/_isFlattenable.js ***!
71249
  \***********************************************/
71252
  /***/ (function(module, exports, __webpack_require__) {
71253
 
71254
  var Symbol = __webpack_require__(/*! ./_Symbol */ 21),
71255
+ isArguments = __webpack_require__(/*! ./isArguments */ 57),
71256
  isArray = __webpack_require__(/*! ./isArray */ 14);
71257
 
71258
  /** Built-in value references. */
71274
 
71275
 
71276
  /***/ }),
71277
+ /* 365 */
71278
  /*!**************************************************!*\
71279
  !*** ./node_modules/create-react-class/index.js ***!
71280
  \**************************************************/
71294
 
71295
 
71296
  var React = __webpack_require__(/*! react */ 6);
71297
+ var factory = __webpack_require__(/*! ./factory */ 366);
71298
 
71299
  if (typeof React === 'undefined') {
71300
  throw Error(
71314
 
71315
 
71316
  /***/ }),
71317
+ /* 366 */
71318
  /*!****************************************************!*\
71319
  !*** ./node_modules/create-react-class/factory.js ***!
71320
  \****************************************************/
71335
 
71336
  var _assign = __webpack_require__(/*! object-assign */ 26);
71337
 
71338
+ var emptyObject = __webpack_require__(/*! fbjs/lib/emptyObject */ 367);
71339
+ var _invariant = __webpack_require__(/*! fbjs/lib/invariant */ 368);
71340
 
71341
  if (process.env.NODE_ENV !== 'production') {
71342
+ var warning = __webpack_require__(/*! fbjs/lib/warning */ 369);
71343
  }
71344
 
71345
  var MIXINS_KEY = 'mixins';
72253
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
72254
 
72255
  /***/ }),
72256
+ /* 367 */
72257
  /*!**********************************************!*\
72258
  !*** ./node_modules/fbjs/lib/emptyObject.js ***!
72259
  \**********************************************/
72282
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
72283
 
72284
  /***/ }),
72285
+ /* 368 */
72286
  /*!********************************************!*\
72287
  !*** ./node_modules/fbjs/lib/invariant.js ***!
72288
  \********************************************/
72347
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
72348
 
72349
  /***/ }),
72350
+ /* 369 */
72351
  /*!******************************************!*\
72352
  !*** ./node_modules/fbjs/lib/warning.js ***!
72353
  \******************************************/
72366
 
72367
 
72368
 
72369
+ var emptyFunction = __webpack_require__(/*! ./emptyFunction */ 370);
72370
 
72371
  /**
72372
  * Similar to invariant but only logs a warning if the condition is not met.
72421
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
72422
 
72423
  /***/ }),
72424
+ /* 370 */
72425
  /*!************************************************!*\
72426
  !*** ./node_modules/fbjs/lib/emptyFunction.js ***!
72427
  \************************************************/
72468
  module.exports = emptyFunction;
72469
 
72470
  /***/ }),
72471
+ /* 371 */
72472
  /*!************************************************!*\
72473
  !*** ./src/blocks/post/post-carousel/block.js ***!
72474
  \************************************************/
72476
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
72477
 
72478
  "use strict";
72479
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 372);
72480
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
72481
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 75);
72482
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
72483
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 76);
72484
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
72485
  /**
72486
  * BLOCK: UAGb - post-carousel
72517
  });
72518
 
72519
  /***/ }),
72520
+ /* 372 */
72521
  /*!***********************************************!*\
72522
  !*** ./src/blocks/post/post-carousel/edit.js ***!
72523
  \***********************************************/
72533
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
72534
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
72535
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
72536
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__blog__ = __webpack_require__(/*! ./blog */ 373);
72537
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__styling__ = __webpack_require__(/*! .././styling */ 74);
72538
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
72539
 
72540
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
73837
  })(UAGBPostCarousel));
73838
 
73839
  /***/ }),
73840
+ /* 373 */
73841
  /*!***********************************************!*\
73842
  !*** ./src/blocks/post/post-carousel/blog.js ***!
73843
  \***********************************************/
73850
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
73851
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_slick__ = __webpack_require__(/*! react-slick */ 152);
73852
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_slick___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react_slick__);
73853
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_FeaturedImage__ = __webpack_require__(/*! .././components/FeaturedImage */ 66);
73854
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! .././components/Title */ 67);
73855
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Meta__ = __webpack_require__(/*! .././components/Meta */ 68);
73856
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Excerpt__ = __webpack_require__(/*! .././components/Excerpt */ 69);
73857
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_Button__ = __webpack_require__(/*! .././components/Button */ 73);
73858
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
73859
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
73860
 
74038
  /* harmony default export */ __webpack_exports__["a"] = (Blog);
74039
 
74040
  /***/ }),
74041
+ /* 374 */
74042
  /*!************************************************!*\
74043
  !*** ./node_modules/react-slick/lib/slider.js ***!
74044
  \************************************************/
74057
 
74058
  var _react2 = _interopRequireDefault(_react);
74059
 
74060
+ var _innerSlider = __webpack_require__(/*! ./inner-slider */ 375);
74061
 
74062
+ var _json2mq = __webpack_require__(/*! json2mq */ 382);
74063
 
74064
  var _json2mq2 = _interopRequireDefault(_json2mq);
74065
 
74066
+ var _defaultProps = __webpack_require__(/*! ./default-props */ 384);
74067
 
74068
  var _defaultProps2 = _interopRequireDefault(_defaultProps);
74069
 
74077
 
74078
  function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
74079
 
74080
+ var enquire = (0, _innerSliderUtils.canUseDOM)() && __webpack_require__(/*! enquire.js */ 385);
74081
 
74082
  var Slider = function (_React$Component) {
74083
  _inherits(Slider, _React$Component);
74293
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
74294
 
74295
  /***/ }),
74296
+ /* 375 */
74297
  /*!******************************************************!*\
74298
  !*** ./node_modules/react-slick/lib/inner-slider.js ***!
74299
  \******************************************************/
74319
 
74320
  var _reactDom2 = _interopRequireDefault(_reactDom);
74321
 
74322
+ var _initialState = __webpack_require__(/*! ./initial-state */ 376);
74323
 
74324
  var _initialState2 = _interopRequireDefault(_initialState);
74325
 
74326
+ var _lodash = __webpack_require__(/*! lodash.debounce */ 377);
74327
 
74328
  var _lodash2 = _interopRequireDefault(_lodash);
74329
 
74333
 
74334
  var _innerSliderUtils = __webpack_require__(/*! ./utils/innerSliderUtils */ 49);
74335
 
74336
+ var _track = __webpack_require__(/*! ./track */ 378);
74337
 
74338
+ var _dots = __webpack_require__(/*! ./dots */ 379);
74339
 
74340
+ var _arrows = __webpack_require__(/*! ./arrows */ 380);
74341
 
74342
+ var _resizeObserverPolyfill = __webpack_require__(/*! resize-observer-polyfill */ 381);
74343
 
74344
  var _resizeObserverPolyfill2 = _interopRequireDefault(_resizeObserverPolyfill);
74345
 
75045
  }(_react2.default.Component);
75046
 
75047
  /***/ }),
75048
+ /* 376 */
75049
  /*!*******************************************************!*\
75050
  !*** ./node_modules/react-slick/lib/initial-state.js ***!
75051
  \*******************************************************/
75085
  exports.default = initialState;
75086
 
75087
  /***/ }),
75088
+ /* 377 */
75089
  /*!***********************************************!*\
75090
  !*** ./node_modules/lodash.debounce/index.js ***!
75091
  \***********************************************/
75471
 
75472
  module.exports = debounce;
75473
 
75474
+ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 53)))
75475
 
75476
  /***/ }),
75477
+ /* 378 */
75478
  /*!***********************************************!*\
75479
  !*** ./node_modules/react-slick/lib/track.js ***!
75480
  \***********************************************/
75694
  }(_react2.default.PureComponent);
75695
 
75696
  /***/ }),
75697
+ /* 379 */
75698
  /*!**********************************************!*\
75699
  !*** ./node_modules/react-slick/lib/dots.js ***!
75700
  \**********************************************/
75804
  }(_react2.default.PureComponent);
75805
 
75806
  /***/ }),
75807
+ /* 380 */
75808
  /*!************************************************!*\
75809
  !*** ./node_modules/react-slick/lib/arrows.js ***!
75810
  \************************************************/
75949
  }(_react2.default.PureComponent);
75950
 
75951
  /***/ }),
75952
+ /* 381 */
75953
  /*!*************************************************************************!*\
75954
  !*** ./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js ***!
75955
  \*************************************************************************/
75959
 
75960
  "use strict";
75961
  Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
75962
+ /* WEBPACK VAR INJECTION */(function(global) {/**
75963
+ * A collection of shims that provide minimal functionality of the ES6 collections.
75964
+ *
75965
+ * These implementations are not meant to be used outside of the ResizeObserver
75966
+ * modules as they cover only a limited range of use cases.
75967
+ */
75968
+ /* eslint-disable require-jsdoc, valid-jsdoc */
75969
+ var MapShim = (function () {
75970
+ if (typeof Map !== 'undefined') {
75971
+ return Map;
75972
+ }
75973
+ /**
75974
+ * Returns index in provided array that matches the specified key.
75975
+ *
75976
+ * @param {Array<Array>} arr
75977
+ * @param {*} key
75978
+ * @returns {number}
75979
+ */
75980
+ function getIndex(arr, key) {
75981
+ var result = -1;
75982
+ arr.some(function (entry, index) {
75983
+ if (entry[0] === key) {
75984
+ result = index;
75985
+ return true;
75986
+ }
75987
+ return false;
75988
+ });
75989
+ return result;
75990
+ }
75991
+ return /** @class */ (function () {
75992
+ function class_1() {
75993
+ this.__entries__ = [];
75994
+ }
75995
+ Object.defineProperty(class_1.prototype, "size", {
75996
+ /**
75997
+ * @returns {boolean}
75998
+ */
75999
+ get: function () {
76000
+ return this.__entries__.length;
76001
+ },
76002
+ enumerable: true,
76003
+ configurable: true
76004
+ });
76005
+ /**
76006
+ * @param {*} key
76007
+ * @returns {*}
76008
+ */
76009
+ class_1.prototype.get = function (key) {
76010
+ var index = getIndex(this.__entries__, key);
76011
+ var entry = this.__entries__[index];
76012
+ return entry && entry[1];
76013
+ };
76014
+ /**
76015
+ * @param {*} key
76016
+ * @param {*} value
76017
+ * @returns {void}
76018
+ */
76019
+ class_1.prototype.set = function (key, value) {
76020
+ var index = getIndex(this.__entries__, key);
76021
+ if (~index) {
76022
+ this.__entries__[index][1] = value;
76023
+ }
76024
+ else {
76025
+ this.__entries__.push([key, value]);
76026
+ }
76027
+ };
76028
+ /**
76029
+ * @param {*} key
76030
+ * @returns {void}
76031
+ */
76032
+ class_1.prototype.delete = function (key) {
76033
+ var entries = this.__entries__;
76034
+ var index = getIndex(entries, key);
76035
+ if (~index) {
76036
+ entries.splice(index, 1);
76037
+ }
76038
+ };
76039
+ /**
76040
+ * @param {*} key
76041
+ * @returns {void}
76042
+ */
76043
+ class_1.prototype.has = function (key) {
76044
+ return !!~getIndex(this.__entries__, key);
76045
+ };
76046
+ /**
76047
+ * @returns {void}
76048
+ */
76049
+ class_1.prototype.clear = function () {
76050
+ this.__entries__.splice(0);
76051
+ };
76052
+ /**
76053
+ * @param {Function} callback
76054
+ * @param {*} [ctx=null]
76055
+ * @returns {void}
76056
+ */
76057
+ class_1.prototype.forEach = function (callback, ctx) {
76058
+ if (ctx === void 0) { ctx = null; }
76059
+ for (var _i = 0, _a = this.__entries__; _i < _a.length; _i++) {
76060
+ var entry = _a[_i];
76061
+ callback.call(ctx, entry[1], entry[0]);
76062
+ }
76063
+ };
76064
+ return class_1;
76065
+ }());
76066
  })();
76067
 
76068
+ /**
76069
+ * Detects whether window and document objects are available in current environment.
76070
+ */
76071
  var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && window.document === document;
76072
 
76073
+ // Returns global object of a current environment.
76074
+ var global$1 = (function () {
76075
+ if (typeof global !== 'undefined' && global.Math === Math) {
76076
+ return global;
76077
+ }
76078
+ if (typeof self !== 'undefined' && self.Math === Math) {
76079
+ return self;
76080
+ }
76081
+ if (typeof window !== 'undefined' && window.Math === Math) {
76082
+ return window;
76083
+ }
76084
+ // eslint-disable-next-line no-new-func
76085
+ return Function('return this')();
76086
  })();
76087
 
76088
+ /**
76089
+ * A shim for the requestAnimationFrame which falls back to the setTimeout if
76090
+ * first one is not supported.
76091
+ *
76092
+ * @returns {number} Requests' identifier.
76093
+ */
76094
+ var requestAnimationFrame$1 = (function () {
76095
+ if (typeof requestAnimationFrame === 'function') {
76096
+ // It's required to use a bounded function because IE sometimes throws
76097
+ // an "Invalid calling object" error if rAF is invoked without the global
76098
+ // object on the left hand side.
76099
+ return requestAnimationFrame.bind(global$1);
76100
+ }
76101
+ return function (callback) { return setTimeout(function () { return callback(Date.now()); }, 1000 / 60); };
76102
  })();
76103
 
76104
+ // Defines minimum timeout before adding a trailing call.
76105
+ var trailingTimeout = 2;
76106
+ /**
76107
+ * Creates a wrapper function which ensures that provided callback will be
76108
+ * invoked only once during the specified delay period.
76109
+ *
76110
+ * @param {Function} callback - Function to be invoked after the delay period.
76111
+ * @param {number} delay - Delay after which to invoke callback.
76112
+ * @returns {Function}
76113
+ */
76114
+ function throttle (callback, delay) {
76115
+ var leadingCall = false, trailingCall = false, lastCallTime = 0;
76116
+ /**
76117
+ * Invokes the original callback function and schedules new invocation if
76118
+ * the "proxy" was called during current request.
76119
+ *
76120
+ * @returns {void}
76121
+ */
76122
+ function resolvePending() {
76123
+ if (leadingCall) {
76124
+ leadingCall = false;
76125
+ callback();
76126
+ }
76127
+ if (trailingCall) {
76128
+ proxy();
76129
+ }
76130
+ }
76131
+ /**
76132
+ * Callback invoked after the specified delay. It will further postpone
76133
+ * invocation of the original function delegating it to the
76134
+ * requestAnimationFrame.
76135
+ *
76136
+ * @returns {void}
76137
+ */
76138
+ function timeoutCallback() {
76139
+ requestAnimationFrame$1(resolvePending);
76140
+ }
76141
+ /**
76142
+ * Schedules invocation of the original function.
76143
+ *
76144
+ * @returns {void}
76145
+ */
76146
+ function proxy() {
76147
+ var timeStamp = Date.now();
76148
+ if (leadingCall) {
76149
+ // Reject immediately following calls.
76150
+ if (timeStamp - lastCallTime < trailingTimeout) {
76151
+ return;
76152
+ }
76153
+ // Schedule new call to be in invoked when the pending one is resolved.
76154
+ // This is important for "transitions" which never actually start
76155
+ // immediately so there is a chance that we might miss one if change
76156
+ // happens amids the pending invocation.
76157
+ trailingCall = true;
76158
+ }
76159
+ else {
76160
+ leadingCall = true;
76161
+ trailingCall = false;
76162
+ setTimeout(timeoutCallback, delay);
76163
+ }
76164
+ lastCallTime = timeStamp;
76165
+ }
76166
+ return proxy;
76167
+ }
76168
+
76169
+ // Minimum delay before invoking the update of observers.
76170
+ var REFRESH_DELAY = 20;
76171
+ // A list of substrings of CSS properties used to find transition events that
76172
+ // might affect dimensions of observed elements.
76173
+ var transitionKeys = ['top', 'right', 'bottom', 'left', 'width', 'height', 'size', 'weight'];
76174
+ // Check if MutationObserver is available.
76175
+ var mutationObserverSupported = typeof MutationObserver !== 'undefined';
76176
+ /**
76177
+ * Singleton controller class which handles updates of ResizeObserver instances.
76178
+ */
76179
+ var ResizeObserverController = /** @class */ (function () {
76180
+ /**
76181
+ * Creates a new instance of ResizeObserverController.
76182
+ *
76183
+ * @private
76184
+ */
76185
+ function ResizeObserverController() {
76186
+ /**
76187
+ * Indicates whether DOM listeners have been added.
76188
+ *
76189
+ * @private {boolean}
76190
+ */
76191
+ this.connected_ = false;
76192
+ /**
76193
+ * Tells that controller has subscribed for Mutation Events.
76194
+ *
76195
+ * @private {boolean}
76196
+ */
76197
+ this.mutationEventsAdded_ = false;
76198
+ /**
76199
+ * Keeps reference to the instance of MutationObserver.
76200
+ *
76201
+ * @private {MutationObserver}
76202
+ */
76203
+ this.mutationsObserver_ = null;
76204
+ /**
76205
+ * A list of connected observers.
76206
+ *
76207
+ * @private {Array<ResizeObserverSPI>}
76208
+ */
76209
+ this.observers_ = [];
76210
+ this.onTransitionEnd_ = this.onTransitionEnd_.bind(this);
76211
+ this.refresh = throttle(this.refresh.bind(this), REFRESH_DELAY);
76212
+ }
76213
+ /**
76214
+ * Adds observer to observers list.
76215
+ *
76216
+ * @param {ResizeObserverSPI} observer - Observer to be added.
76217
+ * @returns {void}
76218
+ */
76219
+ ResizeObserverController.prototype.addObserver = function (observer) {
76220
+ if (!~this.observers_.indexOf(observer)) {
76221
+ this.observers_.push(observer);
76222
+ }
76223
+ // Add listeners if they haven't been added yet.
76224
+ if (!this.connected_) {
76225
+ this.connect_();
76226
+ }
76227
+ };
76228
+ /**
76229
+ * Removes observer from observers list.
76230
+ *
76231
+ * @param {ResizeObserverSPI} observer - Observer to be removed.
76232
+ * @returns {void}
76233
+ */
76234
+ ResizeObserverController.prototype.removeObserver = function (observer) {
76235
+ var observers = this.observers_;
76236
+ var index = observers.indexOf(observer);
76237
+ // Remove observer if it's present in registry.
76238
+ if (~index) {
76239
+ observers.splice(index, 1);
76240
+ }
76241
+ // Remove listeners if controller has no connected observers.
76242
+ if (!observers.length && this.connected_) {
76243
+ this.disconnect_();
76244
+ }
76245
+ };
76246
+ /**
76247
+ * Invokes the update of observers. It will continue running updates insofar
76248
+ * it detects changes.
76249
+ *
76250
+ * @returns {void}
76251
+ */
76252
+ ResizeObserverController.prototype.refresh = function () {
76253
+ var changesDetected = this.updateObservers_();
76254
+ // Continue running updates if changes have been detected as there might
76255
+ // be future ones caused by CSS transitions.
76256
+ if (changesDetected) {
76257
+ this.refresh();
76258
+ }
76259
+ };
76260
+ /**
76261
+ * Updates every observer from observers list and notifies them of queued
76262
+ * entries.
76263
+ *
76264
+ * @private
76265
+ * @returns {boolean} Returns "true" if any observer has detected changes in
76266
+ * dimensions of it's elements.
76267
+ */
76268
+ ResizeObserverController.prototype.updateObservers_ = function () {
76269
+ // Collect observers that have active observations.
76270
+ var activeObservers = this.observers_.filter(function (observer) {
76271
+ return observer.gatherActive(), observer.hasActive();
76272
+ });
76273
+ // Deliver notifications in a separate cycle in order to avoid any
76274
+ // collisions between observers, e.g. when multiple instances of
76275
+ // ResizeObserver are tracking the same element and the callback of one
76276
+ // of them changes content dimensions of the observed target. Sometimes
76277
+ // this may result in notifications being blocked for the rest of observers.
76278
+ activeObservers.forEach(function (observer) { return observer.broadcastActive(); });
76279
+ return activeObservers.length > 0;
76280
+ };
76281
+ /**
76282
+ * Initializes DOM listeners.
76283
+ *
76284
+ * @private
76285
+ * @returns {void}
76286
+ */
76287
+ ResizeObserverController.prototype.connect_ = function () {
76288
+ // Do nothing if running in a non-browser environment or if listeners
76289
+ // have been already added.
76290
+ if (!isBrowser || this.connected_) {
76291
+ return;
76292
+ }
76293
+ // Subscription to the "Transitionend" event is used as a workaround for
76294
+ // delayed transitions. This way it's possible to capture at least the
76295
+ // final state of an element.
76296
+ document.addEventListener('transitionend', this.onTransitionEnd_);
76297
+ window.addEventListener('resize', this.refresh);
76298
+ if (mutationObserverSupported) {
76299
+ this.mutationsObserver_ = new MutationObserver(this.refresh);
76300
+ this.mutationsObserver_.observe(document, {
76301
+ attributes: true,
76302
+ childList: true,
76303
+ characterData: true,
76304
+ subtree: true
76305
+ });
76306
+ }
76307
+ else {
76308
+ document.addEventListener('DOMSubtreeModified', this.refresh);
76309
+ this.mutationEventsAdded_ = true;
76310
+ }
76311
+ this.connected_ = true;
76312
+ };
76313
+ /**
76314
+ * Removes DOM listeners.
76315
+ *
76316
+ * @private
76317
+ * @returns {void}
76318
+ */
76319
+ ResizeObserverController.prototype.disconnect_ = function () {
76320
+ // Do nothing if running in a non-browser environment or if listeners
76321
+ // have been already removed.
76322
+ if (!isBrowser || !this.connected_) {
76323
+ return;
76324
+ }
76325
+ document.removeEventListener('transitionend', this.onTransitionEnd_);
76326
+ window.removeEventListener('resize', this.refresh);
76327
+ if (this.mutationsObserver_) {
76328
+ this.mutationsObserver_.disconnect();
76329
+ }
76330
+ if (this.mutationEventsAdded_) {
76331
+ document.removeEventListener('DOMSubtreeModified', this.refresh);
76332
+ }
76333
+ this.mutationsObserver_ = null;
76334
+ this.mutationEventsAdded_ = false;
76335
+ this.connected_ = false;
76336
+ };
76337
+ /**
76338
+ * "Transitionend" event handler.
76339
+ *
76340
+ * @private
76341
+ * @param {TransitionEvent} event
76342
+ * @returns {void}
76343
+ */
76344
+ ResizeObserverController.prototype.onTransitionEnd_ = function (_a) {
76345
+ var _b = _a.propertyName, propertyName = _b === void 0 ? '' : _b;
76346
+ // Detect whether transition may affect dimensions of an element.
76347
+ var isReflowProperty = transitionKeys.some(function (key) {
76348
+ return !!~propertyName.indexOf(key);
76349
+ });
76350
+ if (isReflowProperty) {
76351
+ this.refresh();
76352
+ }
76353
+ };
76354
+ /**
76355
+ * Returns instance of the ResizeObserverController.
76356
+ *
76357
+ * @returns {ResizeObserverController}
76358
+ */
76359
+ ResizeObserverController.getInstance = function () {
76360
+ if (!this.instance_) {
76361
+ this.instance_ = new ResizeObserverController();
76362
+ }
76363
+ return this.instance_;
76364
+ };
76365
+ /**
76366
+ * Holds reference to the controller's instance.
76367
+ *
76368
+ * @private {ResizeObserverController}
76369
+ */
76370
+ ResizeObserverController.instance_ = null;
76371
+ return ResizeObserverController;
76372
  }());
76373
 
76374
+ /**
76375
+ * Defines non-writable/enumerable properties of the provided target object.
76376
+ *
76377
+ * @param {Object} target - Object for which to define properties.
76378
+ * @param {Object} props - Properties to be defined.
76379
+ * @returns {Object} Target object.
76380
+ */
76381
+ var defineConfigurable = (function (target, props) {
76382
+ for (var _i = 0, _a = Object.keys(props); _i < _a.length; _i++) {
76383
+ var key = _a[_i];
76384
+ Object.defineProperty(target, key, {
76385
+ value: props[key],
76386
+ enumerable: false,
76387
+ writable: false,
76388
+ configurable: true
76389
+ });
76390
+ }
76391
+ return target;
76392
  });
76393
 
76394
+ /**
76395
+ * Returns the global object associated with provided element.
76396
+ *
76397
+ * @param {Object} target
76398
+ * @returns {Object}
76399
+ */
76400
+ var getWindowOf = (function (target) {
76401
+ // Assume that the element is an instance of Node, which means that it
76402
+ // has the "ownerDocument" property from which we can retrieve a
76403
+ // corresponding global object.
76404
+ var ownerGlobal = target && target.ownerDocument && target.ownerDocument.defaultView;
76405
+ // Return the local global object if it's not possible extract one from
76406
+ // provided element.
76407
+ return ownerGlobal || global$1;
76408
  });
76409
 
76410
+ // Placeholder of an empty content rectangle.
76411
+ var emptyRect = createRectInit(0, 0, 0, 0);
76412
+ /**
76413
+ * Converts provided string to a number.
76414
+ *
76415
+ * @param {number|string} value
76416
+ * @returns {number}
76417
+ */
76418
+ function toFloat(value) {
76419
+ return parseFloat(value) || 0;
76420
+ }
76421
+ /**
76422
+ * Extracts borders size from provided styles.
76423
+ *
76424
+ * @param {CSSStyleDeclaration} styles
76425
+ * @param {...string} positions - Borders positions (top, right, ...)
76426
+ * @returns {number}
76427
+ */
76428
+ function getBordersSize(styles) {
76429
+ var positions = [];
76430
+ for (var _i = 1; _i < arguments.length; _i++) {
76431
+ positions[_i - 1] = arguments[_i];
76432
+ }
76433
+ return positions.reduce(function (size, position) {
76434
+ var value = styles['border-' + position + '-width'];
76435
+ return size + toFloat(value);
76436
+ }, 0);
76437
+ }
76438
+ /**
76439
+ * Extracts paddings sizes from provided styles.
76440
+ *
76441
+ * @param {CSSStyleDeclaration} styles
76442
+ * @returns {Object} Paddings box.
76443
+ */
76444
+ function getPaddings(styles) {
76445
+ var positions = ['top', 'right', 'bottom', 'left'];
76446
+ var paddings = {};
76447
+ for (var _i = 0, positions_1 = positions; _i < positions_1.length; _i++) {
76448
+ var position = positions_1[_i];
76449
+ var value = styles['padding-' + position];
76450
+ paddings[position] = toFloat(value);
76451
+ }
76452
+ return paddings;
76453
+ }
76454
+ /**
76455
+ * Calculates content rectangle of provided SVG element.
76456
+ *
76457
+ * @param {SVGGraphicsElement} target - Element content rectangle of which needs
76458
+ * to be calculated.
76459
+ * @returns {DOMRectInit}
76460
+ */
76461
+ function getSVGContentRect(target) {
76462
+ var bbox = target.getBBox();
76463
+ return createRectInit(0, 0, bbox.width, bbox.height);
76464
+ }
76465
+ /**
76466
+ * Calculates content rectangle of provided HTMLElement.
76467
+ *
76468
+ * @param {HTMLElement} target - Element for which to calculate the content rectangle.
76469
+ * @returns {DOMRectInit}
76470
+ */
76471
+ function getHTMLElementContentRect(target) {
76472
+ // Client width & height properties can't be
76473
+ // used exclusively as they provide rounded values.
76474
+ var clientWidth = target.clientWidth, clientHeight = target.clientHeight;
76475
+ // By this condition we can catch all non-replaced inline, hidden and
76476
+ // detached elements. Though elements with width & height properties less
76477
+ // than 0.5 will be discarded as well.
76478
+ //
76479
+ // Without it we would need to implement separate methods for each of
76480
+ // those cases and it's not possible to perform a precise and performance
76481
+ // effective test for hidden elements. E.g. even jQuery's ':visible' filter
76482
+ // gives wrong results for elements with width & height less than 0.5.
76483
+ if (!clientWidth && !clientHeight) {
76484
+ return emptyRect;
76485
+ }
76486
+ var styles = getWindowOf(target).getComputedStyle(target);
76487
+ var paddings = getPaddings(styles);
76488
+ var horizPad = paddings.left + paddings.right;
76489
+ var vertPad = paddings.top + paddings.bottom;
76490
+ // Computed styles of width & height are being used because they are the
76491
+ // only dimensions available to JS that contain non-rounded values. It could
76492
+ // be possible to utilize the getBoundingClientRect if only it's data wasn't
76493
+ // affected by CSS transformations let alone paddings, borders and scroll bars.
76494
+ var width = toFloat(styles.width), height = toFloat(styles.height);
76495
+ // Width & height include paddings and borders when the 'border-box' box
76496
+ // model is applied (except for IE).
76497
+ if (styles.boxSizing === 'border-box') {
76498
+ // Following conditions are required to handle Internet Explorer which
76499
+ // doesn't include paddings and borders to computed CSS dimensions.
76500
+ //
76501
+ // We can say that if CSS dimensions + paddings are equal to the "client"
76502
+ // properties then it's either IE, and thus we don't need to subtract
76503
+ // anything, or an element merely doesn't have paddings/borders styles.
76504
+ if (Math.round(width + horizPad) !== clientWidth) {
76505
+ width -= getBordersSize(styles, 'left', 'right') + horizPad;
76506
+ }
76507
+ if (Math.round(height + vertPad) !== clientHeight) {
76508
+ height -= getBordersSize(styles, 'top', 'bottom') + vertPad;
76509
+ }
76510
+ }
76511
+ // Following steps can't be applied to the document's root element as its
76512
+ // client[Width/Height] properties represent viewport area of the window.
76513
+ // Besides, it's as well not necessary as the <html> itself neither has
76514
+ // rendered scroll bars nor it can be clipped.
76515
+ if (!isDocumentElement(target)) {
76516
+ // In some browsers (only in Firefox, actually) CSS width & height
76517
+ // include scroll bars size which can be removed at this step as scroll
76518
+ // bars are the only difference between rounded dimensions + paddings
76519
+ // and "client" properties, though that is not always true in Chrome.
76520
+ var vertScrollbar = Math.round(width + horizPad) - clientWidth;
76521
+ var horizScrollbar = Math.round(height + vertPad) - clientHeight;
76522
+ // Chrome has a rather weird rounding of "client" properties.
76523
+ // E.g. for an element with content width of 314.2px it sometimes gives
76524
+ // the client width of 315px and for the width of 314.7px it may give
76525
+ // 314px. And it doesn't happen all the time. So just ignore this delta
76526
+ // as a non-relevant.
76527
+ if (Math.abs(vertScrollbar) !== 1) {
76528
+ width -= vertScrollbar;
76529
+ }
76530
+ if (Math.abs(horizScrollbar) !== 1) {
76531
+ height -= horizScrollbar;
76532
+ }
76533
+ }
76534
+ return createRectInit(paddings.left, paddings.top, width, height);
76535
+ }
76536
+ /**
76537
+ * Checks whether provided element is an instance of the SVGGraphicsElement.
76538
+ *
76539
+ * @param {Element} target - Element to be checked.
76540
+ * @returns {boolean}
76541
+ */
76542
+ var isSVGGraphicsElement = (function () {
76543
+ // Some browsers, namely IE and Edge, don't have the SVGGraphicsElement
76544
+ // interface.
76545
+ if (typeof SVGGraphicsElement !== 'undefined') {
76546
+ return function (target) { return target instanceof getWindowOf(target).SVGGraphicsElement; };
76547
+ }
76548
+ // If it's so, then check that element is at least an instance of the
76549
+ // SVGElement and that it has the "getBBox" method.
76550
+ // eslint-disable-next-line no-extra-parens
76551
+ return function (target) { return (target instanceof getWindowOf(target).SVGElement &&
76552
+ typeof target.getBBox === 'function'); };
76553
+ })();
76554
+ /**
76555
+ * Checks whether provided element is a document element (<html>).
76556
+ *
76557
+ * @param {Element} target - Element to be checked.
76558
+ * @returns {boolean}
76559
+ */
76560
+ function isDocumentElement(target) {
76561
+ return target === getWindowOf(target).document.documentElement;
76562
+ }
76563
+ /**
76564
+ * Calculates an appropriate content rectangle for provided html or svg element.
76565
+ *
76566
+ * @param {Element} target - Element content rectangle of which needs to be calculated.
76567
+ * @returns {DOMRectInit}
76568
+ */
76569
+ function getContentRect(target) {
76570
+ if (!isBrowser) {
76571
+ return emptyRect;
76572
+ }
76573
+ if (isSVGGraphicsElement(target)) {
76574
+ return getSVGContentRect(target);
76575
+ }
76576
+ return getHTMLElementContentRect(target);
76577
+ }
76578
+ /**
76579
+ * Creates rectangle with an interface of the DOMRectReadOnly.
76580
+ * Spec: https://drafts.fxtf.org/geometry/#domrectreadonly
76581
+ *
76582
+ * @param {DOMRectInit} rectInit - Object with rectangle's x/y coordinates and dimensions.
76583
+ * @returns {DOMRectReadOnly}
76584
+ */
76585
+ function createReadOnlyRect(_a) {
76586
+ var x = _a.x, y = _a.y, width = _a.width, height = _a.height;
76587
+ // If DOMRectReadOnly is available use it as a prototype for the rectangle.
76588
+ var Constr = typeof DOMRectReadOnly !== 'undefined' ? DOMRectReadOnly : Object;
76589
+ var rect = Object.create(Constr.prototype);
76590
+ // Rectangle's properties are not writable and non-enumerable.
76591
+ defineConfigurable(rect, {
76592
+ x: x, y: y, width: width, height: height,
76593
+ top: y,
76594
+ right: x + width,
76595
+ bottom: height + y,
76596
+ left: x
76597
+ });
76598
+ return rect;
76599
+ }
76600
+ /**
76601
+ * Creates DOMRectInit object based on the provided dimensions and the x/y coordinates.
76602
+ * Spec: https://drafts.fxtf.org/geometry/#dictdef-domrectinit
76603
+ *
76604
+ * @param {number} x - X coordinate.
76605
+ * @param {number} y - Y coordinate.
76606
+ * @param {number} width - Rectangle's width.
76607
+ * @param {number} height - Rectangle's height.
76608
+ * @returns {DOMRectInit}
76609
+ */
76610
+ function createRectInit(x, y, width, height) {
76611
+ return { x: x, y: y, width: width, height: height };
76612
+ }
76613
+
76614
+ /**
76615
+ * Class that is responsible for computations of the content rectangle of
76616
+ * provided DOM element and for keeping track of it's changes.
76617
+ */
76618
+ var ResizeObservation = /** @class */ (function () {
76619
+ /**
76620
+ * Creates an instance of ResizeObservation.
76621
+ *
76622
+ * @param {Element} target - Element to be observed.
76623
+ */
76624
+ function ResizeObservation(target) {
76625
+ /**
76626
+ * Broadcasted width of content rectangle.
76627
+ *
76628
+ * @type {number}
76629
+ */
76630
+ this.broadcastWidth = 0;
76631
+ /**
76632
+ * Broadcasted height of content rectangle.
76633
+ *
76634
+ * @type {number}
76635
+ */
76636
+ this.broadcastHeight = 0;
76637
+ /**
76638
+ * Reference to the last observed content rectangle.
76639
+ *
76640
+ * @private {DOMRectInit}
76641
+ */
76642
+ this.contentRect_ = createRectInit(0, 0, 0, 0);
76643
+ this.target = target;
76644
+ }
76645
+ /**
76646
+ * Updates content rectangle and tells whether it's width or height properties
76647
+ * have changed since the last broadcast.
76648
+ *
76649
+ * @returns {boolean}
76650
+ */
76651
+ ResizeObservation.prototype.isActive = function () {
76652
+ var rect = getContentRect(this.target);
76653
+ this.contentRect_ = rect;
76654
+ return (rect.width !== this.broadcastWidth ||
76655
+ rect.height !== this.broadcastHeight);
76656
+ };
76657
+ /**
76658
+ * Updates 'broadcastWidth' and 'broadcastHeight' properties with a data
76659
+ * from the corresponding properties of the last observed content rectangle.
76660
+ *
76661
+ * @returns {DOMRectInit} Last observed content rectangle.
76662
+ */
76663
+ ResizeObservation.prototype.broadcastRect = function () {
76664
+ var rect = this.contentRect_;
76665
+ this.broadcastWidth = rect.width;
76666
+ this.broadcastHeight = rect.height;
76667
+ return rect;
76668
+ };
76669
+ return ResizeObservation;
76670
  }());
76671
 
76672
+ var ResizeObserverEntry = /** @class */ (function () {
76673
+ /**
76674
+ * Creates an instance of ResizeObserverEntry.
76675
+ *
76676
+ * @param {Element} target - Element that is being observed.
76677
+ * @param {DOMRectInit} rectInit - Data of the element's content rectangle.
76678
+ */
76679
+ function ResizeObserverEntry(target, rectInit) {
76680
+ var contentRect = createReadOnlyRect(rectInit);
76681
+ // According to the specification following properties are not writable
76682
+ // and are also not enumerable in the native implementation.
76683
+ //
76684
+ // Property accessors are not being used as they'd require to define a
76685
+ // private WeakMap storage which may cause memory leaks in browsers that
76686
+ // don't support this type of collections.
76687
+ defineConfigurable(this, { target: target, contentRect: contentRect });
76688
+ }
76689
+ return ResizeObserverEntry;
76690
  }());
76691
 
76692
+ var ResizeObserverSPI = /** @class */ (function () {
76693
+ /**
76694
+ * Creates a new instance of ResizeObserver.
76695
+ *
76696
+ * @param {ResizeObserverCallback} callback - Callback function that is invoked
76697
+ * when one of the observed elements changes it's content dimensions.
76698
+ * @param {ResizeObserverController} controller - Controller instance which
76699
+ * is responsible for the updates of observer.
76700
+ * @param {ResizeObserver} callbackCtx - Reference to the public
76701
+ * ResizeObserver instance which will be passed to callback function.
76702
+ */
76703
+ function ResizeObserverSPI(callback, controller, callbackCtx) {
76704
+ /**
76705
+ * Collection of resize observations that have detected changes in dimensions
76706
+ * of elements.
76707
+ *
76708
+ * @private {Array<ResizeObservation>}
76709
+ */
76710
+ this.activeObservations_ = [];
76711
+ /**
76712
+ * Registry of the ResizeObservation instances.
76713
+ *
76714
+ * @private {Map<Element, ResizeObservation>}
76715
+ */
76716
+ this.observations_ = new MapShim();
76717
+ if (typeof callback !== 'function') {
76718
+ throw new TypeError('The callback provided as parameter 1 is not a function.');
76719
+ }
76720
+ this.callback_ = callback;
76721
+ this.controller_ = controller;
76722
+ this.callbackCtx_ = callbackCtx;
76723
+ }
76724
+ /**
76725
+ * Starts observing provided element.
76726
+ *
76727
+ * @param {Element} target - Element to be observed.
76728
+ * @returns {void}
76729
+ */
76730
+ ResizeObserverSPI.prototype.observe = function (target) {
76731
+ if (!arguments.length) {
76732
+ throw new TypeError('1 argument required, but only 0 present.');
76733
+ }
76734
+ // Do nothing if current environment doesn't have the Element interface.
76735
+ if (typeof Element === 'undefined' || !(Element instanceof Object)) {
76736
+ return;
76737
+ }
76738
+ if (!(target instanceof getWindowOf(target).Element)) {
76739
+ throw new TypeError('parameter 1 is not of type "Element".');
76740
+ }
76741
+ var observations = this.observations_;
76742
+ // Do nothing if element is already being observed.
76743
+ if (observations.has(target)) {
76744
+ return;
76745
+ }
76746
+ observations.set(target, new ResizeObservation(target));
76747
+ this.controller_.addObserver(this);
76748
+ // Force the update of observations.
76749
+ this.controller_.refresh();
76750
+ };
76751
+ /**
76752
+ * Stops observing provided element.
76753
+ *
76754
+ * @param {Element} target - Element to stop observing.
76755
+ * @returns {void}
76756
+ */
76757
+ ResizeObserverSPI.prototype.unobserve = function (target) {
76758
+ if (!arguments.length) {
76759
+ throw new TypeError('1 argument required, but only 0 present.');
76760
+ }
76761
+ // Do nothing if current environment doesn't have the Element interface.
76762
+ if (typeof Element === 'undefined' || !(Element instanceof Object)) {
76763
+ return;
76764
+ }
76765
+ if (!(target instanceof getWindowOf(target).Element)) {
76766
+ throw new TypeError('parameter 1 is not of type "Element".');
76767
+ }
76768
+ var observations = this.observations_;
76769
+ // Do nothing if element is not being observed.
76770
+ if (!observations.has(target)) {
76771
+ return;
76772
+ }
76773
+ observations.delete(target);
76774
+ if (!observations.size) {
76775
+ this.controller_.removeObserver(this);
76776
+ }
76777
+ };
76778
+ /**
76779
+ * Stops observing all elements.
76780
+ *
76781
+ * @returns {void}
76782
+ */
76783
+ ResizeObserverSPI.prototype.disconnect = function () {
76784
+ this.clearActive();
76785
+ this.observations_.clear();
76786
+ this.controller_.removeObserver(this);
76787
+ };
76788
+ /**
76789
+ * Collects observation instances the associated element of which has changed
76790
+ * it's content rectangle.
76791
+ *
76792
+ * @returns {void}
76793
+ */
76794
+ ResizeObserverSPI.prototype.gatherActive = function () {
76795
+ var _this = this;
76796
+ this.clearActive();
76797
+ this.observations_.forEach(function (observation) {
76798
+ if (observation.isActive()) {
76799
+ _this.activeObservations_.push(observation);
76800
+ }
76801
+ });
76802
+ };
76803
+ /**
76804
+ * Invokes initial callback function with a list of ResizeObserverEntry
76805
+ * instances collected from active resize observations.
76806
+ *
76807
+ * @returns {void}
76808
+ */
76809
+ ResizeObserverSPI.prototype.broadcastActive = function () {
76810
+ // Do nothing if observer doesn't have active observations.
76811
+ if (!this.hasActive()) {
76812
+ return;
76813
+ }
76814
+ var ctx = this.callbackCtx_;
76815
+ // Create ResizeObserverEntry instance for every active observation.
76816
+ var entries = this.activeObservations_.map(function (observation) {
76817
+ return new ResizeObserverEntry(observation.target, observation.broadcastRect());
76818
+ });
76819
+ this.callback_.call(ctx, entries, ctx);
76820
+ this.clearActive();
76821
+ };
76822
+ /**
76823
+ * Clears the collection of active observations.
76824
+ *
76825
+ * @returns {void}
76826
+ */
76827
+ ResizeObserverSPI.prototype.clearActive = function () {
76828
+ this.activeObservations_.splice(0);
76829
+ };
76830
+ /**
76831
+ * Tells whether observer has active observations.
76832
+ *
76833
+ * @returns {boolean}
76834
+ */
76835
+ ResizeObserverSPI.prototype.hasActive = function () {
76836
+ return this.activeObservations_.length > 0;
76837
+ };
76838
+ return ResizeObserverSPI;
76839
  }());
76840
 
76841
+ // Registry of internal observers. If WeakMap is not available use current shim
76842
+ // for the Map collection as it has all required methods and because WeakMap
76843
+ // can't be fully polyfilled anyway.
76844
+ var observers = typeof WeakMap !== 'undefined' ? new WeakMap() : new MapShim();
76845
+ /**
76846
+ * ResizeObserver API. Encapsulates the ResizeObserver SPI implementation
76847
+ * exposing only those methods and properties that are defined in the spec.
76848
+ */
76849
+ var ResizeObserver = /** @class */ (function () {
76850
+ /**
76851
+ * Creates a new instance of ResizeObserver.
76852
+ *
76853
+ * @param {ResizeObserverCallback} callback - Callback that is invoked when
76854
+ * dimensions of the observed elements change.
76855
+ */
76856
+ function ResizeObserver(callback) {
76857
+ if (!(this instanceof ResizeObserver)) {
76858
+ throw new TypeError('Cannot call a class as a function.');
76859
+ }
76860
+ if (!arguments.length) {
76861
+ throw new TypeError('1 argument required, but only 0 present.');
76862
+ }
76863
+ var controller = ResizeObserverController.getInstance();
76864
+ var observer = new ResizeObserverSPI(callback, controller, this);
76865
+ observers.set(this, observer);
76866
+ }
76867
+ return ResizeObserver;
76868
+ }());
76869
+ // Expose public methods of ResizeObserver.
76870
+ [
76871
+ 'observe',
76872
+ 'unobserve',
76873
+ 'disconnect'
76874
+ ].forEach(function (method) {
76875
+ ResizeObserver.prototype[method] = function () {
76876
+ var _a;
76877
+ return (_a = observers.get(this))[method].apply(_a, arguments);
76878
+ };
76879
  });
76880
 
76881
+ var index = (function () {
76882
+ // Export existing implementation if available.
76883
+ if (typeof global$1.ResizeObserver !== 'undefined') {
76884
+ return global$1.ResizeObserver;
76885
+ }
76886
+ return ResizeObserver;
76887
  })();
76888
 
76889
  /* harmony default export */ __webpack_exports__["default"] = (index);
76890
 
76891
+ /* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../webpack/buildin/global.js */ 53)))
76892
 
76893
  /***/ }),
76894
+ /* 382 */
76895
  /*!***************************************!*\
76896
  !*** ./node_modules/json2mq/index.js ***!
76897
  \***************************************/
76899
  /*! all exports used */
76900
  /***/ (function(module, exports, __webpack_require__) {
76901
 
76902
+ var camel2hyphen = __webpack_require__(/*! string-convert/camel2hyphen */ 383);
76903
 
76904
  var isDimension = function (feature) {
76905
  var re = /[height|width]$/;
76952
  module.exports = json2mq;
76953
 
76954
  /***/ }),
76955
+ /* 383 */
76956
  /*!*****************************************************!*\
76957
  !*** ./node_modules/string-convert/camel2hyphen.js ***!
76958
  \*****************************************************/
76971
  module.exports = camel2hyphen;
76972
 
76973
  /***/ }),
76974
+ /* 384 */
76975
  /*!*******************************************************!*\
76976
  !*** ./node_modules/react-slick/lib/default-props.js ***!
76977
  \*******************************************************/
77058
  exports.default = defaultProps;
77059
 
77060
  /***/ }),
77061
+ /* 385 */
77062
  /*!**********************************************!*\
77063
  !*** ./node_modules/enquire.js/src/index.js ***!
77064
  \**********************************************/
77066
  /*! all exports used */
77067
  /***/ (function(module, exports, __webpack_require__) {
77068
 
77069
+ var MediaQueryDispatch = __webpack_require__(/*! ./MediaQueryDispatch */ 386);
77070
  module.exports = new MediaQueryDispatch();
77071
 
77072
 
77073
  /***/ }),
77074
+ /* 386 */
77075
  /*!***********************************************************!*\
77076
  !*** ./node_modules/enquire.js/src/MediaQueryDispatch.js ***!
77077
  \***********************************************************/
77079
  /*! all exports used */
77080
  /***/ (function(module, exports, __webpack_require__) {
77081
 
77082
+ var MediaQuery = __webpack_require__(/*! ./MediaQuery */ 387);
77083
  var Util = __webpack_require__(/*! ./Util */ 153);
77084
  var each = Util.each;
77085
  var isFunction = Util.isFunction;
77167
 
77168
 
77169
  /***/ }),
77170
+ /* 387 */
77171
  /*!***************************************************!*\
77172
  !*** ./node_modules/enquire.js/src/MediaQuery.js ***!
77173
  \***************************************************/
77175
  /*! all exports used */
77176
  /***/ (function(module, exports, __webpack_require__) {
77177
 
77178
+ var QueryHandler = __webpack_require__(/*! ./QueryHandler */ 388);
77179
  var each = __webpack_require__(/*! ./Util */ 153).each;
77180
 
77181
  /**
77271
 
77272
 
77273
  /***/ }),
77274
+ /* 388 */
77275
  /*!*****************************************************!*\
77276
  !*** ./node_modules/enquire.js/src/QueryHandler.js ***!
77277
  \*****************************************************/
77356
 
77357
 
77358
  /***/ }),
77359
+ /* 389 */
77360
  /*!*************************************!*\
77361
  !*** ./src/blocks/section/block.js ***!
77362
  \*************************************/
77367
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
77368
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
77369
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
77370
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */ 390);
77371
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
77372
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 391);
77373
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
77374
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 154);
77375
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__edit__ = __webpack_require__(/*! ./edit */ 392);
77376
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__save__ = __webpack_require__(/*! ./save */ 394);
77377
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__deprecated__ = __webpack_require__(/*! ./deprecated */ 395);
77378
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 155);
77379
  /**
77380
  * BLOCK: Section
77421
  });
77422
 
77423
  /***/ }),
77424
+ /* 390 */
77425
  /*!***************************************!*\
77426
  !*** ./src/blocks/section/style.scss ***!
77427
  \***************************************/
77431
  // removed by extract-text-webpack-plugin
77432
 
77433
  /***/ }),
77434
+ /* 391 */
77435
  /*!****************************************!*\
77436
  !*** ./src/blocks/section/editor.scss ***!
77437
  \****************************************/
77441
  // removed by extract-text-webpack-plugin
77442
 
77443
  /***/ }),
77444
+ /* 392 */
77445
  /*!************************************!*\
77446
  !*** ./src/blocks/section/edit.js ***!
77447
  \************************************/
77452
  "use strict";
77453
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
77454
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
77455
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 393);
77456
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
77457
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 50);
77458
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */ 82);
77459
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
77460
 
78662
  /* harmony default export */ __webpack_exports__["a"] = (withNotices(UAGBSectionEdit));
78663
 
78664
  /***/ }),
78665
+ /* 393 */
78666
  /*!***************************************!*\
78667
  !*** ./src/blocks/section/styling.js ***!
78668
  \***************************************/
78876
  /* harmony default export */ __webpack_exports__["a"] = (styling);
78877
 
78878
  /***/ }),
78879
+ /* 394 */
78880
  /*!************************************!*\
78881
  !*** ./src/blocks/section/save.js ***!
78882
  \************************************/
78946
  }
78947
 
78948
  /***/ }),
78949
+ /* 395 */
78950
  /*!******************************************!*\
78951
  !*** ./src/blocks/section/deprecated.js ***!
78952
  \******************************************/
79066
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
79067
 
79068
  /***/ }),
79069
+ /* 396 */
79070
  /*!*************************************!*\
79071
  !*** ./src/blocks/buttons/block.js ***!
79072
  \*************************************/
79076
  "use strict";
79077
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
79078
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 156);
79079
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 397);
79080
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 400);
79081
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 401);
79082
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 402);
79083
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
79084
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 403);
79085
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
79086
  /**
79087
  * BLOCK: Multi Buttons
79120
  });
79121
 
79122
  /***/ }),
79123
+ /* 397 */
79124
  /*!************************************!*\
79125
  !*** ./src/blocks/buttons/edit.js ***!
79126
  \************************************/
79133
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
79134
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
79135
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
79136
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 399);
79137
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 28);
79138
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
79139
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
79356
  /* harmony default export */ __webpack_exports__["a"] = (UAGBMultiButtonEdit);
79357
 
79358
  /***/ }),
79359
+ /* 398 */
79360
  /*!**********************************************!*\
79361
  !*** ./node_modules/lodash/_castFunction.js ***!
79362
  \**********************************************/
79381
 
79382
 
79383
  /***/ }),
79384
+ /* 399 */
79385
  /*!***************************************!*\
79386
  !*** ./src/blocks/buttons/styling.js ***!
79387
  \***************************************/
79505
  /* harmony default export */ __webpack_exports__["a"] = (styling);
79506
 
79507
  /***/ }),
79508
+ /* 400 */
79509
  /*!******************************************!*\
79510
  !*** ./src/blocks/buttons/deprecated.js ***!
79511
  \******************************************/
79683
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
79684
 
79685
  /***/ }),
79686
+ /* 401 */
79687
  /*!************************************!*\
79688
  !*** ./src/blocks/buttons/save.js ***!
79689
  \************************************/
79729
  }
79730
 
79731
  /***/ }),
79732
+ /* 402 */
79733
  /*!***************************************!*\
79734
  !*** ./src/blocks/buttons/style.scss ***!
79735
  \***************************************/
79739
  // removed by extract-text-webpack-plugin
79740
 
79741
  /***/ }),
79742
+ /* 403 */
79743
  /*!****************************************!*\
79744
  !*** ./src/blocks/buttons/editor.scss ***!
79745
  \****************************************/
79749
  // removed by extract-text-webpack-plugin
79750
 
79751
  /***/ }),
79752
+ /* 404 */
79753
  /*!*******************************************!*\
79754
  !*** ./src/blocks/buttons-child/block.js ***!
79755
  \*******************************************/
79759
  "use strict";
79760
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
79761
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 157);
79762
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated__ = __webpack_require__(/*! ./deprecated */ 405);
79763
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 406);
79764
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 417);
79765
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 418);
79766
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
79767
  /**
79768
  * BLOCK: Buttons - Child
79791
  });
79792
 
79793
  /***/ }),
79794
+ /* 405 */
79795
  /*!************************************************!*\
79796
  !*** ./src/blocks/buttons-child/deprecated.js ***!
79797
  \************************************************/
79854
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
79855
 
79856
  /***/ }),
79857
+ /* 406 */
79858
  /*!******************************************!*\
79859
  !*** ./src/blocks/buttons-child/edit.js ***!
79860
  \******************************************/
79865
  "use strict";
79866
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
79867
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
79868
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 407);
79869
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
79870
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
79871
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__);
80723
  /* harmony default export */ __webpack_exports__["a"] = (UAGBButtonsChild);
80724
 
80725
  /***/ }),
80726
+ /* 407 */
80727
  /*!*********************************************!*\
80728
  !*** ./src/blocks/buttons-child/styling.js ***!
80729
  \*********************************************/
80856
  /* harmony default export */ __webpack_exports__["a"] = (styling);
80857
 
80858
  /***/ }),
80859
+ /* 408 */
80860
  /*!******************************************************!*\
80861
  !*** ./node_modules/react-transition-group/index.js ***!
80862
  \******************************************************/
80867
  "use strict";
80868
 
80869
 
80870
+ var _CSSTransition = _interopRequireDefault(__webpack_require__(/*! ./CSSTransition */ 409));
80871
 
80872
+ var _ReplaceTransition = _interopRequireDefault(__webpack_require__(/*! ./ReplaceTransition */ 414));
80873
 
80874
  var _TransitionGroup = _interopRequireDefault(__webpack_require__(/*! ./TransitionGroup */ 161));
80875
 
80885
  };
80886
 
80887
  /***/ }),
80888
+ /* 409 */
80889
  /*!**************************************************************!*\
80890
  !*** ./node_modules/react-transition-group/CSSTransition.js ***!
80891
  \**************************************************************/
80901
 
80902
  var PropTypes = _interopRequireWildcard(__webpack_require__(/*! prop-types */ 15));
80903
 
80904
+ var _addClass = _interopRequireDefault(__webpack_require__(/*! dom-helpers/class/addClass */ 410));
80905
 
80906
+ var _removeClass = _interopRequireDefault(__webpack_require__(/*! dom-helpers/class/removeClass */ 413));
80907
 
80908
  var _react = _interopRequireDefault(__webpack_require__(/*! react */ 6));
80909
 
81261
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
81262
 
81263
  /***/ }),
81264
+ /* 410 */
81265
  /*!****************************************************!*\
81266
  !*** ./node_modules/dom-helpers/class/addClass.js ***!
81267
  \****************************************************/
81272
  "use strict";
81273
 
81274
 
81275
+ var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 411);
81276
 
81277
  exports.__esModule = true;
81278
  exports.default = addClass;
81279
 
81280
+ var _hasClass = _interopRequireDefault(__webpack_require__(/*! ./hasClass */ 412));
81281
 
81282
  function addClass(element, className) {
81283
  if (element.classList) element.classList.add(className);else if (!(0, _hasClass.default)(element, className)) if (typeof element.className === 'string') element.className = element.className + ' ' + className;else element.setAttribute('class', (element.className && element.className.baseVal || '') + ' ' + className);
81286
  module.exports = exports["default"];
81287
 
81288
  /***/ }),
81289
+ /* 411 */
81290
  /*!**********************************************************************!*\
81291
  !*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
81292
  \**********************************************************************/
81303
  module.exports = _interopRequireDefault;
81304
 
81305
  /***/ }),
81306
+ /* 412 */
81307
  /*!****************************************************!*\
81308
  !*** ./node_modules/dom-helpers/class/hasClass.js ***!
81309
  \****************************************************/
81324
  module.exports = exports["default"];
81325
 
81326
  /***/ }),
81327
+ /* 413 */
81328
  /*!*******************************************************!*\
81329
  !*** ./node_modules/dom-helpers/class/removeClass.js ***!
81330
  \*******************************************************/
81344
  };
81345
 
81346
  /***/ }),
81347
+ /* 414 */
81348
  /*!******************************************************************!*\
81349
  !*** ./node_modules/react-transition-group/ReplaceTransition.js ***!
81350
  \******************************************************************/
81506
  /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
81507
 
81508
  /***/ }),
81509
+ /* 415 */
81510
  /*!*******************************************************************!*\
81511
  !*** ./node_modules/react-transition-group/utils/ChildMapping.js ***!
81512
  \*******************************************************************/
81667
  }
81668
 
81669
  /***/ }),
81670
+ /* 416 */
81671
  /*!************************************************!*\
81672
  !*** ./dist/blocks/uagb-controls/parseIcon.js ***!
81673
  \************************************************/
81690
  /* harmony default export */ __webpack_exports__["a"] = (parseSVG);
81691
 
81692
  /***/ }),
81693
+ /* 417 */
81694
  /*!******************************************!*\
81695
  !*** ./src/blocks/buttons-child/save.js ***!
81696
  \******************************************/
81766
  }
81767
 
81768
  /***/ }),
81769
+ /* 418 */
81770
  /*!*********************************************!*\
81771
  !*** ./src/blocks/buttons-child/style.scss ***!
81772
  \*********************************************/
81776
  // removed by extract-text-webpack-plugin
81777
 
81778
  /***/ }),
81779
+ /* 419 */
81780
  /*!**************************************!*\
81781
  !*** ./src/blocks/info-box/block.js ***!
81782
  \**************************************/
81785
 
81786
  "use strict";
81787
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
81788
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 420);
81789
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 421);
81790
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */ 163);
81791
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 422);
81792
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 425);
81793
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
81794
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 426);
81795
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
81796
  /**
81797
  * BLOCK: Info Box
81825
  });
81826
 
81827
  /***/ }),
81828
+ /* 420 */
81829
  /*!*************************************!*\
81830
  !*** ./src/blocks/info-box/edit.js ***!
81831
  \*************************************/
81993
  var setAttributes = this.props.setAttributes;
81994
 
81995
 
81996
+ setAttributes({ iconImage: '' });
81997
  }
81998
 
81999
  /**
83329
  /* harmony default export */ __webpack_exports__["a"] = (UAGBinfoBox);
83330
 
83331
  /***/ }),
83332
+ /* 421 */
83333
  /*!*************************************!*\
83334
  !*** ./src/blocks/info-box/save.js ***!
83335
  \*************************************/
83511
  }
83512
 
83513
  /***/ }),
83514
+ /* 422 */
83515
  /*!*******************************************!*\
83516
  !*** ./src/blocks/info-box/deprecated.js ***!
83517
  \*******************************************/
83525
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */ 84);
83526
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! ./components/Title */ 85);
83527
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */ 87);
83528
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_InfoBoxIcon__ = __webpack_require__(/*! ./components/InfoBoxIcon */ 423);
83529
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Icon__ = __webpack_require__(/*! ./components/Icon */ 86);
83530
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__classes__ = __webpack_require__(/*! ./classes */ 88);
83531
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */ 89);
83532
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_InfoBoxCta__ = __webpack_require__(/*! ./components/InfoBoxCta */ 424);
83533
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */ 90);
83534
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 162);
83535
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_InfoBoxIconImage__ = __webpack_require__(/*! ./components/InfoBoxIconImage */ 91);
84278
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
84279
 
84280
  /***/ }),
84281
+ /* 423 */
84282
  /*!*******************************************************!*\
84283
  !*** ./src/blocks/info-box/components/InfoBoxIcon.js ***!
84284
  \*******************************************************/
84338
  /* harmony default export */ __webpack_exports__["a"] = (InfoBoxIcon);
84339
 
84340
  /***/ }),
84341
+ /* 424 */
84342
  /*!******************************************************!*\
84343
  !*** ./src/blocks/info-box/components/InfoBoxCta.js ***!
84344
  \******************************************************/
84436
  /* harmony default export */ __webpack_exports__["a"] = (InfoBoxCta);
84437
 
84438
  /***/ }),
84439
+ /* 425 */
84440
  /*!*****************************************!*\
84441
  !*** ./src/blocks/info-box/editor.scss ***!
84442
  \*****************************************/
84446
  // removed by extract-text-webpack-plugin
84447
 
84448
  /***/ }),
84449
+ /* 426 */
84450
  /*!****************************************!*\
84451
  !*** ./src/blocks/info-box/style.scss ***!
84452
  \****************************************/
84456
  // removed by extract-text-webpack-plugin
84457
 
84458
  /***/ }),
84459
+ /* 427 */
84460
  /*!*****************************************!*\
84461
  !*** ./src/blocks/testimonial/block.js ***!
84462
  \*****************************************/
84467
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
84468
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
84469
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
84470
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 428);
84471
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 430);
84472
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 164);
84473
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */ 431);
84474
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 432);
84475
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
84476
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 433);
84477
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
84478
  /**
84479
  * BLOCK: Testimonial
84507
  });
84508
 
84509
  /***/ }),
84510
+ /* 428 */
84511
  /*!****************************************!*\
84512
  !*** ./src/blocks/testimonial/edit.js ***!
84513
  \****************************************/
84522
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Company__ = __webpack_require__(/*! ./components/Company */ 93);
84523
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 94);
84524
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */ 95);
84525
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 429);
84526
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_TestimonialImage__ = __webpack_require__(/*! ./components/TestimonialImage */ 96);
84527
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
84528
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_lodash_times__);
85713
  /* harmony default export */ __webpack_exports__["a"] = (UAGBtestimonial);
85714
 
85715
  /***/ }),
85716
+ /* 429 */
85717
  /*!*************************************************!*\
85718
  !*** ./src/blocks/testimonial/inline-styles.js ***!
85719
  \*************************************************/
85958
  /* harmony default export */ __webpack_exports__["a"] = (TestimonialStyle);
85959
 
85960
  /***/ }),
85961
+ /* 430 */
85962
  /*!****************************************!*\
85963
  !*** ./src/blocks/testimonial/save.js ***!
85964
  \****************************************/
86074
  }
86075
 
86076
  /***/ }),
86077
+ /* 431 */
86078
  /*!**********************************************!*\
86079
  !*** ./src/blocks/testimonial/deprecated.js ***!
86080
  \**********************************************/
86300
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
86301
 
86302
  /***/ }),
86303
+ /* 432 */
86304
  /*!*******************************************!*\
86305
  !*** ./src/blocks/testimonial/style.scss ***!
86306
  \*******************************************/
86310
  // removed by extract-text-webpack-plugin
86311
 
86312
  /***/ }),
86313
+ /* 433 */
86314
  /*!********************************************!*\
86315
  !*** ./src/blocks/testimonial/editor.scss ***!
86316
  \********************************************/
86320
  // removed by extract-text-webpack-plugin
86321
 
86322
  /***/ }),
86323
+ /* 434 */
86324
  /*!**********************************!*\
86325
  !*** ./src/blocks/team/block.js ***!
86326
  \**********************************/
86332
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
86333
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
86334
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
86335
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 435);
86336
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 437);
86337
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */ 438);
86338
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 165);
86339
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 439);
86340
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
86341
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__style_scss__ = __webpack_require__(/*! ./style.scss */ 440);
86342
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8__style_scss__);
86343
  /**
86344
  * BLOCK: Team
86374
  });
86375
 
86376
  /***/ }),
86377
+ /* 435 */
86378
  /*!*********************************!*\
86379
  !*** ./src/blocks/team/edit.js ***!
86380
  \*********************************/
86389
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
86390
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
86391
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
86392
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 436);
86393
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
86394
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
86395
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
87304
  /* harmony default export */ __webpack_exports__["a"] = (UAGBTeam);
87305
 
87306
  /***/ }),
87307
+ /* 436 */
87308
  /*!************************************!*\
87309
  !*** ./src/blocks/team/styling.js ***!
87310
  \************************************/
87529
  /* harmony default export */ __webpack_exports__["a"] = (styling);
87530
 
87531
  /***/ }),
87532
+ /* 437 */
87533
  /*!*********************************!*\
87534
  !*** ./src/blocks/team/save.js ***!
87535
  \*********************************/
87674
  }
87675
 
87676
  /***/ }),
87677
+ /* 438 */
87678
  /*!***************************************!*\
87679
  !*** ./src/blocks/team/deprecated.js ***!
87680
  \***************************************/
88050
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
88051
 
88052
  /***/ }),
88053
+ /* 439 */
88054
  /*!*************************************!*\
88055
  !*** ./src/blocks/team/editor.scss ***!
88056
  \*************************************/
88060
  // removed by extract-text-webpack-plugin
88061
 
88062
  /***/ }),
88063
+ /* 440 */
88064
  /*!************************************!*\
88065
  !*** ./src/blocks/team/style.scss ***!
88066
  \************************************/
88070
  // removed by extract-text-webpack-plugin
88071
 
88072
  /***/ }),
88073
+ /* 441 */
88074
  /*!******************************************!*\
88075
  !*** ./src/blocks/social-share/block.js ***!
88076
  \******************************************/
88082
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
88083
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
88084
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
88085
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 442);
88086
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
88087
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 443);
88088
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__editor_scss__);
88089
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__transform__ = __webpack_require__(/*! ./transform */ 444);
88090
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 166);
88091
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__edit__ = __webpack_require__(/*! ./edit */ 445);
88092
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__links__ = __webpack_require__(/*! ./links */ 97);
88093
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__save__ = __webpack_require__(/*! ./save */ 447);
88094
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__deprecated__ = __webpack_require__(/*! ./deprecated */ 448);
88095
  /**
88096
  * BLOCK: Social Share
88097
  */
88129
  });
88130
 
88131
  /***/ }),
88132
+ /* 442 */
88133
  /*!********************************************!*\
88134
  !*** ./src/blocks/social-share/style.scss ***!
88135
  \********************************************/
88139
  // removed by extract-text-webpack-plugin
88140
 
88141
  /***/ }),
88142
+ /* 443 */
88143
  /*!*********************************************!*\
88144
  !*** ./src/blocks/social-share/editor.scss ***!
88145
  \*********************************************/
88149
  // removed by extract-text-webpack-plugin
88150
 
88151
  /***/ }),
88152
+ /* 444 */
88153
  /*!**********************************************!*\
88154
  !*** ./src/blocks/social-share/transform.js ***!
88155
  \**********************************************/
88203
  /* harmony default export */ __webpack_exports__["a"] = (transform);
88204
 
88205
  /***/ }),
88206
+ /* 445 */
88207
  /*!*****************************************!*\
88208
  !*** ./src/blocks/social-share/edit.js ***!
88209
  \*****************************************/
88222
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
88223
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
88224
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json__);
88225
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 446);
88226
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
88227
 
88228
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
88552
  /* harmony default export */ __webpack_exports__["a"] = (UAGBSocialShare);
88553
 
88554
  /***/ }),
88555
+ /* 446 */
88556
  /*!********************************************!*\
88557
  !*** ./src/blocks/social-share/styling.js ***!
88558
  \********************************************/
88762
  /* harmony default export */ __webpack_exports__["a"] = (styling);
88763
 
88764
  /***/ }),
88765
+ /* 447 */
88766
  /*!*****************************************!*\
88767
  !*** ./src/blocks/social-share/save.js ***!
88768
  \*****************************************/
88812
  }
88813
 
88814
  /***/ }),
88815
+ /* 448 */
88816
  /*!***********************************************!*\
88817
  !*** ./src/blocks/social-share/deprecated.js ***!
88818
  \***********************************************/
89047
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
89048
 
89049
  /***/ }),
89050
+ /* 449 */
89051
  /*!************************************************!*\
89052
  !*** ./src/blocks/social-share-child/block.js ***!
89053
  \************************************************/
89057
  "use strict";
89058
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
89059
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 167);
89060
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 450);
89061
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 452);
89062
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 453);
89063
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
89064
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 454);
89065
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
89066
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 455);
89067
  /**
89068
  * BLOCK: Social Share Child
89069
  */
89094
  });
89095
 
89096
  /***/ }),
89097
+ /* 450 */
89098
  /*!***********************************************!*\
89099
  !*** ./src/blocks/social-share-child/edit.js ***!
89100
  \***********************************************/
89109
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
89110
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
89111
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
89112
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 451);
89113
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
89114
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
89115
 
89548
  /* harmony default export */ __webpack_exports__["a"] = (UAGBSocialShareChild);
89549
 
89550
  /***/ }),
89551
+ /* 451 */
89552
  /*!**************************************************!*\
89553
  !*** ./src/blocks/social-share-child/styling.js ***!
89554
  \**************************************************/
89604
  /* harmony default export */ __webpack_exports__["a"] = (styling);
89605
 
89606
  /***/ }),
89607
+ /* 452 */
89608
  /*!***********************************************!*\
89609
  !*** ./src/blocks/social-share-child/save.js ***!
89610
  \***********************************************/
89678
  }
89679
 
89680
  /***/ }),
89681
+ /* 453 */
89682
  /*!**************************************************!*\
89683
  !*** ./src/blocks/social-share-child/style.scss ***!
89684
  \**************************************************/
89688
  // removed by extract-text-webpack-plugin
89689
 
89690
  /***/ }),
89691
+ /* 454 */
89692
  /*!***************************************************!*\
89693
  !*** ./src/blocks/social-share-child/editor.scss ***!
89694
  \***************************************************/
89698
  // removed by extract-text-webpack-plugin
89699
 
89700
  /***/ }),
89701
+ /* 455 */
89702
  /*!*****************************************************!*\
89703
  !*** ./src/blocks/social-share-child/deprecated.js ***!
89704
  \*****************************************************/
89780
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
89781
 
89782
  /***/ }),
89783
+ /* 456 */
89784
  /*!****************************************!*\
89785
  !*** ./src/blocks/google-map/block.js ***!
89786
  \****************************************/
89791
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
89792
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
89793
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
89794
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */ 457);
89795
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
89796
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
89797
 
89815
  var _wp$components = wp.components,
89816
  PanelBody = _wp$components.PanelBody,
89817
  RangeControl = _wp$components.RangeControl,
89818
+ TextControl = _wp$components.TextControl,
89819
+ SelectControl = _wp$components.SelectControl;
89820
  var _wp$element = wp.element,
89821
  Component = _wp$element.Component,
89822
  Fragment = _wp$element.Fragment;
89851
  _props$attributes = _props.attributes,
89852
  height = _props$attributes.height,
89853
  zoom = _props$attributes.zoom,
89854
+ address = _props$attributes.address,
89855
+ language = _props$attributes.language;
89856
 
89857
  var encoded_address = encodeURI(address);
89858
 
89859
+ var lang_par = language ? language : "en";
89860
+
89861
+ var url = "https://www.google.com/maps/embed/v1/place?key=" + api_key + "&q=" + encoded_address + "&zoom=" + zoom + "&language=" + lang_par;
89862
 
89863
  return wp.element.createElement(
89864
  Fragment,
89906
  min: 0,
89907
  max: 1000,
89908
  allowReset: true
89909
+ }),
89910
+ wp.element.createElement(SelectControl, {
89911
+ label: __("Language"),
89912
+ value: language,
89913
+ onChange: function onChange(value) {
89914
+ return setAttributes({ language: value });
89915
+ },
89916
+ options: [{ value: "af", label: __("Afrikaans") }, { value: "sq", label: __("Albanian") }, { value: "am", label: __("Amharic") }, { value: "ar", label: __("Arabic") }, { value: "hy", label: __("Armenian") }, { value: "az", label: __("Azerbaijani") }, { value: "eu", label: __("Basque") }, { value: "be", label: __("Belarusian") }, { value: "bn", label: __("Bengali") }, { value: "bs", label: __("Bosnian") }, { value: "bg", label: __("Bulgarian") }, { value: "my", label: __("Burmese") }, { value: "ca", label: __("Catalan") }, { value: "zh", label: __("Chinese") }, { value: "hr", label: __("Croatian") }, { value: "cs", label: __("Czech") }, { value: "da", label: __("Danish") }, { value: "nl", label: __("Dutch") }, { value: "en", label: __("English") }, { value: "et", label: __("Estonian") }, { value: "fa", label: __("Farsi") }, { value: "fi", label: __("Finnish") }, { value: "fr", label: __("French") }, { value: "gl", label: __("Galician") }, { value: "ka", label: __("Georgian") }, { value: "de", label: __("German") }, { value: "el", label: __("Greek") }, { value: "gu", label: __("Gujarati") }, { value: "iw", label: __("Hebrew") }, { value: "hi", label: __("Hindi") }, { value: "hu", label: __("Hungarian") }, { value: "is", label: __("Icelandic") }, { value: "id", label: __("Indonesian") }, { value: "it", label: __("Italian") }, { value: "ja", label: __("Japanese") }, { value: "kn", label: __("Kannada") }, { value: "kk", label: __("Kazakh") }, { value: "km", label: __("Khmer") }, { value: "ko", label: __("Korean") }, { value: "ky", label: __("Kyrgyz") }, { value: "lo", label: __("Lao") }, { value: "lv", label: __("Latvian") }, { value: "lt", label: __("Lithuanian") }, { value: "mk", label: __("Macedonian") }, { value: "ms", label: __("Malay") }, { value: "ml", label: __("Malayalam") }, { value: "mr", label: __("Marathi") }, { value: "mn", label: __("Mongolian") }, { value: "ne", label: __("Nepali") }, { value: "no", label: __("Norwegian") }, { value: "pl", label: __("Polish") }, { value: "pt", label: __("Portuguese") }, { value: "pa", label: __("Punjabi") }, { value: "ro", label: __("Romanian") }, { value: "ru", label: __("Russian") }, { value: "sr", label: __("Serbian") }, { value: "si", label: __("Sinhalese") }, { value: "sk", label: __("Slovak") }, { value: "sl", label: __("Slovenian") }, { value: "es", label: __("Spanish") }, { value: "sw", label: __("Swahili") }, { value: "sv", label: __("Swedish") }, { value: "ta", label: __("Tamil") }, { value: "te", label: __("Telugu") }, { value: "th", label: __("Thai") }, { value: "tr", label: __("Turkish") }, { value: "uk", label: __("Ukrainian") }, { value: "ur", label: __("Urdu") }, { value: "uz", label: __("Uzbek") }, { value: "vi", label: __("Vietnamese") }, { value: "zu", label: __("Zulu") }]
89917
  })
89918
  )
89919
  ),
89957
  zoom: {
89958
  type: "number",
89959
  default: 12
89960
+ },
89961
+ language: {
89962
+ type: "string",
89963
+ default: "en"
89964
  }
89965
  },
89966
  edit: UAGBGoogleMap,
89969
  block_id = _props$attributes2.block_id,
89970
  height = _props$attributes2.height,
89971
  zoom = _props$attributes2.zoom,
89972
+ address = _props$attributes2.address,
89973
+ language = _props$attributes2.language;
89974
 
89975
 
89976
  var encoded_address = encodeURI(address);
89977
 
89978
+ var lang_par = language ? language : "en";
89979
+
89980
+ var url = "https://www.google.com/maps/embed/v1/place?key=" + api_key + "&q=" + encoded_address + "&zoom=" + zoom + "&language=" + lang_par;
89981
 
89982
  return wp.element.createElement(
89983
  "div",
90021
 
90022
  return wp.element.createElement(
90023
  "div",
90024
+ { className: __WEBPACK_IMPORTED_MODULE_0_classnames___default.a(props.className, "uagb-google-map__wrap", "uagb-block-" + block_id) },
90025
  wp.element.createElement("iframe", {
90026
  className: "uagb-google-map__iframe",
90027
+ title: __("Google Map for " + address),
90028
  src: url,
90029
  style: { height: height } })
90030
  );
90055
  address = _props$attributes4.address;
90056
 
90057
 
90058
+ var encoded_address = encodeURI(address);
90059
+
90060
+ var url = "https://www.google.com/maps/embed/v1/place?key=" + api_key + "&q=" + encoded_address + "&zoom=" + zoom;
90061
+
90062
+ return wp.element.createElement(
90063
+ "div",
90064
+ { className: __WEBPACK_IMPORTED_MODULE_0_classnames___default.a(props.className, "uagb-google-map__wrap"), id: "uagb-google-map-" + block_id },
90065
+ wp.element.createElement("iframe", {
90066
+ className: "uagb-google-map__iframe",
90067
+ src: url,
90068
+ style: { height: height } })
90069
+ );
90070
+ }
90071
+ }, {
90072
+ attributes: {
90073
+ block_id: {
90074
+ type: "string"
90075
+ },
90076
+ address: {
90077
+ type: "string",
90078
+ default: "Brainstorm Force"
90079
+ },
90080
+ height: {
90081
+ type: "number",
90082
+ default: 300
90083
+ },
90084
+ zoom: {
90085
+ type: "number",
90086
+ default: 12
90087
+ }
90088
+ },
90089
+ save: function save(props) {
90090
+ var _props$attributes5 = props.attributes,
90091
+ block_id = _props$attributes5.block_id,
90092
+ height = _props$attributes5.height,
90093
+ zoom = _props$attributes5.zoom,
90094
+ address = _props$attributes5.address;
90095
+
90096
+
90097
  var encoded_address = encodeURI(address);
90098
 
90099
  var url = "https://www.google.com/maps/embed/v1/place?key=" + api_key + "&q=" + encoded_address + "&zoom=" + zoom;
90111
  });
90112
 
90113
  /***/ }),
90114
+ /* 457 */
90115
  /*!******************************************!*\
90116
  !*** ./src/blocks/google-map/style.scss ***!
90117
  \******************************************/
90121
  // removed by extract-text-webpack-plugin
90122
 
90123
  /***/ }),
90124
+ /* 458 */
90125
  /*!***************************************!*\
90126
  !*** ./src/blocks/icon-list/block.js ***!
90127
  \***************************************/
90131
  "use strict";
90132
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
90133
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 169);
90134
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 459);
90135
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 461);
90136
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__transform__ = __webpack_require__(/*! ./transform */ 462);
90137
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */ 463);
90138
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 464);
90139
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
90140
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 465);
90141
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
90142
  /**
90143
  * BLOCK: Icon List
90173
  });
90174
 
90175
  /***/ }),
90176
+ /* 459 */
90177
  /*!**************************************!*\
90178
  !*** ./src/blocks/icon-list/edit.js ***!
90179
  \**************************************/
90190
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
90191
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 28);
90192
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
90193
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! ./styling */ 460);
90194
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
90195
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
90196
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
90609
  /* harmony default export */ __webpack_exports__["a"] = (UAGBIconList);
90610
 
90611
  /***/ }),
90612
+ /* 460 */
90613
  /*!*****************************************!*\
90614
  !*** ./src/blocks/icon-list/styling.js ***!
90615
  \*****************************************/
90841
  /* harmony default export */ __webpack_exports__["a"] = (styling);
90842
 
90843
  /***/ }),
90844
+ /* 461 */
90845
  /*!**************************************!*\
90846
  !*** ./src/blocks/icon-list/save.js ***!
90847
  \**************************************/
90888
  }
90889
 
90890
  /***/ }),
90891
+ /* 462 */
90892
  /*!*******************************************!*\
90893
  !*** ./src/blocks/icon-list/transform.js ***!
90894
  \*******************************************/
90942
  /* harmony default export */ __webpack_exports__["a"] = (transform);
90943
 
90944
  /***/ }),
90945
+ /* 463 */
90946
  /*!********************************************!*\
90947
  !*** ./src/blocks/icon-list/deprecated.js ***!
90948
  \********************************************/
91398
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
91399
 
91400
  /***/ }),
91401
+ /* 464 */
91402
  /*!*****************************************!*\
91403
  !*** ./src/blocks/icon-list/style.scss ***!
91404
  \*****************************************/
91408
  // removed by extract-text-webpack-plugin
91409
 
91410
  /***/ }),
91411
+ /* 465 */
91412
  /*!******************************************!*\
91413
  !*** ./src/blocks/icon-list/editor.scss ***!
91414
  \******************************************/
91418
  // removed by extract-text-webpack-plugin
91419
 
91420
  /***/ }),
91421
+ /* 466 */
91422
  /*!*********************************************!*\
91423
  !*** ./src/blocks/icon-list-child/block.js ***!
91424
  \*********************************************/
91428
  "use strict";
91429
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
91430
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 170);
91431
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 467);
91432
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 469);
91433
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 470);
91434
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
91435
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 471);
91436
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
91437
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 472);
91438
  /**
91439
  * BLOCK: Icon List - Child
91440
  */
91464
  });
91465
 
91466
  /***/ }),
91467
+ /* 467 */
91468
  /*!********************************************!*\
91469
  !*** ./src/blocks/icon-list-child/edit.js ***!
91470
  \********************************************/
91479
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
91480
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
91481
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
91482
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 468);
91483
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
91484
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
91485
 
92080
  /* harmony default export */ __webpack_exports__["a"] = (UAGBIconListChild);
92081
 
92082
  /***/ }),
92083
+ /* 468 */
92084
  /*!***********************************************!*\
92085
  !*** ./src/blocks/icon-list-child/styling.js ***!
92086
  \***********************************************/
92148
  /* harmony default export */ __webpack_exports__["a"] = (styling);
92149
 
92150
  /***/ }),
92151
+ /* 469 */
92152
  /*!********************************************!*\
92153
  !*** ./src/blocks/icon-list-child/save.js ***!
92154
  \********************************************/
92232
  }
92233
 
92234
  /***/ }),
92235
+ /* 470 */
92236
  /*!***********************************************!*\
92237
  !*** ./src/blocks/icon-list-child/style.scss ***!
92238
  \***********************************************/
92242
  // removed by extract-text-webpack-plugin
92243
 
92244
  /***/ }),
92245
+ /* 471 */
92246
  /*!************************************************!*\
92247
  !*** ./src/blocks/icon-list-child/editor.scss ***!
92248
  \************************************************/
92252
  // removed by extract-text-webpack-plugin
92253
 
92254
  /***/ }),
92255
+ /* 472 */
92256
  /*!**************************************************!*\
92257
  !*** ./src/blocks/icon-list-child/deprecated.js ***!
92258
  \**************************************************/
92341
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
92342
 
92343
  /***/ }),
92344
+ /* 473 */
92345
  /*!****************************************!*\
92346
  !*** ./src/blocks/price-list/block.js ***!
92347
  \****************************************/
92350
 
92351
  "use strict";
92352
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
92353
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 474);
92354
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 476);
92355
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 477);
92356
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 171);
92357
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 478);
92358
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
92359
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 479);
92360
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
92361
  /**
92362
  * BLOCK: Price List
92392
  });
92393
 
92394
  /***/ }),
92395
+ /* 474 */
92396
  /*!***************************************!*\
92397
  !*** ./src/blocks/price-list/edit.js ***!
92398
  \***************************************/
92407
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Price__ = __webpack_require__(/*! ./components/Price */ 99);
92408
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 100);
92409
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */ 101);
92410
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 475);
92411
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_RestMenuImage__ = __webpack_require__(/*! ./components/RestMenuImage */ 102);
92412
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
92413
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_lodash_times__);
93291
  /* harmony default export */ __webpack_exports__["a"] = (UAGBRestaurantMenu);
93292
 
93293
  /***/ }),
93294
+ /* 475 */
93295
  /*!************************************************!*\
93296
  !*** ./src/blocks/price-list/inline-styles.js ***!
93297
  \************************************************/
93508
  /* harmony default export */ __webpack_exports__["a"] = (RestMenuStyle);
93509
 
93510
  /***/ }),
93511
+ /* 476 */
93512
  /*!***************************************!*\
93513
  !*** ./src/blocks/price-list/save.js ***!
93514
  \***************************************/
93606
  }
93607
 
93608
  /***/ }),
93609
+ /* 477 */
93610
  /*!*********************************************!*\
93611
  !*** ./src/blocks/price-list/deprecated.js ***!
93612
  \*********************************************/
93711
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
93712
 
93713
  /***/ }),
93714
+ /* 478 */
93715
  /*!******************************************!*\
93716
  !*** ./src/blocks/price-list/style.scss ***!
93717
  \******************************************/
93721
  // removed by extract-text-webpack-plugin
93722
 
93723
  /***/ }),
93724
+ /* 479 */
93725
  /*!*******************************************!*\
93726
  !*** ./src/blocks/price-list/editor.scss ***!
93727
  \*******************************************/
93731
  // removed by extract-text-webpack-plugin
93732
 
93733
  /***/ }),
93734
+ /* 480 */
93735
  /*!**************************************!*\
93736
  !*** ./src/blocks/timeline/block.js ***!
93737
  \**************************************/
93739
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
93740
 
93741
  "use strict";
93742
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__content_timeline_block_js__ = __webpack_require__(/*! ./content-timeline/block.js */ 481);
93743
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__post_timeline_block_js__ = __webpack_require__(/*! ./post-timeline/block.js */ 485);
93744
 
93745
 
93746
 
93747
  /***/ }),
93748
+ /* 481 */
93749
  /*!*******************************************************!*\
93750
  !*** ./src/blocks/timeline/content-timeline/block.js ***!
93751
  \*******************************************************/
93760
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
93761
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! .././style.scss */ 172);
93762
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
93763
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 482);
93764
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__save__ = __webpack_require__(/*! ./save */ 483);
93765
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 173);
93766
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__edit__ = __webpack_require__(/*! ./edit */ 484);
93767
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! .././inline-styles */ 30);
93768
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__classes__ = __webpack_require__(/*! .././classes */ 31);
93769
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__align_classes__ = __webpack_require__(/*! .././align-classes */ 32);
93827
  });
93828
 
93829
  /***/ }),
93830
+ /* 482 */
93831
  /*!************************************************************!*\
93832
  !*** ./src/blocks/timeline/content-timeline/deprecated.js ***!
93833
  \************************************************************/
94268
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
94269
 
94270
  /***/ }),
94271
+ /* 483 */
94272
  /*!******************************************************!*\
94273
  !*** ./src/blocks/timeline/content-timeline/save.js ***!
94274
  \******************************************************/
94447
  }
94448
 
94449
  /***/ }),
94450
+ /* 484 */
94451
  /*!******************************************************!*\
94452
  !*** ./src/blocks/timeline/content-timeline/edit.js ***!
94453
  \******************************************************/
95607
  /* harmony default export */ __webpack_exports__["a"] = (UAGBcontentTimeline);
95608
 
95609
  /***/ }),
95610
+ /* 485 */
95611
  /*!****************************************************!*\
95612
  !*** ./src/blocks/timeline/post-timeline/block.js ***!
95613
  \****************************************************/
95619
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
95620
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! .././style.scss */ 172);
95621
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
95622
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 486);
95623
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
95624
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 487);
95625
  /**
95626
  * BLOCK: Post Timeline Js.
95627
  */
95662
  });
95663
 
95664
  /***/ }),
95665
+ /* 486 */
95666
  /*!*****************************************!*\
95667
  !*** ./src/blocks/timeline/editor.scss ***!
95668
  \*****************************************/
95672
  // removed by extract-text-webpack-plugin
95673
 
95674
  /***/ }),
95675
+ /* 487 */
95676
  /*!***************************************************!*\
95677
  !*** ./src/blocks/timeline/post-timeline/edit.js ***!
95678
  \***************************************************/
95681
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
95682
 
95683
  "use strict";
95684
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined__ = __webpack_require__(/*! lodash/isUndefined */ 488);
95685
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined__);
95686
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_pickBy__ = __webpack_require__(/*! lodash/pickBy */ 489);
95687
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_pickBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_pickBy__);
95688
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
95689
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
95698
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__classes__ = __webpack_require__(/*! .././classes */ 31);
95699
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__align_classes__ = __webpack_require__(/*! .././align-classes */ 32);
95700
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__day_align_classes__ = __webpack_require__(/*! .././day-align-classes */ 33);
95701
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_Title__ = __webpack_require__(/*! ./components/Title */ 492);
95702
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__components_FeaturedImage__ = __webpack_require__(/*! ./components/FeaturedImage */ 493);
95703
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__components_Excerpt__ = __webpack_require__(/*! ./components/Excerpt */ 494);
95704
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__components_CtaLink__ = __webpack_require__(/*! ./components/CtaLink */ 495);
95705
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__components_Author__ = __webpack_require__(/*! ./components/Author */ 496);
95706
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__components_PostDate__ = __webpack_require__(/*! ./components/PostDate */ 497);
95707
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__components_Icon__ = __webpack_require__(/*! ./components/Icon */ 498);
95708
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
95709
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
95710
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
97108
  })(UAGBTimeline));
97109
 
97110
  /***/ }),
97111
+ /* 488 */
97112
  /*!********************************************!*\
97113
  !*** ./node_modules/lodash/isUndefined.js ***!
97114
  \********************************************/
97140
 
97141
 
97142
  /***/ }),
97143
+ /* 489 */
97144
  /*!***************************************!*\
97145
  !*** ./node_modules/lodash/pickBy.js ***!
97146
  \***************************************/
97149
 
97150
  var arrayMap = __webpack_require__(/*! ./_arrayMap */ 34),
97151
  baseIteratee = __webpack_require__(/*! ./_baseIteratee */ 113),
97152
+ basePickBy = __webpack_require__(/*! ./_basePickBy */ 490),
97153
+ getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 80);
97154
 
97155
  /**
97156
  * Creates an object composed of the `object` properties `predicate` returns
97187
 
97188
 
97189
  /***/ }),
97190
+ /* 490 */
97191
  /*!********************************************!*\
97192
  !*** ./node_modules/lodash/_basePickBy.js ***!
97193
  \********************************************/
97196
  /***/ (function(module, exports, __webpack_require__) {
97197
 
97198
  var baseGet = __webpack_require__(/*! ./_baseGet */ 45),
97199
+ baseSet = __webpack_require__(/*! ./_baseSet */ 491),
97200
  castPath = __webpack_require__(/*! ./_castPath */ 24);
97201
 
97202
  /**
97228
 
97229
 
97230
  /***/ }),
97231
+ /* 491 */
97232
  /*!*****************************************!*\
97233
  !*** ./node_modules/lodash/_baseSet.js ***!
97234
  \*****************************************/
97286
 
97287
 
97288
  /***/ }),
97289
+ /* 492 */
97290
  /*!***************************************************************!*\
97291
  !*** ./src/blocks/timeline/post-timeline/components/Title.js ***!
97292
  \***************************************************************/
97352
  /* harmony default export */ __webpack_exports__["a"] = (Title);
97353
 
97354
  /***/ }),
97355
+ /* 493 */
97356
  /*!***********************************************************************!*\
97357
  !*** ./src/blocks/timeline/post-timeline/components/FeaturedImage.js ***!
97358
  \***********************************************************************/
97421
  /* harmony default export */ __webpack_exports__["a"] = (FeaturedImage);
97422
 
97423
  /***/ }),
97424
+ /* 494 */
97425
  /*!*****************************************************************!*\
97426
  !*** ./src/blocks/timeline/post-timeline/components/Excerpt.js ***!
97427
  \*****************************************************************/
97480
  /* harmony default export */ __webpack_exports__["a"] = (Excerpt);
97481
 
97482
  /***/ }),
97483
+ /* 495 */
97484
  /*!*****************************************************************!*\
97485
  !*** ./src/blocks/timeline/post-timeline/components/CtaLink.js ***!
97486
  \*****************************************************************/
97540
  /* harmony default export */ __webpack_exports__["a"] = (CtaLink);
97541
 
97542
  /***/ }),
97543
+ /* 496 */
97544
  /*!****************************************************************!*\
97545
  !*** ./src/blocks/timeline/post-timeline/components/Author.js ***!
97546
  \****************************************************************/
97604
  /* harmony default export */ __webpack_exports__["a"] = (Author);
97605
 
97606
  /***/ }),
97607
+ /* 497 */
97608
  /*!******************************************************************!*\
97609
  !*** ./src/blocks/timeline/post-timeline/components/PostDate.js ***!
97610
  \******************************************************************/
97664
  /* harmony default export */ __webpack_exports__["a"] = (PostDate);
97665
 
97666
  /***/ }),
97667
+ /* 498 */
97668
  /*!**************************************************************!*\
97669
  !*** ./src/blocks/timeline/post-timeline/components/Icon.js ***!
97670
  \**************************************************************/
97718
  /* harmony default export */ __webpack_exports__["a"] = (Icon);
97719
 
97720
  /***/ }),
97721
+ /* 499 */
97722
  /*!********************************************!*\
97723
  !*** ./src/blocks/call-to-action/block.js ***!
97724
  \********************************************/
97727
 
97728
  "use strict";
97729
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
97730
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 500);
97731
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 502);
97732
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */ 174);
97733
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 503);
97734
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 505);
97735
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
97736
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 506);
97737
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
97738
  /**
97739
  * BLOCK: Call To Action.
97770
  });
97771
 
97772
  /***/ }),
97773
+ /* 500 */
97774
  /*!*******************************************!*\
97775
  !*** ./src/blocks/call-to-action/edit.js ***!
97776
  \*******************************************/
97790
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */ 105);
97791
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_CTA__ = __webpack_require__(/*! ./components/CTA */ 106);
97792
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
97793
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 501);
97794
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
97795
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
97796
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
98694
  /* harmony default export */ __webpack_exports__["a"] = (UAGBCallToAction);
98695
 
98696
  /***/ }),
98697
+ /* 501 */
98698
  /*!****************************************************!*\
98699
  !*** ./src/blocks/call-to-action/inline-styles.js ***!
98700
  \****************************************************/
98931
  /* harmony default export */ __webpack_exports__["a"] = (CtaStyle);
98932
 
98933
  /***/ }),
98934
+ /* 502 */
98935
  /*!*******************************************!*\
98936
  !*** ./src/blocks/call-to-action/save.js ***!
98937
  \*******************************************/
99060
  }
99061
 
99062
  /***/ }),
99063
+ /* 503 */
99064
  /*!*************************************************!*\
99065
  !*** ./src/blocks/call-to-action/deprecated.js ***!
99066
  \*************************************************/
99074
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */ 103);
99075
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */ 104);
99076
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! ./classes */ 105);
99077
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */ 504);
99078
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_CTA__ = __webpack_require__(/*! ./components/CTA */ 106);
99079
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 174);
99080
  function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
99399
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
99400
 
99401
  /***/ }),
99402
+ /* 504 */
99403
  /*!**************************************************************!*\
99404
  !*** ./src/blocks/call-to-action/components/CallToAction.js ***!
99405
  \**************************************************************/
99493
  /* harmony default export */ __webpack_exports__["a"] = (CallToAction);
99494
 
99495
  /***/ }),
99496
+ /* 505 */
99497
  /*!***********************************************!*\
99498
  !*** ./src/blocks/call-to-action/editor.scss ***!
99499
  \***********************************************/
99503
  // removed by extract-text-webpack-plugin
99504
 
99505
  /***/ }),
99506
+ /* 506 */
99507
  /*!**********************************************!*\
99508
  !*** ./src/blocks/call-to-action/style.scss ***!
99509
  \**********************************************/
99513
  // removed by extract-text-webpack-plugin
99514
 
99515
  /***/ }),
99516
+ /* 507 */
99517
  /*!************************************!*\
99518
  !*** ./src/blocks/column/block.js ***!
99519
  \************************************/
99522
 
99523
  "use strict";
99524
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
99525
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 508);
99526
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 511);
99527
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 512);
99528
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 175);
99529
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 513);
99530
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
99531
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 514);
99532
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
99533
  /**
99534
  * BLOCK: Column
99564
  });
99565
 
99566
  /***/ }),
99567
+ /* 508 */
99568
  /*!***********************************!*\
99569
  !*** ./src/blocks/column/edit.js ***!
99570
  \***********************************/
99576
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
99577
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
99578
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
99579
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 509);
99580
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */ 82);
99581
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
99582
 
100621
  /* harmony default export */ __webpack_exports__["a"] = (UAGBColumnEdit);
100622
 
100623
  /***/ }),
100624
+ /* 509 */
100625
  /*!**************************************!*\
100626
  !*** ./src/blocks/column/styling.js ***!
100627
  \**************************************/
100630
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
100631
 
100632
  "use strict";
100633
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 510);
100634
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
100635
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
100636
  /**
100778
  /* harmony default export */ __webpack_exports__["a"] = (styling);
100779
 
100780
  /***/ }),
100781
+ /* 510 */
100782
  /*!********************************************!*\
100783
  !*** ./src/blocks/column/inline-styles.js ***!
100784
  \********************************************/
100864
  /* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
100865
 
100866
  /***/ }),
100867
+ /* 511 */
100868
  /*!***********************************!*\
100869
  !*** ./src/blocks/column/save.js ***!
100870
  \***********************************/
100914
  }
100915
 
100916
  /***/ }),
100917
+ /* 512 */
100918
  /*!*****************************************!*\
100919
  !*** ./src/blocks/column/deprecated.js ***!
100920
  \*****************************************/
100975
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
100976
 
100977
  /***/ }),
100978
+ /* 513 */
100979
  /*!**************************************!*\
100980
  !*** ./src/blocks/column/style.scss ***!
100981
  \**************************************/
100985
  // removed by extract-text-webpack-plugin
100986
 
100987
  /***/ }),
100988
+ /* 514 */
100989
  /*!***************************************!*\
100990
  !*** ./src/blocks/column/editor.scss ***!
100991
  \***************************************/
100995
  // removed by extract-text-webpack-plugin
100996
 
100997
  /***/ }),
100998
+ /* 515 */
100999
  /*!*************************************!*\
101000
  !*** ./src/blocks/columns/block.js ***!
101001
  \*************************************/
101007
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
101008
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
101009
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 176);
101010
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 516);
101011
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 521);
101012
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__shapes__ = __webpack_require__(/*! ./shapes */ 107);
101013
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__variations__ = __webpack_require__(/*! ./variations */ 522);
101014
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__style_scss__ = __webpack_require__(/*! ./style.scss */ 532);
101015
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__style_scss__);
101016
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 533);
101017
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8__editor_scss__);
101018
  /**
101019
  * BLOCK: Columns
101124
  });
101125
 
101126
  /***/ }),
101127
+ /* 516 */
101128
  /*!************************************!*\
101129
  !*** ./src/blocks/columns/edit.js ***!
101130
  \************************************/
101133
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
101134
 
101135
  "use strict";
101136
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__components_option_selector_control__ = __webpack_require__(/*! ../../components/option-selector-control */ 517);
101137
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames__ = __webpack_require__(/*! classnames */ 0);
101138
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_classnames__);
101139
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 518);
101140
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 28);
101141
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
101142
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
101143
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_times__);
101144
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
101145
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_lodash_map__);
101146
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_dropRight__ = __webpack_require__(/*! lodash/dropRight */ 520);
101147
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_dropRight___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_dropRight__);
101148
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
101149
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__shapes__ = __webpack_require__(/*! ./shapes */ 107);
101150
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 50);
101151
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */ 82);
101152
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__icons__ = __webpack_require__(/*! ./icons */ 177);
101153
  var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
102653
  /* harmony default export */ __webpack_exports__["a"] = (compose(withNotices, applyWithSelect)(UAGBColumns));
102654
 
102655
  /***/ }),
102656
+ /* 517 */
102657
  /*!*********************************************************!*\
102658
  !*** ./src/components/option-selector-control/index.js ***!
102659
  \*********************************************************/
102799
  /* harmony default export */ __webpack_exports__["a"] = (OptionSelectorControl);
102800
 
102801
  /***/ }),
102802
+ /* 518 */
102803
  /*!***************************************!*\
102804
  !*** ./src/blocks/columns/styling.js ***!
102805
  \***************************************/
102808
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
102809
 
102810
  "use strict";
102811
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 519);
102812
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
102813
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */ 83);
102814
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
103010
  /* harmony default export */ __webpack_exports__["a"] = (styling);
103011
 
103012
  /***/ }),
103013
+ /* 519 */
103014
  /*!*********************************************!*\
103015
  !*** ./src/blocks/columns/inline-styles.js ***!
103016
  \*********************************************/
103080
  /* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
103081
 
103082
  /***/ }),
103083
+ /* 520 */
103084
  /*!******************************************!*\
103085
  !*** ./node_modules/lodash/dropRight.js ***!
103086
  \******************************************/
103087
  /*! no static exports found */
103088
  /***/ (function(module, exports, __webpack_require__) {
103089
 
103090
+ var baseSlice = __webpack_require__(/*! ./_baseSlice */ 70),
103091
+ toInteger = __webpack_require__(/*! ./toInteger */ 72);
103092
 
103093
  /**
103094
  * Creates a slice of `array` with `n` elements dropped from the end.
103129
 
103130
 
103131
  /***/ }),
103132
+ /* 521 */
103133
  /*!******************************************!*\
103134
  !*** ./src/blocks/columns/deprecated.js ***!
103135
  \******************************************/
103301
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
103302
 
103303
  /***/ }),
103304
+ /* 522 */
103305
  /*!******************************************!*\
103306
  !*** ./src/blocks/columns/variations.js ***!
103307
  \******************************************/
103311
 
103312
  "use strict";
103313
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__icons__ = __webpack_require__(/*! ./icons */ 177);
103314
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__wordpress_i18n__ = __webpack_require__(/*! @wordpress/i18n */ 523);
103315
  /**
103316
  * Internal dependencies
103317
  */
103410
  /* harmony default export */ __webpack_exports__["a"] = (variations);
103411
 
103412
  /***/ }),
103413
+ /* 523 */
103414
  /*!************************************************************!*\
103415
  !*** ./node_modules/@wordpress/i18n/build-module/index.js ***!
103416
  \************************************************************/
103425
  /* unused harmony export _n */
103426
  /* unused harmony export _nx */
103427
  /* unused harmony export sprintf */
103428
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectSpread__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectSpread */ 524);
103429
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_tannin__ = __webpack_require__(/*! tannin */ 526);
103430
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_memize__ = __webpack_require__(/*! memize */ 28);
103431
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_memize__);
103432
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_sprintf_js__ = __webpack_require__(/*! sprintf-js */ 531);
103433
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_sprintf_js___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_sprintf_js__);
103434
 
103435
 
103607
  //# sourceMappingURL=index.js.map
103608
 
103609
  /***/ }),
103610
+ /* 524 */
103611
  /*!*****************************************************************!*\
103612
  !*** ./node_modules/@babel/runtime/helpers/esm/objectSpread.js ***!
103613
  \*****************************************************************/
103617
 
103618
  "use strict";
103619
  /* harmony export (immutable) */ __webpack_exports__["a"] = _objectSpread;
103620
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__defineProperty__ = __webpack_require__(/*! ./defineProperty */ 525);
103621
 
103622
  function _objectSpread(target) {
103623
  for (var i = 1; i < arguments.length; i++) {
103639
  }
103640
 
103641
  /***/ }),
103642
+ /* 525 */
103643
  /*!*******************************************************************!*\
103644
  !*** ./node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
103645
  \*******************************************************************/
103665
  }
103666
 
103667
  /***/ }),
103668
+ /* 526 */
103669
  /*!**************************************!*\
103670
  !*** ./node_modules/tannin/index.js ***!
103671
  \**************************************/
103675
 
103676
  "use strict";
103677
  /* harmony export (immutable) */ __webpack_exports__["a"] = Tannin;
103678
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_plural_forms__ = __webpack_require__(/*! @tannin/plural-forms */ 527);
103679
 
103680
 
103681
  /**
103819
 
103820
 
103821
  /***/ }),
103822
+ /* 527 */
103823
  /*!****************************************************!*\
103824
  !*** ./node_modules/@tannin/plural-forms/index.js ***!
103825
  \****************************************************/
103829
 
103830
  "use strict";
103831
  /* harmony export (immutable) */ __webpack_exports__["a"] = pluralForms;
103832
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_compile__ = __webpack_require__(/*! @tannin/compile */ 528);
103833
 
103834
 
103835
  /**
103851
 
103852
 
103853
  /***/ }),
103854
+ /* 528 */
103855
  /*!***********************************************!*\
103856
  !*** ./node_modules/@tannin/compile/index.js ***!
103857
  \***********************************************/
103861
 
103862
  "use strict";
103863
  /* harmony export (immutable) */ __webpack_exports__["a"] = compile;
103864
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_postfix__ = __webpack_require__(/*! @tannin/postfix */ 529);
103865
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__tannin_evaluate__ = __webpack_require__(/*! @tannin/evaluate */ 530);
103866
 
103867
 
103868
 
103895
 
103896
 
103897
  /***/ }),
103898
+ /* 529 */
103899
  /*!***********************************************!*\
103900
  !*** ./node_modules/@tannin/postfix/index.js ***!
103901
  \***********************************************/
104032
 
104033
 
104034
  /***/ }),
104035
+ /* 530 */
104036
  /*!************************************************!*\
104037
  !*** ./node_modules/@tannin/evaluate/index.js ***!
104038
  \************************************************/
104155
 
104156
 
104157
  /***/ }),
104158
+ /* 531 */
104159
  /*!*****************************************************************************!*\
104160
  !*** ./node_modules/@wordpress/i18n/node_modules/sprintf-js/src/sprintf.js ***!
104161
  \*****************************************************************************/
104398
 
104399
 
104400
  /***/ }),
104401
+ /* 532 */
104402
  /*!***************************************!*\
104403
  !*** ./src/blocks/columns/style.scss ***!
104404
  \***************************************/
104408
  // removed by extract-text-webpack-plugin
104409
 
104410
  /***/ }),
104411
+ /* 533 */
104412
  /*!****************************************!*\
104413
  !*** ./src/blocks/columns/editor.scss ***!
104414
  \****************************************/
104418
  // removed by extract-text-webpack-plugin
104419
 
104420
  /***/ }),
104421
+ /* 534 */
104422
  /*!****************************************!*\
104423
  !*** ./src/blocks/cf7-styler/block.js ***!
104424
  \****************************************/
104427
 
104428
  "use strict";
104429
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
104430
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 535);
104431
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 537);
104432
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
104433
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 538);
104434
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
104435
  /**
104436
  * BLOCK: Contact Form 7 Styler
104481
  }
104482
 
104483
  /***/ }),
104484
+ /* 535 */
104485
  /*!***************************************!*\
104486
  !*** ./src/blocks/cf7-styler/edit.js ***!
104487
  \***************************************/
104495
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
104496
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
104497
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
104498
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! ./styling */ 536);
104499
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
104500
 
104501
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
105937
  })(UAGBCF7));
105938
 
105939
  /***/ }),
105940
+ /* 536 */
105941
  /*!******************************************!*\
105942
  !*** ./src/blocks/cf7-styler/styling.js ***!
105943
  \******************************************/
106350
  /* harmony default export */ __webpack_exports__["a"] = (styling);
106351
 
106352
  /***/ }),
106353
+ /* 537 */
106354
  /*!*******************************************!*\
106355
  !*** ./src/blocks/cf7-styler/editor.scss ***!
106356
  \*******************************************/
106360
  // removed by extract-text-webpack-plugin
106361
 
106362
  /***/ }),
106363
+ /* 538 */
106364
  /*!******************************************!*\
106365
  !*** ./src/blocks/cf7-styler/style.scss ***!
106366
  \******************************************/
106370
  // removed by extract-text-webpack-plugin
106371
 
106372
  /***/ }),
106373
+ /* 539 */
106374
  /*!***************************************!*\
106375
  !*** ./src/blocks/gf-styler/block.js ***!
106376
  \***************************************/
106379
 
106380
  "use strict";
106381
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
106382
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 540);
106383
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 542);
106384
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
106385
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 543);
106386
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
106387
  /**
106388
  * BLOCK: Gravity Form Styler
106433
  }
106434
 
106435
  /***/ }),
106436
+ /* 540 */
106437
  /*!**************************************!*\
106438
  !*** ./src/blocks/gf-styler/edit.js ***!
106439
  \**************************************/
106449
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
106450
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
106451
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_map__);
106452
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 541);
106453
  var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
106454
 
106455
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
107930
  })(UAGBGF));
107931
 
107932
  /***/ }),
107933
+ /* 541 */
107934
  /*!*****************************************!*\
107935
  !*** ./src/blocks/gf-styler/styling.js ***!
107936
  \*****************************************/
108568
  /* harmony default export */ __webpack_exports__["a"] = (styling);
108569
 
108570
  /***/ }),
108571
+ /* 542 */
108572
  /*!******************************************!*\
108573
  !*** ./src/blocks/gf-styler/editor.scss ***!
108574
  \******************************************/
108578
  // removed by extract-text-webpack-plugin
108579
 
108580
  /***/ }),
108581
+ /* 543 */
108582
  /*!*****************************************!*\
108583
  !*** ./src/blocks/gf-styler/style.scss ***!
108584
  \*****************************************/
108588
  // removed by extract-text-webpack-plugin
108589
 
108590
  /***/ }),
108591
+ /* 544 */
108592
  /*!****************************************!*\
108593
  !*** ./src/blocks/blockquote/block.js ***!
108594
  \****************************************/
108597
 
108598
  "use strict";
108599
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
108600
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 545);
108601
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated__ = __webpack_require__(/*! ./deprecated */ 547);
108602
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 549);
108603
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 178);
108604
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 550);
108605
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
108606
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 551);
108607
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
108608
  /**
108609
  * BLOCK: Quote
108654
  });
108655
 
108656
  /***/ }),
108657
+ /* 545 */
108658
  /*!***************************************!*\
108659
  !*** ./src/blocks/blockquote/edit.js ***!
108660
  \***************************************/
108669
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */ 109);
108670
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */ 110);
108671
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */ 111);
108672
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 546);
108673
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
108674
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_map__);
108675
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
110103
  /* harmony default export */ __webpack_exports__["a"] = (UAGBBlockQuote);
110104
 
110105
  /***/ }),
110106
+ /* 546 */
110107
  /*!******************************************!*\
110108
  !*** ./src/blocks/blockquote/styling.js ***!
110109
  \******************************************/
110426
  /* harmony default export */ __webpack_exports__["a"] = (styling);
110427
 
110428
  /***/ }),
110429
+ /* 547 */
110430
  /*!*********************************************!*\
110431
  !*** ./src/blocks/blockquote/deprecated.js ***!
110432
  \*********************************************/
110439
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames__ = __webpack_require__(/*! classnames */ 0);
110440
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_classnames__);
110441
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
110442
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_TweetButton__ = __webpack_require__(/*! ./components/TweetButton */ 548);
110443
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */ 108);
110444
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Description__ = __webpack_require__(/*! ./components/Description */ 109);
110445
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */ 110);
110581
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
110582
 
110583
  /***/ }),
110584
+ /* 548 */
110585
  /*!*********************************************************!*\
110586
  !*** ./src/blocks/blockquote/components/TweetButton.js ***!
110587
  \*********************************************************/
110655
  /* harmony default export */ __webpack_exports__["a"] = (TweetButton);
110656
 
110657
  /***/ }),
110658
+ /* 549 */
110659
  /*!***************************************!*\
110660
  !*** ./src/blocks/blockquote/save.js ***!
110661
  \***************************************/
110748
  }
110749
 
110750
  /***/ }),
110751
+ /* 550 */
110752
  /*!*******************************************!*\
110753
  !*** ./src/blocks/blockquote/editor.scss ***!
110754
  \*******************************************/
110758
  // removed by extract-text-webpack-plugin
110759
 
110760
  /***/ }),
110761
+ /* 551 */
110762
  /*!******************************************!*\
110763
  !*** ./src/blocks/blockquote/style.scss ***!
110764
  \******************************************/
110768
  // removed by extract-text-webpack-plugin
110769
 
110770
  /***/ }),
110771
+ /* 552 */
110772
  /*!**********************************************!*\
110773
  !*** ./src/blocks/marketing-button/block.js ***!
110774
  \**********************************************/
110778
  "use strict";
110779
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
110780
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 179);
110781
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 553);
110782
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 555);
110783
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 556);
110784
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 557);
110785
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
110786
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 558);
110787
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
110788
  /**
110789
  * BLOCK: Marketing Button
110816
  });
110817
 
110818
  /***/ }),
110819
+ /* 553 */
110820
  /*!*********************************************!*\
110821
  !*** ./src/blocks/marketing-button/edit.js ***!
110822
  \*********************************************/
110827
  "use strict";
110828
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
110829
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
110830
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 554);
110831
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
110832
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
110833
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
111841
  /* harmony default export */ __webpack_exports__["a"] = (UAGBMarketingButtonEdit);
111842
 
111843
  /***/ }),
111844
+ /* 554 */
111845
  /*!************************************************!*\
111846
  !*** ./src/blocks/marketing-button/styling.js ***!
111847
  \************************************************/
112059
  /* harmony default export */ __webpack_exports__["a"] = (styling);
112060
 
112061
  /***/ }),
112062
+ /* 555 */
112063
  /*!*********************************************!*\
112064
  !*** ./src/blocks/marketing-button/save.js ***!
112065
  \*********************************************/
112139
  }
112140
 
112141
  /***/ }),
112142
+ /* 556 */
112143
  /*!***************************************************!*\
112144
  !*** ./src/blocks/marketing-button/deprecated.js ***!
112145
  \***************************************************/
112225
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
112226
 
112227
  /***/ }),
112228
+ /* 557 */
112229
  /*!************************************************!*\
112230
  !*** ./src/blocks/marketing-button/style.scss ***!
112231
  \************************************************/
112235
  // removed by extract-text-webpack-plugin
112236
 
112237
  /***/ }),
112238
+ /* 558 */
112239
  /*!*************************************************!*\
112240
  !*** ./src/blocks/marketing-button/editor.scss ***!
112241
  \*************************************************/
112245
  // removed by extract-text-webpack-plugin
112246
 
112247
  /***/ }),
112248
+ /* 559 */
112249
  /*!***********************************************!*\
112250
  !*** ./src/blocks/table-of-contents/block.js ***!
112251
  \***********************************************/
112255
  "use strict";
112256
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
112257
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 180);
112258
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 560);
112259
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 562);
112260
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 563);
112261
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 566);
112262
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
112263
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 567);
112264
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
112265
  /**
112266
  * BLOCK: Table of Contents
112294
  });
112295
 
112296
  /***/ }),
112297
+ /* 560 */
112298
  /*!**********************************************!*\
112299
  !*** ./src/blocks/table-of-contents/edit.js ***!
112300
  \**********************************************/
112305
  "use strict";
112306
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
112307
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
112308
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 561);
112309
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
112310
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
112311
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__);
113803
  }))(UAGBTableOfContentsEdit));
113804
 
113805
  /***/ }),
113806
+ /* 561 */
113807
  /*!*************************************************!*\
113808
  !*** ./src/blocks/table-of-contents/styling.js ***!
113809
  \*************************************************/
114053
  /* harmony default export */ __webpack_exports__["a"] = (styling);
114054
 
114055
  /***/ }),
114056
+ /* 562 */
114057
  /*!**********************************************!*\
114058
  !*** ./src/blocks/table-of-contents/save.js ***!
114059
  \**********************************************/
114135
  }
114136
 
114137
  /***/ }),
114138
+ /* 563 */
114139
  /*!****************************************************!*\
114140
  !*** ./src/blocks/table-of-contents/deprecated.js ***!
114141
  \****************************************************/
114146
  "use strict";
114147
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
114148
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
114149
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__deprecated_components__ = __webpack_require__(/*! ./deprecated/components */ 564);
114150
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated_table_of_contents__ = __webpack_require__(/*! ./deprecated/table-of-contents */ 565);
114151
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */ 180);
114152
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
114153
  /**
114322
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
114323
 
114324
  /***/ }),
114325
+ /* 564 */
114326
  /*!***************************************************************!*\
114327
  !*** ./src/blocks/table-of-contents/deprecated/components.js ***!
114328
  \***************************************************************/
114561
  /* harmony default export */ __webpack_exports__["a"] = (TableOfContents);
114562
 
114563
  /***/ }),
114564
+ /* 565 */
114565
  /*!**********************************************************************!*\
114566
  !*** ./src/blocks/table-of-contents/deprecated/table-of-contents.js ***!
114567
  \**********************************************************************/
114694
  /* harmony default export */ __webpack_exports__["a"] = (TOC);
114695
 
114696
  /***/ }),
114697
+ /* 566 */
114698
  /*!*************************************************!*\
114699
  !*** ./src/blocks/table-of-contents/style.scss ***!
114700
  \*************************************************/
114704
  // removed by extract-text-webpack-plugin
114705
 
114706
  /***/ }),
114707
+ /* 567 */
114708
  /*!**************************************************!*\
114709
  !*** ./src/blocks/table-of-contents/editor.scss ***!
114710
  \**************************************************/
114714
  // removed by extract-text-webpack-plugin
114715
 
114716
  /***/ }),
114717
+ /* 568 */
114718
  /*!************************************!*\
114719
  !*** ./src/blocks/how-to/block.js ***!
114720
  \************************************/
114723
 
114724
  "use strict";
114725
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
114726
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 183);
114727
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 569);
114728
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 572);
114729
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 184);
114730
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
114731
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 573);
114732
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
114733
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 574);
114734
  /**
114735
  * BLOCK: How-To Schema
114736
  */
114742
 
114743
 
114744
 
114745
+
114746
  var __ = wp.i18n.__;
114747
  var registerBlockType = wp.blocks.registerBlockType;
114748
 
114758
  },
114759
  attributes: __WEBPACK_IMPORTED_MODULE_1__attributes__["a" /* default */],
114760
  edit: __WEBPACK_IMPORTED_MODULE_2__edit__["a" /* default */],
114761
+ save: __WEBPACK_IMPORTED_MODULE_3__save__["a" /* default */],
114762
+ deprecated: __WEBPACK_IMPORTED_MODULE_6__deprecated__["a" /* default */]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114763
  });
114764
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114765
  /***/ }),
114766
  /* 569 */
114767
  /*!***********************************!*\
114780
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 571);
114781
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
114782
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
114783
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 184);
114784
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
114785
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
114786
 
115058
  timeSpace = _props3$attributes.timeSpace,
115059
  costSpace = _props3$attributes.costSpace,
115060
  row_gap = _props3$attributes.row_gap,
115061
+ step_gap = _props3$attributes.step_gap,
115062
+ timeInMins = _props3$attributes.timeInMins,
115063
+ timeInHours = _props3$attributes.timeInHours,
115064
+ timeInDays = _props3$attributes.timeInDays,
115065
+ timeInMonths = _props3$attributes.timeInMonths,
115066
+ timeInYears = _props3$attributes.timeInYears;
115067
 
115068
 
115069
  if (mainimage && mainimage["sizes"]) {
115132
  image_icon_html = wp.element.createElement("img", { className: "uagb-howto__source-image", src: url, title: title });
115133
  }
115134
 
115135
+ var minsValue = timeInMins ? timeInMins : time;
115136
+
115137
  var getInfoBoxAsChild = [['uagb/info-box', {
115138
  infoBoxTitle: "Step 1",
115139
  iconimgPosition: "left",
115226
  },
115227
  help: __("Note: Time is recommended field for schema. It should be ON")
115228
  }),
115229
+ showTotaltime && wp.element.createElement(
115230
+ PanelBody,
115231
+ { title: __("Time"), initialOpen: true, className: "uagb-editor-howto-timepanel" },
115232
+ wp.element.createElement(
115233
+ Fragment,
115234
+ null,
115235
+ wp.element.createElement(RangeControl, {
115236
+ label: __("Years"),
115237
+ value: timeInYears,
115238
+ onChange: function onChange(value) {
115239
+ return setAttributes({ timeInYears: value });
115240
+ },
115241
+ min: 1,
115242
+ max: 10,
115243
+ allowReset: true
115244
+ }),
115245
+ wp.element.createElement(RangeControl, {
115246
+ label: __("Months"),
115247
+ value: timeInMonths,
115248
+ onChange: function onChange(value) {
115249
+ return setAttributes({ timeInMonths: value });
115250
+ },
115251
+ min: 1,
115252
+ max: 12,
115253
+ allowReset: true
115254
+ }),
115255
+ wp.element.createElement(RangeControl, {
115256
+ label: __("Days"),
115257
+ value: timeInDays,
115258
+ onChange: function onChange(value) {
115259
+ return setAttributes({ timeInDays: value });
115260
+ },
115261
+ min: 1,
115262
+ max: 31,
115263
+ allowReset: true
115264
+ }),
115265
+ wp.element.createElement(RangeControl, {
115266
+ label: __("Hours"),
115267
+ value: timeInHours,
115268
+ onChange: function onChange(value) {
115269
+ return setAttributes({ timeInHours: value });
115270
+ },
115271
+ min: 1,
115272
+ max: 24,
115273
+ allowReset: true
115274
+ }),
115275
+ wp.element.createElement(RangeControl, {
115276
+ label: __("Minutes"),
115277
+ value: minsValue,
115278
+ onChange: function onChange(value) {
115279
+ return setAttributes({ timeInMins: value });
115280
+ },
115281
+ min: 1,
115282
+ max: 60,
115283
+ allowReset: true
115284
+ })
115285
+ )
115286
+ ),
115287
+ wp.element.createElement("hr", { className: "uagb-editor__separator" }),
115288
  wp.element.createElement(ToggleControl, {
115289
  label: __("Show Estimated Cost"),
115290
  checked: showEstcost,
115554
  );
115555
  };
115556
 
115557
+ //Time Labels
115558
+ var yearlabel = timeInYears > 1 ? __("Years") : __("Year");
115559
+ var monthlabel = timeInMonths > 1 ? __(" Months ") : __(" Month ");
115560
+ var daylabel = timeInDays > 1 ? __(" Days ") : __(" Day ");
115561
+ var hourlabel = timeInHours > 1 ? __("Hours ") : __(" Hour ");
115562
+ var minslabel = minsValue > 1 ? __(" Minutes ") : __(" Minute ");
115563
+
115564
  return wp.element.createElement(
115565
  Fragment,
115566
  null,
115570
  mainimage: mainimage,
115571
  showTotaltime: showTotaltime,
115572
  timeNeeded: timeNeeded,
115573
+ minsValue: minsValue,
115574
+ timeInHours: timeInHours,
115575
+ timeInDays: timeInDays,
115576
+ timeInMonths: timeInMonths,
115577
+ timeInYears: timeInYears,
115578
  showEstcost: showEstcost,
115579
  estCost: estCost,
115580
  cost: cost,
115665
  return onReplace([]);
115666
  }
115667
  }),
115668
+ showTotaltime && wp.element.createElement(
115669
+ Fragment,
115670
+ null,
115671
+ timeInYears && wp.element.createElement(
115672
+ Fragment,
115673
+ null,
115674
+ wp.element.createElement(
115675
+ "p",
115676
+ { className: "uagb-howto-timeNeeded-value" },
115677
+ " ",
115678
+ timeInYears
115679
+ ),
115680
+ wp.element.createElement(
115681
+ "p",
115682
+ { className: "uagb-howto-timeINmin-text" },
115683
+ " ",
115684
+ yearlabel
115685
+ )
115686
+ ),
115687
+ timeInMonths && wp.element.createElement(
115688
+ Fragment,
115689
+ null,
115690
+ wp.element.createElement(
115691
+ "p",
115692
+ { className: "uagb-howto-timeNeeded-value" },
115693
+ timeInMonths
115694
+ ),
115695
+ wp.element.createElement(
115696
+ "p",
115697
+ { className: "uagb-howto-timeINmin-text" },
115698
+ monthlabel
115699
+ )
115700
+ ),
115701
+ timeInDays && wp.element.createElement(
115702
+ Fragment,
115703
+ null,
115704
+ wp.element.createElement(
115705
+ "p",
115706
+ { className: "uagb-howto-timeNeeded-value" },
115707
+ timeInDays
115708
+ ),
115709
+ wp.element.createElement(
115710
+ "p",
115711
+ { className: "uagb-howto-timeINmin-text" },
115712
+ daylabel
115713
+ )
115714
+ ),
115715
+ timeInHours && wp.element.createElement(
115716
+ Fragment,
115717
+ null,
115718
+ wp.element.createElement(
115719
+ "p",
115720
+ { className: "uagb-howto-timeNeeded-value" },
115721
+ timeInHours
115722
+ ),
115723
+ wp.element.createElement(
115724
+ "p",
115725
+ { className: "uagb-howto-timeINmin-text" },
115726
+ hourlabel
115727
+ )
115728
+ ),
115729
+ minsValue && wp.element.createElement(
115730
+ Fragment,
115731
+ null,
115732
+ wp.element.createElement(
115733
+ "p",
115734
+ { className: "uagb-howto-timeNeeded-value" },
115735
+ minsValue
115736
+ ),
115737
+ wp.element.createElement(
115738
+ "p",
115739
+ { className: "uagb-howto-timeINmin-text" },
115740
+ minslabel
115741
+ )
115742
+ )
115743
+ )
115744
  ),
115745
  wp.element.createElement(
115746
  "span",
115948
  "step": []
115949
  };
115950
 
115951
+ var y = ownProps.attributes.timeInYears ? ownProps.attributes.timeInYears : 0;
115952
+ var m = ownProps.attributes.timeInMonths ? ownProps.attributes.timeInMonths : 0;
115953
+ var d = ownProps.attributes.timeInDays ? ownProps.attributes.timeInDays : 0;
115954
+ var h = ownProps.attributes.timeInHours ? ownProps.attributes.timeInHours : 0;
115955
+
115956
+ var minutes = ownProps.attributes.timeInMins ? ownProps.attributes.timeInMins : ownProps.attributes.time;
115957
+
115958
  if (ownProps.attributes.showTotaltime) {
115959
+ json_data.totalTime = "P" + y + "Y" + m + "M" + d + "DT" + h + "H" + minutes + "M";
115960
  }
115961
 
115962
  if (ownProps.attributes.showEstcost) {
116061
  currencyType = _props.currencyType,
116062
  tools = _props.tools,
116063
  materials = _props.materials,
116064
+ clientId = _props.clientId,
116065
+ minsValue = _props.minsValue,
116066
+ timeInHours = _props.timeInHours,
116067
+ timeInDays = _props.timeInDays,
116068
+ timeInMonths = _props.timeInMonths,
116069
+ timeInYears = _props.timeInYears;
116070
 
116071
 
116072
  var emptyItems = [];
116090
  if (true === showTotaltime && ('undefined' === typeof timeNeeded || '' === timeNeeded)) {
116091
  emptyItems.push('Time Needed Label');
116092
  }
116093
+ if (true === showTotaltime && ('undefined' === typeof minsValue || '' === minsValue) && ('undefined' === typeof timeInHours || '' === timeInHours) && ('undefined' === typeof timeInDays || '' === timeInDays) && ('undefined' === typeof timeInMonths || '' === timeInMonths) && ('undefined' === typeof timeInYears || '' === timeInYears)) {
116094
  emptyItems.push('Time');
116095
  }
 
 
 
116096
  if (true === showEstcost && ('undefined' === typeof estCost || '' === estCost)) {
116097
  emptyItems.push('Total Cost Label');
116098
  }
116272
  ' .uagb-how-to-materials .uagb-how-to-materials-child__wrapper:last-child': {
116273
  "margin-bottom": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](row_gap, 'px')
116274
  },
116275
+ ' .uagb-howto-steps__wrap .wp-block-uagb-info-box': {
116276
+ 'margin-bottom': __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](s_gap, 'px')
116277
  },
116278
  " .block-editor-rich-text__editable.uagb-howto-timeNeeded-text": {
116279
  "font-family": priceFontFamily,
116282
  "line-height": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](priceLineHeight, priceLineHeightType),
116283
  "color": showTotaltimecolor
116284
  },
116285
+ " .uagb-howto-timeNeeded-value": {
116286
  "font-family": subHeadFontFamily,
116287
  "font-weight": subHeadFontWeight,
116288
  "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](subHeadFontSize, subHeadFontSizeType),
116290
  "color": subHeadingColor,
116291
  "margin-left": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](timeSpace, "px")
116292
  },
116293
+ " .uagb-howto-timeINmin-text ": {
116294
  "font-family": subHeadFontFamily,
116295
  "font-weight": subHeadFontWeight,
116296
  "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](subHeadFontSize, subHeadFontSizeType),
116523
  * BLOCK: How-To Schema - Save Block
116524
  */
116525
 
 
116526
 
116527
 
116528
  var _wp$blockEditor = wp.blockEditor,
116529
  RichText = _wp$blockEditor.RichText,
116530
  InnerBlocks = _wp$blockEditor.InnerBlocks;
116531
+ var Fragment = wp.element.Fragment;
116532
 
116533
 
116534
  function save(props) {
116554
  showTotaltime = attributes.showTotaltime,
116555
  showEstcost = attributes.showEstcost,
116556
  showTools = attributes.showTools,
116557
+ showMaterials = attributes.showMaterials,
116558
+ timeInMins = attributes.timeInMins,
116559
+ timeInHours = attributes.timeInHours,
116560
+ timeInDays = attributes.timeInDays,
116561
+ timeInMonths = attributes.timeInMonths,
116562
+ timeInYears = attributes.timeInYears;
116563
 
116564
 
116565
  var url_chk = '';
116588
  image_icon_html = wp.element.createElement('img', { className: 'uagb-howto__source-image', src: url, title: title });
116589
  }
116590
 
116591
+ //Time Labels
116592
+ var yearlabel = timeInYears > 1 ? " Years " : " Year ";
116593
+ var monthlabel = timeInMonths > 1 ? " Months " : " Month ";
116594
+ var daylabel = timeInDays > 1 ? " Days " : " Day ";
116595
+ var hourlabel = timeInHours > 1 ? "Hours " : " Hour ";
116596
+
116597
+ var minsValue = timeInMins ? timeInMins : time;
116598
+ var minslabel = minsValue > 1 ? " Minutes " : " Minute ";
116599
+
116600
  return wp.element.createElement(
116601
  'div',
116602
  {
116636
  tagName: 'h4',
116637
  className: 'uagb-howto-timeNeeded-text'
116638
  }),
116639
+ wp.element.createElement(
116640
+ Fragment,
116641
+ null,
116642
+ timeInYears && wp.element.createElement(
116643
+ Fragment,
116644
+ null,
116645
+ wp.element.createElement(
116646
+ 'p',
116647
+ { className: 'uagb-howto-timeNeeded-value' },
116648
+ ' ',
116649
+ timeInYears
116650
+ ),
116651
+ wp.element.createElement(
116652
+ 'p',
116653
+ { className: 'uagb-howto-timeINmin-text' },
116654
+ ' ',
116655
+ yearlabel
116656
+ )
116657
+ ),
116658
+ timeInMonths && wp.element.createElement(
116659
+ Fragment,
116660
+ null,
116661
+ wp.element.createElement(
116662
+ 'p',
116663
+ { className: 'uagb-howto-timeNeeded-value' },
116664
+ timeInMonths
116665
+ ),
116666
+ wp.element.createElement(
116667
+ 'p',
116668
+ { className: 'uagb-howto-timeINmin-text' },
116669
+ monthlabel
116670
+ )
116671
+ ),
116672
+ timeInDays && wp.element.createElement(
116673
+ Fragment,
116674
+ null,
116675
+ wp.element.createElement(
116676
+ 'p',
116677
+ { className: 'uagb-howto-timeNeeded-value' },
116678
+ timeInDays
116679
+ ),
116680
+ wp.element.createElement(
116681
+ 'p',
116682
+ { className: 'uagb-howto-timeINmin-text' },
116683
+ daylabel
116684
+ )
116685
+ ),
116686
+ timeInHours && wp.element.createElement(
116687
+ Fragment,
116688
+ null,
116689
+ wp.element.createElement(
116690
+ 'p',
116691
+ { className: 'uagb-howto-timeNeeded-value' },
116692
+ timeInHours
116693
+ ),
116694
+ wp.element.createElement(
116695
+ 'p',
116696
+ { className: 'uagb-howto-timeINmin-text' },
116697
+ hourlabel
116698
+ )
116699
+ ),
116700
+ minsValue && wp.element.createElement(
116701
+ Fragment,
116702
+ null,
116703
+ wp.element.createElement(
116704
+ 'p',
116705
+ { className: 'uagb-howto-timeNeeded-value' },
116706
+ minsValue
116707
+ ),
116708
+ wp.element.createElement(
116709
+ 'p',
116710
+ { className: 'uagb-howto-timeINmin-text' },
116711
+ minslabel
116712
+ )
116713
+ )
116714
+ )
116715
  ),
116716
  showEstcost && wp.element.createElement(
116717
  'span',
116824
 
116825
  /***/ }),
116826
  /* 574 */
116827
+ /*!*****************************************!*\
116828
+ !*** ./src/blocks/how-to/deprecated.js ***!
116829
+ \*****************************************/
116830
+ /*! exports provided: default */
116831
+ /*! exports used: default */
116832
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
116833
+
116834
+ "use strict";
116835
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
116836
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
116837
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 183);
116838
+ /**
116839
+ * BLOCK: How To Schema - Deprecated Block
116840
+ */
116841
+
116842
+ // Import block dependencies and components.
116843
+
116844
+
116845
+
116846
+ var RichText = wp.blockEditor.RichText;
116847
+
116848
+
116849
+ var deprecated = [{
116850
+ attributes: __WEBPACK_IMPORTED_MODULE_1__attributes__["a" /* default */],
116851
+ save: function save(props) {
116852
+ var attributes = props.attributes,
116853
+ className = props.className;
116854
+ var block_id = attributes.block_id,
116855
+ headingTitle = attributes.headingTitle,
116856
+ headingDesc = attributes.headingDesc,
116857
+ headingTag = attributes.headingTag,
116858
+ timeNeeded = attributes.timeNeeded,
116859
+ time = attributes.time,
116860
+ timeIn = attributes.timeIn,
116861
+ estCost = attributes.estCost,
116862
+ cost = attributes.cost,
116863
+ currencyType = attributes.currencyType,
116864
+ mainimage = attributes.mainimage,
116865
+ toolsTitle = attributes.toolsTitle,
116866
+ stepsTitle = attributes.stepsTitle,
116867
+ materialTitle = attributes.materialTitle,
116868
+ tools = attributes.tools,
116869
+ materials = attributes.materials,
116870
+ schema = attributes.schema,
116871
+ showTotaltime = attributes.showTotaltime,
116872
+ showEstcost = attributes.showEstcost,
116873
+ showTools = attributes.showTools,
116874
+ showMaterials = attributes.showMaterials;
116875
+
116876
+
116877
+ var url_chk = '';
116878
+ var title = '';
116879
+ if ("undefined" !== typeof attributes.mainimage && null !== attributes.mainimage && "" !== attributes.mainimage) {
116880
+ url_chk = attributes.mainimage.url;
116881
+ title = attributes.mainimage.title;
116882
+ }
116883
+
116884
+ var url = '';
116885
+ if ('' !== url_chk) {
116886
+ var size = attributes.mainimage.sizes;
116887
+ var imageSize = attributes.imgSize;
116888
+
116889
+ if ("undefined" !== typeof size && "undefined" !== typeof size[imageSize]) {
116890
+ url = size[imageSize].url;
116891
+ } else {
116892
+ url = url_chk;
116893
+ }
116894
+ }
116895
+
116896
+ var image_icon_html = '';
116897
+
116898
+ if (mainimage && mainimage.url) {
116899
+
116900
+ image_icon_html = wp.element.createElement("img", { className: "uagb-howto__source-image", src: url, title: title });
116901
+ }
116902
+
116903
+ return wp.element.createElement(
116904
+ "div",
116905
+ {
116906
+ className: __WEBPACK_IMPORTED_MODULE_0_classnames___default.a(className, "uagb-block-" + block_id)
116907
+ },
116908
+ wp.element.createElement(
116909
+ "script",
116910
+ { type: "application/ld+json" },
116911
+ schema
116912
+ ),
116913
+ wp.element.createElement(
116914
+ "div",
116915
+ { className: "uagb-how-to-main-wrap" },
116916
+ wp.element.createElement(
116917
+ "div",
116918
+ { className: "uagb-howto__wrap" },
116919
+ wp.element.createElement(RichText.Content, {
116920
+ value: headingTitle,
116921
+ tagName: headingTag,
116922
+ className: "uagb-howto-heading-text"
116923
+ }),
116924
+ wp.element.createElement(RichText.Content, {
116925
+ value: headingDesc,
116926
+ tagName: "p",
116927
+ className: "uagb-howto-desc-text"
116928
+ }),
116929
+ mainimage.url && wp.element.createElement(
116930
+ "div",
116931
+ { className: "uagb-howto__source-wrap" },
116932
+ image_icon_html
116933
+ ),
116934
+ showTotaltime && wp.element.createElement(
116935
+ "span",
116936
+ { className: "uagb-howto__time-wrap" },
116937
+ wp.element.createElement(RichText.Content, {
116938
+ value: timeNeeded,
116939
+ tagName: "h4",
116940
+ className: "uagb-howto-timeNeeded-text"
116941
+ }),
116942
+ wp.element.createElement(RichText.Content, {
116943
+ value: time,
116944
+ tagName: "p",
116945
+ className: "uagb-howto-timeNeeded-value"
116946
+ }),
116947
+ wp.element.createElement(RichText.Content, {
116948
+ tagName: "p",
116949
+ value: timeIn,
116950
+ className: "uagb-howto-timeINmin-text"
116951
+ })
116952
+ ),
116953
+ showEstcost && wp.element.createElement(
116954
+ "span",
116955
+ { className: "uagb-howto__cost-wrap" },
116956
+ wp.element.createElement(RichText.Content, {
116957
+ value: estCost,
116958
+ tagName: "h4",
116959
+ className: "uagb-howto-estcost-text"
116960
+ }),
116961
+ wp.element.createElement(RichText.Content, {
116962
+ value: cost,
116963
+ tagName: "p",
116964
+ className: "uagb-howto-estcost-value"
116965
+ }),
116966
+ wp.element.createElement(RichText.Content, {
116967
+ tagName: "p",
116968
+ value: currencyType,
116969
+ className: "uagb-howto-estcost-type"
116970
+ })
116971
+ )
116972
+ ),
116973
+ showTools && wp.element.createElement(
116974
+ "div",
116975
+ { className: "uagb-how-to-tools__wrap" },
116976
+ wp.element.createElement(RichText.Content, {
116977
+ value: toolsTitle,
116978
+ tagName: "h4",
116979
+ className: "uagb-howto-req-tools-text"
116980
+ })
116981
+ ),
116982
+ showTools && wp.element.createElement(
116983
+ "div",
116984
+ { className: "uagb-tools__wrap" },
116985
+ tools.map(function (tools, index) {
116986
+ return wp.element.createElement(
116987
+ "div",
116988
+ {
116989
+ className: __WEBPACK_IMPORTED_MODULE_0_classnames___default.a("uagb-how-to-tools-" + index, "uagb-how-to-tools-child__wrapper"),
116990
+ key: index
116991
+ },
116992
+ wp.element.createElement(
116993
+ "div",
116994
+ { className: "uagb-tools" },
116995
+ wp.element.createElement(RichText.Content, {
116996
+ tagName: "div",
116997
+ value: tools.add_required_tools,
116998
+ className: "uagb-tools__label"
116999
+ })
117000
+ )
117001
+ );
117002
+ })
117003
+ ),
117004
+ showMaterials && wp.element.createElement(
117005
+ "div",
117006
+ { className: "uagb-how-to-materials__wrap" },
117007
+ wp.element.createElement(RichText.Content, {
117008
+ value: materialTitle,
117009
+ tagName: "h4",
117010
+ className: "uagb-howto-req-materials-text"
117011
+ })
117012
+ ),
117013
+ showMaterials && wp.element.createElement(
117014
+ "div",
117015
+ { className: "uagb-how-to-materials" },
117016
+ materials.map(function (materials, index) {
117017
+ return wp.element.createElement(
117018
+ "div",
117019
+ {
117020
+ className: __WEBPACK_IMPORTED_MODULE_0_classnames___default.a("uagb-how-to-materials-" + index, "uagb-how-to-materials-child__wrapper")
117021
+ },
117022
+ wp.element.createElement(
117023
+ "div",
117024
+ { className: "uagb-materials" },
117025
+ wp.element.createElement(RichText.Content, {
117026
+ tagName: "div",
117027
+ value: materials.add_required_materials,
117028
+ className: "uagb-materials__label"
117029
+ })
117030
+ )
117031
+ );
117032
+ })
117033
+ ),
117034
+ wp.element.createElement(
117035
+ "div",
117036
+ { className: "uagb-how-to-steps__wrap" },
117037
+ wp.element.createElement(RichText.Content, {
117038
+ value: stepsTitle,
117039
+ tagName: "h4",
117040
+ className: "uagb-howto-req-steps-text"
117041
+ }),
117042
+ wp.element.createElement(
117043
+ "div",
117044
+ { className: "uagb-howto-steps__wrap" },
117045
+ wp.element.createElement(InnerBlocks.Content, null)
117046
+ )
117047
+ )
117048
+ )
117049
+ );
117050
+ }
117051
+ }];
117052
+
117053
+ /* harmony default export */ __webpack_exports__["a"] = (deprecated);
117054
+
117055
+ /***/ }),
117056
+ /* 575 */
117057
  /*!*********************************!*\
117058
  !*** ./src/blocks/faq/block.js ***!
117059
  \*********************************/
117062
 
117063
  "use strict";
117064
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
117065
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 576);
117066
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 577);
117067
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 579);
117068
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 580);
117069
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
117070
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 581);
117071
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
117072
  function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
117073
 
117138
  addFilter('editor.BlockEdit', 'uagb/faq', withFaq);
117139
 
117140
  /***/ }),
117141
+ /* 576 */
117142
  /*!**************************************!*\
117143
  !*** ./src/blocks/faq/attributes.js ***!
117144
  \**************************************/
117429
  type: "number",
117430
  default: 2
117431
  },
117432
+ tcolumns: {
117433
+ type: "number",
117434
+ default: 2
117435
+ },
117436
+ mcolumns: {
117437
+ type: "number",
117438
+ default: 1
117439
+ },
117440
  schema: {
117441
  type: "string",
117442
  default: ""
117482
  /* harmony default export */ __webpack_exports__["a"] = (attributes);
117483
 
117484
  /***/ }),
117485
+ /* 577 */
117486
  /*!********************************!*\
117487
  !*** ./src/blocks/faq/edit.js ***!
117488
  \********************************/
117500
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__);
117501
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
117502
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_times__);
117503
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 578);
117504
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_memize__ = __webpack_require__(/*! memize */ 28);
117505
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_memize__);
117506
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
117773
  iconSizeTablet = attributes.iconSizeTablet,
117774
  iconSize = attributes.iconSize,
117775
  columns = attributes.columns,
117776
+ tcolumns = attributes.tcolumns,
117777
+ mcolumns = attributes.mcolumns,
117778
  enableToggle = attributes.enableToggle,
117779
  equalHeight = attributes.equalHeight,
117780
  questionLeftPaddingTablet = attributes.questionLeftPaddingTablet,
117875
  }
117876
  }),
117877
  wp.element.createElement("hr", { className: "uagb-editor__separator" }),
117878
+ 'grid' === layout && wp.element.createElement(
117879
+ TabPanel,
117880
+ { className: "uagb-size-type-field-tabs uagb-without-size-type", activeClass: "active-tab",
117881
+ tabs: [{
117882
+ name: "desktop",
117883
+ title: wp.element.createElement(Dashicon, { icon: "desktop" }),
117884
+ className: "uagb-desktop-tab uagb-responsive-tabs"
117885
+ }, {
117886
+ name: "tablet",
117887
+ title: wp.element.createElement(Dashicon, { icon: "tablet" }),
117888
+ className: "uagb-tablet-tab uagb-responsive-tabs"
117889
+ }, {
117890
+ name: "mobile",
117891
+ title: wp.element.createElement(Dashicon, { icon: "smartphone" }),
117892
+ className: "uagb-mobile-tab uagb-responsive-tabs"
117893
+ }] },
117894
+ function (tab) {
117895
+ var tabout = void 0;
117896
+
117897
+ if ("mobile" === tab.name) {
117898
+ tabout = wp.element.createElement(RangeControl, {
117899
+ label: __("Mobile Columns"),
117900
+ value: mcolumns,
117901
+ onChange: function onChange(value) {
117902
+ return setAttributes({ mcolumns: value });
117903
+ },
117904
+ min: 1,
117905
+ max: 2
117906
+ });
117907
+ } else if ("tablet" === tab.name) {
117908
+ tabout = wp.element.createElement(RangeControl, {
117909
+ label: __("Tab Columns"),
117910
+ value: tcolumns,
117911
+ onChange: function onChange(value) {
117912
+ return setAttributes({ tcolumns: value });
117913
+ },
117914
+ min: 1,
117915
+ max: 4
117916
+ });
117917
+ } else {
117918
+ tabout = wp.element.createElement(RangeControl, {
117919
+ label: __("Desktop Columns"),
117920
+ value: columns,
117921
+ onChange: function onChange(value) {
117922
+ return setAttributes({ columns: value });
117923
+ },
117924
+ min: 1,
117925
+ max: 6
117926
+ });
117927
+ }
117928
+
117929
+ return wp.element.createElement(
117930
+ "div",
117931
+ null,
117932
+ tabout
117933
+ );
117934
+ }
117935
+ ),
117936
  'grid' === layout && wp.element.createElement(
117937
  Fragment,
117938
  null,
118924
  }(Component);
118925
 
118926
  /* harmony default export */ __webpack_exports__["a"] = (compose(withSelect(function (select, ownProps) {
118927
+ var page_url = select("core/editor").getPermalink();
118928
  var faq_data = {};
118929
  var json_data = {
118930
  "@context": "https://schema.org",
118931
  "@type": "FAQPage",
118932
+ "@id": page_url,
118933
  "mainEntity": []
118934
  };
118935
  var faqChildBlocks = select('core/block-editor').getBlocks(ownProps.clientId);
118953
  }))(UAGBFaqEdit));
118954
 
118955
  /***/ }),
118956
+ /* 578 */
118957
  /*!***********************************!*\
118958
  !*** ./src/blocks/faq/styling.js ***!
118959
  \***********************************/
119031
  iconSizeMobile = _props$attributes.iconSizeMobile,
119032
  iconSizeTablet = _props$attributes.iconSizeTablet,
119033
  columns = _props$attributes.columns,
119034
+ tcolumns = _props$attributes.tcolumns,
119035
+ mcolumns = _props$attributes.mcolumns,
119036
  questionLeftPaddingTablet = _props$attributes.questionLeftPaddingTablet,
119037
  questionBottomPaddingTablet = _props$attributes.questionBottomPaddingTablet,
119038
  questionLeftPaddingDesktop = _props$attributes.questionLeftPaddingDesktop,
119240
  selectors[".uagb-faq-layout-grid .block-editor-inner-blocks > .block-editor-block-list__layout "] = {
119241
  "grid-template-columns": 'repeat(' + columns + ', 1fr)'
119242
  };
119243
+ tablet_selectors[".uagb-faq-layout-grid .block-editor-inner-blocks > .block-editor-block-list__layout "] = {
119244
+ "grid-template-columns": 'repeat(' + tcolumns + ', 1fr)'
119245
+ };
119246
+ mobile_selectors[".uagb-faq-layout-grid .block-editor-inner-blocks > .block-editor-block-list__layout "] = {
119247
+ "grid-template-columns": 'repeat(' + mcolumns + ', 1fr)'
119248
+ };
119249
  }
119250
 
119251
  var styling_css = '';
119263
  /* harmony default export */ __webpack_exports__["a"] = (styling);
119264
 
119265
  /***/ }),
119266
+ /* 579 */
119267
  /*!********************************!*\
119268
  !*** ./src/blocks/faq/save.js ***!
119269
  \********************************/
119324
  }
119325
 
119326
  /***/ }),
119327
+ /* 580 */
119328
  /*!***********************************!*\
119329
  !*** ./src/blocks/faq/style.scss ***!
119330
  \***********************************/
119334
  // removed by extract-text-webpack-plugin
119335
 
119336
  /***/ }),
119337
+ /* 581 */
119338
  /*!************************************!*\
119339
  !*** ./src/blocks/faq/editor.scss ***!
119340
  \************************************/
119344
  // removed by extract-text-webpack-plugin
119345
 
119346
  /***/ }),
119347
+ /* 582 */
119348
  /*!***************************************!*\
119349
  !*** ./src/blocks/faq-child/block.js ***!
119350
  \***************************************/
119353
 
119354
  "use strict";
119355
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
119356
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 185);
119357
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 583);
119358
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 584);
119359
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 585);
119360
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
119361
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 586);
119362
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
119363
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 587);
119364
  /**
119365
  * BLOCK: FAQ - Schema - Child
119366
  */
119393
  });
119394
 
119395
  /***/ }),
119396
+ /* 583 */
119397
  /*!**************************************!*\
119398
  !*** ./src/blocks/faq-child/edit.js ***!
119399
  \**************************************/
119574
  /* harmony default export */ __webpack_exports__["a"] = (UAGBFaqChildEdit);
119575
 
119576
  /***/ }),
119577
+ /* 584 */
119578
  /*!**************************************!*\
119579
  !*** ./src/blocks/faq-child/save.js ***!
119580
  \**************************************/
119669
  }
119670
 
119671
  /***/ }),
119672
+ /* 585 */
119673
  /*!*****************************************!*\
119674
  !*** ./src/blocks/faq-child/style.scss ***!
119675
  \*****************************************/
119679
  // removed by extract-text-webpack-plugin
119680
 
119681
  /***/ }),
119682
+ /* 586 */
119683
  /*!******************************************!*\
119684
  !*** ./src/blocks/faq-child/editor.scss ***!
119685
  \******************************************/
119689
  // removed by extract-text-webpack-plugin
119690
 
119691
  /***/ }),
119692
+ /* 587 */
119693
  /*!********************************************!*\
119694
  !*** ./src/blocks/faq-child/deprecated.js ***!
119695
  \********************************************/
119701
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
119702
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
119703
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
119704
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 185);
119705
  /**
119706
  * BLOCK: FAQ-Child - Deprecated Block
119707
  */
119789
  /* harmony default export */ __webpack_exports__["a"] = (deprecated);
119790
 
119791
  /***/ }),
119792
+ /* 588 */
119793
  /*!*******************************************!*\
119794
  !*** ./src/blocks/inline-notice/block.js ***!
119795
  \*******************************************/
119798
 
119799
  "use strict";
119800
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
119801
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 589);
119802
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 590);
119803
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 592);
119804
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 593);
119805
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
119806
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 594);
119807
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
119808
  /**
119809
  * BLOCK: Inline Notice Block.
119834
  });
119835
 
119836
  /***/ }),
119837
+ /* 589 */
119838
  /*!************************************************!*\
119839
  !*** ./src/blocks/inline-notice/attributes.js ***!
119840
  \************************************************/
119856
  default: null
119857
  },
119858
  noticeTitle: {
119859
+ type: "string",
119860
  source: "html",
119861
+ selector: ".uagb-notice-title",
119862
  default: "Notice Title"
119863
  },
119864
  headingTag: {
120009
  /* harmony default export */ __webpack_exports__["a"] = (attributes);
120010
 
120011
  /***/ }),
120012
+ /* 590 */
120013
  /*!******************************************!*\
120014
  !*** ./src/blocks/inline-notice/edit.js ***!
120015
  \******************************************/
120020
  "use strict";
120021
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
120022
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
120023
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 591);
120024
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
120025
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
120026
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__);
120529
  /* harmony default export */ __webpack_exports__["a"] = (UAGBInlineNoticeEdit);
120530
 
120531
  /***/ }),
120532
+ /* 591 */
120533
  /*!*********************************************!*\
120534
  !*** ./src/blocks/inline-notice/styling.js ***!
120535
  \*********************************************/
120677
  /* harmony default export */ __webpack_exports__["a"] = (styling);
120678
 
120679
  /***/ }),
120680
+ /* 592 */
120681
  /*!******************************************!*\
120682
  !*** ./src/blocks/inline-notice/save.js ***!
120683
  \******************************************/
120749
  }
120750
 
120751
  /***/ }),
120752
+ /* 593 */
120753
  /*!*********************************************!*\
120754
  !*** ./src/blocks/inline-notice/style.scss ***!
120755
  \*********************************************/
120759
  // removed by extract-text-webpack-plugin
120760
 
120761
  /***/ }),
120762
+ /* 594 */
120763
  /*!**********************************************!*\
120764
  !*** ./src/blocks/inline-notice/editor.scss ***!
120765
  \**********************************************/
120769
  // removed by extract-text-webpack-plugin
120770
 
120771
  /***/ }),
120772
+ /* 595 */
120773
  /*!***************************************!*\
120774
  !*** ./src/blocks/wp-search/block.js ***!
120775
  \***************************************/
120777
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
120778
 
120779
  "use strict";
120780
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__style_scss__ = __webpack_require__(/*! ./style.scss */ 596);
120781
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__style_scss__);
120782
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 597);
120783
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__editor_scss__);
120784
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 598);
120785
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 599);
120786
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 601);
120787
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
120788
  /**
120789
  * BLOCK: WP-Search
120815
  });
120816
 
120817
  /***/ }),
120818
+ /* 596 */
120819
  /*!*****************************************!*\
120820
  !*** ./src/blocks/wp-search/style.scss ***!
120821
  \*****************************************/
120825
  // removed by extract-text-webpack-plugin
120826
 
120827
  /***/ }),
120828
+ /* 597 */
120829
  /*!******************************************!*\
120830
  !*** ./src/blocks/wp-search/editor.scss ***!
120831
  \******************************************/
120835
  // removed by extract-text-webpack-plugin
120836
 
120837
  /***/ }),
120838
+ /* 598 */
120839
  /*!**************************************!*\
120840
  !*** ./src/blocks/wp-search/save.js ***!
120841
  \**************************************/
120933
  }
120934
 
120935
  /***/ }),
120936
+ /* 599 */
120937
  /*!**************************************!*\
120938
  !*** ./src/blocks/wp-search/edit.js ***!
120939
  \**************************************/
120942
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
120943
 
120944
  "use strict";
120945
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__styling__ = __webpack_require__(/*! ./styling */ 600);
120946
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 6);
120947
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
120948
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_classnames__ = __webpack_require__(/*! classnames */ 0);
120949
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_classnames__);
120950
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 50);
120951
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
120952
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
120953
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
121826
  /* harmony default export */ __webpack_exports__["a"] = (UAGBWpSearchEdit);
121827
 
121828
  /***/ }),
121829
+ /* 600 */
121830
  /*!*****************************************!*\
121831
  !*** ./src/blocks/wp-search/styling.js ***!
121832
  \*****************************************/
122077
  /* harmony default export */ __webpack_exports__["a"] = (styling);
122078
 
122079
  /***/ }),
122080
+ /* 601 */
122081
  /*!********************************************!*\
122082
  !*** ./src/blocks/wp-search/attributes.js ***!
122083
  \********************************************/
122308
 
122309
  /* harmony default export */ __webpack_exports__["a"] = (attributes);
122310
 
122311
+ /***/ }),
122312
+ /* 602 */
122313
+ /*!*******************************************!*\
122314
+ !*** ./src/blocks/taxonomy-list/block.js ***!
122315
+ \*******************************************/
122316
+ /*! exports provided: */
122317
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
122318
+
122319
+ "use strict";
122320
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
122321
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! ./style.scss */ 603);
122322
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
122323
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 604);
122324
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
122325
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 605);
122326
+ /**
122327
+ * BLOCK: UAGB - Taxonomy List
122328
+ */
122329
+
122330
+ // Import block dependencies and components
122331
+
122332
+
122333
+ // Import CSS.
122334
+
122335
+
122336
+
122337
+
122338
+ // Components
122339
+ var __ = wp.i18n.__;
122340
+
122341
+ // Register block controls
122342
+
122343
+ var registerBlockType = wp.blocks.registerBlockType;
122344
+
122345
+ // Register the block
122346
+
122347
+ registerBlockType("uagb/taxonomy-list", {
122348
+ title: uagb_blocks_info.blocks["uagb/taxonomy-list"]["title"],
122349
+ description: uagb_blocks_info.blocks["uagb/taxonomy-list"]["description"],
122350
+ icon: __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__["a" /* default */].taxonomy_list,
122351
+ category: uagb_blocks_info.category,
122352
+ keywords: [__("post"), __("taxonomy"), __("uag")],
122353
+ example: {},
122354
+ edit: __WEBPACK_IMPORTED_MODULE_3__edit__["a" /* default */],
122355
+ // Render via PHP
122356
+ save: function save() {
122357
+ return null;
122358
+ }
122359
+ });
122360
+
122361
+ /***/ }),
122362
+ /* 603 */
122363
+ /*!*********************************************!*\
122364
+ !*** ./src/blocks/taxonomy-list/style.scss ***!
122365
+ \*********************************************/
122366
+ /*! no static exports found */
122367
+ /***/ (function(module, exports) {
122368
+
122369
+ // removed by extract-text-webpack-plugin
122370
+
122371
+ /***/ }),
122372
+ /* 604 */
122373
+ /*!**********************************************!*\
122374
+ !*** ./src/blocks/taxonomy-list/editor.scss ***!
122375
+ \**********************************************/
122376
+ /*! no static exports found */
122377
+ /***/ (function(module, exports) {
122378
+
122379
+ // removed by extract-text-webpack-plugin
122380
+
122381
+ /***/ }),
122382
+ /* 605 */
122383
+ /*!******************************************!*\
122384
+ !*** ./src/blocks/taxonomy-list/edit.js ***!
122385
+ \******************************************/
122386
+ /*! exports provided: default */
122387
+ /*! exports used: default */
122388
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
122389
+
122390
+ "use strict";
122391
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
122392
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
122393
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 606);
122394
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 50);
122395
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
122396
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
122397
+ var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
122398
+
122399
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
122400
+
122401
+ function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
122402
+
122403
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
122404
+
122405
+ /**
122406
+ * External dependencies
122407
+ */
122408
+
122409
+
122410
+
122411
+
122412
+
122413
+
122414
+ var __ = wp.i18n.__;
122415
+ var _wp$components = wp.components,
122416
+ PanelBody = _wp$components.PanelBody,
122417
+ RangeControl = _wp$components.RangeControl,
122418
+ SelectControl = _wp$components.SelectControl,
122419
+ TabPanel = _wp$components.TabPanel,
122420
+ Dashicon = _wp$components.Dashicon,
122421
+ TextControl = _wp$components.TextControl,
122422
+ Button = _wp$components.Button,
122423
+ ButtonGroup = _wp$components.ButtonGroup,
122424
+ ToggleControl = _wp$components.ToggleControl;
122425
+ var _wp$blockEditor = wp.blockEditor,
122426
+ InspectorControls = _wp$blockEditor.InspectorControls,
122427
+ ColorPalette = _wp$blockEditor.ColorPalette;
122428
+ var _wp$element = wp.element,
122429
+ Component = _wp$element.Component,
122430
+ Fragment = _wp$element.Fragment;
122431
+ var withSelect = wp.data.withSelect;
122432
+
122433
+ var UAGBTaxonomyList = function (_Component) {
122434
+ _inherits(UAGBTaxonomyList, _Component);
122435
+
122436
+ function UAGBTaxonomyList() {
122437
+ _classCallCheck(this, UAGBTaxonomyList);
122438
+
122439
+ var _this = _possibleConstructorReturn(this, (UAGBTaxonomyList.__proto__ || Object.getPrototypeOf(UAGBTaxonomyList)).apply(this, arguments));
122440
+
122441
+ _this.onSelectPostType = _this.onSelectPostType.bind(_this);
122442
+ _this.onSelectTaxonomyType = _this.onSelectTaxonomyType.bind(_this);
122443
+ return _this;
122444
+ }
122445
+
122446
+ _createClass(UAGBTaxonomyList, [{
122447
+ key: "onSelectPostType",
122448
+ value: function onSelectPostType(value) {
122449
+ var setAttributes = this.props.setAttributes;
122450
+
122451
+
122452
+ setAttributes({ postType: value });
122453
+ setAttributes({ categories: "" });
122454
+ setAttributes({ taxonomyType: "" });
122455
+ }
122456
+ }, {
122457
+ key: "onSelectTaxonomyType",
122458
+ value: function onSelectTaxonomyType(value) {
122459
+ var setAttributes = this.props.setAttributes;
122460
+
122461
+
122462
+ setAttributes({ taxonomyType: value });
122463
+ setAttributes({ categories: "" });
122464
+ }
122465
+ }, {
122466
+ key: "componentDidMount",
122467
+ value: function componentDidMount() {
122468
+
122469
+ // Assigning block_id in the attribute.
122470
+ this.props.setAttributes({ block_id: this.props.clientId.substr(0, 8) });
122471
+ // Pushing Style tag for this block css.
122472
+ var $style = document.createElement("style");
122473
+ $style.setAttribute("id", "uagb-style-taxonomy-list-" + this.props.clientId.substr(0, 8));
122474
+ document.head.appendChild($style);
122475
+ }
122476
+ }, {
122477
+ key: "componentDidUpdate",
122478
+ value: function componentDidUpdate(prevProps, prevState) {
122479
+
122480
+ var element = document.getElementById("uagb-style-taxonomy-list-" + this.props.clientId.substr(0, 8));
122481
+
122482
+ if (null != element && "undefined" != typeof element) {
122483
+ element.innerHTML = __WEBPACK_IMPORTED_MODULE_1__styling__["a" /* default */](this.props);
122484
+ }
122485
+ }
122486
+ }, {
122487
+ key: "render",
122488
+ value: function render() {
122489
+ var _this2 = this;
122490
+
122491
+ // Caching all Props.
122492
+ var _props = this.props,
122493
+ className = _props.className,
122494
+ attributes = _props.attributes,
122495
+ setAttributes = _props.setAttributes,
122496
+ taxonomyList = _props.taxonomyList,
122497
+ categoriesList = _props.categoriesList,
122498
+ termsList = _props.termsList;
122499
+
122500
+ // Caching all attributes.
122501
+
122502
+ var block_id = attributes.block_id,
122503
+ postType = attributes.postType,
122504
+ taxonomyType = attributes.taxonomyType,
122505
+ layout = attributes.layout,
122506
+ columns = attributes.columns,
122507
+ tcolumns = attributes.tcolumns,
122508
+ mcolumns = attributes.mcolumns,
122509
+ bgColor = attributes.bgColor,
122510
+ titleColor = attributes.titleColor,
122511
+ countColor = attributes.countColor,
122512
+ rowGap = attributes.rowGap,
122513
+ columnGap = attributes.columnGap,
122514
+ contentPadding = attributes.contentPadding,
122515
+ contentPaddingMobile = attributes.contentPaddingMobile,
122516
+ contentPaddingTablet = attributes.contentPaddingTablet,
122517
+ titleBottomSpace = attributes.titleBottomSpace,
122518
+ alignment = attributes.alignment,
122519
+ listStyle = attributes.listStyle,
122520
+ seperatorStyle = attributes.seperatorStyle,
122521
+ seperatorWidth = attributes.seperatorWidth,
122522
+ seperatorThickness = attributes.seperatorThickness,
122523
+ seperatorColor = attributes.seperatorColor,
122524
+ listTextColor = attributes.listTextColor,
122525
+ hoverlistTextColor = attributes.hoverlistTextColor,
122526
+ listBottomMargin = attributes.listBottomMargin,
122527
+ listStyleColor = attributes.listStyleColor,
122528
+ hoverlistStyleColor = attributes.hoverlistStyleColor,
122529
+ noTaxDisplaytext = attributes.noTaxDisplaytext,
122530
+ boxShadowColor = attributes.boxShadowColor,
122531
+ boxShadowHOffset = attributes.boxShadowHOffset,
122532
+ boxShadowVOffset = attributes.boxShadowVOffset,
122533
+ boxShadowBlur = attributes.boxShadowBlur,
122534
+ boxShadowSpread = attributes.boxShadowSpread,
122535
+ boxShadowPosition = attributes.boxShadowPosition,
122536
+ showCount = attributes.showCount,
122537
+ titleFontSize = attributes.titleFontSize,
122538
+ titleFontSizeType = attributes.titleFontSizeType,
122539
+ titleFontSizeMobile = attributes.titleFontSizeMobile,
122540
+ titleFontSizeTablet = attributes.titleFontSizeTablet,
122541
+ titleFontFamily = attributes.titleFontFamily,
122542
+ titleFontWeight = attributes.titleFontWeight,
122543
+ titleFontSubset = attributes.titleFontSubset,
122544
+ titleLineHeightType = attributes.titleLineHeightType,
122545
+ titleLineHeight = attributes.titleLineHeight,
122546
+ titleLineHeightTablet = attributes.titleLineHeightTablet,
122547
+ titleLineHeightMobile = attributes.titleLineHeightMobile,
122548
+ titleLoadGoogleFonts = attributes.titleLoadGoogleFonts,
122549
+ countFontSize = attributes.countFontSize,
122550
+ countFontSizeType = attributes.countFontSizeType,
122551
+ countFontSizeMobile = attributes.countFontSizeMobile,
122552
+ countFontSizeTablet = attributes.countFontSizeTablet,
122553
+ countFontFamily = attributes.countFontFamily,
122554
+ countFontWeight = attributes.countFontWeight,
122555
+ countFontSubset = attributes.countFontSubset,
122556
+ countLineHeightType = attributes.countLineHeightType,
122557
+ countLineHeight = attributes.countLineHeight,
122558
+ countLineHeightTablet = attributes.countLineHeightTablet,
122559
+ countLineHeightMobile = attributes.countLineHeightMobile,
122560
+ countLoadGoogleFonts = attributes.countLoadGoogleFonts,
122561
+ listFontSize = attributes.listFontSize,
122562
+ listFontSizeType = attributes.listFontSizeType,
122563
+ listFontSizeMobile = attributes.listFontSizeMobile,
122564
+ listFontSizeTablet = attributes.listFontSizeTablet,
122565
+ listFontFamily = attributes.listFontFamily,
122566
+ listFontWeight = attributes.listFontWeight,
122567
+ listFontSubset = attributes.listFontSubset,
122568
+ listLineHeightType = attributes.listLineHeightType,
122569
+ listLineHeight = attributes.listLineHeight,
122570
+ listLineHeightTablet = attributes.listLineHeightTablet,
122571
+ listLineHeightMobile = attributes.listLineHeightMobile,
122572
+ listLoadGoogleFonts = attributes.listLoadGoogleFonts,
122573
+ showEmptyTaxonomy = attributes.showEmptyTaxonomy,
122574
+ borderStyle = attributes.borderStyle,
122575
+ borderThickness = attributes.borderThickness,
122576
+ borderColor = attributes.borderColor,
122577
+ borderRadius = attributes.borderRadius,
122578
+ listDisplayStyle = attributes.listDisplayStyle,
122579
+ showhierarchy = attributes.showhierarchy;
122580
+
122581
+
122582
+ var taxonomy_list_setting = showEmptyTaxonomy ? taxonomyList : termsList;
122583
+
122584
+ if ("" != taxonomy_list_setting && undefined != taxonomy_list_setting) {
122585
+ var taxonomyListOptions = [{ value: "", label: __("Select Taxonomy") }];
122586
+ Object.keys(taxonomy_list_setting).map(function (item, thisIndex) {
122587
+ return taxonomyListOptions.push({ value: taxonomyList[item]["name"], label: taxonomyList[item]["label"] });
122588
+ });
122589
+ }
122590
+
122591
+ var loadTitleGoogleFonts = void 0;
122592
+ var loadCountGoogleFonts = void 0;
122593
+ var loadListGoogleFonts = void 0;
122594
+
122595
+ if (titleLoadGoogleFonts == true) {
122596
+
122597
+ var titleconfig = {
122598
+ google: {
122599
+ families: [titleFontFamily + (titleFontWeight ? ":" + titleFontWeight : "")]
122600
+ }
122601
+ };
122602
+
122603
+ loadTitleGoogleFonts = wp.element.createElement(__WEBPACK_IMPORTED_MODULE_4__components_typography_fontloader__["a" /* default */], { config: titleconfig });
122604
+ }
122605
+
122606
+ if (countLoadGoogleFonts == true) {
122607
+
122608
+ var countconfig = {
122609
+ google: {
122610
+ families: [countFontFamily + (countFontWeight ? ":" + countFontWeight : "")]
122611
+ }
122612
+ };
122613
+
122614
+ loadCountGoogleFonts = wp.element.createElement(__WEBPACK_IMPORTED_MODULE_4__components_typography_fontloader__["a" /* default */], { config: countconfig });
122615
+ }
122616
+
122617
+ if (listLoadGoogleFonts == true) {
122618
+
122619
+ var listconfig = {
122620
+ google: {
122621
+ families: [listFontFamily + (listFontWeight ? ":" + listFontWeight : "")]
122622
+ }
122623
+ };
122624
+
122625
+ loadListGoogleFonts = wp.element.createElement(__WEBPACK_IMPORTED_MODULE_4__components_typography_fontloader__["a" /* default */], { config: listconfig });
122626
+ }
122627
+
122628
+ // All Controls.
122629
+ var color_control = wp.element.createElement(
122630
+ Fragment,
122631
+ null,
122632
+ wp.element.createElement(
122633
+ "h2",
122634
+ { className: "uagb-setting-label" },
122635
+ __("Text Color"),
122636
+ wp.element.createElement(
122637
+ "span",
122638
+ { className: "components-base-control__label" },
122639
+ wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: listTextColor } })
122640
+ )
122641
+ ),
122642
+ wp.element.createElement(ColorPalette, {
122643
+ value: listTextColor,
122644
+ onChange: function onChange(colorValue) {
122645
+ return setAttributes({ listTextColor: colorValue });
122646
+ },
122647
+ allowReset: true
122648
+ }),
122649
+ wp.element.createElement("br", null),
122650
+ "none" != listStyle && wp.element.createElement(
122651
+ Fragment,
122652
+ null,
122653
+ wp.element.createElement(
122654
+ "h2",
122655
+ { className: "uagb-setting-label" },
122656
+ __("Bullet/Numbers Color"),
122657
+ wp.element.createElement(
122658
+ "span",
122659
+ { className: "components-base-control__label" },
122660
+ wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: listStyleColor } })
122661
+ )
122662
+ ),
122663
+ wp.element.createElement(ColorPalette, {
122664
+ value: listStyleColor,
122665
+ onChange: function onChange(colorValue) {
122666
+ return setAttributes({ listStyleColor: colorValue });
122667
+ },
122668
+ allowReset: true
122669
+ })
122670
+ )
122671
+ );
122672
+ var color_control_hover = wp.element.createElement(
122673
+ Fragment,
122674
+ null,
122675
+ wp.element.createElement(
122676
+ "h2",
122677
+ { className: "uagb-setting-label" },
122678
+ __("Text Hover Color"),
122679
+ wp.element.createElement(
122680
+ "span",
122681
+ { className: "components-base-control__label" },
122682
+ wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: hoverlistTextColor } })
122683
+ )
122684
+ ),
122685
+ wp.element.createElement(ColorPalette, {
122686
+ value: hoverlistTextColor,
122687
+ onChange: function onChange(colorValue) {
122688
+ return setAttributes({ hoverlistTextColor: colorValue });
122689
+ },
122690
+ allowReset: true
122691
+ }),
122692
+ wp.element.createElement("br", null),
122693
+ "none" != listStyle && wp.element.createElement(
122694
+ Fragment,
122695
+ null,
122696
+ wp.element.createElement(
122697
+ "h2",
122698
+ { className: "uagb-setting-label" },
122699
+ __("Bullet/Numbers Hover Color"),
122700
+ wp.element.createElement(
122701
+ "span",
122702
+ { className: "components-base-control__label" },
122703
+ wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: hoverlistStyleColor } })
122704
+ )
122705
+ ),
122706
+ wp.element.createElement(ColorPalette, {
122707
+ value: hoverlistStyleColor,
122708
+ onChange: function onChange(colorValue) {
122709
+ return setAttributes({ hoverlistStyleColor: colorValue });
122710
+ },
122711
+ allowReset: true
122712
+ })
122713
+ )
122714
+ );
122715
+
122716
+ var inspectorControlsSettings = wp.element.createElement(
122717
+ InspectorControls,
122718
+ null,
122719
+ wp.element.createElement(
122720
+ PanelBody,
122721
+ { title: __("General") },
122722
+ wp.element.createElement(SelectControl, {
122723
+ label: __("Layout"),
122724
+ value: layout,
122725
+ onChange: function onChange(value) {
122726
+ return setAttributes({ layout: value });
122727
+ },
122728
+ options: [{ value: "grid", label: __("Grid") }, { value: "list", label: __("List") }]
122729
+ }),
122730
+ 'grid' === layout && wp.element.createElement(
122731
+ TabPanel,
122732
+ { className: "uagb-size-type-field-tabs uagb-without-size-type", activeClass: "active-tab",
122733
+ tabs: [{
122734
+ name: "desktop",
122735
+ title: wp.element.createElement(Dashicon, { icon: "desktop" }),
122736
+ className: "uagb-desktop-tab uagb-responsive-tabs"
122737
+ }, {
122738
+ name: "tablet",
122739
+ title: wp.element.createElement(Dashicon, { icon: "tablet" }),
122740
+ className: "uagb-tablet-tab uagb-responsive-tabs"
122741
+ }, {
122742
+ name: "mobile",
122743
+ title: wp.element.createElement(Dashicon, { icon: "smartphone" }),
122744
+ className: "uagb-mobile-tab uagb-responsive-tabs"
122745
+ }] },
122746
+ function (tab) {
122747
+ var tabout = void 0;
122748
+
122749
+ if ("mobile" === tab.name) {
122750
+ tabout = wp.element.createElement(RangeControl, {
122751
+ label: __("Mobile Columns"),
122752
+ value: mcolumns,
122753
+ onChange: function onChange(value) {
122754
+ return setAttributes({ mcolumns: value });
122755
+ },
122756
+ min: 1,
122757
+ max: 2
122758
+ });
122759
+ } else if ("tablet" === tab.name) {
122760
+ tabout = wp.element.createElement(RangeControl, {
122761
+ label: __("Tab Columns"),
122762
+ value: tcolumns,
122763
+ onChange: function onChange(value) {
122764
+ return setAttributes({ tcolumns: value });
122765
+ },
122766
+ min: 1,
122767
+ max: 3
122768
+ });
122769
+ } else {
122770
+ tabout = wp.element.createElement(RangeControl, {
122771
+ label: __("Desktop Columns"),
122772
+ value: columns,
122773
+ onChange: function onChange(value) {
122774
+ return setAttributes({ columns: value });
122775
+ },
122776
+ min: 1,
122777
+ max: 4
122778
+ });
122779
+ }
122780
+
122781
+ return wp.element.createElement(
122782
+ "label",
122783
+ null,
122784
+ tabout
122785
+ );
122786
+ }
122787
+ ),
122788
+ wp.element.createElement("hr", { className: "uagb-editor__separator" }),
122789
+ wp.element.createElement(SelectControl, {
122790
+ label: __("Post Type"),
122791
+ value: postType,
122792
+ onChange: function onChange(value) {
122793
+ return _this2.onSelectPostType(value);
122794
+ },
122795
+ options: uagb_blocks_info.post_types
122796
+ }),
122797
+ "" != taxonomyList && wp.element.createElement(SelectControl, {
122798
+ label: __("Taxonomy"),
122799
+ value: taxonomyType,
122800
+ onChange: function onChange(value) {
122801
+ return _this2.onSelectTaxonomyType(value);
122802
+ },
122803
+ options: taxonomyListOptions
122804
+ }),
122805
+ "" == taxonomyList && wp.element.createElement(TextControl, {
122806
+ autoComplete: "off",
122807
+ label: __('Display Message'),
122808
+ value: noTaxDisplaytext,
122809
+ onChange: function onChange(value) {
122810
+ return setAttributes({ noTaxDisplaytext: value });
122811
+ },
122812
+ help: __("If Taxonomy Not Found")
122813
+ }),
122814
+ "list" == layout && wp.element.createElement(
122815
+ Fragment,
122816
+ null,
122817
+ wp.element.createElement(
122818
+ "p",
122819
+ { className: "uagb-setting-label" },
122820
+ __("Display Style")
122821
+ ),
122822
+ wp.element.createElement(
122823
+ ButtonGroup,
122824
+ { className: "uagb-list-display-style-group" },
122825
+ wp.element.createElement(
122826
+ Button,
122827
+ {
122828
+ key: "list",
122829
+ label: "List",
122830
+ onClick: function onClick() {
122831
+ return setAttributes({ listDisplayStyle: "list" });
122832
+ },
122833
+ "aria-pressed": "list" === listDisplayStyle,
122834
+ isPrimary: "list" === listDisplayStyle
122835
+ },
122836
+ "List"
122837
+ ),
122838
+ wp.element.createElement(
122839
+ Button,
122840
+ {
122841
+ key: "dropdown",
122842
+ label: "Dropdown",
122843
+ onClick: function onClick() {
122844
+ return setAttributes({ listDisplayStyle: "dropdown" });
122845
+ },
122846
+ "aria-pressed": "dropdown" === listDisplayStyle,
122847
+ isPrimary: "dropdown" === listDisplayStyle
122848
+ },
122849
+ "Dropdown"
122850
+ )
122851
+ )
122852
+ ),
122853
+ wp.element.createElement(ToggleControl, {
122854
+ label: __("Show Empty Taxonomy"),
122855
+ checked: showEmptyTaxonomy,
122856
+ onChange: function onChange(value) {
122857
+ return setAttributes({ showEmptyTaxonomy: !showEmptyTaxonomy });
122858
+ },
122859
+ help: __("Show Empty Taxonomy in list ")
122860
+ }),
122861
+ wp.element.createElement(ToggleControl, {
122862
+ label: __("Show Posts Count"),
122863
+ checked: showCount,
122864
+ onChange: function onChange(value) {
122865
+ return setAttributes({ showCount: !showCount });
122866
+ },
122867
+ help: __("Show Count of taxonomy ")
122868
+ }),
122869
+ "list" == layout && "list" == listDisplayStyle && "post_tag" !== taxonomyType && wp.element.createElement(ToggleControl, {
122870
+ label: __("Show Hierarchy"),
122871
+ checked: showhierarchy,
122872
+ onChange: function onChange(value) {
122873
+ return setAttributes({ showhierarchy: !showhierarchy });
122874
+ },
122875
+ help: __("Show Hierarchy of taxonomy ")
122876
+ }),
122877
+ "grid" == layout && wp.element.createElement(
122878
+ Fragment,
122879
+ null,
122880
+ wp.element.createElement(
122881
+ "p",
122882
+ { className: "uagb-setting-label" },
122883
+ __("Alignment")
122884
+ ),
122885
+ wp.element.createElement(Button, {
122886
+ key: "left",
122887
+ icon: "editor-alignleft",
122888
+ label: "Left",
122889
+ onClick: function onClick() {
122890
+ return setAttributes({ alignment: "left" });
122891
+ },
122892
+ "aria-pressed": "left" === alignment,
122893
+ isPrimary: "left" === alignment
122894
+ }),
122895
+ wp.element.createElement(Button, {
122896
+ key: "center",
122897
+ icon: "editor-aligncenter",
122898
+ label: "Center",
122899
+ onClick: function onClick() {
122900
+ return setAttributes({ alignment: "center" });
122901
+ },
122902
+ "aria-pressed": "center" === alignment,
122903
+ isPrimary: "center" === alignment
122904
+ }),
122905
+ wp.element.createElement(Button, {
122906
+ key: "right",
122907
+ icon: "editor-alignright",
122908
+ label: "Right",
122909
+ onClick: function onClick() {
122910
+ return setAttributes({ alignment: "right" });
122911
+ },
122912
+ "aria-pressed": "right" === alignment,
122913
+ isPrimary: "right" === alignment
122914
+ })
122915
+ ),
122916
+ "list" == layout && "dropdown" !== listDisplayStyle && wp.element.createElement(
122917
+ Fragment,
122918
+ null,
122919
+ wp.element.createElement(
122920
+ "p",
122921
+ { className: "uagb-setting-label" },
122922
+ __("List Style")
122923
+ ),
122924
+ wp.element.createElement(Button, {
122925
+ key: "bullet",
122926
+ icon: "editor-ul",
122927
+ label: "Bullet",
122928
+ onClick: function onClick() {
122929
+ return setAttributes({ listStyle: "disc" });
122930
+ },
122931
+ "aria-pressed": "disc" === listStyle,
122932
+ isPrimary: "disc" === listStyle
122933
+ }),
122934
+ wp.element.createElement(Button, {
122935
+ key: "numbers",
122936
+ icon: "editor-ol",
122937
+ label: "Numbers",
122938
+ onClick: function onClick() {
122939
+ return setAttributes({ listStyle: "decimal" });
122940
+ },
122941
+ "aria-pressed": "decimal" === listStyle,
122942
+ isPrimary: "decimal" === listStyle
122943
+ }),
122944
+ wp.element.createElement(Button, {
122945
+ key: "none",
122946
+ icon: "menu",
122947
+ label: "None",
122948
+ onClick: function onClick() {
122949
+ return setAttributes({ listStyle: "none" });
122950
+ },
122951
+ "aria-pressed": "none" === listStyle,
122952
+ isPrimary: "none" === listStyle
122953
+ })
122954
+ )
122955
+ ),
122956
+ "dropdown" !== listDisplayStyle && wp.element.createElement(
122957
+ Fragment,
122958
+ null,
122959
+ wp.element.createElement(
122960
+ PanelBody,
122961
+ { title: __("Color"), initialOpen: false },
122962
+ "grid" == layout && wp.element.createElement(
122963
+ Fragment,
122964
+ null,
122965
+ wp.element.createElement(
122966
+ "p",
122967
+ { className: "uagb-setting-label" },
122968
+ __("Background Color"),
122969
+ wp.element.createElement(
122970
+ "span",
122971
+ { className: "components-base-control__label" },
122972
+ wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: bgColor } })
122973
+ )
122974
+ ),
122975
+ wp.element.createElement(ColorPalette, {
122976
+ value: bgColor,
122977
+ onChange: function onChange(colorValue) {
122978
+ return setAttributes({ bgColor: colorValue });
122979
+ },
122980
+ allowReset: true
122981
+ }),
122982
+ wp.element.createElement(
122983
+ "p",
122984
+ { className: "uagb-setting-label" },
122985
+ __("Title Color"),
122986
+ wp.element.createElement(
122987
+ "span",
122988
+ { className: "components-base-control__label" },
122989
+ wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: titleColor } })
122990
+ )
122991
+ ),
122992
+ wp.element.createElement(ColorPalette, {
122993
+ value: titleColor,
122994
+ onChange: function onChange(colorValue) {
122995
+ return setAttributes({ titleColor: colorValue });
122996
+ },
122997
+ allowReset: true
122998
+ }),
122999
+ showCount && wp.element.createElement(
123000
+ Fragment,
123001
+ null,
123002
+ wp.element.createElement(
123003
+ "p",
123004
+ { className: "uagb-setting-label" },
123005
+ __("Count Color"),
123006
+ wp.element.createElement(
123007
+ "span",
123008
+ { className: "components-base-control__label" },
123009
+ wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: countColor } })
123010
+ )
123011
+ ),
123012
+ wp.element.createElement(ColorPalette, {
123013
+ value: countColor,
123014
+ onChange: function onChange(colorValue) {
123015
+ return setAttributes({ countColor: colorValue });
123016
+ },
123017
+ allowReset: true
123018
+ })
123019
+ )
123020
+ ),
123021
+ "list" == layout && wp.element.createElement(
123022
+ TabPanel,
123023
+ { className: "uagb-inspect-tabs uagb-inspect-tabs-col-2",
123024
+ activeClass: "active-tab",
123025
+ tabs: [{
123026
+ name: "normal",
123027
+ title: __("Normal"),
123028
+ className: "uagb-normal-tab"
123029
+ }, {
123030
+ name: "hover",
123031
+ title: __("Hover"),
123032
+ className: "uagb-hover-tab"
123033
+ }] },
123034
+ function (tabName) {
123035
+ var color_tab = void 0;
123036
+ if ("normal" === tabName.name) {
123037
+ color_tab = color_control;
123038
+ } else {
123039
+ color_tab = color_control_hover;
123040
+ }
123041
+ return wp.element.createElement(
123042
+ "div",
123043
+ null,
123044
+ color_tab
123045
+ );
123046
+ }
123047
+ )
123048
+ ),
123049
+ wp.element.createElement(
123050
+ PanelBody,
123051
+ { title: __("Spacing"), initialOpen: false },
123052
+ "grid" == layout && wp.element.createElement(
123053
+ Fragment,
123054
+ null,
123055
+ wp.element.createElement(RangeControl, {
123056
+ label: __("Row Gap"),
123057
+ value: rowGap,
123058
+ onChange: function onChange(value) {
123059
+ return setAttributes({ rowGap: value });
123060
+ },
123061
+ min: 0,
123062
+ max: 50,
123063
+ allowReset: true
123064
+ }),
123065
+ wp.element.createElement(RangeControl, {
123066
+ label: __("Column Gap"),
123067
+ value: columnGap,
123068
+ onChange: function onChange(value) {
123069
+ return setAttributes({ columnGap: value });
123070
+ },
123071
+ min: 0,
123072
+ max: 50,
123073
+ allowReset: true
123074
+ }),
123075
+ wp.element.createElement("hr", { className: "uagb-editor__separator" }),
123076
+ wp.element.createElement(
123077
+ TabPanel,
123078
+ { className: "uagb-size-type-field-tabs uagb-without-size-type", activeClass: "active-tab",
123079
+ tabs: [{
123080
+ name: "desktop",
123081
+ title: wp.element.createElement(Dashicon, { icon: "desktop" }),
123082
+ className: "uagb-desktop-tab uagb-responsive-tabs"
123083
+ }, {
123084
+ name: "tablet",
123085
+ title: wp.element.createElement(Dashicon, { icon: "tablet" }),
123086
+ className: "uagb-tablet-tab uagb-responsive-tabs"
123087
+ }, {
123088
+ name: "mobile",
123089
+ title: wp.element.createElement(Dashicon, { icon: "smartphone" }),
123090
+ className: "uagb-mobile-tab uagb-responsive-tabs"
123091
+ }] },
123092
+ function (tab) {
123093
+ var tabout = void 0;
123094
+
123095
+ if ("mobile" === tab.name) {
123096
+ tabout = wp.element.createElement(RangeControl, {
123097
+ label: __("Mobile Content Padding"),
123098
+ value: contentPaddingMobile,
123099
+ onChange: function onChange(value) {
123100
+ return setAttributes({ contentPaddingMobile: value });
123101
+ },
123102
+ min: 0,
123103
+ max: 100
123104
+ });
123105
+ } else if ("tablet" === tab.name) {
123106
+ tabout = wp.element.createElement(RangeControl, {
123107
+ label: __("Tab Content Padding"),
123108
+ value: contentPaddingTablet,
123109
+ onChange: function onChange(value) {
123110
+ return setAttributes({ contentPaddingTablet: value });
123111
+ },
123112
+ min: 0,
123113
+ max: 100
123114
+ });
123115
+ } else {
123116
+ tabout = wp.element.createElement(RangeControl, {
123117
+ label: __("Content Padding"),
123118
+ value: contentPadding,
123119
+ onChange: function onChange(value) {
123120
+ return setAttributes({ contentPadding: value });
123121
+ },
123122
+ min: 10,
123123
+ max: 100
123124
+ });
123125
+ }
123126
+
123127
+ return wp.element.createElement(
123128
+ "label",
123129
+ null,
123130
+ tabout
123131
+ );
123132
+ }
123133
+ ),
123134
+ showCount && wp.element.createElement(
123135
+ Fragment,
123136
+ null,
123137
+ wp.element.createElement("hr", { className: "uagb-editor__separator" }),
123138
+ wp.element.createElement(RangeControl, {
123139
+ label: __("Title Bottom Spacing"),
123140
+ value: titleBottomSpace,
123141
+ onChange: function onChange(value) {
123142
+ return setAttributes({ titleBottomSpace: value });
123143
+ },
123144
+ min: 0,
123145
+ max: 50,
123146
+ allowReset: true
123147
+ })
123148
+ )
123149
+ ),
123150
+ "list" == layout && wp.element.createElement(RangeControl, {
123151
+ label: __("Bottom Margin"),
123152
+ value: listBottomMargin,
123153
+ onChange: function onChange(value) {
123154
+ return setAttributes({ listBottomMargin: value });
123155
+ },
123156
+ min: 0,
123157
+ max: 100,
123158
+ allowReset: true
123159
+ })
123160
+ ),
123161
+ wp.element.createElement(
123162
+ PanelBody,
123163
+ { title: __("Style"), initialOpen: false },
123164
+ "grid" == layout && wp.element.createElement(
123165
+ Fragment,
123166
+ null,
123167
+ wp.element.createElement(
123168
+ "p",
123169
+ { className: "uagb-setting-label" },
123170
+ __("Title ")
123171
+ ),
123172
+ wp.element.createElement(__WEBPACK_IMPORTED_MODULE_3__components_typography__["a" /* default */], {
123173
+ label: __("Typography"),
123174
+ attributes: attributes,
123175
+ setAttributes: setAttributes,
123176
+ loadGoogleFonts: { value: titleLoadGoogleFonts, label: "titleLoadGoogleFonts" },
123177
+ fontFamily: { value: titleFontFamily, label: "titleFontFamily" },
123178
+ fontWeight: { value: titleFontWeight, label: "titleFontWeight" },
123179
+ fontSubset: { value: titleFontSubset, label: "titleFontSubset" },
123180
+ fontSizeType: { value: titleFontSizeType, label: "titleFontSizeType" },
123181
+ fontSize: { value: titleFontSize, label: "titleFontSize" },
123182
+ fontSizeMobile: { value: titleFontSizeMobile, label: "titleFontSizeMobile" },
123183
+ fontSizeTablet: { value: titleFontSizeTablet, label: "titleFontSizeTablet" },
123184
+ lineHeightType: { value: titleLineHeightType, label: "titleLineHeightType" },
123185
+ lineHeight: { value: titleLineHeight, label: "titleLineHeight" },
123186
+ lineHeightMobile: { value: titleLineHeightMobile, label: "titleLineHeightMobile" },
123187
+ lineHeightTablet: { value: titleLineHeightTablet, label: "titleLineHeightTablet" }
123188
+ }),
123189
+ showCount && wp.element.createElement(
123190
+ Fragment,
123191
+ null,
123192
+ wp.element.createElement("hr", { className: "uagb-editor__separator" }),
123193
+ wp.element.createElement(
123194
+ "p",
123195
+ { className: "uagb-setting-label" },
123196
+ __("Count ")
123197
+ ),
123198
+ wp.element.createElement(__WEBPACK_IMPORTED_MODULE_3__components_typography__["a" /* default */], {
123199
+ label: __("Typography"),
123200
+ attributes: attributes,
123201
+ setAttributes: setAttributes,
123202
+ loadGoogleFonts: { value: countLoadGoogleFonts, label: "countLoadGoogleFonts" },
123203
+ fontFamily: { value: countFontFamily, label: "countFontFamily" },
123204
+ fontWeight: { value: countFontWeight, label: "countFontWeight" },
123205
+ fontSubset: { value: countFontSubset, label: "countFontSubset" },
123206
+ fontSizeType: { value: countFontSizeType, label: "countFontSizeType" },
123207
+ fontSize: { value: countFontSize, label: "countFontSize" },
123208
+ fontSizeMobile: { value: countFontSizeMobile, label: "countFontSizeMobile" },
123209
+ fontSizeTablet: { value: countFontSizeTablet, label: "countFontSizeTablet" },
123210
+ lineHeightType: { value: countLineHeightType, label: "countLineHeightType" },
123211
+ lineHeight: { value: countLineHeight, label: "countLineHeight" },
123212
+ lineHeightMobile: { value: countLineHeightMobile, label: "countLineHeightMobile" },
123213
+ lineHeightTablet: { value: countLineHeightTablet, label: "countLineHeightTablet" }
123214
+ })
123215
+ ),
123216
+ wp.element.createElement("hr", { className: "uagb-editor__separator" }),
123217
+ wp.element.createElement(__WEBPACK_IMPORTED_MODULE_2__components_box_shadow__["a" /* default */], {
123218
+ setAttributes: setAttributes,
123219
+ label: __("Box Shadow"),
123220
+ boxShadowColor: { value: boxShadowColor, label: __("Color") },
123221
+ boxShadowHOffset: { value: boxShadowHOffset, label: __("Horizontal") },
123222
+ boxShadowVOffset: { value: boxShadowVOffset, label: __("Vertical") },
123223
+ boxShadowBlur: { value: boxShadowBlur, label: __("Blur") },
123224
+ boxShadowSpread: { value: boxShadowSpread, label: __("Spread") },
123225
+ boxShadowPosition: { value: boxShadowPosition, label: __("Position") }
123226
+ }),
123227
+ wp.element.createElement("hr", { className: "uagb-editor__separator" }),
123228
+ wp.element.createElement(SelectControl, {
123229
+ label: __("Border Style"),
123230
+ value: borderStyle,
123231
+ onChange: function onChange(value) {
123232
+ return setAttributes({ borderStyle: value });
123233
+ },
123234
+ options: [{ value: "none", label: __("None") }, { value: "solid", label: __("Solid") }, { value: "dotted", label: __("Dotted") }, { value: "dashed", label: __("Dashed") }, { value: "double", label: __("Double") }, { value: "groove", label: __("Groove") }, { value: "inset", label: __("Inset") }, { value: "outset", label: __("Outset") }, { value: "ridge", label: __("Ridge") }]
123235
+ }),
123236
+ "none" != borderStyle && wp.element.createElement(
123237
+ Fragment,
123238
+ null,
123239
+ wp.element.createElement(RangeControl, {
123240
+ label: __("Border Thickness"),
123241
+ value: borderThickness,
123242
+ onChange: function onChange(value) {
123243
+ return setAttributes({ borderThickness: value });
123244
+ },
123245
+ min: 0,
123246
+ max: 10,
123247
+ allowReset: true
123248
+ }),
123249
+ wp.element.createElement(RangeControl, {
123250
+ label: __("Rounded Corners (px)"),
123251
+ value: borderRadius,
123252
+ onChange: function onChange(value) {
123253
+ setAttributes({ borderRadius: value });
123254
+ },
123255
+ min: 0,
123256
+ max: 50,
123257
+ allowReset: true
123258
+
123259
+ }),
123260
+ wp.element.createElement(
123261
+ "p",
123262
+ { className: "uagb-setting-label" },
123263
+ __("Border Color"),
123264
+ wp.element.createElement(
123265
+ "span",
123266
+ { className: "components-base-control__label" },
123267
+ wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: borderColor } })
123268
+ )
123269
+ ),
123270
+ wp.element.createElement(ColorPalette, {
123271
+ value: borderColor,
123272
+ onChange: function onChange(colorValue) {
123273
+ return setAttributes({ borderColor: colorValue });
123274
+ },
123275
+ allowReset: true
123276
+ })
123277
+ )
123278
+ ),
123279
+ "list" == layout && wp.element.createElement(
123280
+ Fragment,
123281
+ null,
123282
+ wp.element.createElement(SelectControl, {
123283
+ label: __("Separator Style"),
123284
+ value: seperatorStyle,
123285
+ onChange: function onChange(value) {
123286
+ return setAttributes({ seperatorStyle: value });
123287
+ },
123288
+ options: [{ value: "none", label: __("None") }, { value: "solid", label: __("Solid") }, { value: "dotted", label: __("Dotted") }, { value: "dashed", label: __("Dashed") }, { value: "double", label: __("Double") }, { value: "groove", label: __("Groove") }, { value: "inset", label: __("Inset") }, { value: "outset", label: __("Outset") }, { value: "ridge", label: __("Ridge") }]
123289
+ }),
123290
+ "none" != seperatorStyle && wp.element.createElement(
123291
+ Fragment,
123292
+ null,
123293
+ wp.element.createElement(RangeControl, {
123294
+ label: __("Separator Width (%)"),
123295
+ value: seperatorWidth,
123296
+ onChange: function onChange(value) {
123297
+ return setAttributes({ seperatorWidth: value });
123298
+ },
123299
+ min: 0,
123300
+ max: 100,
123301
+ allowReset: true
123302
+ }),
123303
+ wp.element.createElement(RangeControl, {
123304
+ label: __("Separator Thickness"),
123305
+ value: seperatorThickness,
123306
+ onChange: function onChange(value) {
123307
+ return setAttributes({ seperatorThickness: value });
123308
+ },
123309
+ min: 0,
123310
+ max: 20,
123311
+ allowReset: true
123312
+ }),
123313
+ wp.element.createElement(
123314
+ Fragment,
123315
+ null,
123316
+ wp.element.createElement(
123317
+ "p",
123318
+ { className: "uagb-setting-label" },
123319
+ __("Separator Color"),
123320
+ wp.element.createElement(
123321
+ "span",
123322
+ { className: "components-base-control__label" },
123323
+ wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: seperatorColor } })
123324
+ )
123325
+ ),
123326
+ wp.element.createElement(ColorPalette, {
123327
+ value: seperatorColor,
123328
+ onChange: function onChange(colorValue) {
123329
+ return setAttributes({ seperatorColor: colorValue });
123330
+ },
123331
+ allowReset: true
123332
+ })
123333
+ )
123334
+ ),
123335
+ wp.element.createElement("hr", { className: "uagb-editor__separator" }),
123336
+ wp.element.createElement(
123337
+ "p",
123338
+ { className: "uagb-setting-label" },
123339
+ __("List ")
123340
+ ),
123341
+ wp.element.createElement(__WEBPACK_IMPORTED_MODULE_3__components_typography__["a" /* default */], {
123342
+ label: __("Typography"),
123343
+ attributes: attributes,
123344
+ setAttributes: setAttributes,
123345
+ loadGoogleFonts: { value: listLoadGoogleFonts, label: "listLoadGoogleFonts" },
123346
+ fontFamily: { value: listFontFamily, label: "listFontFamily" },
123347
+ fontWeight: { value: listFontWeight, label: "listFontWeight" },
123348
+ fontSubset: { value: listFontSubset, label: "listFontSubset" },
123349
+ fontSizeType: { value: listFontSizeType, label: "listFontSizeType" },
123350
+ fontSize: { value: listFontSize, label: "listFontSize" },
123351
+ fontSizeMobile: { value: listFontSizeMobile, label: "listFontSizeMobile" },
123352
+ fontSizeTablet: { value: listFontSizeTablet, label: "listFontSizeTablet" },
123353
+ lineHeightType: { value: listLineHeightType, label: "listLineHeightType" },
123354
+ lineHeight: { value: listLineHeight, label: "listLineHeight" },
123355
+ lineHeightMobile: { value: listLineHeightMobile, label: "listLineHeightMobile" },
123356
+ lineHeightTablet: { value: listLineHeightTablet, label: "listLineHeightTablet" }
123357
+ })
123358
+ )
123359
+ )
123360
+ )
123361
+ );
123362
+
123363
+ return wp.element.createElement(
123364
+ Fragment,
123365
+ null,
123366
+ inspectorControlsSettings,
123367
+ wp.element.createElement(
123368
+ "div",
123369
+ { className: __WEBPACK_IMPORTED_MODULE_0_classnames___default.a("uagb-taxonomy__outer-wrap", "uagb-block-" + this.props.clientId.substr(0, 8)) },
123370
+ wp.element.createElement(
123371
+ "div",
123372
+ { className: __WEBPACK_IMPORTED_MODULE_0_classnames___default.a("uagb-taxonomy-wrap", "uagb-layout-" + layout) },
123373
+ "grid" == layout && categoriesList.map(function (p, index) {
123374
+ return wp.element.createElement(
123375
+ "div",
123376
+ { className: "uagb-taxomony-box" },
123377
+ wp.element.createElement(
123378
+ "a",
123379
+ { className: "uagb-tax-link", href: p.link },
123380
+ wp.element.createElement(
123381
+ "h4",
123382
+ { className: "uagb-tax-title" },
123383
+ p.name
123384
+ ),
123385
+ showCount && wp.element.createElement(
123386
+ "div",
123387
+ { className: "uagb-tax-count" },
123388
+ p.count,
123389
+ " ",
123390
+ p.count > "1" ? p.singular_name + "s" : p.singular_name
123391
+ )
123392
+ )
123393
+ );
123394
+ }),
123395
+ "list" == layout && "list" == listDisplayStyle && wp.element.createElement(
123396
+ "ul",
123397
+ { className: "uagb-list-wrap" },
123398
+ categoriesList.map(function (p, index) {
123399
+ return wp.element.createElement(
123400
+ "li",
123401
+ { className: "uagb-tax-list" },
123402
+ wp.element.createElement(
123403
+ "div",
123404
+ { className: "uagb-tax-link-wrap" },
123405
+ wp.element.createElement(
123406
+ "a",
123407
+ { className: "uagb-tax-link", href: p.link },
123408
+ p.name
123409
+ ),
123410
+ showCount && wp.element.createElement(
123411
+ "span",
123412
+ { className: "uagb-tax-list-count" },
123413
+ " (" + p.count + ")"
123414
+ ),
123415
+ showhierarchy && p.children != null && wp.element.createElement(
123416
+ "ul",
123417
+ { className: "uagb-taxonomy-list-children" },
123418
+ Object.keys(p.children).map(function (key, index) {
123419
+ return wp.element.createElement(
123420
+ "li",
123421
+ { className: "uagb-tax-list" },
123422
+ wp.element.createElement(
123423
+ "a",
123424
+ { className: "uagb-tax-link", href: "" + p.link + p.children[key]["slug"] },
123425
+ p.children[key]["name"]
123426
+ ),
123427
+ showCount && wp.element.createElement(
123428
+ "span",
123429
+ null,
123430
+ " (" + p.children[key]["count"] + ")"
123431
+ )
123432
+ );
123433
+ })
123434
+ )
123435
+ ),
123436
+ "none" != seperatorStyle && wp.element.createElement(
123437
+ "div",
123438
+ { className: "uagb-tax-separator-wrap" },
123439
+ wp.element.createElement("div", { className: "uagb-tax-separator" })
123440
+ )
123441
+ );
123442
+ })
123443
+ ),
123444
+ "list" == layout && "dropdown" == listDisplayStyle && wp.element.createElement(
123445
+ "select",
123446
+ { className: "uagb-list-dropdown-wrap" },
123447
+ categoriesList.map(function (p, index) {
123448
+ return wp.element.createElement(
123449
+ "option",
123450
+ { value: p.link },
123451
+ p.name,
123452
+ showCount && " (" + p.count + ")"
123453
+ );
123454
+ })
123455
+ )
123456
+ ),
123457
+ categoriesList == "" && wp.element.createElement(
123458
+ "div",
123459
+ { className: "uagb-tax-not-available" },
123460
+ noTaxDisplaytext
123461
+ )
123462
+ ),
123463
+ loadTitleGoogleFonts,
123464
+ loadCountGoogleFonts,
123465
+ loadListGoogleFonts
123466
+ );
123467
+ }
123468
+ }]);
123469
+
123470
+ return UAGBTaxonomyList;
123471
+ }(Component);
123472
+
123473
+ /* harmony default export */ __webpack_exports__["a"] = (withSelect(function (select, props) {
123474
+ var _props$attributes = props.attributes,
123475
+ categories = _props$attributes.categories,
123476
+ postsToShow = _props$attributes.postsToShow,
123477
+ order = _props$attributes.order,
123478
+ orderBy = _props$attributes.orderBy,
123479
+ postType = _props$attributes.postType,
123480
+ taxonomyType = _props$attributes.taxonomyType,
123481
+ showEmptyTaxonomy = _props$attributes.showEmptyTaxonomy;
123482
+
123483
+ var _select = select("core"),
123484
+ getEntityRecords = _select.getEntityRecords;
123485
+
123486
+ var allTaxonomy = uagb_blocks_info.taxonomy_list;
123487
+ var currentTax = allTaxonomy[postType];
123488
+
123489
+ var listToShowTaxonomy = showEmptyTaxonomy ? "with_empty_taxonomy" : "without_empty_taxonomy";
123490
+
123491
+ var categoriesList = [];
123492
+ if ("undefined" != typeof currentTax) {
123493
+ if ("undefined" != typeof currentTax[listToShowTaxonomy] && "undefined" != typeof currentTax[listToShowTaxonomy][taxonomyType]) {
123494
+ categoriesList = currentTax[listToShowTaxonomy][taxonomyType];
123495
+ }
123496
+ }
123497
+
123498
+ var latestPostsQuery = {
123499
+ order: order,
123500
+ orderby: orderBy,
123501
+ per_page: postsToShow
123502
+ };
123503
+
123504
+ return {
123505
+ latestPosts: getEntityRecords('postType', postType, latestPostsQuery),
123506
+ categoriesList: categoriesList,
123507
+ taxonomyList: "undefined" != typeof currentTax ? currentTax["taxonomy"] : [],
123508
+ termsList: "undefined" != typeof currentTax ? currentTax["terms"] : []
123509
+
123510
+ };
123511
+ })(UAGBTaxonomyList));
123512
+
123513
+ /***/ }),
123514
+ /* 606 */
123515
+ /*!*********************************************!*\
123516
+ !*** ./src/blocks/taxonomy-list/styling.js ***!
123517
+ \*********************************************/
123518
+ /*! exports provided: default */
123519
+ /*! exports used: default */
123520
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
123521
+
123522
+ "use strict";
123523
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
123524
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
123525
+ /**
123526
+ * Returns Dynamic Generated CSS
123527
+ */
123528
+
123529
+
123530
+
123531
+
123532
+ function styling(props) {
123533
+ var _props$attributes = props.attributes,
123534
+ block_id = _props$attributes.block_id,
123535
+ columns = _props$attributes.columns,
123536
+ tcolumns = _props$attributes.tcolumns,
123537
+ mcolumns = _props$attributes.mcolumns,
123538
+ bgColor = _props$attributes.bgColor,
123539
+ titleColor = _props$attributes.titleColor,
123540
+ countColor = _props$attributes.countColor,
123541
+ rowGap = _props$attributes.rowGap,
123542
+ columnGap = _props$attributes.columnGap,
123543
+ contentPadding = _props$attributes.contentPadding,
123544
+ contentPaddingMobile = _props$attributes.contentPaddingMobile,
123545
+ contentPaddingTablet = _props$attributes.contentPaddingTablet,
123546
+ titleBottomSpace = _props$attributes.titleBottomSpace,
123547
+ alignment = _props$attributes.alignment,
123548
+ listStyle = _props$attributes.listStyle,
123549
+ seperatorStyle = _props$attributes.seperatorStyle,
123550
+ seperatorWidth = _props$attributes.seperatorWidth,
123551
+ seperatorThickness = _props$attributes.seperatorThickness,
123552
+ seperatorColor = _props$attributes.seperatorColor,
123553
+ listTextColor = _props$attributes.listTextColor,
123554
+ hoverlistTextColor = _props$attributes.hoverlistTextColor,
123555
+ listBottomMargin = _props$attributes.listBottomMargin,
123556
+ listStyleColor = _props$attributes.listStyleColor,
123557
+ hoverlistStyleColor = _props$attributes.hoverlistStyleColor,
123558
+ boxShadowColor = _props$attributes.boxShadowColor,
123559
+ boxShadowHOffset = _props$attributes.boxShadowHOffset,
123560
+ boxShadowVOffset = _props$attributes.boxShadowVOffset,
123561
+ boxShadowBlur = _props$attributes.boxShadowBlur,
123562
+ boxShadowSpread = _props$attributes.boxShadowSpread,
123563
+ boxShadowPosition = _props$attributes.boxShadowPosition,
123564
+ titleFontSize = _props$attributes.titleFontSize,
123565
+ titleFontSizeType = _props$attributes.titleFontSizeType,
123566
+ titleFontSizeMobile = _props$attributes.titleFontSizeMobile,
123567
+ titleFontSizeTablet = _props$attributes.titleFontSizeTablet,
123568
+ titleFontFamily = _props$attributes.titleFontFamily,
123569
+ titleFontWeight = _props$attributes.titleFontWeight,
123570
+ titleLineHeightType = _props$attributes.titleLineHeightType,
123571
+ titleLineHeight = _props$attributes.titleLineHeight,
123572
+ titleLineHeightTablet = _props$attributes.titleLineHeightTablet,
123573
+ titleLineHeightMobile = _props$attributes.titleLineHeightMobile,
123574
+ countFontSize = _props$attributes.countFontSize,
123575
+ countFontSizeType = _props$attributes.countFontSizeType,
123576
+ countFontSizeMobile = _props$attributes.countFontSizeMobile,
123577
+ countFontSizeTablet = _props$attributes.countFontSizeTablet,
123578
+ countFontFamily = _props$attributes.countFontFamily,
123579
+ countFontWeight = _props$attributes.countFontWeight,
123580
+ countLineHeightType = _props$attributes.countLineHeightType,
123581
+ countLineHeight = _props$attributes.countLineHeight,
123582
+ countLineHeightTablet = _props$attributes.countLineHeightTablet,
123583
+ countLineHeightMobile = _props$attributes.countLineHeightMobile,
123584
+ listFontSize = _props$attributes.listFontSize,
123585
+ listFontSizeType = _props$attributes.listFontSizeType,
123586
+ listFontSizeMobile = _props$attributes.listFontSizeMobile,
123587
+ listFontSizeTablet = _props$attributes.listFontSizeTablet,
123588
+ listFontFamily = _props$attributes.listFontFamily,
123589
+ listFontWeight = _props$attributes.listFontWeight,
123590
+ listFontSubset = _props$attributes.listFontSubset,
123591
+ listLineHeightType = _props$attributes.listLineHeightType,
123592
+ listLineHeight = _props$attributes.listLineHeight,
123593
+ listLineHeightTablet = _props$attributes.listLineHeightTablet,
123594
+ listLineHeightMobile = _props$attributes.listLineHeightMobile,
123595
+ borderStyle = _props$attributes.borderStyle,
123596
+ borderThickness = _props$attributes.borderThickness,
123597
+ borderColor = _props$attributes.borderColor,
123598
+ borderRadius = _props$attributes.borderRadius;
123599
+
123600
+
123601
+ var selectors = {};
123602
+ var tablet_selectors = {};
123603
+ var mobile_selectors = {};
123604
+
123605
+ var boxShadowPositionCSS = boxShadowPosition;
123606
+
123607
+ if ('outset' === boxShadowPosition) {
123608
+ boxShadowPositionCSS = '';
123609
+ }
123610
+
123611
+ selectors = {
123612
+ //grid layout styling
123613
+ ' .uagb-taxonomy-wrap.uagb-layout-grid': {
123614
+ "display": "grid",
123615
+ "grid-template-columns": 'repeat(' + columns + ', 1fr)',
123616
+ "grid-column-gap": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](columnGap, 'px'),
123617
+ "grid-row-gap": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](rowGap, 'px')
123618
+
123619
+ },
123620
+ ' .uagb-layout-grid .uagb-taxomony-box': {
123621
+ "padding": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](contentPadding, 'px'),
123622
+ "background-color": bgColor,
123623
+ "text-align": alignment,
123624
+ "box-shadow": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](boxShadowHOffset, "px") + ' ' + __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](boxShadowVOffset, "px") + ' ' + __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](boxShadowBlur, "px") + ' ' + __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](boxShadowSpread, "px") + ' ' + boxShadowColor + ' ' + boxShadowPositionCSS
123625
+
123626
+ },
123627
+ ' .uagb-layout-grid .uagb-tax-title': {
123628
+ "color": titleColor,
123629
+ "margin-top": "0",
123630
+ "margin-bottom": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](titleBottomSpace, 'px'),
123631
+ "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](titleFontSize, titleFontSizeType),
123632
+ "font-family": titleFontFamily,
123633
+ "font-weight": titleFontWeight,
123634
+ "line-height": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](titleLineHeight, titleLineHeightType)
123635
+ },
123636
+ ' .uagb-layout-grid .uagb-tax-count': {
123637
+ "color": countColor,
123638
+ "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](countFontSize, countFontSizeType),
123639
+ "font-family": countFontFamily,
123640
+ "font-weight": countFontWeight,
123641
+ "line-height": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](countLineHeight, countLineHeightType)
123642
+ },
123643
+
123644
+ //List layout styling
123645
+ ' .uagb-layout-list .uagb-tax-list': {
123646
+ "list-style": listStyle,
123647
+ "color": listStyleColor,
123648
+ "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](listFontSize, listFontSizeType),
123649
+ "font-family": listFontFamily,
123650
+ "font-weight": listFontWeight,
123651
+ "line-height": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](listLineHeight, listLineHeightType)
123652
+
123653
+ },
123654
+ ' .uagb-layout-list .uagb-tax-list:hover': {
123655
+ "color": hoverlistStyleColor
123656
+ },
123657
+ ' .uagb-layout-list .uagb-tax-list a.uagb-tax-link': {
123658
+ "color": listTextColor
123659
+ },
123660
+ ' .uagb-layout-list .uagb-tax-list a.uagb-tax-link:hover': {
123661
+ "color": hoverlistTextColor
123662
+ },
123663
+ ' .uagb-layout-list .uagb-tax-list .uagb-tax-link-wrap': {
123664
+ "margin-bottom": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](listBottomMargin, 'px')
123665
+ }
123666
+
123667
+ };
123668
+
123669
+ if (seperatorStyle !== "none") {
123670
+ selectors[" .uagb-layout-list .uagb-tax-separator"] = {
123671
+ "border-top-color": seperatorColor,
123672
+ "border-top-style": seperatorStyle,
123673
+ "border-top-width": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](seperatorThickness, "px"),
123674
+ "width": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](seperatorWidth, "%")
123675
+ };
123676
+ }
123677
+
123678
+ if (borderStyle !== "none") {
123679
+ selectors[" .uagb-taxomony-box"] = {
123680
+ "border": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](borderThickness, "px") + ' ' + borderStyle + ' ' + borderColor,
123681
+ "border-radius": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](borderRadius, "px")
123682
+ };
123683
+ }
123684
+
123685
+ mobile_selectors = {
123686
+ ' .uagb-taxonomy-wrap.uagb-layout-grid': {
123687
+ "grid-template-columns": 'repeat(' + mcolumns + ', 1fr)'
123688
+ },
123689
+ ' .uagb-layout-grid .uagb-taxomony-box': {
123690
+ "padding": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](contentPaddingMobile, 'px')
123691
+ },
123692
+ ' .uagb-layout-grid .uagb-tax-title': {
123693
+ "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](titleFontSizeMobile, titleFontSizeType),
123694
+ "line-height": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](titleLineHeightMobile, titleLineHeightType)
123695
+ },
123696
+ ' .uagb-layout-grid .uagb-tax-count': {
123697
+ "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](countFontSizeMobile, countFontSizeType),
123698
+ "line-height": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](countLineHeightMobile, countLineHeightType)
123699
+ },
123700
+ ' .uagb-layout-list .uagb-tax-list': {
123701
+ "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](listFontSizeMobile, listFontSizeType),
123702
+ "line-height": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](listLineHeightMobile, listLineHeightType)
123703
+ }
123704
+ };
123705
+
123706
+ tablet_selectors = {
123707
+ ' .uagb-taxonomy-wrap.uagb-layout-grid': {
123708
+ "grid-template-columns": 'repeat(' + tcolumns + ', 1fr)'
123709
+ },
123710
+ ' .uagb-layout-grid .uagb-taxomony-box': {
123711
+ "padding": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](contentPaddingTablet, 'px')
123712
+ },
123713
+ ' .uagb-layout-grid .uagb-tax-title': {
123714
+ "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](titleFontSizeTablet, titleFontSizeType),
123715
+ "line-height": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](titleLineHeightTablet, titleLineHeightType)
123716
+ },
123717
+ ' .uagb-layout-grid .uagb-tax-count': {
123718
+ "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](countFontSizeTablet, countFontSizeType),
123719
+ "line-height": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](countLineHeightTablet, countLineHeightType)
123720
+ },
123721
+ ' .uagb-layout-list .uagb-tax-list': {
123722
+ "font-size": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](listFontSizeTablet, listFontSizeType),
123723
+ "line-height": __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */](listLineHeightTablet, listLineHeightType)
123724
+ }
123725
+
123726
+ };
123727
+ var styling_css = '';
123728
+ var id = ".uagb-block-" + block_id;
123729
+
123730
+ styling_css = __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_generateCSS__["a" /* default */](selectors, id);
123731
+
123732
+ styling_css += __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_generateCSS__["a" /* default */](tablet_selectors, id, true, "tablet");
123733
+
123734
+ styling_css += __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_generateCSS__["a" /* default */](mobile_selectors, id, true, "mobile");
123735
+
123736
+ return styling_css;
123737
+ }
123738
+
123739
+ /* harmony default export */ __webpack_exports__["a"] = (styling);
123740
+
123741
  /***/ })
123742
  /******/ ]);
dist/blocks.editor.build.css CHANGED
@@ -24,3 +24,4 @@ p.uagb-marketing-btn__prefix.block-editor-rich-text__editable{margin:0 !importan
24
  .uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button{display:flex;align-items:center;width:100%}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content p{margin:0}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content{border-width:0px}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content span{display:inline-block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-faq-content{display:block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon{display:none}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon-active{display:inline-block}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon-active{display:none}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon{display:none}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
25
  .editor-styles-wrapper [data-type="uagb/inline-notice"] .uagb-notice-title{margin:0}
26
  [data-type="uagb/wp-search"] .uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}[data-type="uagb/wp-search"] .uagb-layout-input-button svg{fill:currentColor}[data-type="uagb/wp-search"] .uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}[data-type="uagb/wp-search"] .uagb-layout-input svg{fill:currentColor;opacity:0.6}[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap{min-height:20px;width:100%}[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
 
24
  .uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button{display:flex;align-items:center;width:100%}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content p{margin:0}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content{border-width:0px}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content span{display:inline-block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-faq-content{display:block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon{display:none}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon-active{display:inline-block}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon-active{display:none}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon{display:none}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
25
  .editor-styles-wrapper [data-type="uagb/inline-notice"] .uagb-notice-title{margin:0}
26
  [data-type="uagb/wp-search"] .uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}[data-type="uagb/wp-search"] .uagb-layout-input-button svg{fill:currentColor}[data-type="uagb/wp-search"] .uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}[data-type="uagb/wp-search"] .uagb-layout-input svg{fill:currentColor;opacity:0.6}[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap{min-height:20px;width:100%}[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
27
+ .uagb-tax-not-available{border:1px solid;padding:10px;text-align:center}.uagb-layout-list .uagb-list-wrap{margin:0}.uagb-list-display-style-group{margin-bottom:20px !important}
dist/blocks.style.build.css CHANGED
@@ -21,8 +21,9 @@
21
  .wp-block-uagb-blockquote{padding:0;margin:0 auto}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{font-style:normal;display:block}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{position:relative;display:inline-block;padding:0px;z-index:1;background:#333;padding:10px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon{height:25px;width:25px;display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{height:inherit;width:inherit;display:inherit}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote blockquote.uagb-blockquote{margin:0;padding:0}.wp-block-uagb-blockquote .uagb-blockquote__wrap,.wp-block-uagb-blockquote .uagb-blockquote__wrap *{box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{-js-display:flex;display:flex;justify-content:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:flex;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote a{box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{display:flex;transition:0.2s;align-self:flex-end;line-height:1;position:relative;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;color:#1DA1F2;background-color:transparent;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{height:15px;width:15px;margin-right:5px;fill:#fff;vertical-align:middle;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text svg{margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1DA1F2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{content:'';border:solid 0.5em transparent;border-right-color:#1DA1F2;position:absolute;left:-0.8em;top:50%;transform:translateY(-50%) scale(1, 0.65);transition:0.2s}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:auto;right:-0.8em;transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-image{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__author-image img{width:50px;height:50px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:flex;flex-direction:row}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img{margin-left:10px;margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{flex-direction:column}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{flex-direction:column;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{flex-direction:column;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}
22
  .wp-block-uagb-marketing-button .uagb-marketing-btn__wrap>p,.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap{display:flex}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{display:inline-block;position:relative;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap{width:20px;height:20px;display:flex;z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap svg{width:inherit;height:inherit}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:flex;align-items:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{justify-content:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap{justify-content:flex-start}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap{justify-content:flex-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix-wrap{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix-wrap{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix-wrap{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__title-wrap{flex-direction:row-reverse}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none}
23
  .wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:1.2em;padding-left:0px;margin-bottom:0}.wp-block-uagb-table-of-contents ul.uagb-toc__list li{margin:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.wp-block-uagb-table-of-contents.uagb-toc__align-left{text-align:left}.wp-block-uagb-table-of-contents.uagb-toc__align-center{text-align:center}.wp-block-uagb-table-of-contents.uagb-toc__align-right{text-align:right}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center;justify-content:space-between}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{margin-left:10px;display:flex;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.uagb-toc__list .uagb-toc__list{list-style-type:circle}.uagb-toc__scroll-top.dashicons{display:none;position:fixed;bottom:50px;right:50px;padding:10px;background:#ccd0d4;cursor:pointer}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}
24
- .uagb-howto__cost-wrap{display:block}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:block}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}
25
  .wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__wrapper,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-item{height:100%}
26
  .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:focus,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:active{outline:thin dotted}.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center;width:100%}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child .uagb-faq-content span{display:inline-block}.wp-block-uagb-faq-child .uagb-faq-content p{margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
27
  .uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice .uagb-notice-title{margin:0;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;display:inline-block}.wp-block-uagb-inline-notice .uagb-notice-text{border:solid 2px #000;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss svg{width:16px;height:16px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss{position:absolute;cursor:pointer;top:13px;opacity:.8;padding:0;background:none;transition:.3s ease}
28
  .wp-block-uagb-wp-search.uagb-wp-search__outer-wrap{min-height:20px;width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button svg{fill:currentColor}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input svg{fill:currentColor;opacity:0.6}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
 
21
  .wp-block-uagb-blockquote{padding:0;margin:0 auto}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{font-style:normal;display:block}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{position:relative;display:inline-block;padding:0px;z-index:1;background:#333;padding:10px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon{height:25px;width:25px;display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{height:inherit;width:inherit;display:inherit}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote blockquote.uagb-blockquote{margin:0;padding:0}.wp-block-uagb-blockquote .uagb-blockquote__wrap,.wp-block-uagb-blockquote .uagb-blockquote__wrap *{box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{-js-display:flex;display:flex;justify-content:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:flex;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote a{box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{display:flex;transition:0.2s;align-self:flex-end;line-height:1;position:relative;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;color:#1DA1F2;background-color:transparent;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{height:15px;width:15px;margin-right:5px;fill:#fff;vertical-align:middle;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text svg{margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1DA1F2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{content:'';border:solid 0.5em transparent;border-right-color:#1DA1F2;position:absolute;left:-0.8em;top:50%;transform:translateY(-50%) scale(1, 0.65);transition:0.2s}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:auto;right:-0.8em;transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-image{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__author-image img{width:50px;height:50px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:flex;flex-direction:row}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img{margin-left:10px;margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{flex-direction:column}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{flex-direction:column;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{flex-direction:column;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}
22
  .wp-block-uagb-marketing-button .uagb-marketing-btn__wrap>p,.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap{display:flex}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{display:inline-block;position:relative;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap{width:20px;height:20px;display:flex;z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap svg{width:inherit;height:inherit}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:flex;align-items:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{justify-content:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap{justify-content:flex-start}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap{justify-content:flex-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix-wrap{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix-wrap{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix-wrap{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__title-wrap{flex-direction:row-reverse}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none}
23
  .wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:1.2em;padding-left:0px;margin-bottom:0}.wp-block-uagb-table-of-contents ul.uagb-toc__list li{margin:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.wp-block-uagb-table-of-contents.uagb-toc__align-left{text-align:left}.wp-block-uagb-table-of-contents.uagb-toc__align-center{text-align:center}.wp-block-uagb-table-of-contents.uagb-toc__align-right{text-align:right}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center;justify-content:space-between}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{margin-left:10px;display:flex;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.uagb-toc__list .uagb-toc__list{list-style-type:circle}.uagb-toc__scroll-top.dashicons{display:none;position:fixed;bottom:50px;right:50px;padding:10px;background:#ccd0d4;cursor:pointer}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}
24
+ .uagb-howto__cost-wrap{display:block}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:block}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}.uagb-howto__time-wrap .uagb-howto-timeINmin-text{margin-left:5px}
25
  .wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__wrapper,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-item{height:100%}
26
  .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:focus,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:active{outline:thin dotted}.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center;width:100%}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child .uagb-faq-content span{display:inline-block}.wp-block-uagb-faq-child .uagb-faq-content p{margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
27
  .uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice .uagb-notice-title{margin:0;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;display:inline-block}.wp-block-uagb-inline-notice .uagb-notice-text{border:solid 2px #000;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss svg{width:16px;height:16px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss{position:absolute;cursor:pointer;top:13px;opacity:.8;padding:0;background:none;transition:.3s ease}
28
  .wp-block-uagb-wp-search.uagb-wp-search__outer-wrap{min-height:20px;width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button svg{fill:currentColor}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input svg{fill:currentColor;opacity:0.6}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
29
+ .uagb-tax-not-available{border:1px solid;padding:10px;text-align:center}.uagb-layout-list .uagb-list-wrap{margin-left:10px}.uagb-taxonomy__outer-wrap{margin-bottom:20px}ul.uagb-taxonomy-list-children{margin-bottom:0}
dist/blocks.style.css CHANGED
@@ -1,28 +1,29 @@
 
 
1
  .wp-block-uagb-advanced-heading{padding:0;margin:0 auto}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator-wrap{font-size:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator{border-top-style:solid;display:inline-block;border-top-width:2px;width:5%;margin:0px 0px 10px 0px}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0;text-align:center}
2
  .uagb-column__wrap{position:relative;overflow:hidden}.uagb-column__wrap .uagb-column__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2;width:100%}.uagb-column__wrap.uagb-column__align-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__wrap.uagb-column__align-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}.uagb-column__wrap .uagb-column__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-column__wrap .uagb-column__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-column__wrap .uagb-column__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;flex:1;padding-left:0;padding-right:0;margin-left:-14px;margin-right:-14px;min-width:0;word-break:break-word;overflow-wrap:break-word;flex-basis:100%}@media (max-width: 976px){.uagb-column__align-tablet-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-tablet-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 767px){.uagb-column__align-mobile-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-mobile-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 449px){.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll !important}}
3
- .uagb-columns__wrap{position:relative}.uagb-columns__wrap .uagb-columns__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-columns__wrap .uagb-columns__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-columns__wrap .uagb-columns__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-columns__wrap .uagb-columns__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.uagb-columns__wrap .uagb-column__wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.uagb-columns__wrap .uagb-columns__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr;z-index:1}.uagb-columns__wrap .uagb-columns__shape-top{top:-3px}.uagb-columns__wrap .uagb-columns__shape-bottom{bottom:-3px}.uagb-columns__wrap .uagb-columns__shape[data-negative="false"].uagb-columns__shape-bottom{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape[data-negative="true"].uagb-columns__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-columns__wrap .uagb-columns__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-columns__wrap .uagb-columns__shape .uagb-columns__shape-fill{fill:#333;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-above-content{z-index:9;pointer-events:none}.uagb-columns__valign-center .uagb-column__wrap,.uagb-columns__valign-middle .uagb-column__wrap{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.uagb-columns__valign-top .uagb-column__wrap{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.uagb-columns__valign-bottom .uagb-column__wrap{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.uagb-columns__inner-wrap{display:flex;flex-wrap:nowrap}.uagb-columns__columns-1>.uagb-column__wrap{width:100%}.uagb-columns__columns-2>.uagb-column__wrap{width:50%}.uagb-columns__columns-3>.uagb-column__wrap{width:33.33%}.uagb-columns__columns-4>.uagb-column__wrap{width:25%}.uagb-columns__columns-5>.uagb-column__wrap{width:20%}.uagb-columns__columns-6>.uagb-column__wrap{width:16.66%}.uagb-columns__gap-nogap>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:0}.uagb-columns__gap-default>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:10px}.uagb-columns__gap-narrow>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:5px}.uagb-columns__gap-extended>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:15px}.uagb-columns__gap-wide>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:20px}.uagb-columns__gap-wider>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:30px}@media (max-width: 976px){.uagb-columns__stack-tablet>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-tablet>.uagb-columns__inner-wrap{display:block}.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}}@media (max-width: 767px){.uagb-columns__stack-mobile>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-mobile>.uagb-columns__inner-wrap{display:block}.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-columns.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll}}@media (max-width: 449px){.uagb-columns__wrap .uagb-column__wrap.uagb-column__background-image{background-attachment:scroll !important}}
4
- .wp-block-uagb-blockquote{padding:0;margin:0 auto}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{font-style:normal;display:block}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{position:relative;display:inline-block;padding:0px;z-index:1;background:#333;padding:10px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon{height:25px;width:25px;display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{height:inherit;width:inherit;display:inherit}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote blockquote.uagb-blockquote{margin:0;padding:0}.wp-block-uagb-blockquote .uagb-blockquote__wrap,.wp-block-uagb-blockquote .uagb-blockquote__wrap *{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s;-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;line-height:1;position:relative;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;color:#1DA1F2;background-color:transparent;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{height:15px;width:15px;margin-right:5px;fill:#fff;vertical-align:middle;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text svg{margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1DA1F2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{content:'';border:solid 0.5em transparent;border-right-color:#1DA1F2;position:absolute;left:-0.8em;top:50%;-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);transform:translateY(-50%) scale(1, 0.65);-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:auto;right:-0.8em;-webkit-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-ms-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-image{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__author-image img{width:50px;height:50px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;flex-direction:row}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img{margin-left:10px;margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}
5
- .uagb-cta__outer-wrap{position:relative}.uagb-cta__outer-wrap .wp-block-button__link svg{fill:currentColor}.uagb-cta__outer-wrap .uagb-cta__content{display:inline-block}.uagb-cta__outer-wrap a.uagb-cta__block-link span{font-size:inherit;vertical-align:middle;display:inline-block;float:left}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__link-wrapper{width:30%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__content{width:70%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:right}.uagb-cta__outer-wrap .uagb-cta__link-wrapper.uagb-cta__block-link-style:empty{display:none}.uagb-cta__outer-wrap a.uagb-cta__block-link,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap{text-decoration:none}.uagb-cta__outer-wrap a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap:hover .entry .entry-content a.uagb-cta__block-link:hover{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content-right{text-align:right;justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{width:100%;word-break:break-word}.uagb-cta__outer-wrap .uagb-cta__icon-position-below-title .uagb-cta__left-right-wrap{display:block;min-width:100%;width:100%}.uagb-cta__outer-wrap .uagb-cta__icon-position-left .uagb-cta__left-right-wrap,.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{display:flex}.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-after{margin-left:5px;margin-right:0}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-before{margin-left:0;margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link-icon,.uagb-cta__outer-wrap .uagb-cta__block svg{transition:all 200ms linear}.uagb-cta__outer-wrap .uagb-cta__block{position:relative}.uagb-cta__outer-wrap .uagb-cta-typeof-button{display:inline-block;line-height:1;background-color:transparent;color:#333;text-align:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__outer-wrap .uagb-cta__content-right.uagb-cta__button-valign-middle .uagb-cta__left-right-wrap{display:flex;align-items:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{justify-content:center}.uagb-cta__outer-wrap .uagb-cta__link-wrapper a{box-shadow:none;text-decoration:none}.uagb-cta__outer-wrap .uagb-cta__title{padding:0;margin:0;display:block}.uagb-cta__outer-wrap .uagb-cta__block,.uagb-cta__outer-wrap .uagb-cta__content{z-index:1}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{z-index:1}.uagb-cta__outer-wrap .uagb-cta__block-link{cursor:pointer}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{display:inline-block;float:right;padding:10px 14px}.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content p:empty{display:none}.uagb-cta__outer-wrap .uagb-cta__button-type-none .uagb-cta__content{width:100%}.uagb-cta__outer-wrap .uagb-cta-with-svg{height:14px;width:14px;line-height:14px;display:inline-block;vertical-align:middle}.uagb-cta__outer-wrap .uagb-cta__block svg{display:block;height:inherit;width:inherit}.uagb-cta__outer-wrap .uagb-cta__align-button-after{margin-left:5px}.uagb-cta__outer-wrap .uagb-cta__align-button-before{margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link i{font-style:normal}.uagb-cta__outer-wrap a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}@media only screen and (max-width: 976px){.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}@media screen and (max-width: 767px){.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}
6
  .wp-block-uagb-cf7-styler .wpcf7 *,.wp-block-uagb-cf7-styler .wpcf7 :after,.wp-block-uagb-cf7-styler .wpcf7 :before{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center;height:15px;width:15px;border-style:solid;border-color:#eaeaea;border-width:1px 1px 1px 1px}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before{content:"\2714";line-height:1.2}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.wp-block-uagb-cf7-styler input[type=checkbox]:checked+span:before{font-size:-webkit-calc(12px / 1.2);font-size:calc(12px / 1.2)}.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-border-radius:100%;border-radius:100%}.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-box .wpcf7-radio input[type="radio"]:checked+span:before,.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-underline .wpcf7-radio input[type="radio"]:checked+span:before{background-color:#545454;box-shadow:inset 0px 0px 0px 4px #fafafa}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto;line-height:1em;background:transparent;border-color:#333;border-width:1px;padding:10px 25px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit{margin-left:auto;margin-right:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.wp-block-uagb-cf7-styler .wpcf7 input[type=checkbox],.wp-block-uagb-cf7-styler .wpcf7 input[type=radio]{display:none}.wp-block-uagb-cf7-styler .wpcf7 select{height:auto;padding:10px;-webkit-appearance:menulist-button;-moz-appearance:menulist-button;-webkit-appearance:menulist-button}.wp-block-uagb-cf7-styler select.wpcf7-form-control.wpcf7-select[multiple="multiple"]{padding:0}.wp-block-uagb-cf7-styler .wpcf7 select option{padding:10px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__highlight-style-bottom_right span.wpcf7-not-valid-tip{display:inline-block;right:0;top:100%;padding:.1em .8em;-webkit-border-radius:2px;border-radius:2px;color:#ffffff;background-color:rgba(255,0,0,0.6);padding:5px 10px;font-size:15px;float:right;margin-top:5px}.wp-block-uagb-cf7-styler .wpcf7 input[type="number"]{height:auto}.wp-block-uagb-cf7-styler .wpcf7 input.wpcf7-date{-webkit-appearance:none}@media (min-width: 769px){.wp-block-uagb-cf7-styler .uagb-cf7_styler-col{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col label,.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;flex-basis:100%}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col br{display:none}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-1{padding-left:0;padding-right:15px}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-3{padding-left:15px;padding-right:0}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col span.wpcf7-form-control-wrap{height:100%}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col select{height:100%}}
7
- .uagb-timeline__widget{position:relative;display:flex;align-items:flex-start;font-size:inherit;color:inherit;margin-bottom:inherit}.uagb-timeline__widget a{text-decoration:none;color:inherit;font-size:inherit;margin-bottom:inherit}.uagb-timeline__image a{display:block;position:relative;max-width:100%}.uagb-timeline__image img{display:inline-block;box-sizing:content-box}.uagb-timeline__author{text-transform:uppercase}.uagb-timeline__main{position:relative}.uagb-content{word-break:break-word}a.uagb-timeline__link{padding:5px 10px;display:inline-block}.uagb-timeline__headingh1,.uagb-timeline__headingh2,.uagb-timeline__headingh3,.uagb-timeline__headingh4,.uagb-timeline__headingh5,.uagb-timeline__headingh6{margin-bottom:0px}.uagb-timeline__inner-date-new p,.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0px}.uagb-timeline__line{background-color:#eeeeee}.uagb-timeline__line__inner{background-color:#5cb85c;width:100%}.uagb-timeline__main .uagb-timeline__icon-new{line-height:1em;display:inline-block;vertical-align:middle;font-style:normal}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right,.uagb-timeline__right-block .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__right-block .uagb-timeline__center-block .uagb-timeline__date-new{display:block}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__right-block .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{top:0;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__right-block .uagb-timeline__day-new{margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__right-block .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__left-block .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__left-block .uagb-timeline__day-new{margin-left:14px;flex-grow:1;order:1}.uagb-timeline__left-block .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{top:0;width:10px;height:40px;position:absolute}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__marker{background-color:#eeeeee;border-radius:999px;position:relative;display:flex;align-items:center;justify-content:center;z-index:1;transition:all .2s ease-in-out}.uagb-timeline__main .uagb-timeline__days .uagb-timeline__field-wrap:hover .uagb-timeline__marker{transition:all .2s ease-in-out}.uagb-timeline__center-block .uagb-timeline__marker{order:1;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{flex-grow:1;flex-basis:50%;max-width:100%;position:relative}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2;padding-left:0;padding-right:12px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2;padding-right:0;padding-left:12px}.uagb-timeline__events-inner-new{padding:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{display:flex;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{display:flex;justify-content:flex-start}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__right-block .uagb-timeline__date-new{margin-left:10px}.uagb-timeline__right-block .uagb-timeline__date-new{display:flex;align-items:center}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__arrow-center .uagb-timeline__widget{align-items:center}.uagb-timeline__arrow-bottom .uagb-timeline__widget{align-items:flex-end}.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;transform:translateY(-100%)}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new,.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{transition:background .2s ease-in-out}.uagb-timeline__arrow:after{transition:border-color .2s ease-in-out}.uagb-timeline__date-new{transition:color .2s ease-in-out}.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__main .uagb-timeline__year{display:flex;position:relative}.uagb-timeline__main .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__day-left .uagb-timeline__arrow:after{content:'';left:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow:after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__icon{width:100px;height:100px;-webkit-border-radius:50%;border-radius:50%;text-align:center;line-height:100px;vertical-align:middle;position:relative;z-index:1}.uagb-timeline__main .uagb-timeline__date .uagb-timeline__inner-date-new{white-space:nowrap;margin:0px}.uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-timeline__right-block .uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block .uagb-timeline__line{left:50%;right:auto}.uagb-timeline__main .in-view i.uagb-timeline__in-view-icon{-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-in-out;-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out;transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out}.uagb-timeline__left-block .uagb-timeline__days{text-align:left}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block .uagb-timeline__days{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__days{text-align:right}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}.uagb-timeline__line__inner{background-color:#61ce70;width:100%}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__line{width:3px}.uagb-timeline__main .uagb-timeline__icon-new{font-size:16px}.uagb-timeline__marker{min-height:3em;min-width:3em;line-height:3em}.uagb-timeline__arrow{height:3em}.uagb-timeline__left-block .uagb-timeline__line{left:calc(3em / 2)}.uagb-timeline__right-block .uagb-timeline__line{right:calc(3em / 2)}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:calc(3em / 2);left:auto}.rtl .uagb-timeline__right-block .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline-desc-content p{font-size:inherit}.uagb-timeline__main p:empty{display:none}@media (max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-ms-flex-order:0;order:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}@media (max-width: 767px){.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:calc(3em / 2);left:auto}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}
 
8
  .wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__wrapper,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-item{height:100%}
9
- .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:focus,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:active{outline:thin dotted}.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center;width:100%}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child .uagb-faq-content span{display:inline-block}.wp-block-uagb-faq-child .uagb-faq-content p{margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
10
- .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0;height:auto;border:1px solid #AAA;-webkit-border-radius:0;border-radius:0;background:#FFF;-webkit-box-shadow:none;box-shadow:none;color:#444;text-decoration:none;white-space:nowrap}.uagb-gf-styler__gform-heading-none .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading.custom_gform_heading{display:none}.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading.custom_gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading{display:block}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#FFF}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=submit]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom:after{content:"\f078";font-family:'FontAwesome' !important;font-size:0.7em;line-height:1;position:absolute;top:45%;-webkit-transform:translateY(-45%);-ms-transform:translateY(-45%);transform:translateY(-45%);right:0.5em;pointer-events:none;z-index:5}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]:checked+label:before{box-shadow:inset 0px 0px 0px 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;-moz-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]+label:before{-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=button]{font-size:13px;padding:10px 20px;-webkit-border-radius:2px;border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:13px;padding:8px 10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:13px;padding:6px 10px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:10px;width:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 10px / 1.2);font-size:calc( 10px / 1.2)}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=button]{font-size:15px;padding:12px 24px;-webkit-border-radius:3px;border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:15px;padding:12px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:15px;padding:10px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:12px;width:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 12px / 1.2);font-size:calc( 12px / 1.2)}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=button]{font-size:16px;padding:15px 30px;-webkit-border-radius:4px;border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:16px;padding:15px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:16px;padding:13px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:15px;width:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 15px / 1.2);font-size:calc( 15px / 1.2)}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=button]{font-size:18px;padding:20px 40px;-webkit-border-radius:5px;border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:18px;padding:20px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:18px;padding:18px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:20px;width:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 20px / 1.2);font-size:calc( 20px / 1.2)}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=button]{font-size:20px;padding:25px 50px;-webkit-border-radius:6px;border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:20px;padding:25px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:20px;padding:23px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:25px;width:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-size:-webkit-calc( 25px / 1.2);font-size:calc( 25px / 1.2)}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){padding:0 0 0 0;margin-right:0;margin-left:0;width:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before{-webkit-border-radius:100%;border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0}.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']+label:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']:checked+label:before{content:"\2714";line-height:1.2}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type=submit]{display:block;text-align:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"]{padding:0px 0px 0px 0px}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{margin-bottom:0;width:100%}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}
11
  .uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
12
- .uagb-howto__cost-wrap{display:block}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:block}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}
13
- .uagb-icon-list__outer-wrap .uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:focus,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:active,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:visited{text-decoration:none}.uagb-icon-list__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap,.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{width:inherit;display:inline-block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{display:inherit;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon,.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon:before{font-size:40px;width:40px;height:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap span.uagb-icon-list__source-wrap{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon svg{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:first-child{margin-left:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:last-child{margin-right:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper[href="/"]{pointer-events:none;cursor:text}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap .uagb-icon-list__wrapper{text-decoration:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap .uagb-icon-list__wrapper{box-shadow:none}.uagb-icon-list__outer-wrap.uagb-icon-list__icon-at-top .uagb-icon-list__source-wrap{align-self:flex-start}.uagb-icon-list__outer-wrap:not(.uagb-icon-list__no-label) .uagb-icon-list__source-wrap{margin-right:15px}.uagb-icon-list__no-label .uagb-icon-list__label-wrap{display:none}
14
  .wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}
15
- .uagb-ifb-icon-wrap,.uagb-ifb-icon-wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-icon-wrap .uagb-ifb-icon,.uagb-ifb-content{display:inline-block}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.infobox-icon-above-title .uagb-ifb-left-right-wrap{text-align:center}a.uagb-infobox-cta-link span{font-size:inherit}.uagb-ifb-cta.uagb-infobox-cta-link-style:empty{display:none}a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none}a.uagb-infobox-cta-link:hover,.entry .entry-content a.uagb-infobox-cta-link:hover,a.uagb-infobox-link-wrap:hover,.entry .entry-content a.uagb-infobox-link-wrap:hover .entry .entry-content a.uagb-infobox-cta-link:hover{color:inherit}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-left{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.uagb-infobox-center{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center}.uagb-infobox-right{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-left-right-wrap{width:100%;word-break:break-word}.uagb-infobox-icon-above-title .uagb-ifb-left-right-wrap,.uagb-infobox-icon-below-title .uagb-ifb-left-right-wrap{display:block;min-width:100%;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-icon-wrap .uagb-ifb-icon span{font-style:initial;height:auto;width:auto}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content{display:inline-block;line-height:0;position:relative;max-width:100%}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content img{display:inline;height:auto !important;max-width:100%;width:auto;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-ifb-imgicon-wrap .uagb-image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-ifb-imgicon-wrap .uagb-image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-infobox-module-link{position:absolute;width:100%;height:100%;left:0;top:0;bottom:0;right:0;z-index:4}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-left:5px;margin-right:0}.uagb-infobox-link-icon-before{margin-left:0;margin-right:5px}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox{position:relative}.uagb-ifb-separator{width:30%;border-top-width:2px;border-top-color:#333;border-top-style:solid;display:inline-block;margin:0}.uagb-ifb-separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px}.uagb-ifb-cta-button{display:inline-block;line-height:1;background-color:#818a91;color:#fff;text-align:center}.uagb-ifb-button-wrapper .wp-block-button__link svg{fill:currentColor}.uagb-ifb-cta a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title-wrap .uagb-ifb-title,.uagb-ifb-title-wrap .uagb-ifb-title-prefix{padding:0;margin:0;display:block}.uagb-infobox__content-wrap.uagb-infobox{position:relative}.uagb-ifb-icon span{font-size:40px;height:40px;color:#333;width:40px}.uagb-ifb-icon svg{fill:#333}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}.uagb-ifb-left-right-wrap{z-index:1}.uagb-infobox-cta-link{cursor:pointer}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox .uagb-ifb-icon,.uagb-infobox .uagb-ifb-image-content img{display:inline-block;box-sizing:content-box}.uagb-ifb-align-icon-after{margin-left:5px}.uagb-ifb-align-icon-before{margin-right:5px}span.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-text-icon{height:15px;width:15px;font-size:15px;line-height:15px;vertical-align:middle;display:inline-block}.uagb-ifb-button-icon svg,.uagb-ifb-text-icon svg{height:inherit;width:inherit;display:inline-block}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox__outer-wrap{position:relative}a.uagb-infbox__link-to-all{height:100%;width:100%;top:0;left:0;position:absolute;z-index:3;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-mobile.uagb-reverse-order-mobile .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}
16
  .uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice .uagb-notice-title{margin:0;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;display:inline-block}.wp-block-uagb-inline-notice .uagb-notice-text{border:solid 2px #000;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss svg{width:16px;height:16px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss{position:absolute;cursor:pointer;top:13px;opacity:.8;padding:0;background:none;transition:.3s ease}
17
  .wp-block-uagb-marketing-button .uagb-marketing-btn__wrap>p,.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{display:inline-block;position:relative;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap{width:20px;height:20px;display:flex;z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap svg{width:inherit;height:inherit}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix-wrap{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix-wrap{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix-wrap{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__title-wrap{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none}
18
- .uagb-buttons__outer-wrap .uagb-buttons__wrap{display:flex;align-items:center;justify-content:center}.uagb-buttons__outer-wrap a{color:inherit}
19
- .uagb-buttons-repeater{display:flex;justify-content:center;align-items:center}.uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center;width:15px}.uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}
20
- .uagb-post-grid{margin:0;position:relative}.uagb-post-grid .uagb-post__load-more-wrap{width:100%}.uagb-post-grid .uagb-post__load-more-wrap .uagb-post-pagination-button{cursor:pointer}.uagb-post-grid .uagb-post__load-more-wrap a{color:inherit}.uagb-post-grid .is-grid article{float:left;display:inline-block}.uagb-post-grid .uagb-post__items{display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uagb-post-grid .is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:100%}.uagb-post-grid .is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__inner-wrap>p{display:none}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px}.uagb-post-grid .uagb-post__columns-8 article{width:12.5%}.uagb-post-grid .uagb-post__columns-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-5 article{width:20%}.uagb-post-grid .uagb-post__columns-4 article{width:25%}.uagb-post-grid .uagb-post__columns-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-2 article{width:50%}.uagb-post-grid .uagb-post__columns-1 article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*="columns"].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%}.uagb-post-grid .uagb-post__text{text-align:left;box-sizing:border-box}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:15px;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline{text-transform:uppercase;font-size:11px;letter-spacing:1px;margin-bottom:15px}.uagb-post-grid .uagb-post__text .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child):after,.uagb-post-grid .uagb-post__date:not(:last-child):after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{margin-bottom:25px;word-break:break-word}.uagb-post-grid .uagb-post__text p{margin:0 0 15px 0}.uagb-post-grid .uagb-post__text p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block}.uagb-post-grid .uagb-post__link{display:inline-block;box-shadow:none;transition:.3s ease;font-weight:bold;color:inherit;text-decoration:none;padding:5px 10px}.uagb-post-grid .uagb-post__excerpt div+p{margin-top:15px}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.uagb-post-grid .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:relative}.uagb-post__image-position-background .uagb-post__image{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,0.5)}.uagb-post-grid[data-equal-height="yes"] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:-45px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:-45px;right:auto}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid .is-grid article,.uagb-post-grid .is-masonry article,.uagb-post-grid .is-carousel article{box-sizing:border-box}@media (max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}.uagb-post-grid .uagb-post__columns-tablet-1 article{width:100%}.uagb-post-grid .uagb-post__columns-tablet-2 article{width:50%}.uagb-post-grid .uagb-post__columns-tablet-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-tablet-4 article{width:25%}.uagb-post-grid .uagb-post__columns-tablet-5 article{width:20%}.uagb-post-grid .uagb-post__columns-tablet-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}@media (max-width: 767px){.uagb-post-grid .uagb-post__columns-mobile-1 article{width:100%}.uagb-post-grid .uagb-post__columns-mobile-2 article{width:50%}.uagb-post-grid .uagb-post__columns-mobile-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-mobile-4 article{width:25%}.uagb-post-grid .uagb-post__columns-mobile-5 article{width:20%}.uagb-post-grid .uagb-post__columns-mobile-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:inline-block}.uagb-post-grid .uagb-post-inf-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.uagb-post-grid .uagb-post-inf-loader div{width:18px;height:18px;background-color:#0085ba;-webkit-border-radius:100%;border-radius:100%;display:inline-block;-webkit-animation:sk-bouncedelay 1.4s infinite ease-in-out both;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}@-webkit-keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}
21
- .uagb-rest_menu__wrap{position:relative;padding-left:5px;padding-right:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.uagb-rest_menu__wrap,.uagb-rest_menu__wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-rm__image img,.slick-slide .uagb-rm__image img{display:inline-block;box-sizing:content-box}.uagb-rm__title,.uagb-rm__price{display:inline-block}.uagb-rm__desc{margin-bottom:15px;font-style:italic}.uagb-rm__content{overflow:hidden;text-align:left;word-break:break-word;padding:15px;border-radius:inherit;position:relative;padding:5px}.uagb-rm__image-position-left .uagb-rm__content,.uagb-rm__image-position-right .uagb-rm__content{display:-ms-flexbox;-js-display:flex;display:flex}.uagb-rm-details{display:table;width:100%}.uagb-rm__title-wrap,.uagb-rm__price-wrap{display:table-cell}.uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:85%}.uagb-rm__price-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:15%}.uagb-rm__title,.uagb-rm__price{display:block}.uagb-rm__align-center .uagb-rm-details,.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%}.uagb-rm__image-aligned-middle .uagb-rm__image-content{-ms-flex-item-align:center;align-self:center}.uagb-rm__image{overflow:hidden}.uagb-rm__title{margin-bottom:5px;font-size:20px}.uagb-rm__price{font-style:italic;text-align:right}.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%;text-align:center}.uagb-rm__align-center .uagb-rm__price{text-align:center}.uagb-rm__align-right .uagb-rm-details{display:flex;width:100%;flex-direction:row-reverse}.uagb-rm__align-right .uagb-rm__price{text-align:left}.uagb-rm__align-left .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:unset;text-align:left}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__image-content{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:row-reverse;text-align:right}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__image-content{text-align:right}.uagb-rest_menu__outer-wrap{position:relative}.uagb-rm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm-parent{padding:30px}.uagb-rm__text-wrap{position:relative;display:block;width:100%}.uagb-rest_menu__wrap{position:relative}.uagb-rest_menu__outer-wrap:after{content:"";display:block;clear:both}.uagb-rest_menu__wrap.uagb-rm__desk-column-3{display:block;width:33%;float:left;width:calc(100% / 3);padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-2{display:block;width:49%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-1{display:block;width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex}.uagb-rm__separator{width:100%;border-top-width:1px;border-top-color:#b2b4b5;border-top-style:inherit}.uagb-rm__image-position-left .uagb-rm__image{margin-right:10px}.uagb-rm__image-position-right .uagb-rm__image{margin-left:10px}@media (max-width: 976px){.uagb-rm__image-position-left.uagb-rm-stacked-tablet .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm-reverse-order-tablet .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__tablet-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}@media (max-width: 767px){.uagb-rm__image-position-left.uagb-rm-stacked-mobile .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm-reverse-order-mobile .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__mobile-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}
22
  .uagb-section__wrap{position:relative}.uagb-section__wrap .uagb-section__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-section__wrap .uagb-section__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-section__wrap .uagb-section__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-section__wrap .uagb-section__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-section.uagb-section__wrap.uagb-section__background-image{background-attachment:scroll}}
23
- .uagb-social-share__outer-wrap .uagb-social-share__wrap{display:flex;align-items:center;justify-content:center}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}.uagb-social-share__outer-wrap .uagb-ss__wrapper:first-child{margin-left:0}.uagb-social-share__outer-wrap .uagb-ss__wrapper:last-child{margin-right:0}.uagb-social-share__layout-vertical .uagb-social-share__wrap{flex-direction:column}@media (max-width: 976px){.uagb-social-share__layout-horizontal .uagb-ss__wrapper{margin-left:0;margin-right:0}}
 
24
  .wp-block-uagb-social-share .uagb-social-share__wrap .uagb-social-share__wrapper{text-decoration:none}.uagb-social-share__wrap .uagb-social-share__wrapper{box-shadow:none}.uagb-social-share__outer-wrap:not(.uagb-social-share__no-label) .uagb-social-share__source-wrap{margin-right:15px}.uagb-social-share__outer-wrap.uagb-social-share__icon-at-top .uagb-social-share__source-wrap{-ms-flex-item-align:flex-start;align-self:flex-start;margin-top:5px}
 
 
25
  .wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:1.2em;padding-left:0px;margin-bottom:0}.wp-block-uagb-table-of-contents ul.uagb-toc__list li{margin:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.wp-block-uagb-table-of-contents.uagb-toc__align-left{text-align:left}.wp-block-uagb-table-of-contents.uagb-toc__align-center{text-align:center}.wp-block-uagb-table-of-contents.uagb-toc__align-right{text-align:right}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center;justify-content:space-between}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{margin-left:10px;display:flex;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.uagb-toc__list .uagb-toc__list{list-style-type:circle}.uagb-toc__scroll-top.dashicons{display:none;position:fixed;bottom:50px;right:50px;padding:10px;background:#ccd0d4;cursor:pointer}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}
26
  .uagb-team__outer-wrap .uagb-team__prefix{font-size:15px;font-style:italic;color:#888}.uagb-team__outer-wrap .uagb-team__image-wrap img{display:inline;height:auto !important;max-width:100%;width:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-team__outer-wrap .uagb-team__social-icon-wrap ul{list-style:none;display:flex}.uagb-team__outer-wrap .uagb-team__social-icon a span,.uagb-team__outer-wrap .uagb-team__social-icon a span:before{color:inherit;font-size:inherit;height:inherit;width:inherit}.uagb-team__outer-wrap .uagb-team__social-icon a{font-size:20px;width:20px;height:20px;color:#333;display:block}.uagb-team__outer-wrap .uagb-team__social-icon{margin-right:20px;margin-left:0}.uagb-team__outer-wrap .uagb-team__social-list{margin:0;padding:0}.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.uagb-team__image-position-left .uagb-team__wrap,.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.uagb-team__image-position-left .uagb-team__content{text-align:left}.uagb-team__image-position-right .uagb-team__content{text-align:right}.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;margin:0;padding:0}.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;margin:0;padding:0}.uagb-team__image-position-left li{margin-right:5px}.uagb-team__image-position-right li{margin-left:5px}.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}@media only screen and (max-width: 976px){.uagb-team__stack-tablet,.uagb-team__stack-tablet .uagb-team__content{text-align:center}.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.uagb-team__stack-tablet .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.uagb-team__stack-mobile,.uagb-team__stack-mobile .uagb-team__content{text-align:center}.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.uagb-team__stack-mobile .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}
27
- .uagb-testimonial__wrap{position:relative;box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{transition:all 0.2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__author-name,.uagb-tm__company{display:inline-block}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;padding:15px;border-radius:inherit;position:relative}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:flex}.uagb-tm__meta-inner{display:inline-block}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__meta{width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{align-self:center}.uagb-tm__desc{margin-bottom:15px}.uagb-tm__author-name{margin-bottom:5px;font-size:30px;line-height:1em}.uagb-tm__company{font-size:15px;font-style:italic;line-height:1em;color:#888888}.is-carousel .uagb-testomonial__outer-wrap{padding-left:10px;padding-right:10px}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__text-wrap{position:relative}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:flex;justify-content:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-45px}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-prev{left:25px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-next{right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:-45px;right:auto}@media (max-width: 976px){.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-tablet.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-tablet.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-tablet.uagb-tm__image-position-right.uagb-tm-reverse-order-tablet .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-tablet.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:15px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:auto;right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{left:15px;right:auto}}@media (max-width: 768px){.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-mobile.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-mobile.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-mobile.uagb-tm__image-position-right.uagb-tm-reverse-order-mobile .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-mobile.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}}
28
  .wp-block-uagb-wp-search.uagb-wp-search__outer-wrap{min-height:20px;width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button svg{fill:currentColor}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input svg{fill:currentColor;opacity:0.6}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
 
 
 
 
 
1
+ .uagb-buttons-repeater{display:flex;justify-content:center;align-items:center}.uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center;width:15px}.uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}
2
+ .uagb-buttons__outer-wrap .uagb-buttons__wrap{display:flex;align-items:center;justify-content:center}.uagb-buttons__outer-wrap a{color:inherit}
3
  .wp-block-uagb-advanced-heading{padding:0;margin:0 auto}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator-wrap{font-size:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator{border-top-style:solid;display:inline-block;border-top-width:2px;width:5%;margin:0px 0px 10px 0px}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0;text-align:center}
4
  .uagb-column__wrap{position:relative;overflow:hidden}.uagb-column__wrap .uagb-column__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2;width:100%}.uagb-column__wrap.uagb-column__align-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__wrap.uagb-column__align-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}.uagb-column__wrap .uagb-column__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-column__wrap .uagb-column__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-column__wrap .uagb-column__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;flex:1;padding-left:0;padding-right:0;margin-left:-14px;margin-right:-14px;min-width:0;word-break:break-word;overflow-wrap:break-word;flex-basis:100%}@media (max-width: 976px){.uagb-column__align-tablet-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-tablet-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 767px){.uagb-column__align-mobile-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-mobile-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 449px){.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll !important}}
 
 
 
5
  .wp-block-uagb-cf7-styler .wpcf7 *,.wp-block-uagb-cf7-styler .wpcf7 :after,.wp-block-uagb-cf7-styler .wpcf7 :before{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center;height:15px;width:15px;border-style:solid;border-color:#eaeaea;border-width:1px 1px 1px 1px}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before{content:"\2714";line-height:1.2}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.wp-block-uagb-cf7-styler input[type=checkbox]:checked+span:before{font-size:-webkit-calc(12px / 1.2);font-size:calc(12px / 1.2)}.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-border-radius:100%;border-radius:100%}.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-box .wpcf7-radio input[type="radio"]:checked+span:before,.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-underline .wpcf7-radio input[type="radio"]:checked+span:before{background-color:#545454;box-shadow:inset 0px 0px 0px 4px #fafafa}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto;line-height:1em;background:transparent;border-color:#333;border-width:1px;padding:10px 25px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit{margin-left:auto;margin-right:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.wp-block-uagb-cf7-styler .wpcf7 input[type=checkbox],.wp-block-uagb-cf7-styler .wpcf7 input[type=radio]{display:none}.wp-block-uagb-cf7-styler .wpcf7 select{height:auto;padding:10px;-webkit-appearance:menulist-button;-moz-appearance:menulist-button;-webkit-appearance:menulist-button}.wp-block-uagb-cf7-styler select.wpcf7-form-control.wpcf7-select[multiple="multiple"]{padding:0}.wp-block-uagb-cf7-styler .wpcf7 select option{padding:10px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__highlight-style-bottom_right span.wpcf7-not-valid-tip{display:inline-block;right:0;top:100%;padding:.1em .8em;-webkit-border-radius:2px;border-radius:2px;color:#ffffff;background-color:rgba(255,0,0,0.6);padding:5px 10px;font-size:15px;float:right;margin-top:5px}.wp-block-uagb-cf7-styler .wpcf7 input[type="number"]{height:auto}.wp-block-uagb-cf7-styler .wpcf7 input.wpcf7-date{-webkit-appearance:none}@media (min-width: 769px){.wp-block-uagb-cf7-styler .uagb-cf7_styler-col{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col label,.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;flex-basis:100%}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col br{display:none}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-1{padding-left:0;padding-right:15px}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-3{padding-left:15px;padding-right:0}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col span.wpcf7-form-control-wrap{height:100%}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col select{height:100%}}
6
+ .uagb-cta__outer-wrap{position:relative}.uagb-cta__outer-wrap .wp-block-button__link svg{fill:currentColor}.uagb-cta__outer-wrap .uagb-cta__content{display:inline-block}.uagb-cta__outer-wrap a.uagb-cta__block-link span{font-size:inherit;vertical-align:middle;display:inline-block;float:left}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__link-wrapper{width:30%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__content{width:70%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:right}.uagb-cta__outer-wrap .uagb-cta__link-wrapper.uagb-cta__block-link-style:empty{display:none}.uagb-cta__outer-wrap a.uagb-cta__block-link,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap{text-decoration:none}.uagb-cta__outer-wrap a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap:hover .entry .entry-content a.uagb-cta__block-link:hover{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content-right{text-align:right;justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{width:100%;word-break:break-word}.uagb-cta__outer-wrap .uagb-cta__icon-position-below-title .uagb-cta__left-right-wrap{display:block;min-width:100%;width:100%}.uagb-cta__outer-wrap .uagb-cta__icon-position-left .uagb-cta__left-right-wrap,.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{display:flex}.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-after{margin-left:5px;margin-right:0}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-before{margin-left:0;margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link-icon,.uagb-cta__outer-wrap .uagb-cta__block svg{transition:all 200ms linear}.uagb-cta__outer-wrap .uagb-cta__block{position:relative}.uagb-cta__outer-wrap .uagb-cta-typeof-button{display:inline-block;line-height:1;background-color:transparent;color:#333;text-align:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__outer-wrap .uagb-cta__content-right.uagb-cta__button-valign-middle .uagb-cta__left-right-wrap{display:flex;align-items:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{justify-content:center}.uagb-cta__outer-wrap .uagb-cta__link-wrapper a{box-shadow:none;text-decoration:none}.uagb-cta__outer-wrap .uagb-cta__title{padding:0;margin:0;display:block}.uagb-cta__outer-wrap .uagb-cta__block,.uagb-cta__outer-wrap .uagb-cta__content{z-index:1}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{z-index:1}.uagb-cta__outer-wrap .uagb-cta__block-link{cursor:pointer}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{display:inline-block;float:right;padding:10px 14px}.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content p:empty{display:none}.uagb-cta__outer-wrap .uagb-cta__button-type-none .uagb-cta__content{width:100%}.uagb-cta__outer-wrap .uagb-cta-with-svg{height:14px;width:14px;line-height:14px;display:inline-block;vertical-align:middle}.uagb-cta__outer-wrap .uagb-cta__block svg{display:block;height:inherit;width:inherit}.uagb-cta__outer-wrap .uagb-cta__align-button-after{margin-left:5px}.uagb-cta__outer-wrap .uagb-cta__align-button-before{margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link i{font-style:normal}.uagb-cta__outer-wrap a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}@media only screen and (max-width: 976px){.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}@media screen and (max-width: 767px){.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}
7
+ .wp-block-uagb-blockquote{padding:0;margin:0 auto}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{font-style:normal;display:block}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{position:relative;display:inline-block;padding:0px;z-index:1;background:#333;padding:10px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon{height:25px;width:25px;display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{height:inherit;width:inherit;display:inherit}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote blockquote.uagb-blockquote{margin:0;padding:0}.wp-block-uagb-blockquote .uagb-blockquote__wrap,.wp-block-uagb-blockquote .uagb-blockquote__wrap *{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s;-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;line-height:1;position:relative;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;color:#1DA1F2;background-color:transparent;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{height:15px;width:15px;margin-right:5px;fill:#fff;vertical-align:middle;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text svg{margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1DA1F2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{content:'';border:solid 0.5em transparent;border-right-color:#1DA1F2;position:absolute;left:-0.8em;top:50%;-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);transform:translateY(-50%) scale(1, 0.65);-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:auto;right:-0.8em;-webkit-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-ms-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-image{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__author-image img{width:50px;height:50px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;flex-direction:row}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img{margin-left:10px;margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}
8
  .wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__wrapper,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-item{height:100%}
9
+ .uagb-columns__wrap{position:relative}.uagb-columns__wrap .uagb-columns__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-columns__wrap .uagb-columns__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-columns__wrap .uagb-columns__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-columns__wrap .uagb-columns__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.uagb-columns__wrap .uagb-column__wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.uagb-columns__wrap .uagb-columns__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr;z-index:1}.uagb-columns__wrap .uagb-columns__shape-top{top:-3px}.uagb-columns__wrap .uagb-columns__shape-bottom{bottom:-3px}.uagb-columns__wrap .uagb-columns__shape[data-negative="false"].uagb-columns__shape-bottom{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape[data-negative="true"].uagb-columns__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-columns__wrap .uagb-columns__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-columns__wrap .uagb-columns__shape .uagb-columns__shape-fill{fill:#333;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-above-content{z-index:9;pointer-events:none}.uagb-columns__valign-center .uagb-column__wrap,.uagb-columns__valign-middle .uagb-column__wrap{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.uagb-columns__valign-top .uagb-column__wrap{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.uagb-columns__valign-bottom .uagb-column__wrap{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.uagb-columns__inner-wrap{display:flex;flex-wrap:nowrap}.uagb-columns__columns-1>.uagb-column__wrap{width:100%}.uagb-columns__columns-2>.uagb-column__wrap{width:50%}.uagb-columns__columns-3>.uagb-column__wrap{width:33.33%}.uagb-columns__columns-4>.uagb-column__wrap{width:25%}.uagb-columns__columns-5>.uagb-column__wrap{width:20%}.uagb-columns__columns-6>.uagb-column__wrap{width:16.66%}.uagb-columns__gap-nogap>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:0}.uagb-columns__gap-default>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:10px}.uagb-columns__gap-narrow>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:5px}.uagb-columns__gap-extended>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:15px}.uagb-columns__gap-wide>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:20px}.uagb-columns__gap-wider>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:30px}@media (max-width: 976px){.uagb-columns__stack-tablet>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-tablet>.uagb-columns__inner-wrap{display:block}.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}}@media (max-width: 767px){.uagb-columns__stack-mobile>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-mobile>.uagb-columns__inner-wrap{display:block}.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-columns.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll}}@media (max-width: 449px){.uagb-columns__wrap .uagb-column__wrap.uagb-column__background-image{background-attachment:scroll !important}}
 
10
  .uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
11
+ .uagb-howto__cost-wrap{display:block}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:block}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}.uagb-howto__time-wrap .uagb-howto-timeINmin-text{margin-left:5px}
 
12
  .wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}
 
13
  .uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice .uagb-notice-title{margin:0;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;display:inline-block}.wp-block-uagb-inline-notice .uagb-notice-text{border:solid 2px #000;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss svg{width:16px;height:16px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss{position:absolute;cursor:pointer;top:13px;opacity:.8;padding:0;background:none;transition:.3s ease}
14
  .wp-block-uagb-marketing-button .uagb-marketing-btn__wrap>p,.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{display:inline-block;position:relative;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap{width:20px;height:20px;display:flex;z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap svg{width:inherit;height:inherit}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix-wrap{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix-wrap{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix-wrap{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__title-wrap{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none}
15
+ .uagb-ifb-icon-wrap,.uagb-ifb-icon-wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-icon-wrap .uagb-ifb-icon,.uagb-ifb-content{display:inline-block}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.infobox-icon-above-title .uagb-ifb-left-right-wrap{text-align:center}a.uagb-infobox-cta-link span{font-size:inherit}.uagb-ifb-cta.uagb-infobox-cta-link-style:empty{display:none}a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none}a.uagb-infobox-cta-link:hover,.entry .entry-content a.uagb-infobox-cta-link:hover,a.uagb-infobox-link-wrap:hover,.entry .entry-content a.uagb-infobox-link-wrap:hover .entry .entry-content a.uagb-infobox-cta-link:hover{color:inherit}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-left{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.uagb-infobox-center{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center}.uagb-infobox-right{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-left-right-wrap{width:100%;word-break:break-word}.uagb-infobox-icon-above-title .uagb-ifb-left-right-wrap,.uagb-infobox-icon-below-title .uagb-ifb-left-right-wrap{display:block;min-width:100%;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-icon-wrap .uagb-ifb-icon span{font-style:initial;height:auto;width:auto}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content{display:inline-block;line-height:0;position:relative;max-width:100%}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content img{display:inline;height:auto !important;max-width:100%;width:auto;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-ifb-imgicon-wrap .uagb-image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-ifb-imgicon-wrap .uagb-image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-infobox-module-link{position:absolute;width:100%;height:100%;left:0;top:0;bottom:0;right:0;z-index:4}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-left:5px;margin-right:0}.uagb-infobox-link-icon-before{margin-left:0;margin-right:5px}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox{position:relative}.uagb-ifb-separator{width:30%;border-top-width:2px;border-top-color:#333;border-top-style:solid;display:inline-block;margin:0}.uagb-ifb-separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px}.uagb-ifb-cta-button{display:inline-block;line-height:1;background-color:#818a91;color:#fff;text-align:center}.uagb-ifb-button-wrapper .wp-block-button__link svg{fill:currentColor}.uagb-ifb-cta a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title-wrap .uagb-ifb-title,.uagb-ifb-title-wrap .uagb-ifb-title-prefix{padding:0;margin:0;display:block}.uagb-infobox__content-wrap.uagb-infobox{position:relative}.uagb-ifb-icon span{font-size:40px;height:40px;color:#333;width:40px}.uagb-ifb-icon svg{fill:#333}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}.uagb-ifb-left-right-wrap{z-index:1}.uagb-infobox-cta-link{cursor:pointer}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox .uagb-ifb-icon,.uagb-infobox .uagb-ifb-image-content img{display:inline-block;box-sizing:content-box}.uagb-ifb-align-icon-after{margin-left:5px}.uagb-ifb-align-icon-before{margin-right:5px}span.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-text-icon{height:15px;width:15px;font-size:15px;line-height:15px;vertical-align:middle;display:inline-block}.uagb-ifb-button-icon svg,.uagb-ifb-text-icon svg{height:inherit;width:inherit;display:inline-block}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox__outer-wrap{position:relative}a.uagb-infbox__link-to-all{height:100%;width:100%;top:0;left:0;position:absolute;z-index:3;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-mobile.uagb-reverse-order-mobile .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}
 
 
 
16
  .uagb-section__wrap{position:relative}.uagb-section__wrap .uagb-section__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-section__wrap .uagb-section__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-section__wrap .uagb-section__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-section__wrap .uagb-section__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-section.uagb-section__wrap.uagb-section__background-image{background-attachment:scroll}}
17
+ .uagb-rest_menu__wrap{position:relative;padding-left:5px;padding-right:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.uagb-rest_menu__wrap,.uagb-rest_menu__wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-rm__image img,.slick-slide .uagb-rm__image img{display:inline-block;box-sizing:content-box}.uagb-rm__title,.uagb-rm__price{display:inline-block}.uagb-rm__desc{margin-bottom:15px;font-style:italic}.uagb-rm__content{overflow:hidden;text-align:left;word-break:break-word;padding:15px;border-radius:inherit;position:relative;padding:5px}.uagb-rm__image-position-left .uagb-rm__content,.uagb-rm__image-position-right .uagb-rm__content{display:-ms-flexbox;-js-display:flex;display:flex}.uagb-rm-details{display:table;width:100%}.uagb-rm__title-wrap,.uagb-rm__price-wrap{display:table-cell}.uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:85%}.uagb-rm__price-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:15%}.uagb-rm__title,.uagb-rm__price{display:block}.uagb-rm__align-center .uagb-rm-details,.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%}.uagb-rm__image-aligned-middle .uagb-rm__image-content{-ms-flex-item-align:center;align-self:center}.uagb-rm__image{overflow:hidden}.uagb-rm__title{margin-bottom:5px;font-size:20px}.uagb-rm__price{font-style:italic;text-align:right}.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%;text-align:center}.uagb-rm__align-center .uagb-rm__price{text-align:center}.uagb-rm__align-right .uagb-rm-details{display:flex;width:100%;flex-direction:row-reverse}.uagb-rm__align-right .uagb-rm__price{text-align:left}.uagb-rm__align-left .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:unset;text-align:left}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__image-content{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:row-reverse;text-align:right}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__image-content{text-align:right}.uagb-rest_menu__outer-wrap{position:relative}.uagb-rm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm-parent{padding:30px}.uagb-rm__text-wrap{position:relative;display:block;width:100%}.uagb-rest_menu__wrap{position:relative}.uagb-rest_menu__outer-wrap:after{content:"";display:block;clear:both}.uagb-rest_menu__wrap.uagb-rm__desk-column-3{display:block;width:33%;float:left;width:calc(100% / 3);padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-2{display:block;width:49%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-1{display:block;width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex}.uagb-rm__separator{width:100%;border-top-width:1px;border-top-color:#b2b4b5;border-top-style:inherit}.uagb-rm__image-position-left .uagb-rm__image{margin-right:10px}.uagb-rm__image-position-right .uagb-rm__image{margin-left:10px}@media (max-width: 976px){.uagb-rm__image-position-left.uagb-rm-stacked-tablet .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm-reverse-order-tablet .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__tablet-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}@media (max-width: 767px){.uagb-rm__image-position-left.uagb-rm-stacked-mobile .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm-reverse-order-mobile .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__mobile-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}
18
+ .uagb-post-grid{margin:0;position:relative}.uagb-post-grid .uagb-post__load-more-wrap{width:100%}.uagb-post-grid .uagb-post__load-more-wrap .uagb-post-pagination-button{cursor:pointer}.uagb-post-grid .uagb-post__load-more-wrap a{color:inherit}.uagb-post-grid .is-grid article{float:left;display:inline-block}.uagb-post-grid .uagb-post__items{display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uagb-post-grid .is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:100%}.uagb-post-grid .is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__inner-wrap>p{display:none}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px}.uagb-post-grid .uagb-post__columns-8 article{width:12.5%}.uagb-post-grid .uagb-post__columns-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-5 article{width:20%}.uagb-post-grid .uagb-post__columns-4 article{width:25%}.uagb-post-grid .uagb-post__columns-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-2 article{width:50%}.uagb-post-grid .uagb-post__columns-1 article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*="columns"].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%}.uagb-post-grid .uagb-post__text{text-align:left;box-sizing:border-box}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:15px;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline{text-transform:uppercase;font-size:11px;letter-spacing:1px;margin-bottom:15px}.uagb-post-grid .uagb-post__text .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child):after,.uagb-post-grid .uagb-post__date:not(:last-child):after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{margin-bottom:25px;word-break:break-word}.uagb-post-grid .uagb-post__text p{margin:0 0 15px 0}.uagb-post-grid .uagb-post__text p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block}.uagb-post-grid .uagb-post__link{display:inline-block;box-shadow:none;transition:.3s ease;font-weight:bold;color:inherit;text-decoration:none;padding:5px 10px}.uagb-post-grid .uagb-post__excerpt div+p{margin-top:15px}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.uagb-post-grid .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:relative}.uagb-post__image-position-background .uagb-post__image{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,0.5)}.uagb-post-grid[data-equal-height="yes"] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:-45px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:-45px;right:auto}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid .is-grid article,.uagb-post-grid .is-masonry article,.uagb-post-grid .is-carousel article{box-sizing:border-box}@media (max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}.uagb-post-grid .uagb-post__columns-tablet-1 article{width:100%}.uagb-post-grid .uagb-post__columns-tablet-2 article{width:50%}.uagb-post-grid .uagb-post__columns-tablet-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-tablet-4 article{width:25%}.uagb-post-grid .uagb-post__columns-tablet-5 article{width:20%}.uagb-post-grid .uagb-post__columns-tablet-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}@media (max-width: 767px){.uagb-post-grid .uagb-post__columns-mobile-1 article{width:100%}.uagb-post-grid .uagb-post__columns-mobile-2 article{width:50%}.uagb-post-grid .uagb-post__columns-mobile-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-mobile-4 article{width:25%}.uagb-post-grid .uagb-post__columns-mobile-5 article{width:20%}.uagb-post-grid .uagb-post__columns-mobile-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:inline-block}.uagb-post-grid .uagb-post-inf-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.uagb-post-grid .uagb-post-inf-loader div{width:18px;height:18px;background-color:#0085ba;-webkit-border-radius:100%;border-radius:100%;display:inline-block;-webkit-animation:sk-bouncedelay 1.4s infinite ease-in-out both;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}@-webkit-keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}
19
  .wp-block-uagb-social-share .uagb-social-share__wrap .uagb-social-share__wrapper{text-decoration:none}.uagb-social-share__wrap .uagb-social-share__wrapper{box-shadow:none}.uagb-social-share__outer-wrap:not(.uagb-social-share__no-label) .uagb-social-share__source-wrap{margin-right:15px}.uagb-social-share__outer-wrap.uagb-social-share__icon-at-top .uagb-social-share__source-wrap{-ms-flex-item-align:flex-start;align-self:flex-start;margin-top:5px}
20
+ .uagb-social-share__outer-wrap .uagb-social-share__wrap{display:flex;align-items:center;justify-content:center}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}.uagb-social-share__outer-wrap .uagb-ss__wrapper:first-child{margin-left:0}.uagb-social-share__outer-wrap .uagb-ss__wrapper:last-child{margin-right:0}.uagb-social-share__layout-vertical .uagb-social-share__wrap{flex-direction:column}@media (max-width: 976px){.uagb-social-share__layout-horizontal .uagb-ss__wrapper{margin-left:0;margin-right:0}}
21
+ .uagb-tax-not-available{border:1px solid;padding:10px;text-align:center}.uagb-layout-list .uagb-list-wrap{margin-left:10px}.uagb-taxonomy__outer-wrap{margin-bottom:20px}ul.uagb-taxonomy-list-children{margin-bottom:0}
22
  .wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:1.2em;padding-left:0px;margin-bottom:0}.wp-block-uagb-table-of-contents ul.uagb-toc__list li{margin:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.wp-block-uagb-table-of-contents.uagb-toc__align-left{text-align:left}.wp-block-uagb-table-of-contents.uagb-toc__align-center{text-align:center}.wp-block-uagb-table-of-contents.uagb-toc__align-right{text-align:right}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center;justify-content:space-between}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{margin-left:10px;display:flex;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.uagb-toc__list .uagb-toc__list{list-style-type:circle}.uagb-toc__scroll-top.dashicons{display:none;position:fixed;bottom:50px;right:50px;padding:10px;background:#ccd0d4;cursor:pointer}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}
23
  .uagb-team__outer-wrap .uagb-team__prefix{font-size:15px;font-style:italic;color:#888}.uagb-team__outer-wrap .uagb-team__image-wrap img{display:inline;height:auto !important;max-width:100%;width:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-team__outer-wrap .uagb-team__social-icon-wrap ul{list-style:none;display:flex}.uagb-team__outer-wrap .uagb-team__social-icon a span,.uagb-team__outer-wrap .uagb-team__social-icon a span:before{color:inherit;font-size:inherit;height:inherit;width:inherit}.uagb-team__outer-wrap .uagb-team__social-icon a{font-size:20px;width:20px;height:20px;color:#333;display:block}.uagb-team__outer-wrap .uagb-team__social-icon{margin-right:20px;margin-left:0}.uagb-team__outer-wrap .uagb-team__social-list{margin:0;padding:0}.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.uagb-team__image-position-left .uagb-team__wrap,.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.uagb-team__image-position-left .uagb-team__content{text-align:left}.uagb-team__image-position-right .uagb-team__content{text-align:right}.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;margin:0;padding:0}.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;margin:0;padding:0}.uagb-team__image-position-left li{margin-right:5px}.uagb-team__image-position-right li{margin-left:5px}.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}@media only screen and (max-width: 976px){.uagb-team__stack-tablet,.uagb-team__stack-tablet .uagb-team__content{text-align:center}.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.uagb-team__stack-tablet .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.uagb-team__stack-mobile,.uagb-team__stack-mobile .uagb-team__content{text-align:center}.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.uagb-team__stack-mobile .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}
 
24
  .wp-block-uagb-wp-search.uagb-wp-search__outer-wrap{min-height:20px;width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button svg{fill:currentColor}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input svg{fill:currentColor;opacity:0.6}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
25
+ .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:focus,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:active{outline:thin dotted}.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center;width:100%}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child .uagb-faq-content span{display:inline-block}.wp-block-uagb-faq-child .uagb-faq-content p{margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
26
+ .uagb-icon-list__outer-wrap .uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:focus,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:active,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:visited{text-decoration:none}.uagb-icon-list__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap,.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{width:inherit;display:inline-block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{display:inherit;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon,.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon:before{font-size:40px;width:40px;height:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap span.uagb-icon-list__source-wrap{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon svg{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:first-child{margin-left:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:last-child{margin-right:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper[href="/"]{pointer-events:none;cursor:text}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap .uagb-icon-list__wrapper{text-decoration:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap .uagb-icon-list__wrapper{box-shadow:none}.uagb-icon-list__outer-wrap.uagb-icon-list__icon-at-top .uagb-icon-list__source-wrap{align-self:flex-start}.uagb-icon-list__outer-wrap:not(.uagb-icon-list__no-label) .uagb-icon-list__source-wrap{margin-right:15px}.uagb-icon-list__no-label .uagb-icon-list__label-wrap{display:none}
27
+ .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0;height:auto;border:1px solid #AAA;-webkit-border-radius:0;border-radius:0;background:#FFF;-webkit-box-shadow:none;box-shadow:none;color:#444;text-decoration:none;white-space:nowrap}.uagb-gf-styler__gform-heading-none .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading.custom_gform_heading{display:none}.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading.custom_gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading{display:block}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#FFF}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=submit]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom:after{content:"\f078";font-family:'FontAwesome' !important;font-size:0.7em;line-height:1;position:absolute;top:45%;-webkit-transform:translateY(-45%);-ms-transform:translateY(-45%);transform:translateY(-45%);right:0.5em;pointer-events:none;z-index:5}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]:checked+label:before{box-shadow:inset 0px 0px 0px 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;-moz-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]+label:before{-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=button]{font-size:13px;padding:10px 20px;-webkit-border-radius:2px;border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:13px;padding:8px 10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:13px;padding:6px 10px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:10px;width:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 10px / 1.2);font-size:calc( 10px / 1.2)}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=button]{font-size:15px;padding:12px 24px;-webkit-border-radius:3px;border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:15px;padding:12px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:15px;padding:10px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:12px;width:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 12px / 1.2);font-size:calc( 12px / 1.2)}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=button]{font-size:16px;padding:15px 30px;-webkit-border-radius:4px;border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:16px;padding:15px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:16px;padding:13px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:15px;width:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 15px / 1.2);font-size:calc( 15px / 1.2)}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=button]{font-size:18px;padding:20px 40px;-webkit-border-radius:5px;border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:18px;padding:20px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:18px;padding:18px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:20px;width:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 20px / 1.2);font-size:calc( 20px / 1.2)}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=button]{font-size:20px;padding:25px 50px;-webkit-border-radius:6px;border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:20px;padding:25px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:20px;padding:23px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:25px;width:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-size:-webkit-calc( 25px / 1.2);font-size:calc( 25px / 1.2)}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){padding:0 0 0 0;margin-right:0;margin-left:0;width:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before{-webkit-border-radius:100%;border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0}.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']+label:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']:checked+label:before{content:"\2714";line-height:1.2}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type=submit]{display:block;text-align:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"]{padding:0px 0px 0px 0px}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{margin-bottom:0;width:100%}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}
28
+ .uagb-testimonial__wrap{position:relative;box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{transition:all 0.2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__author-name,.uagb-tm__company{display:inline-block}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;padding:15px;border-radius:inherit;position:relative}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:flex}.uagb-tm__meta-inner{display:inline-block}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__meta{width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{align-self:center}.uagb-tm__desc{margin-bottom:15px}.uagb-tm__author-name{margin-bottom:5px;font-size:30px;line-height:1em}.uagb-tm__company{font-size:15px;font-style:italic;line-height:1em;color:#888888}.is-carousel .uagb-testomonial__outer-wrap{padding-left:10px;padding-right:10px}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__text-wrap{position:relative}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:flex;justify-content:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-45px}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-prev{left:25px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-next{right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:-45px;right:auto}@media (max-width: 976px){.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-tablet.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-tablet.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-tablet.uagb-tm__image-position-right.uagb-tm-reverse-order-tablet .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-tablet.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:15px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:auto;right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{left:15px;right:auto}}@media (max-width: 768px){.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-mobile.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-mobile.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-mobile.uagb-tm__image-position-right.uagb-tm-reverse-order-mobile .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-mobile.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}}
29
+ .uagb-timeline__widget{position:relative;display:flex;align-items:flex-start;font-size:inherit;color:inherit;margin-bottom:inherit}.uagb-timeline__widget a{text-decoration:none;color:inherit;font-size:inherit;margin-bottom:inherit}.uagb-timeline__image a{display:block;position:relative;max-width:100%}.uagb-timeline__image img{display:inline-block;box-sizing:content-box}.uagb-timeline__author{text-transform:uppercase}.uagb-timeline__main{position:relative}.uagb-content{word-break:break-word}a.uagb-timeline__link{padding:5px 10px;display:inline-block}.uagb-timeline__headingh1,.uagb-timeline__headingh2,.uagb-timeline__headingh3,.uagb-timeline__headingh4,.uagb-timeline__headingh5,.uagb-timeline__headingh6{margin-bottom:0px}.uagb-timeline__inner-date-new p,.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0px}.uagb-timeline__line{background-color:#eeeeee}.uagb-timeline__line__inner{background-color:#5cb85c;width:100%}.uagb-timeline__main .uagb-timeline__icon-new{line-height:1em;display:inline-block;vertical-align:middle;font-style:normal}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right,.uagb-timeline__right-block .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__right-block .uagb-timeline__center-block .uagb-timeline__date-new{display:block}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__right-block .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{top:0;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__right-block .uagb-timeline__day-new{margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__right-block .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__left-block .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__left-block .uagb-timeline__day-new{margin-left:14px;flex-grow:1;order:1}.uagb-timeline__left-block .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{top:0;width:10px;height:40px;position:absolute}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__marker{background-color:#eeeeee;border-radius:999px;position:relative;display:flex;align-items:center;justify-content:center;z-index:1;transition:all .2s ease-in-out}.uagb-timeline__main .uagb-timeline__days .uagb-timeline__field-wrap:hover .uagb-timeline__marker{transition:all .2s ease-in-out}.uagb-timeline__center-block .uagb-timeline__marker{order:1;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{flex-grow:1;flex-basis:50%;max-width:100%;position:relative}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2;padding-left:0;padding-right:12px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2;padding-right:0;padding-left:12px}.uagb-timeline__events-inner-new{padding:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{display:flex;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{display:flex;justify-content:flex-start}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__right-block .uagb-timeline__date-new{margin-left:10px}.uagb-timeline__right-block .uagb-timeline__date-new{display:flex;align-items:center}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__arrow-center .uagb-timeline__widget{align-items:center}.uagb-timeline__arrow-bottom .uagb-timeline__widget{align-items:flex-end}.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;transform:translateY(-100%)}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new,.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{transition:background .2s ease-in-out}.uagb-timeline__arrow:after{transition:border-color .2s ease-in-out}.uagb-timeline__date-new{transition:color .2s ease-in-out}.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__main .uagb-timeline__year{display:flex;position:relative}.uagb-timeline__main .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__day-left .uagb-timeline__arrow:after{content:'';left:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow:after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__icon{width:100px;height:100px;-webkit-border-radius:50%;border-radius:50%;text-align:center;line-height:100px;vertical-align:middle;position:relative;z-index:1}.uagb-timeline__main .uagb-timeline__date .uagb-timeline__inner-date-new{white-space:nowrap;margin:0px}.uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-timeline__right-block .uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block .uagb-timeline__line{left:50%;right:auto}.uagb-timeline__main .in-view i.uagb-timeline__in-view-icon{-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-in-out;-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out;transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out}.uagb-timeline__left-block .uagb-timeline__days{text-align:left}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block .uagb-timeline__days{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__days{text-align:right}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}.uagb-timeline__line__inner{background-color:#61ce70;width:100%}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__line{width:3px}.uagb-timeline__main .uagb-timeline__icon-new{font-size:16px}.uagb-timeline__marker{min-height:3em;min-width:3em;line-height:3em}.uagb-timeline__arrow{height:3em}.uagb-timeline__left-block .uagb-timeline__line{left:calc(3em / 2)}.uagb-timeline__right-block .uagb-timeline__line{right:calc(3em / 2)}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:calc(3em / 2);left:auto}.rtl .uagb-timeline__right-block .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline-desc-content p{font-size:inherit}.uagb-timeline__main p:empty{display:none}@media (max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-ms-flex-order:0;order:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}@media (max-width: 767px){.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:calc(3em / 2);left:auto}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}
dist/blocks/post/class-uagb-post.php CHANGED
@@ -52,7 +52,9 @@ if ( ! class_exists( 'UAGB_Post' ) ) {
52
 
53
  add_action( 'init', array( $this, 'register_blocks' ) );
54
  add_action( 'wp_ajax_uagb_post_pagination', array( $this, 'post_pagination' ) );
 
55
  add_action( 'wp_ajax_uagb_get_posts', array( $this, 'masonry_pagination' ) );
 
56
  add_action( 'wp_footer', array( $this, 'add_post_dynamic_script' ), 1000 );
57
  }
58
 
52
 
53
  add_action( 'init', array( $this, 'register_blocks' ) );
54
  add_action( 'wp_ajax_uagb_post_pagination', array( $this, 'post_pagination' ) );
55
+ add_action( 'wp_ajax_nopriv_uagb_post_pagination', array( $this, 'post_pagination' ) );
56
  add_action( 'wp_ajax_uagb_get_posts', array( $this, 'masonry_pagination' ) );
57
+ add_action( 'wp_ajax_nopriv_uagb_get_posts', array( $this, 'masonry_pagination' ) );
58
  add_action( 'wp_footer', array( $this, 'add_post_dynamic_script' ), 1000 );
59
  }
60
 
dist/blocks/taxonomy-list/class-uagb-taxonomy-list.php ADDED
@@ -0,0 +1,586 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * UAGB - Taxonomy-List
4
+ *
5
+ * @package UAGB
6
+ */
7
+
8
+ if ( ! defined( 'ABSPATH' ) ) {
9
+ exit; // Exit if accessed directly.
10
+ }
11
+
12
+ if ( ! class_exists( 'UAGB_Taxonomy_List' ) ) {
13
+
14
+ /**
15
+ * Class UAGB_Taxonomy_List.
16
+ *
17
+ * @since x.x.x
18
+ */
19
+ class UAGB_Taxonomy_List {
20
+
21
+ /**
22
+ * Member Variable
23
+ *
24
+ * @since x.x.x
25
+ * @var instance
26
+ */
27
+ private static $instance;
28
+
29
+ /**
30
+ * Initiator
31
+ *
32
+ * @since x.x.x
33
+ */
34
+ public static function get_instance() {
35
+ if ( ! isset( self::$instance ) ) {
36
+ self::$instance = new self();
37
+ }
38
+ return self::$instance;
39
+ }
40
+
41
+ /**
42
+ * Constructor
43
+ *
44
+ * @since x.x.x
45
+ */
46
+ public function __construct() {
47
+
48
+ // Activation hook.
49
+ add_action( 'init', array( $this, 'register_blocks' ) );
50
+ }
51
+
52
+ /**
53
+ * Registers the `uagb/taxonomy-list` block on server.
54
+ *
55
+ * @since x.x.x
56
+ */
57
+ public function register_blocks() {
58
+
59
+ // Check if the register function exists.
60
+ if ( ! function_exists( 'register_block_type' ) ) {
61
+ return;
62
+ }
63
+
64
+ register_block_type(
65
+ 'uagb/taxonomy-list',
66
+ array(
67
+ 'attributes' => array(
68
+
69
+ 'block_id' => array(
70
+ 'type' => 'string',
71
+ ),
72
+ 'postType' => array(
73
+ 'type' => 'string',
74
+ 'default' => 'post',
75
+ ),
76
+ 'taxonomyType' => array(
77
+ 'type' => 'string',
78
+ 'default' => 'category',
79
+ ),
80
+ 'categories' => array(
81
+ 'type' => 'string',
82
+ ),
83
+ 'order' => array(
84
+ 'type' => 'string',
85
+ 'default' => 'desc',
86
+ ),
87
+ 'orderBy' => array(
88
+ 'type' => 'string',
89
+ 'default' => 'date',
90
+ ),
91
+ 'postsToShow' => array(
92
+ 'type' => 'number',
93
+ 'default' => '8',
94
+ ),
95
+ 'layout' => array(
96
+ 'type' => 'string',
97
+ 'default' => 'grid',
98
+ ),
99
+ 'columns' => array(
100
+ 'type' => 'number',
101
+ 'default' => 3,
102
+ ),
103
+ 'tcolumns' => array(
104
+ 'type' => 'number',
105
+ 'default' => 2,
106
+ ),
107
+ 'mcolumns' => array(
108
+ 'type' => 'number',
109
+ 'default' => 1,
110
+ ),
111
+ 'noTaxDisplaytext' => array(
112
+ 'type' => 'string',
113
+ 'default' => __( 'Taxonomy Not Available.', 'ultimate-addons-for-gutenberg' ),
114
+ ),
115
+ 'boxShadowColor' => array(
116
+ 'type' => 'string',
117
+ ),
118
+ 'boxShadowHOffset' => array(
119
+ 'type' => 'number',
120
+ 'default' => 0,
121
+ ),
122
+ 'boxShadowVOffset' => array(
123
+ 'type' => 'number',
124
+ 'default' => 0,
125
+ ),
126
+ 'boxShadowBlur' => array(
127
+ 'type' => 'number',
128
+ ),
129
+ 'boxShadowSpread' => array(
130
+ 'type' => 'number',
131
+ ),
132
+ 'boxShadowPosition' => array(
133
+ 'type' => 'string',
134
+ 'default' => 'outset',
135
+ ),
136
+ 'showCount' => array(
137
+ 'type' => 'boolean',
138
+ 'default' => true,
139
+ ),
140
+ 'showEmptyTaxonomy' => array(
141
+ 'type' => 'boolean',
142
+ 'default' => false,
143
+ ),
144
+ 'showhierarchy' => array(
145
+ 'type' => 'boolean',
146
+ 'default' => false,
147
+ ),
148
+
149
+ // Color Attributes.
150
+ 'bgColor' => array(
151
+ 'type' => 'string',
152
+ 'default' => '#f5f5f5',
153
+ ),
154
+ 'titleColor' => array(
155
+ 'type' => 'string',
156
+ 'default' => '#3b3b3b',
157
+ ),
158
+ 'countColor' => array(
159
+ 'type' => 'string',
160
+ 'default' => '#777777',
161
+ ),
162
+ 'listTextColor' => array(
163
+ 'type' => 'string',
164
+ 'default' => '#3b3b3b',
165
+ ),
166
+ 'hoverlistTextColor' => array(
167
+ 'type' => 'string',
168
+ 'default' => '#3b3b3b',
169
+ ),
170
+ 'listStyleColor' => array(
171
+ 'type' => 'string',
172
+ 'default' => '#3b3b3b',
173
+ ),
174
+ 'hoverlistStyleColor' => array(
175
+ 'type' => 'string',
176
+ 'default' => '#3b3b3b',
177
+ ),
178
+
179
+ // Spacing Attributes.
180
+ 'rowGap' => array(
181
+ 'type' => 'number',
182
+ 'default' => 20,
183
+ ),
184
+ 'columnGap' => array(
185
+ 'type' => 'number',
186
+ 'default' => 20,
187
+ ),
188
+ 'contentPadding' => array(
189
+ 'type' => 'number',
190
+ 'default' => 20,
191
+ ),
192
+ 'contentPaddingTablet' => array(
193
+ 'type' => 'number',
194
+ 'default' => 15,
195
+ ),
196
+ 'contentPaddingMobile' => array(
197
+ 'type' => 'number',
198
+ 'default' => 15,
199
+ ),
200
+ 'titleBottomSpace' => array(
201
+ 'type' => 'number',
202
+ 'default' => 15,
203
+ ),
204
+ 'listBottomMargin' => array(
205
+ 'type' => 'number',
206
+ 'default' => 10,
207
+ ),
208
+
209
+ // ALignment Attributes.
210
+ 'alignment' => array(
211
+ 'type' => 'string',
212
+ 'default' => 'center',
213
+ ),
214
+
215
+ // List Attributes.
216
+ 'listStyle' => array(
217
+ 'type' => 'string',
218
+ 'default' => 'disc',
219
+ ),
220
+ 'listDisplayStyle' => array(
221
+ 'type' => 'string',
222
+ 'default' => 'list',
223
+ ),
224
+
225
+ // Seperator Attributes.
226
+ 'seperatorStyle' => array(
227
+ 'type' => 'string',
228
+ 'default' => 'none',
229
+ ),
230
+ 'seperatorWidth' => array(
231
+ 'type' => 'number',
232
+ 'default' => 100,
233
+ ),
234
+ 'seperatorThickness' => array(
235
+ 'type' => 'number',
236
+ 'default' => 1,
237
+ ),
238
+ 'seperatorColor' => array(
239
+ 'type' => 'string',
240
+ 'default' => '#b2b4b5',
241
+ ),
242
+
243
+ // Grid Border attributes.
244
+ 'borderColor' => array(
245
+ 'type' => 'string',
246
+ 'default' => '#E0E0E0',
247
+ ),
248
+ 'borderThickness' => array(
249
+ 'type' => 'number',
250
+ 'default' => 1,
251
+ ),
252
+ 'borderRadius' => array(
253
+ 'type' => 'number',
254
+ 'default' => 0,
255
+ ),
256
+ 'borderStyle' => array(
257
+ 'type' => 'string',
258
+ 'default' => 'solid',
259
+ ),
260
+
261
+ // Typograpghy attributes.
262
+ 'titleFontSize' => array(
263
+ 'type' => 'number',
264
+ ),
265
+ 'titleFontSizeType' => array(
266
+ 'type' => 'string',
267
+ 'default' => 'px',
268
+ ),
269
+ 'titleFontSizeMobile' => array(
270
+ 'type' => 'number',
271
+ ),
272
+ 'titleFontSizeTablet' => array(
273
+ 'type' => 'number',
274
+ ),
275
+ 'titleFontFamily' => array(
276
+ 'type' => 'string',
277
+ 'default' => 'Default',
278
+ ),
279
+ 'titleFontWeight' => array(
280
+ 'type' => 'string',
281
+ ),
282
+ 'titleFontSubset' => array(
283
+ 'type' => 'string',
284
+ ),
285
+ 'titleLineHeightType' => array(
286
+ 'type' => 'string',
287
+ 'default' => 'em',
288
+ ),
289
+ 'titleLineHeight' => array(
290
+ 'type' => 'number',
291
+ ),
292
+ 'titleLineHeightTablet' => array(
293
+ 'type' => 'number',
294
+ ),
295
+ 'titleLineHeightMobile' => array(
296
+ 'type' => 'number',
297
+ ),
298
+ 'titleLoadGoogleFonts' => array(
299
+ 'type' => 'boolean',
300
+ 'default' => false,
301
+ ),
302
+ 'countFontSize' => array(
303
+ 'type' => 'number',
304
+ ),
305
+ 'countFontSizeType' => array(
306
+ 'type' => 'string',
307
+ 'default' => 'px',
308
+ ),
309
+ 'countFontSizeMobile' => array(
310
+ 'type' => 'number',
311
+ ),
312
+ 'countFontSizeTablet' => array(
313
+ 'type' => 'number',
314
+ ),
315
+ 'countFontFamily' => array(
316
+ 'type' => 'string',
317
+ 'default' => 'Default',
318
+ ),
319
+ 'countFontWeight' => array(
320
+ 'type' => 'string',
321
+ ),
322
+ 'countFontSubset' => array(
323
+ 'type' => 'string',
324
+ ),
325
+ 'countLineHeightType' => array(
326
+ 'type' => 'string',
327
+ 'default' => 'em',
328
+ ),
329
+ 'countLineHeight' => array(
330
+ 'type' => 'number',
331
+ ),
332
+ 'countLineHeightTablet' => array(
333
+ 'type' => 'number',
334
+ ),
335
+ 'countLineHeightMobile' => array(
336
+ 'type' => 'number',
337
+ ),
338
+ 'countLoadGoogleFonts' => array(
339
+ 'type' => 'boolean',
340
+ 'default' => false,
341
+ ),
342
+
343
+ 'listFontSize' => array(
344
+ 'type' => 'number',
345
+ ),
346
+ 'listFontSizeType' => array(
347
+ 'type' => 'string',
348
+ 'default' => 'px',
349
+ ),
350
+ 'listFontSizeMobile' => array(
351
+ 'type' => 'number',
352
+ ),
353
+ 'listFontSizeTablet' => array(
354
+ 'type' => 'number',
355
+ ),
356
+ 'listFontFamily' => array(
357
+ 'type' => 'string',
358
+ 'default' => 'Default',
359
+ ),
360
+ 'listFontWeight' => array(
361
+ 'type' => 'string',
362
+ ),
363
+ 'listFontSubset' => array(
364
+ 'type' => 'string',
365
+ ),
366
+ 'listLineHeightType' => array(
367
+ 'type' => 'string',
368
+ 'default' => 'em',
369
+ ),
370
+ 'listLineHeight' => array(
371
+ 'type' => 'number',
372
+ ),
373
+ 'listLineHeightTablet' => array(
374
+ 'type' => 'number',
375
+ ),
376
+ 'listLineHeightMobile' => array(
377
+ 'type' => 'number',
378
+ ),
379
+ 'listLoadGoogleFonts' => array(
380
+ 'type' => 'boolean',
381
+ 'default' => false,
382
+ ),
383
+ ),
384
+ 'render_callback' => array( $this, 'render_html' ),
385
+ )
386
+ );
387
+ }
388
+
389
+ /**
390
+ * Render Grid HTML.
391
+ *
392
+ * @param array $attributes Array of block attributes.
393
+ *
394
+ * @since x.x.x
395
+ */
396
+ public function grid_html( $attributes ) {
397
+ $block_id = $attributes['block_id'];
398
+ $postType = $attributes['postType'];
399
+ $taxonomyType = $attributes['taxonomyType'];
400
+ $layout = $attributes['layout'];
401
+ $seperatorStyle = $attributes['seperatorStyle'];
402
+ $noTaxDisplaytext = $attributes['noTaxDisplaytext'];
403
+ $showCount = $attributes['showCount'];
404
+
405
+ if ( 'grid' === $layout ) {
406
+
407
+ $pt = get_post_type_object( $postType );
408
+ $singular_name = $pt->labels->singular_name;
409
+
410
+ $args = array(
411
+ 'hide_empty' => ! $attributes['showEmptyTaxonomy'],
412
+ 'parent' => 0,
413
+ );
414
+ $newcategoriesList = get_terms( $attributes['taxonomyType'], $args );
415
+
416
+ foreach ( $newcategoriesList as $value ) {
417
+ ?>
418
+
419
+ <div class="uagb-taxomony-box">
420
+ <a class="uagb-tax-link" href= "<?php echo esc_url( get_term_link( $value->name, $attributes['taxonomyType'] ) ); ?>">
421
+ <h4 class="uagb-tax-title"><?php echo esc_attr( $value->name ); ?></h4>
422
+ <?php if ( $showCount ) { ?>
423
+ <div class="uagb-tax-count">
424
+ <?php echo esc_attr( $value->count ); ?>
425
+ <?php $countName = ( $value->count > 1 ) ? esc_attr( $singular_name ) . 's' : esc_attr( $singular_name ); ?>
426
+ <?php echo esc_attr( apply_filters( 'uagb_taxonomy_count_text', $countName, $value->count ) ); ?>
427
+ </div>
428
+ <?php } ?>
429
+ </a>
430
+ </div>
431
+ <?php
432
+ }
433
+ }
434
+ }
435
+
436
+ /**
437
+ * Render List HTML.
438
+ *
439
+ * @param array $attributes Array of block attributes.
440
+ *
441
+ * @since x.x.x
442
+ */
443
+ public function list_html( $attributes ) {
444
+ $block_id = $attributes['block_id'];
445
+ $postType = $attributes['postType'];
446
+ $taxonomyType = $attributes['taxonomyType'];
447
+ $layout = $attributes['layout'];
448
+ $seperatorStyle = $attributes['seperatorStyle'];
449
+ $noTaxDisplaytext = $attributes['noTaxDisplaytext'];
450
+ $showCount = $attributes['showCount'];
451
+
452
+ if ( 'list' === $layout ) {
453
+ $pt = get_post_type_object( $postType );
454
+ $singular_name = $pt->labels->singular_name;
455
+
456
+ $args = array(
457
+ 'hide_empty' => ! $attributes['showEmptyTaxonomy'],
458
+ 'parent' => 0,
459
+ );
460
+
461
+ $newcategoriesList = get_terms( $attributes['taxonomyType'], $args );
462
+
463
+ foreach ( $newcategoriesList as $key => $value ) {
464
+ $child_arg_empty_tax = array(
465
+ 'hide_empty' => ! $attributes['showEmptyTaxonomy'],
466
+ 'parent' => $value->term_id,
467
+ );
468
+ $child_cat_empty_tax = get_terms( $attributes['taxonomyType'], $child_arg_empty_tax );
469
+ $child_cat_empty_tax_arr = $child_cat_empty_tax ? $child_cat_empty_tax : '';
470
+ $newcategoriesList[ $key ]->children = $child_cat_empty_tax_arr;
471
+ }
472
+
473
+ ?>
474
+ <?php if ( 'dropdown' !== $attributes['listDisplayStyle'] ) { ?>
475
+ <ul class="uagb-list-wrap">
476
+ <?php foreach ( $newcategoriesList as $key => $value ) { ?>
477
+ <li class="uagb-tax-list">
478
+ <div class="uagb-tax-link-wrap">
479
+ <a class="uagb-tax-link" href="<?php echo esc_url( get_term_link( $value->name, $attributes['taxonomyType'] ) ); ?>"><?php echo esc_attr( $value->name ); ?></a>
480
+ <?php if ( $showCount ) { ?>
481
+ <span class="uagb-tax-list-count"><?php echo ' (' . esc_attr( $value->count ) . ')'; ?></span>
482
+ <?php } ?>
483
+ <?php if ( $attributes['showhierarchy'] && ! empty( $newcategoriesList[ $key ]->children ) ) { ?>
484
+ <ul class="uagb-taxonomy-list-children">
485
+ <?php foreach ( $newcategoriesList[ $key ]->children as $value ) { ?>
486
+ <li class="uagb-tax-list">
487
+ <a class="uagb-tax-link" href="<?php echo esc_url( get_term_link( $value->name, $attributes['taxonomyType'] ) ); ?>"><?php echo esc_attr( $value->name ); ?></a>
488
+ <?php if ( $showCount ) { ?>
489
+ <span class="uagb-tax-list-count"><?php echo ' (' . esc_attr( $value->count ) . ')'; ?></span>
490
+ <?php } ?>
491
+ </li>
492
+ <?php } ?>
493
+ </ul>
494
+ <?php } ?>
495
+ </div>
496
+ <?php if ( 'none' !== $seperatorStyle ) { ?>
497
+ <div class="uagb-tax-separator-wrap">
498
+ <div class="uagb-tax-separator"></div>
499
+ </div>
500
+ <?php } ?>
501
+ </li>
502
+ <?php } ?>
503
+ </ul>
504
+ <?php } else { ?>
505
+ <select class="uagb-list-dropdown-wrap" onchange="redirectToTaxonomyLink(this)">
506
+ <option selected value=""> -- Select -- </option>
507
+ <?php foreach ( $newcategoriesList as $key => $value ) { ?>
508
+ <option value="<?php echo esc_url( get_term_link( $value->name, $attributes['taxonomyType'] ) ); ?>" >
509
+ <?php echo esc_attr( $value->name ); ?>
510
+ <?php if ( $showCount ) { ?>
511
+ <?php echo ' (' . esc_attr( $value->count ) . ')'; ?>
512
+ <?php } ?>
513
+ </option>
514
+ <?php } ?>
515
+ </select>
516
+ <script type="text/javascript">
517
+ function redirectToTaxonomyLink( selectedOption ) {
518
+ var selectedValue = selectedOption.value;
519
+ if ( selectedValue ) {
520
+ location.href = selectedValue;
521
+ }
522
+ }
523
+ </script>
524
+ <?php } ?>
525
+ <?php
526
+ }
527
+ }
528
+
529
+ /**
530
+ * Render Taxonomy List HTML.
531
+ *
532
+ * @param array $attributes Array of block attributes.
533
+ *
534
+ * @since x.x.x
535
+ */
536
+ public function render_html( $attributes ) {
537
+
538
+ $block_id = $attributes['block_id'];
539
+ $postType = $attributes['postType'];
540
+ $taxonomyType = $attributes['taxonomyType'];
541
+ $layout = $attributes['layout'];
542
+ $seperatorStyle = $attributes['seperatorStyle'];
543
+ $noTaxDisplaytext = $attributes['noTaxDisplaytext'];
544
+ $showCount = $attributes['showCount'];
545
+
546
+ $main_classes = array(
547
+ 'uagb-taxonomy__outer-wrap',
548
+ 'uagb-block-' . $block_id,
549
+ );
550
+ $inner_classes = array(
551
+ 'uagb-taxonomy-wrap',
552
+ 'uagb-layout-' . $layout,
553
+ );
554
+ $args = array(
555
+ 'hide_empty' => ! $attributes['showEmptyTaxonomy'],
556
+ );
557
+
558
+ if ( $taxonomyType && 'page' !== $postType ) {
559
+ $newcategoriesList = get_terms( $taxonomyType, $args );
560
+ }
561
+
562
+ ob_start();
563
+
564
+ ?>
565
+ <div class = "<?php echo esc_attr( implode( ' ', $main_classes ) ); ?>">
566
+ <?php if ( ! empty( $newcategoriesList ) ) { ?>
567
+ <div class = "<?php echo esc_attr( implode( ' ', $inner_classes ) ); ?>">
568
+ <?php $this->grid_html( $attributes ); ?>
569
+ <?php $this->list_html( $attributes ); ?>
570
+ </div>
571
+ <?php } else { ?>
572
+ <div class="uagb-tax-not-available"><?php echo esc_attr( $noTaxDisplaytext ); ?></div>
573
+ <?php } ?>
574
+ </div>
575
+
576
+ <?php
577
+ return ob_get_clean();
578
+ }
579
+ }
580
+
581
+ /**
582
+ * Prepare if class 'UAGB_Taxonomy_List' exist.
583
+ * Kicking this off by calling 'get_instance()' method
584
+ */
585
+ UAGB_Taxonomy_List::get_instance();
586
+ }
dist/blocks/uagb-controls/block-icons.js CHANGED
@@ -230,6 +230,11 @@ const UAGB_Block_Icons = {
230
  "wp_search": el("svg", { width: 20, height: 20, viewBox:"0 0 32 32" },
231
  el("path", { fill: "#4a00e0", d: "M20.433 1.068c-5.789 0-10.499 4.71-10.499 10.5 0 2.58 0.936 4.945 2.486 6.775l-1.187 1.187-0.618-0.618c-0.342-0.342-0.896-0.342-1.238 0l-7.542 7.54c-1.024 1.024-1.024 2.689 0 3.713s2.689 1.023 3.712 0l7.541-7.541c0.341-0.342 0.341-0.895 0-1.237l-0.619-0.62 1.187-1.187c1.83 1.55 4.196 2.486 6.776 2.486 5.791 0 10.499-4.71 10.499-10.499s-4.708-10.499-10.499-10.499zM4.311 28.927c-0.341 0.34-0.897 0.34-1.238 0s-0.341-0.896 0-1.238l4.447-4.447 1.238 1.238-4.447 4.447zM9.996 23.242l-1.238-1.238 1.238-1.238 1.238 1.238-1.238 1.238zM20.433 20.317c-4.824 0-8.749-3.924-8.749-8.749s3.925-8.75 8.749-8.75c4.826 0 8.749 3.925 8.749 8.75s-3.924 8.749-8.749 8.749z" } ),
232
  ),
 
 
 
 
 
233
  }
234
 
235
  export default UAGB_Block_Icons
230
  "wp_search": el("svg", { width: 20, height: 20, viewBox:"0 0 32 32" },
231
  el("path", { fill: "#4a00e0", d: "M20.433 1.068c-5.789 0-10.499 4.71-10.499 10.5 0 2.58 0.936 4.945 2.486 6.775l-1.187 1.187-0.618-0.618c-0.342-0.342-0.896-0.342-1.238 0l-7.542 7.54c-1.024 1.024-1.024 2.689 0 3.713s2.689 1.023 3.712 0l7.541-7.541c0.341-0.342 0.341-0.895 0-1.237l-0.619-0.62 1.187-1.187c1.83 1.55 4.196 2.486 6.776 2.486 5.791 0 10.499-4.71 10.499-10.499s-4.708-10.499-10.499-10.499zM4.311 28.927c-0.341 0.34-0.897 0.34-1.238 0s-0.341-0.896 0-1.238l4.447-4.447 1.238 1.238-4.447 4.447zM9.996 23.242l-1.238-1.238 1.238-1.238 1.238 1.238-1.238 1.238zM20.433 20.317c-4.824 0-8.749-3.924-8.749-8.749s3.925-8.75 8.749-8.75c4.826 0 8.749 3.925 8.749 8.75s-3.924 8.749-8.749 8.749z" } ),
232
  ),
233
+ "taxonomy_list": el("svg", { width: 20, height: 20, viewBox:"0 0 38 32" },
234
+ el("path", { fill: "#4a00e0", d: "M14 24.68h-2.4c-0.24-0.96-0.72-1.84-1.4-2.52l1.28-2c0.44-0.68 0.24-1.6-0.44-2.040s-1.6-0.24-2.040 0.44l-1.28 2c-0.56-0.2-1.2-0.28-1.8-0.28-3.24 0-5.88 2.64-5.88 5.88s2.68 5.84 5.92 5.84c2.72 0 5.040-1.88 5.68-4.4h2.4c0.8 0 1.48-0.64 1.48-1.48-0.040-0.8-0.68-1.44-1.52-1.44zM5.96 29.080c-1.6 0-2.92-1.32-2.92-2.92s1.32-2.92 2.92-2.92 2.92 1.32 2.92 2.92c0 1.6-1.32 2.92-2.92 2.92z" } ),
235
+ el("path", { fill: "#4a00e0", d: "M31.76 20.24c-0.64 0-1.24 0.12-1.8 0.28l-1.28-2c-0.44-0.68-1.36-0.88-2.040-0.44s-0.88 1.36-0.44 2.040l1.28 2c-0.64 0.72-1.16 1.56-1.4 2.52h-2.4c-0.8 0-1.48 0.64-1.48 1.48 0 0.8 0.64 1.48 1.48 1.48h2.4c0.64 2.52 2.96 4.4 5.68 4.4 3.24 0 5.88-2.64 5.88-5.88s-2.64-5.88-5.88-5.88zM31.76 29.080c-1.6 0-2.92-1.32-2.92-2.92s1.32-2.92 2.92-2.92c1.6 0 2.92 1.32 2.92 2.92 0.040 1.6-1.28 2.92-2.92 2.92z" } ),
236
+ el("path", { fill: "#4a00e0", d: "M24 13.92c0.68-0.44 0.88-1.36 0.44-2.040l-1.28-2c0.96-1.040 1.56-2.44 1.56-4 0-3.24-2.64-5.88-5.84-5.88s-5.88 2.64-5.88 5.88c0 1.56 0.6 2.96 1.56 4l-1.28 2c-0.44 0.68-0.24 1.6 0.44 2.040s1.6 0.24 2.040-0.44l1.28-2c0.56 0.2 1.2 0.28 1.8 0.28s1.24-0.12 1.8-0.28l1.28 2c0.48 0.68 1.4 0.88 2.080 0.44zM18.88 8.8c-1.6 0-2.92-1.32-2.92-2.92s1.32-2.92 2.92-2.92 2.92 1.32 2.92 2.92c0 1.6-1.32 2.92-2.92 2.92z" } ),
237
+ ),
238
  }
239
 
240
  export default UAGB_Block_Icons
languages/ultimate-addons-for-gutenberg.pot CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the same license as the Ultimate Addons for Gutenberg package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Ultimate Addons for Gutenberg 1.16.1\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg\n"
8
- "POT-Creation-Date: 2020-07-29 08:52:02+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -323,11 +323,11 @@ msgstr ""
323
  msgid "Access Denied. You don't have enough capabilities to execute this action."
324
  msgstr ""
325
 
326
- #: classes/class-uagb-admin.php:455
327
  msgid "No Theme specified"
328
  msgstr ""
329
 
330
- #: classes/class-uagb-admin.php:474
331
  msgid "Theme Successfully Activated"
332
  msgstr ""
333
 
@@ -405,217 +405,232 @@ msgid ""
405
  "Schema to your page."
406
  msgstr ""
407
 
408
- #: classes/class-uagb-config.php:718
409
  msgid "FAQ - Schema Child"
410
  msgstr ""
411
 
412
- #: classes/class-uagb-config.php:719
413
  msgid "This block helps you add single FAQ."
414
  msgstr ""
415
 
416
- #: classes/class-uagb-config.php:733
417
  msgid "Gravity Form Styler"
418
  msgstr ""
419
 
420
- #: classes/class-uagb-config.php:734
421
  msgid ""
422
  "This block allows you to add and style your Gravity Forms right in the "
423
  "Gutenberg editor."
424
  msgstr ""
425
 
426
- #: classes/class-uagb-config.php:886
427
  msgid "Google Map"
428
  msgstr ""
429
 
430
- #: classes/class-uagb-config.php:887
431
  msgid "This block allows you to place a Google Map Location."
432
  msgstr ""
433
 
434
- #: classes/class-uagb-config.php:896
435
  msgid "How-to Schema"
436
  msgstr ""
437
 
438
- #: classes/class-uagb-config.php:897
439
  msgid ""
440
  "This block allows you to design attractive How-to pages or articles with "
441
  "automatically adding How-to Schema to your page."
442
  msgstr ""
443
 
444
- #: classes/class-uagb-config.php:969
445
  msgid "Icon List"
446
  msgstr ""
447
 
448
- #: classes/class-uagb-config.php:970 classes/class-uagb-config.php:1023
449
- #: classes/class-uagb-config.php:1914
450
  msgid "This block allows you to place an image or icon in a list format."
451
  msgstr ""
452
 
453
- #: classes/class-uagb-config.php:979
454
  msgid "Label #1"
455
  msgstr ""
456
 
457
- #: classes/class-uagb-config.php:1022
458
  msgid "Icon"
459
  msgstr ""
460
 
461
- #: classes/class-uagb-config.php:1044
462
  msgid "Info Box"
463
  msgstr ""
464
 
465
- #: classes/class-uagb-config.php:1045
466
  msgid ""
467
  "This block allows you to place an image or icon along with a heading and "
468
  "description within a single block."
469
  msgstr ""
470
 
471
- #: classes/class-uagb-config.php:1141
472
  msgid "Inline Notice"
473
  msgstr ""
474
 
475
- #: classes/class-uagb-config.php:1142
476
  msgid "This block helps you add an inline notice."
477
  msgstr ""
478
 
479
- #: classes/class-uagb-config.php:1191
480
  msgid "Marketing Button"
481
  msgstr ""
482
 
483
- #: classes/class-uagb-config.php:1192
484
  msgid "This block allows you to place a Marketing Button with small description."
485
  msgstr ""
486
 
487
- #: classes/class-uagb-config.php:1266
488
  msgid "Multi Buttons"
489
  msgstr ""
490
 
491
- #: classes/class-uagb-config.php:1267
492
  msgid "This block allows you to add multiple buttons with a single block."
493
  msgstr ""
494
 
495
- #: classes/class-uagb-config.php:1286
496
  msgid "Button"
497
  msgstr ""
498
 
499
- #: classes/class-uagb-config.php:1287
500
  msgid "This block allows you to style button."
501
  msgstr ""
502
 
503
- #: classes/class-uagb-config.php:1322
504
  msgid "Post Carousel"
505
  msgstr ""
506
 
507
- #: classes/class-uagb-config.php:1323
508
  msgid ""
509
  "This block fetches the blog posts you may have on your website and displays "
510
  "them in a carousel layout."
511
  msgstr ""
512
 
513
- #: classes/class-uagb-config.php:1403 classes/class-uagb-config.php:1487
514
- #: classes/class-uagb-config.php:1589 dist/blocks/post/class-uagb-post.php:401
515
- #: dist/blocks/post/class-uagb-post.php:1352
516
  #: dist/blocks/post-timeline/class-uagb-post-timeline.php:447
517
  msgid "Read More"
518
  msgstr ""
519
 
520
- #: classes/class-uagb-config.php:1413
521
  msgid "Post Grid"
522
  msgstr ""
523
 
524
- #: classes/class-uagb-config.php:1414
525
  msgid ""
526
  "This block fetches the blog posts you may have on your website and displays "
527
  "them in a grid layout."
528
  msgstr ""
529
 
530
- #: classes/class-uagb-config.php:1513
531
  msgid "Post Masonry"
532
  msgstr ""
533
 
534
- #: classes/class-uagb-config.php:1514
535
  msgid ""
536
  "This block fetches the blog posts you may have on your website and displays "
537
  "them in a masonry layout."
538
  msgstr ""
539
 
540
- #: classes/class-uagb-config.php:1621
541
  msgid "Post Timeline"
542
  msgstr ""
543
 
544
- #: classes/class-uagb-config.php:1622
545
  msgid ""
546
  "The Timeline block lets you create beautiful timelines of Posts on your "
547
  "website."
548
  msgstr ""
549
 
550
- #: classes/class-uagb-config.php:1722
551
  msgid "Price List"
552
  msgstr ""
553
 
554
- #: classes/class-uagb-config.php:1723
555
  msgid "This block allows you to add attractive Price List."
556
  msgstr ""
557
 
558
- #: classes/class-uagb-config.php:1795
559
  msgid "Section"
560
  msgstr ""
561
 
562
- #: classes/class-uagb-config.php:1796
563
  msgid ""
564
  "This block is an outer wrap section that allows you to add other blocks "
565
  "within it."
566
  msgstr ""
567
 
568
- #: classes/class-uagb-config.php:1877
569
  msgid "Social Share"
570
  msgstr ""
571
 
572
- #: classes/class-uagb-config.php:1878
573
  msgid ""
574
  "This block allows you to let users share your content across various social "
575
  "networking sites."
576
  msgstr ""
577
 
578
- #: classes/class-uagb-config.php:1913
579
  msgid "Social Share Child"
580
  msgstr ""
581
 
582
- #: classes/class-uagb-config.php:1930
583
  msgid "Table of Contents"
584
  msgstr ""
585
 
586
- #: classes/class-uagb-config.php:1931
587
  msgid "This block allows you to place a Table of Contents for Pages/Posts."
588
  msgstr ""
589
 
590
- #: classes/class-uagb-config.php:2028
591
  msgid "Team"
592
  msgstr ""
593
 
594
- #: classes/class-uagb-config.php:2029
595
  msgid ""
596
  "This block allows you to display your team. Add their picture, name, what "
597
  "they do and links to their social profiles."
598
  msgstr ""
599
 
600
- #: classes/class-uagb-config.php:2100
601
  msgid "Testimonial"
602
  msgstr ""
603
 
604
- #: classes/class-uagb-config.php:2101
605
  msgid ""
606
  "This block helps your display some amazing client feedback within your "
607
  "website."
608
  msgstr ""
609
 
610
- #: classes/class-uagb-config.php:2185
611
  msgid "WP - Search"
612
  msgstr ""
613
 
614
- #: classes/class-uagb-config.php:2186
615
  msgid "This block helps you add a Search field."
616
  msgstr ""
617
 
618
- #: classes/class-uagb-helper.php:996
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
619
  msgid "Full"
620
  msgstr ""
621
 
@@ -631,27 +646,27 @@ msgstr ""
631
  msgid "Ultimate Addons Blocks"
632
  msgstr ""
633
 
634
- #: classes/class-uagb-init-blocks.php:330
635
- #: classes/class-uagb-init-blocks.php:363
636
  msgid "Select Form"
637
  msgstr ""
638
 
639
- #: classes/class-uagb-init-blocks.php:344
640
  msgid "You have not added any Contact Form 7 yet."
641
  msgstr ""
642
 
643
- #: classes/class-uagb-init-blocks.php:377
644
  msgid "You have not added any Gravity Forms yet."
645
  msgstr ""
646
 
647
- #: classes/class-uagb-loader.php:157
648
  #. translators: %s: html tags
649
  msgid ""
650
  "The %1$sUltimate Addon for Gutenberg%2$s plugin requires %1$sGutenberg%2$s "
651
  "plugin installed & activated."
652
  msgstr ""
653
 
654
- #: classes/class-uagb-loader.php:160
655
  msgid "Install Gutenberg"
656
  msgstr ""
657
 
2
  # This file is distributed under the same license as the Ultimate Addons for Gutenberg package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ultimate Addons for Gutenberg 1.17.0\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg\n"
8
+ "POT-Creation-Date: 2020-10-19 06:01:25+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
323
  msgid "Access Denied. You don't have enough capabilities to execute this action."
324
  msgstr ""
325
 
326
+ #: classes/class-uagb-admin.php:459
327
  msgid "No Theme specified"
328
  msgstr ""
329
 
330
+ #: classes/class-uagb-admin.php:478
331
  msgid "Theme Successfully Activated"
332
  msgstr ""
333
 
405
  "Schema to your page."
406
  msgstr ""
407
 
408
+ #: classes/class-uagb-config.php:720
409
  msgid "FAQ - Schema Child"
410
  msgstr ""
411
 
412
+ #: classes/class-uagb-config.php:721
413
  msgid "This block helps you add single FAQ."
414
  msgstr ""
415
 
416
+ #: classes/class-uagb-config.php:735
417
  msgid "Gravity Form Styler"
418
  msgstr ""
419
 
420
+ #: classes/class-uagb-config.php:736
421
  msgid ""
422
  "This block allows you to add and style your Gravity Forms right in the "
423
  "Gutenberg editor."
424
  msgstr ""
425
 
426
+ #: classes/class-uagb-config.php:888
427
  msgid "Google Map"
428
  msgstr ""
429
 
430
+ #: classes/class-uagb-config.php:889
431
  msgid "This block allows you to place a Google Map Location."
432
  msgstr ""
433
 
434
+ #: classes/class-uagb-config.php:899
435
  msgid "How-to Schema"
436
  msgstr ""
437
 
438
+ #: classes/class-uagb-config.php:900
439
  msgid ""
440
  "This block allows you to design attractive How-to pages or articles with "
441
  "automatically adding How-to Schema to your page."
442
  msgstr ""
443
 
444
+ #: classes/class-uagb-config.php:972
445
  msgid "Icon List"
446
  msgstr ""
447
 
448
+ #: classes/class-uagb-config.php:973 classes/class-uagb-config.php:1026
449
+ #: classes/class-uagb-config.php:1917
450
  msgid "This block allows you to place an image or icon in a list format."
451
  msgstr ""
452
 
453
+ #: classes/class-uagb-config.php:982
454
  msgid "Label #1"
455
  msgstr ""
456
 
457
+ #: classes/class-uagb-config.php:1025
458
  msgid "Icon"
459
  msgstr ""
460
 
461
+ #: classes/class-uagb-config.php:1047
462
  msgid "Info Box"
463
  msgstr ""
464
 
465
+ #: classes/class-uagb-config.php:1048
466
  msgid ""
467
  "This block allows you to place an image or icon along with a heading and "
468
  "description within a single block."
469
  msgstr ""
470
 
471
+ #: classes/class-uagb-config.php:1144
472
  msgid "Inline Notice"
473
  msgstr ""
474
 
475
+ #: classes/class-uagb-config.php:1145
476
  msgid "This block helps you add an inline notice."
477
  msgstr ""
478
 
479
+ #: classes/class-uagb-config.php:1194
480
  msgid "Marketing Button"
481
  msgstr ""
482
 
483
+ #: classes/class-uagb-config.php:1195
484
  msgid "This block allows you to place a Marketing Button with small description."
485
  msgstr ""
486
 
487
+ #: classes/class-uagb-config.php:1269
488
  msgid "Multi Buttons"
489
  msgstr ""
490
 
491
+ #: classes/class-uagb-config.php:1270
492
  msgid "This block allows you to add multiple buttons with a single block."
493
  msgstr ""
494
 
495
+ #: classes/class-uagb-config.php:1289
496
  msgid "Button"
497
  msgstr ""
498
 
499
+ #: classes/class-uagb-config.php:1290
500
  msgid "This block allows you to style button."
501
  msgstr ""
502
 
503
+ #: classes/class-uagb-config.php:1325
504
  msgid "Post Carousel"
505
  msgstr ""
506
 
507
+ #: classes/class-uagb-config.php:1326
508
  msgid ""
509
  "This block fetches the blog posts you may have on your website and displays "
510
  "them in a carousel layout."
511
  msgstr ""
512
 
513
+ #: classes/class-uagb-config.php:1406 classes/class-uagb-config.php:1490
514
+ #: classes/class-uagb-config.php:1592 dist/blocks/post/class-uagb-post.php:403
515
+ #: dist/blocks/post/class-uagb-post.php:1354
516
  #: dist/blocks/post-timeline/class-uagb-post-timeline.php:447
517
  msgid "Read More"
518
  msgstr ""
519
 
520
+ #: classes/class-uagb-config.php:1416
521
  msgid "Post Grid"
522
  msgstr ""
523
 
524
+ #: classes/class-uagb-config.php:1417
525
  msgid ""
526
  "This block fetches the blog posts you may have on your website and displays "
527
  "them in a grid layout."
528
  msgstr ""
529
 
530
+ #: classes/class-uagb-config.php:1516
531
  msgid "Post Masonry"
532
  msgstr ""
533
 
534
+ #: classes/class-uagb-config.php:1517
535
  msgid ""
536
  "This block fetches the blog posts you may have on your website and displays "
537
  "them in a masonry layout."
538
  msgstr ""
539
 
540
+ #: classes/class-uagb-config.php:1624
541
  msgid "Post Timeline"
542
  msgstr ""
543
 
544
+ #: classes/class-uagb-config.php:1625
545
  msgid ""
546
  "The Timeline block lets you create beautiful timelines of Posts on your "
547
  "website."
548
  msgstr ""
549
 
550
+ #: classes/class-uagb-config.php:1725
551
  msgid "Price List"
552
  msgstr ""
553
 
554
+ #: classes/class-uagb-config.php:1726
555
  msgid "This block allows you to add attractive Price List."
556
  msgstr ""
557
 
558
+ #: classes/class-uagb-config.php:1798
559
  msgid "Section"
560
  msgstr ""
561
 
562
+ #: classes/class-uagb-config.php:1799
563
  msgid ""
564
  "This block is an outer wrap section that allows you to add other blocks "
565
  "within it."
566
  msgstr ""
567
 
568
+ #: classes/class-uagb-config.php:1880
569
  msgid "Social Share"
570
  msgstr ""
571
 
572
+ #: classes/class-uagb-config.php:1881
573
  msgid ""
574
  "This block allows you to let users share your content across various social "
575
  "networking sites."
576
  msgstr ""
577
 
578
+ #: classes/class-uagb-config.php:1916
579
  msgid "Social Share Child"
580
  msgstr ""
581
 
582
+ #: classes/class-uagb-config.php:1933
583
  msgid "Table of Contents"
584
  msgstr ""
585
 
586
+ #: classes/class-uagb-config.php:1934
587
  msgid "This block allows you to place a Table of Contents for Pages/Posts."
588
  msgstr ""
589
 
590
+ #: classes/class-uagb-config.php:2031
591
  msgid "Team"
592
  msgstr ""
593
 
594
+ #: classes/class-uagb-config.php:2032
595
  msgid ""
596
  "This block allows you to display your team. Add their picture, name, what "
597
  "they do and links to their social profiles."
598
  msgstr ""
599
 
600
+ #: classes/class-uagb-config.php:2103
601
  msgid "Testimonial"
602
  msgstr ""
603
 
604
+ #: classes/class-uagb-config.php:2104
605
  msgid ""
606
  "This block helps your display some amazing client feedback within your "
607
  "website."
608
  msgstr ""
609
 
610
+ #: classes/class-uagb-config.php:2188
611
  msgid "WP - Search"
612
  msgstr ""
613
 
614
+ #: classes/class-uagb-config.php:2189
615
  msgid "This block helps you add a Search field."
616
  msgstr ""
617
 
618
+ #: classes/class-uagb-config.php:2256
619
+ msgid "Taxonomy List"
620
+ msgstr ""
621
+
622
+ #: classes/class-uagb-config.php:2257
623
+ msgid ""
624
+ "This block helps you to display content categorization for various post "
625
+ "types"
626
+ msgstr ""
627
+
628
+ #: classes/class-uagb-config.php:2337
629
+ #: dist/blocks/taxonomy-list/class-uagb-taxonomy-list.php:113
630
+ msgid "Taxonomy Not Available."
631
+ msgstr ""
632
+
633
+ #: classes/class-uagb-helper.php:1001
634
  msgid "Full"
635
  msgstr ""
636
 
646
  msgid "Ultimate Addons Blocks"
647
  msgstr ""
648
 
649
+ #: classes/class-uagb-init-blocks.php:331
650
+ #: classes/class-uagb-init-blocks.php:364
651
  msgid "Select Form"
652
  msgstr ""
653
 
654
+ #: classes/class-uagb-init-blocks.php:345
655
  msgid "You have not added any Contact Form 7 yet."
656
  msgstr ""
657
 
658
+ #: classes/class-uagb-init-blocks.php:378
659
  msgid "You have not added any Gravity Forms yet."
660
  msgstr ""
661
 
662
+ #: classes/class-uagb-loader.php:159
663
  #. translators: %s: html tags
664
  msgid ""
665
  "The %1$sUltimate Addon for Gutenberg%2$s plugin requires %1$sGutenberg%2$s "
666
  "plugin installed & activated."
667
  msgstr ""
668
 
669
+ #: classes/class-uagb-loader.php:162
670
  msgid "Install Gutenberg"
671
  msgstr ""
672
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: gutenberg, blocks, gutenberg blocks, editor, block
5
  Requires at least: 4.7
6
  Requires PHP: 5.6
7
  Tested up to: 5.5
8
- Stable tag: 1.17.0
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -70,6 +70,7 @@ We also have an informative and detailed article that will help you to <a href="
70
  <strong>An Ultimate Gutenberg Blocks Library</strong>
71
 
72
  <ul>
 
73
  <li><a href="https://www.ultimategutenberg.com/how-to-schema/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme" target="_blank">How-to Schema </a>: This block allows you to design attractive How-to pages or articles that can describe the step-by-step procedure to achieve certain goals. The best thing is this block will automatically add How-to Schema to your page that can boost ranking in search results.</li>
74
  <li><a href="https://www.ultimategutenberg.com/faq/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme" target="_blank">FAQ Schema </a>: This block helps you answering user’s common queries in an easy and attractive way. You also get a one-click option to apply FAQ Schema on the page. That helps to display content in a rich snippet that can pull more traffic to your website.</li>
75
  <li><a href="https://www.ultimategutenberg.com/docs/wp-search/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme" target="_blank">WP - Search </a>: Search bars quickly bring information users are looking for and deliver a great user experience. You can display the WordPress search field anywhere on your page easily with the WP - Search block.</li>
@@ -158,6 +159,18 @@ When you use the Ultimate Addons for Gutenberg along with the free Astra theme,
158
  1. /assets/screenshots/1.png
159
 
160
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
  = 1.17.0 =
163
  * Improvement: Compatibility with WordPress 5.5.
5
  Requires at least: 4.7
6
  Requires PHP: 5.6
7
  Tested up to: 5.5
8
+ Stable tag: 1.18.0
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
70
  <strong>An Ultimate Gutenberg Blocks Library</strong>
71
 
72
  <ul>
73
+ <li><a href="https://www.ultimategutenberg.com/blocks/taxonomy/" target="_blank">Taxonomy List </a>: With this block, you can easily display categories for post/pages or custom post types. Further, you can style it with a grid, list, or dropdown layout and set color, typography.</li>
74
  <li><a href="https://www.ultimategutenberg.com/how-to-schema/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme" target="_blank">How-to Schema </a>: This block allows you to design attractive How-to pages or articles that can describe the step-by-step procedure to achieve certain goals. The best thing is this block will automatically add How-to Schema to your page that can boost ranking in search results.</li>
75
  <li><a href="https://www.ultimategutenberg.com/faq/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme" target="_blank">FAQ Schema </a>: This block helps you answering user’s common queries in an easy and attractive way. You also get a one-click option to apply FAQ Schema on the page. That helps to display content in a rich snippet that can pull more traffic to your website.</li>
76
  <li><a href="https://www.ultimategutenberg.com/docs/wp-search/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme" target="_blank">WP - Search </a>: Search bars quickly bring information users are looking for and deliver a great user experience. You can display the WordPress search field anywhere on your page easily with the WP - Search block.</li>
159
  1. /assets/screenshots/1.png
160
 
161
  == Changelog ==
162
+ = 1.18.0 =
163
+ * New: Taxonomy List.
164
+ * Improvement: FAQ Schema - Added responsive columns options for mobile and tablet.
165
+ * Improvement: Google Map - Now user can show language-specific Google Map.
166
+ * Improvement: How to Schema - More options to add total time.
167
+ * Fix: Multiple file generation issue in some cases fixed.
168
+ * Fix: Inline Notice - Dismissal of Notice issue.
169
+ * Fix: How To Schema - Step gap issue.
170
+ * Fix: How To Schema - Image deletion issue for steps.
171
+ * Fix: FAQ Schema - Multiple FAQSchema on the same page not allowed issue.
172
+ * Fix: Post Block - Infinite scroll is broken for anonymous user.
173
+ * Fix: Unicode error in some cases issue fixed.
174
 
175
  = 1.17.0 =
176
  * Improvement: Compatibility with WordPress 5.5.
ultimate-addons-for-gutenberg.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://www.brainstormforce.com
5
  * Author: Brainstorm Force
6
  * Author URI: https://www.brainstormforce.com
7
- * Version: 1.17.0
8
  * Description: The Ultimate Addons for Gutenberg extends the Gutenberg functionality with several unique and feature-rich blocks that help build websites faster.
9
  * Text Domain: ultimate-addons-for-gutenberg
10
  *
4
  * Plugin URI: https://www.brainstormforce.com
5
  * Author: Brainstorm Force
6
  * Author URI: https://www.brainstormforce.com
7
+ * Version: 1.18.0
8
  * Description: The Ultimate Addons for Gutenberg extends the Gutenberg functionality with several unique and feature-rich blocks that help build websites faster.
9
  * Text Domain: ultimate-addons-for-gutenberg
10
  *