Funnel Builder by CartFlows – Create High Converting Sales Funnels For WordPress - Version 1.10.0

Version Description

Download this release

Release Info

Developer cartflowswp
Plugin Icon Funnel Builder by CartFlows – Create High Converting Sales Funnels For WordPress
Version 1.10.0
Comparing to
See all releases

Code changes from version 1.9.2 to 1.10.0

admin-core/ajax/ajax-init.php CHANGED
@@ -74,6 +74,7 @@ class AjaxInit {
74
  // 'CartflowsAdmin\AdminCore\Ajax\HomePage',
75
  'CartflowsAdmin\AdminCore\Ajax\FlowsStats',
76
  'CartflowsAdmin\AdminCore\Ajax\AbSteps',
 
77
  );
78
 
79
  foreach ( $controllers as $controller ) {
74
  // 'CartflowsAdmin\AdminCore\Ajax\HomePage',
75
  'CartflowsAdmin\AdminCore\Ajax\FlowsStats',
76
  'CartflowsAdmin\AdminCore\Ajax\AbSteps',
77
+ 'CartflowsAdmin\AdminCore\Ajax\SetupPage',
78
  );
79
 
80
  foreach ( $controllers as $controller ) {
admin-core/ajax/common-settings.php CHANGED
@@ -49,13 +49,15 @@ class CommonSettings extends AjaxBase {
49
  */
50
  public function register_ajax_events() {
51
 
52
- $ajax_events = array(
53
- 'save_global_settings',
54
- 'switch_to_old_ui',
55
- 'regenerate_css_for_steps',
56
- );
57
 
58
- $this->init_ajax_events( $ajax_events );
 
 
 
 
 
 
59
  }
60
 
61
  /**
@@ -225,6 +227,30 @@ class CommonSettings extends AjaxBase {
225
  $this->update_admin_settings_option( 'cartflows_pro_delete_plugin_data', $new_settings, false );
226
  }
227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  }
229
 
230
  /**
@@ -403,8 +429,8 @@ class CommonSettings extends AjaxBase {
403
 
404
  if ( isset( $_POST['reset'] ) ) { //phpcs:ignore
405
  $_POST['_cartflows_permalink'] = array(
406
- 'permalink' => CARTFLOWS_STEP_POST_TYPE,
407
- 'permalink_flow_base' => CARTFLOWS_FLOW_POST_TYPE,
408
  'permalink_structure' => '',
409
  );
410
 
@@ -414,13 +440,13 @@ class CommonSettings extends AjaxBase {
414
  $cartflows_permalink_settings = $this->sanitize_form_inputs( wp_unslash( $_POST['_cartflows_permalink'] ) ); //phpcs:ignore
415
 
416
  if ( empty( $cartflows_permalink_settings['permalink'] ) ) {
417
- $new_settings['permalink'] = CARTFLOWS_STEP_POST_TYPE;
418
  } else {
419
  $new_settings['permalink'] = $cartflows_permalink_settings['permalink'];
420
  }
421
 
422
  if ( empty( $cartflows_permalink_settings['permalink_flow_base'] ) ) {
423
- $new_settings['permalink_flow_base'] = CARTFLOWS_FLOW_POST_TYPE;
424
  } else {
425
  $new_settings['permalink_flow_base'] = $cartflows_permalink_settings['permalink_flow_base'];
426
  }
49
  */
50
  public function register_ajax_events() {
51
 
52
+ if ( current_user_can( 'cartflows_manage_settings' ) ) {
 
 
 
 
53
 
54
+ $ajax_events = array(
55
+ 'save_global_settings',
56
+ 'switch_to_old_ui',
57
+ 'regenerate_css_for_steps',
58
+ );
59
+ $this->init_ajax_events( $ajax_events );
60
+ }
61
  }
62
 
63
  /**
227
  $this->update_admin_settings_option( 'cartflows_pro_delete_plugin_data', $new_settings, false );
228
  }
229
 
230
+ if ( isset( $_POST['cartflows_stats_report_emails'] ) ) { //phpcs:ignore
231
+ $enable_report_emails = sanitize_text_field( $_POST['cartflows_stats_report_emails'] ); //phpcs:ignore
232
+ $this->update_admin_settings_option( 'cartflows_stats_report_emails', $enable_report_emails, false );
233
+ }
234
+
235
+ if ( isset( $_POST['cartflows_stats_report_email_ids'] ) ) { //phpcs:ignore
236
+
237
+ if ( ! empty( $_POST['cartflows_stats_report_email_ids'] ) ) { //phpcs:ignore
238
+ $emails = preg_split( "/[\f\r\n]+/", $_POST['cartflows_stats_report_email_ids'] ); //phpcs:ignore
239
+ $validated_emails = array();
240
+
241
+ foreach ( $emails as $email_id ) {
242
+
243
+ if ( is_email( $email_id ) ) {
244
+ array_push( $validated_emails, sanitize_email( $email_id ) );
245
+ }
246
+ }
247
+ $validated_emails = implode( "\n", $validated_emails );
248
+ $this->update_admin_settings_option( 'cartflows_stats_report_email_ids', $validated_emails, false );
249
+ } else {
250
+ $this->update_admin_settings_option( 'cartflows_stats_report_email_ids', '', false );
251
+ }
252
+ }
253
+
254
  }
255
 
256
  /**
429
 
430
  if ( isset( $_POST['reset'] ) ) { //phpcs:ignore
431
  $_POST['_cartflows_permalink'] = array(
432
+ 'permalink' => CARTFLOWS_STEP_PERMALINK_SLUG,
433
+ 'permalink_flow_base' => CARTFLOWS_FLOW_PERMALINK_SLUG,
434
  'permalink_structure' => '',
435
  );
436
 
440
  $cartflows_permalink_settings = $this->sanitize_form_inputs( wp_unslash( $_POST['_cartflows_permalink'] ) ); //phpcs:ignore
441
 
442
  if ( empty( $cartflows_permalink_settings['permalink'] ) ) {
443
+ $new_settings['permalink'] = CARTFLOWS_STEP_PERMALINK_SLUG;
444
  } else {
445
  $new_settings['permalink'] = $cartflows_permalink_settings['permalink'];
446
  }
447
 
448
  if ( empty( $cartflows_permalink_settings['permalink_flow_base'] ) ) {
449
+ $new_settings['permalink_flow_base'] = CARTFLOWS_FLOW_PERMALINK_SLUG;
450
  } else {
451
  $new_settings['permalink_flow_base'] = $cartflows_permalink_settings['permalink_flow_base'];
452
  }
admin-core/ajax/flows-stats.php CHANGED
@@ -63,137 +63,30 @@ class FlowsStats extends AjaxBase {
63
  */
64
  public function get_all_flows_stats() {
65
 
66
- $total_flow_revenue = $this->get_earnings();
67
 
68
- $response = array(
69
- 'flow_stats' => $total_flow_revenue,
70
- );
71
-
72
- wp_send_json_success( $response );
73
-
74
- }
75
-
76
- /**
77
- * Calculate earning.
78
- *
79
- * @return array
80
- */
81
- public function get_earnings() {
82
-
83
- $currency_symbol = function_exists( 'get_woocommerce_currency_symbol' ) ? get_woocommerce_currency_symbol() : '';
84
-
85
- if ( _is_cartflows_pro() ) {
86
- // Return All Stats.
87
- return apply_filters(
88
- 'cartflows_home_page_analytics',
89
- array(
90
- 'order_currency' => $currency_symbol,
91
- 'total_orders' => '0',
92
- 'total_revenue' => '0',
93
- 'total_bump_revenue' => '0',
94
- 'total_offers_revenue' => '0',
95
- 'total_visits' => '0',
96
- )
97
- );
98
  }
99
 
100
- $orders = $this->get_orders_by_flow();
101
- $gross_sale = 0;
102
- $order_count = 0;
103
-
104
- if ( ! empty( $orders ) ) {
105
-
106
- foreach ( $orders as $order ) {
107
-
108
- $order_id = $order->ID;
109
- $order = wc_get_order( $order_id );
110
- $order_total = $order->get_total();
111
- $order_count++;
112
-
113
- if ( ! $order->has_status( 'cancelled' ) ) {
114
- $gross_sale += (float) $order_total;
115
- }
116
- }
117
  }
118
 
119
- // Return All Stats.
120
- return array(
121
- 'order_currency' => $currency_symbol,
122
- 'total_orders' => $order_count,
123
- 'total_revenue' => number_format( (float) $gross_sale, 2, '.', '' ),
124
- 'total_bump_revenue' => '0',
125
- 'total_offers_revenue' => '0',
126
- 'total_visits' => '0',
127
- );
128
-
129
- }
130
-
131
-
132
-
133
- /**
134
- * Get orders data for flow.
135
- *
136
- * @since 1.6.15
137
- *
138
- * @return int
139
- */
140
- public function get_orders_by_flow() {
141
-
142
- global $wpdb;
143
-
144
  $start_date = filter_input( INPUT_POST, 'date_from', FILTER_SANITIZE_STRING );
145
  $end_date = filter_input( INPUT_POST, 'date_to', FILTER_SANITIZE_STRING );
146
 
147
- $start_date = $start_date ? $start_date : date( 'Y-m-d' ); //phpcs:ignore
148
- $end_date = $end_date ? $end_date : date( 'Y-m-d' ); //phpcs:ignore
149
-
150
- $start_date = date( 'Y-m-d H:i:s', strtotime( $start_date . '00:00:00' ) ); //phpcs:ignore
151
- $end_date = date( 'Y-m-d H:i:s', strtotime( $end_date . '23:59:59' ) ); //phpcs:ignore
152
 
153
- $conditions = array(
154
- 'tb1.post_type' => 'shop_order',
155
  );
156
 
157
- $where = $this->get_items_query_where( $conditions );
158
-
159
- $where .= " AND ( tb1.post_date BETWEEN IF (tb2.meta_key='wcf-analytics-reset-date'>'" . $start_date . "', tb2.meta_key, '" . $start_date . "') AND '" . $end_date . "' )";
160
- $where .= " AND ( ( tb2.meta_key = '_wcf_flow_id' ) OR ( tb2.meta_key = '_cartflows_parent_flow_id' ) )";
161
- $where .= " AND tb1.post_status IN ( 'wc-completed', 'wc-processing', 'wc-cancelled' )";
162
-
163
- $query = 'SELECT tb1.ID, DATE( tb1.post_date ) date, tb2.meta_value FROM ' . $wpdb->prefix . 'posts tb1
164
- INNER JOIN ' . $wpdb->prefix . 'postmeta tb2
165
- ON tb1.ID = tb2.post_id '
166
- . $where;
167
-
168
- return $wpdb->get_results( $query ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
169
- }
170
-
171
-
172
- /**
173
- * Prepare where items for query.
174
- *
175
- * @param array $conditions conditions to prepare WHERE query.
176
- * @return string
177
- */
178
- protected function get_items_query_where( $conditions ) {
179
-
180
- global $wpdb;
181
-
182
- $where_conditions = array();
183
-
184
- foreach ( $conditions as $key => $condition ) {
185
-
186
- if ( false !== stripos( $key, 'IN' ) ) {
187
- $where_conditions[] = $key . $wpdb->prepare( '( %s )', $condition );
188
- } else {
189
- $where_conditions[] = $key . $wpdb->prepare( '= %s', $condition );
190
- }
191
- }
192
 
193
- if ( ! empty( $where_conditions ) ) {
194
- return 'WHERE 1 = 1 AND ' . implode( ' AND ', $where_conditions );
195
- } else {
196
- return '';
197
- }
198
  }
199
  }
63
  */
64
  public function get_all_flows_stats() {
65
 
66
+ $response_data = array( 'messsage' => $this->get_error_msg( 'permission' ) );
67
 
68
+ if ( ! current_user_can( 'cartflows_manage_flows_steps' ) ) {
69
+ wp_send_json_error( $response_data );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  }
71
 
72
+ /**
73
+ * Nonce verification
74
+ */
75
+ if ( ! check_ajax_referer( 'cartflows_get_all_flows_stats', 'security', false ) ) {
76
+ $response_data = array( 'messsage' => $this->get_error_msg( 'nonce' ) );
77
+ wp_send_json_error( $response_data );
 
 
 
 
 
 
 
 
 
 
 
78
  }
79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  $start_date = filter_input( INPUT_POST, 'date_from', FILTER_SANITIZE_STRING );
81
  $end_date = filter_input( INPUT_POST, 'date_to', FILTER_SANITIZE_STRING );
82
 
83
+ $total_flow_revenue = AdminHelper::get_earnings( $start_date, $end_date );
 
 
 
 
84
 
85
+ $response = array(
86
+ 'flow_stats' => $total_flow_revenue,
87
  );
88
 
89
+ wp_send_json_success( $response );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
 
 
 
 
 
 
91
  }
92
  }
admin-core/ajax/flows.php CHANGED
@@ -64,6 +64,7 @@ class Flows extends AjaxBase {
64
  'save_flow_meta_settings',
65
  'export_flows_in_bulk',
66
  'update_status',
 
67
  );
68
 
69
  $this->init_ajax_events( $ajax_events );
@@ -815,6 +816,8 @@ class Flows extends AjaxBase {
815
  /* Finally delete flow post and it's data */
816
  wp_delete_post( $flow_id, true );
817
 
 
 
818
  /**
819
  * Redirect to the new flow edit screen
820
  */
@@ -894,6 +897,66 @@ class Flows extends AjaxBase {
894
  wp_send_json_success( $response_data );
895
  }
896
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
897
 
898
  /**
899
  * Prepare where items for query.
64
  'save_flow_meta_settings',
65
  'export_flows_in_bulk',
66
  'update_status',
67
+ 'update_store_checkout_status',
68
  );
69
 
70
  $this->init_ajax_events( $ajax_events );
816
  /* Finally delete flow post and it's data */
817
  wp_delete_post( $flow_id, true );
818
 
819
+ do_action( 'cartflows_admin_after_delete_flow', $flow_id );
820
+
821
  /**
822
  * Redirect to the new flow edit screen
823
  */
897
  wp_send_json_success( $response_data );
898
  }
899
 
900
+ /**
901
+ * Enables / Disables Store Checkout on toggle click
902
+ *
903
+ * @return void
904
+ * @since X.X.X
905
+ */
906
+ public function update_store_checkout_status() {
907
+ $response_data = array( 'message' => $this->get_error_msg( 'permission' ) );
908
+
909
+ /**
910
+ * Check permission
911
+ */
912
+ if ( ! current_user_can( 'cartflows_manage_flows_steps' ) ) {
913
+ wp_send_json_error( $response_data );
914
+ }
915
+
916
+ /**
917
+ * Nonce verification
918
+ */
919
+ if ( ! check_ajax_referer( 'cartflows_update_store_checkout_status', 'security', false ) ) {
920
+ $response_data = array( 'message' => $this->get_error_msg( 'nonce' ) );
921
+ wp_send_json_error( $response_data );
922
+ }
923
+
924
+ if ( ! isset( $_POST['enable_store_checkout'] ) ) {
925
+ $response_data = array( 'message' => __( 'No Flow IDs has been supplied to delete!', 'cartflows' ) );
926
+ wp_send_json_error( $response_data );
927
+ }
928
+
929
+ $enable_store_checkout = isset( $_POST['enable_store_checkout'] ) ? sanitize_text_field( wp_unslash( $_POST['enable_store_checkout'] ) ) : '';
930
+ $checkout_id = isset( $_POST['checkout_id'] ) ? absint( wp_unslash( $_POST['checkout_id'] ) ) : '';
931
+
932
+ $old_global_checkout = get_option( '_cartflows_old_global_checkout ', false );
933
+ $checkout_id = $old_global_checkout ? absint( $old_global_checkout ) : $checkout_id;
934
+
935
+ $common_settings = \Cartflows_Helper::get_common_settings();
936
+
937
+ $override_status = 'enable';
938
+ if ( 'false' === $enable_store_checkout ) {
939
+ $checkout_id = '';
940
+ $override_status = 'disable';
941
+ }
942
+
943
+ $common_settings['global_checkout'] = $checkout_id;
944
+ $common_settings['override_global_checkout'] = $override_status;
945
+
946
+ update_option( '_cartflows_common', $common_settings );
947
+
948
+ do_action( 'cartflows_after_save_store_checkout' );
949
+
950
+ /**
951
+ * Redirect to the new flow edit screen
952
+ */
953
+ $response_data = array(
954
+ 'message' => __( 'Successfully updated the Flow status!', 'cartflows' ),
955
+ 'checkout_id' => $checkout_id,
956
+ );
957
+ wp_send_json_success( $response_data );
958
+ }
959
+
960
 
961
  /**
962
  * Prepare where items for query.
admin-core/ajax/importer.php CHANGED
@@ -71,6 +71,7 @@ class Importer extends AjaxBase {
71
 
72
  'import_json_flow',
73
  'export_all_flows',
 
74
  );
75
 
76
  $this->init_ajax_events( $ajax_events );
@@ -226,7 +227,9 @@ class Importer extends AjaxBase {
226
  wp_send_json_error( $response_data );
227
  }
228
 
229
- \CartFlows_Batch_Process::get_instance()->update_latest_checksums();
 
 
230
 
231
  update_site_option( 'cartflows-batch-is-complete', 'no', 'no' );
232
  update_site_option( 'cartflows-manual-sync-complete', 'yes', 'no' );
@@ -252,9 +255,10 @@ class Importer extends AjaxBase {
252
  wp_send_json_error( $response_data );
253
  }
254
 
255
- $page_no = isset( $_POST['page_no'] ) ? absint( $_POST['page_no'] ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Missing
 
256
  if ( $page_no ) {
257
- $sites_and_pages = \Cartflows_Batch_Processing_Sync_Library::get_instance()->import_sites( $page_no );
258
  wp_send_json_success(
259
  array(
260
  'message' => 'SUCCESS: cartflows_import_sites',
@@ -287,10 +291,12 @@ class Importer extends AjaxBase {
287
  wp_send_json_error( $response_data );
288
  }
289
 
 
 
290
  /**
291
  * LOGIC
292
  */
293
- if ( 'no' === \CartFlows_Batch_Process::get_instance()->get_last_export_checksums() ) {
294
  wp_send_json_success( 'updated' );
295
  }
296
 
@@ -300,7 +306,7 @@ class Importer extends AjaxBase {
300
  } else {
301
  $import_with = 'batch';
302
  // Process import.
303
- \CartFlows_Batch_Process::get_instance()->process_batch();
304
  }
305
 
306
  $response_data = array(
@@ -328,7 +334,9 @@ class Importer extends AjaxBase {
328
  wp_send_json_error( $response_data );
329
  }
330
 
331
- $total_requests = \CartFlows_Batch_Process::get_instance()->get_total_requests();
 
 
332
  if ( $total_requests ) {
333
  wp_send_json_success(
334
  array(
@@ -367,9 +375,9 @@ class Importer extends AjaxBase {
367
 
368
  wcf()->logger->import_log( 'STARTED! Importing Step' );
369
 
370
- $flow_id = ( isset( $_POST['flow_id'] ) ) ? esc_attr( $_POST['flow_id'] ) : ''; // phpcs:ignore
371
- $step_type = ( isset( $_POST['step_type'] ) ) ? esc_attr( $_POST['step_type'] ) : ''; // phpcs:ignore
372
- $step_title = ( isset( $_POST['step_title'] ) ) ? esc_attr( $_POST['step_title'] ) : ''; // phpcs:ignore
373
  $step_title = isset( $_POST['step_name'] ) && ! empty( $_POST['step_name'] ) ? sanitize_text_field( wp_unslash( $_POST['step_name'] ) ) : $step_title;
374
 
375
  // Create new step.
@@ -411,9 +419,19 @@ class Importer extends AjaxBase {
411
 
412
  \wp_clean_plugins_cache();
413
 
414
- $plugin_init = ( isset( $_POST['init'] ) ) ? esc_attr( $_POST['init'] ) : ''; // phpcs:ignore
 
 
 
 
 
 
 
 
 
 
415
 
416
- $activate = \activate_plugin( $plugin_init, '', false, true );
417
 
418
  if ( is_wp_error( $activate ) ) {
419
  wp_send_json_error(
@@ -426,6 +444,7 @@ class Importer extends AjaxBase {
426
 
427
  wp_send_json_success(
428
  array(
 
429
  'message' => 'Plugin activated successfully.',
430
  )
431
  );
@@ -465,23 +484,50 @@ class Importer extends AjaxBase {
465
  wp_send_json_error( $flow_id->get_error_message() );
466
  }
467
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
468
  $flow_steps = array();
469
 
470
  if ( wcf()->is_woo_active ) {
471
- $steps_data = array(
472
- 'sales' => array(
473
- 'title' => __( 'Sales Landing', 'cartflows' ),
474
- 'type' => 'landing',
475
- ),
476
- 'order-form' => array(
477
- 'title' => __( 'Checkout (Woo)', 'cartflows' ),
478
- 'type' => 'checkout',
479
- ),
480
- 'order-confirmation' => array(
481
- 'title' => __( 'Thank You (Woo)', 'cartflows' ),
482
- 'type' => 'thankyou',
483
- ),
484
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
485
  } else {
486
  $steps_data = array(
487
  'landing' => array(
@@ -575,8 +621,8 @@ class Importer extends AjaxBase {
575
  $response = \CartFlows_API::get_instance()->get_flow( $flow['ID'] );
576
 
577
  if ( is_wp_error( $response['data'] ) ) {
578
-
579
- $btn = __( 'Request timeout error. Please check if the firewall or any security plugin is blocking the outgoing HTTP/HTTPS requests to templates.cartflows.com or not. <br><br>To resolve this issue, please check this <a target="_blank" href="https://cartflows.com/docs/request-timeout-error-while-importing-the-flow-step-templates/">article</a>.', 'cartflows' );
580
 
581
  wp_send_json_error(
582
  array(
@@ -644,6 +690,20 @@ class Importer extends AjaxBase {
644
  wp_send_json_error( $new_flow_id->get_error_message() );
645
  }
646
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
647
  wcf()->logger->import_log( '✓ Flow Created! Flow ID: ' . $new_flow_id . ' - Remote Flow ID - ' . $flow['ID'] );
648
 
649
  /**
@@ -654,14 +714,15 @@ class Importer extends AjaxBase {
654
  foreach ( $steps as $key => $step ) {
655
  $this->import_single_step(
656
  array(
657
- 'step' => array(
658
  'id' => $step['ID'],
659
  'title' => $step['title'],
660
  'type' => $step['type'],
661
  ),
662
- 'flow' => array(
663
  'id' => $new_flow_id,
664
  ),
 
665
  )
666
  );
667
  }
@@ -710,7 +771,21 @@ class Importer extends AjaxBase {
710
  $remote_flow_id = isset( $_POST['remote_flow_id'] ) ? absint( $_POST['remote_flow_id'] ) : 0;
711
 
712
  // Get single step Rest API response.
713
- $response = \CartFlows_API::get_instance()->get_flow( $remote_flow_id );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
714
  $license_status = isset( $response['data']['licence_status'] ) ? $response['data']['licence_status'] : '';
715
 
716
  // If license is invalid then.
@@ -777,6 +852,185 @@ class Importer extends AjaxBase {
777
 
778
  }
779
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
780
  /**
781
  * Create Simple Step
782
  *
@@ -787,10 +1041,17 @@ class Importer extends AjaxBase {
787
 
788
  wcf()->logger->import_log( 'STARTED! Importing Step' );
789
 
790
- $step_id = isset( $args['step']['id'] ) ? absint( $args['step']['id'] ) : 0;
791
- $step_title = isset( $args['step']['title'] ) ? $args['step']['title'] : '';
792
- $step_type = isset( $args['step']['type'] ) ? $args['step']['type'] : '';
793
- $flow_id = isset( $args['flow']['id'] ) ? absint( $args['flow']['id'] ) : '';
 
 
 
 
 
 
 
794
 
795
  // Create new step.
796
  $new_step_id = \CartFlows_Importer::get_instance()->create_step( $flow_id, $step_type, $step_title );
@@ -804,6 +1065,7 @@ class Importer extends AjaxBase {
804
 
805
  // Get single step Rest API response.
806
  $response = \CartFlows_API::get_instance()->get_template( $step_id );
 
807
  wcf()->logger->import_log( wp_json_encode( $response ) );
808
 
809
  if ( 'divi' === \Cartflows_Helper::get_common_setting( 'default_page_builder' ) ) {
@@ -831,12 +1093,16 @@ class Importer extends AjaxBase {
831
  }
832
  }
833
 
834
- /* Imported Step */
835
- update_post_meta( $new_step_id, 'cartflows_imported_step', 'yes' );
836
-
837
  // Import Post Meta.
838
  $this->import_post_meta( $new_step_id, $response );
839
 
 
 
 
 
 
 
 
840
  do_action( 'cartflows_import_complete' );
841
 
842
  // Batch Process.
@@ -859,14 +1125,19 @@ class Importer extends AjaxBase {
859
 
860
  $metadata = (array) $response['post_meta'];
861
 
862
- $exclude_meta_keys = array(
863
- 'wcf-checkout-products',
864
- 'wcf-optin-product',
865
- 'wcf-offer-product',
866
- 'wcf-order-bump-product',
867
- 'wcf-order-bumps', // @todo: We can exclude only product id from each array.
868
- 'wcf-pre-checkout-offer-product',
869
- 'wcf-testing',
 
 
 
 
 
870
  );
871
 
872
  foreach ( $metadata as $meta_key => $meta_value ) {
@@ -888,12 +1159,14 @@ class Importer extends AjaxBase {
888
  }
889
 
890
  if ( '_elementor_data' === $meta_key ) {
 
891
  if ( is_array( $raw_data ) ) {
892
  $raw_data = wp_slash( wp_json_encode( $raw_data ) );
893
  } else {
894
  $raw_data = wp_slash( $raw_data );
895
  }
896
  }
 
897
  if ( '_elementor_data' !== $meta_key && '_elementor_draft' !== $meta_key && '_fl_builder_data' !== $meta_key && '_fl_builder_draft' !== $meta_key ) {
898
  if ( is_array( $raw_data ) ) {
899
  wcf()->logger->import_log( '✓ Added post meta ' . $meta_key /* . ' | ' . wp_json_encode( $raw_data ) */ );
@@ -909,6 +1182,105 @@ class Importer extends AjaxBase {
909
  }
910
  }
911
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
912
 
913
  /**
914
  * Get flows list for preview
@@ -943,4 +1315,90 @@ class Importer extends AjaxBase {
943
 
944
  wp_send_json_success( $response_data );
945
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
946
  }
71
 
72
  'import_json_flow',
73
  'export_all_flows',
74
+ 'update_step',
75
  );
76
 
77
  $this->init_ajax_events( $ajax_events );
227
  wp_send_json_error( $response_data );
228
  }
229
 
230
+ $templates = ! empty( $_POST['template'] ) ? sanitize_text_field( wp_unslash( $_POST['template'] ) ) : '';
231
+
232
+ \CartFlows_Batch_Process::get_instance()->update_latest_checksums( $templates );
233
 
234
  update_site_option( 'cartflows-batch-is-complete', 'no', 'no' );
235
  update_site_option( 'cartflows-manual-sync-complete', 'yes', 'no' );
255
  wp_send_json_error( $response_data );
256
  }
257
 
258
+ $page_no = isset( $_POST['page_no'] ) ? absint( $_POST['page_no'] ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Missing
259
+ $template = isset( $_POST['template'] ) ? sanitize_text_field( wp_unslash( $_POST['template'] ) ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Missing
260
  if ( $page_no ) {
261
+ $sites_and_pages = \Cartflows_Batch_Processing_Sync_Library::get_instance()->import_sites( $page_no, $template );
262
  wp_send_json_success(
263
  array(
264
  'message' => 'SUCCESS: cartflows_import_sites',
291
  wp_send_json_error( $response_data );
292
  }
293
 
294
+ $templates = ! empty( $_POST['template'] ) ? sanitize_text_field( wp_unslash( $_POST['template'] ) ) : '';
295
+
296
  /**
297
  * LOGIC
298
  */
299
+ if ( 'no' === \CartFlows_Batch_Process::get_instance()->get_last_export_checksums( $templates ) ) {
300
  wp_send_json_success( 'updated' );
301
  }
302
 
306
  } else {
307
  $import_with = 'batch';
308
  // Process import.
309
+ \CartFlows_Batch_Process::get_instance()->process_batch( $templates );
310
  }
311
 
312
  $response_data = array(
334
  wp_send_json_error( $response_data );
335
  }
336
 
337
+ $templates = ! empty( $_POST['template'] ) ? sanitize_text_field( wp_unslash( $_POST['template'] ) ) : '';
338
+
339
+ $total_requests = \CartFlows_Batch_Process::get_instance()->get_total_requests( '', $templates );
340
  if ( $total_requests ) {
341
  wp_send_json_success(
342
  array(
375
 
376
  wcf()->logger->import_log( 'STARTED! Importing Step' );
377
 
378
+ $flow_id = ( isset( $_POST['flow_id'] ) ) ? absint( $_POST['flow_id'] ) : ''; // phpcs:ignore
379
+ $step_type = ( isset( $_POST['step_type'] ) ) ? sanitize_text_field( $_POST['step_type'] ) : ''; // phpcs:ignore
380
+ $step_title = ( isset( $_POST['step_title'] ) ) ? sanitize_text_field( $_POST['step_title'] ) : ''; // phpcs:ignore
381
  $step_title = isset( $_POST['step_name'] ) && ! empty( $_POST['step_name'] ) ? sanitize_text_field( wp_unslash( $_POST['step_name'] ) ) : $step_title;
382
 
383
  // Create new step.
419
 
420
  \wp_clean_plugins_cache();
421
 
422
+ $plugin_init = ( isset( $_POST['init'] ) ) ? esc_attr( $_POST['init'] ) : ''; // phpcs:ignore+
423
+
424
+ $do_sliently = true;
425
+
426
+ $exclude_do_silently = array(
427
+ 'woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php',
428
+ );
429
+
430
+ if ( in_array( $plugin_init, $exclude_do_silently, true ) ) {
431
+ $do_sliently = false;
432
+ }
433
 
434
+ $activate = \activate_plugin( $plugin_init, '', false, $do_sliently );
435
 
436
  if ( is_wp_error( $activate ) ) {
437
  wp_send_json_error(
444
 
445
  wp_send_json_success(
446
  array(
447
+ 'success' => true,
448
  'message' => 'Plugin activated successfully.',
449
  )
450
  );
484
  wp_send_json_error( $flow_id->get_error_message() );
485
  }
486
 
487
+ $store_checkout = isset( $_POST['store_checkout'] ) ? sanitize_text_field( wp_unslash( $_POST['store_checkout'] ) ) : '';
488
+
489
+ // If is store checkout update store_checkout options.
490
+ if ( 'true' === $store_checkout ) {
491
+ update_option( '_cartflows_store_checkout', $flow_id );
492
+
493
+ // reset global checkout on store checkout creation.
494
+ $common_settings = \Cartflows_Helper::get_common_settings();
495
+ $common_settings['global_checkout'] = '';
496
+ $common_settings['override_global_checkout'] = 'disable';
497
+
498
+ update_option( '_cartflows_common', $common_settings );
499
+ }
500
+
501
  $flow_steps = array();
502
 
503
  if ( wcf()->is_woo_active ) {
504
+ if ( 'true' === $store_checkout ) {
505
+ $steps_data = array(
506
+ 'order-form' => array(
507
+ 'title' => __( 'Checkout', 'cartflows' ),
508
+ 'type' => 'checkout',
509
+ ),
510
+ 'order-confirmation' => array(
511
+ 'title' => __( 'Thank You', 'cartflows' ),
512
+ 'type' => 'thankyou',
513
+ ),
514
+ );
515
+ } else {
516
+ $steps_data = array(
517
+ 'sales' => array(
518
+ 'title' => __( 'Sales Landing', 'cartflows' ),
519
+ 'type' => 'landing',
520
+ ),
521
+ 'order-form' => array(
522
+ 'title' => __( 'Checkout (Woo)', 'cartflows' ),
523
+ 'type' => 'checkout',
524
+ ),
525
+ 'order-confirmation' => array(
526
+ 'title' => __( 'Thank You (Woo)', 'cartflows' ),
527
+ 'type' => 'thankyou',
528
+ ),
529
+ );
530
+ }
531
  } else {
532
  $steps_data = array(
533
  'landing' => array(
621
  $response = \CartFlows_API::get_instance()->get_flow( $flow['ID'] );
622
 
623
  if ( is_wp_error( $response['data'] ) ) {
624
+ /* translators: %1$s: html tag, %2$s: link html start %3$s: link html end */
625
+ $btn = sprintf( __( 'Request timeout error. Please check if the firewall or any security plugin is blocking the outgoing HTTP/HTTPS requests to templates.cartflows.com or not. %1$1sTo resolve this issue, please check this %2$2sarticle%3$3s.', 'cartflows' ), '<br><br>', '<a target="_blank" href="https://cartflows.com/docs/request-timeout-error-while-importing-the-flow-step-templates/">', '</a>' );
626
 
627
  wp_send_json_error(
628
  array(
690
  wp_send_json_error( $new_flow_id->get_error_message() );
691
  }
692
 
693
+ $store_checkout = isset( $_POST['store_checkout'] ) ? sanitize_text_field( wp_unslash( $_POST['store_checkout'] ) ) : '';
694
+
695
+ // If is global checkout update store_checkout options.
696
+ if ( 'true' === $store_checkout ) {
697
+ update_option( '_cartflows_store_checkout', $new_flow_id );
698
+
699
+ // reset global checkout on store checkout creation.
700
+ $common_settings = \Cartflows_Helper::get_common_settings();
701
+ $common_settings['global_checkout'] = '';
702
+ $common_settings['override_global_checkout'] = 'disable';
703
+
704
+ update_option( '_cartflows_common', $common_settings );
705
+ }
706
+
707
  wcf()->logger->import_log( '✓ Flow Created! Flow ID: ' . $new_flow_id . ' - Remote Flow ID - ' . $flow['ID'] );
708
 
709
  /**
714
  foreach ( $steps as $key => $step ) {
715
  $this->import_single_step(
716
  array(
717
+ 'step' => array(
718
  'id' => $step['ID'],
719
  'title' => $step['title'],
720
  'type' => $step['type'],
721
  ),
722
+ 'flow' => array(
723
  'id' => $new_flow_id,
724
  ),
725
+ 'is_store_checkout' => isset( $_POST['store_checkout'] ) ? sanitize_text_field( wp_unslash( $_POST['store_checkout'] ) ) : '',
726
  )
727
  );
728
  }
771
  $remote_flow_id = isset( $_POST['remote_flow_id'] ) ? absint( $_POST['remote_flow_id'] ) : 0;
772
 
773
  // Get single step Rest API response.
774
+ $response = \CartFlows_API::get_instance()->get_flow( $remote_flow_id );
775
+
776
+ if ( is_wp_error( $response['data'] ) ) {
777
+ /* translators: %1$s: html tag, %2$s: link html start %3$s: link html end */
778
+ $btn = sprintf( __( 'Request timeout error. Please check if the firewall or any security plugin is blocking the outgoing HTTP/HTTPS requests to templates.cartflows.com or not. %1$1sTo resolve this issue, please check this %2$2sarticle%3$3s.', 'cartflows' ), '<br><br>', '<a target="_blank" href="https://cartflows.com/docs/request-timeout-error-while-importing-the-flow-step-templates/">', '</a>' );
779
+
780
+ wp_send_json_error(
781
+ array(
782
+ 'message' => $response['data']->get_error_message(),
783
+ 'call_to_action' => $btn,
784
+ 'data' => $response,
785
+ )
786
+ );
787
+ }
788
+
789
  $license_status = isset( $response['data']['licence_status'] ) ? $response['data']['licence_status'] : '';
790
 
791
  // If license is invalid then.
852
 
853
  }
854
 
855
+ /**
856
+ * Updates post content of chosen template.
857
+ * working only for Store Checkout.
858
+ *
859
+ * @return void
860
+ * @since X.X.X
861
+ */
862
+ public function update_step() {
863
+
864
+ wcf()->logger->import_log( 'STARTED! Updating Step' );
865
+
866
+ $response_data = array( 'message' => $this->get_error_msg( 'permission' ) );
867
+
868
+ if ( ! current_user_can( 'cartflows_manage_flows_steps' ) ) {
869
+ wp_send_json_error( $response_data );
870
+ }
871
+
872
+ /**
873
+ * Nonce verification
874
+ */
875
+ if ( ! check_ajax_referer( 'cartflows_update_step', 'security', false ) ) {
876
+ $response_data = array( 'message' => $this->get_error_msg( 'nonce' ) );
877
+ wp_send_json_error( $response_data );
878
+ }
879
+
880
+ $step = isset( $_POST['step'] ) ? json_decode( stripslashes( $_POST['step'] ), true ) : array(); // phpcs:ignore
881
+ $flow_id = isset( $_POST['flow_id'] ) ? absint( $_POST['flow_id'] ) : 0;
882
+ $step_id = isset( $_POST['step_id'] ) ? absint( $_POST['step_id'] ) : 0;
883
+
884
+ $remote_flow_id = isset( $_POST['remote_flow_id'] ) ? absint( $_POST['remote_flow_id'] ) : 0;
885
+
886
+ // Get single step Rest API response.
887
+ $response = \CartFlows_API::get_instance()->get_flow( $remote_flow_id );
888
+ if ( is_wp_error( $response['data'] ) ) {
889
+ /* translators: %1$s: html tag, %2$s: link html start %3$s: link html end */
890
+ $btn = sprintf( __( 'Request timeout error. Please check if the firewall or any security plugin is blocking the outgoing HTTP/HTTPS requests to templates.cartflows.com or not. %1$1sTo resolve this issue, please check this %2$2sarticle%3$3s.', 'cartflows' ), '<br><br>', '<a target="_blank" href="https://cartflows.com/docs/request-timeout-error-while-importing-the-flow-step-templates/">', '</a>' );
891
+
892
+ wp_send_json_error(
893
+ array(
894
+ 'message' => $response['data']->get_error_message(),
895
+ 'call_to_action' => $btn,
896
+ 'data' => $response,
897
+ )
898
+ );
899
+ }
900
+
901
+ $license_status = isset( $response['data']['licence_status'] ) ? $response['data']['licence_status'] : '';
902
+
903
+ // If license is invalid then.
904
+ if ( 'valid' !== $license_status ) {
905
+
906
+ $cf_pro_status = AdminMenu::get_instance()->get_plugin_status( 'cartflows-pro/cartflows-pro.php' );
907
+
908
+ $cta = '';
909
+ if ( 'not-installed' === $cf_pro_status ) {
910
+ /* translators: %1$s: link html start, %2$s: link html end*/
911
+ $cta = sprintf( __( 'Upgrade to %1$sCartFlows Pro.%2$s', 'cartflows' ), '<a target="_blanks" href="https://cartflows.com/">', '</a>' );
912
+ } elseif ( 'inactive' === $cf_pro_status ) {
913
+ /* translators: %1$s: link html start, %2$s: link html end*/
914
+ $cta = sprintf( __( '%1$sActivate CartFlows Pro%2$s', 'cartflows' ), '<a target="_blank" href="' . admin_url( 'plugins.php?plugin_status=search&paged=1&s=CartFlows+Pro' ) . '">', '</a>' );
915
+ } elseif ( 'active' === $cf_pro_status ) {
916
+ /* translators: %1$s: link html start, %2$s: link html end*/
917
+ $cta = sprintf( __( 'CartFlows Pro license is not active. Activate %1$sCartFlows Pro License %2$s', 'cartflows' ), '<a target="_blank" href="' . admin_url( 'plugins.php?cartflows-license-popup' ) . '">', '</a>' );
918
+ }
919
+
920
+ wp_send_json_error(
921
+ array(
922
+ 'message' => \ucfirst( $license_status ) . ' license key! ' . $cta,
923
+ 'data' => $response,
924
+ )
925
+ );
926
+ }
927
+
928
+ if ( empty( $remote_flow_id ) ) {
929
+ $response_data = array( 'message' => __( 'Flows data not found.', 'cartflows' ) );
930
+ wp_send_json_error( $response_data );
931
+ }
932
+ $step['title'] = isset( $_POST['step_name'] ) && ! empty( $_POST['step_name'] ) ? sanitize_text_field( wp_unslash( $_POST['step_name'] ) ) : $step['title'];
933
+ // Create steps.
934
+ $this->update_single_step(
935
+ array(
936
+ 'step' => array(
937
+ 'id' => $step['ID'],
938
+ 'title' => $step['title'],
939
+ 'type' => $step['type'],
940
+ ),
941
+ 'flow' => array(
942
+ 'id' => $flow_id,
943
+ ),
944
+ 'current_step' => array(
945
+ 'id' => $step_id,
946
+ ),
947
+ )
948
+ );
949
+
950
+ wcf()->logger->import_log( 'COMPLETE! Importing Step' );
951
+
952
+ if ( empty( $step ) ) {
953
+ $response_data = array( 'message' => __( 'Step data not found.', 'cartflows' ) );
954
+ wp_send_json_error( $response_data );
955
+ }
956
+
957
+ /**
958
+ * Redirect to the new step edit screen
959
+ */
960
+ $response_data = array(
961
+ 'message' => __( 'Successfully imported the Step!', 'cartflows' ),
962
+ );
963
+
964
+ wcf()->logger->import_log( 'COMPLETE! Importing Step' );
965
+
966
+ wp_send_json_success( $response_data );
967
+
968
+ }
969
+
970
+ /**
971
+ * Update Sinple Step
972
+ *
973
+ * @param array $args Rest API Arguments.
974
+ * @return void
975
+ */
976
+ public function update_single_step( $args = array() ) {
977
+
978
+ wcf()->logger->import_log( 'STARTED! Updating Step' );
979
+
980
+ $step_id = isset( $args['step']['id'] ) ? absint( $args['step']['id'] ) : 0;
981
+ $new_step_id = isset( $args['current_step']['id'] ) ? absint( $args['current_step']['id'] ) : '';
982
+
983
+ if ( empty( $step_id ) || empty( $new_step_id ) ) {
984
+ /* translators: %s: step ID */
985
+ wp_send_json_error( sprintf( __( 'Invalid step id %1$s or post id %2$s.', 'cartflows' ), $step_id, $new_step_id ) );
986
+ }
987
+
988
+ wcf()->logger->import_log( 'Remote Step ' . $step_id . ' for local flow "' . get_the_title( $new_step_id ) . '" [' . $new_step_id . ']' );
989
+
990
+ // Get single step Rest API response.
991
+ $response = \CartFlows_API::get_instance()->get_template( $step_id );
992
+ wcf()->logger->import_log( wp_json_encode( $response ) );
993
+
994
+ if ( 'divi' === \Cartflows_Helper::get_common_setting( 'default_page_builder' ) ) {
995
+ if ( isset( $response['data']['divi_content'] ) && ! empty( $response['data']['divi_content'] ) ) {
996
+
997
+ update_post_meta( $new_step_id, 'divi_content', $response['data']['divi_content'] );
998
+
999
+ wp_update_post(
1000
+ array(
1001
+ 'ID' => $new_step_id,
1002
+ 'post_content' => $response['data']['divi_content'],
1003
+ )
1004
+ );
1005
+ }
1006
+ }
1007
+
1008
+ if ( 'gutenberg' === \Cartflows_Helper::get_common_setting( 'default_page_builder' ) ) {
1009
+ if ( isset( $response['data']['divi_content'] ) && ! empty( $response['data']['divi_content'] ) ) {
1010
+ wp_update_post(
1011
+ array(
1012
+ 'ID' => $new_step_id,
1013
+ 'post_content' => $response['data']['divi_content'],
1014
+ )
1015
+ );
1016
+ }
1017
+ }
1018
+
1019
+ // Import Post Meta.
1020
+ $this->import_post_meta( $new_step_id, $response );
1021
+
1022
+ /* Imported Step */
1023
+ update_post_meta( $new_step_id, 'cartflows_imported_step', 'yes' );
1024
+
1025
+ do_action( 'cartflows_import_complete' );
1026
+
1027
+ // Batch Process.
1028
+ do_action( 'cartflows_after_template_import', $new_step_id, $response );
1029
+
1030
+ wcf()->logger->import_log( 'COMPLETE! Importing Step' );
1031
+
1032
+ }
1033
+
1034
  /**
1035
  * Create Simple Step
1036
  *
1041
 
1042
  wcf()->logger->import_log( 'STARTED! Importing Step' );
1043
 
1044
+ $step_id = isset( $args['step']['id'] ) ? absint( $args['step']['id'] ) : 0;
1045
+ $step_title = isset( $args['step']['title'] ) ? $args['step']['title'] : '';
1046
+ $step_type = isset( $args['step']['type'] ) ? $args['step']['type'] : '';
1047
+ $flow_id = isset( $args['flow']['id'] ) ? absint( $args['flow']['id'] ) : '';
1048
+ $is_store_checkout = isset( $args['is_store_checkout'] ) ? $args['is_store_checkout'] : '';
1049
+
1050
+ // create steps only for checkout and thankyou if store checkout.
1051
+ // This logic will be removed once we have store checkout templates on server.
1052
+ if ( 'true' === $is_store_checkout && ! in_array( $step_type, array( 'checkout', 'thankyou' ), true ) ) {
1053
+ return;
1054
+ }
1055
 
1056
  // Create new step.
1057
  $new_step_id = \CartFlows_Importer::get_instance()->create_step( $flow_id, $step_type, $step_title );
1065
 
1066
  // Get single step Rest API response.
1067
  $response = \CartFlows_API::get_instance()->get_template( $step_id );
1068
+
1069
  wcf()->logger->import_log( wp_json_encode( $response ) );
1070
 
1071
  if ( 'divi' === \Cartflows_Helper::get_common_setting( 'default_page_builder' ) ) {
1093
  }
1094
  }
1095
 
 
 
 
1096
  // Import Post Meta.
1097
  $this->import_post_meta( $new_step_id, $response );
1098
 
1099
+ if ( 'checkout' === $step_type ) {
1100
+ $this->update_store_checkout_template_data( $new_step_id, $response );
1101
+ }
1102
+
1103
+ /* Imported Step */
1104
+ update_post_meta( $new_step_id, 'cartflows_imported_step', 'yes' );
1105
+
1106
  do_action( 'cartflows_import_complete' );
1107
 
1108
  // Batch Process.
1125
 
1126
  $metadata = (array) $response['post_meta'];
1127
 
1128
+ $exclude_meta_keys = apply_filters(
1129
+ 'cartflows_admin_exclude_import_meta_keys',
1130
+ array(
1131
+ 'wcf-checkout-products',
1132
+ 'wcf-optin-product',
1133
+ 'wcf-offer-product',
1134
+ 'wcf-order-bump-product',
1135
+ 'wcf-order-bumps', // @todo: We can exclude only product id from each array.
1136
+ 'wcf-pre-checkout-offer-product',
1137
+ 'wcf-testing',
1138
+ 'wcf-product-options-data',
1139
+ ),
1140
+ $post_id
1141
  );
1142
 
1143
  foreach ( $metadata as $meta_key => $meta_value ) {
1159
  }
1160
 
1161
  if ( '_elementor_data' === $meta_key ) {
1162
+
1163
  if ( is_array( $raw_data ) ) {
1164
  $raw_data = wp_slash( wp_json_encode( $raw_data ) );
1165
  } else {
1166
  $raw_data = wp_slash( $raw_data );
1167
  }
1168
  }
1169
+
1170
  if ( '_elementor_data' !== $meta_key && '_elementor_draft' !== $meta_key && '_fl_builder_data' !== $meta_key && '_fl_builder_draft' !== $meta_key ) {
1171
  if ( is_array( $raw_data ) ) {
1172
  wcf()->logger->import_log( '✓ Added post meta ' . $meta_key /* . ' | ' . wp_json_encode( $raw_data ) */ );
1182
  }
1183
  }
1184
 
1185
+ /**
1186
+ * Find the Checkout block and set the Primary color and site logo provided by the user.
1187
+ *
1188
+ * @since 1.10.0
1189
+ *
1190
+ * @param int $post_id newly created steps ID.
1191
+ * @param array $response data received from from the imported step.
1192
+ *
1193
+ * @return void
1194
+ */
1195
+ public function update_store_checkout_template_data( $post_id, $response ) {
1196
+
1197
+ $store_checkout_id = get_option( '_cartflows_store_checkout', false );
1198
+ $current_flow_id = (int) wcf()->utils->get_flow_id_from_step_id( $post_id );
1199
+ $default_page_bulder = \Cartflows_Helper::get_common_setting( 'default_page_builder' );
1200
+
1201
+ if( empty( $_POST['primary_color'] ) && empty( $_POST['site_logo'] ) ){ // phpcs:ignore
1202
+ return;
1203
+ }
1204
+
1205
+ $posted_data = array(
1206
+ 'primary_color' => isset( $_POST['primary_color'] ) ? sanitize_text_field( wp_unslash( $_POST['primary_color'] ) ) : '', // phpcs:ignore
1207
+ 'site_logo' => isset( $_POST['site_logo'] ) ? array_map( 'esc_attr', wp_unslash( $_POST['site_logo'] ) ) : '', // phpcs:ignore
1208
+ );
1209
+
1210
+ if ( $store_checkout_id !== $current_flow_id ) {
1211
+ return;
1212
+ }
1213
+
1214
+ if ( 'elementor' === $default_page_bulder ) {
1215
+
1216
+ $metadata = (array) $response['post_meta'];
1217
+
1218
+ foreach ( $metadata as $meta_key => $meta_value ) {
1219
+
1220
+ $meta_value = isset( $meta_value[0] ) ? $meta_value[0] : '';
1221
+
1222
+ if ( $meta_value ) {
1223
+
1224
+ if ( is_serialized( $meta_value, true ) ) {
1225
+ $raw_data = maybe_unserialize( stripslashes( $meta_value ) );
1226
+ } elseif ( is_array( $meta_value ) ) {
1227
+ $raw_data = json_decode( stripslashes( $meta_value ), true );
1228
+ } else {
1229
+ $raw_data = $meta_value;
1230
+ }
1231
+
1232
+ if ( '_elementor_data' === $meta_key ) {
1233
+
1234
+ $raw_data = json_decode( $raw_data, true );
1235
+
1236
+ // Find the checkout-form and update the primary color.
1237
+ $this->elementor_find_and_replace_template_data( $raw_data, $posted_data );
1238
+
1239
+ if ( is_array( $raw_data ) ) {
1240
+ $raw_data = wp_slash( wp_json_encode( $raw_data ) );
1241
+ } else {
1242
+ $raw_data = wp_slash( $raw_data );
1243
+ }
1244
+
1245
+ update_post_meta( $post_id, $meta_key, $raw_data );
1246
+
1247
+ }
1248
+ }
1249
+ }
1250
+ } elseif ( 'gutenberg' === $default_page_bulder ) {
1251
+
1252
+ $post = get_post( $post_id );
1253
+ $blocks = parse_blocks( $post->post_content );
1254
+
1255
+ if ( is_array( $blocks ) && ! empty( $blocks ) ) {
1256
+
1257
+ $this->gutenberg_find_and_replace_template_data( $blocks, $posted_data );
1258
+
1259
+ if ( ! empty( $blocks ) ) {
1260
+ $serialized_blocks = serialize_blocks( $blocks );
1261
+
1262
+ wp_update_post(
1263
+ array(
1264
+ 'ID' => $post_id,
1265
+ 'post_content' => $serialized_blocks,
1266
+ )
1267
+ );
1268
+ }
1269
+ }
1270
+ } elseif ( 'beaver-builder' === $default_page_bulder ) {
1271
+ $data = \FLBuilderModel::get_layout_data( 'published', $post_id );
1272
+
1273
+ if ( ! empty( $data ) ) {
1274
+
1275
+ $this->beaver_builder_find_and_replace_template_data( $data, $posted_data );
1276
+
1277
+ // Update page builder data.
1278
+ update_post_meta( $post_id, '_fl_builder_data', $data );
1279
+ update_post_meta( $post_id, '_fl_builder_draft', $data );
1280
+ }
1281
+ }
1282
+ }
1283
+
1284
 
1285
  /**
1286
  * Get flows list for preview
1315
 
1316
  wp_send_json_success( $response_data );
1317
  }
1318
+
1319
+ /**
1320
+ * Get the elementor widget data.
1321
+ *
1322
+ * @param array $elements elements data.
1323
+ * @param array $posted_data posted data.
1324
+ */
1325
+ public function elementor_find_and_replace_template_data( &$elements, $posted_data ) {
1326
+
1327
+ foreach ( $elements as &$element ) {
1328
+
1329
+ if ( 'widget' === $element['elType'] && 'checkout-form' === $element['widgetType'] ) {
1330
+ $element['settings']['global_primary_color'] = ! empty( $posted_data['primary_color'] ) ? $posted_data['primary_color'] : $element['settings']['global_primary_color'];
1331
+ }
1332
+
1333
+ if ( 'widget' === $element['elType'] && 'image' === $element['widgetType'] && isset( $element['settings']['_css_classes'] ) ) {
1334
+
1335
+ if ( str_contains( $element['settings']['_css_classes'], 'cartflows-store-checkout-logo-field' ) ) {
1336
+ $element['settings']['image']['url'] = ! empty( $posted_data['site_logo'] ) ? $posted_data['site_logo']['url'] : $element['settings']['image']['url'];
1337
+ $element['settings']['image']['id'] = ! empty( $posted_data['site_logo'] ) ? $posted_data['site_logo']['id'] : $element['settings']['image']['id'];
1338
+ }
1339
+ }
1340
+
1341
+ if ( ! empty( $element['elements'] ) ) {
1342
+ $this->elementor_find_and_replace_template_data( $element['elements'], $posted_data );
1343
+ }
1344
+ }
1345
+
1346
+ }
1347
+
1348
+ /**
1349
+ * Get the block data.
1350
+ *
1351
+ * @param array $elements elements data.
1352
+ * @param array $posted_data posted data.
1353
+ */
1354
+ public function gutenberg_find_and_replace_template_data( &$elements, $posted_data ) {
1355
+
1356
+ foreach ( $elements as &$element ) {
1357
+ if ( 'wcfb/checkout-form' === $element['blockName'] ) {
1358
+ // Update the element with the data.
1359
+ $element['attrs']['globalbgColor'] = ! empty( $posted_data['primary_color'] ) ? $posted_data['primary_color'] : $element['attrs']['globalbgColor'];
1360
+ }
1361
+
1362
+ if ( 'uagb/info-box' === $element['blockName'] && isset( $element['attrs']['className'] ) ) {
1363
+
1364
+ if ( str_contains( $element['attrs']['className'], 'cartflows-store-checkout-logo-field' ) ) {
1365
+ $element['attrs']['iconImage']['id'] = ! empty( $posted_data['site_logo'] ) ? $posted_data['site_logo']['id'] : $element['attrs']['iconImage']['id'];
1366
+ $element['attrs']['iconImage']['url'] = ! empty( $posted_data['site_logo'] ) ? $posted_data['site_logo']['url'] : $element['attrs']['iconImage']['url'];
1367
+ $element['attrs']['iconImage']['link'] = ! empty( $posted_data['site_logo'] ) ? $posted_data['site_logo']['url'] : $element['attrs']['iconImage']['link'];
1368
+ $element['attrs']['iconImage']['sizes']['full']['url'] = ! empty( $posted_data['site_logo'] ) ? $posted_data['site_logo']['url'] : $element['attrs']['iconImage']['link'];
1369
+ }
1370
+ }
1371
+
1372
+ if ( ! empty( $element['innerBlocks'] ) ) {
1373
+ $this->gutenberg_find_and_replace_template_data( $element['innerBlocks'], $posted_data );
1374
+ }
1375
+ }
1376
+
1377
+ }
1378
+
1379
+ /**
1380
+ * Replace the logo and color in the BB template while importing.
1381
+ *
1382
+ * @param array $elements elements data.
1383
+ * @param array $posted_data posted data.
1384
+ */
1385
+ public function beaver_builder_find_and_replace_template_data( &$elements, $posted_data ) {
1386
+
1387
+ foreach ( $elements as $node => &$element ) {
1388
+ if ( ! empty( $element->type ) && 'module' === $element->type ) {
1389
+
1390
+ if ( ! empty( $element->settings->type ) && 'cartflows-bb-checkout-form' === $element->settings->type ) {
1391
+ // Update the logo in the template.
1392
+ $element->settings->global_primary_color = ! empty( $posted_data['primary_color'] ) ? $posted_data['primary_color'] : $element->settings->global_primary_color;
1393
+ }
1394
+
1395
+ if ( ! empty( $element->settings->type ) && 'photo' === $element->settings->type && ! empty( $element->settings->class ) && 'cartflows-store-checkout-logo-field' === $element->settings->class ) {
1396
+ $module_setting = $element->settings;
1397
+ // Update the logo in the template.
1398
+ $element->settings->photo_src = ! empty( $posted_data['site_logo'] ) ? $posted_data['site_logo']['url'] : $element->settings->photo_src;
1399
+
1400
+ }
1401
+ }
1402
+ }
1403
+ }
1404
  }
admin-core/ajax/meta-data.php CHANGED
@@ -143,6 +143,8 @@ class MetaData extends AjaxBase {
143
  'value' => $product_object->get_id(),
144
  'label' => $formatted_name,
145
  'original_price' => \Cartflows_Helper::get_product_original_price( $product_object ),
 
 
146
  )
147
  );
148
  }
143
  'value' => $product_object->get_id(),
144
  'label' => $formatted_name,
145
  'original_price' => \Cartflows_Helper::get_product_original_price( $product_object ),
146
+ 'product_name' => $product_object->get_name(),
147
+ 'product_desc' => $product_object->get_short_description(),
148
  )
149
  );
150
  }
admin-core/ajax/setup-page.php ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * CartFlows Flows ajax actions.
4
+ *
5
+ * @package CartFlows
6
+ */
7
+
8
+ namespace CartflowsAdmin\AdminCore\Ajax;
9
+
10
+ // Exit if accessed directly.
11
+ if ( ! defined( 'ABSPATH' ) ) {
12
+ exit;
13
+ }
14
+
15
+ use CartflowsAdmin\AdminCore\Ajax\AjaxBase;
16
+ use CartflowsAdmin\AdminCore\Inc\AdminHelper;
17
+
18
+ /**
19
+ * Class Flows.
20
+ */
21
+ class SetupPage extends AjaxBase {
22
+
23
+ /**
24
+ * Instance
25
+ *
26
+ * @access private
27
+ * @var object Class object.
28
+ * @since 1.0.0
29
+ */
30
+ private static $instance;
31
+
32
+ /**
33
+ * Initiator
34
+ *
35
+ * @since 1.0.0
36
+ * @return object initialized object of class.
37
+ */
38
+ public static function get_instance() {
39
+ if ( ! isset( self::$instance ) ) {
40
+ self::$instance = new self();
41
+ }
42
+ return self::$instance;
43
+ }
44
+
45
+ /**
46
+ * Register_ajax_events.
47
+ *
48
+ * @return void
49
+ */
50
+ public function register_ajax_events() {
51
+
52
+ $ajax_events = array(
53
+ 'dismiss_setup_page',
54
+ );
55
+
56
+ $this->init_ajax_events( $ajax_events );
57
+ }
58
+
59
+ /**
60
+ * Save settings.
61
+ *
62
+ * @return void
63
+ */
64
+ public function dismiss_setup_page() {
65
+
66
+ $response_data = array( 'messsage' => $this->get_error_msg( 'permission' ) );
67
+
68
+ if ( ! current_user_can( 'cartflows_manage_settings' ) ) {
69
+ wp_send_json_error( $response_data );
70
+ }
71
+
72
+ /**
73
+ * Nonce verification
74
+ */
75
+ if ( ! check_ajax_referer( 'cartflows_dismiss_setup_page', 'security', false ) ) {
76
+ $response_data = array( 'messsage' => $this->get_error_msg( 'nonce' ) );
77
+ wp_send_json_error( $response_data );
78
+ }
79
+
80
+ update_option( 'wcf_setup_page_skipped', true );
81
+
82
+ $response_data = array(
83
+ 'success' => true,
84
+ 'message' => __( 'Setup page dismissed successfully.', 'cartflows' ),
85
+ );
86
+
87
+ wp_send_json_success( $response_data );
88
+ }
89
+
90
+
91
+ }
admin-core/ajax/steps.php CHANGED
@@ -245,6 +245,8 @@ class Steps extends AjaxBase {
245
  'type' => $step_type,
246
  );
247
 
 
 
248
  update_post_meta( $flow_id, 'wcf-steps', $flow_steps );
249
 
250
  /* Clear Page Builder Cache */
245
  'type' => $step_type,
246
  );
247
 
248
+ $flow_steps = apply_filters( 'cartflows_admin_updated_flow_steps', $flow_steps, $flow_id );
249
+
250
  update_post_meta( $flow_id, 'wcf-steps', $flow_steps );
251
 
252
  /* Clear Page Builder Cache */
admin-core/api/common-settings.php CHANGED
@@ -55,7 +55,7 @@ class CommonSettings extends ApiBase {
55
  */
56
  public function __construct() {
57
 
58
- add_filter( 'cartflows_admin_global_data_options', array( $this, 'add_delete_option_data' ), 10, 1 );
59
  }
60
 
61
  /**
@@ -64,9 +64,11 @@ class CommonSettings extends ApiBase {
64
  * @param array $options options.
65
  * @return array.
66
  */
67
- public function add_delete_option_data( $options ) {
68
 
69
- $options['cartflows_delete_plugin_data'] = get_option( 'cartflows_delete_plugin_data' );
 
 
70
 
71
  return $options;
72
  }
55
  */
56
  public function __construct() {
57
 
58
+ add_filter( 'cartflows_admin_global_data_options', array( $this, 'add_other_option_data' ), 10, 1 );
59
  }
60
 
61
  /**
64
  * @param array $options options.
65
  * @return array.
66
  */
67
+ public function add_other_option_data( $options ) {
68
 
69
+ $options['cartflows_delete_plugin_data'] = get_option( 'cartflows_delete_plugin_data' );
70
+ $options['cartflows_stats_report_emails'] = get_option( 'cartflows_stats_report_emails', 'enable' );
71
+ $options['cartflows_stats_report_email_ids'] = get_option( 'cartflows_stats_report_email_ids', get_option( 'admin_email' ) );
72
 
73
  return $options;
74
  }
admin-core/api/flows.php CHANGED
@@ -91,6 +91,12 @@ class Flows extends ApiBase {
91
  'orderby' => 'ID',
92
  );
93
 
 
 
 
 
 
 
94
  if ( isset( $_REQUEST['paged'] ) ) { //phpcs:ignore
95
  $args['paged'] = absint( $_REQUEST['paged'] ); //phpcs:ignore
96
  }
@@ -198,6 +204,11 @@ class Flows extends ApiBase {
198
  'max_pages' => $result->max_num_pages,
199
  );
200
 
 
 
 
 
 
201
  wp_reset_postdata();
202
 
203
  $data['status'] = true;
91
  'orderby' => 'ID',
92
  );
93
 
94
+ // checking if store checkout is available and removing it from the list of flows.
95
+ $store_checkout_id = intval( \Cartflows_Helper::get_global_setting( '_cartflows_store_checkout' ) );
96
+ if ( 0 !== $store_checkout_id ) {
97
+ $args['post__not_in'] = array( $store_checkout_id );
98
+ }
99
+
100
  if ( isset( $_REQUEST['paged'] ) ) { //phpcs:ignore
101
  $args['paged'] = absint( $_REQUEST['paged'] ); //phpcs:ignore
102
  }
204
  'max_pages' => $result->max_num_pages,
205
  );
206
 
207
+ // Reducing count of active_flows_count if store checkout is set.
208
+ if ( 0 !== $store_checkout_id ) {
209
+ $data['active_flows_count']--;
210
+ }
211
+
212
  wp_reset_postdata();
213
 
214
  $data['status'] = true;
admin-core/assets/build/editor-app-rtl.css CHANGED
@@ -1,108 +1,863 @@
1
- :root{--primary-color:#f06434;--primary-hv-color:#ee4710;--primary-border-color:#f06434;--secondary-color:#f5f6f7;--secondary-border-color:#ddd;--secondary-hv-color:#edeff1}.wcf-hide{display:none!important}.wcf-button{box-sizing:border-box;display:inline;font-size:14px;font-weight:400;line-height:1;line-height:1.5;min-height:36px;padding:7px 18px}.wcf-button,.wcf-button--small{align-items:center;border-radius:2px;border-style:solid;border-width:1px;cursor:pointer;display:inline-block;margin:0;text-decoration:none;text-shadow:none;vertical-align:middle}.wcf-button--small{font-size:11px;line-height:2;min-height:26px;padding:0 8px}.wcf-button--primary{background:var(--primary-color);border-color:var(--primary-border-color);color:#fff}.wcf-button--primary:focus,.wcf-button--primary:hover{background:var(--primary-hv-color);border-color:var(--primary-border-color);box-shadow:none;color:#fff;outline:none}.wcf-button--secondary{background:var(--secondary-color);border-color:var(--secondary-border-color);color:#3a3a3a}.wcf-button--secondary:focus,.wcf-button--secondary:hover{background:var(--secondary-hv-color);border-color:var(--secondary-border-color);box-shadow:none;color:#3a3a3a}.wcf-popup-header-title{align-items:center;color:#444;display:flex;font-size:15px;font-weight:500;letter-spacing:0;text-decoration:none;text-transform:none}.wcf-popup-header-title .cartflows-logo-icon{padding:15px}.wcf-popup-header-action{align-items:center;border-right:1px solid #ddd;color:#ccc;cursor:pointer;display:inline-block;display:flex;padding:15px;position:relative}.wcf-popup-header-action .dashicons{line-height:1}.wcf-popup-header-action:after{font-size:25px}.wcf-popup-header-action:hover{color:#aaa}.wcf-error--info,.wcf-error-message--toggle,.wcf-message{display:block;font-size:12px;padding:5px}.wcf-message--error{color:var(--primary-color)}.wcf-error-message--toggle{cursor:pointer}.wcf-error--info{background-color:#f2f2f2;border:1px dashed #ccc;border-radius:3px;padding:10px}
2
- .wcf-global-nav-menu{align-items:center;background:#fff;border-bottom:1px solid #ddd;border-radius:2px 2px 0 0;box-shadow:none;display:flex;margin:0;padding:2px 20px 0}.wcf-global-nav-menu .wcf-title{max-width:170px}.wcf-global-nav-menu .wcf-title .wcf-logo{width:120px}.wcf-global-nav-menu .wcf-global-nav__items{align-items:center;display:flex}.wcf-global-nav-menu .wcf-global-nav-menu__tab{background:transparent;border:none;border-bottom:2px solid #fff;box-shadow:none;color:#444;cursor:pointer;font-size:14px;font-weight:400;letter-spacing:.225px;line-height:1;margin:0 0 -1px;max-width:100%;outline:none;padding:25px 30px 23px;text-align:center;text-decoration:none}.wcf-global-nav-menu .wcf-global-nav-menu__tab:hover{border-bottom:2px solid #f06335;color:#f06335}.wcf-global-nav-menu .wcf-global-nav-menu__tab.wcf-global-nav-menu__tab--active{background:none;border-bottom:2px solid #f06335;color:#f06335}.wcf-menu-page-content{font-size:14px;font-weight:400;margin:0 auto;width:100%}.wcf-global-nav-menu .wcf-title{align-items:center;border-left:1px solid #ddd;display:flex;max-width:140px}.wcf-global-nav-menu{right:160px;position:fixed;top:32px;width:calc(100% - 160px);z-index:10}
3
- .wcf-editor-app .wcf-settings{margin:0}.wcf-editor-app .wcf-steps-page-wrapper{border-top:1px solid #ededed;margin-top:-1px;padding:30px}
4
- .wcf-edit-flow--nav{background:#fff;border-bottom:1px solid #ededed;box-shadow:none;display:flex;margin:0;padding:0}.wcf-edit-flow--nav .wcf-steps-header--actions{align-items:center;display:flex;line-height:1;margin-right:auto;padding-left:30px;position:relative}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-actions-menu__dropdown .wcf-step__action-btn{align-items:center;cursor:pointer;display:flex}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-actions-menu__dropdown .wcf-step__action-btn .dashicons{margin-left:5px}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-steps-header--label{color:#444;font-size:15px;font-weight:400;line-height:1;margin-left:15px}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-flow__action-menu{color:#aaa;cursor:pointer;display:inline-block;width:13px}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-flow__action-menu:hover{color:#333}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-flow__action-menu .dashicons-ellipsis{transform:rotate(-90deg)}.wcf-edit-flow--nav a.wcf-edit-flow--nav__back-to-flow{padding:18px 18px 18px 25px;text-decoration:none}.wcf-edit-flow--nav a.wcf-edit-flow--nav__back-to-flow:hover{background:#fafafa}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button{background:transparent;border:none;cursor:pointer;line-height:1}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button .dashicons{color:#444;font-size:15px;height:-moz-fit-content;height:fit-content;margin-left:8px;width:-moz-fit-content;width:fit-content}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button .wcf-back-button{color:#444;font-size:15px}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button:focus,.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-flow--nav__tab{background:transparent;border:1px solid #fff;border-bottom:1px solid #ededed;border-top:0;box-shadow:none;color:#434343;cursor:pointer;font-size:15px;font-weight:300;line-height:1;margin-bottom:-1px;max-width:100%;outline:none;padding:18px 25px;text-align:center;text-decoration:none}.wcf-edit-flow--nav__tab:hover{background:#f8f8f9;border:1px solid #f8f8f9;border-top:0;color:#444}.wcf-edit-flow--nav__tab:first-child{border-right:0}.wcf-edit-flow--nav__tab:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-flow--nav__tab--active,.wcf-edit-flow--nav__tab--active:hover{background:#fff;border:1px solid #ededed;border-bottom-color:#fff;border-top:0;color:#444;font-weight:300}.wcf-edit-flow--nav__tab--active:hover{box-shadow:none}.wcf-edit-flow--nav__tab--active:first-child{border-right:0}.wcf-edit-flow--nav__tab:focus,.wcf-edit-step--nav__back-to-flow--button:focus,.wcf-edit-step--nav__back-to-flow:focus,.wcf-edit-step--nav__tab:focus{box-shadow:none;color:#444;outline:none}
5
- .wcf-steps-page-wrapper{border-top:1px solid #ededed;margin-top:-1px;padding:30px}.wcf-steps-page-wrapper .wcf-list-steps{margin-bottom:15px}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step{background:#f9f9f9;border:1px dashed #cdcdcd;color:#444;display:block;font-weight:400;padding:20px;text-align:center;transition:all .1s ease-in;width:100%}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover{background:transparent;border-color:#aaa;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover .dashicons-plus:before{background:transparent;color:#016087}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step:hover .wcf-create-step--text{border-color:#006799;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step--text{background:transparent;font-size:17px;line-height:1;margin-right:7px}.wcf-no-step-notice{color:#444;font-size:15px;font-weight:400;padding:20px 0 40px}
6
- .wcf-steps-header{align-items:center;display:flex;flex-flow:row;justify-content:space-between;margin:0 0 25px}.wcf-steps-header .wcf-steps-header--title{color:#444;font-size:20px;font-weight:500;line-height:40px}.wcf-steps-header .wcf-step__title--editable .new-flow-title{background:#fafafa;border-color:#ccc;line-height:2;padding:2px 15px}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:before{background:#eee;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a{margin-right:10px;text-decoration:none;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:focus,.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:hover{box-shadow:none;outline:none}.wcf-steps-header .wcf-create-step{align-items:center;display:flex;justify-content:space-between}.wcf-steps-header .wcf-create-step .dashicons{font-size:15px;height:-moz-fit-content;height:fit-content;margin-left:10px;width:-moz-fit-content;width:fit-content}
7
  .wcf-step-wrap{margin-bottom:20px}.invalid-step{pointer-events:none}.invalid-step .wcf-step .wcf-step__col-tags .wcf-flow-badge{color:red}
8
- .wcf-list-steps .sortable-chosen{background:#fafafb}.wcf-list-steps .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-list-steps .sortable-chosen .wcf-step{background:#fafafb;border:1px dashed #aaa;border-right:4px solid #ddd}.wcf-list-steps .wcf-step{align-items:center;background:#fff;border:1px solid #ddd;border-right-width:4px;border-radius:2px;box-shadow:none;box-sizing:border-box;cursor:grab;display:flex;justify-content:space-between;padding:20px;position:relative}.wcf-list-steps .wcf-step.wcf-step__no-product{border-right:4px solid #f06335}.wcf-list-steps .wcf-step .wcf-step__title a{text-decoration:none}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown .dashicons,.wcf-list-steps .wcf-step .wcf-step__actions .wcf-step__basic-action-btns .dashicons{font-size:18px;margin-left:5px;vertical-align:middle}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown a{background:#fff;border-top:1px solid hsla(0,0%,90%,.5);color:#666;display:block;font-size:14px;height:auto;padding:15px;text-align:right;text-decoration:none;transition:all .2s linear}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown a:hover{background:#fafafa;color:#1e8cbe}.wcf-list-steps .wcf-step .wcf-loader{align-items:center;display:flex;justify-content:center;right:45%;position:absolute}.wcf-list-steps .wcf-step .wcf-dot-loader{animation:grow 1.2s ease-in-out infinite;background-color:#f06335;border-radius:50%;height:20px;position:relative;width:20px}.wcf-list-steps .wcf-step .wcf-dot-loader--2{animation:grow 1.2s ease-in-out .15555s infinite;margin:0 10px}.wcf-list-steps .wcf-step .wcf-dot-loader--3{animation:grow 1.2s ease-in-out .3s infinite}@keyframes grow{0%,40%,to{transform:scale(0)}40%{transform:scale(1)}}.wcf-list-steps .step-overlay :not(.wcf-loader){opacity:.1}.wcf-list-steps .wcf-step-wrap.sortable-chosen.sortable-ghost .wcf-step{cursor:grabbing}.wcf-step__col-title{width:50%}.wcf-step__title-text{margin-right:10px}.wcf-step__handle{cursor:move}.wcf-step__invalid-step{pointer-events:none;touch-action:none}.wcf-global-checkout-error-badge{background-color:#d54e21;border-radius:0;color:#fff;font-size:.75em;font-weight:400;line-height:.7em;margin-right:10px;padding:.3em .6em;text-align:center;vertical-align:middle}.wcf-flow-badge__invalid-step{color:red}.wcf-no-product-badge{background-color:#f16334;font-size:.75em;font-weight:400}.wcf-global-checkout-badge,.wcf-no-product-badge{border-radius:0;color:#fff;line-height:.7em;margin-right:10px;padding:.3em .6em;text-align:center;vertical-align:middle}.wcf-global-checkout-badge{background-color:#0072a7;font-size:.7em;font-weight:600}.wcf-step__action-btns{align-items:center;display:flex}.wcf-step__action-btns .wcf-step__action-btn{font-size:1em;line-height:.9em;margin-left:15px;text-align:center;text-decoration:none;vertical-align:middle}.wcf-step__action-btns .wcf-step__action-btn.wcf-pro{cursor:not-allowed;opacity:.65}.wcf-step__action-btns .wcf-step__action-menu{color:#aaa;cursor:pointer;display:inline-block;position:relative;top:4px;width:13px}.wcf-step__action-btns .wcf-step__action-menu:hover{color:#333}.wcf-step__action-btns .wcf-step__action-menu .dashicons-ellipsis{font-size:18px;transform:rotate(-90deg);vertical-align:super}.wcf-flow-badge,.wcf-step-badge{background-color:#e3e4e8;border-radius:0;color:#000;font-size:.75em;font-weight:400;line-height:.7em;margin-right:10px;padding:.3em .6em;text-align:center;text-transform:capitalize;vertical-align:middle}.wcf-invalid-sequence-badge{background-color:#d54e21;border-color:#d6e9c6;color:#fff}.wcf-yes-next-badge{background-color:#dff0d8;color:#3c763d}.wcf-no-next-badge{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.wcf-step__col-tags .wcf-flow-badge{background-color:#e3e4e8;border:1px solid rgba(67,67,67,.067);border-radius:2px;color:#000;display:inline-block;font-size:.9em;font-weight:500;line-height:.7em;margin-right:0;padding:8px 0;text-align:center;text-transform:capitalize;vertical-align:middle;width:75px}.wcf-step__col-tags .wcf-flow-badge,.wcf-step__col-tags .wcf-step-badge{margin-right:0}.wcf-step:hover{border-color:#e4e4e4;box-shadow:0 1px 4px 0 rgba(32,33,36,.15)}
9
- .wcf-actions-menu__dropdown{background:#fafafa;border-radius:3px;border-top:1px solid hsla(0,0%,90%,.5);box-shadow:0 2px 6px rgba(0,0,0,.15);opacity:0;position:absolute;left:-1px;visibility:hidden;width:175px;z-index:1}.wcf-actions-menu__dropdown a{background:#fafafa;border-top:1px solid hsla(0,0%,90%,.5);color:#666;display:block;font-size:13px;height:auto;padding:9px 12px;text-align:right;text-decoration:none;transition:all .2s linear}.wcf-actions-menu__dropdown a:hover{background:#f2f2f2;color:#1e8cbe}.wcf-actions-menu__dropdown a:first-child{border:none}.wcf-actions-menu__dropdown:after{background:#fafafa;border:none;box-shadow:2px -1px 3px rgba(0,0,0,.07);content:"";height:14px;position:absolute;left:19px;transform:rotate(-45deg);width:14px;z-index:-7}.wcf-actions-menu__dropdown.wcf-edit-show{opacity:1;visibility:visible}.wcf-actions-menu__dropdown.wcf-edit-above{left:10px;top:10px;transform:translateY(-100%)}.wcf-actions-menu__dropdown.wcf-edit-above:after{bottom:-7px}.wcf-actions-menu__dropdown.wcf-edit-below{bottom:5px;left:10px;transform:translateY(100%)}.wcf-actions-menu__dropdown.wcf-edit-below:after{top:-7px}.wcf-actions-menu__dropdown .wcf-pro{cursor:not-allowed;opacity:.65}
10
- .wcf-ab-test{background:#fff;border:1px solid #ddd;border-right-width:4px;padding:20px}.wcf-ab-test:hover{border-color:#e4e4e4;box-shadow:0 1px 4px 0 rgba(32,33,36,.15)}.wcf-ab-test .wcf-step{background:#fafafb;border:1px solid #ddd;cursor:move;margin-bottom:15px}.wcf-ab-test .wcf-step .wcf-step__col-title .wcf-step__handle{display:none}.wcf-ab-test .wcf-step:hover{border-color:#ddd;box-shadow:none}.wcf-ab-test .wcf-step__handle{margin-left:10px}.wcf-ab-test.sortable-chosen{background:#fafafb;border:1px dashed #ddd;border-right:4px solid #ddd;cursor:move}.wcf-ab-test.sortable-chosen .wcf-step{border:1px solid #aaa}.wcf-ab-test .wcf-abtest-control-badge{background:#f16334;color:#fff}.wcf-ab-test .wcf-abtest-variation-badge{background:#1e8cbe;color:#fff}.wcf-ab-test .wcf-archived-step .wcf-archived-steps:last-child{margin-bottom:0}.wcf-ab-test .wcf-archived-step .wcf-step__title{display:inline}.wcf-ab-test-head{align-items:center;display:flex;justify-content:space-between;margin:0 0 20px}.wcf-ab-test-head .wcf-steps-action-buttons .dashicons-admin-generic,.wcf-ab-test-head .wcf-steps-action-buttons .wcf-start-split-test,.wcf-ab-test-head .wcf-steps-action-buttons .wcf-stop-split-test{color:#444;margin-right:10px;text-decoration:none}.wcf-ab-test-head .wcf-steps-action-buttons .dashicons-admin-generic.is-loading,.wcf-ab-test-head .wcf-steps-action-buttons .wcf-start-split-test.is-loading,.wcf-ab-test-head .wcf-steps-action-buttons .wcf-stop-split-test.is-loading{animation:spin 4s linear infinite}.wcf-ab-test-head .wcf-steps-action-buttons .wcf-stop-split-test{color:var(--primary-color)}.wcf-ab-test-head .wcf-steps-action-buttons .wcf-start-split-test{color:green}.wcf-ab-test-head .wcf-steps-action-buttons:hover .dashicons-admin-generic,.wcf-ab-test-head .wcf-steps-action-buttons:hover .wcf-stop-split-test{color:#006799}@keyframes spin{to{transform:rotate(-1turn)}}
11
- .wcf-ab-test-settings-popup-overlay{background:rgba(0,0,0,.729);height:100%;right:0;position:fixed;text-align:right;top:0;width:100%;z-index:9999}.wcf-ab-test-popup-content{background:#fff;border-radius:2px;right:50%;position:absolute;top:50%;transform:translate(50%,-50%);width:510px;z-index:100}.wcf-ab-test-settings-popup-overlay .wcf-popup-title-wrap{font-size:14px;font-weight:600;padding-right:8px}.wcf-content-wrap{background:#fff;border-radius:0 0 2px 2px;padding:25px}.wcf-ab-settings-header .wcf-cartflows-title{font-size:16px;font-weight:500}.wcf-ab-settings-content .wcf-ab-settings-content__title{display:inline-block;font-size:15px;font-weight:500;margin-bottom:15px;width:100%}.wcf-ab-settings-header{border-bottom:1px solid rgba(0,0,0,.1);box-shadow:0 0 8px rgba(0,0,0,.2);display:flex;justify-content:space-between;padding:15px}.wcf-ab-settings-header .close-icon .wcf-cartflow-icons{color:#ccc;cursor:pointer;display:inline-block;position:relative}.wcf-ab-settings-header .close-icon .wcf-cartflow-icons:hover{color:#aaa}.wcf-ab-settings-footer{display:flex;justify-content:flex-end;padding:10px 35px 0}.wcf-ab-test-save.button-primary.updating-message:before{color:#fff;font-size:18px;margin:7px -4px 0 5px}.wcf-popup-actions-wrap .button.wcf-ab-test-cancel{display:none}.wcf-popup-actions-wrap .button.wcf-ab-test-save{padding:3px 25px}.wcf-traffic-field{align-items:center;display:flex;margin-bottom:15px}.wcf-traffic-field .wcf-step-name{line-height:1.8;margin-left:15px;width:160px}.wcf-traffic-field .wcf-traffic-slider-wrap{align-items:center;display:flex;width:300px}.wcf-traffic-field .wcf-traffic-range{width:190px}.wcf-traffic-field .wcf-traffic-range input{height:-moz-fit-content;height:fit-content;width:150px}.wcf-traffic-field .wcf-traffic-value{align-items:center;display:flex;width:90px}.wcf-traffic-value .wcf-text-field input{height:unset;padding:0 8px 0 0}.wcf-traffic-value input{width:65px}.wcf-traffic-value input:after{color:#b6c3cf;content:"%";font-size:10px;right:43px;position:absolute;top:10px}.wcf-traffic-value .wcf-field__data--content{margin-left:10px}.wcf-traffic-input-field{margin-right:1px!important;width:65px!important}.wcf-traffic-value{display:flex}.cartflows-logo-icon{font-size:18px}
12
- .wcf-field__desc{color:#666;font-style:italic;font-weight:400;line-height:1.5;margin-top:10px}.wcf-tooltip-icon{display:inline-block;margin-right:5px;vertical-align:middle}
13
  .wcf-checkbox-field label{margin-left:10px}.wcf-checkbox-field input[type=checkbox]{margin:0 0 0 7px}
14
- .wcf-radio-field .wcf-field__data{display:block}.wcf-radio-field .wcf-field__data--label{padding:0 0 10px}.wcf-radio-field input[type=radio]{margin:0 0 0 7px}.wcf-radio-field .wcf-radio-field__option-desc{color:#777;font-style:italic;font-weight:400;line-height:1.5;margin-top:10px}.wcf-radio-field .wcf-radio-field__option.wcf-child-field{margin-right:15px}
15
- .wcf-select-option select{background-position:left 10px top 55%;background-size:15px;border:1px solid #ddd;border-radius:2px;font-weight:400;height:36px;margin:0 0 0 15px;max-width:100%;padding:4px 15px;width:300px}.wcf-select-option select:focus{border-color:#aaa;box-shadow:none;color:#444}.wcf-select-option select:hover{color:#444}.wcf-select-option .wcf-field__data--content__after{color:#444;font-size:14px;font-weight:500;margin-right:10px}
16
- .wcf-text-field input{background:#fff;border-color:#ddd;border-radius:2px;font-weight:400;height:36px;margin:0;max-width:100%;padding:4px 15px;width:300px}.wcf-text-field input:focus{border-color:#aaa;box-shadow:none}.wcf-text-field input.readonly,.wcf-text-field input[readonly]{background-color:#eee!important}.wcf-field__data{align-items:center;display:flex}
17
- .wcf-textarea-field label{vertical-align:top}.wcf-textarea-field textarea{border-color:#ddd;margin:0}.wcf-textarea-field .wcf-field__data{align-items:flex-start}.wcf-textarea-field .wcf-field__data--label{padding:8px 0 0}
18
- .wcf-button-style{background:#fff;border:1px solid #f06335;border-radius:3px;cursor:pointer;display:inline-block;font-size:15px;font-weight:400;padding:6px 20px;text-align:center;text-decoration:none;text-shadow:none;text-transform:uppercase;transition:all .1s linear;vertical-align:middle}.wcf-btn-primary{transition:all .25s linear}.wcf-btn-primary,.wcf-btn-primary:active,.wcf-btn-primary:focus,.wcf-btn-primary:hover{background:#f06335;color:#fff}.wcf-btn-primary:active,.wcf-btn-primary:focus,.wcf-button-style:hover{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);outline:0;text-decoration:none}@keyframes wcf-saving{0%{background-position:200px 0}}.wcf-submit-field .wcf-success-notice{display:inline-block;margin:0;max-width:300px}.wcf-submit-field .dashicons{vertical-align:middle}.wcf-submit-field .wcf-success-message{font-size:14px;font-weight:400}.wcf-submit-field .wcf-saving{animation:wcf-saving 2.5s linear infinite;background-image:linear-gradient(45deg,#f06335 28%,#f78860 0,#f78860 72%,#f06335 0);background-size:100px 100%;opacity:1}
19
- .wcf-selection-field{align-items:center;display:flex}.wcf-selection-field .wcf-select2-input .wcf__control{cursor:pointer}.wcf-selection-field .wcf__value-container .css-1g6gooi,.wcf-selection-field .wcf__value-container div:last-child{color:#444;margin:0;padding:0}.wcf-selection-field .wcf__value-container .css-1g6gooi input:focus,.wcf-selection-field .wcf__value-container div:last-child input:focus{box-shadow:none}.wcf-selection-field .wcf__control .css-1hwfws3m,.wcf-selection-field .wcf__value-container{color:#444;font-weight:400;min-height:36px}.wcf-selection-field .wcf-select2-input{border-color:#ddd;border-radius:2px;width:300px}.wcf-selection-field .wcf-select2-input .wcf__menu{background-color:#fff;border-radius:2px;color:#555;font-weight:400;line-height:1.1}.wcf-selection-field .wcf-select2-input .wcf__menu .wcf__menu-list{max-height:200px}.wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:active,.wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:hover,.wcf-selection-field .wcf-select2-input .wcf__option--is-focused,.wcf-selection-field .wcf-select2-input .wcf__option--is-selected{background-color:#f1f1f1;color:#444;cursor:pointer}.wcf-selection-field .wcf__control{border-color:#ddd;border-radius:2px;width:300px}.wcf-selection-field .wcf__control .wcf__value-container--has-value,.wcf-selection-field .wcf__control .wcf__value-container--has-value .wcf__single-value,.wcf-selection-field .wcf__value-container{color:#444}.wcf-selection-field .wcf__control.wcf__control--is-focused,.wcf-selection-field .wcf__control:active,.wcf-selection-field .wcf__control:hover{border-color:#aaa;box-shadow:none}.css-2b097c-container{display:inline;margin:0 30px 0 0;width:450px}.wcf-selection-field label{display:inline-block}
20
- .wcf-product-repeater-field__product{display:flex}.wcf-product-repeater-field__product button{padding:7px;text-align:center}.wcf-repeater-dashicon{margin:7px 0 0 15px}.wcf-product-repeater-field__options{display:flex;padding:10px 35px 10px 0}.wcf-product-repeater-field{padding:10px 0 30px}.wcf-checkout-product-selection-field__add-new .button{margin:10px}.wcf-add-new-product{margin-left:15px}.wcf-create-woo-iframe-opened{overflow:hidden}.wcf-create-woo-product-overlay{background:rgba(0,0,0,.729);height:100%;right:0;opacity:0;position:fixed;top:0;transition:none;-webkit-user-select:none;user-select:none;visibility:hidden;width:100%;z-index:9999}.wcf-create-woo-product-overlay.open{opacity:1;visibility:visible;z-index:999999}.wcf-create-woo-product-wrap{background-color:transparent;border-radius:3px;height:85%;margin:0 auto;max-height:85%;max-width:100%;min-height:85%;position:relative;top:50%;-ms-transform:translate(50%,-35%);transform:translateY(-50%);width:90%;z-index:99999}.wcf-create-woo-product-wrap:not(.product-loaded):before{animation:wcf-admin-loader 575ms linear infinite;background:none!important;border-color:#fff transparent;border-radius:50%;border-style:solid;border-width:3px;color:#fff;content:"";display:block;height:48px;right:50%;margin:0 auto;position:absolute;text-align:center;top:50%;width:48px}.wcf-woo-product-iframe{background:#fff;height:100%;max-width:100%;min-height:100%;width:100%}.wcf-close-create-woo-product{background:#fff;border:1px solid #fff;border-radius:50%;color:#000;cursor:pointer;font-size:20px;height:25px;right:auto;line-height:1.3;position:fixed;left:-10px;text-align:center;top:-10px;width:25px;z-index:100000}.wcf-close-create-woo-product:before{content:"";font-family:dashicons}#wcf-create-woo-product iframe.wcf-create-woo-product-iframe #adminmenumain,#wcf-create-woo-product iframe.wcf-create-woo-product-iframe #wpadminbar{display:none}.wcf-checkout-product-selection-field__header{display:flex;justify-content:space-between}.wcf-product-repeater-field__product-image img{width:55px}.wcf-product-repeater-field__product-data{display:flex}.wcf-product-repeater-field__product-details{padding-right:20px;width:250px}.wcf-product-repeater-field__discount{display:flex}.wcf-product-repeater-field__discount-type{width:220px}.wcf-product-repeater-field__discount-value{width:100px}.wcf-remove-product-button{margin-right:20px}
21
- .wcf-select-product-popup-overlay{background:rgba(0,0,0,.729);height:100%;right:0;position:fixed;text-align:right;top:0;width:100%;z-index:9999}.wcf-select-product-popup-overlay .wcf-select-product-popup-content{background:#fff;border-radius:3px;justify-content:space-between;right:50%;position:absolute;top:50%;transform:translate(50%,-50%);width:510px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header{align-items:center;border-bottom:1px solid #ddd;display:flex;height:50px;justify-content:space-between;margin:0;padding:0;position:relative;width:100%}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__title h2{font-size:14px;font-weight:600;line-height:1;margin-left:10px;padding-right:25px;text-transform:uppercase}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__title h2 .cartflows-logo-icon{font-size:16px;margin-left:8px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu{border-right:1px solid #ddd;color:#ccc;cursor:pointer;display:inline-block;padding:5px;position:relative}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu .dashicons{line-height:1.5}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu:after{font-size:25px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu:hover{color:#aaa}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select2-field .wcf-selection-field label{display:none}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-content-wrap{background:#f5f5f5;padding:25px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-content-wrap .wcf-content-wrap{padding:45px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-content-wrap .wcf-select-product-content{display:flex;justify-content:space-between;padding:20px 0}
22
- .wcf-product-options-fields__list{margin:0}.wcf-product-options-fields__list .wcf-product-options-fields__list--no-product{color:#666;padding:10px 25px}.wcf-product-option-field{display:flex;margin-bottom:10px}.wcf-product-field-item-bar{border:1px solid #ddd;border-radius:2px;color:#444;font-size:15px;font-weight:400;height:auto;line-height:normal;min-height:20px;padding:12px 20px;width:auto}.wcf-product-field-item-bar .default-label-note{font-size:16px;line-height:1.5;margin-left:20px}.wcf-product-options-fields__list--header{background:#f4f4f4;border:1px solid #f4f4f4;border-radius:2px;color:#444;font-size:13px;font-style:italic;font-weight:400;height:auto;line-height:normal;margin-bottom:10px;min-height:20px;padding:12px 10px;position:relative;width:650px}.wcf-product-options-fields__list--header:before{background-color:#f4f4f4;border:1px solid #f4f4f4;border-right:none;border-top:none;content:"";height:10px;right:27px;position:absolute;top:-6px;transform:rotate(-45deg);width:10px}.wcf-product-options-fields__list--header .default-label-note{font-size:16px;line-height:1.5}.wcf-product-options-fields__list--header .wcf-default-label{margin-left:10px}.wcf-product-option-default-in-cart{line-height:normal;margin:0 5px 0 25px;width:auto}.wcf-product-option-default-in-cart input{margin:0!important}.disabled{opacity:.5;pointer-events:none}.wcf-product-field-item-bar span{display:inline-block;line-height:1;text-align:center}.wcf-dashicon{cursor:pointer;display:inline-flex;float:left;position:relative;top:-1px}.wcf-product-field-item-settings{background:#f5f6f7;border:1px solid #ececec;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:20px}.wcf-product-field-item-settings .wcf-field{margin-bottom:20px}.wcf-product-field-item-settings .wcf-field__desc{line-height:1.5}.wcf-product-field-item-settings .wcf-field.wcf-checkbox-field{margin-bottom:10px}.wcf-product-field-item-settings .wcf-field__data .wcf-field__data--label label{width:200px}.wcf-product-option-fields{width:650px}
23
- .wcf-color-field{align-items:center;display:flex;line-height:1}.wcf-color-field .wcf-colorpicker-swatch-wrap{align-items:center;cursor:pointer;display:flex}.wcf-color-field .wcf-colorpicker-swatch{background:#fafafa;border-left:1px solid #ddd;box-shadow:inset 0 0 0 3px #fff;display:inline-block;margin:0;padding:0}.wcf-color-field .wcf-color-picker-popover{margin:8px 0;position:absolute;z-index:2}.wcf-color-field .wcf-color-picker-cover{bottom:0;right:0;position:fixed;left:0;top:0}.wcf-color-field .sketch-picker{font-weight:400}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-selector{align-items:center;display:flex}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-swatch-wrap{background:#fff;border:1px solid #ddd;border-radius:2px;color:#444}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-label{font-weight:400;padding:5px 7px}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-reset{cursor:pointer;padding:6px}.wcf-color-field .wcf-color-picker{position:relative}.wcf-color-field .wcf-color-picker input{margin:0}.wcf-color-field .wcf-color-picker input[id^=rc-editable-input-]{width:100%!important}
24
  .wcf-font-family-field .wcf-font-weight-field{margin-top:30px}
25
- .wcf-image-selector-field-buttons{display:flex;padding:7px}.wcf-image-selector-field{display:flex}.wcf-image-selector-field-button-remove,.wcf-image-selector-field-button-select{display:inline;margin-right:10px}.wcf-image-selector-field__input{margin-right:15px}#wcf-image-preview{border:1px solid #ddd;line-height:1;margin-bottom:10px;text-align:center}.wcf-image-selector-field-button-select,.wcf-image-selector-field-buttons,.wcf-image-selector-field__input{margin:0;padding:0}.wcf-image-selector-field-button-select button.wcf-select-image{font-weight:500}
26
- .wcf-input-text-field input{margin-right:20px;max-width:100%;width:300px}
27
- .wcf-number-field input{margin:0 15px;max-width:100%;width:300px}.wcf-number-field input.readonly,.wcf-number-field input[readonly]{background-color:#eee!important}.wcf-number-field input[type=number]{border:1px solid #ddd;border-radius:2px;font-weight:400;height:36px;margin:0;padding:4px 15px}.wcf-number-field:focus{border-color:#aaa;box-shadow:none}.wcf-number-field .wcf-field__data--after-field{margin-right:10px}
28
- @charset "UTF-8";.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__navigation-icon:before,.react-datepicker__year-read-view--down-arrow{border-color:#ccc;border-style:solid;border-width:3px 0 0 3px;content:"";display:block;height:9px;position:absolute;top:6px;width:9px}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle{margin-right:-4px;position:absolute;width:0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before{border:8px solid transparent;box-sizing:content-box;content:"";height:0;right:-8px;position:absolute;width:1px;z-index:-1}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before{border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{margin-top:-8px;top:0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{border-bottom-color:#f0f0f0;border-top:none}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after{top:0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{border-bottom-color:#aeaeae;top:-1px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle{bottom:0;margin-bottom:-8px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before{border-bottom:none;border-top-color:#fff}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after{bottom:0}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before{border-top-color:#aeaeae;bottom:-1px}.react-datepicker-wrapper{border:0;display:inline-block;padding:0;width:100%}.react-datepicker{background-color:#fff;border:1px solid #aeaeae;border-radius:.3rem;color:#000;display:inline-block;font-family:Helvetica Neue,helvetica,arial,sans-serif;font-size:.8rem;position:relative}.react-datepicker--time-only .react-datepicker__triangle{right:35px}.react-datepicker--time-only .react-datepicker__time-container{border-right:0}.react-datepicker--time-only .react-datepicker__time,.react-datepicker--time-only .react-datepicker__time-box{border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.react-datepicker__triangle{right:50px;position:absolute}.react-datepicker-popper{z-index:1}.react-datepicker-popper[data-placement^=bottom]{padding-top:10px}.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle,.react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle{right:auto;left:50px}.react-datepicker-popper[data-placement^=top]{padding-bottom:10px}.react-datepicker-popper[data-placement^=right]{padding-right:8px}.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle{right:auto;left:42px}.react-datepicker-popper[data-placement^=left]{padding-left:8px}.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle{right:42px;left:auto}.react-datepicker__header{background-color:#f0f0f0;border-bottom:1px solid #aeaeae;border-top-right-radius:.3rem;padding:8px 0;position:relative;text-align:center}.react-datepicker__header--time{padding-bottom:8px;padding-right:5px;padding-left:5px}.react-datepicker__header--time:not(.react-datepicker__header--time--only){border-top-right-radius:0}.react-datepicker__header:not(.react-datepicker__header--has-time-select){border-top-left-radius:.3rem}.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__year-dropdown-container--select{display:inline-block;margin:0 2px}.react-datepicker-time__header,.react-datepicker-year-header,.react-datepicker__current-month{color:#000;font-size:.944rem;font-weight:700;margin-top:0}.react-datepicker-time__header{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.react-datepicker__navigation{align-items:center;background:none;border:none;cursor:pointer;display:flex;height:32px;justify-content:center;overflow:hidden;padding:0;position:absolute;text-align:center;text-indent:-999em;top:2px;width:32px;z-index:1}.react-datepicker__navigation--previous{right:2px}.react-datepicker__navigation--next{left:2px}.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button){left:85px}.react-datepicker__navigation--years{display:block;margin-right:auto;margin-left:auto;position:relative;top:0}.react-datepicker__navigation--years-previous{top:4px}.react-datepicker__navigation--years-upcoming{top:-4px}.react-datepicker__navigation:hover :before{border-color:#a6a6a6}.react-datepicker__navigation-icon{font-size:20px;position:relative;top:-1px;width:0}.react-datepicker__navigation-icon--next{right:-2px}.react-datepicker__navigation-icon--next:before{right:-7px;transform:rotate(-45deg)}.react-datepicker__navigation-icon--previous{left:-2px}.react-datepicker__navigation-icon--previous:before{left:-7px;transform:rotate(-225deg)}.react-datepicker__month-container{float:right}.react-datepicker__year{margin:.4rem;text-align:center}.react-datepicker__year-wrapper{display:flex;flex-wrap:wrap;max-width:180px}.react-datepicker__year .react-datepicker__year-text{display:inline-block;margin:2px;width:4rem}.react-datepicker__month{margin:.4rem;text-align:center}.react-datepicker__month .react-datepicker__month-text,.react-datepicker__month .react-datepicker__quarter-text{display:inline-block;margin:2px;width:4rem}.react-datepicker__input-time-container{clear:both;float:right;margin:5px 15px 10px 0;text-align:right;width:100%}.react-datepicker__input-time-container .react-datepicker-time__caption,.react-datepicker__input-time-container .react-datepicker-time__input-container{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input{display:inline-block;margin-right:10px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input{width:auto}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]{-moz-appearance:textfield}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter{display:inline-block;margin-right:5px}.react-datepicker__time-container{border-right:1px solid #aeaeae;float:left;width:85px}.react-datepicker__time-container--with-today-button{border:1px solid #aeaeae;border-radius:.3rem;display:inline;position:absolute;left:-72px;top:0}.react-datepicker__time-container .react-datepicker__time{background:#fff;border-bottom-left-radius:.3rem;position:relative}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box{border-bottom-left-radius:.3rem;margin:0 auto;overflow-x:hidden;text-align:center;width:85px}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list{box-sizing:content-box;height:calc(195px + .85rem);list-style:none;margin:0;overflow-y:scroll;padding-right:0;padding-left:0;width:100%}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item{height:30px;padding:5px 10px;white-space:nowrap}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover{background-color:#f0f0f0;cursor:pointer}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected{background-color:#216ba5;color:#fff;font-weight:700}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover{background-color:#216ba5}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled{color:#ccc}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover{background-color:transparent;cursor:default}.react-datepicker__week-number{color:#ccc;display:inline-block;line-height:1.7rem;margin:.166rem;text-align:center;width:1.7rem}.react-datepicker__week-number.react-datepicker__week-number--clickable{cursor:pointer}.react-datepicker__week-number.react-datepicker__week-number--clickable:hover{background-color:#f0f0f0;border-radius:.3rem}.react-datepicker__day-names,.react-datepicker__week{white-space:nowrap}.react-datepicker__day-names{margin-bottom:-8px}.react-datepicker__day,.react-datepicker__day-name,.react-datepicker__time-name{color:#000;display:inline-block;line-height:1.7rem;margin:.166rem;text-align:center;width:1.7rem}.react-datepicker__month--in-range,.react-datepicker__month--in-selecting-range,.react-datepicker__month--selected,.react-datepicker__quarter--in-range,.react-datepicker__quarter--in-selecting-range,.react-datepicker__quarter--selected{background-color:#216ba5;border-radius:.3rem;color:#fff}.react-datepicker__month--in-range:hover,.react-datepicker__month--in-selecting-range:hover,.react-datepicker__month--selected:hover,.react-datepicker__quarter--in-range:hover,.react-datepicker__quarter--in-selecting-range:hover,.react-datepicker__quarter--selected:hover{background-color:#1d5d90}.react-datepicker__month--disabled,.react-datepicker__quarter--disabled{color:#ccc;pointer-events:none}.react-datepicker__month--disabled:hover,.react-datepicker__quarter--disabled:hover{background-color:transparent;cursor:default}.react-datepicker__day,.react-datepicker__month-text,.react-datepicker__quarter-text,.react-datepicker__year-text{cursor:pointer}.react-datepicker__day:hover,.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover,.react-datepicker__year-text:hover{background-color:#f0f0f0;border-radius:.3rem}.react-datepicker__day--today,.react-datepicker__month-text--today,.react-datepicker__quarter-text--today,.react-datepicker__year-text--today{font-weight:700}.react-datepicker__day--highlighted,.react-datepicker__month-text--highlighted,.react-datepicker__quarter-text--highlighted,.react-datepicker__year-text--highlighted{background-color:#3dcc4a;border-radius:.3rem;color:#fff}.react-datepicker__day--highlighted:hover,.react-datepicker__month-text--highlighted:hover,.react-datepicker__quarter-text--highlighted:hover,.react-datepicker__year-text--highlighted:hover{background-color:#32be3f}.react-datepicker__day--highlighted-custom-1,.react-datepicker__month-text--highlighted-custom-1,.react-datepicker__quarter-text--highlighted-custom-1,.react-datepicker__year-text--highlighted-custom-1{color:#f0f}.react-datepicker__day--highlighted-custom-2,.react-datepicker__month-text--highlighted-custom-2,.react-datepicker__quarter-text--highlighted-custom-2,.react-datepicker__year-text--highlighted-custom-2{color:green}.react-datepicker__day--in-range,.react-datepicker__day--in-selecting-range,.react-datepicker__day--selected,.react-datepicker__month-text--in-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--selected,.react-datepicker__quarter-text--in-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--selected,.react-datepicker__year-text--in-range,.react-datepicker__year-text--in-selecting-range,.react-datepicker__year-text--selected{background-color:#216ba5;border-radius:.3rem;color:#fff}.react-datepicker__day--in-range:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--selected:hover,.react-datepicker__month-text--in-range:hover,.react-datepicker__month-text--in-selecting-range:hover,.react-datepicker__month-text--selected:hover,.react-datepicker__quarter-text--in-range:hover,.react-datepicker__quarter-text--in-selecting-range:hover,.react-datepicker__quarter-text--selected:hover,.react-datepicker__year-text--in-range:hover,.react-datepicker__year-text--in-selecting-range:hover,.react-datepicker__year-text--selected:hover{background-color:#1d5d90}.react-datepicker__day--keyboard-selected,.react-datepicker__month-text--keyboard-selected,.react-datepicker__quarter-text--keyboard-selected,.react-datepicker__year-text--keyboard-selected{background-color:#2579ba;border-radius:.3rem;color:#fff}.react-datepicker__day--keyboard-selected:hover,.react-datepicker__month-text--keyboard-selected:hover,.react-datepicker__quarter-text--keyboard-selected:hover,.react-datepicker__year-text--keyboard-selected:hover{background-color:#1d5d90}.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range){background-color:rgba(33,107,165,.5)}.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range){background-color:#f0f0f0;color:#000}.react-datepicker__day--disabled,.react-datepicker__month-text--disabled,.react-datepicker__quarter-text--disabled,.react-datepicker__year-text--disabled{color:#ccc;cursor:default}.react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover,.react-datepicker__year-text--disabled:hover{background-color:transparent}.react-datepicker__month-text.react-datepicker__month--in-range:hover,.react-datepicker__month-text.react-datepicker__month--selected:hover,.react-datepicker__month-text.react-datepicker__quarter--in-range:hover,.react-datepicker__month-text.react-datepicker__quarter--selected:hover,.react-datepicker__quarter-text.react-datepicker__month--in-range:hover,.react-datepicker__quarter-text.react-datepicker__month--selected:hover,.react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover,.react-datepicker__quarter-text.react-datepicker__quarter--selected:hover{background-color:#216ba5}.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{background-color:#f0f0f0}.react-datepicker__input-container{display:inline-block;position:relative;width:100%}.react-datepicker__month-read-view,.react-datepicker__month-year-read-view,.react-datepicker__year-read-view{border:1px solid transparent;border-radius:.3rem;position:relative}.react-datepicker__month-read-view:hover,.react-datepicker__month-year-read-view:hover,.react-datepicker__year-read-view:hover{cursor:pointer}.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow{border-top-color:#b3b3b3}.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow{left:-16px;top:0;transform:rotate(-135deg)}.react-datepicker__month-dropdown,.react-datepicker__month-year-dropdown,.react-datepicker__year-dropdown{background-color:#f0f0f0;border:1px solid #aeaeae;border-radius:.3rem;right:25%;position:absolute;text-align:center;top:30px;width:50%;z-index:1}.react-datepicker__month-dropdown:hover,.react-datepicker__month-year-dropdown:hover,.react-datepicker__year-dropdown:hover{cursor:pointer}.react-datepicker__month-dropdown--scrollable,.react-datepicker__month-year-dropdown--scrollable,.react-datepicker__year-dropdown--scrollable{height:150px;overflow-y:scroll}.react-datepicker__month-option,.react-datepicker__month-year-option,.react-datepicker__year-option{display:block;line-height:20px;margin-right:auto;margin-left:auto;width:100%}.react-datepicker__month-option:first-of-type,.react-datepicker__month-year-option:first-of-type,.react-datepicker__year-option:first-of-type{border-top-right-radius:.3rem;border-top-left-radius:.3rem}.react-datepicker__month-option:last-of-type,.react-datepicker__month-year-option:last-of-type,.react-datepicker__year-option:last-of-type{border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem;-webkit-user-select:none;user-select:none}.react-datepicker__month-option:hover,.react-datepicker__month-year-option:hover,.react-datepicker__year-option:hover{background-color:#ccc}.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming{border-bottom-color:#b3b3b3}.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous{border-top-color:#b3b3b3}.react-datepicker__month-option--selected,.react-datepicker__month-year-option--selected,.react-datepicker__year-option--selected{right:15px;position:absolute}.react-datepicker__close-icon{background-color:transparent;border:0;cursor:pointer;display:table-cell;height:100%;outline:0;padding:0 0 0 6px;position:absolute;left:0;top:0;vertical-align:middle}.react-datepicker__close-icon:after{background-color:#216ba5;border-radius:50%;color:#fff;content:"×";cursor:pointer;display:table-cell;font-size:12px;height:16px;line-height:1;padding:2px;text-align:center;vertical-align:middle;width:16px}.react-datepicker__today-button{background:#f0f0f0;border-top:1px solid #aeaeae;clear:right;cursor:pointer;font-weight:700;padding:5px 0;text-align:center}.react-datepicker__portal{align-items:center;background-color:rgba(0,0,0,.8);display:flex;height:100vh;justify-content:center;right:0;position:fixed;top:0;width:100vw;z-index:2147483647}.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__time-name{line-height:3rem;width:3rem}@media (max-height:550px),(max-width:400px){.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__time-name{line-height:2rem;width:2rem}}.react-datepicker__portal .react-datepicker-time__header,.react-datepicker__portal .react-datepicker__current-month{font-size:1.44rem}
29
- .wcf-field__doc-content{color:#666;font-style:italic;font-weight:400}
30
- .wcf-section-heading-field .wcf-field__data--label{padding:25px 0 0}.wcf-section-heading-field .wcf-field__data--label label{font-size:15px;font-weight:600}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  .wcf-pro-notice{padding:20px}.wcf-pro-notice .wcf-pro-update-notice{color:#444;font-size:14px;font-weight:500}.wcf-pro-notice .wcf-pro-update-notice a{text-decoration:none}
32
- .wcf-product-field .wcf-selection-field{align-items:center;display:flex}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__control{cursor:pointer}.wcf-product-field .wcf-selection-field .wcf__value-container .css-1g6gooi,.wcf-product-field .wcf-selection-field .wcf__value-container div:last-child{color:#444;margin:0;padding:0}.wcf-product-field .wcf-selection-field .wcf__value-container .css-1g6gooi input:focus,.wcf-product-field .wcf-selection-field .wcf__value-container div:last-child input:focus{box-shadow:none}.wcf-product-field .wcf-selection-field .wcf__control .css-1hwfws3m,.wcf-product-field .wcf-selection-field .wcf__value-container{color:#444;font-weight:400;height:36px}.wcf-product-field .wcf-selection-field .wcf-select2-input{border-color:#ddd;border-radius:2px;width:300px}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu{background-color:#fff;border-radius:2px;color:#555;font-weight:400;line-height:1.1}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__menu-list{max-height:200px}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:active,.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:hover,.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__option--is-focused,.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__option--is-selected{background-color:#f1f1f1;color:#444;cursor:pointer}.wcf-product-field .wcf-selection-field .wcf__control{border-color:#ddd;border-radius:2px;width:300px}.wcf-product-field .wcf-selection-field .wcf__control .wcf__value-container--has-value,.wcf-product-field .wcf-selection-field .wcf__control .wcf__value-container--has-value .wcf__single-value,.wcf-product-field .wcf-selection-field .wcf__value-container{color:#444}.wcf-product-field .wcf-selection-field .wcf__control.wcf__control--is-focused,.wcf-product-field .wcf-selection-field .wcf__control:active,.wcf-product-field .wcf-selection-field .wcf__control:hover{border-color:#aaa;box-shadow:none}.wcf-product-field .wcf-selection-field label{display:inline-block}.wcf-product-field .css-2b097c-container{display:inline;margin:0 30px 0 0;width:450px}
33
- .wcf-coupon-field .wcf-selection-field{align-items:center;display:flex}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__control{cursor:pointer}.wcf-coupon-field .wcf-selection-field .wcf__value-container .css-1g6gooi,.wcf-coupon-field .wcf-selection-field .wcf__value-container div:last-child{color:#444;margin:0;padding:0}.wcf-coupon-field .wcf-selection-field .wcf__value-container .css-1g6gooi input:focus,.wcf-coupon-field .wcf-selection-field .wcf__value-container div:last-child input:focus{box-shadow:none}.wcf-coupon-field .wcf-selection-field .wcf__control .css-1hwfws3m,.wcf-coupon-field .wcf-selection-field .wcf__value-container{color:#444;font-weight:400;height:36px}.wcf-coupon-field .wcf-selection-field .wcf-select2-input{border-color:#ddd;border-radius:2px;width:300px}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu{background-color:#fff;border-radius:2px;color:#555;font-weight:400;line-height:1.1}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__menu-list{max-height:200px}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:active,.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:hover,.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__option--is-focused,.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__option--is-selected{background-color:#f1f1f1;color:#444;cursor:pointer}.wcf-coupon-field .wcf-selection-field .wcf__control{border-color:#ddd;border-radius:2px;width:300px}.wcf-coupon-field .wcf-selection-field .wcf__control .wcf__value-container--has-value,.wcf-coupon-field .wcf-selection-field .wcf__control .wcf__value-container--has-value .wcf__single-value,.wcf-coupon-field .wcf-selection-field .wcf__value-container{color:#444}.wcf-coupon-field .wcf-selection-field .wcf__control.wcf__control--is-focused,.wcf-coupon-field .wcf-selection-field .wcf__control:active,.wcf-coupon-field .wcf-selection-field .wcf__control:hover{border-color:#aaa;box-shadow:none}.wcf-coupon-field .wcf-selection-field label{display:inline-block}.wcf-coupon-field .css-2b097c-container{display:inline;margin:0 30px 0 0;width:450px}
34
- .wcf-tooltip-icon{position:relative}.wcf-tooltip-icon .dashicons{display:block;position:relative}.wcf-tooltip-icon .wcf-tooltip-text{background-color:#444;border-radius:3px;color:#fff;font-size:11px;right:-20px;padding:5px 8px;position:absolute;top:25px;visibility:hidden;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.wcf-tooltip-icon .wcf-tooltip-text:after{border:5px solid transparent;border-bottom-color:#444;content:"";right:30px;margin-right:-5px;position:absolute;top:-10px}.wcf-tooltip-icon:hover .wcf-tooltip-text{visibility:visible}.wcf-tooltip-icon.wcf-tooltip-position--right .wcf-tooltip-text{right:25px;top:-5px}.wcf-tooltip-icon.wcf-tooltip-position--right .wcf-tooltip-text:after{right:-6px;top:10px;transform:rotate(-270deg)}
35
- .wcf-sub-heading-field .wcf-field__data--label{border-bottom:1px solid #ddd;margin-bottom:20px;padding:15px 0 0}.wcf-sub-heading-field .wcf-field__data--label label{font-size:15px;font-weight:600}
36
- .wcf-password-field input{background:#fff;border-color:#ddd;border-radius:2px;font-weight:400;height:36px;margin:0;max-width:100%;padding:4px 15px;width:300px}.wcf-password-field input:focus{border-color:#aaa;box-shadow:none}.wcf-password-field input.readonly,.wcf-password-field input[readonly]{background-color:#eee!important}.wcf-password-field .wcf-field__data{align-items:center;display:flex}.wcf-password-field .wcf-field__data--content{display:flex}.wcf-password-field .wcf-field__data--content .wcf-password-field__icon{border:1px solid #ddd;border-bottom-left-radius:2px;border-right:none;border-top-left-radius:2px;cursor:pointer;line-height:1;padding:7px;vertical-align:middle;width:auto}
37
- .wcf-archived-step .wcf-loader{align-items:center;display:flex;justify-content:center;right:45%;position:absolute}.wcf-archived-step .wcf-dot-loader{animation:grow 1.2s ease-in-out infinite;background-color:#f06335;border-radius:50%;height:20px;position:relative;width:20px}.wcf-archived-step .wcf-dot-loader--2{animation:grow 1.2s ease-in-out .15555s infinite;margin:0 10px}.wcf-archived-step .wcf-dot-loader--3{animation:grow 1.2s ease-in-out .3s infinite}@keyframes grow{0%,40%,to{transform:scale(0)}40%{transform:scale(1)}}.step-overlay :not(.wcf-loader){border:1px solid #ddd;opacity:.1}
 
38
  #wcf-archived-button{cursor:pointer;display:block}#wcf-archived-button.is-active{margin-bottom:10px}
39
- .wcf-skeleton-base{display:block}.wcf-skeleton{background-color:rgba(0,0,0,.11);display:block;height:1.2em}.wcf-skeleton-pulse{animation:wcf-skeleton-keyframes-pulse 1.5s ease-in-out .5s infinite}@keyframes wcf-skeleton-keyframes-pulse{0%{opacity:1}50%{opacity:.4}to{opacity:1}}.wcf-skeleton--wave{overflow:hidden;position:relative}.wcf-skeleton--wave:after{animation:wcf-skeleton-keyframes-wave 1.6s linear .5s infinite;background:linear-gradient(-90deg,transparent,rgba(0,0,0,.04),transparent);bottom:0;content:"";right:0;position:absolute;left:0;top:0;transform:translateX(100%)}@keyframes wcf-skeleton-keyframes-wave{0%{transform:translateX(100%)}60%{transform:translateX(-100%)}to{transform:translateX(-100%)}}
40
- .wcf-flow-row.is-placeholder{align-items:center;border-bottom:1px solid #d7d7d7;display:flex;justify-content:space-between;padding:20px 30px;position:relative}.wcf-flow-row.is-placeholder .wcf-flow-row__actions,.wcf-flow-row.is-placeholder .wcf-flow-row__title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 40px,#ddd 80px);background-position:100%;background-size:600px;padding:15px;width:500px}.wcf-flow-row.is-placeholder .wcf-flow-row__actions{padding:8px;width:250px}@keyframes shine-lines{0%{background-position:-100px}40%,to{background-position:340px}}
41
- .wcf-skeleton--text{border-radius:4px;font-size:12px;height:auto;line-height:1.5em;margin-bottom:0;margin-top:0;transform:scaleY(.6);transform-origin:100% 60%}.wcf-skeleton--text:empty:before{content:" "}
42
  .wcf-skeleton--spacer{height:25px}
43
  .wcf-skeleton--rect{height:20px}
44
- .wcf-skeleton--circle{border-radius:50%;height:40px;width:40px}
45
  .wcf-step-dummy{margin-bottom:20px}
46
- .wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .title,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .title{width:80%}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{width:60%}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;border-left:1px solid #fff;padding:15px;width:8%}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right{display:flex}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-custom-filter-input{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px 80px}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-filters__buttons--custom-search{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;border:none;padding:15px 50px;width:8%}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;margin-left:15px;padding:15px}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item:last-child,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title:last-child,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name:last-child,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data:last-child{margin-left:0}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:100%}}
47
- .wcf-flow-analytics{padding:30px}.wcf-flow-analytics .wcf-flow-analytics__revenue{display:flex;justify-content:space-between;margin:0;max-width:100%;padding:0}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block{align-content:center;background:#fff;border:1px solid #ddd;border-radius:0;border-left:0;box-shadow:none;display:inline;margin:0;padding:30px;position:relative;width:33.3333%}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block:first-child{border-bottom-right-radius:3px;border-top-right-radius:3px}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block:last-child{border-bottom-left-radius:3px;border-left:1px solid #ddd;border-top-left-radius:3px}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .title,.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{background:transparent;color:#444;font-size:20px;font-weight:400;margin:0;padding:0;text-align:right;width:100%}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{margin-top:30px}.wcf-flow-analytics .wcf-flow-analytics__filters{align-items:center;display:flex;flex-direction:row;margin-bottom:20px;margin-top:50px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons{margin:0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .button{background:#fff;border:1px solid #ddd;border-radius:0;color:#444;margin:0;padding:4px 15px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .button:hover{background:#fafafa;color:#444}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-filters__buttons--last-today{border-radius:0 2px 2px 0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-filters__buttons--last-week{border-right:0;border-radius:0;border-left:0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-filters__buttons--last-month{border-radius:2px 0 0 2px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons button{outline:0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-button.wcf-filter-active{background:#edeff1;background:var(--secondary-hv-color);border-color:#ddd;border-color:var(--secondary-border-color);box-shadow:none;color:#3a3a3a}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right{display:flex;margin:0 auto 0 0;text-align:right}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-custom-filter-input{background:#fff;border:1px solid #ddd;margin:0 5px;padding:3px 15px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-filters__buttons--custom-search{background:#f06335;border:1px solid #f06335;border-radius:3px;color:#fff;margin:0 5px 0 0;padding:3px 15px}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table{border:solid #dfdfdf;border-width:1px 1px 0;width:100%}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-header{align-items:center;background:#f5f6f7;border-bottom:1px solid #dfdfdf;color:#444;display:flex;justify-content:unset;padding:10px 25px;width:100%}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title{flex:1 1 20%}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item,.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title{color:#444;font-weight:500}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name{color:#444;flex:1 1 20%;font-size:14px}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name .ab-test-step-name{cursor:pointer}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name .dashicons-editor-break{margin-right:15px;margin-left:7px;transform:scaleX(-1)}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name .wcf-archived-date{color:#666;display:block;font-size:13px;margin-right:15px;text-align:right}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-row{background:#fff;border-bottom:1px solid #dfdfdf;display:flex;padding:25px;width:100%}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-row:hover{background:#fafafa}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item,.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data{flex:1 1 20%;text-align:center}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data{color:#000}.wcf-flow-analytics .wcf-flow-analytics__reset-button{display:flex;justify-content:flex-end;margin-top:15px}.wcf-analytics-no-step-notice{color:#444;font-size:15px;font-weight:400;padding:20px 40px}
48
- a.wcf-nav-item{background:#f7f8fa;border-bottom:1px solid #dedede;box-shadow:none;color:#444;cursor:pointer;display:block;font-weight:400;outline:none;padding:20px;text-decoration:none}a.wcf-nav-item---active,a.wcf-nav-item:hover{background:#e4e4e7;color:#444}
49
- .wcf-nav-content{background:#fafafa;color:#444;display:none;font-size:14px;line-height:34px;padding:0;text-align:right}.wcf-nav-content table{width:100%}.wcf-nav-content table .wcf-section-heading-field:first-child .wcf-field__data--label{padding-top:10px}.wcf-nav-content table th{font-weight:400;padding:10px 0}.wcf-nav-content---active{display:block}.wcf-nav-content---active h3{color:#444;font-weight:500;line-height:1;margin:5px 0;padding:0 10px 20px}.wcf-nav-content---active .wcf-nav-content__header{align-items:center;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;margin-bottom:20px}.wcf-nav-content---active .wcf-nav-content__header .wcf-nav-content__header--button,.wcf-nav-content---active .wcf-nav-content__header h3.wcf-nav-content__header--title{width:50%}.wcf-nav-content---active .wcf-nav-content__header .wcf-nav-content__header--button p,.wcf-nav-content---active .wcf-nav-content__header h3.wcf-nav-content__header--title{margin:0}.wcf-nav-content---active .wcf-nav-content__header .wcf-nav-content__header--button{display:flex;justify-content:flex-end;padding:0 10px 10px}.wcf-field-section-heading{color:#333;font-size:15px;font-weight:600;padding:10px 0 5px;text-decoration:none}.wcf-pro-update-notice{font-style:italic}
50
- .wcf-settings-nav{display:flex}.wcf-settings-nav__tabs{background:#f7f8fa;padding:15px;width:250px}.wcf-settings-nav__tab{padding:0 0 10px}.wcf-settings-nav__tab:last-child{padding:0}.wcf-settings-nav__content{background:#fff;padding:25px;width:calc(100% - 250px)}
51
- .wcf-edit-flow-setting{font-size:14px;min-height:750px;padding:30px}.wcf-edit-flow-setting form{position:relative;width:100%}.wcf-edit-flow-setting form .wcf-vertical-nav p{color:#444;font-size:14px;font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav table{height:34px;line-height:34px;min-width:200px;text-align:right}.wcf-edit-flow-setting form .wcf-vertical-nav table th{padding:15px 0 15px 10px}.wcf-edit-flow-setting form .wcf-vertical-nav table .wcf-field__desc{color:#666;line-height:1.5;margin-top:15px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu a{border-bottom:1px solid #eee;color:#5f5f5f;cursor:pointer;display:block;font-weight:400;padding:23px;text-decoration:none}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu a:hover{background:#e4e4e7;box-shadow:none;color:#434343;font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu .wcf-setting-icon{margin:7px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu{background:#f7f8fa;float:unset;width:20%}.wcf-edit-flow-setting form .wcf-vertical-nav a.wcf-nav-item---active{background:#e4e4e7;box-shadow:none;color:#434343}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content{background:#fafafa;border:1px solid #eee;padding:20px 30px;width:80%}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content{background:transparent;color:#444;font-size:14px;padding:0}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content .wcf-field__data--label label,.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content .wcf-selection-field label{display:inline-block;font-size:14px;font-weight:500;line-height:1.1;padding-left:20px;width:300px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content label{font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content input[type=text],.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content select{font-weight:400;margin-right:20px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-submit-button{text-align:right}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content---active h3{line-height:1;margin:5px 0;padding:0 10px 10px}.wcf-edit-flow-setting form .wcf-vertical-nav h3{color:#444;font-weight:500}
52
- .wcf-steps-page-wrapper{border-top:1px solid #ededed;margin-top:-1px;padding:30px}.wcf-steps-page-wrapper .wcf-list-steps{margin-bottom:15px}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step{background:#f9f9f9;border:1px dashed #cdcdcd;color:#444;display:block;font-weight:400;padding:20px;text-align:center;transition:all .1s ease-in;width:100%}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover{background:transparent;border-color:#aaa;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover .dashicons-plus:before{background:transparent;color:#016087}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step:hover .wcf-create-step--text{border-color:#006799;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step--text{background:transparent;font-size:17px;line-height:1;margin-right:7px}.wcf-no-step-notice{color:#444;font-size:15px;font-weight:400;padding:20px 0 40px}
53
- .wcf-steps-header{align-items:center;display:flex;flex-flow:row;justify-content:space-between;margin:0 0 25px}.wcf-steps-header .wcf-steps-header--title{color:#444;font-size:20px;font-weight:500;line-height:40px}.wcf-steps-header .wcf-step__title--editable .new-flow-title{background:#fafafa;border-color:#ccc;line-height:2;padding:2px 15px}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:before{background:#eee;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a{margin-right:10px;text-decoration:none;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:focus,.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:hover{box-shadow:none;outline:none}.wcf-steps-header .wcf-create-step{align-items:center;display:flex;justify-content:space-between}.wcf-steps-header .wcf-create-step .dashicons{font-size:15px;height:-moz-fit-content;height:fit-content;margin-left:10px;width:-moz-fit-content;width:fit-content}
54
- .wcf-steps-chart{border:1px solid #a5a5a5;height:100vh;max-height:70%}.wcf-steps-chart.wcf-fullscreen{right:0;max-height:unset;position:fixed;top:0;width:100%;z-index:999999}.wcf-steps-chart.wcf-fullscreen .wcf-steps-chart__exit-screen-msg{background-color:#636363;color:#fff;right:44%;padding:10px;position:absolute;text-align:center;text-transform:none;top:20px;z-index:4}.wcf-steps-chart .react-flow .react-flow__controls .wcf-exit-full-screen,.wcf-steps-chart .react-flow .react-flow__controls .wcf-full-screen{font-size:13px;height:unset}.wcf-steps-chart .react-flow__renderer.react-flow__zoompane{cursor:move}.wcf-steps-chart.loading{background-color:#f4f4f4;position:relative}.wcf-steps-chart.loading .wcf-step-chart-loader{display:flex;flex:0 0 50%;height:300px;right:49%;position:absolute;top:50%;width:300px}.wcf-steps-chart.loading .wcf-step-chart-loader .dot-loader{animation:grow 1.2s ease-in-out infinite;background-color:#f44336;border-radius:50%;height:20px;position:relative;width:20px}.wcf-steps-chart.loading .wcf-step-chart-loader .dot-loader--2{animation:grow 1.2s ease-in-out .15555s infinite;margin:0 20px}.wcf-steps-chart.loading .wcf-step-chart-loader .dot-loader--3{animation:grow 1.2s ease-in-out .3s infinite}.wcf-flow-overview-screen{overflow:hidden}
55
- .wcf-steps-chart .wcf-custom-node-design{position:relative}.wcf-steps-chart .wcf-node-action-delete,.wcf-steps-chart .wcf-node-actions{visibility:hidden}.wcf-steps-chart .react-flow__node-offer .react-flow__handle-right-a{left:-4px;top:8px;transform:none}.wcf-steps-chart .react-flow__node-offer .react-flow__handle-right-b{bottom:8px;left:-4px;top:auto;transform:none}.wcf-steps-chart .react-flow__node-checkout,.wcf-steps-chart .react-flow__node-landing,.wcf-steps-chart .react-flow__node-offer,.wcf-steps-chart .react-flow__node-optin,.wcf-steps-chart .react-flow__node-thankyou{color:#222;font-size:12px;text-align:center}.wcf-steps-chart .react-flow__node-checkout .wcf-handle-left,.wcf-steps-chart .react-flow__node-checkout .wcf-handle-right,.wcf-steps-chart .react-flow__node-landing .wcf-handle-left,.wcf-steps-chart .react-flow__node-landing .wcf-handle-right,.wcf-steps-chart .react-flow__node-offer .wcf-handle-left,.wcf-steps-chart .react-flow__node-offer .wcf-handle-right,.wcf-steps-chart .react-flow__node-optin .wcf-handle-left,.wcf-steps-chart .react-flow__node-optin .wcf-handle-right,.wcf-steps-chart .react-flow__node-thankyou .wcf-handle-left,.wcf-steps-chart .react-flow__node-thankyou .wcf-handle-right{top:45%}.wcf-steps-chart .react-flow__node-checkout .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-landing .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-offer .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-optin .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-thankyou .wcf-custom-node-label{font-size:18px;padding:20px;text-align:center}.wcf-steps-chart .react-flow__node-checkout .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-landing .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-offer .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-optin .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-thankyou .wcf-custom-node-design{background-repeat:no-repeat;border:1px solid #c2c2c2;border-radius:10px;height:259px;width:200px}.wcf-steps-chart .react-flow__node-conditional{font-size:12px;text-align:center}.wcf-steps-chart .react-flow__node-conditional .wcf-handle-left{top:42%}.wcf-steps-chart .react-flow__node-conditional .wcf-custom-node-label{font-size:18px;padding:20px 0;text-align:center}.wcf-steps-chart .react-flow__node-conditional .wcf-custom-node-design{background-repeat:no-repeat;border:1px solid #c2c2c2;border-radius:10px;height:137px;position:relative;width:117px}.wcf-steps-chart .react-flow__node-conditional .wcf-custom-node-design .wcf-node-actions{visibility:hidden}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper{border:1px solid #ec4a8e;margin:-11px;padding:10px;position:relative}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .wcf-rect{background:#fff;border:1.5px solid red;border-radius:3px;height:10px;position:absolute;width:10px}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .top-left{right:-5px;top:-5px}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .top-right{left:-5px;top:-5px}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .botton-left{right:-5px;top:274px}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .bottom-right{left:-5px;top:274px}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions{background:#fff;border-radius:2px;display:flex;right:35px;padding:2px 5px;position:absolute;top:-75px;visibility:visible}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a{cursor:pointer;display:block;padding:10px;text-decoration:none}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a .dashicons{color:#484848;font-size:25px;margin-bottom:5px}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a :hover{color:#2271b1}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions:before,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions:before,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions:before,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions:before,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions:before{background-color:#fff;border:1px solid #f4f4f4;border-right:none;border-top:none;content:"";height:20px;right:56px;position:absolute;top:36px;transform:rotate(-45deg);width:20px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper{border:1px solid #ec4a8e;margin:-11px;padding:10px;position:relative}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .wcf-rect{background:#fff;border:1.5px solid red;border-radius:3px;height:10px;position:absolute;width:10px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .top-left{right:-5px;top:-5px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .top-right{left:-5px;top:-5px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .botton-left{right:-5px;top:152px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .bottom-right{left:-5px;top:152px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions{background:#fff;border-radius:2px;display:flex;right:37px;padding:2px 5px;position:absolute;top:-67px;visibility:visible}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a{cursor:pointer;display:block;padding:10px;text-decoration:none}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a .dashicons{color:#484848;display:block;font-size:25px;height:20px;line-height:20px;margin:0 -1px 0 0;width:25px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a :hover{color:#2271b1}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-action-delete{visibility:hidden}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions:before{background-color:#fff;border:1px solid #f4f4f4;border-right:none;border-top:none;content:"";height:20px;right:16px;position:absolute;top:29px;transform:rotate(-45deg);width:20px;z-index:-1}
56
  .wcf-steps-chart .react-flow__edge-path{stroke:#2271b1;stroke-width:2px}
57
- .wcf-step-library__item{align-items:center;background:transparent;border:5px dashed rgba(0,0,0,.1);display:flex;flex:1;flex-direction:column;font-size:22px;height:250px;justify-content:center;margin:0 1em;padding:5em 0;position:relative;text-align:center}.wcf-step-library__item:first-child:last-child{margin:0 auto;max-width:450px}.wcf-step-library__item .wcf-notice{background:transparent;border:none;box-shadow:none;margin:0}
58
  .wcf-create-step__dropdown-list{margin-bottom:.5em}
59
- .wcf-learn-how{font-size:1rem;margin-top:1em}.wcf-learn-how a{text-decoration:none}.wcf-learn-how i{font-size:medium;vertical-align:middle}.wcf-button.disabled{background:rgba(241,99,52,.749);pointer-events:none}
60
- .wcf-spinner{animation:spin 2s linear infinite;float:none;margin:0}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}
61
- .wcf-activate-link{font-size:14px;text-decoration:none}.wcf-activate-link .wcf-icon{font-size:medium;margin-right:2px;vertical-align:middle}
62
- .wcf-name-your-step{bottom:0;right:0;position:fixed;left:0;top:0;z-index:9999}.wcf-name-your-step.show{display:block}.wcf-name-your-step.hide{display:none}.wcf-name-your-step .wcf-name-your-step__inner{background:#fff;border-radius:2px;margin:30vh auto 0;max-width:550px;position:relative;width:500px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close{cursor:pointer;padding:15px;position:absolute;left:0;top:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close .dashicons{color:#aaa}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close .dashicons:hover{color:#9a9a9a}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header{align-items:center;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;margin:0;padding:0;position:relative;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__title .wcf-name-your-step-popup__title{color:#444;font-size:16px;font-weight:500;line-height:1;margin:0;padding-right:25px;text-transform:capitalize}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__title .wcf-name-your-step-popup__title .cartflows-logo-icon{font-size:14px;margin-left:10px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu{border-right:1px solid #ddd;color:#ccc;cursor:pointer;display:inline-block;padding:15px;position:relative}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu:after{font-size:25px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu:hover{color:#aaa}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header h3{margin-top:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body{background:#f5f5f5;display:block;padding:30px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body input{width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__text-field-wrap{margin-left:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer{margin-top:10px;text-align:left}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-step-import__message{display:inline-block;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-step-import__message p{color:#444;font-size:18px;font-weight:400}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message{display:inline-block;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message p{color:#444;font-size:18px;font-weight:400}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__button,.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message{text-align:center}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer button a{color:#fff}.wcf-name-your-step .wcf-name-your-step__overlay{background:rgba(0,0,0,.729);bottom:0;right:0;position:absolute;left:0;top:0}
63
- .wcf-remote-filters{padding:15px;text-align:center}.wcf-remote-filters .filter-links,.wcf-remote-filters .filter-links li{display:inline-block;margin:0}.wcf-remote-filters .filter-links li:first-child .step-type-filter-item{margin-right:0}.wcf-remote-filters .filter-links li .step-type-filter-item{border-bottom:0;color:#555;font-size:14px;font-weight:400;margin:0 10px;padding:10px;text-decoration:none;text-transform:capitalize}.wcf-remote-filters .filter-links li .step-type-filter-item.current{color:#f06335}.wcf-remote-filters .filter-links li .step-type-filter-item:hover{color:#000}.wcf-item{float:right;margin-bottom:40px;padding-right:20px;padding-left:20px;position:relative;transition:all .2s ease-in-out;width:25%}.wcf-item__type{border-radius:2px;color:#fff;font-size:10px;font-weight:700;letter-spacing:.3px;padding:3px 10px;position:absolute;left:14px;text-transform:uppercase;top:-6px;z-index:2}.wcf-item__inner{background:#fff;border:1px solid #ddd;border-radius:3px;cursor:pointer;display:block;overflow:hidden;position:relative;transition:all .2s ease-in-out;z-index:1}.wcf-item__inner:hover{transform:translateY(-1px)}.wcf-item__inner:hover .wcf-item__thumbnail-wrap{opacity:.7;transform:scale(1.02)}.wcf-item__inner:hover .wcf-item__view,.wcf-item__inner:hover .wcf-step-preview-wrap{opacity:1}.wcf-item__inner .wcf-step-preview-wrap{right:0;opacity:0;position:absolute;left:0;text-align:center;top:50%;transform:translateY(-50%);z-index:15}.wcf-item__inner .wcf-step-preview{background:rgba(0,0,0,.7);border-radius:3px;color:#fff;font-size:14px;font-weight:600;line-height:1.5px;padding:7px 18px;text-decoration:none;text-shadow:0 1px 0 rgba(0,0,0,.6)}.wcf-item__inner .wcf-step-preview .dashicons{margin-right:2px}.wcf-item__type{background:#f16334}.wcf-item__thumbnail-wrap{padding:8px;transition:all .2s ease-in-out}.wcf-item__thumbnail{background:#fff;border-bottom:1px solid #ededed;max-height:225px;overflow:hidden;position:relative}.wcf-item__thumbnail-image{width:100%}.wcf-item__view{background:#fff;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-top:none;bottom:0;color:#263238;display:block;height:auto;right:0;opacity:0;padding:10px;position:absolute;left:0;text-align:center;transition:all .2s ease-in-out;z-index:15}.wcf-item__btn{background:#f16334;border:none;border-radius:2px;color:#fff;cursor:pointer;display:inline-block;font-size:13px;font-weight:600;padding:7px 22px;text-shadow:none}.wcf-item__heading-wrap{padding:10px 15px;text-align:center}.wcf-item__heading{color:#2f3f50;font-size:14px;font-weight:500;margin-bottom:3px;width:100%}
64
- .wcf-flow-importer{margin-top:1em}.wcf-step-importer__list{margin-top:2em}.wcf-step-importer__list .wcf-step-row:last-child{border:0}.wcf-item__inner--active{border-color:#5b9dd9;border-radius:2px}.wcf-step-library .wcf-items-list{display:flex;flex-wrap:wrap;justify-content:flex-start;margin-right:-20px;margin-left:-20px;padding:0}.wcf-step-library .wcf-step-library__step-actions{align-items:center;background:#fff;border-bottom:1px solid #eee;display:flex;justify-content:space-between;min-height:50px;padding:0 30px;position:relative}.wcf-step-library .wcf-step-library__step-actions .wcf-button{margin-left:30px;min-height:auto}.wcf-step-library .wcf-step-library__step-actions h3{color:#444;font-weight:500}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper{align-items:center;display:flex;height:100%;justify-content:center;right:0;position:absolute;left:0;width:100%}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links{display:inline-block;margin:0;padding:0}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li{display:inline-block}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .get-started-step-item{align-items:center;border:none;color:#444;font-size:14px;font-weight:400;justify-content:center;margin:0 0 -6px;min-width:100px;padding:10px 22px 15px;position:relative;text-decoration:none;width:unset}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .get-started-step-item:hover{border-bottom:2px solid #f06335;color:#f06335}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .current{border-bottom:2px solid #f06335;color:#f06335;font-weight:400}.wcf-step-library .wcf-remote-content{background:#fff;min-height:750px;padding:30px;position:relative;width:100%}.wcf-step-library .wcf-remote-content .wcf-ready-templates{display:none}.wcf-step-library .wcf-remote-content .wcf-ready-templates.current{display:block}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch{display:none}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch.current{align-items:center;display:flex;min-height:500px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item{border:4px dashed #ddd;border-radius:2px;height:350px;max-width:600px;padding:unset}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;padding:20px 30px;width:100%}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__dropdown-list{margin:0 0 0 10px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__dropdown-list select{height:36px;margin:0;width:200px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-learn-how{margin-top:30px;width:100%}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__notice-wrap{width:100%}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__notice-wrap .wcf-create-step__notice p{color:#444;font-size:14px;margin:0 0 20px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item--scratch h3{color:#444;font-size:22px;font-weight:500;margin:0 0 10px;width:100%}
65
- .wcf-edit-flow__title-wrap{align-items:center;display:flex;justify-content:space-between;margin:0;padding:0 15px 10px}.wcf-edit-flow__title-wrap .wcf-flows-header--title{color:#444;font-size:22px;font-weight:500;line-height:40px;width:50%}.wcf-edit-flow__title-wrap .wcf-step__title--editable{align-items:center;display:flex}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--text input{background:#fff;border-color:#aaa;color:#444;font-weight:400;height:40px;line-height:1;width:350px}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons{display:inline;vertical-align:middle}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-button--small{font-size:14px;font-weight:400;line-height:1;padding:9px 20px}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-button--small.wcf-saving{animation:wcf-saving 2.5s linear infinite;background-image:linear-gradient(45deg,#f06335 28%,#f78860 0,#f78860 72%,#f06335 0);background-size:100px 100%;opacity:1}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons a,.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons button{margin-right:10px;text-decoration:none;vertical-align:middle}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-flows-header__title--edit .dashicons-edit{vertical-align:unset}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-flows-header__title--edit .dashicons-edit:before{background:#fff;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-flows-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums{text-align:left;width:50%}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums .wcf-breadcrum--nav-item{color:#444;font-size:14px;font-weight:500}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link{color:var(--primary-color);text-decoration:none}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link:hover{color:var(--primary-hv-color)}
 
 
 
 
 
 
 
 
 
 
 
66
  .editor-wrap__content{background:#fff;position:relative}
67
- .wcf-woo-notice{color:red;padding:20px}.wcf-payment-gateway-notice,.wcf-woo-notice{background:#fff;border-right:2px solid red;margin:0 0 15px}.wcf-payment-gateway-notice{line-height:1.5;padding:15px}.wcf-payment-gateway-notice .wcf-gateway-notice-style{font-weight:700}.wcf-vertical-nav .wcf-textarea-field textarea[id*=-script]{width:500px}
68
- .wcf-edit-step--nav{background:#fff;border-bottom:1px solid #ededed;box-shadow:none;display:flex;margin:0;padding:0}.wcf-edit-step--nav a.wcf-edit-step--nav__back-to-flow{padding:18px 18px 18px 25px}.wcf-edit-step--nav a.wcf-edit-step--nav__back-to-flow:hover{background:#fafafa}.wcf-edit-step--nav .wcf-edit-step--nav__back-to-flow--button{background:transparent;border:none;cursor:pointer;line-height:1}.wcf-edit-step--nav .wcf-edit-step--nav__back-to-flow--button .dashicons{color:#444;font-size:15px;height:-moz-fit-content;height:fit-content;margin-left:8px;width:-moz-fit-content;width:fit-content}.wcf-edit-step--nav .wcf-edit-step--nav__back-to-flow--button .wcf-back-button{color:#444;font-size:15px}.wcf-edit-step--nav .wcf-edit-flow--nav__back-to-flow--button:focus,.wcf-edit-step--nav .wcf-edit-flow--nav__back-to-flow:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-step--nav__tab{background:transparent;border:1px solid #fff;border-bottom:1px solid #ededed;border-top:0;box-shadow:none;color:#434343;cursor:pointer;font-size:15px;font-weight:300;line-height:1;margin-bottom:-1px;max-width:100%;outline:none;padding:18px 25px;text-align:center;text-decoration:none}.wcf-edit-step--nav__tab:hover{background:#f8f8f9;border:1px solid #f8f8f9;border-top:0;color:#444}.wcf-edit-step--nav__tab:first-child{border-right:0}.wcf-edit-step--nav__tab:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-step--nav__tab--active,.wcf-edit-step--nav__tab--active:hover{background:#fff;border:1px solid #ededed;border-bottom-color:#fff;border-top:0;color:#444;font-weight:300}.wcf-edit-step--nav__tab--active:first-child{border-right:0}
69
- .wcf-page-wrapper{min-height:750px;padding:30px}.wcf-page-wrapper .wcf-list-options .wcf-list-options__title,.wcf-page-wrapper .wcf-nav-content label.wcf-field-section-heading{border-bottom:1px solid #ddd;display:inline-block;font-size:18px;font-weight:500;padding:35px 0 15px;width:100%}.wcf-page-wrapper .wcf-checkout__section .wcf-list-options__title,.wcf-page-wrapper .wcf-custom-field-editor__content .wcf-custom-field-editor__title{padding-top:0}.wcf-page-wrapper form{position:relative;width:100%}.wcf-page-wrapper .wcf-field__data--label label,.wcf-page-wrapper .wcf-selection-field label{color:#444;display:inline-block;font-size:14px;font-weight:500;line-height:1.1;padding-left:20px;width:300px}.wcf-page-wrapper .wcf-section-heading-field .wcf-field__data--label{border-bottom:1px solid #ddd;margin-bottom:10px;padding:25px 0 5px}.wcf-page-wrapper .wcf-section-heading-field .wcf-field__data--label label{font-size:16px;font-weight:600}.wcf-page-wrapper .wcf-sub-heading-field .wcf-field__data--label{border-bottom:1px solid #ddd;margin-bottom:10px;padding:15px 0 5px}.wcf-page-wrapper .wcf-sub-heading-field .wcf-field__data--label label{font-size:15px;font-weight:500}.wcf-page-wrapper .wcf-checkbox-field .wcf-field__data--label,.wcf-page-wrapper .wcf-checkbox-field .wcf-field__data--label label,.wcf-page-wrapper .wcf-radio-button .wcf-field__data--label,.wcf-page-wrapper .wcf-radio-button .wcf-field__data--label label{font-size:14px;width:-moz-fit-content;width:fit-content}.wcf-page-wrapper .wcf-checkbox-field input[type=checkbox],.wcf-page-wrapper .wcf-radio-button input[type=radio]{margin:0 0 0 10px}.wcf-page-wrapper h3{color:#444;line-height:1;margin-top:0}.wcf-page-wrapper h3,.wcf-page-wrapper label.wcf-field-section-heading{font-size:18px;padding:25px 0;width:100%}.wcf-page-wrapper label.wcf-field-section-heading{border-bottom:1px solid #ddd;display:inline-block;font-size:18px;font-weight:500;padding:35px 0 15px;width:100%}.wcf-page-wrapper .wcf-selection-field .css-2b097c-container,.wcf-page-wrapper .wcf-selection-field .wcf-select2-input{margin:0}.wcf-page-wrapper .wcf-note-content{color:#444;font-size:15px;font-weight:500}.wcf-page-wrapper .wcf-pro-update-notice{color:#444;font-size:14px;font-weight:500}
70
- .wcf-settings{margin:30px 0}.wcf-settings .wcf-vertical-nav__content{background:#fafafa;border:1px solid #eee;padding:20px 30px;width:80%}.wcf-settings .wcf-submit-button{margin-top:30px;text-align:left}.wcf-vertical-nav{border-radius:2px;display:flex;font-size:14px;min-height:500px}.wcf-vertical-nav .wcf-nav-content__header--button,.wcf-vertical-nav .wcf-nav-content__header--title{padding:0 0 10px}.wcf-vertical-nav .wcf-vertical-nav__menu{background:#f7f8fa;border:0;width:20%}.wcf-vertical-nav .wcf-text-field input{background:#fff;font-weight:400;height:38px;width:300px}.wcf-vertical-nav .wcf-textarea-field textarea{border-color:#ccc;border-radius:2px;font-weight:400;padding:10px;width:300px}.wcf-vertical-nav .wcf-textarea-field textarea:focus{border-color:#aaa;box-shadow:none}.wcf-vertical-nav p{color:#444;font-size:14px;font-weight:400}.wcf-vertical-nav__header{align-items:center;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;margin-bottom:20px}.wcf-vertical-nav__header .wcf-vertical-nav__header-title{font-size:18px;font-weight:500;margin:0;padding:0 0 10px 10px;width:50%}.wcf-vertical-nav__header .wcf-vertical-nav__header-button{display:flex;justify-content:flex-end;padding:0 10px 10px 0}
71
- .wcf-design-page .wcf-design-page__content{background:#fff;margin:0;padding:0 0 50px}.wcf-design-page .wcf-design-page__content .wcf-design-header--title{color:#444;font-size:22px;font-weight:500;line-height:1;margin:0;padding:0 0 15px}.wcf-design-page .wcf-design-page__content .wcf-design-page__text{font-size:15px;padding:10px 0}.wcf-design-page .wcf-design-page__content a.wcf-design-page__WPeditor{font-size:15px}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .new-step-title{background:#fafafa;border-color:#ccc;line-height:2;padding:2px 15px}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons{display:inline;vertical-align:middle}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons .wcf-design-header__title--edit .dashicons-edit:before{background:#eee;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons .wcf-design-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons a{margin-right:10px;text-decoration:none;vertical-align:middle}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons a:focus,.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons a:hover{box-shadow:none;outline:none}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize{margin:25px 0}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--edit,.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--preview{margin-left:15px}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--edit{background:var(--primary-color);border-color:var(--primary-color);color:#fff}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--edit:hover{background:var(--primary-hv-color);border-color:var(--primary-color);color:#fff}.wcf-design-page .wcf-design-page__content .wcf-design-page__text{font-size:14px}.wcf-design-page .wcf-design-page__settings{margin:0;padding:15px 0 0}.wcf-design-page .wcf-design-page__settings h3{font-weight:500;margin:0 0 20px}.wcf-design-page .wcf-design-page__settings .wcf-settings{margin:30px 0}
72
- .wcf-design-page.is-placeholder .wcf-design-page__content .wcf-design-header--title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px;width:30%}.wcf-design-page.is-placeholder .wcf-design-page__customize{display:flex}.wcf-design-page.is-placeholder .wcf-design-page__customize .wcf-design-page__button{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;border-left:1px solid #fff;padding:15px;width:12%}.wcf-design-page.is-placeholder .wcf-design-page__text .title{width:60%}.wcf-design-page.is-placeholder .wcf-design-page__WPeditor .title,.wcf-design-page.is-placeholder .wcf-design-page__text .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:8px}.wcf-design-page.is-placeholder .wcf-design-page__WPeditor .title{width:30%}.wcf-design-page.is-placeholder .wcf-design-page__settings .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px;width:15%}.wcf-design-page.is-placeholder .wcf-design-page__settings .wcf-field.wcf-checkbox-field{margin-top:20px}.wcf-design-page.is-placeholder .wcf-design-page__settings .wcf-field.wcf-checkbox-field .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:20px;width:30%}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:100%}}
73
- .wcf-settings-nav{display:flex}.wcf-settings-nav__tabs{background:#f7f8fa;padding:15px;width:250px}.wcf-settings-nav__tab{padding:0 0 10px}.wcf-settings-nav__tab:last-child{padding:0}.wcf-settings-nav__content{background:#fff;padding:25px;width:calc(100% - 250px)}
74
- .wcf-product-products .wcf-checkout-products--coupon,.wcf-product-products .wcf-checkout-products--options,.wcf-product-products .wcf-products--selection{margin:5px 0 15px}.wcf-product-products .wcf-checkout-product-selection-field{border:1px solid #dfdfdf;border-radius:3px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--product{width:35%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--quantity{width:20%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--discount{width:40%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--actions{width:5%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header{border-bottom:1px solid #dfdfdf;justify-content:left;padding:10px 20px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header .wcf-column--product{padding:0 20px 0 0}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product{align-items:center;border-bottom:1px solid #dfdfdf;cursor:grab;display:flex;padding:15px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product *{line-height:1.1}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__drag{margin-left:20px;width:2%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen{background:#f9f9fa;cursor:grab;transition:all .1s ease-in}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen.sortable-ghost{cursor:grabbing}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-data{align-items:center;width:35%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-image img{display:block;height:80px;margin:0 auto;width:80px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details *{font-size:11px;font-weight:500;line-height:1.1em;margin-bottom:5px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details .wcf-product-repeater-field__title{font-size:15px;margin-bottom:10px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__quantity input{margin-left:20px;width:150px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount .wcf-product-repeater-field__discount-type{width:auto}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount input,.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount select{margin-left:20px;width:150px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action{margin-right:auto}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action .wcf-remove-product-button:hover{color:var(--primary-color);cursor:pointer}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new{padding:20px}
75
- .wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-product-selection-wrapper .wcf-list-options .wcf-list-options__title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px;width:30%}.wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-product-selection-wrapper .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new{display:flex}.wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-product-selection-wrapper .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new .wcf-checkout-products__button{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;border-left:1px solid #fff;padding:15px;width:12%}.wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-design-header--title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px;width:30%}.wcf-checkout-products.is-placeholder .wcf-checkout-products__pro-options .wcf-checkout-products--coupon .wcf-list-options__title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px;width:15%}.wcf-checkout-products.is-placeholder .wcf-checkout-products__pro-options .wcf-checkout-products--coupon .wcf-select2-field .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px;width:30%}.wcf-checkout-products.is-placeholder .wcf-field.wcf-submit .wcf-checkout-products__button{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;border-left:1px solid #fff;padding:15px;width:12%}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:100%}}
76
- .wcf-list-options{color:#444;line-height:34px;padding:0;text-align:right}.wcf-list-options table{width:100%}.wcf-list-options table th{font-weight:400;padding:0 0 10px}.wcf-list-options label{font-weight:500}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{color:#444;font-size:15px;font-weight:500}.wcf-list-options .wcf-child-field:before{color:#ccc;content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);font-family:dashicons;font-weight:400;margin-left:.75em;position:relative;top:-6px;vertical-align:middle}
77
- .wcf-multiple-order-bumps{border-radius:3px;margin-bottom:20px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__content .sortable-chosen{background:#fafafb}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__content .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__content .sortable-chosen .wcf-order-bump__content-wrapper{background:#fafafb;border:1px dashed #aaa}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header{background:#f5f6f7;border:1px solid #dfdfdf;display:flex;justify-content:space-between;line-height:1.2;padding:10px 20px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header .wcf-column{color:#444;font-size:15px;font-weight:500}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header .wcf-column--title{padding:0 20px 0 0;width:35%}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header .wcf-column--actions{display:flex;justify-content:flex-end;padding:0 0 0 20px;width:25%}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__no-content{border:1px solid #dfdfdf;border-top:none;padding:20px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__no-content p{margin-right:20px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__add-new{padding:0 0 30px;text-align:left}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__add-new .dashicons{font-size:18px;line-height:1.2;margin-left:5px;vertical-align:middle}
78
- .wcf-add-ob-popup-overlay{background:rgba(0,0,0,.729);height:100%;right:0;position:fixed;text-align:right;top:0;width:100%;z-index:9999}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content{background:#fff;border-radius:3px;justify-content:space-between;right:50%;position:absolute;top:50%;transform:translate(50%,-50%);width:510px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header{align-items:center;border-bottom:1px solid #ddd;display:flex;height:50px;justify-content:space-between;margin:0;padding:0;position:relative;width:100%}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__title h2{font-size:14px;font-weight:600;line-height:1;margin-left:10px;padding-right:25px;text-transform:uppercase}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__title h2 .cartflows-logo-icon{font-size:16px;margin-left:8px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu{border-right:1px solid #ddd;color:#ccc;cursor:pointer;display:inline-block;padding:5px;position:relative}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu .dashicons{line-height:1.5}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu:after{font-size:25px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu:hover{color:#aaa}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-select2-field .wcf-selection-field label{display:none}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-content-wrap{background:#f5f5f5;padding:25px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-content-wrap .wcf-content-wrap{padding:45px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-content-wrap .wcf-add-ob-content{display:flex;justify-content:space-between;padding:20px 0}
79
- .wcf-order-bump .wcf-order-bump__content-wrapper{align-items:center;border-bottom:1px solid #dfdfdf;border-right:1px solid #dfdfdf;border-left:1px solid #dfdfdf;display:flex;justify-content:space-between;line-height:1.5;padding:25px 30px}.wcf-order-bump .wcf-order-bump__content-wrapper:hover{background:#fafafa}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bumps__data{align-items:center;width:35%}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bumps__data-title img{display:block;height:80px;margin:0 auto;width:80px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action{display:flex;justify-content:flex-end;width:25%}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a{cursor:pointer;font-size:14px;line-height:1.5;margin-left:15px;text-align:center;text-decoration:none;vertical-align:middle}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-clone-bump-button.wcf-cloning,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-remove-order-bump-button.wcf-removing{margin-left:0}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-clone-bump-button.wcf-cloning .dashicons,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-remove-order-bump-button.wcf-removing .dashicons{margin-left:2px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-design-button,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-settings-button{margin-right:0;margin-left:20px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-design-button:hover,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-settings-button:hover{color:var(--primary-color);cursor:pointer}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-remove-order-bump-button.wcf-removing{color:var(--primary-hv-color)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .dashicons{font-size:18px;line-height:1.3;margin-left:5px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf_order_bump__status{display:flex;position:relative}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf_order_bump__status .wcf-spinner{animation:spin 2s linear infinite;color:#434343;float:none;right:45px;margin:0;position:absolute;left:0}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__data{padding-right:10px;width:35%}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__data .wcf-order-bump__data-title a{font-size:15px;font-weight:500;text-decoration:none}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-ob-status{align-self:center}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields{background:#f5f6f7;border:1px solid #ececec;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:20px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field{margin-bottom:20px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field__desc{line-height:1.5}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field.wcf-checkbox-field{margin-bottom:10px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field__data .wcf-field__data--label label{width:200px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-selection-field{margin-bottom:15px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-selection-field label{width:200px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-ob-header__title--edit span{margin-right:10px;text-decoration:none}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch{border:none;border-radius:30px;box-shadow:inset 0 0 0 0 transparent;box-sizing:border-box;cursor:pointer;display:block;height:22px;position:relative;text-indent:-999em;transition:all .3s ease;width:38px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch:focus{outline:none}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch:before{background:#fff;border-radius:50%;box-shadow:0 1px 3px rgba(0,0,0,.3);content:"";display:block;height:18px;right:2px;position:absolute;top:2px;transition:all .15s ease;width:18px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch[data-wcf-order-bump-switch=true]{box-shadow:inset 0 0 0 12px var(--primary-border-color)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch[data-wcf-order-bump-switch=true]:before{transform:translateX(-16px)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch[data-wcf-order-bump-switch=false]{background:#ccc}
80
- .wcf-multiple-order-bumps.is-placeholder .wcf-add-new-order-bump{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:10px 90px;width:100%}.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-column--product{width:25%}.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-column--actions span,.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-order-bump__data-title,.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf_order_bump__status{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px;width:100%}.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-column--actions,.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf_order_bump__status{width:10%}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:100%}}
81
- .wcf-list-options{color:#444;line-height:34px;padding:0;text-align:right}.wcf-list-options table{width:100%}.wcf-list-options table th{font-weight:400;padding:0 0 10px}.wcf-list-options label{font-weight:500}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{color:#444;font-size:15px;font-weight:500}.wcf-list-options .wcf-child-field:before{color:#ccc;content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);font-family:dashicons;font-weight:400;margin-left:.75em;position:relative;top:-6px;vertical-align:middle}
82
- .wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options .wcf-list-options__title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px;width:50%}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options table tr .checkbox-title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;margin-bottom:20px;padding:10px;width:15%}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options table tr .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#ddd 80px);background-position:100%;margin-bottom:10px;padding:15px;width:30%}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options .wcf-field.wcf-submit{margin-top:20px}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options .wcf-field.wcf-submit .wcf-checkout-offer__button{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;border-left:1px solid #fff;padding:20px;width:10%}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:100%}}
83
- .wcf-list-options{color:#444;line-height:34px;padding:0;text-align:right}.wcf-list-options table{width:100%}.wcf-list-options table th{font-weight:400;padding:0 0 10px}.wcf-list-options table .wcf-field__data--label label,.wcf-list-options table .wcf-selection-field label{font-weight:500;width:230px}.wcf-list-options table textarea{width:300px}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{color:#444;font-size:15px;font-weight:500}.wcf-list-options .wcf-child-field:before{color:#ccc;content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);font-family:dashicons;font-weight:400;margin-left:.75em;position:relative;top:-6px;vertical-align:middle}.wcf-list-options .wcf-co-options-wrapper{display:flex;justify-content:space-between}.wcf-list-options .wcf-co-options-wrapper .wcf-co-preview{height:auto;margin:20px 30px 0 0;transition:all .3s;width:100%}.wcf-list-options .wcf-co-options-wrapper .wcf-co-preview .wcf-section-heading-field{margin:27px 0}.wcf-list-options .wcf-co-options-wrapper .wcf-co-settings .wcf-first-style-child{padding-top:0}.wcf-list-options .wcf-co-options-wrapper table{width:80%}.wcf-list-options .wcf-co-options-wrapper.full-screen{flex-flow:column}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-settings{order:2}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview{margin:0 0 30px;order:1}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper{position:unset}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper{height:100%;right:0;overflow:auto;position:fixed;top:0;width:100%;z-index:9999}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal{margin:20px auto;max-width:950px;min-height:350px;top:0}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal .wcf-lightbox-content{padding:50px}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal .wcf-lightbox-content .wcf-pre-checkout-info{padding:30px}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-full-screen-preview-exit-button{position:fixed;left:40px;top:55px;z-index:99999}.wcf-co-full-screen-preview{overflow:hidden}
84
- .wcf-checkout-offer-preview-wrapper:not(.fullscreen){position:relative}.wcf-checkout-offer-preview-wrapper.sticky{position:sticky;top:90px}.wcf-checkout-offer-preview-wrapper.fullscreen{background-color:#fff;right:0;position:absolute;top:-30px}.wcf-checkout-offer-preview-wrapper.fullscreen .wcf-section-heading-field{margin-top:0}.wcf-checkout-offer-preview-wrapper.fullscreen .wcf-section-heading-field .wcf-field__data--label{padding-top:0}.wcf-checkout-offer-preview-wrapper.fullscreen .wcf-pre-checkout-offer-wrapper{margin:0 auto;width:80%}.wcf-checkout-offer-preview-wrapper .wcf-co-preview-mode{position:absolute;left:0;top:25px}.wcf-pre-checkout-offer-wrapper{background:#eee;padding:40px;transition:opacity .25s;z-index:1042}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-title h1{color:#333;font-family:inherit;font-size:1.7em;margin:10px 0}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-skip-btn .wcf-pre-checkout-skip{color:#555;display:block;font-size:14px;margin:5px auto 0;opacity:.8;width:-moz-fit-content;width:fit-content}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-skip-btn .wcf-pre-checkout-skip:hover{opacity:1}.wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-content{background-color:#fff;border:2px dashed #e2e2e2;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.04);display:inline-block;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-progress-bar{margin-bottom:0;overflow:hidden}.wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal{background-color:#fff;border-radius:4px;box-shadow:0 0 30px 5px rgba(0,0,0,.1);font-family:inherit;overflow:hidden;position:relative;transform:translate(0)}.wcf-pre-checkout-offer-wrapper .wcf-progress-bar-nav{margin-bottom:30px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-progress{display:table;position:relative;table-layout:fixed;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step{display:table-cell;position:relative;text-align:center;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-title{color:#6d6d6d;font:inherit;font-size:14px;letter-spacing:.6px;margin-bottom:12px;white-space:nowrap}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-nav-bar-title{color:inherit}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .after{left:0}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .after,.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .before{background:#e2e2e2;bottom:8px;content:"";display:block;height:4px;position:absolute;width:50%}.wcf-pre-checkout-offer-wrapper .wcf-progress-nav-step{background:#e2e2e2;border-radius:3px;height:20px;line-height:17px;margin:auto;position:relative;text-align:center;vertical-align:middle;width:20px;z-index:2}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-sub-title{bottom:0;right:0;margin-bottom:10px;position:relative;text-align:center}.wcf-pre-checkout-offer-wrapper .wcf-content-main-head{margin-bottom:30px;padding:10px;position:relative;text-align:center;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-content-main-head .wcf_first_name{color:#f16334}.wcf-pre-checkout-offer-wrapper .wcf-lightbox-content{padding:35px 20px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price ins{background:none}.wcf-pre-checkout-screen-size .open #wcf-pre-checkout-offer-modal{top:50%;transform:translateY(-50%)}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-nav-bar-step-line .before{background:#f16334}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-nav-bar-step-line .order-after{background:#f16334;bottom:8px;content:"";height:4px;position:absolute;width:50%}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .before{right:0}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step:first-child .wcf-nav-bar-step-line:before,.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step:last-child .wcf-nav-bar-step-line:after{background:#000;display:none!important}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active+.wcf-nav-bar-step.active .wcf-nav-bar-step-line:after{background:#e2e2e2!important}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-progress-nav-step{background:#f16334}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-progress-nav-step .before{speak:none;-webkit-font-smoothing:antialiased;background-color:#fff;border:1px solid #fff;border-radius:1px;color:#fff;content:"";display:inline-block;font:normal normal 400 13px/20px cartflows-icon;height:6px;line-height:7px;margin:0;left:7px;vertical-align:middle;width:6px}.wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-content button.wcf-pre-checkout-offer-btn{background:#f16334;border:1px solid #f16334;border-radius:3px;color:#fff;font-family:inherit;font-size:16px;font-weight:600;line-height:1;margin-top:0;min-height:48px;outline:none;padding:12px 16px;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-product-title h1{color:#333;font-size:1.5em;font-weight:700;margin-bottom:8px;margin-top:0}.wcf-pre-checkout-offer-wrapper.open{height:100%;right:0;opacity:1;padding:30px;text-align:center;top:0;visibility:visible;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-btn-action,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-desc,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price{padding:5px 0}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price .woocommerce-Price-amount.amount,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price ins .woocommerce-Price-amount.amount{display:inline-block;font-size:17px;font-weight:600;margin-bottom:3px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price del .woocommerce-Price-amount.amount{font-weight:400;text-decoration:line-through}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-info{display:inline-block;padding:20px 20px 12px;text-align:center;vertical-align:middle;width:49.7%}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-img img{border:2px solid #e2e2e2;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-info.wcf-pre-checkout-offer-product-details{line-height:2;padding-right:10px;text-align:right}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-actions{padding:0 20px 15px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-btn-action{font-size:12px;padding-top:0}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-sub-title span,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-desc span{font-family:inherit}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-desc span{color:#555;margin-top:5px}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-sub-title span{color:#555;font-size:18px;font-weight:500;padding:0 5px}
85
  .wcf-checkout-offer-save-settings{margin-top:25px}
86
- .wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper{background-color:#fafafa;padding:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules--text{display:flex;padding:10px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules--text .wcf-skeleton{margin-left:7px}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules{margin-bottom:20px;margin-top:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules .wcf-checkout-rule__and{margin:7px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules .wcf-checkout-rule--select-box{display:flex}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules .wcf-checkout-rule--select-box .wcf-skeleton{margin-left:20px}.wcf-checkout-rules-page .wcf-checkout-rules--or{display:flex;justify-content:space-between;margin-right:20px;margin-top:20px;padding:15px 0}.wcf-checkout-rules-page .wcf-checkout-rules--default-step{background-color:#fafafa;display:flex}.wcf-checkout-rules-page .wcf-checkout-rules--default-step .wcf-skeleton{margin-left:7px}
87
- .wcf-checkout-rules--group_rules{display:flex;margin-bottom:10px;position:relative}.wcf-checkout-rules--group_rules:first-child{margin-top:-17px;position:relative}.wcf-checkout-rules--group_rules:not(first-child){margin-top:10px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields{display:flex}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-conditional-field-text,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-conditional-field-text{align-self:center;margin-left:10px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-coupon-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-number-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-product-cat-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-product-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-select-option,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-select2-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-coupon-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-number-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-product-cat-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-product-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-select-option,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-select2-field{margin-left:18px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-checkout-rules--and_text,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-checkout-rules--and_text{align-self:center;margin:0 10px 0 20px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .and-close,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .and-close{align-self:center;cursor:pointer;font-size:18px;margin:5px 0 0 10px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .and-close:hover,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .and-close:hover{color:#2271b1}
88
- .wcf-checkout-rules-page .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-checkout-rules-page .sortable-chosen .wcf-checkout-rules--group{background:#fafafb;border:1px dashed #aaa}.wcf-checkout-rules-page .wcf-checkout-rules-page--enable_option{margin-bottom:30px}.wcf-checkout-rules-page .wcf-checkout-rules-page--enable_option label{align-items:center;display:flex;justify-content:center}.wcf-checkout-rules-page div .wcf-checkout-rules-page--group_wrapper{cursor:grab}.wcf-checkout-rules-page .wcf-checkout-rules--group{background-color:#fafafa;border:1px dashed #fafafa;padding:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group select{margin:0}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf__control{border:1px solid #bebebe;width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf__value-container{line-height:16px;max-height:36px;overflow-y:auto;scroll-behavior:smooth}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf__value-container .wcf__multi-value{margin:5px 3px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--add-rule__repeater{display:flex;margin-top:-10px;position:relative}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--add-rule__repeater .wcf-button--secondary:hover{background-color:#fff;border:1px solid #2271b1;color:#2271b1}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step{display:flex;justify-content:space-between;margin:5px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header__left{align-items:center;display:flex;justify-content:space-between}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header__left .wcf-checkout-rules__handle{cursor:move;margin-left:10px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step label{padding-left:10px;width:auto}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step select{border:1px solid #bebebe;width:auto}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_id{color:#a3a2a2;font-size:10px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header{align-items:center;display:flex;justify-content:space-between}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header .dashicons{cursor:pointer;font-size:30px;line-height:.6;margin-right:10px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper{display:inline-block;margin:45px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-selection-field .wcf-select2-input{width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-select-option select{border:1px solid #bebebe;height:38px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-select-option:nth-child(3) select{width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-field__data--content input{border:1px solid #bebebe;width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label{align-items:center;display:flex;margin-right:10px;position:relative}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group{background-color:#fafafa;border:1px solid #ddd;border-radius:2px;display:flex;margin-left:17px;position:relative}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group:after,.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group:before{background-color:#bebebe;content:"";height:11px;position:absolute;width:1px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group:before{bottom:28px;right:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group:after{left:23px;top:28px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group .wcf--condition-label__and_group__text{color:#555;font-size:12px;font-weight:500;padding:5px 10px}.wcf-checkout-rules-page .wcf-checkout-rules-page--group_wrapper__footer{display:flex;justify-content:space-between;margin:20px 0;position:relative;width:100%}.wcf-checkout-rules-page .wcf-checkout-rules-page--group_wrapper__footer .wcf-button--secondary:hover{background-color:#fff;border:1px solid #2271b1;color:#2271b1}.wcf-checkout-rules-page .wcf-checkout-rules--default-step{background-color:#fafafa;margin:20px 0;padding:20px}.wcf-checkout-rules-page .wcf-checkout-rules--default-step label{padding-left:10px;width:auto}.wcf-checkout-rules-page .wcf-checkout-rules--default-step select{border:1px solid #bebebe;margin:0;width:auto}.wcf-checkout-rules-page .wcf-checkout-rules--group_rules:last-child{margin-bottom:0}.wcf-checkout-rules-page .wcf-checkout-rules--or-group{background-color:#fafafa;border:1px solid #ddd;border-radius:2px;color:#555;font-size:14px;font-weight:500;letter-spacing:.5px;margin:auto 0;padding:5px 15px}
89
- .wcf-custom-field-editor__content{background:#fff;padding:0;text-align:right}.wcf-custom-field-editor__content h3{border-bottom:1px solid #ddd;display:inline-block;font-size:18px;font-weight:500;padding:35px 0 15px;width:100%}.wcf-custom-field-editor__content .wcf-checkbox-field{margin-bottom:10px}.wcf-custom-field-editor__content .wcf-checkbox-field .wcf-field__data--label label{display:inline-block;font-size:14px;font-weight:500;line-height:1.1;padding-left:20px;width:250px}.wcf-custom-field-editor__content .wcf-cfe-child:before{color:#ccc;content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);font-family:dashicons;font-weight:400;margin-left:.75em;position:relative;top:-6px;vertical-align:middle}.wcf-custom-field-editor__content .wcf-field__data .wcf-cfe-child{padding-right:27px}.wcf-custom-field-editor__content table{margin-bottom:30px}.wcf-custom-field-editor__content .wcf-billings-fields-section{margin-left:15px}.wcf-custom-field-editor__content .wcf-shippings-fields-section{margin-right:15px}.wcf-custom-field-editor__content .wcf-billings-fields-section,.wcf-custom-field-editor__content .wcf-shippings-fields-section{border:none;width:calc(50% - 15px)}.wcf-custom-field-editor__content .wcf-billings-fields-section #wcf-billing-fields,.wcf-custom-field-editor__content .wcf-billings-fields-section h3,.wcf-custom-field-editor__content .wcf-shippings-fields-section #wcf-shipping-fields,.wcf-custom-field-editor__content .wcf-shippings-fields-section h3{padding:20px 0}.wcf-custom-field-editor__content .wcf-billings-fields-section #wcf-billing-fields .wcf-field__data--label,.wcf-custom-field-editor__content .wcf-shippings-fields-section #wcf-shipping-fields .wcf-field__data--label{width:190px}.wcf-billings-fields-section,.wcf-shippings-fields-section{border:none;display:inline-block;position:relative;vertical-align:top;width:calc(50% - 15px)}.wcf-billings-fields-section h3,.wcf-shippings-fields-section h3{border:none;margin:0;padding:20px 0}.wcf-billings-fields-section #wcf-billing-fields,.wcf-shippings-fields-section #wcf-shipping-fields{padding:20px 0}.wcf-billings-fields-section .wcf-field-item:first-child .wcf-field-item__bar,.wcf-shippings-fields-section .wcf-field-item:first-child .wcf-field-item__bar{margin:0}#wcf-billing-fields li,#wcf-shipping-fields li{margin-bottom:10px;overflow:hidden;touch-action:none}.wcf-custom-field-editor-buttons{display:flex}.billing-field-sortable .wcf-field-item.sortable-chosen .wcf-field-item-handle,.shipping-field-sortable .wcf-field-item.sortable-chosen .wcf-field-item-handle{background:#fafafb}.billing-field-sortable .wcf-field-item.sortable-ghost .wcf-field-item-handle,.shipping-field-sortable .wcf-field-item.sortable-ghost .wcf-field-item-handle{border-color:#ccc;border-style:dashed}.billing-field-sortable .wcf-field-item-handle .dashicons-hidden:before,.billing-field-sortable .wcf-field-item-handle .dashicons-visibility:before,.shipping-field-sortable .wcf-field-item-handle .dashicons-hidden:before,.shipping-field-sortable .wcf-field-item-handle .dashicons-visibility:before{cursor:pointer}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings{box-shadow:none;padding:15px;z-index:0}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item-title,.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings input{font-weight:400}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings table{margin:0}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings table th{padding:5px}.wcf-cfe-popup-content-wrapper{max-height:85%;overflow-y:auto;padding:0}.wcf-cfe-popup-content-wrapper .wcf-textarea-field textarea{border-color:#ddd;border-radius:2px;font-weight:400;height:60px;padding:4px 15px;width:300px}.wcf-cfe-popup-content-wrapper .wcf-cpf-row-header h3{border:0;margin:0;padding:15px}.wcf-cfe-popup-content-wrapper .wcf-cpf-row-header{margin:0}.wcf-cfe-popup-content-wrapper .wcf-select-option select{margin-left:0}.wcf-cfe-popup-content-wrapper table th{padding:5px 0}.wcf-cfe-popup-content-wrapper::-webkit-scrollbar{background-color:#eee;width:5px}.wcf-cfe-popup-content-wrapper::-webkit-scrollbar-thumb{background-color:#ccc;width:5px}.wcf-cfe-popup-content table{margin-bottom:0;padding:20px}.wcf-cfe-popup-content table th,.wcf-cfe-popup-content table tr:first-child th{margin:0;padding:5px 0}.wcf-cfe-popup-content .wcf-button{margin-top:15px}.wcf-custom-field-editor-title-section{position:relative}.wcf-custom-field-editor-buttons{bottom:20px;position:absolute;left:0}
90
- .wcf-field-item .wcf-field-item__bar{clear:both;cursor:move;line-height:1.5em;margin:9px 0 0;position:relative}.wcf-field-item .wcf-field-item__bar.wcf-field-item__disabled{border:1px dashed #999;opacity:.5}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle{word-wrap:break-word;background:#fff;border:1px solid #ececec;height:auto;line-height:normal;min-height:20px;overflow:hidden;padding:10px 15px;position:relative;width:auto}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-title{display:inline-block;font-size:13px;font-weight:600;line-height:20px;margin-right:15px;margin-left:13em}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-title span:not(.wcf-tooltip-text):nth-child(2){color:red}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-controls{display:inline-flex;float:left;font-size:12px;position:relative;left:0;top:-1px}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-controls .dashicons-arrow-down{cursor:pointer}.wcf-field-item .wcf-field-item__settings{background:hsla(0,0%,93%,.2);border:1px solid #ececec;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.039);padding:10px;position:relative;width:auto;z-index:10}.wcf-field-item .wcf-field-item__settings table{width:100%}.wcf-field-item .wcf-field-item__settings table th{padding:15px 0 15px 10px}.wcf-field-item .wcf-field-item__settings table .wcf-cfe-field-enable-field{display:none}.wcf-field-item .wcf-field-item__settings label{display:inline-block;font-weight:500;min-width:80px;padding-left:20px}.wcf-field-item .wcf-field-item__settings .wcf-cpf-actions{color:red;cursor:pointer;text-align:left}.wcf-billings-fields-section .wcf-field__data--label label,.wcf-shippings-fields-section .wcf-field__data--label label{width:190px}
91
- .wcf-cpf-row-header{border-bottom:1px solid #e5e5e5;display:flex;justify-content:space-between;margin-bottom:5px}.wcf-cfe-popup-overlay{background:rgba(0,0,0,.729);height:100%;right:0;position:fixed;text-align:right;top:0;width:100%;z-index:9999}.wcf-cfe-popup-content-wrapper{background:#fff;border-radius:3px;right:50%;padding:0;position:absolute;top:50%;transform:translate(50%,-50%);width:665px}.wcf-close-popup{text-align:left}.wcf-cfe-popup-content .wcf-template-logo-wrap{padding:15px 15px 15px 0}.wcf-cfe-popup-content table{margin-bottom:0;padding:20px;width:100%}.wcf-cfe-popup-content table th{padding:5px 0}.wcf-cfe-popup-content label{display:inline-block;font-weight:500;min-width:80px;padding-left:20px}.wcf-cfe-popup-content .wcf-button{margin-top:15px}.wcf-cfe-popup-content .wcf-select-option select{margin-left:0}
92
- .wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content{margin-bottom:70px}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content .wcf-custom-field-editor__title{border-bottom:1px solid #ddd;display:inline-block;padding-bottom:15px;width:100%}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content .wcf-custom-field-editor__title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px;width:50%}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form{margin-top:20px}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form table{width:100%}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form table tr .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;margin-bottom:15px;padding:10px;width:25%}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form .wcf-field.wcf-submit{margin-top:20px}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form .wcf-field.wcf-submit .wcf-checkout-custom-fields__button{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;border-left:1px solid #fff;padding:20px;width:10%}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:100%}}
93
- .wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-custom-field-editor__title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px;width:50%}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content table{width:100%}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content table tr .checkbox-title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;margin:20px 0;padding:10px;width:15%}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-optin-fields-section-section .wcf-custom-field-editor-title-section .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;margin-bottom:30px;padding:15px;width:50%}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-optin-fields-section-section .wcf-optin-fields .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;margin-top:15px;padding:15px;width:100%}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-field.wcf-submit{margin-top:20px}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-field.wcf-submit .wcf-optin-form-field__button{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;border-left:1px solid #fff;padding:20px;width:10%}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:100%}}
94
- .wcf-checkout-products .wcf-checkout-products--coupon,.wcf-checkout-products .wcf-checkout-products--options,.wcf-checkout-products .wcf-checkout-products--selection{margin:5px 0 15px}.wcf-checkout-products .wcf-product-options-section{margin-bottom:1.5em}.wcf-checkout-products .wcf-product-options__title{border-bottom:1px solid #ddd;display:inline-block;font-size:18px;font-weight:500;padding:35px 0 15px;width:100%}.wcf-checkout-products .wcf-product-options-notice__text{background:#f4f4f4;border:1px solid #f4f4f4;border-radius:2px;color:#444;font-size:13px;font-style:italic;font-weight:400;padding:12px 10px;width:310px}.wcf-checkout-products .wcf-checkout-product-selection-field{border:1px solid #dfdfdf;border-radius:3px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--product{width:35%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--quantity{width:20%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--discount{width:40%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--actions{width:5%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header{border-bottom:1px solid #dfdfdf;justify-content:left;padding:10px 20px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header .wcf-column--product{padding:0 20px 0 0}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product{align-items:center;border-bottom:1px solid #dfdfdf;cursor:grab;display:flex;padding:15px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product *{line-height:1.1}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__drag{margin-left:20px;width:2%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen{background:#f9f9fa;cursor:grab;transition:all .1s ease-in}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen.sortable-ghost{cursor:grabbing}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-data{align-items:center;width:35%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-image img{border:1px solid #f4f4f4;display:block;height:80px;margin:0 auto;width:80px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details *{font-size:11px;font-weight:500;line-height:1.1em;margin-bottom:5px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details .wcf-product-repeater-field__title{font-size:15px;margin-bottom:10px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__quantity input{margin-left:20px;width:150px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount .wcf-product-repeater-field__discount-type{width:auto}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount input,.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount select{margin-left:20px;width:150px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action{margin-right:auto}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action .wcf-remove-product-button:hover{color:var(--primary-color);cursor:pointer}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new{padding:20px}
95
- .wcf-list-options{color:#444;line-height:34px;padding:0;text-align:right}.wcf-list-options table{width:100%}.wcf-list-options table th{font-weight:400;padding:0 0 10px}.wcf-list-options label{font-weight:500}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{color:#444;font-size:15px;font-weight:500}.wcf-list-options .wcf-child-field:before{color:#ccc;content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);font-family:dashicons;font-weight:400;margin-left:.75em;position:relative;top:-6px;vertical-align:middle}
96
- .wcf-edit-step__title-wrap{align-items:center;display:flex;justify-content:space-between;margin:0;padding:0 15px 10px}.wcf-edit-step__title-wrap .wcf-steps-header--title{color:#363b4e;font-size:22px;font-weight:500;line-height:40px}.wcf-edit-step__title-wrap .wcf-steps-header__title--text{color:#444;font-size:22px;font-weight:500;line-height:40px}.wcf-edit-step__title-wrap .wcf-steps-header__title--text input{background:#fff;border-color:#aaa;color:#444;font-weight:400;height:40px;line-height:1;width:350px}.wcf-edit-step__title-wrap .wcf-steps-header__title--text input:focus{border-color:#777}.wcf-edit-step__title-wrap .wcf-step__title--editable{align-items:center;display:flex}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons a,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons button{margin-right:10px;text-decoration:none;vertical-align:middle}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-button--small{font-size:14px;font-weight:400;line-height:1;padding:9px 20px}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-button--small.wcf-saving{animation:wcf-saving 2.5s linear infinite;background-image:linear-gradient(45deg,#f06335 28%,#f78860 0,#f78860 72%,#f06335 0);background-size:100px 100%;opacity:1}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-visibility{vertical-align:unset}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:before,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-visibility:before{background:#fff;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-visibility:hover{color:#f16334}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view a,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view button{margin-right:15px}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view .wcf-steps-header__quick-view--button .dashicons-external{vertical-align:unset}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view .wcf-steps-header__quick-view--button .dashicons-external:before{background:#fff;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view .wcf-steps-header__quick-view--button .dashicons-external:hover{color:#f16334}.wcf-edit-step__title-wrap .wcf-steps-header--breadcrums .wcf-breadcrum--nav-item{color:#444;font-size:14px;font-weight:500}.wcf-edit-step__title-wrap .wcf-steps-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link{color:var(--primary-color);text-decoration:none}.wcf-edit-step__title-wrap .wcf-steps-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link:hover{color:var(--primary-hv-color)}
97
- .wcf-order-bump-page-wrapper{color:#444;text-align:right}.wcf-order-bump-page-wrapper table{width:100%}.wcf-order-bump-page-wrapper table th{font-weight:400;padding:0 0 15px}.wcf-order-bump-page-wrapper label{font-weight:500}.wcf-order-bump-page-wrapper p{font-size:15px;font-weight:400}.wcf-order-bump-page-wrapper .wcf-note-content{color:#444;font-size:15px;font-weight:500}.wcf-order-bump-page-wrapper .wcf_warning_notice{border-right:3px solid red;line-height:1.5;padding:10px}.wcf-order-bump-page-wrapper .wcf-order-bump-save-settings{margin-top:15px}
98
- .wcf-order-bump-product-tab.is-placeholder table label{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:15px;width:55%}.wcf-order-bump-product-tab.is-placeholder .wcf-order-bump-page-wrapper table th{padding:0 0 10px}.wcf-order-bump-product-tab.is-placeholder .wcf-order-bump-save-settings span{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:8px 70px}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:100%}}
99
- .wcf-order-bump-design-tab.is-placeholder label{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;display:inline-block;padding:15px;width:100%}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__settings table label{width:100%}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__settings .wcf-order-bump-page-wrapper table th{padding:0 0 10px}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__preview .wcf-bump-order-wrap{width:100%}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__preview .wcf-content-container{padding:55px 0}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-save-settings span{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:8px 70px}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:100%}}
100
- .wcf-order-bump-setting-tab.is-placeholder label{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;display:inline-block;padding:15px;width:100%}.wcf-order-bump-setting-tab.is-placeholder .wcf-field-one{width:20%}.wcf-order-bump-setting-tab.is-placeholder .wcf-field-two{width:50%}.wcf-order-bump-setting-tab.is-placeholder .wcf-order-bump-save-settings span{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(-90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:100%;padding:8px 70px}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:100%}}
101
- .wcf-order-bumps-rules-page .wcf-rules-rules--text{padding:10px 0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--or{display:flex;justify-content:space-between;padding:15px 0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rule .wcf-order-bumps-rule--select-box{display:flex}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rule .wcf-order-bumps-rule--select-box .wcf-skeleton{margin-left:20px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rule .wcf-order-bumps-rule__and{margin:7px 0}
102
- .wcf-order-bump-design-tab{display:flex}.wcf-order-bump-design-tab .wcf-order-bump-design-tab__preview,.wcf-order-bump-design-tab .wcf-order-bump-design-tab__settings{width:50%}.wcf-order-bump-design-tab .wcf-order-bump-design-tab__preview{margin:0 30px 0 0}.wcf-order-bump-design-tab .wcf-order-bump-design-tab__settings .wcf-field__data--label label{width:230px}.wcf-order-bump-design-tab table tr:first-child .wcf-field__data--label{padding:0 0 5px}
103
- .wcf-order-bump-preview-wrapper{transition:all .3s}.wcf-order-bump-preview-wrapper.sticky{position:sticky;top:120px}.wcf-order-bump-design-tab__preview--title{border-bottom:1px solid #ddd;margin-bottom:20px;padding:0 0 5px}.wcf-order-bump-design-tab__preview--title label{font-size:16px;font-weight:600}.wcf-bump-order-wrap{display:block;float:none;margin:1em auto;overflow:hidden}.wcf-bump-order-wrap .wcf-bump-order-field-wrap .wcf-pointing-arrow{margin-left:5px;transform:scaleX(1);vertical-align:middle}.wcf-bump-order-wrap .wcf-bump-order-desc{line-height:1.7}.wcf-bump-order-wrap .wcf-bump-order-desc p{margin:0 0 .6em;padding:0}.wcf-bump-order-wrap .wcf-bump-order-desc p:last-child{margin:0;padding:0}.wcf-bump-order-wrap .wcf-bump-order-desc li,.wcf-bump-order-wrap .wcf-bump-order-desc ul{list-style-position:inside;margin:0;padding:0}.wcf-bump-order-wrap h1,.wcf-bump-order-wrap h2,.wcf-bump-order-wrap h3,.wcf-bump-order-wrap h4,.wcf-bump-order-wrap h5,.wcf-bump-order-wrap h6{font-weight:500;line-height:1.3em;margin:0;padding:0}@keyframes wcf-blinker{0%{visibility:hidden}40%{visibility:hidden}}.wcf-blink{animation:wcf-blinker .8s linear infinite;animation-direction:alternate}.wcf-bump-order-style-5{background:#fef7f5;border-radius:3px;display:inline-block;overflow:unset;padding:15px;position:relative;width:100%}.wcf-bump-order-style-5 .wcf-bump-order-field-wrap{align-items:center;-js-display:flex;display:flex}.wcf-bump-order-style-5 .wcf-bump-order-label{color:#333;font-size:16px;font-weight:600;line-height:1}.wcf-bump-order-style-5 .wcf-bump-order-desc,.wcf-bump-order-style-5 .wcf-bump-order-label{margin:0 0 15px}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action{border:2px solid #dea97c;border-radius:3px;line-height:1.2;padding:8px 18px;vertical-align:middle;width:-moz-fit-content;width:fit-content}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action.wcf-ob-action-button{border:none;line-height:unset;padding:0}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]{border-radius:3px;color:#f16334;height:20px;margin:0 0 0 10px;width:20px}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]:checked:before{content:"";font:normal normal 400 21px/1 dashicons;right:1px;position:relative;top:2px;width:20px}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button{border:1px solid #ccc;border-radius:3px;color:#333;margin:0;padding:8px 20px;text-decoration:none;text-transform:none}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-processing{background:#fff;opacity:.7;pointer-events:none}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-bump-remove-from-cart:hover{background:#e43b2c;color:#fff}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button:hover{cursor:pointer}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button.processing{background:linear-gradient(-270deg,#fff 50%,#baf1ca 0) 0%;background-size:210%;border-color:#baf1ca;transition:.5s ease-out}.wcf-bump-order-style-5 .wcf-bump-order-info{align-items:center;display:flex}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-top{display:inline-block;text-align:center}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-top .wcf-bump-order-image{display:inline-block;margin:0 0 15px;max-width:100%;text-align:center}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-top .wcf-bump-order-action{display:inline-block}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right .wcf-bump-order-image{margin:0 15px 0 0}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right .wcf-bump-order-text{text-align:left}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right .wcf-bump-order-action{display:inline-block}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right{margin:0 15px 0 0}.wcf-bump-order-style-5 .wcf-bump-order-image{display:inline-flex;margin:0 0 0 15px;max-width:50%}.wcf-bump-order-style-5 .wcf-bump-order-image img{max-width:100%}.wcf-bump-order-style-4{background:#fff;border:1px dashed #f06434;border-radius:3px;display:inline-block;overflow:unset;padding:15px;position:relative;width:100%}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap{align-items:center;display:flex}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-info{flex:0 0 calc(100% - 100px);-webkit-flex:0 0 calc(100% - 115px)}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action{min-width:115px;text-align:left}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button{border:1px solid #ccc;border-radius:3px;color:#333;margin:0;padding:8px 20px;text-decoration:none;text-transform:none}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-processing{background:#fff;opacity:.7;pointer-events:none}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-bump-remove-from-cart:hover{background:#e43b2c;color:#fff}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button:hover{cursor:pointer}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button.processing{background:linear-gradient(-270deg,#fff 50%,#baf1ca 0) 0%;background-size:210%;border-color:#baf1ca;transition:.5s ease-out}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]{display:none}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]:checked:before{font:normal normal 400 20px/1 cartflows-icon;right:2px;position:relative;top:2px;width:20px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image{align-self:center;display:inline;-webkit-flex:0 0 100px;margin-left:25px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image img{vertical-align:middle;width:100px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label{color:#f06434;font-size:16px;font-weight:500;margin-bottom:5px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-text{align-items:center;justify-content:space-between;width:100%}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-desc{font-size:13px}.wcf-bump-order-style-4 .wcf-content-container{padding:25px 0}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{display:block;text-align:center}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-action{margin:10px 0 0;text-align:center}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:left}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-action{min-width:80px}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-text{margin:0 15px}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-image{margin:0 15px 0 0}.wcf-bump-order-style-3{background:transparent;border:2px solid #f06434;display:inline-block;overflow:unset;padding:15px;position:relative;width:100%}.wcf-bump-order-style-3 .wcf-bump-order-info{align-items:center;display:flex;max-width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content{padding:0}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap{align-items:center;display:flex}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action{align-self:center;max-width:75px;text-align:center;width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]{border-radius:3px;height:20px;margin:0 0 0 10px;width:20px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]:checked:before{color:#f16334;content:"";font:normal normal 400 21px/1 dashicons;height:20px;right:2px;position:relative;top:2px;width:20px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label input[type=checkbox]{border-radius:3px;height:20px;margin:0 0 0 10px;width:20px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label input[type=checkbox]:checked:before{color:#f16334;content:"";font:normal normal 400 21px/1 dashicons;height:20px;right:2px;position:relative;top:2px;width:20px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image{align-self:center;margin-left:10px;width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image img{height:80px;max-width:100%;vertical-align:middle;width:80px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label{font-size:16px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-text{align-self:center;margin-right:10px;max-width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-desc{font-size:13px;margin-top:10px}.wcf-bump-order-style-3 .wcf-content-container{padding:25px 0}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{display:block}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-action,.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-info,.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-text{display:block;text-align:center}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-image{max-width:100%;text-align:center}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-image img{height:auto;width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:left}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-label input[type=checkbox]{margin:0 10px 0 0}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-label .wcf-pointing-arrow{display:inline-block;margin:0 10px;transform:rotate(-180deg)}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-text{margin-left:10px}.wcf-bump-order-style-2{border:2px dashed red;border-radius:3px;display:inline-block}.wcf-bump-order-style-2 .wcf-bump-order-offer{font-size:1.1em;font-weight:600;padding:20px 25px}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-right{width:100%}.wcf-bump-order-style-2 .wcf-bump-order-desc{padding:0 25px 20px}.wcf-bump-order-style-2 .wcf-bump-order-field-wrap{border-top:2px dashed red;display:block;font-size:1.1em;margin:0;padding:15px 25px}.wcf-bump-order-style-2 .wcf-bump-order-field-wrap .wcf-bump-order-label{margin-right:1px}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-left{display:inline-block;vertical-align:middle;width:38%}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-left img{padding:0 20px 25px 0;width:100%}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{display:inline-block;vertical-align:middle;width:60%}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap,.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer{text-align:center}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left,.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-right{display:block;text-align:center;width:100%}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left img{padding:25px 25px 0}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap,.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer{text-align:left}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=checkbox],.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=radio]{margin-right:5px}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap .wcf-pointing-arrow{margin-top:-5px;transform:rotate(-180deg)}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-right{display:inline-block;text-align:left;vertical-align:middle;width:60%}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-left{display:inline-block;width:38%}.wcf-bump-order-style-2 .wcf-bump-order-field-wrap,.wcf-bump-order-style-2 .wcf-bump-order-field-wrap *{cursor:pointer}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-2 .wcf-bump-order-offer-content-left{width:14%}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-2 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{width:85%}.wcf-show-coupon-field-toggle{padding-top:1em}.wcf-bump-order-style-1{background:#f1f1f1;border:2px red;border-radius:3px;display:inline-block}.wcf-bump-order-style-1 .wcf-bump-order-offer{font-size:1.2em;padding:0 25px 10px}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{text-align:center}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left,.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-right{display:block;text-align:center;width:100%}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left img{padding:25px 25px 0}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:left}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=checkbox],.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=radio]{margin-right:5px}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap .wcf-pointing-arrow{margin-top:-5px;transform:rotate(-180deg)}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-right{display:inline-block;text-align:left;vertical-align:middle;width:60%}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-left{display:inline-block;width:38%}.wcf-bump-order-style-1 .wcf-content-container{padding:25px 0}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-right{width:100%}.wcf-bump-order-style-1 .wcf-bump-order-desc{padding:0 25px}.wcf-bump-order-style-1 .wcf-bump-order-field-wrap{background:#ddd;border:2px red;display:block;font-size:1.1em;margin:0;padding:20px 25px}.wcf-bump-order-style-1 .wcf-bump-order-field-wrap .wcf-bump-order-label{margin-right:1px}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-left{display:inline-block;vertical-align:middle;width:38%}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-left img{padding:0 20px 0 0}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{display:inline-block;vertical-align:middle;width:60%}.wcf-bump-order-style-1 .wcf-bump-order-field-wrap,.wcf-bump-order-style-1 .wcf-bump-order-field-wrap *{cursor:pointer}.wcf-embed-checkout-form .woocommerce #payment .wcf-bump-order-wrap input[type=checkbox]{margin:0 0 0 4px}.wcf-embed-checkout-form-two-column .wcf-bump-order-style-1.wcf-after-customer,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-2.wcf-after-customer,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-3.wcf-after-customer{float:right;width:calc(55% - 40px)}.wcf-embed-checkout-form-two-column .wcf-bump-order-style-1.wcf-after-order,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-2.wcf-after-order,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-3.wcf-after-order{margin:1em auto 0}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-1 .wcf-bump-order-offer-content-left{width:14%}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-1 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{width:85%}.wcf-bump-order-wrap .wcf-bump-order-offer-content-left img{max-width:100%;padding:25px}
104
  .wcf-order-bump-setting-tab table tr:first-child .wcf-field__data--label{padding:0 0 5px}
105
- .wcf-order-bump-content-tab{display:flex}.wcf-order-bump-content-tab .wcf-order-bump-content-tab__preview,.wcf-order-bump-content-tab .wcf-order-bump-content-tab__settings{width:50%}.wcf-order-bump-content-tab .wcf-order-bump-content-tab__preview{margin:0 30px 0 0}.wcf-order-bump-content-tab .wcf-order-bump-content-tab__settings .wcf-field__data--label label{width:230px}.wcf-order-bump-content-tab .wcf-number-field input[type=number]{padding-left:7px}.wcf-order-bump-content-tab table tr:first-child .wcf-field__data--label{padding:0 0 5px}
106
- .wcf-order-bumps-rules--group_rules{display:flex;margin-bottom:10px;position:relative}.wcf-order-bumps-rules--group_rules:first-child{margin-top:-17px;position:relative}.wcf-order-bumps-rules--group_rules:not(first-child){margin-top:10px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields{display:flex}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-conditional-field-text,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-conditional-field-text{align-self:center;margin-left:10px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-coupon-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-number-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-product-cat-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-product-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-select-option,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-select2-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-coupon-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-number-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-product-cat-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-product-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-select-option,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-select2-field{margin-left:18px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-order-bumps-rules--and_text,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-order-bumps-rules--and_text{align-self:center;margin:0 10px 0 20px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .and-close,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .and-close{align-self:center;cursor:pointer;font-size:18px;margin:5px 0 0 10px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .and-close:hover,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .and-close:hover{color:#2271b1}
107
- .wcf-order-bumps-rules-page .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-order-bumps-rules-page .sortable-chosen .wcf-order-bumps-rules--group{background:#fafafb;border:1px dashed #aaa}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--enable_option{margin-bottom:30px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--enable_option label{align-items:center;display:flex;justify-content:center}.wcf-order-bumps-rules-page div .wcf-order-bumps-rules-page--group_wrapper{cursor:grab}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group{background-color:#fafafa;border:1px dashed #fafafa;padding:20px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group select{margin:0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf__control{border:1px solid #bebebe;width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf__value-container{line-height:16px;max-height:36px;overflow-y:auto;scroll-behavior:smooth}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf__value-container .wcf__multi-value{margin:5px 3px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--add-rule__repeater{display:flex;margin-top:-10px;position:relative}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--add-rule__repeater .wcf-button--secondary:hover{background-color:#fff;border:1px solid #2271b1;color:#2271b1}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper{display:inline-block;margin:50px 0 45px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-selection-field .wcf-select2-input{width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-select-option select{border:1px solid #bebebe;height:38px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-select-option:nth-child(3) select{width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-field__data--content input{border:1px solid #bebebe;width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label{align-items:center;display:flex;margin-right:10px;position:relative}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group{background-color:#fafafa;border:1px solid #ddd;border-radius:2px;display:flex;margin-left:17px;position:relative}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group:after,.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group:before{background-color:#bebebe;content:"";height:11px;position:absolute;width:1px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group:before{bottom:28px;right:20px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group:after{left:23px;top:28px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group .wcf--condition-label__and_group__text{color:#555;font-size:12px;font-weight:500;padding:5px 10px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header,.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-order-bumps-rules--group_header__left{align-items:center;display:flex;justify-content:space-between}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-order-bumps-rules--group_header__left .wcf-group-header--text{color:#444;font-size:14px;font-weight:500}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-order-bumps-rules--group_header__left .wcf-order-bumps-rules__handle{cursor:move;font-size:20px;margin-left:10px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-checkout-rules--group_header__right .dashicons{cursor:pointer;font-size:30px;line-height:.6;margin-right:10px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-checkout-rules--group_header__right .wcf-order-bumps-rules--group_id{color:#a3a2a2;font-size:10px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--group_wrapper__footer{display:flex;justify-content:space-between;margin:20px 0;position:relative;width:100%}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--group_wrapper__footer .wcf-button--secondary:hover{background-color:#fff;border:1px solid #2271b1;color:#2271b1}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group_rules:last-child{margin-bottom:0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--or_group{background-color:#fafafa;border:1px solid #ddd;border-radius:2px;color:#555;font-size:14px;font-weight:500;letter-spacing:.5px;margin:auto 0;padding:5px 15px}
108
- .wcf-edit-ob__title-wrap{align-items:center;display:flex;justify-content:space-between;margin:0;padding:0 15px 10px}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap{display:flex}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status{align-self:center;display:flex;margin-right:18px;position:relative}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch{border:1px solid #ccc;border-radius:30px;box-shadow:inset 0 0 0 0 transparent;box-sizing:border-box;cursor:pointer;display:block;height:18px;position:relative;text-indent:-999em;transition:all .3s ease;width:36px}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch:focus{outline:none}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch:before{background:#fff;border-radius:50%;box-shadow:0 1px 3px rgba(0,0,0,.3);content:"";display:block;height:12px;right:4px;position:absolute;top:2px;transition:all .15s ease;width:12px}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch[data-wcf-order-bump-switch=true]{border-color:var(--primary-border-color);box-shadow:inset 0 0 0 11px var(--primary-border-color)}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch[data-wcf-order-bump-switch=true]:before{transform:translateX(-16px)}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch[data-wcf-order-bump-switch=false]{background:#ccc}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-spinner{animation:spin 2s linear infinite;color:#434343;float:none;right:45px;margin:0;position:absolute;left:0}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}.wcf-edit-ob__title-wrap .wcf-ob-header--title{color:#363b4e;font-size:22px;font-weight:500;line-height:40px}.wcf-edit-ob__title-wrap .wcf-ob-header__title--text{color:#444;font-size:22px;font-weight:500;line-height:40px}.wcf-edit-ob__title-wrap .wcf-ob-header__title--text input{background:#fff;border-color:#aaa;color:#444;font-weight:400;height:40px;line-height:1;width:350px}.wcf-edit-ob__title-wrap .wcf-ob-header__title--text input:focus{border-color:#777}.wcf-edit-ob__title-wrap .wcf-ob__title--editable{align-items:center;display:flex}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons{display:inline;vertical-align:middle}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons a,.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons button{margin-right:10px;text-decoration:none;vertical-align:middle}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-button--small{font-size:14px;font-weight:400;line-height:1;padding:9px 20px}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-button--small.wcf-saving{animation:wcf-saving 2.5s linear infinite;background-image:linear-gradient(45deg,#f06335 28%,#f78860 0,#f78860 72%,#f06335 0);background-size:100px 100%;opacity:1}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-ob-header__title--edit .dashicons-edit{vertical-align:unset}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-ob-header__title--edit .dashicons-edit:before{background:#fff;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-ob-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-edit-ob__title-wrap .wcf-ob-header--breadcrums .wcf-breadcrum--nav-item{color:#444;font-size:14px;font-weight:500}.wcf-edit-ob__title-wrap .wcf-ob-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link{color:var(--primary-color);text-decoration:none}.wcf-edit-ob__title-wrap .wcf-ob-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link:hover{color:var(--primary-hv-color)}
1
+ :root{--primary-color: #f06434;--primary-hv-color: #ee4710;--primary-border-color: #f06434;--secondary-color: #f5f6f7;--secondary-border-color: #ddd;--secondary-hv-color: #edeff1}.wcf-hide{display:none !important}.wcf-button{border-width:1px;border-style:solid;border-radius:2px;text-decoration:none;text-shadow:none;font-size:14px;min-height:36px;line-height:1.5;padding:7px 18px;display:inline;display:inline-block;vertical-align:middle;align-items:center;cursor:pointer;margin:0;font-weight:400;box-sizing:border-box}.wcf-button--small{min-height:26px;padding:0 8px;font-size:11px;border-width:1px;border-style:solid;border-radius:2px;text-decoration:none;text-shadow:none;line-height:2;display:inline-block;vertical-align:middle;align-items:center;cursor:pointer;margin:0}.wcf-button--primary{background:var(--primary-color);border-color:var(--primary-border-color);color:#fff}.wcf-button--primary:focus,.wcf-button--primary:hover{background:var(--primary-hv-color);border-color:var(--primary-border-color);color:#fff;box-shadow:none;outline:none}.wcf-button--secondary{background:var(--secondary-color);border-color:var(--secondary-border-color);color:#3a3a3a}.wcf-button--secondary:focus,.wcf-button--secondary:hover{background:var(--secondary-hv-color);border-color:var(--secondary-border-color);color:#3a3a3a;box-shadow:none}.wcf-popup-header-title{display:flex;align-items:center;font-size:15px;font-weight:500;color:#444;letter-spacing:0;text-transform:none;text-decoration:none}.wcf-popup-header-title .cartflows-logo-icon{padding:15px}.wcf-popup-header-action{display:inline-block;display:flex;align-items:center;padding:15px;border-right:1px solid #ddd;position:relative;color:#ccc;cursor:pointer}.wcf-popup-header-action .dashicons{line-height:1}.wcf-popup-header-action::after{font-size:25px}.wcf-popup-header-action:hover{color:#aaa}.wcf-message,.wcf-error-message--toggle,.wcf-error--info{padding:5px;display:block;font-size:12px}.wcf-message--error{color:var(--primary-color)}.wcf-error-message--toggle{cursor:pointer}.wcf-error--info{background-color:#f2f2f2;border-radius:3px;padding:10px;border:1px #ccc dashed}
2
+ .wcf-global-nav-menu{margin:0;padding:2px 20px 0 20px;display:flex;background:#fff;align-items:center;border-bottom:1px solid #ddd;box-shadow:none;border-radius:2px 2px 0 0}.wcf-global-nav-menu .wcf-title{max-width:170px}.wcf-global-nav-menu .wcf-title .wcf-logo{width:120px}.wcf-global-nav-menu .wcf-global-nav__items{display:flex;align-items:center}.wcf-global-nav-menu .wcf-global-nav-menu__tab{background:rgba(0,0,0,0);border:none;color:#444;cursor:pointer;padding:25px 30px 23px 30px;font-size:14px;line-height:1;letter-spacing:.225px;font-weight:400;margin:0 0 -1px 0;max-width:100%;text-align:center;text-decoration:none;outline:none;box-shadow:none;border-bottom:2px solid #fff}.wcf-global-nav-menu .wcf-global-nav-menu__tab:hover{color:#f06335;border-bottom:2px solid #f06335}.wcf-global-nav-menu .wcf-global-nav-menu__tab.wcf-global-nav-menu__tab--active{background:none;color:#f06335;border-bottom:2px solid #f06335}@media only screen and (max-width: 1200px){.wcf-global-nav-menu .wcf-global-nav-menu__tab.wcf-global-nav-menu__tab{padding:23px 20px}}.wcf-menu-page-content{margin:0 auto;width:100%;font-size:14px;font-weight:400}.wcf-global-nav-menu .wcf-title{max-width:140px;border-left:1px solid #ddd;display:flex;align-items:center}.wcf-global-nav-menu{position:fixed;width:calc(100% - 160px);right:160px;top:32px;z-index:10}
3
+ .wcf-editor-app .wcf-settings{margin:0}.wcf-editor-app .wcf-steps-page-wrapper{padding:30px;border-top:1px solid #ededed;margin-top:-1px}
4
+ .wcf-edit-flow--nav{border-bottom:1px solid #ededed;padding:0;display:flex;background:#fff;box-shadow:none;margin:0}.wcf-edit-flow--nav .wcf-steps-header--actions{position:relative;margin-right:auto;padding-left:30px;line-height:1;display:flex;align-items:center}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-actions-menu__dropdown .wcf-step__action-btn{cursor:pointer;display:flex;align-items:center}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-actions-menu__dropdown .wcf-step__action-btn .dashicons{margin-left:5px}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-steps-header--label{color:#444;font-weight:400;margin-left:15px;font-size:15px;line-height:1}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-flow__action-menu{color:#aaa;cursor:pointer;display:inline-block;width:13px}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-flow__action-menu:hover{color:#333}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-flow__action-menu .dashicons-ellipsis{transform:rotate(-90deg)}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf_store_checkout__status{display:flex;position:relative;margin-left:10px}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf_store_checkout__status .wcf-spinner{float:none;margin:0;animation:spin 2s linear infinite;color:#434343}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(-360deg)}}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-ob-status{align-self:center}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-switch{cursor:pointer;text-indent:-999em;display:block;width:38px;height:22px;border-radius:30px;border:none;position:relative;box-sizing:border-box;transition:all .3s ease;box-shadow:inset 0 0 0 0 rgba(0,0,0,0)}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-switch:focus{outline:none}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-switch::before{border-radius:50%;background:#fff;content:"";position:absolute;display:block;width:18px;height:18px;top:2px;right:2px;transition:all .15s ease;box-shadow:0 1px 3px rgba(0,0,0,.3)}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-switch[data-wcf-order-bump-switch=true]{box-shadow:inset 0 0 0 12px var(--primary-border-color)}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-switch[data-wcf-order-bump-switch=true]::before{transform:translateX(-16px)}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-switch[data-wcf-order-bump-switch=false]{background:#ccc}.wcf-edit-flow--nav a.wcf-edit-flow--nav__back-to-flow{padding:18px 18px 18px 25px;text-decoration:none}.wcf-edit-flow--nav a.wcf-edit-flow--nav__back-to-flow:hover{background:#fafafa}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button{background:rgba(0,0,0,0);cursor:pointer;border:none;line-height:1}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button .dashicons{color:#444;font-size:15px;height:-moz-fit-content;height:fit-content;width:-moz-fit-content;width:fit-content;margin-left:8px}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button .wcf-back-button{font-size:15px;color:#444}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow:focus,.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-flow--nav__tab{background:rgba(0,0,0,0);border:1px solid #fff;border-top:0;border-bottom:1px solid #ededed;color:#434343;cursor:pointer;padding:18px 25px;font-size:15px;line-height:1;font-weight:300;margin-bottom:-1px;max-width:100%;text-align:center;text-decoration:none;outline:none;box-shadow:none}.wcf-edit-flow--nav__tab:hover{background:#f8f8f9;border:1px solid #f8f8f9;border-top:0;color:#444}.wcf-edit-flow--nav__tab:first-child{border-right:0}.wcf-edit-flow--nav__tab:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-flow--nav__tab--active{background:#fff;color:#444;font-weight:300;border:1px solid #ededed;border-bottom:1px solid #fff;border-top:0}.wcf-edit-flow--nav__tab--active:hover{background:#fff;color:#444;font-weight:300;border:1px solid #ededed;border-bottom:1px solid #fff;border-top:0;box-shadow:none}.wcf-edit-flow--nav__tab--active:first-child{border-right:0}.wcf-edit-step--nav__back-to-flow:focus,.wcf-edit-step--nav__back-to-flow--button:focus,.wcf-edit-step--nav__tab:focus,.wcf-edit-flow--nav__tab:focus{box-shadow:none;color:#444;outline:none}
5
+ .wcf-steps-page-wrapper{padding:30px;border-top:1px solid #ededed;margin-top:-1px}.wcf-steps-page-wrapper .wcf-list-steps{margin-bottom:15px}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step{border:1px dashed #cdcdcd;background:#f9f9f9;color:#444;padding:20px;text-align:center;display:block;width:100%;transition:all 100ms ease-in;font-weight:400}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover{background:rgba(0,0,0,0);border-color:#aaa;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover .dashicons-plus::before{background:rgba(0,0,0,0);color:#016087}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step:hover .wcf-create-step--text{border-color:#006799;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step--text{line-height:1;margin-right:7px;font-size:17px;background:rgba(0,0,0,0)}.wcf-no-step-notice{padding:20px 0 40px;font-size:15px;color:#444;font-weight:400}
6
+ .wcf-steps-header{display:flex;flex-flow:row;align-items:center;justify-content:space-between;margin:0 0 25px 0}.wcf-steps-header .wcf-steps-header--title{font-size:20px;line-height:40px;color:#444;font-weight:500}.wcf-steps-header .wcf-step__title--editable .new-flow-title{background:#fafafa;border-color:#ccc;padding:2px 15px;line-height:2}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit::before{padding:5px;font-size:18px;text-decoration:none;background:#eee;display:inline-block;border-radius:100%}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a{text-decoration:none;vertical-align:middle;margin-right:10px}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:focus,.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:hover{outline:none;box-shadow:none}.wcf-steps-header .wcf-create-step{display:flex;align-items:center;justify-content:space-between}.wcf-steps-header .wcf-create-step .dashicons{height:-moz-fit-content;height:fit-content;width:-moz-fit-content;width:fit-content;font-size:15px;margin-left:10px}
7
  .wcf-step-wrap{margin-bottom:20px}.invalid-step{pointer-events:none}.invalid-step .wcf-step .wcf-step__col-tags .wcf-flow-badge{color:red}
8
+ .wcf-list-steps .sortable-chosen{background:#fafafb}.wcf-list-steps .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-list-steps .sortable-chosen .wcf-step{border:1px dashed #aaa;background:#fafafb;border-right:4px solid #ddd}.wcf-list-steps .wcf-step{background:#fff;border:1px solid #ddd;border-radius:2px;border-right-width:4px;box-sizing:border-box;box-shadow:none;padding:20px;display:flex;justify-content:space-between;align-items:center;position:relative;cursor:grab}.wcf-list-steps .wcf-step.wcf-step__no-product{border-right:4px solid #f06335}.wcf-list-steps .wcf-step .wcf-step__title a{text-decoration:none}.wcf-list-steps .wcf-step .wcf-step__actions .wcf-step__basic-action-btns .dashicons,.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown .dashicons{margin-left:5px;font-size:18px;vertical-align:middle}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown a{padding:15px;background:#fff;text-align:right;text-decoration:none;display:block;border-top:1px solid rgba(230,230,230,.5);height:auto;color:#666;font-size:14px;transition:all linear 200ms}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown a:hover{background:#fafafa;color:#1e8cbe}.wcf-list-steps .wcf-step .wcf-loader{display:flex;justify-content:center;align-items:center;position:absolute;right:45%}.wcf-list-steps .wcf-step .wcf-dot-loader{height:20px;width:20px;border-radius:50%;background-color:#f06335;position:relative;animation:1.2s grow ease-in-out infinite}.wcf-list-steps .wcf-step .wcf-dot-loader--2{animation:1.2s grow ease-in-out infinite .15555s;margin:0 10px}.wcf-list-steps .wcf-step .wcf-dot-loader--3{animation:1.2s grow ease-in-out infinite .3s}@keyframes grow{0%,40%,100%{transform:scale(0)}40%{transform:scale(1)}}.wcf-list-steps .step-overlay :not(.wcf-loader){opacity:.1}.wcf-list-steps .wcf-step-wrap.sortable-chosen.sortable-ghost .wcf-step{cursor:grabbing}.wcf-step__col-title{width:50%}.wcf-step__title-text{margin-right:10px}.wcf-step__handle{cursor:move}.wcf-step__invalid-step{touch-action:none;pointer-events:none}.wcf-global-checkout-error-badge{color:#fff;background-color:#d54e21;padding:.3em .6em .3em;border-radius:0;line-height:.7em;margin-right:10px;text-align:center;vertical-align:middle;font-size:.75em;font-weight:400}.wcf-flow-badge__invalid-step{color:red}.wcf-no-product-badge{color:#fff;background-color:#f16334;padding:.3em .6em .3em;border-radius:0;line-height:.7em;margin-right:10px;text-align:center;vertical-align:middle;font-size:.75em;font-weight:400}.wcf-global-checkout-badge{color:#fff;background-color:#0072a7;padding:.3em .6em .3em;font-size:.7em;font-weight:600;border-radius:0;line-height:.7em;margin-right:10px;text-align:center;vertical-align:middle}.wcf-step__action-btns{display:flex;align-items:center}.wcf-step__action-btns .wcf-step__action-btn{font-size:1em;line-height:.9em;vertical-align:middle;text-align:center;margin-left:15px;text-decoration:none}.wcf-step__action-btns .wcf-step__action-btn.wcf-pro{opacity:.65;cursor:not-allowed}.wcf-step__action-btns .wcf-step__action-menu{position:relative;color:#aaa;cursor:pointer;display:inline-block;top:4px;width:13px}.wcf-step__action-btns .wcf-step__action-menu:hover{color:#333}.wcf-step__action-btns .wcf-step__action-menu .dashicons-ellipsis{font-size:18px;transform:rotate(-90deg);vertical-align:super}.wcf-step-badge,.wcf-flow-badge{font-weight:400;color:#000;background-color:#e3e4e8;padding:.3em .6em .3em;font-size:.75em;border-radius:0;line-height:.7em;margin-right:10px;text-align:center;vertical-align:middle;text-transform:capitalize}.wcf-invalid-sequence-badge{color:#fff;background-color:#d54e21;border-color:#d6e9c6}.wcf-yes-next-badge{color:#3c763d;background-color:#dff0d8}.wcf-no-next-badge{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.wcf-step__col-tags .wcf-flow-badge{margin-right:0;width:75px;display:inline-block;padding:8px 0;font-weight:500;color:#000;background-color:#e3e4e8;font-size:.9em;border-radius:2px;line-height:.7em;border:1px solid rgba(67,67,67,.0666666667);text-align:center;vertical-align:middle;text-transform:capitalize}.wcf-step__col-tags .wcf-step-badge,.wcf-step__col-tags .wcf-flow-badge{margin-right:0}.wcf-step:hover{border-color:#e4e4e4;box-shadow:0 1px 4px 0 rgba(32,33,36,.15)}
9
+ .wcf-actions-menu__dropdown{position:absolute;visibility:hidden;opacity:0;background:#fafafa;border-top:1px solid rgba(230,230,230,.5);box-shadow:0 2px 6px rgba(0,0,0,.15);left:-1px;width:175px;z-index:1;border-radius:3px}.wcf-actions-menu__dropdown a{padding:9px 12px;background:#fafafa;text-align:right;text-decoration:none;display:block;border-top:1px solid rgba(230,230,230,.5);height:auto;color:#666;font-size:13px;transition:all linear 200ms}.wcf-actions-menu__dropdown a:hover{background:#f2f2f2;color:#1e8cbe}.wcf-actions-menu__dropdown a:first-child{border:none}.wcf-actions-menu__dropdown::after{background:#fafafa;height:14px;transform:rotate(-45deg);width:14px;content:"";position:absolute;left:19px;z-index:-7;border:none;box-shadow:2px -1px 3px rgba(0,0,0,.07)}.wcf-actions-menu__dropdown.wcf-edit-show{visibility:visible;opacity:1}.wcf-actions-menu__dropdown.wcf-edit-above{left:10px;top:10px;transform:translate(0, -100%)}.wcf-actions-menu__dropdown.wcf-edit-above::after{bottom:-7px}.wcf-actions-menu__dropdown.wcf-edit-below{left:10px;bottom:5px;transform:translate(0, 100%)}.wcf-actions-menu__dropdown.wcf-edit-below::after{top:-7px}.wcf-actions-menu__dropdown .wcf-pro{cursor:not-allowed;opacity:.65}
10
+ .wcf-ab-test{padding:20px;background:#fff;border:1px solid #ddd;border-right-width:4px}.wcf-ab-test:hover{border-color:#e4e4e4;box-shadow:0 1px 4px 0 rgba(32,33,36,.15)}.wcf-ab-test .wcf-step{margin-bottom:15px;background:#fafafb;border:1px solid #ddd;cursor:move}.wcf-ab-test .wcf-step .wcf-step__col-title .wcf-step__handle{display:none}.wcf-ab-test .wcf-step:hover{border-color:#ddd;box-shadow:none}.wcf-ab-test .wcf-step__handle{margin-left:10px}.wcf-ab-test.sortable-chosen{background:#fafafb;border:1px dashed #ddd;border-right-width:4px;border-right-style:solid;cursor:move}.wcf-ab-test.sortable-chosen .wcf-step{border:1px solid #aaa}.wcf-ab-test .wcf-abtest-control-badge{background:#f16334;color:#fff}.wcf-ab-test .wcf-abtest-variation-badge{background:#1e8cbe;color:#fff}.wcf-ab-test .wcf-archived-step .wcf-archived-steps:last-child{margin-bottom:0}.wcf-ab-test .wcf-archived-step .wcf-step__title{display:inline}.wcf-ab-test-head{display:flex;justify-content:space-between;align-items:center;margin:0 0 20px}.wcf-ab-test-head .wcf-steps-action-buttons .wcf-stop-split-test,.wcf-ab-test-head .wcf-steps-action-buttons .wcf-start-split-test,.wcf-ab-test-head .wcf-steps-action-buttons .dashicons-admin-generic{margin-right:10px;text-decoration:none;color:#444}.wcf-ab-test-head .wcf-steps-action-buttons .wcf-stop-split-test.is-loading,.wcf-ab-test-head .wcf-steps-action-buttons .wcf-start-split-test.is-loading,.wcf-ab-test-head .wcf-steps-action-buttons .dashicons-admin-generic.is-loading{animation:spin 4s linear infinite}.wcf-ab-test-head .wcf-steps-action-buttons .wcf-stop-split-test{color:var(--primary-color)}.wcf-ab-test-head .wcf-steps-action-buttons .wcf-start-split-test{color:green}.wcf-ab-test-head .wcf-steps-action-buttons:hover .wcf-stop-split-test,.wcf-ab-test-head .wcf-steps-action-buttons:hover .dashicons-admin-generic{color:#006799}@keyframes spin{100%{transform:rotate(-360deg)}}
11
+ .wcf-ab-test-settings-popup-overlay{position:fixed;text-align:right;background:rgba(0,0,0,.7294117647);z-index:9999;width:100%;height:100%;right:0;top:0}.wcf-ab-test-popup-content{width:510px;background:#fff;border-radius:2px;right:50%;top:50%;position:absolute;transform:translate(50%, -50%);z-index:100}.wcf-ab-test-settings-popup-overlay .wcf-popup-title-wrap{font-size:14px;font-weight:600;padding-right:8px}.wcf-content-wrap{padding:25px;background:#fff;border-radius:0 0 2px 2px}.wcf-ab-settings-header .wcf-cartflows-title{font-weight:500;font-size:16px}.wcf-ab-settings-content .wcf-ab-settings-content__title{font-weight:500;width:100%;display:inline-block;font-size:15px;margin-bottom:15px}.wcf-ab-settings-header{display:flex;justify-content:space-between;padding:15px;box-shadow:0 0 8px rgba(0,0,0,.2);border-bottom:1px solid rgba(0,0,0,.1)}.wcf-ab-settings-header .close-icon .wcf-cartflow-icons{position:relative;color:#ccc;cursor:pointer;display:inline-block}.wcf-ab-settings-header .close-icon .wcf-cartflow-icons:hover{color:#aaa}.wcf-ab-settings-footer{display:flex;justify-content:flex-end;padding:10px 35px 0}.wcf-ab-test-save.button-primary.updating-message::before{color:#fff;margin:7px -4px 0 5px;font-size:18px}.wcf-popup-actions-wrap .button.wcf-ab-test-cancel{display:none}.wcf-popup-actions-wrap .button.wcf-ab-test-save{padding:3px 25px}.wcf-traffic-field{display:flex;align-items:center;margin-bottom:15px}.wcf-traffic-field .wcf-step-name{width:160px;margin-left:15px;line-height:1.8}.wcf-traffic-field .wcf-traffic-slider-wrap{display:flex;align-items:center;width:300px}.wcf-traffic-field .wcf-traffic-range{width:190px}.wcf-traffic-field .wcf-traffic-range input{width:150px;height:-moz-fit-content;height:fit-content}.wcf-traffic-field .wcf-traffic-value{width:90px;display:flex;align-items:center}.wcf-traffic-value .wcf-text-field input{height:unset;padding:0 8px 0 0}.wcf-traffic-value input{width:65px}.wcf-traffic-value input::after{position:absolute;content:"%";font-size:10px;color:#b6c3cf;right:43px;top:10px}.wcf-traffic-value .wcf-field__data--content{margin-left:10px}.wcf-traffic-input-field{margin-right:1px !important;width:65px !important}.wcf-traffic-value{display:flex}.cartflows-logo-icon{font-size:18px}
12
+ .wcf-field__desc{margin-top:10px;font-style:italic;font-weight:400;color:#666;line-height:1.5}.wcf-tooltip-icon{display:inline-block;margin-right:5px;vertical-align:middle}
13
  .wcf-checkbox-field label{margin-left:10px}.wcf-checkbox-field input[type=checkbox]{margin:0 0 0 7px}
14
+ .wcf-radio-field .wcf-field__data{display:block}.wcf-radio-field .wcf-field__data--label{padding:0 0 10px}.wcf-radio-field input[type=radio]{margin:0 0 0 7px}.wcf-radio-field .wcf-radio-field__option-desc{color:#777;line-height:1.5;margin-top:10px;font-style:italic;font-weight:400}.wcf-radio-field .wcf-radio-field__option.wcf-child-field{margin-right:15px}
15
+ .wcf-select-option select{font-weight:400;max-width:100%;margin:0 0 0 15px;height:36px;padding:4px 15px;border:1px solid #ddd;border-radius:2px;width:300px;background-size:15px;background-position:left 10px top 55%}.wcf-select-option select:focus{box-shadow:none;border-color:#aaa;color:#444}.wcf-select-option select:hover{color:#444}.wcf-select-option .wcf-field__data--content__after{margin-right:10px;font-weight:500;font-size:14px;color:#444}
16
+ .wcf-text-field input{font-weight:400;max-width:100%;margin:0;width:300px;height:36px;background:#fff;border-color:#ddd;padding:4px 15px;border-radius:2px}.wcf-text-field input:focus{box-shadow:none;border-color:#aaa}.wcf-text-field input.readonly,.wcf-text-field input[readonly]{background-color:#eee !important}.wcf-field__data{display:flex;align-items:center}
17
+ .wcf-textarea-field label{vertical-align:top}.wcf-textarea-field textarea{margin:0;border-color:#ddd}.wcf-textarea-field .wcf-field__data{align-items:flex-start}.wcf-textarea-field .wcf-field__data--label{padding:8px 0 0}
18
+ .wcf-button-style{background:#fff;border-radius:3px;text-shadow:none;text-decoration:none;border:1px solid #f06335;cursor:pointer;display:inline-block;font-size:15px;font-weight:400;padding:6px 20px;text-align:center;text-transform:uppercase;vertical-align:middle;transition:all 100ms linear}.wcf-btn-primary{background:#f06335;color:#fff;transition:all linear 250ms}.wcf-btn-primary:active,.wcf-btn-primary:focus,.wcf-btn-primary:hover{color:#fff;background:#f06335}.wcf-btn-primary:active,.wcf-btn-primary:focus,.wcf-button-style:hover{outline:0;text-decoration:none;box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23)}@keyframes wcf-saving{0%{background-position:200px 0}}.wcf-submit-field .wcf-success-notice{max-width:300px;display:inline-block;margin:0}.wcf-submit-field .dashicons{vertical-align:middle}.wcf-submit-field .wcf-success-message{font-weight:400;font-size:14px}.wcf-submit-field .wcf-saving{animation:wcf-saving 2.5s linear infinite;opacity:1;background-size:100px 100%;background-image:linear-gradient(45deg, #f06335 28%, #f78860 0, #f78860 72%, #f06335 0)}
19
+ .wcf-selection-field{display:flex;align-items:center}.wcf-selection-field .wcf-select2-input .wcf__control{cursor:pointer}.wcf-selection-field .wcf__value-container .css-1g6gooi,.wcf-selection-field .wcf__value-container div:last-child{margin:0;padding:0;color:#444}.wcf-selection-field .wcf__value-container .css-1g6gooi input:focus,.wcf-selection-field .wcf__value-container div:last-child input:focus{box-shadow:none}.wcf-selection-field .wcf__control .css-1hwfws3m,.wcf-selection-field .wcf__value-container{min-height:36px;font-weight:400;color:#444}.wcf-selection-field .wcf-select2-input{border-color:#ddd;border-radius:2px;width:300px}.wcf-selection-field .wcf-select2-input .wcf__menu{font-weight:400;line-height:1.1;border-radius:2px;color:#555;background-color:#fff}.wcf-selection-field .wcf-select2-input .wcf__menu .wcf__menu-list{max-height:200px}.wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:active,.wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:hover{background-color:#f1f1f1;cursor:pointer;color:#444}.wcf-selection-field .wcf-select2-input .wcf__option--is-focused,.wcf-selection-field .wcf-select2-input .wcf__option--is-selected{cursor:pointer;background-color:#f1f1f1;color:#444}.wcf-selection-field .wcf__control{border-color:#ddd;border-radius:2px;width:300px}.wcf-selection-field .wcf__value-container,.wcf-selection-field .wcf__control .wcf__value-container--has-value,.wcf-selection-field .wcf__control .wcf__value-container--has-value .wcf__single-value{color:#444}.wcf-selection-field .wcf__control:hover,.wcf-selection-field .wcf__control:active,.wcf-selection-field .wcf__control.wcf__control--is-focused{border-color:#aaa;box-shadow:none}.css-2b097c-container{display:inline;margin:0 30px 0 0;width:450px}.wcf-selection-field label{display:inline-block}
20
+ .wcf-product-repeater-field__product{display:flex}.wcf-product-repeater-field__product button{padding:7px;text-align:center}.wcf-repeater-dashicon{margin:7px 0 0 15px}.wcf-product-repeater-field__options{padding:10px 35px 10px 0;display:flex}.wcf-product-repeater-field{padding:10px 0 30px}.wcf-checkout-product-selection-field__add-new .button{margin:10px}.wcf-add-new-product{margin-left:15px}.wcf-create-woo-iframe-opened{overflow:hidden}.wcf-create-woo-product-overlay{position:fixed;height:100%;width:100%;top:0;right:0;background:rgba(0,0,0,.7294117647);visibility:hidden;opacity:0;z-index:9999;-webkit-user-select:none;user-select:none;transition:none}.wcf-create-woo-product-overlay.open{visibility:visible;opacity:1;z-index:999999}.wcf-create-woo-product-wrap{max-width:100%;background-color:rgba(0,0,0,0);position:relative;border-radius:3px;top:50%;margin:0 auto;-ms-transform:translate(50%, -35%);width:90%;min-height:85%;max-height:85%;height:85%;transform:translateY(-50%);z-index:99999}.wcf-create-woo-product-wrap:not(.product-loaded)::before{content:"";position:absolute;background:none !important;top:50%;margin:0 auto;text-align:center;color:#fff;right:50%;width:48px;height:48px;display:block;border:3px solid #fff;border-radius:50%;border-left-color:rgba(0,0,0,0);border-right-color:rgba(0,0,0,0);animation:wcf-admin-loader 575ms infinite linear}.wcf-woo-product-iframe{max-width:100%;width:100%;min-height:100%;height:100%;background:#fff}.wcf-close-create-woo-product{background:#fff;border:1px #fff solid;border-radius:50%;color:#000;height:25px;position:fixed;width:25px;top:-10px;right:auto;z-index:100000;cursor:pointer;left:-10px;font-size:20px;line-height:1.3;text-align:center}.wcf-close-create-woo-product::before{content:"";font-family:dashicons}#wcf-create-woo-product iframe.wcf-create-woo-product-iframe #wpadminbar,#wcf-create-woo-product iframe.wcf-create-woo-product-iframe #adminmenumain{display:none}.wcf-checkout-product-selection-field__header{display:flex;justify-content:space-between}.wcf-product-repeater-field__product-image img{width:55px}.wcf-product-repeater-field__product-data{display:flex}.wcf-product-repeater-field__product-details{width:250px;padding-right:20px}.wcf-product-repeater-field__discount{display:flex}.wcf-product-repeater-field__discount-type{width:220px}.wcf-product-repeater-field__discount-value{width:100px}.wcf-remove-product-button{margin-right:20px}
21
+ .wcf-select-product-popup-overlay{position:fixed;text-align:right;background:rgba(0,0,0,.7294117647);z-index:9999;width:100%;height:100%;right:0;top:0}.wcf-select-product-popup-overlay .wcf-select-product-popup-content{width:510px;background:#fff;border-radius:3px;right:50%;top:50%;position:absolute;transform:translate(50%, -50%);justify-content:space-between}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header{display:flex;justify-content:space-between;align-items:center;position:relative;height:50px;margin:0;padding:0;width:100%;border-bottom:1px solid #ddd}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__title h2{text-transform:uppercase;font-size:14px;margin-left:10px;font-weight:600;line-height:1;padding-right:25px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__title h2 .cartflows-logo-icon{font-size:16px;margin-left:8px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu{padding:5px;border-right:1px solid #ddd;position:relative;color:#ccc;cursor:pointer;display:inline-block}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu .dashicons{line-height:1.5}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu::after{font-size:25px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu:hover{color:#aaa}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select2-field .wcf-selection-field label{display:none}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-content-wrap{padding:25px;background:#f5f5f5}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-content-wrap .wcf-content-wrap{padding:45px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-content-wrap .wcf-select-product-content{display:flex;padding:20px 0;justify-content:space-between}
22
+ .wcf-product-options-fields__list{margin:0}.wcf-product-options-fields__list .wcf-product-options-fields__list--no-product{color:#666;padding:10px 25px}.wcf-product-option-field{margin-bottom:10px;display:flex}.wcf-product-field-item-bar{border:1px solid #ddd;border-radius:2px;font-weight:400;color:#444;font-size:15px;padding:12px 20px;height:auto;min-height:20px;width:auto;line-height:initial}.wcf-product-field-item-bar .default-label-note{margin-left:20px;line-height:1.5;font-size:16px}.wcf-product-options-fields__list--header{border:1px solid #f4f4f4;border-radius:2px;font-weight:400;color:#444;font-size:13px;font-style:italic;padding:12px 10px;height:auto;min-height:20px;width:650px;line-height:initial;margin-bottom:10px;background:#f4f4f4;position:relative}.wcf-product-options-fields__list--header::before{content:"";width:10px;height:10px;border:1px solid #f4f4f4;top:-6px;position:absolute;transform:rotate(-45deg);border-right:none;border-top:none;right:27px;background-color:#f4f4f4}.wcf-product-options-fields__list--header .default-label-note{line-height:1.5;font-size:16px}.wcf-product-options-fields__list--header .wcf-default-label{margin-left:10px}.wcf-product-option-default-in-cart{width:auto;line-height:initial;margin:0 5px 0 25px}.wcf-product-option-default-in-cart input{margin:0 !important}.disabled{opacity:.5;pointer-events:none}.wcf-product-field-item-bar span{display:inline-block;text-align:center;line-height:1}.wcf-dashicon{display:inline-flex;float:left;position:relative;top:-1px;cursor:pointer}.wcf-product-field-item-settings{background:#f5f6f7;border:1px solid #ececec;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:20px}.wcf-product-field-item-settings .wcf-field{margin-bottom:20px}.wcf-product-field-item-settings .wcf-field__desc{line-height:1.5}.wcf-product-field-item-settings .wcf-field.wcf-checkbox-field{margin-bottom:10px}.wcf-product-field-item-settings .wcf-field__data .wcf-field__data--label label{width:200px}.wcf-product-option-fields{width:650px}
23
+ .wcf-color-field{display:flex;align-items:center;line-height:1}.wcf-color-field .wcf-colorpicker-swatch-wrap{display:flex;align-items:center;cursor:pointer}.wcf-color-field .wcf-colorpicker-swatch{padding:0;background:#fafafa;display:inline-block;margin:0;border-left:1px solid #ddd;box-shadow:inset 0 0 0 3px #fff}.wcf-color-field .wcf-color-picker-popover{position:absolute;z-index:2;margin:8px 0}.wcf-color-field .wcf-color-picker-cover{position:fixed;top:0;left:0;bottom:0;right:0}.wcf-color-field .sketch-picker{font-weight:400}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-selector{display:flex;align-items:center}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-swatch-wrap{border:1px solid #ddd;border-radius:2px;background:#fff;color:#444}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-label{font-weight:400;padding:5px 7px}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-reset{padding:6px;cursor:pointer}.wcf-color-field .wcf-color-picker{position:relative}.wcf-color-field .wcf-color-picker input{margin:0}.wcf-color-field .wcf-color-picker input[id^=rc-editable-input-]{width:100% !important}
24
  .wcf-font-family-field .wcf-font-weight-field{margin-top:30px}
25
+ .wcf-image-selector-field-buttons{display:flex;padding:7px;width:300px}.wcf-image-selector-field{display:flex}.wcf-image-selector-field-button-select,.wcf-image-selector-field-button-remove{display:inline;margin-right:10px;width:100%}.wcf-image-selector-field__input{margin-right:15px}#wcf-image-preview{text-align:center;border:1px solid #ddd;margin-bottom:10px;line-height:1}.wcf-image-selector-field__input,.wcf-image-selector-field-buttons,.wcf-image-selector-field-button-select{margin:0;padding:0}.wcf-image-selector-field-button-select button.wcf-select-image{font-weight:500;width:100%}
26
+ .wcf-input-text-field input{margin-right:20px;width:300px;max-width:100%}
27
+ .wcf-number-field input{margin:0 15px;width:300px;max-width:100%}.wcf-number-field input.readonly,.wcf-number-field input[readonly]{background-color:#eee !important}.wcf-number-field input[type=number]{font-weight:400;margin:0;height:36px;padding:4px 15px;border-radius:2px;border:1px solid #ddd}.wcf-number-field:focus{box-shadow:none;border-color:#aaa}.wcf-number-field .wcf-field__data--after-field{margin-right:10px}
28
+ @charset "UTF-8";
29
+ .react-datepicker__year-read-view--down-arrow,
30
+ .react-datepicker__month-read-view--down-arrow,
31
+ .react-datepicker__month-year-read-view--down-arrow, .react-datepicker__navigation-icon::before {
32
+ border-color: #ccc;
33
+ border-style: solid;
34
+ border-width: 3px 0 0 3px;
35
+ content: "";
36
+ display: block;
37
+ height: 9px;
38
+ position: absolute;
39
+ top: 6px;
40
+ width: 9px;
41
+ }
42
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
43
+ margin-right: -4px;
44
+ position: absolute;
45
+ width: 0;
46
+ }
47
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
48
+ box-sizing: content-box;
49
+ position: absolute;
50
+ border: 8px solid transparent;
51
+ height: 0;
52
+ width: 1px;
53
+ content: "";
54
+ z-index: -1;
55
+ border-width: 8px;
56
+ right: -8px;
57
+ }
58
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
59
+ border-bottom-color: #aeaeae;
60
+ }
61
+
62
+ .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
63
+ top: 0;
64
+ margin-top: -8px;
65
+ }
66
+ .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
67
+ border-top: none;
68
+ border-bottom-color: #f0f0f0;
69
+ }
70
+ .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
71
+ top: 0;
72
+ }
73
+ .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
74
+ top: -1px;
75
+ border-bottom-color: #aeaeae;
76
+ }
77
+
78
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
79
+ bottom: 0;
80
+ margin-bottom: -8px;
81
+ }
82
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
83
+ border-bottom: none;
84
+ border-top-color: #fff;
85
+ }
86
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
87
+ bottom: 0;
88
+ }
89
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before {
90
+ bottom: -1px;
91
+ border-top-color: #aeaeae;
92
+ }
93
+
94
+ .react-datepicker-wrapper {
95
+ display: inline-block;
96
+ padding: 0;
97
+ border: 0;
98
+ width: 100%;
99
+ }
100
+
101
+ .react-datepicker {
102
+ font-family: "Helvetica Neue", helvetica, arial, sans-serif;
103
+ font-size: 0.8rem;
104
+ background-color: #fff;
105
+ color: #000;
106
+ border: 1px solid #aeaeae;
107
+ border-radius: 0.3rem;
108
+ display: inline-block;
109
+ position: relative;
110
+ }
111
+
112
+ .react-datepicker--time-only .react-datepicker__triangle {
113
+ right: 35px;
114
+ }
115
+ .react-datepicker--time-only .react-datepicker__time-container {
116
+ border-right: 0;
117
+ }
118
+ .react-datepicker--time-only .react-datepicker__time,
119
+ .react-datepicker--time-only .react-datepicker__time-box {
120
+ border-bottom-right-radius: 0.3rem;
121
+ border-bottom-left-radius: 0.3rem;
122
+ }
123
+
124
+ .react-datepicker__triangle {
125
+ position: absolute;
126
+ right: 50px;
127
+ }
128
+
129
+ .react-datepicker-popper {
130
+ z-index: 1;
131
+ }
132
+ .react-datepicker-popper[data-placement^=bottom] {
133
+ padding-top: 10px;
134
+ }
135
+ .react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle, .react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle {
136
+ right: auto;
137
+ left: 50px;
138
+ }
139
+ .react-datepicker-popper[data-placement^=top] {
140
+ padding-bottom: 10px;
141
+ }
142
+ .react-datepicker-popper[data-placement^=right] {
143
+ padding-right: 8px;
144
+ }
145
+ .react-datepicker-popper[data-placement^=right] .react-datepicker__triangle {
146
+ right: auto;
147
+ left: 42px;
148
+ }
149
+ .react-datepicker-popper[data-placement^=left] {
150
+ padding-left: 8px;
151
+ }
152
+ .react-datepicker-popper[data-placement^=left] .react-datepicker__triangle {
153
+ right: 42px;
154
+ left: auto;
155
+ }
156
+
157
+ .react-datepicker__header {
158
+ text-align: center;
159
+ background-color: #f0f0f0;
160
+ border-bottom: 1px solid #aeaeae;
161
+ border-top-right-radius: 0.3rem;
162
+ padding: 8px 0;
163
+ position: relative;
164
+ }
165
+ .react-datepicker__header--time {
166
+ padding-bottom: 8px;
167
+ padding-right: 5px;
168
+ padding-left: 5px;
169
+ }
170
+ .react-datepicker__header--time:not(.react-datepicker__header--time--only) {
171
+ border-top-right-radius: 0;
172
+ }
173
+ .react-datepicker__header:not(.react-datepicker__header--has-time-select) {
174
+ border-top-left-radius: 0.3rem;
175
+ }
176
+
177
+ .react-datepicker__year-dropdown-container--select,
178
+ .react-datepicker__month-dropdown-container--select,
179
+ .react-datepicker__month-year-dropdown-container--select,
180
+ .react-datepicker__year-dropdown-container--scroll,
181
+ .react-datepicker__month-dropdown-container--scroll,
182
+ .react-datepicker__month-year-dropdown-container--scroll {
183
+ display: inline-block;
184
+ margin: 0 2px;
185
+ }
186
+
187
+ .react-datepicker__current-month,
188
+ .react-datepicker-time__header,
189
+ .react-datepicker-year-header {
190
+ margin-top: 0;
191
+ color: #000;
192
+ font-weight: bold;
193
+ font-size: 0.944rem;
194
+ }
195
+
196
+ .react-datepicker-time__header {
197
+ text-overflow: ellipsis;
198
+ white-space: nowrap;
199
+ overflow: hidden;
200
+ }
201
+
202
+ .react-datepicker__navigation {
203
+ align-items: center;
204
+ background: none;
205
+ display: flex;
206
+ justify-content: center;
207
+ text-align: center;
208
+ cursor: pointer;
209
+ position: absolute;
210
+ top: 2px;
211
+ padding: 0;
212
+ border: none;
213
+ z-index: 1;
214
+ height: 32px;
215
+ width: 32px;
216
+ text-indent: -999em;
217
+ overflow: hidden;
218
+ }
219
+ .react-datepicker__navigation--previous {
220
+ right: 2px;
221
+ }
222
+ .react-datepicker__navigation--next {
223
+ left: 2px;
224
+ }
225
+ .react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
226
+ left: 85px;
227
+ }
228
+ .react-datepicker__navigation--years {
229
+ position: relative;
230
+ top: 0;
231
+ display: block;
232
+ margin-right: auto;
233
+ margin-left: auto;
234
+ }
235
+ .react-datepicker__navigation--years-previous {
236
+ top: 4px;
237
+ }
238
+ .react-datepicker__navigation--years-upcoming {
239
+ top: -4px;
240
+ }
241
+ .react-datepicker__navigation:hover *::before {
242
+ border-color: #a6a6a6;
243
+ }
244
+
245
+ .react-datepicker__navigation-icon {
246
+ position: relative;
247
+ top: -1px;
248
+ font-size: 20px;
249
+ width: 0;
250
+ }
251
+ .react-datepicker__navigation-icon--next {
252
+ right: -2px;
253
+ }
254
+ .react-datepicker__navigation-icon--next::before {
255
+ transform: rotate(-45deg);
256
+ right: -7px;
257
+ }
258
+ .react-datepicker__navigation-icon--previous {
259
+ left: -2px;
260
+ }
261
+ .react-datepicker__navigation-icon--previous::before {
262
+ transform: rotate(-225deg);
263
+ left: -7px;
264
+ }
265
+
266
+ .react-datepicker__month-container {
267
+ float: right;
268
+ }
269
+
270
+ .react-datepicker__year {
271
+ margin: 0.4rem;
272
+ text-align: center;
273
+ }
274
+ .react-datepicker__year-wrapper {
275
+ display: flex;
276
+ flex-wrap: wrap;
277
+ max-width: 180px;
278
+ }
279
+ .react-datepicker__year .react-datepicker__year-text {
280
+ display: inline-block;
281
+ width: 4rem;
282
+ margin: 2px;
283
+ }
284
+
285
+ .react-datepicker__month {
286
+ margin: 0.4rem;
287
+ text-align: center;
288
+ }
289
+ .react-datepicker__month .react-datepicker__month-text,
290
+ .react-datepicker__month .react-datepicker__quarter-text {
291
+ display: inline-block;
292
+ width: 4rem;
293
+ margin: 2px;
294
+ }
295
+
296
+ .react-datepicker__input-time-container {
297
+ clear: both;
298
+ width: 100%;
299
+ float: right;
300
+ margin: 5px 15px 10px 0;
301
+ text-align: right;
302
+ }
303
+ .react-datepicker__input-time-container .react-datepicker-time__caption {
304
+ display: inline-block;
305
+ }
306
+ .react-datepicker__input-time-container .react-datepicker-time__input-container {
307
+ display: inline-block;
308
+ }
309
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
310
+ display: inline-block;
311
+ margin-right: 10px;
312
+ }
313
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
314
+ width: auto;
315
+ }
316
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
317
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
318
+ -webkit-appearance: none;
319
+ margin: 0;
320
+ }
321
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
322
+ -moz-appearance: textfield;
323
+ }
324
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
325
+ margin-right: 5px;
326
+ display: inline-block;
327
+ }
328
+
329
+ .react-datepicker__time-container {
330
+ float: left;
331
+ border-right: 1px solid #aeaeae;
332
+ width: 85px;
333
+ }
334
+ .react-datepicker__time-container--with-today-button {
335
+ display: inline;
336
+ border: 1px solid #aeaeae;
337
+ border-radius: 0.3rem;
338
+ position: absolute;
339
+ left: -72px;
340
+ top: 0;
341
+ }
342
+ .react-datepicker__time-container .react-datepicker__time {
343
+ position: relative;
344
+ background: white;
345
+ border-bottom-left-radius: 0.3rem;
346
+ }
347
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
348
+ width: 85px;
349
+ overflow-x: hidden;
350
+ margin: 0 auto;
351
+ text-align: center;
352
+ border-bottom-left-radius: 0.3rem;
353
+ }
354
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
355
+ list-style: none;
356
+ margin: 0;
357
+ height: calc(195px + (1.7rem / 2));
358
+ overflow-y: scroll;
359
+ padding-left: 0;
360
+ padding-right: 0;
361
+ width: 100%;
362
+ box-sizing: content-box;
363
+ }
364
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
365
+ height: 30px;
366
+ padding: 5px 10px;
367
+ white-space: nowrap;
368
+ }
369
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
370
+ cursor: pointer;
371
+ background-color: #f0f0f0;
372
+ }
373
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
374
+ background-color: #216ba5;
375
+ color: white;
376
+ font-weight: bold;
377
+ }
378
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
379
+ background-color: #216ba5;
380
+ }
381
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
382
+ color: #ccc;
383
+ }
384
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
385
+ cursor: default;
386
+ background-color: transparent;
387
+ }
388
+
389
+ .react-datepicker__week-number {
390
+ color: #ccc;
391
+ display: inline-block;
392
+ width: 1.7rem;
393
+ line-height: 1.7rem;
394
+ text-align: center;
395
+ margin: 0.166rem;
396
+ }
397
+ .react-datepicker__week-number.react-datepicker__week-number--clickable {
398
+ cursor: pointer;
399
+ }
400
+ .react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
401
+ border-radius: 0.3rem;
402
+ background-color: #f0f0f0;
403
+ }
404
+
405
+ .react-datepicker__day-names,
406
+ .react-datepicker__week {
407
+ white-space: nowrap;
408
+ }
409
+
410
+ .react-datepicker__day-names {
411
+ margin-bottom: -8px;
412
+ }
413
+
414
+ .react-datepicker__day-name,
415
+ .react-datepicker__day,
416
+ .react-datepicker__time-name {
417
+ color: #000;
418
+ display: inline-block;
419
+ width: 1.7rem;
420
+ line-height: 1.7rem;
421
+ text-align: center;
422
+ margin: 0.166rem;
423
+ }
424
+
425
+ .react-datepicker__month--selected, .react-datepicker__month--in-selecting-range, .react-datepicker__month--in-range,
426
+ .react-datepicker__quarter--selected,
427
+ .react-datepicker__quarter--in-selecting-range,
428
+ .react-datepicker__quarter--in-range {
429
+ border-radius: 0.3rem;
430
+ background-color: #216ba5;
431
+ color: #fff;
432
+ }
433
+ .react-datepicker__month--selected:hover, .react-datepicker__month--in-selecting-range:hover, .react-datepicker__month--in-range:hover,
434
+ .react-datepicker__quarter--selected:hover,
435
+ .react-datepicker__quarter--in-selecting-range:hover,
436
+ .react-datepicker__quarter--in-range:hover {
437
+ background-color: #1d5d90;
438
+ }
439
+ .react-datepicker__month--disabled,
440
+ .react-datepicker__quarter--disabled {
441
+ color: #ccc;
442
+ pointer-events: none;
443
+ }
444
+ .react-datepicker__month--disabled:hover,
445
+ .react-datepicker__quarter--disabled:hover {
446
+ cursor: default;
447
+ background-color: transparent;
448
+ }
449
+
450
+ .react-datepicker__day,
451
+ .react-datepicker__month-text,
452
+ .react-datepicker__quarter-text,
453
+ .react-datepicker__year-text {
454
+ cursor: pointer;
455
+ }
456
+ .react-datepicker__day:hover,
457
+ .react-datepicker__month-text:hover,
458
+ .react-datepicker__quarter-text:hover,
459
+ .react-datepicker__year-text:hover {
460
+ border-radius: 0.3rem;
461
+ background-color: #f0f0f0;
462
+ }
463
+ .react-datepicker__day--today,
464
+ .react-datepicker__month-text--today,
465
+ .react-datepicker__quarter-text--today,
466
+ .react-datepicker__year-text--today {
467
+ font-weight: bold;
468
+ }
469
+ .react-datepicker__day--highlighted,
470
+ .react-datepicker__month-text--highlighted,
471
+ .react-datepicker__quarter-text--highlighted,
472
+ .react-datepicker__year-text--highlighted {
473
+ border-radius: 0.3rem;
474
+ background-color: #3dcc4a;
475
+ color: #fff;
476
+ }
477
+ .react-datepicker__day--highlighted:hover,
478
+ .react-datepicker__month-text--highlighted:hover,
479
+ .react-datepicker__quarter-text--highlighted:hover,
480
+ .react-datepicker__year-text--highlighted:hover {
481
+ background-color: #32be3f;
482
+ }
483
+ .react-datepicker__day--highlighted-custom-1,
484
+ .react-datepicker__month-text--highlighted-custom-1,
485
+ .react-datepicker__quarter-text--highlighted-custom-1,
486
+ .react-datepicker__year-text--highlighted-custom-1 {
487
+ color: magenta;
488
+ }
489
+ .react-datepicker__day--highlighted-custom-2,
490
+ .react-datepicker__month-text--highlighted-custom-2,
491
+ .react-datepicker__quarter-text--highlighted-custom-2,
492
+ .react-datepicker__year-text--highlighted-custom-2 {
493
+ color: green;
494
+ }
495
+ .react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
496
+ .react-datepicker__month-text--selected,
497
+ .react-datepicker__month-text--in-selecting-range,
498
+ .react-datepicker__month-text--in-range,
499
+ .react-datepicker__quarter-text--selected,
500
+ .react-datepicker__quarter-text--in-selecting-range,
501
+ .react-datepicker__quarter-text--in-range,
502
+ .react-datepicker__year-text--selected,
503
+ .react-datepicker__year-text--in-selecting-range,
504
+ .react-datepicker__year-text--in-range {
505
+ border-radius: 0.3rem;
506
+ background-color: #216ba5;
507
+ color: #fff;
508
+ }
509
+ .react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover,
510
+ .react-datepicker__month-text--selected:hover,
511
+ .react-datepicker__month-text--in-selecting-range:hover,
512
+ .react-datepicker__month-text--in-range:hover,
513
+ .react-datepicker__quarter-text--selected:hover,
514
+ .react-datepicker__quarter-text--in-selecting-range:hover,
515
+ .react-datepicker__quarter-text--in-range:hover,
516
+ .react-datepicker__year-text--selected:hover,
517
+ .react-datepicker__year-text--in-selecting-range:hover,
518
+ .react-datepicker__year-text--in-range:hover {
519
+ background-color: #1d5d90;
520
+ }
521
+ .react-datepicker__day--keyboard-selected,
522
+ .react-datepicker__month-text--keyboard-selected,
523
+ .react-datepicker__quarter-text--keyboard-selected,
524
+ .react-datepicker__year-text--keyboard-selected {
525
+ border-radius: 0.3rem;
526
+ background-color: #2579ba;
527
+ color: #fff;
528
+ }
529
+ .react-datepicker__day--keyboard-selected:hover,
530
+ .react-datepicker__month-text--keyboard-selected:hover,
531
+ .react-datepicker__quarter-text--keyboard-selected:hover,
532
+ .react-datepicker__year-text--keyboard-selected:hover {
533
+ background-color: #1d5d90;
534
+ }
535
+ .react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
536
+ .react-datepicker__month-text--in-range,
537
+ .react-datepicker__quarter-text--in-range,
538
+ .react-datepicker__year-text--in-range),
539
+ .react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
540
+ .react-datepicker__month-text--in-range,
541
+ .react-datepicker__quarter-text--in-range,
542
+ .react-datepicker__year-text--in-range),
543
+ .react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
544
+ .react-datepicker__month-text--in-range,
545
+ .react-datepicker__quarter-text--in-range,
546
+ .react-datepicker__year-text--in-range),
547
+ .react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
548
+ .react-datepicker__month-text--in-range,
549
+ .react-datepicker__quarter-text--in-range,
550
+ .react-datepicker__year-text--in-range) {
551
+ background-color: rgba(33, 107, 165, 0.5);
552
+ }
553
+ .react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
554
+ .react-datepicker__month-text--in-selecting-range,
555
+ .react-datepicker__quarter-text--in-selecting-range,
556
+ .react-datepicker__year-text--in-selecting-range),
557
+ .react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
558
+ .react-datepicker__month-text--in-selecting-range,
559
+ .react-datepicker__quarter-text--in-selecting-range,
560
+ .react-datepicker__year-text--in-selecting-range),
561
+ .react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
562
+ .react-datepicker__month-text--in-selecting-range,
563
+ .react-datepicker__quarter-text--in-selecting-range,
564
+ .react-datepicker__year-text--in-selecting-range),
565
+ .react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
566
+ .react-datepicker__month-text--in-selecting-range,
567
+ .react-datepicker__quarter-text--in-selecting-range,
568
+ .react-datepicker__year-text--in-selecting-range) {
569
+ background-color: #f0f0f0;
570
+ color: #000;
571
+ }
572
+ .react-datepicker__day--disabled,
573
+ .react-datepicker__month-text--disabled,
574
+ .react-datepicker__quarter-text--disabled,
575
+ .react-datepicker__year-text--disabled {
576
+ cursor: default;
577
+ color: #ccc;
578
+ }
579
+ .react-datepicker__day--disabled:hover,
580
+ .react-datepicker__month-text--disabled:hover,
581
+ .react-datepicker__quarter-text--disabled:hover,
582
+ .react-datepicker__year-text--disabled:hover {
583
+ background-color: transparent;
584
+ }
585
+
586
+ .react-datepicker__month-text.react-datepicker__month--selected:hover, .react-datepicker__month-text.react-datepicker__month--in-range:hover, .react-datepicker__month-text.react-datepicker__quarter--selected:hover, .react-datepicker__month-text.react-datepicker__quarter--in-range:hover,
587
+ .react-datepicker__quarter-text.react-datepicker__month--selected:hover,
588
+ .react-datepicker__quarter-text.react-datepicker__month--in-range:hover,
589
+ .react-datepicker__quarter-text.react-datepicker__quarter--selected:hover,
590
+ .react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover {
591
+ background-color: #216ba5;
592
+ }
593
+ .react-datepicker__month-text:hover,
594
+ .react-datepicker__quarter-text:hover {
595
+ background-color: #f0f0f0;
596
+ }
597
+
598
+ .react-datepicker__input-container {
599
+ position: relative;
600
+ display: inline-block;
601
+ width: 100%;
602
+ }
603
+
604
+ .react-datepicker__year-read-view,
605
+ .react-datepicker__month-read-view,
606
+ .react-datepicker__month-year-read-view {
607
+ border: 1px solid transparent;
608
+ border-radius: 0.3rem;
609
+ position: relative;
610
+ }
611
+ .react-datepicker__year-read-view:hover,
612
+ .react-datepicker__month-read-view:hover,
613
+ .react-datepicker__month-year-read-view:hover {
614
+ cursor: pointer;
615
+ }
616
+ .react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
617
+ .react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
618
+ .react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
619
+ .react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
620
+ .react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
621
+ .react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
622
+ border-top-color: #b3b3b3;
623
+ }
624
+ .react-datepicker__year-read-view--down-arrow,
625
+ .react-datepicker__month-read-view--down-arrow,
626
+ .react-datepicker__month-year-read-view--down-arrow {
627
+ transform: rotate(-135deg);
628
+ left: -16px;
629
+ top: 0;
630
+ }
631
+
632
+ .react-datepicker__year-dropdown,
633
+ .react-datepicker__month-dropdown,
634
+ .react-datepicker__month-year-dropdown {
635
+ background-color: #f0f0f0;
636
+ position: absolute;
637
+ width: 50%;
638
+ right: 25%;
639
+ top: 30px;
640
+ z-index: 1;
641
+ text-align: center;
642
+ border-radius: 0.3rem;
643
+ border: 1px solid #aeaeae;
644
+ }
645
+ .react-datepicker__year-dropdown:hover,
646
+ .react-datepicker__month-dropdown:hover,
647
+ .react-datepicker__month-year-dropdown:hover {
648
+ cursor: pointer;
649
+ }
650
+ .react-datepicker__year-dropdown--scrollable,
651
+ .react-datepicker__month-dropdown--scrollable,
652
+ .react-datepicker__month-year-dropdown--scrollable {
653
+ height: 150px;
654
+ overflow-y: scroll;
655
+ }
656
+
657
+ .react-datepicker__year-option,
658
+ .react-datepicker__month-option,
659
+ .react-datepicker__month-year-option {
660
+ line-height: 20px;
661
+ width: 100%;
662
+ display: block;
663
+ margin-right: auto;
664
+ margin-left: auto;
665
+ }
666
+ .react-datepicker__year-option:first-of-type,
667
+ .react-datepicker__month-option:first-of-type,
668
+ .react-datepicker__month-year-option:first-of-type {
669
+ border-top-right-radius: 0.3rem;
670
+ border-top-left-radius: 0.3rem;
671
+ }
672
+ .react-datepicker__year-option:last-of-type,
673
+ .react-datepicker__month-option:last-of-type,
674
+ .react-datepicker__month-year-option:last-of-type {
675
+ -webkit-user-select: none;
676
+ user-select: none;
677
+ border-bottom-right-radius: 0.3rem;
678
+ border-bottom-left-radius: 0.3rem;
679
+ }
680
+ .react-datepicker__year-option:hover,
681
+ .react-datepicker__month-option:hover,
682
+ .react-datepicker__month-year-option:hover {
683
+ background-color: #ccc;
684
+ }
685
+ .react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
686
+ .react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
687
+ .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
688
+ border-bottom-color: #b3b3b3;
689
+ }
690
+ .react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
691
+ .react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
692
+ .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
693
+ border-top-color: #b3b3b3;
694
+ }
695
+ .react-datepicker__year-option--selected,
696
+ .react-datepicker__month-option--selected,
697
+ .react-datepicker__month-year-option--selected {
698
+ position: absolute;
699
+ right: 15px;
700
+ }
701
+
702
+ .react-datepicker__close-icon {
703
+ cursor: pointer;
704
+ background-color: transparent;
705
+ border: 0;
706
+ outline: 0;
707
+ padding: 0 0 0 6px;
708
+ position: absolute;
709
+ top: 0;
710
+ left: 0;
711
+ height: 100%;
712
+ display: table-cell;
713
+ vertical-align: middle;
714
+ }
715
+ .react-datepicker__close-icon::after {
716
+ cursor: pointer;
717
+ background-color: #216ba5;
718
+ color: #fff;
719
+ border-radius: 50%;
720
+ height: 16px;
721
+ width: 16px;
722
+ padding: 2px;
723
+ font-size: 12px;
724
+ line-height: 1;
725
+ text-align: center;
726
+ display: table-cell;
727
+ vertical-align: middle;
728
+ content: "×";
729
+ }
730
+
731
+ .react-datepicker__today-button {
732
+ background: #f0f0f0;
733
+ border-top: 1px solid #aeaeae;
734
+ cursor: pointer;
735
+ text-align: center;
736
+ font-weight: bold;
737
+ padding: 5px 0;
738
+ clear: right;
739
+ }
740
+
741
+ .react-datepicker__portal {
742
+ position: fixed;
743
+ width: 100vw;
744
+ height: 100vh;
745
+ background-color: rgba(0, 0, 0, 0.8);
746
+ right: 0;
747
+ top: 0;
748
+ justify-content: center;
749
+ align-items: center;
750
+ display: flex;
751
+ z-index: 2147483647;
752
+ }
753
+ .react-datepicker__portal .react-datepicker__day-name,
754
+ .react-datepicker__portal .react-datepicker__day,
755
+ .react-datepicker__portal .react-datepicker__time-name {
756
+ width: 3rem;
757
+ line-height: 3rem;
758
+ }
759
+ @media (max-width: 400px), (max-height: 550px) {
760
+ .react-datepicker__portal .react-datepicker__day-name,
761
+ .react-datepicker__portal .react-datepicker__day,
762
+ .react-datepicker__portal .react-datepicker__time-name {
763
+ width: 2rem;
764
+ line-height: 2rem;
765
+ }
766
+ }
767
+ .react-datepicker__portal .react-datepicker__current-month,
768
+ .react-datepicker__portal .react-datepicker-time__header {
769
+ font-size: 1.44rem;
770
+ }
771
+
772
+ .wcf-field__doc-content{font-style:italic;font-weight:400;color:#666}
773
+ .wcf-section-heading-field .wcf-field__data--label label{font-size:15px;font-weight:600}
774
  .wcf-pro-notice{padding:20px}.wcf-pro-notice .wcf-pro-update-notice{color:#444;font-size:14px;font-weight:500}.wcf-pro-notice .wcf-pro-update-notice a{text-decoration:none}
775
+ .wcf-product-field .wcf-selection-field{display:flex;align-items:center}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__control{cursor:pointer}.wcf-product-field .wcf-selection-field .wcf__value-container .css-1g6gooi,.wcf-product-field .wcf-selection-field .wcf__value-container div:last-child{margin:0;padding:0;color:#444}.wcf-product-field .wcf-selection-field .wcf__value-container .css-1g6gooi input:focus,.wcf-product-field .wcf-selection-field .wcf__value-container div:last-child input:focus{box-shadow:none}.wcf-product-field .wcf-selection-field .wcf__control .css-1hwfws3m,.wcf-product-field .wcf-selection-field .wcf__value-container{height:36px;font-weight:400;color:#444}.wcf-product-field .wcf-selection-field .wcf-select2-input{border-color:#ddd;border-radius:2px;width:300px}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu{font-weight:400;line-height:1.1;border-radius:2px;color:#555;background-color:#fff}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__menu-list{max-height:200px}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:active,.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:hover{background-color:#f1f1f1;cursor:pointer;color:#444}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__option--is-focused,.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__option--is-selected{cursor:pointer;background-color:#f1f1f1;color:#444}.wcf-product-field .wcf-selection-field .wcf__control{border-color:#ddd;border-radius:2px;width:300px}.wcf-product-field .wcf-selection-field .wcf__value-container,.wcf-product-field .wcf-selection-field .wcf__control .wcf__value-container--has-value,.wcf-product-field .wcf-selection-field .wcf__control .wcf__value-container--has-value .wcf__single-value{color:#444}.wcf-product-field .wcf-selection-field .wcf__control:hover,.wcf-product-field .wcf-selection-field .wcf__control:active,.wcf-product-field .wcf-selection-field .wcf__control.wcf__control--is-focused{border-color:#aaa;box-shadow:none}.wcf-product-field .wcf-selection-field label{display:inline-block}.wcf-product-field .css-2b097c-container{display:inline;margin:0 30px 0 0;width:450px}
776
+ .wcf-coupon-field .wcf-selection-field{display:flex;align-items:center}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__control{cursor:pointer}.wcf-coupon-field .wcf-selection-field .wcf__value-container .css-1g6gooi,.wcf-coupon-field .wcf-selection-field .wcf__value-container div:last-child{margin:0;padding:0;color:#444}.wcf-coupon-field .wcf-selection-field .wcf__value-container .css-1g6gooi input:focus,.wcf-coupon-field .wcf-selection-field .wcf__value-container div:last-child input:focus{box-shadow:none}.wcf-coupon-field .wcf-selection-field .wcf__control .css-1hwfws3m,.wcf-coupon-field .wcf-selection-field .wcf__value-container{height:36px;font-weight:400;color:#444}.wcf-coupon-field .wcf-selection-field .wcf-select2-input{border-color:#ddd;border-radius:2px;width:300px}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu{font-weight:400;line-height:1.1;border-radius:2px;color:#555;background-color:#fff}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__menu-list{max-height:200px}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:active,.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:hover{background-color:#f1f1f1;cursor:pointer;color:#444}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__option--is-focused,.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__option--is-selected{cursor:pointer;background-color:#f1f1f1;color:#444}.wcf-coupon-field .wcf-selection-field .wcf__control{border-color:#ddd;border-radius:2px;width:300px}.wcf-coupon-field .wcf-selection-field .wcf__value-container,.wcf-coupon-field .wcf-selection-field .wcf__control .wcf__value-container--has-value,.wcf-coupon-field .wcf-selection-field .wcf__control .wcf__value-container--has-value .wcf__single-value{color:#444}.wcf-coupon-field .wcf-selection-field .wcf__control:hover,.wcf-coupon-field .wcf-selection-field .wcf__control:active,.wcf-coupon-field .wcf-selection-field .wcf__control.wcf__control--is-focused{border-color:#aaa;box-shadow:none}.wcf-coupon-field .wcf-selection-field label{display:inline-block}.wcf-coupon-field .css-2b097c-container{display:inline;margin:0 30px 0 0;width:450px}
777
+ .wcf-tooltip-icon{position:relative}.wcf-tooltip-icon .dashicons{display:block;position:relative}.wcf-tooltip-icon .wcf-tooltip-text{visibility:hidden;background-color:#444;color:#fff;padding:5px 8px;border-radius:3px;position:absolute;z-index:1;line-height:13px;width:-moz-fit-content;width:fit-content;white-space:nowrap;right:-20px;font-size:11px;top:25px}.wcf-tooltip-icon .wcf-tooltip-text::after{content:"";margin-right:-5px;border-width:5px;border-style:solid;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #444 rgba(0,0,0,0);top:-10px;right:30px;position:absolute}.wcf-tooltip-icon:hover .wcf-tooltip-text{visibility:visible}.wcf-tooltip-icon.wcf-tooltip-position--right .wcf-tooltip-text{top:-5px;right:25px}.wcf-tooltip-icon.wcf-tooltip-position--right .wcf-tooltip-text::after{right:-6px;top:10px;transform:rotate(-270deg)}
778
+ .wcf-sub-heading-field .wcf-field__data--label{padding:15px 0 0;border-bottom:1px solid #ddd;margin-bottom:20px}.wcf-sub-heading-field .wcf-field__data--label label{font-size:15px;font-weight:600}
779
+ .wcf-password-field input{font-weight:400;max-width:100%;margin:0;width:300px;height:36px;background:#fff;border-color:#ddd;padding:4px 15px;border-radius:2px}.wcf-password-field input:focus{box-shadow:none;border-color:#aaa}.wcf-password-field input.readonly,.wcf-password-field input[readonly]{background-color:#eee !important}.wcf-password-field .wcf-field__data{display:flex;align-items:center}.wcf-password-field .wcf-field__data--content{display:flex}.wcf-password-field .wcf-field__data--content .wcf-password-field__icon{cursor:pointer;width:auto;vertical-align:middle;line-height:1;padding:7px;border:1px solid #ddd;border-right:none;border-top-left-radius:2px;border-bottom-left-radius:2px}
780
+ .wcf-separator-field{border-bottom:1px solid #ddd}
781
+ .wcf-archived-step .wcf-loader{display:flex;justify-content:center;align-items:center;position:absolute;right:45%}.wcf-archived-step .wcf-dot-loader{height:20px;width:20px;border-radius:50%;background-color:#f06335;position:relative;animation:1.2s grow ease-in-out infinite}.wcf-archived-step .wcf-dot-loader--2{animation:1.2s grow ease-in-out infinite .15555s;margin:0 10px}.wcf-archived-step .wcf-dot-loader--3{animation:1.2s grow ease-in-out infinite .3s}@keyframes grow{0%,40%,100%{transform:scale(0)}40%{transform:scale(1)}}.step-overlay :not(.wcf-loader){opacity:.1;border:1px solid #ddd}
782
  #wcf-archived-button{cursor:pointer;display:block}#wcf-archived-button.is-active{margin-bottom:10px}
783
+ .wcf-skeleton-base{display:block}.wcf-skeleton{height:1.2em;display:block;background-color:rgba(0,0,0,.11)}.wcf-skeleton-pulse{animation:wcf-skeleton-keyframes-pulse 1.5s ease-in-out .5s infinite}@keyframes wcf-skeleton-keyframes-pulse{0%{opacity:1}50%{opacity:.4}100%{opacity:1}}.wcf-skeleton--wave{overflow:hidden;position:relative}.wcf-skeleton--wave::after{top:0;right:0;left:0;bottom:0;content:"";position:absolute;animation:wcf-skeleton-keyframes-wave 1.6s linear .5s infinite;transform:translateX(100%);background:linear-gradient(-90deg, transparent, rgba(0, 0, 0, 0.04), transparent)}@keyframes wcf-skeleton-keyframes-wave{0%{transform:translateX(100%)}60%{transform:translateX(-100%)}100%{transform:translateX(-100%)}}
784
+ .wcf-flow-row.is-placeholder{padding:20px 30px;border-bottom:1px solid #d7d7d7;display:flex;justify-content:space-between;align-items:center;position:relative}.wcf-flow-row.is-placeholder .wcf-flow-row__title,.wcf-flow-row.is-placeholder .wcf-flow-row__actions{width:500px;padding:15px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 40px, #ddd 80px);background-size:600px;animation:shine-lines 1.6s infinite linear}.wcf-flow-row.is-placeholder .wcf-flow-row__actions{width:250px;padding:8px}@keyframes shine-lines{0%{background-position:-100px}40%,100%{background-position:340px}}
785
+ .wcf-skeleton--text{height:auto;transform:scale(1, 0.6);margin-top:0;border-radius:4px;margin-bottom:0;transform-origin:100% 60%;font-size:12px;line-height:1.5em}.wcf-skeleton--text:empty::before{content:" "}
786
  .wcf-skeleton--spacer{height:25px}
787
  .wcf-skeleton--rect{height:20px}
788
+ .wcf-skeleton--circle{border-radius:50%;width:40px;height:40px}
789
  .wcf-step-dummy{margin-bottom:20px}
790
+ .wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .title,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{padding:15px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .title{width:80%}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{width:60%}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons{width:8%;padding:15px;background-position:100% center;border-left:1px #fff solid;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right{display:flex}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-custom-filter-input{padding:15px 80px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-filters__buttons--custom-search{width:8%;padding:15px 50px;background-position:100% center;border:none;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data{padding:15px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);margin-left:15px;animation:shine-lines 1.6s infinite linear}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title:last-child,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item:last-child,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name:last-child,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data:last-child{margin-left:0}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:100%}}
791
+ .wcf-flow-analytics{padding:30px}.wcf-flow-analytics .wcf-flow-analytics__revenue{display:flex;justify-content:space-between;max-width:100%;margin:0;padding:0}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block{display:inline;align-content:center;width:33.3333%;margin:0;background:#fff;box-shadow:none;border:1px solid #ddd;border-radius:0;border-left:0;position:relative;padding:30px}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block:last-child{border-left:1px solid #ddd;border-top-left-radius:3px;border-bottom-left-radius:3px}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value,.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .title{text-align:right;background:rgba(0,0,0,0);color:#444;font-weight:400;font-size:20px;margin:0;padding:0;width:100%}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{margin-top:30px}.wcf-flow-analytics .wcf-flow-analytics__filters{margin-top:50px;display:flex;flex-direction:row;align-items:center;margin-bottom:20px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons{margin:0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .button{margin:0;padding:4px 15px;border-radius:0;border:1px solid #ddd;background:#fff;color:#444}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .button:hover{background:#fafafa;color:#444}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-filters__buttons--last-today{border-radius:0 2px 2px 0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-filters__buttons--last-week{border-radius:0;border-right:0;border-left:0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-filters__buttons--last-month{border-radius:2px 0 0 2px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons button{outline:0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-button.wcf-filter-active{background:#edeff1;background:var(--secondary-hv-color);border-color:#ddd;border-color:var(--secondary-border-color);color:#3a3a3a;box-shadow:none}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right{margin:0;text-align:right;margin-right:auto;display:flex}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-custom-filter-input{padding:3px 15px;border:1px solid #ddd;background:#fff;margin:0 5px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-filters__buttons--custom-search{padding:3px 15px;border-radius:3px;background:#f06335;color:#fff;border:1px solid #f06335;margin:0 5px 0 0}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table{width:100%;border:1px solid #dfdfdf;border-bottom:0 solid #dfdfdf}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-header{display:flex;width:100%;padding:10px 25px;background:#f5f6f7;border-bottom:1px solid #dfdfdf;color:#444;justify-content:unset;align-items:center}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title{flex:1 1 20%}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title,.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item{color:#444;font-weight:500}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name{flex:1 1 20%;color:#444;font-size:14px}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name .ab-test-step-name{cursor:pointer}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name .dashicons-editor-break{transform:scaleX(-1);margin-right:15px;margin-left:7px}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name .wcf-archived-date{display:block;text-align:right;color:#666;margin-right:15px;font-size:13px}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-row{display:flex;width:100%;padding:25px;background:#fff;border-bottom:1px solid #dfdfdf}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-row:hover{background:#fafafa}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data,.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item{flex:1 1 20%;text-align:center}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data{color:#000}.wcf-flow-analytics .wcf-flow-analytics__reset-button{display:flex;justify-content:space-between;margin-top:15px;align-items:center}.wcf-analytics-no-step-notice{padding:20px 40px;font-size:15px;color:#444;font-weight:400}
792
+ a.wcf-nav-item{background:#f7f8fa;box-shadow:none;outline:none;display:block;border-bottom:1px solid #dedede;color:#444;cursor:pointer;padding:20px;text-decoration:none;font-weight:400}a.wcf-nav-item:hover{background:#e4e4e7;color:#444}a.wcf-nav-item---active{background:#e4e4e7;color:#444}
793
+ .wcf-nav-content{color:#444;font-size:14px;background:#fafafa;padding:0;display:none;line-height:34px;text-align:right}.wcf-nav-content table{width:100%}.wcf-nav-content table .wcf-section-heading-field:first-child .wcf-field__data--label{padding-top:10px}.wcf-nav-content table th{padding:10px 0;font-weight:400}.wcf-nav-content---active{display:block}.wcf-nav-content---active h3{margin:5px 0;line-height:1;padding:0 10px 20px;font-weight:500;color:#444}.wcf-nav-content---active .wcf-nav-content__header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #ddd;margin-bottom:20px}.wcf-nav-content---active .wcf-nav-content__header h3.wcf-nav-content__header--title,.wcf-nav-content---active .wcf-nav-content__header .wcf-nav-content__header--button{width:50%}.wcf-nav-content---active .wcf-nav-content__header .wcf-nav-content__header--button p,.wcf-nav-content---active .wcf-nav-content__header h3.wcf-nav-content__header--title{margin:0}.wcf-nav-content---active .wcf-nav-content__header .wcf-nav-content__header--button{padding:0 10px 10px;display:flex;justify-content:flex-end}.wcf-field-section-heading{color:#333;padding:10px 0 5px;text-decoration:none;font-size:15px;font-weight:600}.wcf-pro-update-notice{font-style:italic}
794
+ .wcf-settings-nav{display:flex}.wcf-settings-nav__tabs{width:250px;background:#f7f8fa;padding:15px}.wcf-settings-nav__tab{padding:0 0 10px 0}.wcf-settings-nav__tab:last-child{padding:0}.wcf-settings-nav__content{padding:25px;background:#fff;width:calc(100% - 250px)}
795
+ .wcf-edit-flow-setting{font-size:14px;padding:30px;min-height:750px}.wcf-edit-flow-setting form{position:relative;width:100%}.wcf-edit-flow-setting form .wcf-vertical-nav p{color:#444;font-size:14px;font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav table{min-width:200px;height:34px;line-height:34px;text-align:right}.wcf-edit-flow-setting form .wcf-vertical-nav table th{padding:15px 0 15px 10px}.wcf-edit-flow-setting form .wcf-vertical-nav table .wcf-field__desc{color:#666;line-height:1.5;margin-top:15px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu a{display:block;border-bottom:1px solid #eee;color:#5f5f5f;cursor:pointer;padding:23px;text-decoration:none;font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu a:hover{color:#434343;background:#e4e4e7;box-shadow:none;font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu .wcf-setting-icon{margin:7px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu{width:20%;background:#f7f8fa;float:unset}.wcf-edit-flow-setting form .wcf-vertical-nav a.wcf-nav-item---active{color:#434343;background:#e4e4e7;box-shadow:none}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content{width:80%;padding:20px 30px;background:#fafafa;border:1px solid #eee}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content{background:rgba(0,0,0,0);color:#444;padding:0;font-size:14px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content .wcf-field__data--label label,.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content .wcf-selection-field label{width:300px;line-height:1.1;padding-left:20px;font-weight:500;display:inline-block;font-size:14px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content label{font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content input[type=text],.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content select{font-weight:400;margin-right:20px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-submit-button{text-align:right}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content---active h3{margin:5px 0;line-height:1;padding:0 10px 10px}.wcf-edit-flow-setting form .wcf-vertical-nav h3{font-weight:500;color:#444}
796
+ .wcf-steps-page-wrapper{padding:30px;border-top:1px solid #ededed;margin-top:-1px}.wcf-steps-page-wrapper .wcf-list-steps{margin-bottom:15px}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step{border:1px dashed #cdcdcd;background:#f9f9f9;color:#444;padding:20px;text-align:center;display:block;width:100%;transition:all 100ms ease-in;font-weight:400}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover{background:rgba(0,0,0,0);border-color:#aaa;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover .dashicons-plus::before{background:rgba(0,0,0,0);color:#016087}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step:hover .wcf-create-step--text{border-color:#006799;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step--text{line-height:1;margin-right:7px;font-size:17px;background:rgba(0,0,0,0)}.wcf-no-step-notice{padding:20px 0 40px;font-size:15px;color:#444;font-weight:400}
797
+ .wcf-steps-header{display:flex;flex-flow:row;align-items:center;justify-content:space-between;margin:0 0 25px 0}.wcf-steps-header .wcf-steps-header--title{font-size:20px;line-height:40px;color:#444;font-weight:500}.wcf-steps-header .wcf-step__title--editable .new-flow-title{background:#fafafa;border-color:#ccc;padding:2px 15px;line-height:2}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit::before{padding:5px;font-size:18px;text-decoration:none;background:#eee;display:inline-block;border-radius:100%}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a{text-decoration:none;vertical-align:middle;margin-right:10px}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:focus,.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:hover{outline:none;box-shadow:none}.wcf-steps-header .wcf-create-step{display:flex;align-items:center;justify-content:space-between}.wcf-steps-header .wcf-create-step .dashicons{height:-moz-fit-content;height:fit-content;width:-moz-fit-content;width:fit-content;font-size:15px;margin-left:10px}
798
+ .wcf-steps-chart{border:1px solid #a5a5a5;height:100vh;max-height:70%}.wcf-steps-chart.wcf-fullscreen{position:fixed;max-height:unset;width:100%;right:0;top:0;z-index:999999}.wcf-steps-chart.wcf-fullscreen .wcf-steps-chart__exit-screen-msg{position:absolute;right:44%;top:20px;padding:10px;z-index:4;text-transform:none;background-color:#636363;color:#fff;text-align:center}.wcf-steps-chart .react-flow .react-flow__controls .wcf-full-screen,.wcf-steps-chart .react-flow .react-flow__controls .wcf-exit-full-screen{font-size:13px;height:unset}.wcf-steps-chart .react-flow__renderer.react-flow__zoompane{cursor:move}.wcf-steps-chart.loading{background-color:#f4f4f4;position:relative}.wcf-steps-chart.loading .wcf-step-chart-loader{flex:0 0 50%;position:absolute;top:50%;right:49%;width:300px;height:300px;display:flex}.wcf-steps-chart.loading .wcf-step-chart-loader .dot-loader{height:20px;width:20px;border-radius:50%;background-color:#f44336;position:relative;animation:1.2s grow ease-in-out infinite}.wcf-steps-chart.loading .wcf-step-chart-loader .dot-loader--2{animation:1.2s grow ease-in-out infinite .15555s;margin:0 20px}.wcf-steps-chart.loading .wcf-step-chart-loader .dot-loader--3{animation:1.2s grow ease-in-out infinite .3s}.wcf-flow-overview-screen{overflow:hidden}
799
+ .wcf-steps-chart .wcf-custom-node-design{position:relative}.wcf-steps-chart .wcf-node-actions{visibility:hidden}.wcf-steps-chart .wcf-node-action-delete{visibility:hidden}.wcf-steps-chart .react-flow__node-offer .react-flow__handle-right-a{top:8px;left:-4px;transform:none}.wcf-steps-chart .react-flow__node-offer .react-flow__handle-right-b{top:auto;bottom:8px;left:-4px;transform:none}.wcf-steps-chart .react-flow__node-checkout,.wcf-steps-chart .react-flow__node-landing,.wcf-steps-chart .react-flow__node-offer,.wcf-steps-chart .react-flow__node-thankyou,.wcf-steps-chart .react-flow__node-optin{font-size:12px;color:#222;text-align:center}.wcf-steps-chart .react-flow__node-checkout .wcf-handle-left,.wcf-steps-chart .react-flow__node-checkout .wcf-handle-right,.wcf-steps-chart .react-flow__node-landing .wcf-handle-left,.wcf-steps-chart .react-flow__node-landing .wcf-handle-right,.wcf-steps-chart .react-flow__node-offer .wcf-handle-left,.wcf-steps-chart .react-flow__node-offer .wcf-handle-right,.wcf-steps-chart .react-flow__node-thankyou .wcf-handle-left,.wcf-steps-chart .react-flow__node-thankyou .wcf-handle-right,.wcf-steps-chart .react-flow__node-optin .wcf-handle-left,.wcf-steps-chart .react-flow__node-optin .wcf-handle-right{top:45%}.wcf-steps-chart .react-flow__node-checkout .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-landing .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-offer .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-thankyou .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-optin .wcf-custom-node-label{font-size:18px;text-align:center;padding:20px}.wcf-steps-chart .react-flow__node-checkout .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-landing .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-offer .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-thankyou .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-optin .wcf-custom-node-design{border:1px solid #c2c2c2;border-radius:10px;background-repeat:no-repeat;width:200px;height:259px}.wcf-steps-chart .react-flow__node-conditional{font-size:12px;text-align:center}.wcf-steps-chart .react-flow__node-conditional .wcf-handle-left{top:42%}.wcf-steps-chart .react-flow__node-conditional .wcf-custom-node-label{font-size:18px;text-align:center;padding:20px 0}.wcf-steps-chart .react-flow__node-conditional .wcf-custom-node-design{border:1px solid #c2c2c2;border-radius:10px;background-repeat:no-repeat;height:137px;width:117px;position:relative}.wcf-steps-chart .react-flow__node-conditional .wcf-custom-node-design .wcf-node-actions{visibility:hidden}.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper{padding:10px;margin:-11px;border:1px solid #ec4a8e;position:relative}.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .wcf-rect{height:10px;width:10px;position:absolute;border:1.5px solid red;background:#fff;border-radius:3px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .top-left{right:-5px;top:-5px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .top-right{left:-5px;top:-5px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .botton-left{right:-5px;top:274px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .bottom-right{left:-5px;top:274px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions{position:absolute;background:#fff;visibility:visible;right:35px;border-radius:2px;top:-75px;display:flex;padding:2px 5px 2px 5px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a{text-decoration:none;cursor:pointer;padding:10px;display:block}.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a .dashicons{margin-bottom:5px;color:#484848;font-size:25px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a :focus{color:#2271b1}.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions::before,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions::before,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions::before,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions::before,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions::before{content:"";width:20px;height:20px;border:1px solid #f4f4f4;top:36px;position:absolute;transform:rotate(-45deg);border-right:none;border-top:none;right:56px;background-color:#fff}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper{padding:10px;margin:-11px;border:1px solid #ec4a8e;position:relative}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .wcf-rect{height:10px;width:10px;position:absolute;border:1.5px solid red;background:#fff;border-radius:3px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .top-left{right:-5px;top:-5px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .top-right{left:-5px;top:-5px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .botton-left{right:-5px;top:152px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .bottom-right{left:-5px;top:152px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions{position:absolute;background:#fff;visibility:visible;right:37px;border-radius:2px;top:-67px;display:flex;padding:2px 5px 2px 5px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a{text-decoration:none;cursor:pointer;padding:10px;display:block}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a .dashicons{margin:0 -1px 0 0;color:#484848;font-size:25px;line-height:20px;display:block;width:25px;height:20px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a :focus{color:#2271b1}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-action-delete{visibility:hidden}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions::before{content:"";width:20px;height:20px;border:1px solid #f4f4f4;top:29px;position:absolute;transform:rotate(-45deg);border-right:none;border-top:none;right:16px;background-color:#fff;z-index:-1}
800
  .wcf-steps-chart .react-flow__edge-path{stroke:#2271b1;stroke-width:2px}
801
+ .wcf-step-library__item{padding:5em 0;flex:1;font-size:22px;text-align:center;background:rgba(0,0,0,0);margin:0 1em;border:5px dashed rgba(0,0,0,.1);position:relative;height:250px;display:flex;flex-direction:column;align-items:center;justify-content:center}.wcf-step-library__item:first-child:last-child{max-width:450px;margin:0 auto}.wcf-step-library__item .wcf-notice{border:none;background:rgba(0,0,0,0);box-shadow:none;margin:0}
802
  .wcf-create-step__dropdown-list{margin-bottom:.5em}
803
+ .wcf-learn-how{font-size:1rem;margin-top:1em}.wcf-learn-how a{text-decoration:none}.wcf-learn-how i{font-size:initial;vertical-align:middle}.wcf-button.disabled{pointer-events:none;background:rgba(241,99,52,.7490196078)}
804
+ .wcf-spinner{float:none;margin:0;animation:spin 2s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(-360deg)}}
805
+ .wcf-activate-link{text-decoration:none;font-size:14px}.wcf-activate-link .wcf-icon{font-size:initial;margin-right:2px;vertical-align:middle}
806
+ .wcf-name-your-step{position:fixed;right:0;left:0;top:0;bottom:0;z-index:9999}.wcf-name-your-step.show{display:block}.wcf-name-your-step.hide{display:none}.wcf-name-your-step .wcf-name-your-step__inner{border-radius:2px;margin:30vh auto 0;background:#fff;position:relative;max-width:550px;width:500px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close{position:absolute;left:0;cursor:pointer;padding:15px;top:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close .dashicons{color:#aaa}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close .dashicons:hover{color:#9a9a9a}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header{display:flex;justify-content:space-between;align-items:center;position:relative;margin:0;padding:0;width:100%;border-bottom:1px solid #ddd}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__title .wcf-name-your-step-popup__title{text-transform:capitalize;font-size:16px;margin:0;color:#444;font-weight:500;line-height:1;padding-right:25px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__title .wcf-name-your-step-popup__title .cartflows-logo-icon{font-size:14px;margin-left:10px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu{padding:15px;border-right:1px solid #ddd;position:relative;color:#ccc;cursor:pointer;display:inline-block}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu::after{font-size:25px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu:hover{color:#aaa}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header h3{margin-top:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body{background:#f5f5f5;display:block;padding:30px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body input{width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__text-field-wrap{margin-left:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer{text-align:left;margin-top:10px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-step-import__message{display:inline-block;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-step-import__message p{font-size:18px;color:#444;font-weight:400}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message{display:inline-block;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message p{font-size:18px;color:#444;font-weight:400}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message,.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__button{text-align:center}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer button a{color:#fff}.wcf-name-your-step .wcf-name-your-step__overlay{position:absolute;right:0;left:0;top:0;bottom:0;background:rgba(0,0,0,.7294117647)}
807
+ .wcf-remote-filters{text-align:center;padding:15px}.wcf-remote-filters .filter-links{display:inline-block;margin:0}.wcf-remote-filters .filter-links li{display:inline-block;margin:0}.wcf-remote-filters .filter-links li:first-child .step-type-filter-item{margin-right:0}.wcf-remote-filters .filter-links li .step-type-filter-item{border-bottom:0;text-decoration:none;margin:0 10px;font-weight:400;font-size:14px;color:#555;text-transform:capitalize;padding:10px}.wcf-remote-filters .filter-links li .step-type-filter-item.current{color:#f06335}.wcf-remote-filters .filter-links li .step-type-filter-item:hover{color:#000}.wcf-item{width:25%;margin-bottom:40px;float:right;padding-right:20px;padding-left:20px;position:relative;transition:all .2s ease-in-out}.wcf-item__type{padding:3px 10px;color:#fff;border-radius:2px;position:absolute;top:-6px;z-index:2;font-weight:700;font-size:10px;text-transform:uppercase;letter-spacing:.3px;left:14px}.wcf-item__inner{background:#fff;border:1px solid #ddd;border-radius:3px;display:block;position:relative;z-index:1;transition:all .2s ease-in-out;overflow:hidden;cursor:pointer}.wcf-item__inner:hover{transform:translateY(-1px)}.wcf-item__inner:hover .wcf-item__thumbnail-wrap{transform:scale(1.02);opacity:.7}.wcf-item__inner:hover .wcf-item__view{opacity:1}.wcf-item__inner:hover .wcf-step-preview-wrap{opacity:1}.wcf-item__inner .wcf-step-preview-wrap{position:absolute;text-align:center;z-index:15;right:0;left:0;top:50%;transform:translateY(-50%);opacity:0}.wcf-item__inner .wcf-step-preview{background:rgba(0,0,0,.7);color:#fff;font-size:14px;text-shadow:0 1px 0 rgba(0,0,0,.6);font-weight:600;border-radius:3px;padding:7px 18px;line-height:1.5px;text-decoration:none}.wcf-item__inner .wcf-step-preview .dashicons{margin-right:2px}.wcf-item__type{background:#f16334}.wcf-item__thumbnail-wrap{padding:8px;transition:all ease-in-out .2s}.wcf-item__thumbnail{background:#fff;border-bottom:1px solid #ededed;position:relative;overflow:hidden;max-height:225px}.wcf-item__thumbnail-image{width:100%}.wcf-item__view{background:#fff;border-top:none;color:#263238;display:block;height:auto;opacity:0;padding:10px;position:absolute;bottom:0;text-align:center;z-index:15;transition:all .2s ease-in-out;right:0;left:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.wcf-item__btn{display:inline-block;padding:7px 22px;background:#f16334;font-size:13px;text-shadow:none;font-weight:600;color:#fff;border-radius:2px;border:none;cursor:pointer}.wcf-item__heading-wrap{padding:10px 15px;text-align:center}.wcf-item__heading{font-size:14px;margin-bottom:3px;color:#2f3f50;font-weight:500;width:100%}
808
+ .wcf-flow-importer{margin-top:1em}.wcf-step-importer__list{margin-top:2em}.wcf-step-importer__list .wcf-step-row:last-child{border:0}.wcf-item__inner--active{border-color:#5b9dd9;border-radius:2px}.wcf-step-library .wcf-items-list{margin-right:-20px;margin-left:-20px;flex-wrap:wrap;padding:0;justify-content:flex-start;display:flex}.wcf-step-library .wcf-step-library__step-actions{background:#fff;display:flex;justify-content:space-between;padding:0 30px;min-height:50px;border-bottom:1px solid #eee;align-items:center;position:relative}.wcf-step-library .wcf-step-library__step-actions .wcf-button{min-height:auto;margin-left:30px}.wcf-step-library .wcf-step-library__step-actions h3{font-weight:500;color:#444}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper{position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;right:0;left:0}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links{display:inline-block;margin:0;padding:0}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li{display:inline-block}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .get-started-step-item{padding:10px 22px 15px;color:#444;text-decoration:none;border:none;align-items:center;font-weight:400;font-size:14px;justify-content:center;min-width:100px;margin:0 0 -6px 0;width:unset;position:relative}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .get-started-step-item:hover{color:#f06335;border-bottom:2px solid #f06335}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .current{font-weight:400;color:#f06335;border-bottom:2px solid #f06335}.wcf-step-library .wcf-remote-content{padding:30px;background:#fff;width:100%;position:relative;min-height:750px}.wcf-step-library .wcf-remote-content .wcf-ready-templates{display:none}.wcf-step-library .wcf-remote-content .wcf-ready-templates.current{display:block}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch{display:none}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch.current{display:flex;min-height:500px;align-items:center}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item{max-width:600px;border:4px dashed #ddd;border-radius:2px;padding:unset;height:350px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select{width:100%;display:flex;flex-wrap:wrap;padding:20px 30px;align-items:center;justify-content:center}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__dropdown-list{margin:0 0 0 10px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__dropdown-list select{width:200px;height:36px;margin:0}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-learn-how{width:100%;margin-top:30px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__notice-wrap{width:100%}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__notice-wrap .wcf-create-step__notice p{font-size:14px;margin:0 0 20px;color:#444}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item--scratch h3{font-size:22px;font-weight:500;color:#444;margin:0 0 10px;width:100%}
809
+ .wcf-steps-page-wrapper{padding:30px;border-top:1px solid #ededed;margin-top:-1px}.wcf-steps-page-wrapper .wcf-list-steps{margin-bottom:15px}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step{border:1px dashed #cdcdcd;background:#f9f9f9;color:#444;padding:20px;text-align:center;display:block;width:100%;transition:all 100ms ease-in;font-weight:400}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover{background:rgba(0,0,0,0);border-color:#aaa;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover .dashicons-plus::before{background:rgba(0,0,0,0);color:#016087}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step:hover .wcf-create-step--text{border-color:#006799;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step--text{line-height:1;margin-right:7px;font-size:17px;background:rgba(0,0,0,0)}.wcf-no-step-notice{padding:20px 0 40px;font-size:15px;color:#444;font-weight:400}
810
+ .wcf-steps-header{display:flex;flex-flow:row;align-items:center;justify-content:space-between;margin:0 0 25px 0}.wcf-steps-header .wcf-steps-header--title{font-size:20px;line-height:40px;color:#444;font-weight:500}.wcf-steps-header .wcf-step__title--editable .new-flow-title{background:#fafafa;border-color:#ccc;padding:2px 15px;line-height:2}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit::before{padding:5px;font-size:18px;text-decoration:none;background:#eee;display:inline-block;border-radius:100%}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a{text-decoration:none;vertical-align:middle;margin-right:10px}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:focus,.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:hover{outline:none;box-shadow:none}.wcf-steps-header .wcf-create-step{display:flex;align-items:center;justify-content:space-between}.wcf-steps-header .wcf-create-step .dashicons{height:-moz-fit-content;height:fit-content;width:-moz-fit-content;width:fit-content;font-size:15px;margin-left:10px}
811
+ .wcf-step-wrap{margin-bottom:20px}.invalid-step{pointer-events:none}.invalid-step .wcf-step .wcf-step__col-tags .wcf-flow-badge{color:red}.wcf-store-checkout .wcf-step-delete{pointer-events:all}.wcf-store-checkout .wcf-step__action-menu{pointer-events:all}
812
+ .wcf-list-steps .sortable-chosen{background:#fafafb}.wcf-list-steps .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-list-steps .sortable-chosen .wcf-step{border:1px dashed #aaa;background:#fafafb;border-right:4px solid #ddd}.wcf-list-steps .wcf-step{background:#fff;border:1px solid #ddd;border-radius:2px;border-right-width:4px;box-sizing:border-box;box-shadow:none;padding:20px;display:flex;justify-content:space-between;align-items:center;position:relative;cursor:grab}.wcf-list-steps .wcf-step.wcf-step__no-product{border-right:4px solid #f06335}.wcf-list-steps .wcf-step .wcf-step__title a{text-decoration:none}.wcf-list-steps .wcf-step .wcf-step__actions .wcf-step__basic-action-btns .dashicons,.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown .dashicons{margin-left:5px;font-size:18px;vertical-align:middle}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown a{padding:15px;background:#fff;text-align:right;text-decoration:none;display:block;border-top:1px solid rgba(230,230,230,.5);height:auto;color:#666;font-size:14px;transition:all linear 200ms}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown a:hover{background:#fafafa;color:#1e8cbe}.wcf-list-steps .wcf-step .wcf-loader{display:flex;justify-content:center;align-items:center;position:absolute;right:45%}.wcf-list-steps .wcf-step .wcf-dot-loader{height:20px;width:20px;border-radius:50%;background-color:#f06335;position:relative;animation:1.2s grow ease-in-out infinite}.wcf-list-steps .wcf-step .wcf-dot-loader--2{animation:1.2s grow ease-in-out infinite .15555s;margin:0 10px}.wcf-list-steps .wcf-step .wcf-dot-loader--3{animation:1.2s grow ease-in-out infinite .3s}@keyframes grow{0%,40%,100%{transform:scale(0)}40%{transform:scale(1)}}.wcf-list-steps .step-overlay :not(.wcf-loader){opacity:.1}.wcf-list-steps .wcf-step-wrap.sortable-chosen.sortable-ghost .wcf-step{cursor:grabbing}.wcf-step__col-title{width:50%}.wcf-step__title-text{margin-right:10px}.wcf-step__handle{cursor:move}.wcf-step__invalid-step{touch-action:none;pointer-events:none}.wcf-global-checkout-error-badge{color:#fff;background-color:#d54e21;padding:.3em .6em .3em;border-radius:0;line-height:.7em;margin-right:10px;text-align:center;vertical-align:middle;font-size:.75em;font-weight:400}.wcf-flow-badge__invalid-step{color:red}.wcf-no-product-badge{color:#fff;background-color:#f16334;padding:.3em .6em .3em;border-radius:0;line-height:.7em;margin-right:10px;text-align:center;vertical-align:middle;font-size:.75em;font-weight:400}.wcf-global-checkout-badge{color:#fff;background-color:#0072a7;padding:.3em .6em .3em;font-size:.7em;font-weight:600;border-radius:0;line-height:.7em;margin-right:10px;text-align:center;vertical-align:middle}.wcf-step__action-btns{display:flex;align-items:center}.wcf-step__action-btns .wcf-step__action-btn{font-size:1em;line-height:.9em;vertical-align:middle;text-align:center;margin-left:15px;text-decoration:none}.wcf-step__action-btns .wcf-step__action-btn.wcf-pro{opacity:.65;cursor:not-allowed}.wcf-step__action-btns .wcf-step__action-menu{position:relative;color:#aaa;cursor:pointer;display:inline-block;top:4px;width:13px}.wcf-step__action-btns .wcf-step__action-menu:hover{color:#333}.wcf-step__action-btns .wcf-step__action-menu .dashicons-ellipsis{font-size:18px;transform:rotate(-90deg);vertical-align:super}.wcf-step-badge,.wcf-flow-badge{font-weight:400;color:#000;background-color:#e3e4e8;padding:.3em .6em .3em;font-size:.75em;border-radius:0;line-height:.7em;margin-right:10px;text-align:center;vertical-align:middle;text-transform:capitalize}.wcf-invalid-sequence-badge{color:#fff;background-color:#d54e21;border-color:#d6e9c6}.wcf-yes-next-badge{color:#3c763d;background-color:#dff0d8}.wcf-no-next-badge{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.wcf-step__col-tags .wcf-flow-badge{margin-right:0;width:75px;display:inline-block;padding:8px 0;font-weight:500;color:#000;background-color:#e3e4e8;font-size:.9em;border-radius:2px;line-height:.7em;border:1px solid rgba(67,67,67,.0666666667);text-align:center;vertical-align:middle;text-transform:capitalize}.wcf-step__col-tags .wcf-step-badge,.wcf-step__col-tags .wcf-flow-badge{margin-right:0}.wcf-step:hover{border-color:#e4e4e4;box-shadow:0 1px 4px 0 rgba(32,33,36,.15)}
813
+ .wcf-step-library__item{padding:5em 0;flex:1;font-size:22px;text-align:center;background:rgba(0,0,0,0);margin:0 1em;border:5px dashed rgba(0,0,0,.1);position:relative;height:250px;display:flex;flex-direction:column;align-items:center;justify-content:center}.wcf-step-library__item:first-child:last-child{max-width:450px;margin:0 auto}.wcf-step-library__item .wcf-notice{border:none;background:rgba(0,0,0,0);box-shadow:none;margin:0}
814
+ .wcf-create-step__dropdown-list{margin-bottom:.5em}
815
+ .wcf-learn-how{font-size:1rem;margin-top:1em}.wcf-learn-how a{text-decoration:none}.wcf-learn-how i{font-size:initial;vertical-align:middle}.wcf-button.disabled{pointer-events:none;background:rgba(241,99,52,.7490196078)}
816
+ .wcf-name-your-step{position:fixed;right:0;left:0;top:0;bottom:0;z-index:9999}.wcf-name-your-step.show{display:block}.wcf-name-your-step.hide{display:none}.wcf-name-your-step .wcf-name-your-step__inner{border-radius:2px;margin:30vh auto 0;background:#fff;position:relative;max-width:550px;width:500px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close{position:absolute;left:0;cursor:pointer;padding:15px;top:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close .dashicons{color:#aaa}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close .dashicons:hover{color:#9a9a9a}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header{display:flex;justify-content:space-between;align-items:center;position:relative;margin:0;padding:0;width:100%;border-bottom:1px solid #ddd}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__title .wcf-name-your-step-popup__title{text-transform:capitalize;font-size:16px;margin:0;color:#444;font-weight:500;line-height:1;padding-right:25px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__title .wcf-name-your-step-popup__title .cartflows-logo-icon{font-size:14px;margin-left:10px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu{padding:15px;border-right:1px solid #ddd;position:relative;color:#ccc;cursor:pointer;display:inline-block}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu::after{font-size:25px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu:hover{color:#aaa}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header h3{margin-top:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body{background:#f5f5f5;display:block;padding:30px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body input{width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__text-field-wrap{margin-left:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer{text-align:left;margin-top:10px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-step-import__message{display:inline-block;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-step-import__message p{font-size:18px;color:#444;font-weight:400}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message{display:inline-block;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message p{font-size:18px;color:#444;font-weight:400}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message,.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__button{text-align:center}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer button a{color:#fff}.wcf-name-your-step .wcf-name-your-step__overlay{position:absolute;right:0;left:0;top:0;bottom:0;background:rgba(0,0,0,.7294117647)}
817
+ .wcf-remote-filters{text-align:center;padding:15px}.wcf-remote-filters .filter-links{display:inline-block;margin:0}.wcf-remote-filters .filter-links li{display:inline-block;margin:0}.wcf-remote-filters .filter-links li:first-child .step-type-filter-item{margin-right:0}.wcf-remote-filters .filter-links li .step-type-filter-item{border-bottom:0;text-decoration:none;margin:0 10px;font-weight:400;font-size:14px;color:#555;text-transform:capitalize;padding:10px}.wcf-remote-filters .filter-links li .step-type-filter-item.current{color:#f06335}.wcf-remote-filters .filter-links li .step-type-filter-item:hover{color:#000}.wcf-item{width:25%;margin-bottom:40px;float:right;padding-right:20px;padding-left:20px;position:relative;transition:all .2s ease-in-out}.wcf-item__type{padding:3px 10px;color:#fff;border-radius:2px;position:absolute;top:-6px;z-index:2;font-weight:700;font-size:10px;text-transform:uppercase;letter-spacing:.3px;left:14px}.wcf-item__inner{background:#fff;border:1px solid #ddd;border-radius:3px;display:block;position:relative;z-index:1;transition:all .2s ease-in-out;overflow:hidden;cursor:pointer}.wcf-item__inner:hover{transform:translateY(-1px)}.wcf-item__inner:hover .wcf-item__thumbnail-wrap{transform:scale(1.02);opacity:.7}.wcf-item__inner:hover .wcf-item__view{opacity:1}.wcf-item__inner:hover .wcf-step-preview-wrap{opacity:1}.wcf-item__inner .wcf-step-preview-wrap{position:absolute;text-align:center;z-index:15;right:0;left:0;top:50%;transform:translateY(-50%);opacity:0}.wcf-item__inner .wcf-step-preview{background:rgba(0,0,0,.7);color:#fff;font-size:14px;text-shadow:0 1px 0 rgba(0,0,0,.6);font-weight:600;border-radius:3px;padding:7px 18px;line-height:1.5px;text-decoration:none}.wcf-item__inner .wcf-step-preview .dashicons{margin-right:2px}.wcf-item__type{background:#f16334}.wcf-item__thumbnail-wrap{padding:8px;transition:all ease-in-out .2s}.wcf-item__thumbnail{background:#fff;border-bottom:1px solid #ededed;position:relative;overflow:hidden;max-height:225px}.wcf-item__thumbnail-image{width:100%}.wcf-item__view{background:#fff;border-top:none;color:#263238;display:block;height:auto;opacity:0;padding:10px;position:absolute;bottom:0;text-align:center;z-index:15;transition:all .2s ease-in-out;right:0;left:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.wcf-item__btn{display:inline-block;padding:7px 22px;background:#f16334;font-size:13px;text-shadow:none;font-weight:600;color:#fff;border-radius:2px;border:none;cursor:pointer}.wcf-item__heading-wrap{padding:10px 15px;text-align:center}.wcf-item__heading{font-size:14px;margin-bottom:3px;color:#2f3f50;font-weight:500;width:100%}
818
+ .wcf-name-your-flow{position:fixed;right:0;left:0;top:0;bottom:0;z-index:9999}.wcf-name-your-flow.show{display:block}.wcf-name-your-flow.hide{display:none}.wcf-name-your-flow .wcf-name-your-flow__inner{border-radius:2px;margin:30vh auto 0;max-width:600px;background:#fff;position:relative;width:550px}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__close{position:absolute;left:0;cursor:pointer;padding:15px;top:0}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__close .dashicons{color:#aaa}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__close .dashicons:hover{color:#9a9a9a}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header{display:flex;justify-content:space-between;align-items:center;position:relative;margin:0;padding:0;width:100%;border-bottom:1px solid #ddd}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header .wcf-name-your-flow__title .wcf-name-your-flow-popup__title{color:#444;text-transform:capitalize;font-size:16px;margin:0;font-weight:500;line-height:1;padding-right:25px}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header .wcf-name-your-flow__title .wcf-name-your-flow-popup__title .cartflows-logo-icon{font-size:14px;margin-left:10px}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header .wcf-name-your-flow__menu{padding:15px;border-right:1px solid #ddd;position:relative;color:#ccc;cursor:pointer;display:inline-block}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header .wcf-name-your-flow__menu::after{font-size:25px}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header .wcf-name-your-flow__menu:hover{color:#aaa}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header h3{margin-top:0}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__body{background:#f5f5f5;display:block;padding:30px}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__body input{width:100%}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__body .wcf-name-your-flow__footer{margin-top:10px}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__footer .wcf-flow-import__button{text-align:left}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__footer .wcf-store-checkout-import__button{display:inline-block}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__footer .wcf-pro--required .wcf-flow-import__message{display:inline-block;width:100%}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__footer .wcf-pro--required .wcf-flow-import__message p{font-size:18px;color:#444;font-weight:400;margin-top:0}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__footer .wcf-pro--required .wcf-flow-import__message,.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__footer .wcf-pro--required .wcf-flow-import__button{text-align:center}.wcf-name-your-flow .wcf-name-your-flow__overlay{position:absolute;right:0;left:0;top:0;bottom:0;background:rgba(0,0,0,.7294117647)}.wcf-name-your-flow .wcf-upgrade-pro .wcf-flow-import__message p{margin-top:0}.wcf-name-your-flow .wcf-upgrade-pro a.wcf-button{line-height:30px}
819
+ .wcf-flow-importer{margin-top:1em}.wcf-step-importer__list{margin-top:2em}.wcf-step-importer__list .wcf-step-row:last-child{border:0}.wcf-item__inner--active{border-color:#5b9dd9;border-radius:2px}.wcf-step-library .wcf-items-list{margin-right:-20px;margin-left:-20px;flex-wrap:wrap;padding:0;justify-content:flex-start;display:flex}.wcf-step-library .wcf-step-library__step-actions{background:#fff;display:flex;justify-content:space-between;padding:0 30px;min-height:50px;border-bottom:1px solid #eee;align-items:center;position:relative}.wcf-step-library .wcf-step-library__step-actions .wcf-button{min-height:auto;margin-left:30px}.wcf-step-library .wcf-step-library__step-actions h3{font-weight:500;color:#444}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper{position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;right:0;left:0}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links{display:inline-block;margin:0;padding:0}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li{display:inline-block}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .get-started-step-item{padding:10px 22px 15px;color:#444;text-decoration:none;border:none;align-items:center;font-weight:400;font-size:14px;justify-content:center;min-width:100px;margin:0 0 -6px 0;width:unset;position:relative}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .get-started-step-item:hover{color:#f06335;border-bottom:2px solid #f06335}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .current{font-weight:400;color:#f06335;border-bottom:2px solid #f06335}.wcf-step-library .wcf-remote-content{padding:30px;background:#fff;width:100%;position:relative;min-height:750px}.wcf-step-library .wcf-remote-content .wcf-ready-templates{display:none}.wcf-step-library .wcf-remote-content .wcf-ready-templates.current{display:block}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch{display:none}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch.current{display:flex;min-height:500px;align-items:center}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item{max-width:600px;border:4px dashed #ddd;border-radius:2px;padding:unset;height:350px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select{width:100%;display:flex;flex-wrap:wrap;padding:20px 30px;align-items:center;justify-content:center}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__dropdown-list{margin:0 0 0 10px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__dropdown-list select{width:200px;height:36px;margin:0}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-learn-how{width:100%;margin-top:30px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__notice-wrap{width:100%}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__notice-wrap .wcf-create-step__notice p{font-size:14px;margin:0 0 20px;color:#444}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item--scratch h3{font-size:22px;font-weight:500;color:#444;margin:0 0 10px;width:100%}
820
+ .wcf-edit-flow__title-wrap{padding:0 15px 10px;display:flex;justify-content:space-between;align-items:center;margin:0}.wcf-edit-flow__title-wrap .wcf-flows-header--title{font-size:22px;line-height:40px;color:#444;font-weight:500;width:50%}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container{display:flex;position:relative;align-items:center}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-spinner{float:none;margin-left:10px;vertical-align:middle;animation:spin 2s linear infinite;color:#434343}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(-360deg)}}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf_store_checkout_status_label{font-size:14px;margin-left:10px}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-ob-status{align-self:center}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-switch{cursor:pointer;text-indent:-999em;display:block;width:38px;height:22px;border-radius:30px;border:none;position:relative;box-sizing:border-box;transition:all .3s ease;box-shadow:inset 0 0 0 0 rgba(0,0,0,0)}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-switch:focus{outline:none}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-switch::before{border-radius:50%;background:#fff;content:"";position:absolute;display:block;width:18px;height:18px;top:2px;right:2px;transition:all .15s ease;box-shadow:0 1px 3px rgba(0,0,0,.3)}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-switch[data-wcf-order-bump-switch=true]{box-shadow:inset 0 0 0 12px var(--primary-border-color)}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-switch[data-wcf-order-bump-switch=true]::before{transform:translateX(-16px)}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-switch[data-wcf-order-bump-switch=false]{background:#ccc}.wcf-edit-flow__title-wrap .wcf-step__title--editable{display:flex;align-items:center}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--text input{width:350px;background:#fff;color:#444;border-color:#aaa;height:40px;line-height:1;font-weight:400}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons{display:inline;vertical-align:middle}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-button--small{padding:9px 20px;line-height:1;font-size:14px;font-weight:400}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-button--small.wcf-saving{animation:wcf-saving 2.5s linear infinite;opacity:1;background-size:100px 100%;background-image:linear-gradient(45deg, #f06335 28%, #f78860 0, #f78860 72%, #f06335 0)}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons a,.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons button{text-decoration:none;vertical-align:middle;margin-right:10px}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-flows-header__title--edit .dashicons-edit{vertical-align:unset}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-flows-header__title--edit .dashicons-edit::before{padding:5px;font-size:18px;text-decoration:none;background:#fff;display:inline-block;border-radius:100%}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-flows-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums{width:50%;text-align:left}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums .wcf-breadcrum--nav-item{color:#444;font-weight:500;font-size:14px}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link{text-decoration:none;color:var(--primary-color)}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link:hover{color:var(--primary-hv-color)}
821
  .editor-wrap__content{background:#fff;position:relative}
822
+ .wcf-woo-notice{background:#fff;padding:20px;border-right:2px solid red;margin:0 0 15px;color:red}.wcf-payment-gateway-notice{background:#fff;padding:15px;border-right:2px solid red;margin:0 0 15px;line-height:1.5}.wcf-payment-gateway-notice .wcf-gateway-notice-style{font-weight:700}.wcf-vertical-nav .wcf-textarea-field textarea[id*=-script]{width:500px}
823
+ .wcf-edit-step--nav{border-bottom:1px solid #ededed;padding:0;display:flex;background:#fff;box-shadow:none;margin:0}.wcf-edit-step--nav a.wcf-edit-step--nav__back-to-flow{padding:18px 18px 18px 25px}.wcf-edit-step--nav a.wcf-edit-step--nav__back-to-flow:hover{background:#fafafa}.wcf-edit-step--nav .wcf-edit-step--nav__back-to-flow--button{background:rgba(0,0,0,0);cursor:pointer;border:none;line-height:1}.wcf-edit-step--nav .wcf-edit-step--nav__back-to-flow--button .dashicons{color:#444;font-size:15px;height:-moz-fit-content;height:fit-content;width:-moz-fit-content;width:fit-content;margin-left:8px}.wcf-edit-step--nav .wcf-edit-step--nav__back-to-flow--button .wcf-back-button{font-size:15px;color:#444}.wcf-edit-step--nav .wcf-edit-flow--nav__back-to-flow:focus,.wcf-edit-step--nav .wcf-edit-flow--nav__back-to-flow--button:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-step--nav__tab{background:rgba(0,0,0,0);border:1px solid #fff;border-top:0;border-bottom:1px solid #ededed;color:#434343;cursor:pointer;padding:18px 25px;font-size:15px;line-height:1;font-weight:300;margin-bottom:-1px;max-width:100%;text-align:center;text-decoration:none;outline:none;box-shadow:none}.wcf-edit-step--nav__tab:hover{background:#f8f8f9;border:1px solid #f8f8f9;border-top:0;color:#444}.wcf-edit-step--nav__tab:first-child{border-right:0}.wcf-edit-step--nav__tab:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-step--nav__tab--active{background:#fff;color:#444;font-weight:300;border:1px solid #ededed;border-bottom:1px solid #fff;border-top:0}.wcf-edit-step--nav__tab--active:hover{background:#fff;color:#444;font-weight:300;border:1px solid #ededed;border-bottom:1px solid #fff;border-top:0}.wcf-edit-step--nav__tab--active:first-child{border-right:0}
824
+ .wcf-page-wrapper{padding:30px;min-height:750px}.wcf-page-wrapper .wcf-list-options .wcf-list-options__title,.wcf-page-wrapper .wcf-nav-content label.wcf-field-section-heading{display:inline-block;width:100%;font-size:18px;font-weight:500;padding:35px 0 15px;border-bottom:1px solid #ddd}.wcf-page-wrapper .wcf-custom-field-editor__content .wcf-custom-field-editor__title,.wcf-page-wrapper .wcf-checkout__section .wcf-list-options__title{padding-top:0}.wcf-page-wrapper form{width:100%;position:relative}.wcf-page-wrapper .wcf-field__data--label label,.wcf-page-wrapper .wcf-selection-field label{width:300px;line-height:1.1;padding-left:20px;font-weight:500;display:inline-block;font-size:14px;color:#444}.wcf-page-wrapper .wcf-section-heading-field .wcf-field__data--label{padding:25px 0 5px;border-bottom:1px solid #ddd;margin-bottom:10px}.wcf-page-wrapper .wcf-section-heading-field .wcf-field__data--label label{font-size:16px;font-weight:600}.wcf-page-wrapper .wcf-sub-heading-field .wcf-field__data--label{padding:15px 0 5px;border-bottom:1px solid #ddd;margin-bottom:10px}.wcf-page-wrapper .wcf-sub-heading-field .wcf-field__data--label label{font-size:15px;font-weight:500}.wcf-page-wrapper .wcf-checkbox-field .wcf-field__data--label,.wcf-page-wrapper .wcf-checkbox-field .wcf-field__data--label label,.wcf-page-wrapper .wcf-radio-button .wcf-field__data--label,.wcf-page-wrapper .wcf-radio-button .wcf-field__data--label label{width:-moz-fit-content;width:fit-content;font-size:14px}.wcf-page-wrapper .wcf-checkbox-field input[type=checkbox],.wcf-page-wrapper .wcf-radio-button input[type=radio]{margin:0 0 0 10px}.wcf-page-wrapper h3{line-height:1;margin-top:0;color:#444}.wcf-page-wrapper h3,.wcf-page-wrapper label.wcf-field-section-heading{width:100%;font-size:18px;padding:25px 0}.wcf-page-wrapper label.wcf-field-section-heading{display:inline-block;width:100%;font-size:18px;font-weight:500;padding:35px 0 15px;border-bottom:1px solid #ddd}.wcf-page-wrapper .wcf-selection-field .css-2b097c-container,.wcf-page-wrapper .wcf-selection-field .wcf-select2-input{margin:0}.wcf-page-wrapper .wcf-note-content{font-weight:500;font-size:15px;color:#444}.wcf-page-wrapper .wcf-pro-update-notice{color:#444;font-size:14px;font-weight:500}
825
+ .wcf-settings{margin:30px 0}.wcf-settings .wcf-vertical-nav__content{width:80%;padding:20px 30px;background:#fafafa;border:1px solid #eee}.wcf-settings .wcf-submit-button{text-align:left;margin-top:30px}.wcf-vertical-nav{border-radius:2px;min-height:500px;display:flex;font-size:14px}.wcf-vertical-nav .wcf-nav-content__header--title,.wcf-vertical-nav .wcf-nav-content__header--button{padding:0 0 10px 0}.wcf-vertical-nav .wcf-vertical-nav__menu{width:20%;background:#f7f8fa;border:0}.wcf-vertical-nav .wcf-text-field input{background:#fff;font-weight:400;width:300px;height:38px}.wcf-vertical-nav .wcf-textarea-field textarea{border-color:#ccc;padding:10px;border-radius:2px;font-weight:400;width:300px}.wcf-vertical-nav .wcf-textarea-field textarea:focus{box-shadow:none;border-color:#aaa}.wcf-vertical-nav p{color:#444;font-size:14px;font-weight:400}.wcf-vertical-nav__header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #ddd;margin-bottom:20px}.wcf-vertical-nav__header .wcf-vertical-nav__header-title{font-size:18px;font-weight:500;padding:0 0 10px 10px;margin:0;width:50%}.wcf-vertical-nav__header .wcf-vertical-nav__header-button{padding:0 10px 10px 0;display:flex;justify-content:flex-end}
826
+ .wcf-design-page .wcf-design-page__content{background:#fff;padding:0 0 50px 0;margin:0}.wcf-design-page .wcf-design-page__content .wcf-design-header--title{font-size:22px;color:#444;font-weight:500;padding:0 0 15px 0;line-height:1;margin:0}.wcf-design-page .wcf-design-page__content .wcf-design-page__text{font-size:15px;padding:10px 0}.wcf-design-page .wcf-design-page__content a.wcf-design-page__WPeditor{font-size:15px}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .new-step-title{background:#fafafa;border-color:#ccc;padding:2px 15px;line-height:2}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons{display:inline;vertical-align:middle}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons .wcf-design-header__title--edit .dashicons-edit::before{padding:5px;font-size:18px;text-decoration:none;background:#eee;display:inline-block;border-radius:100%}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons .wcf-design-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons a{text-decoration:none;vertical-align:middle;margin-right:10px}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons a:focus,.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons a:hover{outline:none;box-shadow:none}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize{margin:25px 0 25px 0}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--preview,.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--edit{margin-left:15px}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--preview{margin-left:15px}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--edit{background:var(--primary-color);border-color:var(--primary-color);color:#fff}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--edit:hover{background:var(--primary-hv-color);border-color:var(--primary-color);color:#fff}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-change-step{display:inline-flex;align-items:center;justify-content:space-between}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-change-step .dashicons{height:-moz-fit-content;height:fit-content;width:-moz-fit-content;width:fit-content;font-size:20px;margin-left:10px}.wcf-design-page .wcf-design-page__content .wcf-design-page__text{font-size:14px}.wcf-design-page .wcf-design-page__settings{margin:0;padding:15px 0 0}.wcf-design-page .wcf-design-page__settings h3{font-weight:500;margin:0 0 20px}.wcf-design-page .wcf-design-page__settings .wcf-settings{margin:30px 0}
827
+ .wcf-design-page.is-placeholder .wcf-design-page__content .wcf-design-header--title .title{padding:15px;width:30%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-design-page.is-placeholder .wcf-design-page__customize{display:flex}.wcf-design-page.is-placeholder .wcf-design-page__customize .wcf-design-page__button{width:12%;padding:15px;background-position:100% center;border-left:1px #fff solid;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-design-page.is-placeholder .wcf-design-page__text .title{padding:8px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);width:60%;animation:shine-lines 1.6s infinite linear}.wcf-design-page.is-placeholder .wcf-design-page__WPeditor .title{padding:8px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);width:30%;animation:shine-lines 1.6s infinite linear}.wcf-design-page.is-placeholder .wcf-design-page__settings .title{padding:15px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);width:15%;animation:shine-lines 1.6s infinite linear}.wcf-design-page.is-placeholder .wcf-design-page__settings .wcf-field.wcf-checkbox-field{margin-top:20px}.wcf-design-page.is-placeholder .wcf-design-page__settings .wcf-field.wcf-checkbox-field .title{padding:20px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);width:30%;animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:100%}}
828
+ .wcf-settings-nav{display:flex}.wcf-settings-nav__tabs{width:250px;background:#f7f8fa;padding:15px}.wcf-settings-nav__tab{padding:0 0 10px 0}.wcf-settings-nav__tab:last-child{padding:0}.wcf-settings-nav__content{padding:25px;background:#fff;width:calc(100% - 250px)}
829
+ .wcf-product-products .wcf-products--selection,.wcf-product-products .wcf-checkout-products--options,.wcf-product-products .wcf-checkout-products--coupon{margin:5px 0 15px 0}.wcf-product-products .wcf-checkout-product-selection-field{border:1px solid #dfdfdf;border-radius:3px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--product{width:35%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--quantity{width:20%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--discount{width:40%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--actions{width:5%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header{padding:10px 20px;border-bottom:1px solid #dfdfdf;justify-content:left}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header .wcf-column--product{padding:0 20px 0 0}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product{cursor:grab;display:flex;align-items:center;padding:15px;border-bottom:1px solid #dfdfdf}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product *{line-height:1.1}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__drag{margin-left:20px;width:2%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen{cursor:grab;background:#f9f9fa;transition:all 100ms ease-in}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen.sortable-ghost{cursor:grabbing}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-data{align-items:center;width:35%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-image img{width:80px;height:80px;display:block;margin:0 auto}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details *{line-height:1.1em;font-size:11px;font-weight:500;margin-bottom:5px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details .wcf-product-repeater-field__title{font-size:15px;margin-bottom:10px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__quantity input{width:150px;margin-left:20px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount .wcf-product-repeater-field__discount-type{width:auto}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount select,.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount input{width:150px;margin-left:20px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action{margin-right:auto}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action .wcf-remove-product-button:hover{color:var(--primary-color);cursor:pointer}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new{padding:20px}
830
+ .wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-product-selection-wrapper .wcf-list-options .wcf-list-options__title .title{padding:15px;width:30%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-product-selection-wrapper .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new{display:flex}.wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-product-selection-wrapper .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new .wcf-checkout-products__button{width:12%;padding:15px;background-position:100% center;border-left:1px #fff solid;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-design-header--title .title{padding:15px;width:30%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-products.is-placeholder .wcf-checkout-products__pro-options .wcf-checkout-products--coupon .wcf-list-options__title .title{padding:15px;width:15%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-products.is-placeholder .wcf-checkout-products__pro-options .wcf-checkout-products--coupon .wcf-select2-field .title{padding:15px;width:30%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-products.is-placeholder .wcf-field.wcf-submit .wcf-checkout-products__button{width:12%;padding:15px;background-position:100% center;border-left:1px #fff solid;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:100%}}
831
+ .wcf-list-options{color:#444;padding:0;line-height:34px;text-align:right}.wcf-list-options table{width:100%}.wcf-list-options table th{padding:0 0 10px;font-weight:400}.wcf-list-options label{font-weight:500}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{font-size:15px;font-weight:500;color:#444}.wcf-list-options .wcf-child-field::before{content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);color:#ccc;font-family:dashicons;font-weight:400;margin-left:.75em;top:-6px;vertical-align:middle;position:relative}
832
+ .wcf-multiple-order-bumps{border-radius:3px;margin-bottom:20px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__content .sortable-chosen{background:#fafafb}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__content .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__content .sortable-chosen .wcf-order-bump__content-wrapper{border:1px dashed #aaa;background:#fafafb}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header{padding:10px 20px;border:1px solid #dfdfdf;justify-content:space-between;display:flex;background:#f5f6f7;line-height:1.2}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header .wcf-column{color:#444;font-weight:500;font-size:15px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header .wcf-column--title{padding:0 20px 0 0;width:35%}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header .wcf-column--actions{padding:0 0 0 20px;width:25%;justify-content:flex-end;display:flex}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__no-content{padding:20px;border:1px solid #dfdfdf;border-top:none}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__no-content p{margin-right:20px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__add-new{padding:0 0 30px 0;text-align:left}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__add-new .dashicons{font-size:18px;vertical-align:middle;line-height:1.2;margin-left:5px}
833
+ .wcf-add-ob-popup-overlay{position:fixed;text-align:right;background:rgba(0,0,0,.7294117647);z-index:9999;width:100%;height:100%;right:0;top:0}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content{width:510px;background:#fff;border-radius:3px;right:50%;top:50%;position:absolute;transform:translate(50%, -50%);justify-content:space-between}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header{display:flex;justify-content:space-between;align-items:center;position:relative;height:50px;margin:0;padding:0;width:100%;border-bottom:1px solid #ddd}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__title h2{text-transform:uppercase;font-size:14px;margin-left:10px;font-weight:600;line-height:1;padding-right:25px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__title h2 .cartflows-logo-icon{font-size:16px;margin-left:8px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu{padding:5px;border-right:1px solid #ddd;position:relative;color:#ccc;cursor:pointer;display:inline-block}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu .dashicons{line-height:1.5}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu::after{font-size:25px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu:hover{color:#aaa}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-select2-field .wcf-selection-field label{display:none}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-content-wrap{padding:25px;background:#f5f5f5}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-content-wrap .wcf-content-wrap{padding:45px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-content-wrap .wcf-add-ob-content{display:flex;padding:20px 0;justify-content:space-between}
834
+ .wcf-order-bump .wcf-order-bump__content-wrapper{line-height:1.5;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #dfdfdf;border-right:1px solid #dfdfdf;border-left:1px solid #dfdfdf;padding:25px 30px}.wcf-order-bump .wcf-order-bump__content-wrapper:hover{background:#fafafa}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bumps__data{align-items:center;width:35%}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bumps__data-title img{width:80px;height:80px;display:block;margin:0 auto}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action{display:flex;width:25%;justify-content:flex-end}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a{cursor:pointer;font-size:14px;line-height:1.5;vertical-align:middle;text-align:center;margin-left:15px;text-decoration:none}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-clone-bump-button.wcf-cloning,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-remove-order-bump-button.wcf-removing{margin-left:0}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-clone-bump-button.wcf-cloning .dashicons,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-remove-order-bump-button.wcf-removing .dashicons{margin-left:2px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-settings-button,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-design-button{margin-right:0;margin-left:20px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-settings-button:hover,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-design-button:hover{color:var(--primary-color);cursor:pointer}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-remove-order-bump-button.wcf-removing{color:var(--primary-hv-color)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .dashicons{margin-left:5px;font-size:18px;line-height:1.3}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf_order_bump__status{display:flex;position:relative}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf_order_bump__status .wcf-spinner{float:none;margin:0;animation:spin 2s linear infinite;position:absolute;left:0;right:45px;color:#434343}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(-360deg)}}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__data{padding-right:10px;width:35%}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__data .wcf-order-bump__data-title a{text-decoration:none;font-weight:500;font-size:15px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-ob-status{align-self:center}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields{background:#f5f6f7;border:1px solid #ececec;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:20px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field{margin-bottom:20px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field__desc{line-height:1.5}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field.wcf-checkbox-field{margin-bottom:10px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field__data .wcf-field__data--label label{width:200px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-selection-field{margin-bottom:15px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-selection-field label{width:200px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-ob-header__title--edit span{margin-right:10px;text-decoration:none}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch{cursor:pointer;text-indent:-999em;display:block;width:38px;height:22px;border-radius:30px;border:none;position:relative;box-sizing:border-box;transition:all .3s ease;box-shadow:inset 0 0 0 0 rgba(0,0,0,0)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch:focus{outline:none}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch::before{border-radius:50%;background:#fff;content:"";position:absolute;display:block;width:18px;height:18px;top:2px;right:2px;transition:all .15s ease;box-shadow:0 1px 3px rgba(0,0,0,.3)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch[data-wcf-order-bump-switch=true]{box-shadow:inset 0 0 0 12px var(--primary-border-color)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch[data-wcf-order-bump-switch=true]::before{transform:translateX(-16px)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch[data-wcf-order-bump-switch=false]{background:#ccc}
835
+ .wcf-multiple-order-bumps.is-placeholder .wcf-add-new-order-bump{padding:10px 90px;width:100%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-column--product{width:25%}.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-order-bump__data-title,.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf_order_bump__status,.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-column--actions span{padding:15px;width:100%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf_order_bump__status,.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-column--actions{width:10%}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:100%}}
836
+ .wcf-list-options{color:#444;padding:0;line-height:34px;text-align:right}.wcf-list-options table{width:100%}.wcf-list-options table th{padding:0 0 10px;font-weight:400}.wcf-list-options label{font-weight:500}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{font-size:15px;font-weight:500;color:#444}.wcf-list-options .wcf-child-field::before{content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);color:#ccc;font-family:dashicons;font-weight:400;margin-left:.75em;top:-6px;vertical-align:middle;position:relative}
837
+ .wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options .wcf-list-options__title .title{padding:15px;width:50%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options table tr .checkbox-title{margin-bottom:20px;padding:10px;width:15%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options table tr .title{margin-bottom:10px;padding:15px;width:30%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options .wcf-field.wcf-submit{margin-top:20px}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options .wcf-field.wcf-submit .wcf-checkout-offer__button{width:10%;padding:20px;background-position:100% center;border-left:1px #fff solid;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:100%}}
838
+ .wcf-list-options{color:#444;padding:0;line-height:34px;text-align:right}.wcf-list-options table{width:100%}.wcf-list-options table th{padding:0 0 10px;font-weight:400}.wcf-list-options table .wcf-selection-field label,.wcf-list-options table .wcf-field__data--label label{font-weight:500;width:230px}.wcf-list-options table textarea{width:300px}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{font-size:15px;font-weight:500;color:#444}.wcf-list-options .wcf-child-field::before{content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);color:#ccc;font-family:dashicons;font-weight:400;margin-left:.75em;top:-6px;vertical-align:middle;position:relative}.wcf-list-options .wcf-co-options-wrapper{display:flex;justify-content:space-between}.wcf-list-options .wcf-co-options-wrapper .wcf-co-preview{width:100%;height:auto;margin:20px 30px 0 0;transition:all .3s}.wcf-list-options .wcf-co-options-wrapper .wcf-co-preview .wcf-section-heading-field{margin:27px 0}.wcf-list-options .wcf-co-options-wrapper .wcf-co-settings .wcf-first-style-child{padding-top:0}.wcf-list-options .wcf-co-options-wrapper table{width:80%}.wcf-list-options .wcf-co-options-wrapper.full-screen{flex-flow:column}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-settings{order:2}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview{order:1;margin:0 0 30px 0}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper{position:unset}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper{position:fixed;right:0;top:0;height:100%;width:100%;z-index:9999;overflow:auto}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal{max-width:950px;min-height:350px;margin:20px auto;top:0}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal .wcf-lightbox-content{padding:50px}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal .wcf-lightbox-content .wcf-pre-checkout-info{padding:30px}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-full-screen-preview-exit-button{top:55px;z-index:99999;position:fixed;left:40px}.wcf-co-full-screen-preview{overflow:hidden}
839
+ .wcf-checkout-offer-preview-wrapper:not(.fullscreen){position:relative}.wcf-checkout-offer-preview-wrapper.sticky{position:sticky;top:90px}.wcf-checkout-offer-preview-wrapper.fullscreen{position:absolute;top:-30px;right:0;background-color:#fff}.wcf-checkout-offer-preview-wrapper.fullscreen .wcf-section-heading-field{margin-top:0}.wcf-checkout-offer-preview-wrapper.fullscreen .wcf-section-heading-field .wcf-field__data--label{padding-top:0}.wcf-checkout-offer-preview-wrapper.fullscreen .wcf-pre-checkout-offer-wrapper{width:80%;margin:0 auto}.wcf-checkout-offer-preview-wrapper .wcf-co-preview-mode{position:absolute;top:25px;left:0}.wcf-pre-checkout-offer-wrapper{background:#eee;transition:opacity .25s;z-index:1042;padding:40px}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-title h1{color:#333;font-family:inherit;font-size:1.7em;margin:10px 0}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-skip-btn .wcf-pre-checkout-skip{color:#555;display:block;font-size:14px;margin:5px auto 0 auto;opacity:.8;width:-moz-fit-content;width:fit-content}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-skip-btn .wcf-pre-checkout-skip:hover{opacity:1}.wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-content{width:100%;background-color:#fff;border:2px #e2e2e2 dashed;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.04);display:inline-block}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-progress-bar{overflow:hidden;margin-bottom:0}.wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal{background-color:#fff;position:relative;border-radius:4px;transform:translate(0%, 0%);overflow:hidden;font-family:inherit;box-shadow:0 0 30px 5px rgba(0,0,0,.1)}.wcf-pre-checkout-offer-wrapper .wcf-progress-bar-nav{margin-bottom:30px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-progress{position:relative;display:table;table-layout:fixed;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step{display:table-cell;text-align:center;position:relative;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-title{margin-bottom:12px;white-space:nowrap;font:inherit;letter-spacing:.6px;font-size:14px;color:#6d6d6d}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-nav-bar-title{color:inherit}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .after{left:0}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .before,.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .after{height:4px;content:"";background:#e2e2e2;display:block;position:absolute;width:50%;bottom:8px}.wcf-pre-checkout-offer-wrapper .wcf-progress-nav-step{width:20px;height:20px;border-radius:3px;margin:auto;position:relative;background:#e2e2e2;vertical-align:middle;text-align:center;z-index:2;line-height:17px}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-sub-title{margin-bottom:10px;position:relative;text-align:center;right:0;bottom:0}.wcf-pre-checkout-offer-wrapper .wcf-content-main-head{text-align:center;position:relative;padding:10px;width:100%;margin-bottom:30px}.wcf-pre-checkout-offer-wrapper .wcf-content-main-head .wcf_first_name{color:#f16334}.wcf-pre-checkout-offer-wrapper .wcf-lightbox-content{padding:35px 20px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price ins{background:none}.wcf-pre-checkout-screen-size .open #wcf-pre-checkout-offer-modal{top:50%;transform:translate(0%, -50%)}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-nav-bar-step-line .before{background:#f16334}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-nav-bar-step-line .order-after{height:4px;content:"";background:#f16334;position:absolute;width:50%;bottom:8px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .before{right:0}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step:first-child .wcf-nav-bar-step-line::before,.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step:last-child .wcf-nav-bar-step-line::after{background:#000;display:none !important}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active+.wcf-nav-bar-step.active .wcf-nav-bar-step-line::after{background:#e2e2e2 !important}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-progress-nav-step{background:#f16334}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-progress-nav-step .before{content:"";margin:0;color:#fff;display:inline-block;font:normal normal 400 13px/20px cartflows-icon;speak:none;vertical-align:middle;-webkit-font-smoothing:antialiased;border:1px #fff solid;border-radius:1px;width:6px;height:6px;background-color:#fff;line-height:7px;left:7px}.wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-content button.wcf-pre-checkout-offer-btn{border:1px solid;border-color:#f16334;background:#f16334;border-radius:3px;color:#fff;font-family:inherit;font-weight:600;font-size:16px;line-height:1;margin-top:0;padding:12px 16px;width:100%;outline:none;min-height:48px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-product-title h1{color:#333;font-size:1.5em;font-weight:700;margin-top:0;margin-bottom:8px}.wcf-pre-checkout-offer-wrapper.open{visibility:visible;opacity:1;text-align:center;width:100%;height:100%;right:0;top:0;padding:30px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-desc,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-btn-action{padding:5px 0}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price .woocommerce-Price-amount.amount,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price ins .woocommerce-Price-amount.amount{display:inline-block;font-weight:600;font-size:17px;margin-bottom:3px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price del .woocommerce-Price-amount.amount{font-weight:400;text-decoration:line-through}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-info{display:inline-block;width:49.7%;padding:20px 20px 12px;vertical-align:middle;text-align:center}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-img img{border:2px solid #e2e2e2;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-info.wcf-pre-checkout-offer-product-details{text-align:right;padding-right:10px;line-height:2}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-actions{padding:0 20px 15px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-btn-action{font-size:12px;padding-top:0}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-sub-title span,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-desc span{font-family:inherit}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-desc span{color:#555;margin-top:5px}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-sub-title span{color:#555;font-size:18px;font-weight:500;padding:0 5px}
840
  .wcf-checkout-offer-save-settings{margin-top:25px}
841
+ .wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper{background-color:#fafafa;padding:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules--text{padding:10px 0 10px 0;display:flex}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules--text .wcf-skeleton{margin-left:7px}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules{margin-top:20px;margin-bottom:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules .wcf-checkout-rule__and{margin:7px 0 7px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules .wcf-checkout-rule--select-box{display:flex}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules .wcf-checkout-rule--select-box .wcf-skeleton{margin-left:20px}.wcf-checkout-rules-page .wcf-checkout-rules--or{display:flex;justify-content:space-between;padding:15px 0 15px 0;margin-right:20px;margin-top:20px}.wcf-checkout-rules-page .wcf-checkout-rules--default-step{background-color:#fafafa;display:flex}.wcf-checkout-rules-page .wcf-checkout-rules--default-step .wcf-skeleton{margin-left:7px}
842
+ .wcf-checkout-rules--group_rules{display:flex;margin-bottom:10px;position:relative}.wcf-checkout-rules--group_rules:first-child{position:relative;margin-top:-17px}.wcf-checkout-rules--group_rules:not(first-child){margin-top:10px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions{display:flex}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-conditional-field-text,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-conditional-field-text{align-self:center;margin-left:10px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-select-option,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-product-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-product-cat-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-coupon-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-number-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-select2-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-select-option,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-product-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-product-cat-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-coupon-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-number-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-select2-field{margin-left:18px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-checkout-rules--and_text,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-checkout-rules--and_text{margin:0 10px 0 20px;align-self:center}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .and-close,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .and-close{align-self:center;cursor:pointer;margin:5px 0 0 10px;font-size:18px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .and-close:hover,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .and-close:hover{color:#2271b1}
843
+ .wcf-checkout-rules-page .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-checkout-rules-page .sortable-chosen .wcf-checkout-rules--group{border:1px dashed #aaa;background:#fafafb}.wcf-checkout-rules-page .wcf-checkout-rules-page--enable_option{margin-bottom:30px}.wcf-checkout-rules-page .wcf-checkout-rules-page--enable_option label{display:flex;justify-content:center;align-items:center}.wcf-checkout-rules-page div .wcf-checkout-rules-page--group_wrapper{cursor:grab}.wcf-checkout-rules-page .wcf-checkout-rules--group{padding:20px;background-color:#fafafa;border:1px dashed #fafafa}.wcf-checkout-rules-page .wcf-checkout-rules--group select{margin:0}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf__control{width:400px;border:1px solid #bebebe}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf__value-container{line-height:16px;max-height:36px;overflow-y:auto;scroll-behavior:smooth}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf__value-container .wcf__multi-value{margin:5px 3px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--add-rule__repeater{display:flex;position:relative;margin-top:-10px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--add-rule__repeater .wcf-button--secondary:hover{color:#2271b1;border:1px solid #2271b1;background-color:#fff}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step{display:flex;justify-content:space-between;margin:5px 0 5px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header__left{display:flex;justify-content:space-between;align-items:center}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header__left .wcf-checkout-rules__handle{margin-left:10px;cursor:move}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step label{width:auto;padding-left:10px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step select{width:auto;border:1px solid #bebebe}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_id{font-size:10px;color:#a3a2a2}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header{display:flex;justify-content:space-between;align-items:center}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header .dashicons{cursor:pointer;margin-right:10px;font-size:30px;line-height:.6}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper{display:inline-block;margin:45px 0 45px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-selection-field .wcf-select2-input{width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-select-option select{height:38px;border:1px solid #bebebe}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-select-option:nth-child(3) select{width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-field__data--content input{border:1px solid #bebebe;width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label{margin-right:10px;position:relative;align-items:center;display:flex}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group{display:flex;position:relative;border:1px solid #ddd;border-radius:2px;margin-left:17px;background-color:#fafafa}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group::before,.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group::after{content:"";height:11px;width:1px;background-color:#bebebe;position:absolute}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group::before{bottom:28px;right:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group::after{top:28px;left:23px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group .wcf--condition-label__and_group__text{font-weight:500;font-size:12px;color:#555;padding:5px 10px}.wcf-checkout-rules-page .wcf-checkout-rules-page--group_wrapper__footer{display:flex;margin:20px 0;width:100%;justify-content:space-between;position:relative}.wcf-checkout-rules-page .wcf-checkout-rules-page--group_wrapper__footer .wcf-button--secondary:hover{color:#2271b1;border:1px solid #2271b1;background-color:#fff}.wcf-checkout-rules-page .wcf-checkout-rules--default-step{padding:20px;margin:20px 0 20px 0;background-color:#fafafa}.wcf-checkout-rules-page .wcf-checkout-rules--default-step label{width:auto;padding-left:10px}.wcf-checkout-rules-page .wcf-checkout-rules--default-step select{width:auto;margin:0;border:1px solid #bebebe}.wcf-checkout-rules-page .wcf-checkout-rules--group_rules:last-child{margin-bottom:0}.wcf-checkout-rules-page .wcf-checkout-rules--or-group{font-weight:500;font-size:14px;background-color:#fafafa;padding:5px 15px;color:#555;border-radius:2px;letter-spacing:.5px;border:1px solid #ddd;margin:auto 0}
844
+ .wcf-custom-field-editor__content{background:#fff;padding:0;text-align:right}.wcf-custom-field-editor__content h3{display:inline-block;width:100%;font-size:18px;font-weight:500;padding:35px 0 15px;border-bottom:1px solid #ddd}.wcf-custom-field-editor__content .wcf-checkbox-field{margin-bottom:10px}.wcf-custom-field-editor__content .wcf-checkbox-field .wcf-field__data--label label{width:250px;line-height:1.1;padding-left:20px;font-weight:500;display:inline-block;font-size:14px}.wcf-custom-field-editor__content .wcf-cfe-child::before{content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);color:#ccc;font-family:dashicons;font-weight:400;margin-left:.75em;top:-6px;vertical-align:middle;position:relative}.wcf-custom-field-editor__content .wcf-field__data .wcf-cfe-child{padding-right:27px}.wcf-custom-field-editor__content table{margin-bottom:30px}.wcf-custom-field-editor__content .wcf-billings-fields-section{margin-left:15px}.wcf-custom-field-editor__content .wcf-shippings-fields-section{margin-right:15px}.wcf-custom-field-editor__content .wcf-billings-fields-section,.wcf-custom-field-editor__content .wcf-shippings-fields-section{border:none;width:calc(50% - 15px)}.wcf-custom-field-editor__content .wcf-billings-fields-section h3,.wcf-custom-field-editor__content .wcf-shippings-fields-section h3{padding:20px 0}.wcf-custom-field-editor__content .wcf-billings-fields-section #wcf-billing-fields,.wcf-custom-field-editor__content .wcf-shippings-fields-section #wcf-shipping-fields{padding:20px 0}.wcf-custom-field-editor__content .wcf-billings-fields-section #wcf-billing-fields .wcf-field__data--label,.wcf-custom-field-editor__content .wcf-shippings-fields-section #wcf-shipping-fields .wcf-field__data--label{width:190px}.wcf-billings-fields-section,.wcf-shippings-fields-section{display:inline-block;position:relative;vertical-align:top;border:none;width:calc(50% - 15px)}.wcf-billings-fields-section h3,.wcf-shippings-fields-section h3{padding:20px 0;margin:0;border:none}.wcf-billings-fields-section #wcf-billing-fields,.wcf-shippings-fields-section #wcf-shipping-fields{padding:20px 0}.wcf-billings-fields-section .wcf-field-item:first-child .wcf-field-item__bar,.wcf-shippings-fields-section .wcf-field-item:first-child .wcf-field-item__bar{margin:0}#wcf-billing-fields li,#wcf-shipping-fields li{margin-bottom:10px;overflow:hidden;touch-action:none}.wcf-custom-field-editor-buttons{display:flex}.billing-field-sortable .wcf-field-item.sortable-chosen .wcf-field-item-handle,.shipping-field-sortable .wcf-field-item.sortable-chosen .wcf-field-item-handle{background:#fafafb}.billing-field-sortable .wcf-field-item.sortable-ghost .wcf-field-item-handle,.shipping-field-sortable .wcf-field-item.sortable-ghost .wcf-field-item-handle{border-style:dashed;border-color:#ccc}.billing-field-sortable .wcf-field-item-handle .dashicons-visibility::before,.billing-field-sortable .wcf-field-item-handle .dashicons-hidden::before,.shipping-field-sortable .wcf-field-item-handle .dashicons-visibility::before,.shipping-field-sortable .wcf-field-item-handle .dashicons-hidden::before{cursor:pointer}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings{z-index:0;padding:15px;box-shadow:none}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings input{font-weight:400}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item-title{font-weight:400}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings table{margin:0}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings table th{padding:5px}.wcf-cfe-popup-content-wrapper{padding:0;max-height:85%;overflow-y:auto}.wcf-cfe-popup-content-wrapper .wcf-textarea-field textarea{width:300px;height:60px;border-color:#ddd;padding:4px 15px;border-radius:2px;font-weight:400}.wcf-cfe-popup-content-wrapper .wcf-cpf-row-header h3{border:0;padding:15px;margin:0}.wcf-cfe-popup-content-wrapper .wcf-cpf-row-header{margin:0}.wcf-cfe-popup-content-wrapper .wcf-select-option select{margin-left:0}.wcf-cfe-popup-content-wrapper table th{padding:5px 0}.wcf-cfe-popup-content-wrapper::-webkit-scrollbar{width:5px;background-color:#eee}.wcf-cfe-popup-content-wrapper::-webkit-scrollbar-thumb{width:5px;background-color:#ccc}.wcf-cfe-popup-content table{margin-bottom:0;padding:20px}.wcf-cfe-popup-content table th{margin:0;padding:5px 0}.wcf-cfe-popup-content table tr:first-child th{margin:0;padding:5px 0}.wcf-cfe-popup-content .wcf-button{margin-top:15px}.wcf-custom-field-editor-title-section{position:relative}.wcf-custom-field-editor-buttons{position:absolute;bottom:20px;left:0}
845
+ .wcf-field-item .wcf-field-item__bar{clear:both;cursor:move;line-height:1.5em;position:relative;margin:9px 0 0}.wcf-field-item .wcf-field-item__bar.wcf-field-item__disabled{opacity:.5;border:1px dashed #999}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle{border:1px solid #ececec;background:#fff;position:relative;padding:10px 15px;height:auto;min-height:20px;width:auto;line-height:initial;overflow:hidden;word-wrap:break-word}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-title{font-size:13px;font-weight:600;line-height:20px;display:inline-block;margin-right:15px;margin-left:13em}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-title span:not(.wcf-tooltip-text):nth-child(2){color:red}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-controls{display:inline-flex;font-size:12px;float:left;position:relative;left:0;top:-1px}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-controls .dashicons-arrow-down{cursor:pointer}.wcf-field-item .wcf-field-item__settings{width:auto;padding:10px 10px 10px 10px;position:relative;z-index:10;border:1px solid #ececec;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.0392156863);background:rgba(236,236,236,.2)}.wcf-field-item .wcf-field-item__settings table{width:100%}.wcf-field-item .wcf-field-item__settings table th{padding:15px 0 15px 10px}.wcf-field-item .wcf-field-item__settings table .wcf-cfe-field-enable-field{display:none}.wcf-field-item .wcf-field-item__settings label{font-weight:500;min-width:80px;padding-left:20px;display:inline-block}.wcf-field-item .wcf-field-item__settings .wcf-cpf-actions{text-align:left;color:red;cursor:pointer}.wcf-billings-fields-section .wcf-field__data--label label,.wcf-shippings-fields-section .wcf-field__data--label label{width:190px}
846
+ .wcf-cpf-row-header{display:flex;border-bottom:1px solid #e5e5e5;justify-content:space-between;margin-bottom:5px}.wcf-cfe-popup-overlay{position:fixed;text-align:right;background:rgba(0,0,0,.7294117647);z-index:9999;width:100%;height:100%;right:0;top:0}.wcf-cfe-popup-content-wrapper{width:665px;padding:0;background:#fff;border-radius:3px;right:50%;top:50%;position:absolute;transform:translate(50%, -50%)}.wcf-close-popup{text-align:left}.wcf-cfe-popup-content .wcf-template-logo-wrap{padding:15px 15px 15px 0}.wcf-cfe-popup-content table{width:100%;padding:20px;margin-bottom:0}.wcf-cfe-popup-content table th{padding:5px 0}.wcf-cfe-popup-content label{font-weight:500;min-width:80px;padding-left:20px;display:inline-block}.wcf-cfe-popup-content .wcf-button{margin-top:15px}.wcf-cfe-popup-content .wcf-select-option select{margin-left:0}
847
+ .wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content{margin-bottom:70px}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content .wcf-custom-field-editor__title{display:inline-block;width:100%;padding-bottom:15px;border-bottom:1px solid #ddd}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content .wcf-custom-field-editor__title .title{padding:15px;width:50%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form{margin-top:20px}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form table{width:100%}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form table tr .title{margin-bottom:15px;padding:10px;width:25%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form .wcf-field.wcf-submit{margin-top:20px}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form .wcf-field.wcf-submit .wcf-checkout-custom-fields__button{width:10%;padding:20px;background-position:100% center;border-left:1px #fff solid;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:100%}}
848
+ .wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-custom-field-editor__title .title{padding:15px;width:50%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content table{width:100%}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content table tr .checkbox-title{margin:20px 0;padding:10px;width:15%;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-optin-fields-section-section .wcf-custom-field-editor-title-section .title{padding:15px;width:50%;margin-bottom:30px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-optin-fields-section-section .wcf-optin-fields .title{padding:15px;width:100%;margin-top:15px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-field.wcf-submit{margin-top:20px}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-field.wcf-submit .wcf-optin-form-field__button{width:10%;padding:20px;background-position:100% center;border-left:1px #fff solid;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:100%}}
849
+ .wcf-checkout-products .wcf-checkout-products--selection,.wcf-checkout-products .wcf-checkout-products--options,.wcf-checkout-products .wcf-checkout-products--coupon{margin:5px 0 15px 0}.wcf-checkout-products .wcf-product-options-section{margin-bottom:1.5em}.wcf-checkout-products .wcf-product-options__title{display:inline-block;width:100%;font-size:18px;font-weight:500;padding:35px 0 15px;border-bottom:1px solid #ddd}.wcf-checkout-products .wcf-product-options-notice__text{border:1px solid #f4f4f4;border-radius:2px;font-weight:400;color:#444;font-size:13px;font-style:italic;padding:12px 10px;width:310px;background:#f4f4f4}.wcf-checkout-products .wcf-checkout-product-selection-field{border:1px solid #dfdfdf;border-radius:3px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--product{width:35%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--quantity{width:20%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--discount{width:40%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--actions{width:5%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header{padding:10px 20px;border-bottom:1px solid #dfdfdf;justify-content:left}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header .wcf-column--product{padding:0 20px 0 0}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product{cursor:grab;display:flex;align-items:center;padding:15px;border-bottom:1px solid #dfdfdf}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product *{line-height:1.1}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__drag{margin-left:20px;width:2%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen{cursor:grab;background:#f9f9fa;transition:all 100ms ease-in}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen.sortable-ghost{cursor:grabbing}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-data{align-items:center;width:35%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-image img{border:1px #f4f4f4 solid;width:80px;height:80px;display:block;margin:0 auto}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details *{line-height:1.1em;font-size:11px;font-weight:500;margin-bottom:5px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details .wcf-product-repeater-field__title{font-size:15px;margin-bottom:10px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__quantity input{width:150px;margin-left:20px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount .wcf-product-repeater-field__discount-type{width:auto}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount select,.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount input{width:150px;margin-left:20px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action{margin-right:auto}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action .wcf-remove-product-button:hover{color:var(--primary-color);cursor:pointer}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new{padding:20px}
850
+ .wcf-list-options{color:#444;padding:0;line-height:34px;text-align:right}.wcf-list-options table{width:100%}.wcf-list-options table th{padding:0 0 10px;font-weight:400}.wcf-list-options label{font-weight:500}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{font-size:15px;font-weight:500;color:#444}.wcf-list-options .wcf-child-field::before{content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);color:#ccc;font-family:dashicons;font-weight:400;margin-left:.75em;top:-6px;vertical-align:middle;position:relative}
851
+ .wcf-edit-step__title-wrap{display:flex;justify-content:space-between;align-items:center;padding:0 15px 10px;margin:0}.wcf-edit-step__title-wrap .wcf-steps-header--title{font-size:22px;line-height:40px;color:#363b4e;font-weight:500}.wcf-edit-step__title-wrap .wcf-steps-header__title--text{font-size:22px;line-height:40px;color:#444;font-weight:500}.wcf-edit-step__title-wrap .wcf-steps-header__title--text input{width:350px;background:#fff;color:#444;border-color:#aaa;height:40px;line-height:1;font-weight:400}.wcf-edit-step__title-wrap .wcf-steps-header__title--text input:focus{border-color:#777}.wcf-edit-step__title-wrap .wcf-step__title--editable{display:flex;align-items:center}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons a,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons button{text-decoration:none;vertical-align:middle;margin-right:10px}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-button--small{padding:9px 20px;line-height:1;font-size:14px;font-weight:400}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-button--small.wcf-saving{animation:wcf-saving 2.5s linear infinite;opacity:1;background-size:100px 100%;background-image:linear-gradient(45deg, #f06335 28%, #f78860 0, #f78860 72%, #f06335 0)}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-visibility{vertical-align:unset}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit::before,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-visibility::before{padding:5px;font-size:18px;text-decoration:none;background:#fff;display:inline-block;border-radius:100%}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-visibility:hover{color:#f16334}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view a,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view button{margin-right:15px}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view .wcf-steps-header__quick-view--button .dashicons-external{vertical-align:unset}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view .wcf-steps-header__quick-view--button .dashicons-external::before{padding:5px;font-size:18px;text-decoration:none;background:#fff;display:inline-block;border-radius:100%}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view .wcf-steps-header__quick-view--button .dashicons-external:hover{color:#f16334}.wcf-edit-step__title-wrap .wcf-steps-header--breadcrums .wcf-breadcrum--nav-item{color:#444;font-weight:500;font-size:14px}.wcf-edit-step__title-wrap .wcf-steps-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link{text-decoration:none;color:var(--primary-color)}.wcf-edit-step__title-wrap .wcf-steps-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link:hover{color:var(--primary-hv-color)}
852
+ .wcf-order-bump-page-wrapper{color:#444;text-align:right}.wcf-order-bump-page-wrapper table{width:100%}.wcf-order-bump-page-wrapper table th{padding:0 0 15px;font-weight:400}.wcf-order-bump-page-wrapper label{font-weight:500}.wcf-order-bump-page-wrapper p{font-size:15px;font-weight:400}.wcf-order-bump-page-wrapper .wcf-note-content{font-size:15px;font-weight:500;color:#444}.wcf-order-bump-page-wrapper .wcf_warning_notice{padding:10px;border-right:3px solid red;line-height:1.5}.wcf-order-bump-page-wrapper .wcf-order-bump-save-settings{margin-top:15px}
853
+ .wcf-order-bump-product-tab.is-placeholder table label{padding:15px 15px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear;width:55%}.wcf-order-bump-product-tab.is-placeholder .wcf-order-bump-page-wrapper table th{padding:0 0 10px}.wcf-order-bump-product-tab.is-placeholder .wcf-order-bump-save-settings span{padding:8px 70px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:100%}}
854
+ .wcf-order-bump-design-tab.is-placeholder label{padding:15px 15px;width:100%;display:inline-block;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__settings table label{width:100%}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__settings .wcf-order-bump-page-wrapper table th{padding:0 0 10px}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__preview .wcf-bump-order-wrap{width:100%}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__preview .wcf-content-container{padding:55px 0}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-save-settings span{padding:8px 70px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:100%}}
855
+ .wcf-order-bump-setting-tab.is-placeholder label{padding:15px 15px;width:100%;display:inline-block;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-order-bump-setting-tab.is-placeholder .wcf-field-one{width:20%}.wcf-order-bump-setting-tab.is-placeholder .wcf-field-two{width:50%}.wcf-order-bump-setting-tab.is-placeholder .wcf-order-bump-save-settings span{padding:8px 70px;background-position:100% center;background-image:linear-gradient(-90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:100%}}
856
+ .wcf-order-bumps-rules-page .wcf-rules-rules--text{padding:10px 0 10px 0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--or{display:flex;justify-content:space-between;padding:15px 0 15px 0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rule .wcf-order-bumps-rule--select-box{display:flex}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rule .wcf-order-bumps-rule--select-box .wcf-skeleton{margin-left:20px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rule .wcf-order-bumps-rule__and{margin:7px 0 7px 0}
857
+ .wcf-order-bump-design-tab{display:flex}.wcf-order-bump-design-tab .wcf-order-bump-design-tab__settings,.wcf-order-bump-design-tab .wcf-order-bump-design-tab__preview{width:50%}.wcf-order-bump-design-tab .wcf-order-bump-design-tab__preview{margin:0 30px 0 0}.wcf-order-bump-design-tab .wcf-order-bump-design-tab__settings .wcf-field__data--label label{width:230px}.wcf-order-bump-design-tab table tr:first-child .wcf-field__data--label{padding:0 0 5px}
858
+ .wcf-order-bump-preview-wrapper{transition:all .3s}.wcf-order-bump-preview-wrapper.sticky{position:sticky;top:120px}.wcf-order-bump-design-tab__preview--title{border-bottom:1px solid #ddd;padding:0 0 5px;margin-bottom:20px}.wcf-order-bump-design-tab__preview--title label{font-size:16px;font-weight:600}.wcf-bump-order-wrap{width:100%;display:block;float:none;margin:1em auto 1em;overflow:hidden}.wcf-bump-order-wrap .wcf-bump-order-field-wrap .wcf-pointing-arrow{margin-left:5px;vertical-align:middle;transform:scaleX(1)}.wcf-bump-order-wrap .wcf-bump-order-desc{line-height:1.7}.wcf-bump-order-wrap .wcf-bump-order-desc p{margin:0 0 .6em;padding:0}.wcf-bump-order-wrap .wcf-bump-order-desc p:last-child{margin:0;padding:0}.wcf-bump-order-wrap .wcf-bump-order-desc ul,.wcf-bump-order-wrap .wcf-bump-order-desc li{margin:0;padding:0;list-style-position:inside}.wcf-bump-order-wrap h1,.wcf-bump-order-wrap h2,.wcf-bump-order-wrap h3,.wcf-bump-order-wrap h4,.wcf-bump-order-wrap h5,.wcf-bump-order-wrap h6{margin:0;padding:0;font-weight:500;line-height:1.3em}@keyframes wcf-blinker{0%{visibility:hidden}40%{visibility:hidden}}.wcf-blink{animation:wcf-blinker .8s linear infinite;animation-direction:alternate}.wcf-bump-order-style-5{background:#fef7f5;border-radius:3px;display:inline-block;padding:15px;position:relative;width:100%;overflow:unset}.wcf-bump-order-style-5 .wcf-bump-order-field-wrap{-js-display:flex;display:flex;align-items:center}.wcf-bump-order-style-5 .wcf-bump-order-label{font-weight:600;color:#333;font-size:16px;line-height:1}.wcf-bump-order-style-5 .wcf-bump-order-label,.wcf-bump-order-style-5 .wcf-bump-order-desc{margin:0 0 15px 0}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action{border-width:2px;border-style:solid;border-color:#dea97c;border-radius:3px;line-height:1.2;padding:8px 18px;width:-moz-fit-content;width:fit-content;vertical-align:middle}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action.wcf-ob-action-button{border:none;padding:0;line-height:unset}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]{height:20px;width:20px;margin:0 0 0 10px;border-radius:3px;color:#f16334}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]:checked::before{font:normal normal 400 21px/1 dashicons;content:"";width:20px;top:2px;position:relative;right:1px}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button{margin:0;border:1px solid #ccc;color:#333;padding:8px 20px;border-radius:3px;text-decoration:none;text-transform:none}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-processing{opacity:.7;background:#fff;pointer-events:none}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-bump-remove-from-cart:hover{color:#fff;background:#e43b2c}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button:hover{cursor:pointer}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button.processing{background:linear-gradient(to right, #fff 50%, rgb(186, 241, 202) 50%) left;background-size:210%;border-color:#baf1ca;transition:.5s ease-out}.wcf-bump-order-style-5 .wcf-bump-order-info{display:flex;align-items:center}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-top{display:inline-block;text-align:center}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-top .wcf-bump-order-image{margin:0 0 15px 0;display:inline-block;text-align:center;max-width:100%}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-top .wcf-bump-order-action{display:inline-block}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right .wcf-bump-order-image{margin:0 15px 0 0}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right .wcf-bump-order-text{text-align:left}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right .wcf-bump-order-action{display:inline-block}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right{margin:0 15px 0 0}.wcf-bump-order-style-5 .wcf-bump-order-image{max-width:50%;display:inline-flex;margin:0 0 0 15px}.wcf-bump-order-style-5 .wcf-bump-order-image img{max-width:100%}.wcf-bump-order-style-4{border-width:1px;border-style:dashed;border-color:#f06434;background:#fff;border-radius:3px;display:inline-block;padding:15px;position:relative;width:100%;overflow:unset}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap{display:flex;align-items:center}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-info{flex:0 0 calc(100% - 100px);-webkit-flex:0 0 calc(100% - 115px)}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action{text-align:left;min-width:115px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button{margin:0;border:1px solid #ccc;color:#333;padding:8px 20px;border-radius:3px;text-decoration:none;text-transform:none}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-processing{opacity:.7;background:#fff;pointer-events:none}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-bump-remove-from-cart:hover{color:#fff;background:#e43b2c}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button:hover{cursor:pointer}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button.processing{background:linear-gradient(to right, #fff 50%, rgb(186, 241, 202) 50%) left;background-size:210%;border-color:#baf1ca;transition:.5s ease-out}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]{display:none}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]:checked::before{font:normal normal 400 20px/1 cartflows-icon;width:20px;top:2px;position:relative;right:2px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image{display:inline;margin-left:25px;align-self:center;-webkit-flex:0 0 100px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image img{width:100px;vertical-align:middle}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label{font-size:16px;margin-bottom:5px;font-weight:500;color:#f06434}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-text{align-items:center;justify-content:space-between;width:100%}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-desc{font-size:13px}.wcf-bump-order-style-4 .wcf-content-container{padding:25px 0}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{display:block;text-align:center}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-action{text-align:center;margin:10px 0 0 0}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:left}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-action{min-width:80px}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-text{margin:0 15px}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-image{margin:0 15px 0 0}.wcf-bump-order-style-3{border-width:2px;border-style:solid;border-color:#f06434;background:rgba(0,0,0,0);display:inline-block;padding:15px;position:relative;width:100%;overflow:unset}.wcf-bump-order-style-3 .wcf-bump-order-info{display:flex;align-items:center;max-width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content{padding:0}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap{display:flex;align-items:center}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action{align-self:center;max-width:75px;text-align:center;width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]{height:20px;width:20px;margin:0 0 0 10px;border-radius:3px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]:checked::before{font:normal normal 400 21px/1 dashicons;width:20px;height:20px;top:2px;position:relative;right:2px;content:"";color:#f16334}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label input[type=checkbox]{height:20px;width:20px;margin:0 0 0 10px;border-radius:3px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label input[type=checkbox]:checked::before{font:normal normal 400 21px/1 dashicons;width:20px;height:20px;top:2px;position:relative;right:2px;content:"";color:#f16334}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image{width:100%;margin-left:10px;align-self:center}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image img{height:80px;width:80px;vertical-align:middle;max-width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label{font-size:16px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-text{align-self:center;margin-right:10px;max-width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-desc{font-size:13px;margin-top:10px}.wcf-bump-order-style-3 .wcf-content-container{padding:25px 0}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{display:block}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-action,.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-info,.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-text{display:block;text-align:center}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-image{max-width:100%;text-align:center}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-image img{width:100%;height:auto}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:left}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-label input[type=checkbox]{margin:0 10px 0 0}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-label .wcf-pointing-arrow{transform:rotate(-180deg);display:inline-block;margin:0 10px}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-text{margin-left:10px}.wcf-bump-order-style-2{border:2px red dashed;border-radius:3px;display:inline-block}.wcf-bump-order-style-2 .wcf-bump-order-offer{padding:20px 25px;font-size:1.1em;font-weight:600}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-right{width:100%}.wcf-bump-order-style-2 .wcf-bump-order-desc{padding:0 25px 20px}.wcf-bump-order-style-2 .wcf-bump-order-field-wrap{border-top:2px red dashed;padding:15px 25px;margin:0;font-size:1.1em;display:block}.wcf-bump-order-style-2 .wcf-bump-order-field-wrap .wcf-bump-order-label{margin-right:1px}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-left{width:38%;display:inline-block;vertical-align:middle}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-left img{padding:0 20px 25px 0;width:100%}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{width:60%;display:inline-block;vertical-align:middle}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer{text-align:center}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{text-align:center}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left,.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-right{display:block;width:100%;text-align:center}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left img{padding:25px 25px 0 25px}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer{text-align:left}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:left}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=checkbox],.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=radio]{margin-right:5px}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap .wcf-pointing-arrow{transform:rotate(-180deg);margin-top:-5px}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-right{display:inline-block;width:60%;vertical-align:middle;text-align:left}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-left{width:38%;display:inline-block}.wcf-bump-order-style-2 .wcf-bump-order-field-wrap,.wcf-bump-order-style-2 .wcf-bump-order-field-wrap *{cursor:pointer}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-2 .wcf-bump-order-offer-content-left{width:14%}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-2 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{width:85%}.wcf-show-coupon-field-toggle{padding-top:1em}.wcf-bump-order-style-1{background:#f1f1f1;border-style:none;border-width:2px;border-color:red;border-radius:3px;display:inline-block}.wcf-bump-order-style-1 .wcf-bump-order-offer{padding:0 25px 10px;font-size:1.2em}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{text-align:center}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left,.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-right{display:block;width:100%;text-align:center}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left img{padding:25px 25px 0 25px}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:left}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=checkbox],.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=radio]{margin-right:5px}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap .wcf-pointing-arrow{transform:rotate(-180deg);margin-top:-5px}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-right{display:inline-block;width:60%;vertical-align:middle;text-align:left}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-left{width:38%;display:inline-block}.wcf-bump-order-style-1 .wcf-content-container{padding:25px 0}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-right{width:100%}.wcf-bump-order-style-1 .wcf-bump-order-desc{padding:0 25px}.wcf-bump-order-style-1 .wcf-bump-order-field-wrap{border-style:none;border-width:2px;border-color:red;padding:20px 25px;margin:0;font-size:1.1em;display:block;background:#ddd}.wcf-bump-order-style-1 .wcf-bump-order-field-wrap .wcf-bump-order-label{margin-right:1px}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-left{width:38%;display:inline-block;vertical-align:middle}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-left img{padding:0 20px 0 0}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{width:60%;display:inline-block;vertical-align:middle}.wcf-bump-order-style-1 .wcf-bump-order-field-wrap,.wcf-bump-order-style-1 .wcf-bump-order-field-wrap *{cursor:pointer}.wcf-embed-checkout-form .woocommerce #payment .wcf-bump-order-wrap input[type=checkbox]{margin:0 0 0 4px}.wcf-embed-checkout-form-two-column .wcf-bump-order-style-1.wcf-after-customer,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-2.wcf-after-customer,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-3.wcf-after-customer{float:right;width:calc(55% - 40px)}.wcf-embed-checkout-form-two-column .wcf-bump-order-style-1.wcf-after-order,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-2.wcf-after-order,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-3.wcf-after-order{margin:1em auto 0}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-1 .wcf-bump-order-offer-content-left{width:14%}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-1 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{width:85%}.wcf-bump-order-wrap .wcf-bump-order-offer-content-left img{max-width:100%;padding:25px}
859
  .wcf-order-bump-setting-tab table tr:first-child .wcf-field__data--label{padding:0 0 5px}
860
+ .wcf-order-bump-content-tab{display:flex}.wcf-order-bump-content-tab .wcf-order-bump-content-tab__settings,.wcf-order-bump-content-tab .wcf-order-bump-content-tab__preview{width:50%}.wcf-order-bump-content-tab .wcf-order-bump-content-tab__preview{margin:0 30px 0 0}.wcf-order-bump-content-tab .wcf-order-bump-content-tab__settings .wcf-field__data--label label{width:230px}.wcf-order-bump-content-tab .wcf-number-field input[type=number]{padding-left:7px}.wcf-order-bump-content-tab table tr:first-child .wcf-field__data--label{padding:0 0 5px}
861
+ .wcf-order-bumps-rules--group_rules{display:flex;margin-bottom:10px;position:relative}.wcf-order-bumps-rules--group_rules:first-child{position:relative;margin-top:-17px}.wcf-order-bumps-rules--group_rules:not(first-child){margin-top:10px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions{display:flex}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-conditional-field-text,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-conditional-field-text{align-self:center;margin-left:10px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-select-option,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-product-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-product-cat-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-coupon-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-number-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-select2-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-select-option,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-product-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-product-cat-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-coupon-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-number-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-select2-field{margin-left:18px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-order-bumps-rules--and_text,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-order-bumps-rules--and_text{margin:0 10px 0 20px;align-self:center}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .and-close,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .and-close{align-self:center;cursor:pointer;margin:5px 0 0 10px;font-size:18px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .and-close:hover,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .and-close:hover{color:#2271b1}
862
+ .wcf-order-bumps-rules-page .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-order-bumps-rules-page .sortable-chosen .wcf-order-bumps-rules--group{border:1px dashed #aaa;background:#fafafb}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--enable_option{margin-bottom:30px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--enable_option label{display:flex;justify-content:center;align-items:center}.wcf-order-bumps-rules-page div .wcf-order-bumps-rules-page--group_wrapper{cursor:grab}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group{padding:20px;background-color:#fafafa;border:1px dashed #fafafa}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group select{margin:0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf__control{width:400px;border:1px solid #bebebe}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf__value-container{line-height:16px;max-height:36px;overflow-y:auto;scroll-behavior:smooth}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf__value-container .wcf__multi-value{margin:5px 3px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--add-rule__repeater{display:flex;position:relative;margin-top:-10px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--add-rule__repeater .wcf-button--secondary:hover{color:#2271b1;border:1px solid #2271b1;background-color:#fff}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper{display:inline-block;margin:50px 0 45px 0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-selection-field .wcf-select2-input{width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-select-option select{height:38px;border:1px solid #bebebe}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-select-option:nth-child(3) select{width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-field__data--content input{border:1px solid #bebebe;width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label{margin-right:10px;position:relative;align-items:center;display:flex}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group{display:flex;position:relative;border:1px solid #ddd;border-radius:2px;margin-left:17px;background-color:#fafafa}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group::before,.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group::after{content:"";height:11px;width:1px;background-color:#bebebe;position:absolute}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group::before{bottom:28px;right:20px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group::after{top:28px;left:23px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group .wcf--condition-label__and_group__text{font-weight:500;font-size:12px;color:#555;padding:5px 10px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header{display:flex;justify-content:space-between;align-items:center}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-order-bumps-rules--group_header__left{display:flex;justify-content:space-between;align-items:center}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-order-bumps-rules--group_header__left .wcf-group-header--text{font-weight:500;font-size:14px;color:#444}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-order-bumps-rules--group_header__left .wcf-order-bumps-rules__handle{margin-left:10px;cursor:move;font-size:20px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-checkout-rules--group_header__right .dashicons{cursor:pointer;margin-right:10px;font-size:30px;line-height:.6}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-checkout-rules--group_header__right .wcf-order-bumps-rules--group_id{font-size:10px;color:#a3a2a2}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--group_wrapper__footer{display:flex;margin:20px 0;width:100%;justify-content:space-between;position:relative}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--group_wrapper__footer .wcf-button--secondary:hover{color:#2271b1;border:1px solid #2271b1;background-color:#fff}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group_rules:last-child{margin-bottom:0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--or_group{font-weight:500;font-size:14px;background-color:#fafafa;padding:5px 15px;color:#555;border-radius:2px;letter-spacing:.5px;border:1px solid #ddd;margin:auto 0}
863
+ .wcf-edit-ob__title-wrap{display:flex;justify-content:space-between;align-items:center;padding:0 15px 10px;margin:0}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap{display:flex}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status{margin-right:18px;align-self:center;display:flex;position:relative}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch{border:1px solid #ccc;cursor:pointer;text-indent:-999em;display:block;width:36px;height:18px;border-radius:30px;position:relative;box-sizing:border-box;transition:all .3s ease;box-shadow:inset 0 0 0 0 rgba(0,0,0,0)}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch:focus{outline:none}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch::before{border-radius:50%;background:#fff;content:"";position:absolute;display:block;width:12px;height:12px;top:2px;right:4px;transition:all .15s ease;box-shadow:0 1px 3px rgba(0,0,0,.3)}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch[data-wcf-order-bump-switch=true]{box-shadow:inset 0 0 0 11px var(--primary-border-color);border-color:var(--primary-border-color)}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch[data-wcf-order-bump-switch=true]::before{transform:translateX(-16px)}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch[data-wcf-order-bump-switch=false]{background:#ccc}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-spinner{float:none;margin:0;animation:spin 2s linear infinite;position:absolute;left:0;right:45px;color:#434343}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(-360deg)}}.wcf-edit-ob__title-wrap .wcf-ob-header--title{font-size:22px;line-height:40px;color:#363b4e;font-weight:500}.wcf-edit-ob__title-wrap .wcf-ob-header__title--text{font-size:22px;line-height:40px;color:#444;font-weight:500}.wcf-edit-ob__title-wrap .wcf-ob-header__title--text input{width:350px;background:#fff;color:#444;border-color:#aaa;height:40px;line-height:1;font-weight:400}.wcf-edit-ob__title-wrap .wcf-ob-header__title--text input:focus{border-color:#777}.wcf-edit-ob__title-wrap .wcf-ob__title--editable{display:flex;align-items:center}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons{display:inline;vertical-align:middle}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons a,.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons button{text-decoration:none;vertical-align:middle;margin-right:10px}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-button--small{padding:9px 20px;line-height:1;font-size:14px;font-weight:400}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-button--small.wcf-saving{animation:wcf-saving 2.5s linear infinite;opacity:1;background-size:100px 100%;background-image:linear-gradient(45deg, #f06335 28%, #f78860 0, #f78860 72%, #f06335 0)}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-ob-header__title--edit .dashicons-edit{vertical-align:unset}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-ob-header__title--edit .dashicons-edit::before{padding:5px;font-size:18px;text-decoration:none;background:#fff;display:inline-block;border-radius:100%}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-ob-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-edit-ob__title-wrap .wcf-ob-header--breadcrums .wcf-breadcrum--nav-item{color:#444;font-weight:500;font-size:14px}.wcf-edit-ob__title-wrap .wcf-ob-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link{text-decoration:none;color:var(--primary-color)}.wcf-edit-ob__title-wrap .wcf-ob-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link:hover{color:var(--primary-hv-color)}
admin-core/assets/build/editor-app.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('react', 'react-dom', 'wp-api-fetch', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n'), 'version' => '3cc076c91f42ed370f7b6c8d7a311150');
1
+ <?php return array('dependencies' => array('react', 'react-dom', 'wp-api-fetch', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n'), 'version' => 'd234c05d2afe0ceb6c943a07f36be6fc');
admin-core/assets/build/editor-app.css CHANGED
@@ -1,108 +1,863 @@
1
- :root{--primary-color:#f06434;--primary-hv-color:#ee4710;--primary-border-color:#f06434;--secondary-color:#f5f6f7;--secondary-border-color:#ddd;--secondary-hv-color:#edeff1}.wcf-hide{display:none!important}.wcf-button{box-sizing:border-box;display:inline;font-size:14px;font-weight:400;line-height:1;line-height:1.5;min-height:36px;padding:7px 18px}.wcf-button,.wcf-button--small{align-items:center;border-radius:2px;border-style:solid;border-width:1px;cursor:pointer;display:inline-block;margin:0;text-decoration:none;text-shadow:none;vertical-align:middle}.wcf-button--small{font-size:11px;line-height:2;min-height:26px;padding:0 8px}.wcf-button--primary{background:var(--primary-color);border-color:var(--primary-border-color);color:#fff}.wcf-button--primary:focus,.wcf-button--primary:hover{background:var(--primary-hv-color);border-color:var(--primary-border-color);box-shadow:none;color:#fff;outline:none}.wcf-button--secondary{background:var(--secondary-color);border-color:var(--secondary-border-color);color:#3a3a3a}.wcf-button--secondary:focus,.wcf-button--secondary:hover{background:var(--secondary-hv-color);border-color:var(--secondary-border-color);box-shadow:none;color:#3a3a3a}.wcf-popup-header-title{align-items:center;color:#444;display:flex;font-size:15px;font-weight:500;letter-spacing:0;text-decoration:none;text-transform:none}.wcf-popup-header-title .cartflows-logo-icon{padding:15px}.wcf-popup-header-action{align-items:center;border-left:1px solid #ddd;color:#ccc;cursor:pointer;display:inline-block;display:flex;padding:15px;position:relative}.wcf-popup-header-action .dashicons{line-height:1}.wcf-popup-header-action:after{font-size:25px}.wcf-popup-header-action:hover{color:#aaa}.wcf-error--info,.wcf-error-message--toggle,.wcf-message{display:block;font-size:12px;padding:5px}.wcf-message--error{color:var(--primary-color)}.wcf-error-message--toggle{cursor:pointer}.wcf-error--info{background-color:#f2f2f2;border:1px dashed #ccc;border-radius:3px;padding:10px}
2
- .wcf-global-nav-menu{align-items:center;background:#fff;border-bottom:1px solid #ddd;border-radius:2px 2px 0 0;box-shadow:none;display:flex;margin:0;padding:2px 20px 0}.wcf-global-nav-menu .wcf-title{max-width:170px}.wcf-global-nav-menu .wcf-title .wcf-logo{width:120px}.wcf-global-nav-menu .wcf-global-nav__items{align-items:center;display:flex}.wcf-global-nav-menu .wcf-global-nav-menu__tab{background:transparent;border:none;border-bottom:2px solid #fff;box-shadow:none;color:#444;cursor:pointer;font-size:14px;font-weight:400;letter-spacing:.225px;line-height:1;margin:0 0 -1px;max-width:100%;outline:none;padding:25px 30px 23px;text-align:center;text-decoration:none}.wcf-global-nav-menu .wcf-global-nav-menu__tab:hover{border-bottom:2px solid #f06335;color:#f06335}.wcf-global-nav-menu .wcf-global-nav-menu__tab.wcf-global-nav-menu__tab--active{background:none;border-bottom:2px solid #f06335;color:#f06335}.wcf-menu-page-content{font-size:14px;font-weight:400;margin:0 auto;width:100%}.wcf-global-nav-menu .wcf-title{align-items:center;border-right:1px solid #ddd;display:flex;max-width:140px}.wcf-global-nav-menu{left:160px;position:fixed;top:32px;width:calc(100% - 160px);z-index:10}
3
- .wcf-editor-app .wcf-settings{margin:0}.wcf-editor-app .wcf-steps-page-wrapper{border-top:1px solid #ededed;margin-top:-1px;padding:30px}
4
- .wcf-edit-flow--nav{background:#fff;border-bottom:1px solid #ededed;box-shadow:none;display:flex;margin:0;padding:0}.wcf-edit-flow--nav .wcf-steps-header--actions{align-items:center;display:flex;line-height:1;margin-left:auto;padding-right:30px;position:relative}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-actions-menu__dropdown .wcf-step__action-btn{align-items:center;cursor:pointer;display:flex}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-actions-menu__dropdown .wcf-step__action-btn .dashicons{margin-right:5px}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-steps-header--label{color:#444;font-size:15px;font-weight:400;line-height:1;margin-right:15px}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-flow__action-menu{color:#aaa;cursor:pointer;display:inline-block;width:13px}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-flow__action-menu:hover{color:#333}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-flow__action-menu .dashicons-ellipsis{transform:rotate(90deg)}.wcf-edit-flow--nav a.wcf-edit-flow--nav__back-to-flow{padding:18px 25px 18px 18px;text-decoration:none}.wcf-edit-flow--nav a.wcf-edit-flow--nav__back-to-flow:hover{background:#fafafa}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button{background:transparent;border:none;cursor:pointer;line-height:1}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button .dashicons{color:#444;font-size:15px;height:-moz-fit-content;height:fit-content;margin-right:8px;width:-moz-fit-content;width:fit-content}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button .wcf-back-button{color:#444;font-size:15px}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button:focus,.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-flow--nav__tab{background:transparent;border:1px solid #fff;border-bottom:1px solid #ededed;border-top:0;box-shadow:none;color:#434343;cursor:pointer;font-size:15px;font-weight:300;line-height:1;margin-bottom:-1px;max-width:100%;outline:none;padding:18px 25px;text-align:center;text-decoration:none}.wcf-edit-flow--nav__tab:hover{background:#f8f8f9;border:1px solid #f8f8f9;border-top:0;color:#444}.wcf-edit-flow--nav__tab:first-child{border-left:0}.wcf-edit-flow--nav__tab:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-flow--nav__tab--active,.wcf-edit-flow--nav__tab--active:hover{background:#fff;border:1px solid #ededed;border-bottom-color:#fff;border-top:0;color:#444;font-weight:300}.wcf-edit-flow--nav__tab--active:hover{box-shadow:none}.wcf-edit-flow--nav__tab--active:first-child{border-left:0}.wcf-edit-flow--nav__tab:focus,.wcf-edit-step--nav__back-to-flow--button:focus,.wcf-edit-step--nav__back-to-flow:focus,.wcf-edit-step--nav__tab:focus{box-shadow:none;color:#444;outline:none}
5
- .wcf-steps-page-wrapper{border-top:1px solid #ededed;margin-top:-1px;padding:30px}.wcf-steps-page-wrapper .wcf-list-steps{margin-bottom:15px}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step{background:#f9f9f9;border:1px dashed #cdcdcd;color:#444;display:block;font-weight:400;padding:20px;text-align:center;transition:all .1s ease-in;width:100%}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover{background:transparent;border-color:#aaa;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover .dashicons-plus:before{background:transparent;color:#016087}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step:hover .wcf-create-step--text{border-color:#006799;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step--text{background:transparent;font-size:17px;line-height:1;margin-left:7px}.wcf-no-step-notice{color:#444;font-size:15px;font-weight:400;padding:20px 0 40px}
6
- .wcf-steps-header{align-items:center;display:flex;flex-flow:row;justify-content:space-between;margin:0 0 25px}.wcf-steps-header .wcf-steps-header--title{color:#444;font-size:20px;font-weight:500;line-height:40px}.wcf-steps-header .wcf-step__title--editable .new-flow-title{background:#fafafa;border-color:#ccc;line-height:2;padding:2px 15px}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:before{background:#eee;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a{margin-left:10px;text-decoration:none;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:focus,.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:hover{box-shadow:none;outline:none}.wcf-steps-header .wcf-create-step{align-items:center;display:flex;justify-content:space-between}.wcf-steps-header .wcf-create-step .dashicons{font-size:15px;height:-moz-fit-content;height:fit-content;margin-right:10px;width:-moz-fit-content;width:fit-content}
7
  .wcf-step-wrap{margin-bottom:20px}.invalid-step{pointer-events:none}.invalid-step .wcf-step .wcf-step__col-tags .wcf-flow-badge{color:red}
8
- .wcf-list-steps .sortable-chosen{background:#fafafb}.wcf-list-steps .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-list-steps .sortable-chosen .wcf-step{background:#fafafb;border:1px dashed #aaa;border-left:4px solid #ddd}.wcf-list-steps .wcf-step{align-items:center;background:#fff;border:1px solid #ddd;border-left-width:4px;border-radius:2px;box-shadow:none;box-sizing:border-box;cursor:grab;display:flex;justify-content:space-between;padding:20px;position:relative}.wcf-list-steps .wcf-step.wcf-step__no-product{border-left:4px solid #f06335}.wcf-list-steps .wcf-step .wcf-step__title a{text-decoration:none}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown .dashicons,.wcf-list-steps .wcf-step .wcf-step__actions .wcf-step__basic-action-btns .dashicons{font-size:18px;margin-right:5px;vertical-align:middle}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown a{background:#fff;border-top:1px solid hsla(0,0%,90%,.5);color:#666;display:block;font-size:14px;height:auto;padding:15px;text-align:left;text-decoration:none;transition:all .2s linear}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown a:hover{background:#fafafa;color:#1e8cbe}.wcf-list-steps .wcf-step .wcf-loader{align-items:center;display:flex;justify-content:center;left:45%;position:absolute}.wcf-list-steps .wcf-step .wcf-dot-loader{animation:grow 1.2s ease-in-out infinite;background-color:#f06335;border-radius:50%;height:20px;position:relative;width:20px}.wcf-list-steps .wcf-step .wcf-dot-loader--2{animation:grow 1.2s ease-in-out .15555s infinite;margin:0 10px}.wcf-list-steps .wcf-step .wcf-dot-loader--3{animation:grow 1.2s ease-in-out .3s infinite}@keyframes grow{0%,40%,to{transform:scale(0)}40%{transform:scale(1)}}.wcf-list-steps .step-overlay :not(.wcf-loader){opacity:.1}.wcf-list-steps .wcf-step-wrap.sortable-chosen.sortable-ghost .wcf-step{cursor:grabbing}.wcf-step__col-title{width:50%}.wcf-step__title-text{margin-left:10px}.wcf-step__handle{cursor:move}.wcf-step__invalid-step{pointer-events:none;touch-action:none}.wcf-global-checkout-error-badge{background-color:#d54e21;border-radius:0;color:#fff;font-size:.75em;font-weight:400;line-height:.7em;margin-left:10px;padding:.3em .6em;text-align:center;vertical-align:middle}.wcf-flow-badge__invalid-step{color:red}.wcf-no-product-badge{background-color:#f16334;font-size:.75em;font-weight:400}.wcf-global-checkout-badge,.wcf-no-product-badge{border-radius:0;color:#fff;line-height:.7em;margin-left:10px;padding:.3em .6em;text-align:center;vertical-align:middle}.wcf-global-checkout-badge{background-color:#0072a7;font-size:.7em;font-weight:600}.wcf-step__action-btns{align-items:center;display:flex}.wcf-step__action-btns .wcf-step__action-btn{font-size:1em;line-height:.9em;margin-right:15px;text-align:center;text-decoration:none;vertical-align:middle}.wcf-step__action-btns .wcf-step__action-btn.wcf-pro{cursor:not-allowed;opacity:.65}.wcf-step__action-btns .wcf-step__action-menu{color:#aaa;cursor:pointer;display:inline-block;position:relative;top:4px;width:13px}.wcf-step__action-btns .wcf-step__action-menu:hover{color:#333}.wcf-step__action-btns .wcf-step__action-menu .dashicons-ellipsis{font-size:18px;transform:rotate(90deg);vertical-align:super}.wcf-flow-badge,.wcf-step-badge{background-color:#e3e4e8;border-radius:0;color:#000;font-size:.75em;font-weight:400;line-height:.7em;margin-left:10px;padding:.3em .6em;text-align:center;text-transform:capitalize;vertical-align:middle}.wcf-invalid-sequence-badge{background-color:#d54e21;border-color:#d6e9c6;color:#fff}.wcf-yes-next-badge{background-color:#dff0d8;color:#3c763d}.wcf-no-next-badge{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.wcf-step__col-tags .wcf-flow-badge{background-color:#e3e4e8;border:1px solid rgba(67,67,67,.067);border-radius:2px;color:#000;display:inline-block;font-size:.9em;font-weight:500;line-height:.7em;margin-left:0;padding:8px 0;text-align:center;text-transform:capitalize;vertical-align:middle;width:75px}.wcf-step__col-tags .wcf-flow-badge,.wcf-step__col-tags .wcf-step-badge{margin-left:0}.wcf-step:hover{border-color:#e4e4e4;box-shadow:0 1px 4px 0 rgba(32,33,36,.15)}
9
- .wcf-actions-menu__dropdown{background:#fafafa;border-radius:3px;border-top:1px solid hsla(0,0%,90%,.5);box-shadow:0 2px 6px rgba(0,0,0,.15);opacity:0;position:absolute;right:-1px;visibility:hidden;width:175px;z-index:1}.wcf-actions-menu__dropdown a{background:#fafafa;border-top:1px solid hsla(0,0%,90%,.5);color:#666;display:block;font-size:13px;height:auto;padding:9px 12px;text-align:left;text-decoration:none;transition:all .2s linear}.wcf-actions-menu__dropdown a:hover{background:#f2f2f2;color:#1e8cbe}.wcf-actions-menu__dropdown a:first-child{border:none}.wcf-actions-menu__dropdown:after{background:#fafafa;border:none;box-shadow:-2px -1px 3px rgba(0,0,0,.07);content:"";height:14px;position:absolute;right:19px;transform:rotate(45deg);width:14px;z-index:-7}.wcf-actions-menu__dropdown.wcf-edit-show{opacity:1;visibility:visible}.wcf-actions-menu__dropdown.wcf-edit-above{right:10px;top:10px;transform:translateY(-100%)}.wcf-actions-menu__dropdown.wcf-edit-above:after{bottom:-7px}.wcf-actions-menu__dropdown.wcf-edit-below{bottom:5px;right:10px;transform:translateY(100%)}.wcf-actions-menu__dropdown.wcf-edit-below:after{top:-7px}.wcf-actions-menu__dropdown .wcf-pro{cursor:not-allowed;opacity:.65}
10
- .wcf-ab-test{background:#fff;border:1px solid #ddd;border-left-width:4px;padding:20px}.wcf-ab-test:hover{border-color:#e4e4e4;box-shadow:0 1px 4px 0 rgba(32,33,36,.15)}.wcf-ab-test .wcf-step{background:#fafafb;border:1px solid #ddd;cursor:move;margin-bottom:15px}.wcf-ab-test .wcf-step .wcf-step__col-title .wcf-step__handle{display:none}.wcf-ab-test .wcf-step:hover{border-color:#ddd;box-shadow:none}.wcf-ab-test .wcf-step__handle{margin-right:10px}.wcf-ab-test.sortable-chosen{background:#fafafb;border:1px dashed #ddd;border-left:4px solid #ddd;cursor:move}.wcf-ab-test.sortable-chosen .wcf-step{border:1px solid #aaa}.wcf-ab-test .wcf-abtest-control-badge{background:#f16334;color:#fff}.wcf-ab-test .wcf-abtest-variation-badge{background:#1e8cbe;color:#fff}.wcf-ab-test .wcf-archived-step .wcf-archived-steps:last-child{margin-bottom:0}.wcf-ab-test .wcf-archived-step .wcf-step__title{display:inline}.wcf-ab-test-head{align-items:center;display:flex;justify-content:space-between;margin:0 0 20px}.wcf-ab-test-head .wcf-steps-action-buttons .dashicons-admin-generic,.wcf-ab-test-head .wcf-steps-action-buttons .wcf-start-split-test,.wcf-ab-test-head .wcf-steps-action-buttons .wcf-stop-split-test{color:#444;margin-left:10px;text-decoration:none}.wcf-ab-test-head .wcf-steps-action-buttons .dashicons-admin-generic.is-loading,.wcf-ab-test-head .wcf-steps-action-buttons .wcf-start-split-test.is-loading,.wcf-ab-test-head .wcf-steps-action-buttons .wcf-stop-split-test.is-loading{animation:spin 4s linear infinite}.wcf-ab-test-head .wcf-steps-action-buttons .wcf-stop-split-test{color:var(--primary-color)}.wcf-ab-test-head .wcf-steps-action-buttons .wcf-start-split-test{color:green}.wcf-ab-test-head .wcf-steps-action-buttons:hover .dashicons-admin-generic,.wcf-ab-test-head .wcf-steps-action-buttons:hover .wcf-stop-split-test{color:#006799}@keyframes spin{to{transform:rotate(1turn)}}
11
- .wcf-ab-test-settings-popup-overlay{background:rgba(0,0,0,.729);height:100%;left:0;position:fixed;text-align:left;top:0;width:100%;z-index:9999}.wcf-ab-test-popup-content{background:#fff;border-radius:2px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:510px;z-index:100}.wcf-ab-test-settings-popup-overlay .wcf-popup-title-wrap{font-size:14px;font-weight:600;padding-left:8px}.wcf-content-wrap{background:#fff;border-radius:0 0 2px 2px;padding:25px}.wcf-ab-settings-header .wcf-cartflows-title{font-size:16px;font-weight:500}.wcf-ab-settings-content .wcf-ab-settings-content__title{display:inline-block;font-size:15px;font-weight:500;margin-bottom:15px;width:100%}.wcf-ab-settings-header{border-bottom:1px solid rgba(0,0,0,.1);box-shadow:0 0 8px rgba(0,0,0,.2);display:flex;justify-content:space-between;padding:15px}.wcf-ab-settings-header .close-icon .wcf-cartflow-icons{color:#ccc;cursor:pointer;display:inline-block;position:relative}.wcf-ab-settings-header .close-icon .wcf-cartflow-icons:hover{color:#aaa}.wcf-ab-settings-footer{display:flex;justify-content:flex-end;padding:10px 35px 0}.wcf-ab-test-save.button-primary.updating-message:before{color:#fff;font-size:18px;margin:7px 5px 0 -4px}.wcf-popup-actions-wrap .button.wcf-ab-test-cancel{display:none}.wcf-popup-actions-wrap .button.wcf-ab-test-save{padding:3px 25px}.wcf-traffic-field{align-items:center;display:flex;margin-bottom:15px}.wcf-traffic-field .wcf-step-name{line-height:1.8;margin-right:15px;width:160px}.wcf-traffic-field .wcf-traffic-slider-wrap{align-items:center;display:flex;width:300px}.wcf-traffic-field .wcf-traffic-range{width:190px}.wcf-traffic-field .wcf-traffic-range input{height:-moz-fit-content;height:fit-content;width:150px}.wcf-traffic-field .wcf-traffic-value{align-items:center;display:flex;width:90px}.wcf-traffic-value .wcf-text-field input{height:unset;padding:0 0 0 8px}.wcf-traffic-value input{width:65px}.wcf-traffic-value input:after{color:#b6c3cf;content:"%";font-size:10px;left:43px;position:absolute;top:10px}.wcf-traffic-value .wcf-field__data--content{margin-right:10px}.wcf-traffic-input-field{margin-left:1px!important;width:65px!important}.wcf-traffic-value{display:flex}.cartflows-logo-icon{font-size:18px}
12
- .wcf-field__desc{color:#666;font-style:italic;font-weight:400;line-height:1.5;margin-top:10px}.wcf-tooltip-icon{display:inline-block;margin-left:5px;vertical-align:middle}
13
  .wcf-checkbox-field label{margin-right:10px}.wcf-checkbox-field input[type=checkbox]{margin:0 7px 0 0}
14
- .wcf-radio-field .wcf-field__data{display:block}.wcf-radio-field .wcf-field__data--label{padding:0 0 10px}.wcf-radio-field input[type=radio]{margin:0 7px 0 0}.wcf-radio-field .wcf-radio-field__option-desc{color:#777;font-style:italic;font-weight:400;line-height:1.5;margin-top:10px}.wcf-radio-field .wcf-radio-field__option.wcf-child-field{margin-left:15px}
15
- .wcf-select-option select{background-position:right 10px top 55%;background-size:15px;border:1px solid #ddd;border-radius:2px;font-weight:400;height:36px;margin:0 15px 0 0;max-width:100%;padding:4px 15px;width:300px}.wcf-select-option select:focus{border-color:#aaa;box-shadow:none;color:#444}.wcf-select-option select:hover{color:#444}.wcf-select-option .wcf-field__data--content__after{color:#444;font-size:14px;font-weight:500;margin-left:10px}
16
- .wcf-text-field input{background:#fff;border-color:#ddd;border-radius:2px;font-weight:400;height:36px;margin:0;max-width:100%;padding:4px 15px;width:300px}.wcf-text-field input:focus{border-color:#aaa;box-shadow:none}.wcf-text-field input.readonly,.wcf-text-field input[readonly]{background-color:#eee!important}.wcf-field__data{align-items:center;display:flex}
17
- .wcf-textarea-field label{vertical-align:top}.wcf-textarea-field textarea{border-color:#ddd;margin:0}.wcf-textarea-field .wcf-field__data{align-items:flex-start}.wcf-textarea-field .wcf-field__data--label{padding:8px 0 0}
18
- .wcf-button-style{background:#fff;border:1px solid #f06335;border-radius:3px;cursor:pointer;display:inline-block;font-size:15px;font-weight:400;padding:6px 20px;text-align:center;text-decoration:none;text-shadow:none;text-transform:uppercase;transition:all .1s linear;vertical-align:middle}.wcf-btn-primary{transition:all .25s linear}.wcf-btn-primary,.wcf-btn-primary:active,.wcf-btn-primary:focus,.wcf-btn-primary:hover{background:#f06335;color:#fff}.wcf-btn-primary:active,.wcf-btn-primary:focus,.wcf-button-style:hover{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);outline:0;text-decoration:none}@keyframes wcf-saving{0%{background-position:200px 0}}.wcf-submit-field .wcf-success-notice{display:inline-block;margin:0;max-width:300px}.wcf-submit-field .dashicons{vertical-align:middle}.wcf-submit-field .wcf-success-message{font-size:14px;font-weight:400}.wcf-submit-field .wcf-saving{animation:wcf-saving 2.5s linear infinite;background-image:linear-gradient(-45deg,#f06335 28%,#f78860 0,#f78860 72%,#f06335 0);background-size:100px 100%;opacity:1}
19
- .wcf-selection-field{align-items:center;display:flex}.wcf-selection-field .wcf-select2-input .wcf__control{cursor:pointer}.wcf-selection-field .wcf__value-container .css-1g6gooi,.wcf-selection-field .wcf__value-container div:last-child{color:#444;margin:0;padding:0}.wcf-selection-field .wcf__value-container .css-1g6gooi input:focus,.wcf-selection-field .wcf__value-container div:last-child input:focus{box-shadow:none}.wcf-selection-field .wcf__control .css-1hwfws3m,.wcf-selection-field .wcf__value-container{color:#444;font-weight:400;min-height:36px}.wcf-selection-field .wcf-select2-input{border-color:#ddd;border-radius:2px;width:300px}.wcf-selection-field .wcf-select2-input .wcf__menu{background-color:#fff;border-radius:2px;color:#555;font-weight:400;line-height:1.1}.wcf-selection-field .wcf-select2-input .wcf__menu .wcf__menu-list{max-height:200px}.wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:active,.wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:hover,.wcf-selection-field .wcf-select2-input .wcf__option--is-focused,.wcf-selection-field .wcf-select2-input .wcf__option--is-selected{background-color:#f1f1f1;color:#444;cursor:pointer}.wcf-selection-field .wcf__control{border-color:#ddd;border-radius:2px;width:300px}.wcf-selection-field .wcf__control .wcf__value-container--has-value,.wcf-selection-field .wcf__control .wcf__value-container--has-value .wcf__single-value,.wcf-selection-field .wcf__value-container{color:#444}.wcf-selection-field .wcf__control.wcf__control--is-focused,.wcf-selection-field .wcf__control:active,.wcf-selection-field .wcf__control:hover{border-color:#aaa;box-shadow:none}.css-2b097c-container{display:inline;margin:0 0 0 30px;width:450px}.wcf-selection-field label{display:inline-block}
20
- .wcf-product-repeater-field__product{display:flex}.wcf-product-repeater-field__product button{padding:7px;text-align:center}.wcf-repeater-dashicon{margin:7px 15px 0 0}.wcf-product-repeater-field__options{display:flex;padding:10px 0 10px 35px}.wcf-product-repeater-field{padding:10px 0 30px}.wcf-checkout-product-selection-field__add-new .button{margin:10px}.wcf-add-new-product{margin-right:15px}.wcf-create-woo-iframe-opened{overflow:hidden}.wcf-create-woo-product-overlay{background:rgba(0,0,0,.729);height:100%;left:0;opacity:0;position:fixed;top:0;transition:none;-webkit-user-select:none;user-select:none;visibility:hidden;width:100%;z-index:9999}.wcf-create-woo-product-overlay.open{opacity:1;visibility:visible;z-index:999999}.wcf-create-woo-product-wrap{background-color:transparent;border-radius:3px;height:85%;margin:0 auto;max-height:85%;max-width:100%;min-height:85%;position:relative;top:50%;-ms-transform:translate(-50%,-35%);transform:translateY(-50%);width:90%;z-index:99999}.wcf-create-woo-product-wrap:not(.product-loaded):before{animation:wcf-admin-loader 575ms linear infinite;background:none!important;border-color:#fff transparent;border-radius:50%;border-style:solid;border-width:3px;color:#fff;content:"";display:block;height:48px;left:50%;margin:0 auto;position:absolute;text-align:center;top:50%;width:48px}.wcf-woo-product-iframe{background:#fff;height:100%;max-width:100%;min-height:100%;width:100%}.wcf-close-create-woo-product{background:#fff;border:1px solid #fff;border-radius:50%;color:#000;cursor:pointer;font-size:20px;height:25px;left:auto;line-height:1.3;position:fixed;right:-10px;text-align:center;top:-10px;width:25px;z-index:100000}.wcf-close-create-woo-product:before{content:"";font-family:dashicons}#wcf-create-woo-product iframe.wcf-create-woo-product-iframe #adminmenumain,#wcf-create-woo-product iframe.wcf-create-woo-product-iframe #wpadminbar{display:none}.wcf-checkout-product-selection-field__header{display:flex;justify-content:space-between}.wcf-product-repeater-field__product-image img{width:55px}.wcf-product-repeater-field__product-data{display:flex}.wcf-product-repeater-field__product-details{padding-left:20px;width:250px}.wcf-product-repeater-field__discount{display:flex}.wcf-product-repeater-field__discount-type{width:220px}.wcf-product-repeater-field__discount-value{width:100px}.wcf-remove-product-button{margin-left:20px}
21
- .wcf-select-product-popup-overlay{background:rgba(0,0,0,.729);height:100%;left:0;position:fixed;text-align:left;top:0;width:100%;z-index:9999}.wcf-select-product-popup-overlay .wcf-select-product-popup-content{background:#fff;border-radius:3px;justify-content:space-between;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:510px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header{align-items:center;border-bottom:1px solid #ddd;display:flex;height:50px;justify-content:space-between;margin:0;padding:0;position:relative;width:100%}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__title h2{font-size:14px;font-weight:600;line-height:1;margin-right:10px;padding-left:25px;text-transform:uppercase}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__title h2 .cartflows-logo-icon{font-size:16px;margin-right:8px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu{border-left:1px solid #ddd;color:#ccc;cursor:pointer;display:inline-block;padding:5px;position:relative}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu .dashicons{line-height:1.5}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu:after{font-size:25px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu:hover{color:#aaa}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select2-field .wcf-selection-field label{display:none}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-content-wrap{background:#f5f5f5;padding:25px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-content-wrap .wcf-content-wrap{padding:45px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-content-wrap .wcf-select-product-content{display:flex;justify-content:space-between;padding:20px 0}
22
- .wcf-product-options-fields__list{margin:0}.wcf-product-options-fields__list .wcf-product-options-fields__list--no-product{color:#666;padding:10px 25px}.wcf-product-option-field{display:flex;margin-bottom:10px}.wcf-product-field-item-bar{border:1px solid #ddd;border-radius:2px;color:#444;font-size:15px;font-weight:400;height:auto;line-height:normal;min-height:20px;padding:12px 20px;width:auto}.wcf-product-field-item-bar .default-label-note{font-size:16px;line-height:1.5;margin-right:20px}.wcf-product-options-fields__list--header{background:#f4f4f4;border:1px solid #f4f4f4;border-radius:2px;color:#444;font-size:13px;font-style:italic;font-weight:400;height:auto;line-height:normal;margin-bottom:10px;min-height:20px;padding:12px 10px;position:relative;width:650px}.wcf-product-options-fields__list--header:before{background-color:#f4f4f4;border:1px solid #f4f4f4;border-left:none;border-top:none;content:"";height:10px;left:27px;position:absolute;top:-6px;transform:rotate(45deg);width:10px}.wcf-product-options-fields__list--header .default-label-note{font-size:16px;line-height:1.5}.wcf-product-options-fields__list--header .wcf-default-label{margin-right:10px}.wcf-product-option-default-in-cart{line-height:normal;margin:0 25px 0 5px;width:auto}.wcf-product-option-default-in-cart input{margin:0!important}.disabled{opacity:.5;pointer-events:none}.wcf-product-field-item-bar span{display:inline-block;line-height:1;text-align:center}.wcf-dashicon{cursor:pointer;display:inline-flex;float:right;position:relative;top:-1px}.wcf-product-field-item-settings{background:#f5f6f7;border:1px solid #ececec;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:20px}.wcf-product-field-item-settings .wcf-field{margin-bottom:20px}.wcf-product-field-item-settings .wcf-field__desc{line-height:1.5}.wcf-product-field-item-settings .wcf-field.wcf-checkbox-field{margin-bottom:10px}.wcf-product-field-item-settings .wcf-field__data .wcf-field__data--label label{width:200px}.wcf-product-option-fields{width:650px}
23
- .wcf-color-field{align-items:center;display:flex;line-height:1}.wcf-color-field .wcf-colorpicker-swatch-wrap{align-items:center;cursor:pointer;display:flex}.wcf-color-field .wcf-colorpicker-swatch{background:#fafafa;border-right:1px solid #ddd;box-shadow:inset 0 0 0 3px #fff;display:inline-block;margin:0;padding:0}.wcf-color-field .wcf-color-picker-popover{margin:8px 0;position:absolute;z-index:2}.wcf-color-field .wcf-color-picker-cover{bottom:0;left:0;position:fixed;right:0;top:0}.wcf-color-field .sketch-picker{font-weight:400}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-selector{align-items:center;display:flex}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-swatch-wrap{background:#fff;border:1px solid #ddd;border-radius:2px;color:#444}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-label{font-weight:400;padding:5px 7px}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-reset{cursor:pointer;padding:6px}.wcf-color-field .wcf-color-picker{position:relative}.wcf-color-field .wcf-color-picker input{margin:0}.wcf-color-field .wcf-color-picker input[id^=rc-editable-input-]{width:100%!important}
24
  .wcf-font-family-field .wcf-font-weight-field{margin-top:30px}
25
- .wcf-image-selector-field-buttons{display:flex;padding:7px}.wcf-image-selector-field{display:flex}.wcf-image-selector-field-button-remove,.wcf-image-selector-field-button-select{display:inline;margin-left:10px}.wcf-image-selector-field__input{margin-left:15px}#wcf-image-preview{border:1px solid #ddd;line-height:1;margin-bottom:10px;text-align:center}.wcf-image-selector-field-button-select,.wcf-image-selector-field-buttons,.wcf-image-selector-field__input{margin:0;padding:0}.wcf-image-selector-field-button-select button.wcf-select-image{font-weight:500}
26
- .wcf-input-text-field input{margin-left:20px;max-width:100%;width:300px}
27
- .wcf-number-field input{margin:0 15px;max-width:100%;width:300px}.wcf-number-field input.readonly,.wcf-number-field input[readonly]{background-color:#eee!important}.wcf-number-field input[type=number]{border:1px solid #ddd;border-radius:2px;font-weight:400;height:36px;margin:0;padding:4px 15px}.wcf-number-field:focus{border-color:#aaa;box-shadow:none}.wcf-number-field .wcf-field__data--after-field{margin-left:10px}
28
- @charset "UTF-8";.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__navigation-icon:before,.react-datepicker__year-read-view--down-arrow{border-color:#ccc;border-style:solid;border-width:3px 3px 0 0;content:"";display:block;height:9px;position:absolute;top:6px;width:9px}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle{margin-left:-4px;position:absolute;width:0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before{border:8px solid transparent;box-sizing:content-box;content:"";height:0;left:-8px;position:absolute;width:1px;z-index:-1}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before{border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{margin-top:-8px;top:0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{border-bottom-color:#f0f0f0;border-top:none}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after{top:0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{border-bottom-color:#aeaeae;top:-1px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle{bottom:0;margin-bottom:-8px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before{border-bottom:none;border-top-color:#fff}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after{bottom:0}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before{border-top-color:#aeaeae;bottom:-1px}.react-datepicker-wrapper{border:0;display:inline-block;padding:0;width:100%}.react-datepicker{background-color:#fff;border:1px solid #aeaeae;border-radius:.3rem;color:#000;display:inline-block;font-family:Helvetica Neue,helvetica,arial,sans-serif;font-size:.8rem;position:relative}.react-datepicker--time-only .react-datepicker__triangle{left:35px}.react-datepicker--time-only .react-datepicker__time-container{border-left:0}.react-datepicker--time-only .react-datepicker__time,.react-datepicker--time-only .react-datepicker__time-box{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.react-datepicker__triangle{left:50px;position:absolute}.react-datepicker-popper{z-index:1}.react-datepicker-popper[data-placement^=bottom]{padding-top:10px}.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle,.react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle{left:auto;right:50px}.react-datepicker-popper[data-placement^=top]{padding-bottom:10px}.react-datepicker-popper[data-placement^=right]{padding-left:8px}.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle{left:auto;right:42px}.react-datepicker-popper[data-placement^=left]{padding-right:8px}.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle{left:42px;right:auto}.react-datepicker__header{background-color:#f0f0f0;border-bottom:1px solid #aeaeae;border-top-left-radius:.3rem;padding:8px 0;position:relative;text-align:center}.react-datepicker__header--time{padding-bottom:8px;padding-left:5px;padding-right:5px}.react-datepicker__header--time:not(.react-datepicker__header--time--only){border-top-left-radius:0}.react-datepicker__header:not(.react-datepicker__header--has-time-select){border-top-right-radius:.3rem}.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__year-dropdown-container--select{display:inline-block;margin:0 2px}.react-datepicker-time__header,.react-datepicker-year-header,.react-datepicker__current-month{color:#000;font-size:.944rem;font-weight:700;margin-top:0}.react-datepicker-time__header{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.react-datepicker__navigation{align-items:center;background:none;border:none;cursor:pointer;display:flex;height:32px;justify-content:center;overflow:hidden;padding:0;position:absolute;text-align:center;text-indent:-999em;top:2px;width:32px;z-index:1}.react-datepicker__navigation--previous{left:2px}.react-datepicker__navigation--next{right:2px}.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button){right:85px}.react-datepicker__navigation--years{display:block;margin-left:auto;margin-right:auto;position:relative;top:0}.react-datepicker__navigation--years-previous{top:4px}.react-datepicker__navigation--years-upcoming{top:-4px}.react-datepicker__navigation:hover :before{border-color:#a6a6a6}.react-datepicker__navigation-icon{font-size:20px;position:relative;top:-1px;width:0}.react-datepicker__navigation-icon--next{left:-2px}.react-datepicker__navigation-icon--next:before{left:-7px;transform:rotate(45deg)}.react-datepicker__navigation-icon--previous{right:-2px}.react-datepicker__navigation-icon--previous:before{right:-7px;transform:rotate(225deg)}.react-datepicker__month-container{float:left}.react-datepicker__year{margin:.4rem;text-align:center}.react-datepicker__year-wrapper{display:flex;flex-wrap:wrap;max-width:180px}.react-datepicker__year .react-datepicker__year-text{display:inline-block;margin:2px;width:4rem}.react-datepicker__month{margin:.4rem;text-align:center}.react-datepicker__month .react-datepicker__month-text,.react-datepicker__month .react-datepicker__quarter-text{display:inline-block;margin:2px;width:4rem}.react-datepicker__input-time-container{clear:both;float:left;margin:5px 0 10px 15px;text-align:left;width:100%}.react-datepicker__input-time-container .react-datepicker-time__caption,.react-datepicker__input-time-container .react-datepicker-time__input-container{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input{display:inline-block;margin-left:10px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input{width:auto}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]{-moz-appearance:textfield}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter{display:inline-block;margin-left:5px}.react-datepicker__time-container{border-left:1px solid #aeaeae;float:right;width:85px}.react-datepicker__time-container--with-today-button{border:1px solid #aeaeae;border-radius:.3rem;display:inline;position:absolute;right:-72px;top:0}.react-datepicker__time-container .react-datepicker__time{background:#fff;border-bottom-right-radius:.3rem;position:relative}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box{border-bottom-right-radius:.3rem;margin:0 auto;overflow-x:hidden;text-align:center;width:85px}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list{box-sizing:content-box;height:calc(195px + .85rem);list-style:none;margin:0;overflow-y:scroll;padding-left:0;padding-right:0;width:100%}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item{height:30px;padding:5px 10px;white-space:nowrap}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover{background-color:#f0f0f0;cursor:pointer}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected{background-color:#216ba5;color:#fff;font-weight:700}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover{background-color:#216ba5}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled{color:#ccc}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover{background-color:transparent;cursor:default}.react-datepicker__week-number{color:#ccc;display:inline-block;line-height:1.7rem;margin:.166rem;text-align:center;width:1.7rem}.react-datepicker__week-number.react-datepicker__week-number--clickable{cursor:pointer}.react-datepicker__week-number.react-datepicker__week-number--clickable:hover{background-color:#f0f0f0;border-radius:.3rem}.react-datepicker__day-names,.react-datepicker__week{white-space:nowrap}.react-datepicker__day-names{margin-bottom:-8px}.react-datepicker__day,.react-datepicker__day-name,.react-datepicker__time-name{color:#000;display:inline-block;line-height:1.7rem;margin:.166rem;text-align:center;width:1.7rem}.react-datepicker__month--in-range,.react-datepicker__month--in-selecting-range,.react-datepicker__month--selected,.react-datepicker__quarter--in-range,.react-datepicker__quarter--in-selecting-range,.react-datepicker__quarter--selected{background-color:#216ba5;border-radius:.3rem;color:#fff}.react-datepicker__month--in-range:hover,.react-datepicker__month--in-selecting-range:hover,.react-datepicker__month--selected:hover,.react-datepicker__quarter--in-range:hover,.react-datepicker__quarter--in-selecting-range:hover,.react-datepicker__quarter--selected:hover{background-color:#1d5d90}.react-datepicker__month--disabled,.react-datepicker__quarter--disabled{color:#ccc;pointer-events:none}.react-datepicker__month--disabled:hover,.react-datepicker__quarter--disabled:hover{background-color:transparent;cursor:default}.react-datepicker__day,.react-datepicker__month-text,.react-datepicker__quarter-text,.react-datepicker__year-text{cursor:pointer}.react-datepicker__day:hover,.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover,.react-datepicker__year-text:hover{background-color:#f0f0f0;border-radius:.3rem}.react-datepicker__day--today,.react-datepicker__month-text--today,.react-datepicker__quarter-text--today,.react-datepicker__year-text--today{font-weight:700}.react-datepicker__day--highlighted,.react-datepicker__month-text--highlighted,.react-datepicker__quarter-text--highlighted,.react-datepicker__year-text--highlighted{background-color:#3dcc4a;border-radius:.3rem;color:#fff}.react-datepicker__day--highlighted:hover,.react-datepicker__month-text--highlighted:hover,.react-datepicker__quarter-text--highlighted:hover,.react-datepicker__year-text--highlighted:hover{background-color:#32be3f}.react-datepicker__day--highlighted-custom-1,.react-datepicker__month-text--highlighted-custom-1,.react-datepicker__quarter-text--highlighted-custom-1,.react-datepicker__year-text--highlighted-custom-1{color:#f0f}.react-datepicker__day--highlighted-custom-2,.react-datepicker__month-text--highlighted-custom-2,.react-datepicker__quarter-text--highlighted-custom-2,.react-datepicker__year-text--highlighted-custom-2{color:green}.react-datepicker__day--in-range,.react-datepicker__day--in-selecting-range,.react-datepicker__day--selected,.react-datepicker__month-text--in-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--selected,.react-datepicker__quarter-text--in-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--selected,.react-datepicker__year-text--in-range,.react-datepicker__year-text--in-selecting-range,.react-datepicker__year-text--selected{background-color:#216ba5;border-radius:.3rem;color:#fff}.react-datepicker__day--in-range:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--selected:hover,.react-datepicker__month-text--in-range:hover,.react-datepicker__month-text--in-selecting-range:hover,.react-datepicker__month-text--selected:hover,.react-datepicker__quarter-text--in-range:hover,.react-datepicker__quarter-text--in-selecting-range:hover,.react-datepicker__quarter-text--selected:hover,.react-datepicker__year-text--in-range:hover,.react-datepicker__year-text--in-selecting-range:hover,.react-datepicker__year-text--selected:hover{background-color:#1d5d90}.react-datepicker__day--keyboard-selected,.react-datepicker__month-text--keyboard-selected,.react-datepicker__quarter-text--keyboard-selected,.react-datepicker__year-text--keyboard-selected{background-color:#2579ba;border-radius:.3rem;color:#fff}.react-datepicker__day--keyboard-selected:hover,.react-datepicker__month-text--keyboard-selected:hover,.react-datepicker__quarter-text--keyboard-selected:hover,.react-datepicker__year-text--keyboard-selected:hover{background-color:#1d5d90}.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range){background-color:rgba(33,107,165,.5)}.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range){background-color:#f0f0f0;color:#000}.react-datepicker__day--disabled,.react-datepicker__month-text--disabled,.react-datepicker__quarter-text--disabled,.react-datepicker__year-text--disabled{color:#ccc;cursor:default}.react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover,.react-datepicker__year-text--disabled:hover{background-color:transparent}.react-datepicker__month-text.react-datepicker__month--in-range:hover,.react-datepicker__month-text.react-datepicker__month--selected:hover,.react-datepicker__month-text.react-datepicker__quarter--in-range:hover,.react-datepicker__month-text.react-datepicker__quarter--selected:hover,.react-datepicker__quarter-text.react-datepicker__month--in-range:hover,.react-datepicker__quarter-text.react-datepicker__month--selected:hover,.react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover,.react-datepicker__quarter-text.react-datepicker__quarter--selected:hover{background-color:#216ba5}.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{background-color:#f0f0f0}.react-datepicker__input-container{display:inline-block;position:relative;width:100%}.react-datepicker__month-read-view,.react-datepicker__month-year-read-view,.react-datepicker__year-read-view{border:1px solid transparent;border-radius:.3rem;position:relative}.react-datepicker__month-read-view:hover,.react-datepicker__month-year-read-view:hover,.react-datepicker__year-read-view:hover{cursor:pointer}.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow{border-top-color:#b3b3b3}.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow{right:-16px;top:0;transform:rotate(135deg)}.react-datepicker__month-dropdown,.react-datepicker__month-year-dropdown,.react-datepicker__year-dropdown{background-color:#f0f0f0;border:1px solid #aeaeae;border-radius:.3rem;left:25%;position:absolute;text-align:center;top:30px;width:50%;z-index:1}.react-datepicker__month-dropdown:hover,.react-datepicker__month-year-dropdown:hover,.react-datepicker__year-dropdown:hover{cursor:pointer}.react-datepicker__month-dropdown--scrollable,.react-datepicker__month-year-dropdown--scrollable,.react-datepicker__year-dropdown--scrollable{height:150px;overflow-y:scroll}.react-datepicker__month-option,.react-datepicker__month-year-option,.react-datepicker__year-option{display:block;line-height:20px;margin-left:auto;margin-right:auto;width:100%}.react-datepicker__month-option:first-of-type,.react-datepicker__month-year-option:first-of-type,.react-datepicker__year-option:first-of-type{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.react-datepicker__month-option:last-of-type,.react-datepicker__month-year-option:last-of-type,.react-datepicker__year-option:last-of-type{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem;-webkit-user-select:none;user-select:none}.react-datepicker__month-option:hover,.react-datepicker__month-year-option:hover,.react-datepicker__year-option:hover{background-color:#ccc}.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming{border-bottom-color:#b3b3b3}.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous{border-top-color:#b3b3b3}.react-datepicker__month-option--selected,.react-datepicker__month-year-option--selected,.react-datepicker__year-option--selected{left:15px;position:absolute}.react-datepicker__close-icon{background-color:transparent;border:0;cursor:pointer;display:table-cell;height:100%;outline:0;padding:0 6px 0 0;position:absolute;right:0;top:0;vertical-align:middle}.react-datepicker__close-icon:after{background-color:#216ba5;border-radius:50%;color:#fff;content:"×";cursor:pointer;display:table-cell;font-size:12px;height:16px;line-height:1;padding:2px;text-align:center;vertical-align:middle;width:16px}.react-datepicker__today-button{background:#f0f0f0;border-top:1px solid #aeaeae;clear:left;cursor:pointer;font-weight:700;padding:5px 0;text-align:center}.react-datepicker__portal{align-items:center;background-color:rgba(0,0,0,.8);display:flex;height:100vh;justify-content:center;left:0;position:fixed;top:0;width:100vw;z-index:2147483647}.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__time-name{line-height:3rem;width:3rem}@media (max-height:550px),(max-width:400px){.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__time-name{line-height:2rem;width:2rem}}.react-datepicker__portal .react-datepicker-time__header,.react-datepicker__portal .react-datepicker__current-month{font-size:1.44rem}
29
- .wcf-field__doc-content{color:#666;font-style:italic;font-weight:400}
30
- .wcf-section-heading-field .wcf-field__data--label{padding:25px 0 0}.wcf-section-heading-field .wcf-field__data--label label{font-size:15px;font-weight:600}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  .wcf-pro-notice{padding:20px}.wcf-pro-notice .wcf-pro-update-notice{color:#444;font-size:14px;font-weight:500}.wcf-pro-notice .wcf-pro-update-notice a{text-decoration:none}
32
- .wcf-product-field .wcf-selection-field{align-items:center;display:flex}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__control{cursor:pointer}.wcf-product-field .wcf-selection-field .wcf__value-container .css-1g6gooi,.wcf-product-field .wcf-selection-field .wcf__value-container div:last-child{color:#444;margin:0;padding:0}.wcf-product-field .wcf-selection-field .wcf__value-container .css-1g6gooi input:focus,.wcf-product-field .wcf-selection-field .wcf__value-container div:last-child input:focus{box-shadow:none}.wcf-product-field .wcf-selection-field .wcf__control .css-1hwfws3m,.wcf-product-field .wcf-selection-field .wcf__value-container{color:#444;font-weight:400;height:36px}.wcf-product-field .wcf-selection-field .wcf-select2-input{border-color:#ddd;border-radius:2px;width:300px}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu{background-color:#fff;border-radius:2px;color:#555;font-weight:400;line-height:1.1}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__menu-list{max-height:200px}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:active,.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:hover,.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__option--is-focused,.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__option--is-selected{background-color:#f1f1f1;color:#444;cursor:pointer}.wcf-product-field .wcf-selection-field .wcf__control{border-color:#ddd;border-radius:2px;width:300px}.wcf-product-field .wcf-selection-field .wcf__control .wcf__value-container--has-value,.wcf-product-field .wcf-selection-field .wcf__control .wcf__value-container--has-value .wcf__single-value,.wcf-product-field .wcf-selection-field .wcf__value-container{color:#444}.wcf-product-field .wcf-selection-field .wcf__control.wcf__control--is-focused,.wcf-product-field .wcf-selection-field .wcf__control:active,.wcf-product-field .wcf-selection-field .wcf__control:hover{border-color:#aaa;box-shadow:none}.wcf-product-field .wcf-selection-field label{display:inline-block}.wcf-product-field .css-2b097c-container{display:inline;margin:0 0 0 30px;width:450px}
33
- .wcf-coupon-field .wcf-selection-field{align-items:center;display:flex}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__control{cursor:pointer}.wcf-coupon-field .wcf-selection-field .wcf__value-container .css-1g6gooi,.wcf-coupon-field .wcf-selection-field .wcf__value-container div:last-child{color:#444;margin:0;padding:0}.wcf-coupon-field .wcf-selection-field .wcf__value-container .css-1g6gooi input:focus,.wcf-coupon-field .wcf-selection-field .wcf__value-container div:last-child input:focus{box-shadow:none}.wcf-coupon-field .wcf-selection-field .wcf__control .css-1hwfws3m,.wcf-coupon-field .wcf-selection-field .wcf__value-container{color:#444;font-weight:400;height:36px}.wcf-coupon-field .wcf-selection-field .wcf-select2-input{border-color:#ddd;border-radius:2px;width:300px}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu{background-color:#fff;border-radius:2px;color:#555;font-weight:400;line-height:1.1}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__menu-list{max-height:200px}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:active,.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:hover,.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__option--is-focused,.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__option--is-selected{background-color:#f1f1f1;color:#444;cursor:pointer}.wcf-coupon-field .wcf-selection-field .wcf__control{border-color:#ddd;border-radius:2px;width:300px}.wcf-coupon-field .wcf-selection-field .wcf__control .wcf__value-container--has-value,.wcf-coupon-field .wcf-selection-field .wcf__control .wcf__value-container--has-value .wcf__single-value,.wcf-coupon-field .wcf-selection-field .wcf__value-container{color:#444}.wcf-coupon-field .wcf-selection-field .wcf__control.wcf__control--is-focused,.wcf-coupon-field .wcf-selection-field .wcf__control:active,.wcf-coupon-field .wcf-selection-field .wcf__control:hover{border-color:#aaa;box-shadow:none}.wcf-coupon-field .wcf-selection-field label{display:inline-block}.wcf-coupon-field .css-2b097c-container{display:inline;margin:0 0 0 30px;width:450px}
34
- .wcf-tooltip-icon{position:relative}.wcf-tooltip-icon .dashicons{display:block;position:relative}.wcf-tooltip-icon .wcf-tooltip-text{background-color:#444;border-radius:3px;color:#fff;font-size:11px;left:-20px;padding:5px 8px;position:absolute;top:25px;visibility:hidden;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.wcf-tooltip-icon .wcf-tooltip-text:after{border:5px solid transparent;border-bottom-color:#444;content:"";left:30px;margin-left:-5px;position:absolute;top:-10px}.wcf-tooltip-icon:hover .wcf-tooltip-text{visibility:visible}.wcf-tooltip-icon.wcf-tooltip-position--right .wcf-tooltip-text{left:25px;top:-5px}.wcf-tooltip-icon.wcf-tooltip-position--right .wcf-tooltip-text:after{left:-6px;top:10px;transform:rotate(270deg)}
35
- .wcf-sub-heading-field .wcf-field__data--label{border-bottom:1px solid #ddd;margin-bottom:20px;padding:15px 0 0}.wcf-sub-heading-field .wcf-field__data--label label{font-size:15px;font-weight:600}
36
- .wcf-password-field input{background:#fff;border-color:#ddd;border-radius:2px;font-weight:400;height:36px;margin:0;max-width:100%;padding:4px 15px;width:300px}.wcf-password-field input:focus{border-color:#aaa;box-shadow:none}.wcf-password-field input.readonly,.wcf-password-field input[readonly]{background-color:#eee!important}.wcf-password-field .wcf-field__data{align-items:center;display:flex}.wcf-password-field .wcf-field__data--content{display:flex}.wcf-password-field .wcf-field__data--content .wcf-password-field__icon{border:1px solid #ddd;border-bottom-right-radius:2px;border-left:none;border-top-right-radius:2px;cursor:pointer;line-height:1;padding:7px;vertical-align:middle;width:auto}
37
- .wcf-archived-step .wcf-loader{align-items:center;display:flex;justify-content:center;left:45%;position:absolute}.wcf-archived-step .wcf-dot-loader{animation:grow 1.2s ease-in-out infinite;background-color:#f06335;border-radius:50%;height:20px;position:relative;width:20px}.wcf-archived-step .wcf-dot-loader--2{animation:grow 1.2s ease-in-out .15555s infinite;margin:0 10px}.wcf-archived-step .wcf-dot-loader--3{animation:grow 1.2s ease-in-out .3s infinite}@keyframes grow{0%,40%,to{transform:scale(0)}40%{transform:scale(1)}}.step-overlay :not(.wcf-loader){border:1px solid #ddd;opacity:.1}
 
38
  #wcf-archived-button{cursor:pointer;display:block}#wcf-archived-button.is-active{margin-bottom:10px}
39
- .wcf-skeleton-base{display:block}.wcf-skeleton{background-color:rgba(0,0,0,.11);display:block;height:1.2em}.wcf-skeleton-pulse{animation:wcf-skeleton-keyframes-pulse 1.5s ease-in-out .5s infinite}@keyframes wcf-skeleton-keyframes-pulse{0%{opacity:1}50%{opacity:.4}to{opacity:1}}.wcf-skeleton--wave{overflow:hidden;position:relative}.wcf-skeleton--wave:after{animation:wcf-skeleton-keyframes-wave 1.6s linear .5s infinite;background:linear-gradient(90deg,transparent,rgba(0,0,0,.04),transparent);bottom:0;content:"";left:0;position:absolute;right:0;top:0;transform:translateX(-100%)}@keyframes wcf-skeleton-keyframes-wave{0%{transform:translateX(-100%)}60%{transform:translateX(100%)}to{transform:translateX(100%)}}
40
- .wcf-flow-row.is-placeholder{align-items:center;border-bottom:1px solid #d7d7d7;display:flex;justify-content:space-between;padding:20px 30px;position:relative}.wcf-flow-row.is-placeholder .wcf-flow-row__actions,.wcf-flow-row.is-placeholder .wcf-flow-row__title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 40px,#ddd 80px);background-position:0;background-size:600px;padding:15px;width:500px}.wcf-flow-row.is-placeholder .wcf-flow-row__actions{padding:8px;width:250px}@keyframes shine-lines{0%{background-position:-100px}40%,to{background-position:340px}}
41
- .wcf-skeleton--text{border-radius:4px;font-size:12px;height:auto;line-height:1.5em;margin-bottom:0;margin-top:0;transform:scaleY(.6);transform-origin:0 60%}.wcf-skeleton--text:empty:before{content:" "}
42
  .wcf-skeleton--spacer{height:25px}
43
  .wcf-skeleton--rect{height:20px}
44
- .wcf-skeleton--circle{border-radius:50%;height:40px;width:40px}
45
  .wcf-step-dummy{margin-bottom:20px}
46
- .wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .title,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .title{width:80%}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{width:60%}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;border-right:1px solid #fff;padding:15px;width:8%}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right{display:flex}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-custom-filter-input{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px 80px}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-filters__buttons--custom-search{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;border:none;padding:15px 50px;width:8%}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;margin-right:15px;padding:15px}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item:last-child,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title:last-child,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name:last-child,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data:last-child{margin-right:0}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:0}}
47
- .wcf-flow-analytics{padding:30px}.wcf-flow-analytics .wcf-flow-analytics__revenue{display:flex;justify-content:space-between;margin:0;max-width:100%;padding:0}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block{align-content:center;background:#fff;border:1px solid #ddd;border-radius:0;border-right:0;box-shadow:none;display:inline;margin:0;padding:30px;position:relative;width:33.3333%}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block:first-child{border-bottom-left-radius:3px;border-top-left-radius:3px}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block:last-child{border-bottom-right-radius:3px;border-right:1px solid #ddd;border-top-right-radius:3px}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .title,.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{background:transparent;color:#444;font-size:20px;font-weight:400;margin:0;padding:0;text-align:left;width:100%}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{margin-top:30px}.wcf-flow-analytics .wcf-flow-analytics__filters{align-items:center;display:flex;flex-direction:row;margin-bottom:20px;margin-top:50px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons{margin:0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .button{background:#fff;border:1px solid #ddd;border-radius:0;color:#444;margin:0;padding:4px 15px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .button:hover{background:#fafafa;color:#444}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-filters__buttons--last-today{border-radius:2px 0 0 2px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-filters__buttons--last-week{border-left:0;border-radius:0;border-right:0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-filters__buttons--last-month{border-radius:0 2px 2px 0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons button{outline:0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-button.wcf-filter-active{background:#edeff1;background:var(--secondary-hv-color);border-color:#ddd;border-color:var(--secondary-border-color);box-shadow:none;color:#3a3a3a}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right{display:flex;margin:0 0 0 auto;text-align:left}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-custom-filter-input{background:#fff;border:1px solid #ddd;margin:0 5px;padding:3px 15px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-filters__buttons--custom-search{background:#f06335;border:1px solid #f06335;border-radius:3px;color:#fff;margin:0 0 0 5px;padding:3px 15px}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table{border:solid #dfdfdf;border-width:1px 1px 0;width:100%}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-header{align-items:center;background:#f5f6f7;border-bottom:1px solid #dfdfdf;color:#444;display:flex;justify-content:unset;padding:10px 25px;width:100%}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title{flex:1 1 20%}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item,.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title{color:#444;font-weight:500}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name{color:#444;flex:1 1 20%;font-size:14px}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name .ab-test-step-name{cursor:pointer}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name .dashicons-editor-break{margin-left:15px;margin-right:7px;transform:scaleX(-1)}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name .wcf-archived-date{color:#666;display:block;font-size:13px;margin-left:15px;text-align:left}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-row{background:#fff;border-bottom:1px solid #dfdfdf;display:flex;padding:25px;width:100%}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-row:hover{background:#fafafa}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item,.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data{flex:1 1 20%;text-align:center}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data{color:#000}.wcf-flow-analytics .wcf-flow-analytics__reset-button{display:flex;justify-content:flex-end;margin-top:15px}.wcf-analytics-no-step-notice{color:#444;font-size:15px;font-weight:400;padding:20px 40px}
48
- a.wcf-nav-item{background:#f7f8fa;border-bottom:1px solid #dedede;box-shadow:none;color:#444;cursor:pointer;display:block;font-weight:400;outline:none;padding:20px;text-decoration:none}a.wcf-nav-item---active,a.wcf-nav-item:hover{background:#e4e4e7;color:#444}
49
- .wcf-nav-content{background:#fafafa;color:#444;display:none;font-size:14px;line-height:34px;padding:0;text-align:left}.wcf-nav-content table{width:100%}.wcf-nav-content table .wcf-section-heading-field:first-child .wcf-field__data--label{padding-top:10px}.wcf-nav-content table th{font-weight:400;padding:10px 0}.wcf-nav-content---active{display:block}.wcf-nav-content---active h3{color:#444;font-weight:500;line-height:1;margin:5px 0;padding:0 10px 20px}.wcf-nav-content---active .wcf-nav-content__header{align-items:center;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;margin-bottom:20px}.wcf-nav-content---active .wcf-nav-content__header .wcf-nav-content__header--button,.wcf-nav-content---active .wcf-nav-content__header h3.wcf-nav-content__header--title{width:50%}.wcf-nav-content---active .wcf-nav-content__header .wcf-nav-content__header--button p,.wcf-nav-content---active .wcf-nav-content__header h3.wcf-nav-content__header--title{margin:0}.wcf-nav-content---active .wcf-nav-content__header .wcf-nav-content__header--button{display:flex;justify-content:flex-end;padding:0 10px 10px}.wcf-field-section-heading{color:#333;font-size:15px;font-weight:600;padding:10px 0 5px;text-decoration:none}.wcf-pro-update-notice{font-style:italic}
50
- .wcf-settings-nav{display:flex}.wcf-settings-nav__tabs{background:#f7f8fa;padding:15px;width:250px}.wcf-settings-nav__tab{padding:0 0 10px}.wcf-settings-nav__tab:last-child{padding:0}.wcf-settings-nav__content{background:#fff;padding:25px;width:calc(100% - 250px)}
51
- .wcf-edit-flow-setting{font-size:14px;min-height:750px;padding:30px}.wcf-edit-flow-setting form{position:relative;width:100%}.wcf-edit-flow-setting form .wcf-vertical-nav p{color:#444;font-size:14px;font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav table{height:34px;line-height:34px;min-width:200px;text-align:left}.wcf-edit-flow-setting form .wcf-vertical-nav table th{padding:15px 10px 15px 0}.wcf-edit-flow-setting form .wcf-vertical-nav table .wcf-field__desc{color:#666;line-height:1.5;margin-top:15px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu a{border-bottom:1px solid #eee;color:#5f5f5f;cursor:pointer;display:block;font-weight:400;padding:23px;text-decoration:none}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu a:hover{background:#e4e4e7;box-shadow:none;color:#434343;font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu .wcf-setting-icon{margin:7px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu{background:#f7f8fa;float:unset;width:20%}.wcf-edit-flow-setting form .wcf-vertical-nav a.wcf-nav-item---active{background:#e4e4e7;box-shadow:none;color:#434343}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content{background:#fafafa;border:1px solid #eee;padding:20px 30px;width:80%}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content{background:transparent;color:#444;font-size:14px;padding:0}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content .wcf-field__data--label label,.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content .wcf-selection-field label{display:inline-block;font-size:14px;font-weight:500;line-height:1.1;padding-right:20px;width:300px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content label{font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content input[type=text],.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content select{font-weight:400;margin-left:20px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-submit-button{text-align:left}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content---active h3{line-height:1;margin:5px 0;padding:0 10px 10px}.wcf-edit-flow-setting form .wcf-vertical-nav h3{color:#444;font-weight:500}
52
- .wcf-steps-page-wrapper{border-top:1px solid #ededed;margin-top:-1px;padding:30px}.wcf-steps-page-wrapper .wcf-list-steps{margin-bottom:15px}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step{background:#f9f9f9;border:1px dashed #cdcdcd;color:#444;display:block;font-weight:400;padding:20px;text-align:center;transition:all .1s ease-in;width:100%}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover{background:transparent;border-color:#aaa;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover .dashicons-plus:before{background:transparent;color:#016087}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step:hover .wcf-create-step--text{border-color:#006799;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step--text{background:transparent;font-size:17px;line-height:1;margin-left:7px}.wcf-no-step-notice{color:#444;font-size:15px;font-weight:400;padding:20px 0 40px}
53
- .wcf-steps-header{align-items:center;display:flex;flex-flow:row;justify-content:space-between;margin:0 0 25px}.wcf-steps-header .wcf-steps-header--title{color:#444;font-size:20px;font-weight:500;line-height:40px}.wcf-steps-header .wcf-step__title--editable .new-flow-title{background:#fafafa;border-color:#ccc;line-height:2;padding:2px 15px}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:before{background:#eee;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a{margin-left:10px;text-decoration:none;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:focus,.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:hover{box-shadow:none;outline:none}.wcf-steps-header .wcf-create-step{align-items:center;display:flex;justify-content:space-between}.wcf-steps-header .wcf-create-step .dashicons{font-size:15px;height:-moz-fit-content;height:fit-content;margin-right:10px;width:-moz-fit-content;width:fit-content}
54
- .wcf-steps-chart{border:1px solid #a5a5a5;height:100vh;max-height:70%}.wcf-steps-chart.wcf-fullscreen{left:0;max-height:unset;position:fixed;top:0;width:100%;z-index:999999}.wcf-steps-chart.wcf-fullscreen .wcf-steps-chart__exit-screen-msg{background-color:#636363;color:#fff;left:44%;padding:10px;position:absolute;text-align:center;text-transform:none;top:20px;z-index:4}.wcf-steps-chart .react-flow .react-flow__controls .wcf-exit-full-screen,.wcf-steps-chart .react-flow .react-flow__controls .wcf-full-screen{font-size:13px;height:unset}.wcf-steps-chart .react-flow__renderer.react-flow__zoompane{cursor:move}.wcf-steps-chart.loading{background-color:#f4f4f4;position:relative}.wcf-steps-chart.loading .wcf-step-chart-loader{display:flex;flex:0 0 50%;height:300px;left:49%;position:absolute;top:50%;width:300px}.wcf-steps-chart.loading .wcf-step-chart-loader .dot-loader{animation:grow 1.2s ease-in-out infinite;background-color:#f44336;border-radius:50%;height:20px;position:relative;width:20px}.wcf-steps-chart.loading .wcf-step-chart-loader .dot-loader--2{animation:grow 1.2s ease-in-out .15555s infinite;margin:0 20px}.wcf-steps-chart.loading .wcf-step-chart-loader .dot-loader--3{animation:grow 1.2s ease-in-out .3s infinite}.wcf-flow-overview-screen{overflow:hidden}
55
- .wcf-steps-chart .wcf-custom-node-design{position:relative}.wcf-steps-chart .wcf-node-action-delete,.wcf-steps-chart .wcf-node-actions{visibility:hidden}.wcf-steps-chart .react-flow__node-offer .react-flow__handle-right-a{right:-4px;top:8px;transform:none}.wcf-steps-chart .react-flow__node-offer .react-flow__handle-right-b{bottom:8px;right:-4px;top:auto;transform:none}.wcf-steps-chart .react-flow__node-checkout,.wcf-steps-chart .react-flow__node-landing,.wcf-steps-chart .react-flow__node-offer,.wcf-steps-chart .react-flow__node-optin,.wcf-steps-chart .react-flow__node-thankyou{color:#222;font-size:12px;text-align:center}.wcf-steps-chart .react-flow__node-checkout .wcf-handle-left,.wcf-steps-chart .react-flow__node-checkout .wcf-handle-right,.wcf-steps-chart .react-flow__node-landing .wcf-handle-left,.wcf-steps-chart .react-flow__node-landing .wcf-handle-right,.wcf-steps-chart .react-flow__node-offer .wcf-handle-left,.wcf-steps-chart .react-flow__node-offer .wcf-handle-right,.wcf-steps-chart .react-flow__node-optin .wcf-handle-left,.wcf-steps-chart .react-flow__node-optin .wcf-handle-right,.wcf-steps-chart .react-flow__node-thankyou .wcf-handle-left,.wcf-steps-chart .react-flow__node-thankyou .wcf-handle-right{top:45%}.wcf-steps-chart .react-flow__node-checkout .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-landing .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-offer .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-optin .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-thankyou .wcf-custom-node-label{font-size:18px;padding:20px;text-align:center}.wcf-steps-chart .react-flow__node-checkout .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-landing .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-offer .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-optin .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-thankyou .wcf-custom-node-design{background-repeat:no-repeat;border:1px solid #c2c2c2;border-radius:10px;height:259px;width:200px}.wcf-steps-chart .react-flow__node-conditional{font-size:12px;text-align:center}.wcf-steps-chart .react-flow__node-conditional .wcf-handle-left{top:42%}.wcf-steps-chart .react-flow__node-conditional .wcf-custom-node-label{font-size:18px;padding:20px 0;text-align:center}.wcf-steps-chart .react-flow__node-conditional .wcf-custom-node-design{background-repeat:no-repeat;border:1px solid #c2c2c2;border-radius:10px;height:137px;position:relative;width:117px}.wcf-steps-chart .react-flow__node-conditional .wcf-custom-node-design .wcf-node-actions{visibility:hidden}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper{border:1px solid #ec4a8e;margin:-11px;padding:10px;position:relative}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .wcf-rect{background:#fff;border:1.5px solid red;border-radius:3px;height:10px;position:absolute;width:10px}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .top-left{left:-5px;top:-5px}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .top-right{right:-5px;top:-5px}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .botton-left{left:-5px;top:274px}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .bottom-right{right:-5px;top:274px}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions{background:#fff;border-radius:2px;display:flex;left:35px;padding:2px 5px;position:absolute;top:-75px;visibility:visible}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a{cursor:pointer;display:block;padding:10px;text-decoration:none}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a .dashicons{color:#484848;font-size:25px;margin-bottom:5px}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a :hover{color:#2271b1}.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions:before,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions:before,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions:before,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions:before,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions:before{background-color:#fff;border:1px solid #f4f4f4;border-left:none;border-top:none;content:"";height:20px;left:56px;position:absolute;top:36px;transform:rotate(45deg);width:20px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper{border:1px solid #ec4a8e;margin:-11px;padding:10px;position:relative}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .wcf-rect{background:#fff;border:1.5px solid red;border-radius:3px;height:10px;position:absolute;width:10px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .top-left{left:-5px;top:-5px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .top-right{right:-5px;top:-5px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .botton-left{left:-5px;top:152px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .bottom-right{right:-5px;top:152px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions{background:#fff;border-radius:2px;display:flex;left:37px;padding:2px 5px;position:absolute;top:-67px;visibility:visible}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a{cursor:pointer;display:block;padding:10px;text-decoration:none}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a .dashicons{color:#484848;display:block;font-size:25px;height:20px;line-height:20px;margin:0 0 0 -1px;width:25px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a :hover{color:#2271b1}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-action-delete{visibility:hidden}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions:before{background-color:#fff;border:1px solid #f4f4f4;border-left:none;border-top:none;content:"";height:20px;left:16px;position:absolute;top:29px;transform:rotate(45deg);width:20px;z-index:-1}
56
  .wcf-steps-chart .react-flow__edge-path{stroke:#2271b1;stroke-width:2px}
57
- .wcf-step-library__item{align-items:center;background:transparent;border:5px dashed rgba(0,0,0,.1);display:flex;flex:1;flex-direction:column;font-size:22px;height:250px;justify-content:center;margin:0 1em;padding:5em 0;position:relative;text-align:center}.wcf-step-library__item:first-child:last-child{margin:0 auto;max-width:450px}.wcf-step-library__item .wcf-notice{background:transparent;border:none;box-shadow:none;margin:0}
58
  .wcf-create-step__dropdown-list{margin-bottom:.5em}
59
- .wcf-learn-how{font-size:1rem;margin-top:1em}.wcf-learn-how a{text-decoration:none}.wcf-learn-how i{font-size:medium;vertical-align:middle}.wcf-button.disabled{background:rgba(241,99,52,.749);pointer-events:none}
60
- .wcf-spinner{animation:spin 2s linear infinite;float:none;margin:0}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}
61
- .wcf-activate-link{font-size:14px;text-decoration:none}.wcf-activate-link .wcf-icon{font-size:medium;margin-left:2px;vertical-align:middle}
62
- .wcf-name-your-step{bottom:0;left:0;position:fixed;right:0;top:0;z-index:9999}.wcf-name-your-step.show{display:block}.wcf-name-your-step.hide{display:none}.wcf-name-your-step .wcf-name-your-step__inner{background:#fff;border-radius:2px;margin:30vh auto 0;max-width:550px;position:relative;width:500px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close{cursor:pointer;padding:15px;position:absolute;right:0;top:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close .dashicons{color:#aaa}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close .dashicons:hover{color:#9a9a9a}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header{align-items:center;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;margin:0;padding:0;position:relative;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__title .wcf-name-your-step-popup__title{color:#444;font-size:16px;font-weight:500;line-height:1;margin:0;padding-left:25px;text-transform:capitalize}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__title .wcf-name-your-step-popup__title .cartflows-logo-icon{font-size:14px;margin-right:10px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu{border-left:1px solid #ddd;color:#ccc;cursor:pointer;display:inline-block;padding:15px;position:relative}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu:after{font-size:25px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu:hover{color:#aaa}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header h3{margin-top:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body{background:#f5f5f5;display:block;padding:30px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body input{width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__text-field-wrap{margin-right:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer{margin-top:10px;text-align:right}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-step-import__message{display:inline-block;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-step-import__message p{color:#444;font-size:18px;font-weight:400}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message{display:inline-block;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message p{color:#444;font-size:18px;font-weight:400}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__button,.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message{text-align:center}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer button a{color:#fff}.wcf-name-your-step .wcf-name-your-step__overlay{background:rgba(0,0,0,.729);bottom:0;left:0;position:absolute;right:0;top:0}
63
- .wcf-remote-filters{padding:15px;text-align:center}.wcf-remote-filters .filter-links,.wcf-remote-filters .filter-links li{display:inline-block;margin:0}.wcf-remote-filters .filter-links li:first-child .step-type-filter-item{margin-left:0}.wcf-remote-filters .filter-links li .step-type-filter-item{border-bottom:0;color:#555;font-size:14px;font-weight:400;margin:0 10px;padding:10px;text-decoration:none;text-transform:capitalize}.wcf-remote-filters .filter-links li .step-type-filter-item.current{color:#f06335}.wcf-remote-filters .filter-links li .step-type-filter-item:hover{color:#000}.wcf-item{float:left;margin-bottom:40px;padding-left:20px;padding-right:20px;position:relative;transition:all .2s ease-in-out;width:25%}.wcf-item__type{border-radius:2px;color:#fff;font-size:10px;font-weight:700;letter-spacing:.3px;padding:3px 10px;position:absolute;right:14px;text-transform:uppercase;top:-6px;z-index:2}.wcf-item__inner{background:#fff;border:1px solid #ddd;border-radius:3px;cursor:pointer;display:block;overflow:hidden;position:relative;transition:all .2s ease-in-out;z-index:1}.wcf-item__inner:hover{transform:translateY(-1px)}.wcf-item__inner:hover .wcf-item__thumbnail-wrap{opacity:.7;transform:scale(1.02)}.wcf-item__inner:hover .wcf-item__view,.wcf-item__inner:hover .wcf-step-preview-wrap{opacity:1}.wcf-item__inner .wcf-step-preview-wrap{left:0;opacity:0;position:absolute;right:0;text-align:center;top:50%;transform:translateY(-50%);z-index:15}.wcf-item__inner .wcf-step-preview{background:rgba(0,0,0,.7);border-radius:3px;color:#fff;font-size:14px;font-weight:600;line-height:1.5px;padding:7px 18px;text-decoration:none;text-shadow:0 1px 0 rgba(0,0,0,.6)}.wcf-item__inner .wcf-step-preview .dashicons{margin-left:2px}.wcf-item__type{background:#f16334}.wcf-item__thumbnail-wrap{padding:8px;transition:all .2s ease-in-out}.wcf-item__thumbnail{background:#fff;border-bottom:1px solid #ededed;max-height:225px;overflow:hidden;position:relative}.wcf-item__thumbnail-image{width:100%}.wcf-item__view{background:#fff;border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-top:none;bottom:0;color:#263238;display:block;height:auto;left:0;opacity:0;padding:10px;position:absolute;right:0;text-align:center;transition:all .2s ease-in-out;z-index:15}.wcf-item__btn{background:#f16334;border:none;border-radius:2px;color:#fff;cursor:pointer;display:inline-block;font-size:13px;font-weight:600;padding:7px 22px;text-shadow:none}.wcf-item__heading-wrap{padding:10px 15px;text-align:center}.wcf-item__heading{color:#2f3f50;font-size:14px;font-weight:500;margin-bottom:3px;width:100%}
64
- .wcf-flow-importer{margin-top:1em}.wcf-step-importer__list{margin-top:2em}.wcf-step-importer__list .wcf-step-row:last-child{border:0}.wcf-item__inner--active{border-color:#5b9dd9;border-radius:2px}.wcf-step-library .wcf-items-list{display:flex;flex-wrap:wrap;justify-content:flex-start;margin-left:-20px;margin-right:-20px;padding:0}.wcf-step-library .wcf-step-library__step-actions{align-items:center;background:#fff;border-bottom:1px solid #eee;display:flex;justify-content:space-between;min-height:50px;padding:0 30px;position:relative}.wcf-step-library .wcf-step-library__step-actions .wcf-button{margin-right:30px;min-height:auto}.wcf-step-library .wcf-step-library__step-actions h3{color:#444;font-weight:500}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper{align-items:center;display:flex;height:100%;justify-content:center;left:0;position:absolute;right:0;width:100%}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links{display:inline-block;margin:0;padding:0}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li{display:inline-block}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .get-started-step-item{align-items:center;border:none;color:#444;font-size:14px;font-weight:400;justify-content:center;margin:0 0 -6px;min-width:100px;padding:10px 22px 15px;position:relative;text-decoration:none;width:unset}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .get-started-step-item:hover{border-bottom:2px solid #f06335;color:#f06335}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .current{border-bottom:2px solid #f06335;color:#f06335;font-weight:400}.wcf-step-library .wcf-remote-content{background:#fff;min-height:750px;padding:30px;position:relative;width:100%}.wcf-step-library .wcf-remote-content .wcf-ready-templates{display:none}.wcf-step-library .wcf-remote-content .wcf-ready-templates.current{display:block}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch{display:none}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch.current{align-items:center;display:flex;min-height:500px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item{border:4px dashed #ddd;border-radius:2px;height:350px;max-width:600px;padding:unset}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;padding:20px 30px;width:100%}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__dropdown-list{margin:0 10px 0 0}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__dropdown-list select{height:36px;margin:0;width:200px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-learn-how{margin-top:30px;width:100%}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__notice-wrap{width:100%}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__notice-wrap .wcf-create-step__notice p{color:#444;font-size:14px;margin:0 0 20px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item--scratch h3{color:#444;font-size:22px;font-weight:500;margin:0 0 10px;width:100%}
65
- .wcf-edit-flow__title-wrap{align-items:center;display:flex;justify-content:space-between;margin:0;padding:0 15px 10px}.wcf-edit-flow__title-wrap .wcf-flows-header--title{color:#444;font-size:22px;font-weight:500;line-height:40px;width:50%}.wcf-edit-flow__title-wrap .wcf-step__title--editable{align-items:center;display:flex}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--text input{background:#fff;border-color:#aaa;color:#444;font-weight:400;height:40px;line-height:1;width:350px}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons{display:inline;vertical-align:middle}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-button--small{font-size:14px;font-weight:400;line-height:1;padding:9px 20px}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-button--small.wcf-saving{animation:wcf-saving 2.5s linear infinite;background-image:linear-gradient(-45deg,#f06335 28%,#f78860 0,#f78860 72%,#f06335 0);background-size:100px 100%;opacity:1}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons a,.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons button{margin-left:10px;text-decoration:none;vertical-align:middle}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-flows-header__title--edit .dashicons-edit{vertical-align:unset}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-flows-header__title--edit .dashicons-edit:before{background:#fff;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-flows-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums{text-align:right;width:50%}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums .wcf-breadcrum--nav-item{color:#444;font-size:14px;font-weight:500}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link{color:var(--primary-color);text-decoration:none}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link:hover{color:var(--primary-hv-color)}
 
 
 
 
 
 
 
 
 
 
 
66
  .editor-wrap__content{background:#fff;position:relative}
67
- .wcf-woo-notice{color:red;padding:20px}.wcf-payment-gateway-notice,.wcf-woo-notice{background:#fff;border-left:2px solid red;margin:0 0 15px}.wcf-payment-gateway-notice{line-height:1.5;padding:15px}.wcf-payment-gateway-notice .wcf-gateway-notice-style{font-weight:700}.wcf-vertical-nav .wcf-textarea-field textarea[id*=-script]{width:500px}
68
- .wcf-edit-step--nav{background:#fff;border-bottom:1px solid #ededed;box-shadow:none;display:flex;margin:0;padding:0}.wcf-edit-step--nav a.wcf-edit-step--nav__back-to-flow{padding:18px 25px 18px 18px}.wcf-edit-step--nav a.wcf-edit-step--nav__back-to-flow:hover{background:#fafafa}.wcf-edit-step--nav .wcf-edit-step--nav__back-to-flow--button{background:transparent;border:none;cursor:pointer;line-height:1}.wcf-edit-step--nav .wcf-edit-step--nav__back-to-flow--button .dashicons{color:#444;font-size:15px;height:-moz-fit-content;height:fit-content;margin-right:8px;width:-moz-fit-content;width:fit-content}.wcf-edit-step--nav .wcf-edit-step--nav__back-to-flow--button .wcf-back-button{color:#444;font-size:15px}.wcf-edit-step--nav .wcf-edit-flow--nav__back-to-flow--button:focus,.wcf-edit-step--nav .wcf-edit-flow--nav__back-to-flow:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-step--nav__tab{background:transparent;border:1px solid #fff;border-bottom:1px solid #ededed;border-top:0;box-shadow:none;color:#434343;cursor:pointer;font-size:15px;font-weight:300;line-height:1;margin-bottom:-1px;max-width:100%;outline:none;padding:18px 25px;text-align:center;text-decoration:none}.wcf-edit-step--nav__tab:hover{background:#f8f8f9;border:1px solid #f8f8f9;border-top:0;color:#444}.wcf-edit-step--nav__tab:first-child{border-left:0}.wcf-edit-step--nav__tab:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-step--nav__tab--active,.wcf-edit-step--nav__tab--active:hover{background:#fff;border:1px solid #ededed;border-bottom-color:#fff;border-top:0;color:#444;font-weight:300}.wcf-edit-step--nav__tab--active:first-child{border-left:0}
69
- .wcf-page-wrapper{min-height:750px;padding:30px}.wcf-page-wrapper .wcf-list-options .wcf-list-options__title,.wcf-page-wrapper .wcf-nav-content label.wcf-field-section-heading{border-bottom:1px solid #ddd;display:inline-block;font-size:18px;font-weight:500;padding:35px 0 15px;width:100%}.wcf-page-wrapper .wcf-checkout__section .wcf-list-options__title,.wcf-page-wrapper .wcf-custom-field-editor__content .wcf-custom-field-editor__title{padding-top:0}.wcf-page-wrapper form{position:relative;width:100%}.wcf-page-wrapper .wcf-field__data--label label,.wcf-page-wrapper .wcf-selection-field label{color:#444;display:inline-block;font-size:14px;font-weight:500;line-height:1.1;padding-right:20px;width:300px}.wcf-page-wrapper .wcf-section-heading-field .wcf-field__data--label{border-bottom:1px solid #ddd;margin-bottom:10px;padding:25px 0 5px}.wcf-page-wrapper .wcf-section-heading-field .wcf-field__data--label label{font-size:16px;font-weight:600}.wcf-page-wrapper .wcf-sub-heading-field .wcf-field__data--label{border-bottom:1px solid #ddd;margin-bottom:10px;padding:15px 0 5px}.wcf-page-wrapper .wcf-sub-heading-field .wcf-field__data--label label{font-size:15px;font-weight:500}.wcf-page-wrapper .wcf-checkbox-field .wcf-field__data--label,.wcf-page-wrapper .wcf-checkbox-field .wcf-field__data--label label,.wcf-page-wrapper .wcf-radio-button .wcf-field__data--label,.wcf-page-wrapper .wcf-radio-button .wcf-field__data--label label{font-size:14px;width:-moz-fit-content;width:fit-content}.wcf-page-wrapper .wcf-checkbox-field input[type=checkbox],.wcf-page-wrapper .wcf-radio-button input[type=radio]{margin:0 10px 0 0}.wcf-page-wrapper h3{color:#444;line-height:1;margin-top:0}.wcf-page-wrapper h3,.wcf-page-wrapper label.wcf-field-section-heading{font-size:18px;padding:25px 0;width:100%}.wcf-page-wrapper label.wcf-field-section-heading{border-bottom:1px solid #ddd;display:inline-block;font-size:18px;font-weight:500;padding:35px 0 15px;width:100%}.wcf-page-wrapper .wcf-selection-field .css-2b097c-container,.wcf-page-wrapper .wcf-selection-field .wcf-select2-input{margin:0}.wcf-page-wrapper .wcf-note-content{color:#444;font-size:15px;font-weight:500}.wcf-page-wrapper .wcf-pro-update-notice{color:#444;font-size:14px;font-weight:500}
70
- .wcf-settings{margin:30px 0}.wcf-settings .wcf-vertical-nav__content{background:#fafafa;border:1px solid #eee;padding:20px 30px;width:80%}.wcf-settings .wcf-submit-button{margin-top:30px;text-align:right}.wcf-vertical-nav{border-radius:2px;display:flex;font-size:14px;min-height:500px}.wcf-vertical-nav .wcf-nav-content__header--button,.wcf-vertical-nav .wcf-nav-content__header--title{padding:0 0 10px}.wcf-vertical-nav .wcf-vertical-nav__menu{background:#f7f8fa;border:0;width:20%}.wcf-vertical-nav .wcf-text-field input{background:#fff;font-weight:400;height:38px;width:300px}.wcf-vertical-nav .wcf-textarea-field textarea{border-color:#ccc;border-radius:2px;font-weight:400;padding:10px;width:300px}.wcf-vertical-nav .wcf-textarea-field textarea:focus{border-color:#aaa;box-shadow:none}.wcf-vertical-nav p{color:#444;font-size:14px;font-weight:400}.wcf-vertical-nav__header{align-items:center;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;margin-bottom:20px}.wcf-vertical-nav__header .wcf-vertical-nav__header-title{font-size:18px;font-weight:500;margin:0;padding:0 10px 10px 0;width:50%}.wcf-vertical-nav__header .wcf-vertical-nav__header-button{display:flex;justify-content:flex-end;padding:0 0 10px 10px}
71
- .wcf-design-page .wcf-design-page__content{background:#fff;margin:0;padding:0 0 50px}.wcf-design-page .wcf-design-page__content .wcf-design-header--title{color:#444;font-size:22px;font-weight:500;line-height:1;margin:0;padding:0 0 15px}.wcf-design-page .wcf-design-page__content .wcf-design-page__text{font-size:15px;padding:10px 0}.wcf-design-page .wcf-design-page__content a.wcf-design-page__WPeditor{font-size:15px}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .new-step-title{background:#fafafa;border-color:#ccc;line-height:2;padding:2px 15px}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons{display:inline;vertical-align:middle}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons .wcf-design-header__title--edit .dashicons-edit:before{background:#eee;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons .wcf-design-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons a{margin-left:10px;text-decoration:none;vertical-align:middle}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons a:focus,.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons a:hover{box-shadow:none;outline:none}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize{margin:25px 0}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--edit,.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--preview{margin-right:15px}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--edit{background:var(--primary-color);border-color:var(--primary-color);color:#fff}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--edit:hover{background:var(--primary-hv-color);border-color:var(--primary-color);color:#fff}.wcf-design-page .wcf-design-page__content .wcf-design-page__text{font-size:14px}.wcf-design-page .wcf-design-page__settings{margin:0;padding:15px 0 0}.wcf-design-page .wcf-design-page__settings h3{font-weight:500;margin:0 0 20px}.wcf-design-page .wcf-design-page__settings .wcf-settings{margin:30px 0}
72
- .wcf-design-page.is-placeholder .wcf-design-page__content .wcf-design-header--title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px;width:30%}.wcf-design-page.is-placeholder .wcf-design-page__customize{display:flex}.wcf-design-page.is-placeholder .wcf-design-page__customize .wcf-design-page__button{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;border-right:1px solid #fff;padding:15px;width:12%}.wcf-design-page.is-placeholder .wcf-design-page__text .title{width:60%}.wcf-design-page.is-placeholder .wcf-design-page__WPeditor .title,.wcf-design-page.is-placeholder .wcf-design-page__text .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:8px}.wcf-design-page.is-placeholder .wcf-design-page__WPeditor .title{width:30%}.wcf-design-page.is-placeholder .wcf-design-page__settings .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px;width:15%}.wcf-design-page.is-placeholder .wcf-design-page__settings .wcf-field.wcf-checkbox-field{margin-top:20px}.wcf-design-page.is-placeholder .wcf-design-page__settings .wcf-field.wcf-checkbox-field .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:20px;width:30%}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:0}}
73
- .wcf-settings-nav{display:flex}.wcf-settings-nav__tabs{background:#f7f8fa;padding:15px;width:250px}.wcf-settings-nav__tab{padding:0 0 10px}.wcf-settings-nav__tab:last-child{padding:0}.wcf-settings-nav__content{background:#fff;padding:25px;width:calc(100% - 250px)}
74
- .wcf-product-products .wcf-checkout-products--coupon,.wcf-product-products .wcf-checkout-products--options,.wcf-product-products .wcf-products--selection{margin:5px 0 15px}.wcf-product-products .wcf-checkout-product-selection-field{border:1px solid #dfdfdf;border-radius:3px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--product{width:35%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--quantity{width:20%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--discount{width:40%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--actions{width:5%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header{border-bottom:1px solid #dfdfdf;justify-content:left;padding:10px 20px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header .wcf-column--product{padding:0 0 0 20px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product{align-items:center;border-bottom:1px solid #dfdfdf;cursor:grab;display:flex;padding:15px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product *{line-height:1.1}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__drag{margin-right:20px;width:2%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen{background:#f9f9fa;cursor:grab;transition:all .1s ease-in}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen.sortable-ghost{cursor:grabbing}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-data{align-items:center;width:35%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-image img{display:block;height:80px;margin:0 auto;width:80px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details *{font-size:11px;font-weight:500;line-height:1.1em;margin-bottom:5px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details .wcf-product-repeater-field__title{font-size:15px;margin-bottom:10px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__quantity input{margin-right:20px;width:150px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount .wcf-product-repeater-field__discount-type{width:auto}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount input,.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount select{margin-right:20px;width:150px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action{margin-left:auto}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action .wcf-remove-product-button:hover{color:var(--primary-color);cursor:pointer}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new{padding:20px}
75
- .wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-product-selection-wrapper .wcf-list-options .wcf-list-options__title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px;width:30%}.wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-product-selection-wrapper .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new{display:flex}.wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-product-selection-wrapper .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new .wcf-checkout-products__button{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;border-right:1px solid #fff;padding:15px;width:12%}.wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-design-header--title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px;width:30%}.wcf-checkout-products.is-placeholder .wcf-checkout-products__pro-options .wcf-checkout-products--coupon .wcf-list-options__title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px;width:15%}.wcf-checkout-products.is-placeholder .wcf-checkout-products__pro-options .wcf-checkout-products--coupon .wcf-select2-field .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px;width:30%}.wcf-checkout-products.is-placeholder .wcf-field.wcf-submit .wcf-checkout-products__button{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;border-right:1px solid #fff;padding:15px;width:12%}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:0}}
76
- .wcf-list-options{color:#444;line-height:34px;padding:0;text-align:left}.wcf-list-options table{width:100%}.wcf-list-options table th{font-weight:400;padding:0 0 10px}.wcf-list-options label{font-weight:500}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{color:#444;font-size:15px;font-weight:500}.wcf-list-options .wcf-child-field:before{color:#ccc;content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);font-family:dashicons;font-weight:400;margin-right:.75em;position:relative;top:-6px;vertical-align:middle}
77
- .wcf-multiple-order-bumps{border-radius:3px;margin-bottom:20px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__content .sortable-chosen{background:#fafafb}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__content .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__content .sortable-chosen .wcf-order-bump__content-wrapper{background:#fafafb;border:1px dashed #aaa}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header{background:#f5f6f7;border:1px solid #dfdfdf;display:flex;justify-content:space-between;line-height:1.2;padding:10px 20px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header .wcf-column{color:#444;font-size:15px;font-weight:500}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header .wcf-column--title{padding:0 0 0 20px;width:35%}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header .wcf-column--actions{display:flex;justify-content:flex-end;padding:0 20px 0 0;width:25%}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__no-content{border:1px solid #dfdfdf;border-top:none;padding:20px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__no-content p{margin-left:20px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__add-new{padding:0 0 30px;text-align:right}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__add-new .dashicons{font-size:18px;line-height:1.2;margin-right:5px;vertical-align:middle}
78
- .wcf-add-ob-popup-overlay{background:rgba(0,0,0,.729);height:100%;left:0;position:fixed;text-align:left;top:0;width:100%;z-index:9999}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content{background:#fff;border-radius:3px;justify-content:space-between;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:510px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header{align-items:center;border-bottom:1px solid #ddd;display:flex;height:50px;justify-content:space-between;margin:0;padding:0;position:relative;width:100%}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__title h2{font-size:14px;font-weight:600;line-height:1;margin-right:10px;padding-left:25px;text-transform:uppercase}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__title h2 .cartflows-logo-icon{font-size:16px;margin-right:8px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu{border-left:1px solid #ddd;color:#ccc;cursor:pointer;display:inline-block;padding:5px;position:relative}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu .dashicons{line-height:1.5}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu:after{font-size:25px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu:hover{color:#aaa}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-select2-field .wcf-selection-field label{display:none}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-content-wrap{background:#f5f5f5;padding:25px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-content-wrap .wcf-content-wrap{padding:45px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-content-wrap .wcf-add-ob-content{display:flex;justify-content:space-between;padding:20px 0}
79
- .wcf-order-bump .wcf-order-bump__content-wrapper{align-items:center;border-bottom:1px solid #dfdfdf;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf;display:flex;justify-content:space-between;line-height:1.5;padding:25px 30px}.wcf-order-bump .wcf-order-bump__content-wrapper:hover{background:#fafafa}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bumps__data{align-items:center;width:35%}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bumps__data-title img{display:block;height:80px;margin:0 auto;width:80px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action{display:flex;justify-content:flex-end;width:25%}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a{cursor:pointer;font-size:14px;line-height:1.5;margin-right:15px;text-align:center;text-decoration:none;vertical-align:middle}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-clone-bump-button.wcf-cloning,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-remove-order-bump-button.wcf-removing{margin-right:0}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-clone-bump-button.wcf-cloning .dashicons,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-remove-order-bump-button.wcf-removing .dashicons{margin-right:2px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-design-button,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-settings-button{margin-left:0;margin-right:20px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-design-button:hover,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-settings-button:hover{color:var(--primary-color);cursor:pointer}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-remove-order-bump-button.wcf-removing{color:var(--primary-hv-color)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .dashicons{font-size:18px;line-height:1.3;margin-right:5px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf_order_bump__status{display:flex;position:relative}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf_order_bump__status .wcf-spinner{animation:spin 2s linear infinite;color:#434343;float:none;left:45px;margin:0;position:absolute;right:0}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__data{padding-left:10px;width:35%}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__data .wcf-order-bump__data-title a{font-size:15px;font-weight:500;text-decoration:none}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-ob-status{align-self:center}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields{background:#f5f6f7;border:1px solid #ececec;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:20px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field{margin-bottom:20px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field__desc{line-height:1.5}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field.wcf-checkbox-field{margin-bottom:10px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field__data .wcf-field__data--label label{width:200px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-selection-field{margin-bottom:15px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-selection-field label{width:200px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-ob-header__title--edit span{margin-left:10px;text-decoration:none}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch{border:none;border-radius:30px;box-shadow:inset 0 0 0 0 transparent;box-sizing:border-box;cursor:pointer;display:block;height:22px;position:relative;text-indent:-999em;transition:all .3s ease;width:38px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch:focus{outline:none}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch:before{background:#fff;border-radius:50%;box-shadow:0 1px 3px rgba(0,0,0,.3);content:"";display:block;height:18px;left:2px;position:absolute;top:2px;transition:all .15s ease;width:18px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch[data-wcf-order-bump-switch=true]{box-shadow:inset 0 0 0 12px var(--primary-border-color)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch[data-wcf-order-bump-switch=true]:before{transform:translateX(16px)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch[data-wcf-order-bump-switch=false]{background:#ccc}
80
- .wcf-multiple-order-bumps.is-placeholder .wcf-add-new-order-bump{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:10px 90px;width:100%}.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-column--product{width:25%}.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-column--actions span,.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-order-bump__data-title,.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf_order_bump__status{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px;width:100%}.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-column--actions,.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf_order_bump__status{width:10%}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:0}}
81
- .wcf-list-options{color:#444;line-height:34px;padding:0;text-align:left}.wcf-list-options table{width:100%}.wcf-list-options table th{font-weight:400;padding:0 0 10px}.wcf-list-options label{font-weight:500}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{color:#444;font-size:15px;font-weight:500}.wcf-list-options .wcf-child-field:before{color:#ccc;content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);font-family:dashicons;font-weight:400;margin-right:.75em;position:relative;top:-6px;vertical-align:middle}
82
- .wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options .wcf-list-options__title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px;width:50%}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options table tr .checkbox-title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;margin-bottom:20px;padding:10px;width:15%}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options table tr .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#ddd 80px);background-position:0;margin-bottom:10px;padding:15px;width:30%}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options .wcf-field.wcf-submit{margin-top:20px}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options .wcf-field.wcf-submit .wcf-checkout-offer__button{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;border-right:1px solid #fff;padding:20px;width:10%}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:0}}
83
- .wcf-list-options{color:#444;line-height:34px;padding:0;text-align:left}.wcf-list-options table{width:100%}.wcf-list-options table th{font-weight:400;padding:0 0 10px}.wcf-list-options table .wcf-field__data--label label,.wcf-list-options table .wcf-selection-field label{font-weight:500;width:230px}.wcf-list-options table textarea{width:300px}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{color:#444;font-size:15px;font-weight:500}.wcf-list-options .wcf-child-field:before{color:#ccc;content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);font-family:dashicons;font-weight:400;margin-right:.75em;position:relative;top:-6px;vertical-align:middle}.wcf-list-options .wcf-co-options-wrapper{display:flex;justify-content:space-between}.wcf-list-options .wcf-co-options-wrapper .wcf-co-preview{height:auto;margin:20px 0 0 30px;transition:all .3s;width:100%}.wcf-list-options .wcf-co-options-wrapper .wcf-co-preview .wcf-section-heading-field{margin:27px 0}.wcf-list-options .wcf-co-options-wrapper .wcf-co-settings .wcf-first-style-child{padding-top:0}.wcf-list-options .wcf-co-options-wrapper table{width:80%}.wcf-list-options .wcf-co-options-wrapper.full-screen{flex-flow:column}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-settings{order:2}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview{margin:0 0 30px;order:1}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper{position:unset}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper{height:100%;left:0;overflow:auto;position:fixed;top:0;width:100%;z-index:9999}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal{margin:20px auto;max-width:950px;min-height:350px;top:0}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal .wcf-lightbox-content{padding:50px}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal .wcf-lightbox-content .wcf-pre-checkout-info{padding:30px}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-full-screen-preview-exit-button{position:fixed;right:40px;top:55px;z-index:99999}.wcf-co-full-screen-preview{overflow:hidden}
84
- .wcf-checkout-offer-preview-wrapper:not(.fullscreen){position:relative}.wcf-checkout-offer-preview-wrapper.sticky{position:sticky;top:90px}.wcf-checkout-offer-preview-wrapper.fullscreen{background-color:#fff;left:0;position:absolute;top:-30px}.wcf-checkout-offer-preview-wrapper.fullscreen .wcf-section-heading-field{margin-top:0}.wcf-checkout-offer-preview-wrapper.fullscreen .wcf-section-heading-field .wcf-field__data--label{padding-top:0}.wcf-checkout-offer-preview-wrapper.fullscreen .wcf-pre-checkout-offer-wrapper{margin:0 auto;width:80%}.wcf-checkout-offer-preview-wrapper .wcf-co-preview-mode{position:absolute;right:0;top:25px}.wcf-pre-checkout-offer-wrapper{background:#eee;padding:40px;transition:opacity .25s;z-index:1042}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-title h1{color:#333;font-family:inherit;font-size:1.7em;margin:10px 0}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-skip-btn .wcf-pre-checkout-skip{color:#555;display:block;font-size:14px;margin:5px auto 0;opacity:.8;width:-moz-fit-content;width:fit-content}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-skip-btn .wcf-pre-checkout-skip:hover{opacity:1}.wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-content{background-color:#fff;border:2px dashed #e2e2e2;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.04);display:inline-block;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-progress-bar{margin-bottom:0;overflow:hidden}.wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal{background-color:#fff;border-radius:4px;box-shadow:0 0 30px 5px rgba(0,0,0,.1);font-family:inherit;overflow:hidden;position:relative;transform:translate(0)}.wcf-pre-checkout-offer-wrapper .wcf-progress-bar-nav{margin-bottom:30px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-progress{display:table;position:relative;table-layout:fixed;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step{display:table-cell;position:relative;text-align:center;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-title{color:#6d6d6d;font:inherit;font-size:14px;letter-spacing:.6px;margin-bottom:12px;white-space:nowrap}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-nav-bar-title{color:inherit}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .after{right:0}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .after,.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .before{background:#e2e2e2;bottom:8px;content:"";display:block;height:4px;position:absolute;width:50%}.wcf-pre-checkout-offer-wrapper .wcf-progress-nav-step{background:#e2e2e2;border-radius:3px;height:20px;line-height:17px;margin:auto;position:relative;text-align:center;vertical-align:middle;width:20px;z-index:2}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-sub-title{bottom:0;left:0;margin-bottom:10px;position:relative;text-align:center}.wcf-pre-checkout-offer-wrapper .wcf-content-main-head{margin-bottom:30px;padding:10px;position:relative;text-align:center;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-content-main-head .wcf_first_name{color:#f16334}.wcf-pre-checkout-offer-wrapper .wcf-lightbox-content{padding:35px 20px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price ins{background:none}.wcf-pre-checkout-screen-size .open #wcf-pre-checkout-offer-modal{top:50%;transform:translateY(-50%)}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-nav-bar-step-line .before{background:#f16334}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-nav-bar-step-line .order-after{background:#f16334;bottom:8px;content:"";height:4px;position:absolute;width:50%}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .before{left:0}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step:first-child .wcf-nav-bar-step-line:before,.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step:last-child .wcf-nav-bar-step-line:after{background:#000;display:none!important}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active+.wcf-nav-bar-step.active .wcf-nav-bar-step-line:after{background:#e2e2e2!important}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-progress-nav-step{background:#f16334}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-progress-nav-step .before{speak:none;-webkit-font-smoothing:antialiased;background-color:#fff;border:1px solid #fff;border-radius:1px;color:#fff;content:"";display:inline-block;font:normal normal 400 13px/20px cartflows-icon;height:6px;line-height:7px;margin:0;right:7px;vertical-align:middle;width:6px}.wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-content button.wcf-pre-checkout-offer-btn{background:#f16334;border:1px solid #f16334;border-radius:3px;color:#fff;font-family:inherit;font-size:16px;font-weight:600;line-height:1;margin-top:0;min-height:48px;outline:none;padding:12px 16px;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-product-title h1{color:#333;font-size:1.5em;font-weight:700;margin-bottom:8px;margin-top:0}.wcf-pre-checkout-offer-wrapper.open{height:100%;left:0;opacity:1;padding:30px;text-align:center;top:0;visibility:visible;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-btn-action,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-desc,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price{padding:5px 0}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price .woocommerce-Price-amount.amount,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price ins .woocommerce-Price-amount.amount{display:inline-block;font-size:17px;font-weight:600;margin-bottom:3px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price del .woocommerce-Price-amount.amount{font-weight:400;text-decoration:line-through}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-info{display:inline-block;padding:20px 20px 12px;text-align:center;vertical-align:middle;width:49.7%}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-img img{border:2px solid #e2e2e2;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-info.wcf-pre-checkout-offer-product-details{line-height:2;padding-left:10px;text-align:left}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-actions{padding:0 20px 15px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-btn-action{font-size:12px;padding-top:0}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-sub-title span,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-desc span{font-family:inherit}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-desc span{color:#555;margin-top:5px}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-sub-title span{color:#555;font-size:18px;font-weight:500;padding:0 5px}
85
  .wcf-checkout-offer-save-settings{margin-top:25px}
86
- .wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper{background-color:#fafafa;padding:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules--text{display:flex;padding:10px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules--text .wcf-skeleton{margin-right:7px}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules{margin-bottom:20px;margin-top:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules .wcf-checkout-rule__and{margin:7px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules .wcf-checkout-rule--select-box{display:flex}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules .wcf-checkout-rule--select-box .wcf-skeleton{margin-right:20px}.wcf-checkout-rules-page .wcf-checkout-rules--or{display:flex;justify-content:space-between;margin-left:20px;margin-top:20px;padding:15px 0}.wcf-checkout-rules-page .wcf-checkout-rules--default-step{background-color:#fafafa;display:flex}.wcf-checkout-rules-page .wcf-checkout-rules--default-step .wcf-skeleton{margin-right:7px}
87
- .wcf-checkout-rules--group_rules{display:flex;margin-bottom:10px;position:relative}.wcf-checkout-rules--group_rules:first-child{margin-top:-17px;position:relative}.wcf-checkout-rules--group_rules:not(first-child){margin-top:10px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields{display:flex}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-conditional-field-text,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-conditional-field-text{align-self:center;margin-right:10px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-coupon-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-number-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-product-cat-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-product-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-select-option,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-select2-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-coupon-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-number-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-product-cat-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-product-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-select-option,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-select2-field{margin-right:18px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-checkout-rules--and_text,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-checkout-rules--and_text{align-self:center;margin:0 20px 0 10px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .and-close,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .and-close{align-self:center;cursor:pointer;font-size:18px;margin:5px 10px 0 0}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .and-close:hover,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .and-close:hover{color:#2271b1}
88
- .wcf-checkout-rules-page .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-checkout-rules-page .sortable-chosen .wcf-checkout-rules--group{background:#fafafb;border:1px dashed #aaa}.wcf-checkout-rules-page .wcf-checkout-rules-page--enable_option{margin-bottom:30px}.wcf-checkout-rules-page .wcf-checkout-rules-page--enable_option label{align-items:center;display:flex;justify-content:center}.wcf-checkout-rules-page div .wcf-checkout-rules-page--group_wrapper{cursor:grab}.wcf-checkout-rules-page .wcf-checkout-rules--group{background-color:#fafafa;border:1px dashed #fafafa;padding:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group select{margin:0}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf__control{border:1px solid #bebebe;width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf__value-container{line-height:16px;max-height:36px;overflow-y:auto;scroll-behavior:smooth}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf__value-container .wcf__multi-value{margin:5px 3px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--add-rule__repeater{display:flex;margin-top:-10px;position:relative}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--add-rule__repeater .wcf-button--secondary:hover{background-color:#fff;border:1px solid #2271b1;color:#2271b1}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step{display:flex;justify-content:space-between;margin:5px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header__left{align-items:center;display:flex;justify-content:space-between}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header__left .wcf-checkout-rules__handle{cursor:move;margin-right:10px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step label{padding-right:10px;width:auto}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step select{border:1px solid #bebebe;width:auto}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_id{color:#a3a2a2;font-size:10px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header{align-items:center;display:flex;justify-content:space-between}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header .dashicons{cursor:pointer;font-size:30px;line-height:.6;margin-left:10px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper{display:inline-block;margin:45px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-selection-field .wcf-select2-input{width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-select-option select{border:1px solid #bebebe;height:38px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-select-option:nth-child(3) select{width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-field__data--content input{border:1px solid #bebebe;width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label{align-items:center;display:flex;margin-left:10px;position:relative}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group{background-color:#fafafa;border:1px solid #ddd;border-radius:2px;display:flex;margin-right:17px;position:relative}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group:after,.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group:before{background-color:#bebebe;content:"";height:11px;position:absolute;width:1px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group:before{bottom:28px;left:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group:after{right:23px;top:28px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group .wcf--condition-label__and_group__text{color:#555;font-size:12px;font-weight:500;padding:5px 10px}.wcf-checkout-rules-page .wcf-checkout-rules-page--group_wrapper__footer{display:flex;justify-content:space-between;margin:20px 0;position:relative;width:100%}.wcf-checkout-rules-page .wcf-checkout-rules-page--group_wrapper__footer .wcf-button--secondary:hover{background-color:#fff;border:1px solid #2271b1;color:#2271b1}.wcf-checkout-rules-page .wcf-checkout-rules--default-step{background-color:#fafafa;margin:20px 0;padding:20px}.wcf-checkout-rules-page .wcf-checkout-rules--default-step label{padding-right:10px;width:auto}.wcf-checkout-rules-page .wcf-checkout-rules--default-step select{border:1px solid #bebebe;margin:0;width:auto}.wcf-checkout-rules-page .wcf-checkout-rules--group_rules:last-child{margin-bottom:0}.wcf-checkout-rules-page .wcf-checkout-rules--or-group{background-color:#fafafa;border:1px solid #ddd;border-radius:2px;color:#555;font-size:14px;font-weight:500;letter-spacing:.5px;margin:auto 0;padding:5px 15px}
89
- .wcf-custom-field-editor__content{background:#fff;padding:0;text-align:left}.wcf-custom-field-editor__content h3{border-bottom:1px solid #ddd;display:inline-block;font-size:18px;font-weight:500;padding:35px 0 15px;width:100%}.wcf-custom-field-editor__content .wcf-checkbox-field{margin-bottom:10px}.wcf-custom-field-editor__content .wcf-checkbox-field .wcf-field__data--label label{display:inline-block;font-size:14px;font-weight:500;line-height:1.1;padding-right:20px;width:250px}.wcf-custom-field-editor__content .wcf-cfe-child:before{color:#ccc;content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);font-family:dashicons;font-weight:400;margin-right:.75em;position:relative;top:-6px;vertical-align:middle}.wcf-custom-field-editor__content .wcf-field__data .wcf-cfe-child{padding-left:27px}.wcf-custom-field-editor__content table{margin-bottom:30px}.wcf-custom-field-editor__content .wcf-billings-fields-section{margin-right:15px}.wcf-custom-field-editor__content .wcf-shippings-fields-section{margin-left:15px}.wcf-custom-field-editor__content .wcf-billings-fields-section,.wcf-custom-field-editor__content .wcf-shippings-fields-section{border:none;width:calc(50% - 15px)}.wcf-custom-field-editor__content .wcf-billings-fields-section #wcf-billing-fields,.wcf-custom-field-editor__content .wcf-billings-fields-section h3,.wcf-custom-field-editor__content .wcf-shippings-fields-section #wcf-shipping-fields,.wcf-custom-field-editor__content .wcf-shippings-fields-section h3{padding:20px 0}.wcf-custom-field-editor__content .wcf-billings-fields-section #wcf-billing-fields .wcf-field__data--label,.wcf-custom-field-editor__content .wcf-shippings-fields-section #wcf-shipping-fields .wcf-field__data--label{width:190px}.wcf-billings-fields-section,.wcf-shippings-fields-section{border:none;display:inline-block;position:relative;vertical-align:top;width:calc(50% - 15px)}.wcf-billings-fields-section h3,.wcf-shippings-fields-section h3{border:none;margin:0;padding:20px 0}.wcf-billings-fields-section #wcf-billing-fields,.wcf-shippings-fields-section #wcf-shipping-fields{padding:20px 0}.wcf-billings-fields-section .wcf-field-item:first-child .wcf-field-item__bar,.wcf-shippings-fields-section .wcf-field-item:first-child .wcf-field-item__bar{margin:0}#wcf-billing-fields li,#wcf-shipping-fields li{margin-bottom:10px;overflow:hidden;touch-action:none}.wcf-custom-field-editor-buttons{display:flex}.billing-field-sortable .wcf-field-item.sortable-chosen .wcf-field-item-handle,.shipping-field-sortable .wcf-field-item.sortable-chosen .wcf-field-item-handle{background:#fafafb}.billing-field-sortable .wcf-field-item.sortable-ghost .wcf-field-item-handle,.shipping-field-sortable .wcf-field-item.sortable-ghost .wcf-field-item-handle{border-color:#ccc;border-style:dashed}.billing-field-sortable .wcf-field-item-handle .dashicons-hidden:before,.billing-field-sortable .wcf-field-item-handle .dashicons-visibility:before,.shipping-field-sortable .wcf-field-item-handle .dashicons-hidden:before,.shipping-field-sortable .wcf-field-item-handle .dashicons-visibility:before{cursor:pointer}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings{box-shadow:none;padding:15px;z-index:0}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item-title,.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings input{font-weight:400}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings table{margin:0}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings table th{padding:5px}.wcf-cfe-popup-content-wrapper{max-height:85%;overflow-y:auto;padding:0}.wcf-cfe-popup-content-wrapper .wcf-textarea-field textarea{border-color:#ddd;border-radius:2px;font-weight:400;height:60px;padding:4px 15px;width:300px}.wcf-cfe-popup-content-wrapper .wcf-cpf-row-header h3{border:0;margin:0;padding:15px}.wcf-cfe-popup-content-wrapper .wcf-cpf-row-header{margin:0}.wcf-cfe-popup-content-wrapper .wcf-select-option select{margin-right:0}.wcf-cfe-popup-content-wrapper table th{padding:5px 0}.wcf-cfe-popup-content-wrapper::-webkit-scrollbar{background-color:#eee;width:5px}.wcf-cfe-popup-content-wrapper::-webkit-scrollbar-thumb{background-color:#ccc;width:5px}.wcf-cfe-popup-content table{margin-bottom:0;padding:20px}.wcf-cfe-popup-content table th,.wcf-cfe-popup-content table tr:first-child th{margin:0;padding:5px 0}.wcf-cfe-popup-content .wcf-button{margin-top:15px}.wcf-custom-field-editor-title-section{position:relative}.wcf-custom-field-editor-buttons{bottom:20px;position:absolute;right:0}
90
- .wcf-field-item .wcf-field-item__bar{clear:both;cursor:move;line-height:1.5em;margin:9px 0 0;position:relative}.wcf-field-item .wcf-field-item__bar.wcf-field-item__disabled{border:1px dashed #999;opacity:.5}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle{word-wrap:break-word;background:#fff;border:1px solid #ececec;height:auto;line-height:normal;min-height:20px;overflow:hidden;padding:10px 15px;position:relative;width:auto}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-title{display:inline-block;font-size:13px;font-weight:600;line-height:20px;margin-left:15px;margin-right:13em}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-title span:not(.wcf-tooltip-text):nth-child(2){color:red}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-controls{display:inline-flex;float:right;font-size:12px;position:relative;right:0;top:-1px}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-controls .dashicons-arrow-down{cursor:pointer}.wcf-field-item .wcf-field-item__settings{background:hsla(0,0%,93%,.2);border:1px solid #ececec;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.039);padding:10px;position:relative;width:auto;z-index:10}.wcf-field-item .wcf-field-item__settings table{width:100%}.wcf-field-item .wcf-field-item__settings table th{padding:15px 10px 15px 0}.wcf-field-item .wcf-field-item__settings table .wcf-cfe-field-enable-field{display:none}.wcf-field-item .wcf-field-item__settings label{display:inline-block;font-weight:500;min-width:80px;padding-right:20px}.wcf-field-item .wcf-field-item__settings .wcf-cpf-actions{color:red;cursor:pointer;text-align:right}.wcf-billings-fields-section .wcf-field__data--label label,.wcf-shippings-fields-section .wcf-field__data--label label{width:190px}
91
- .wcf-cpf-row-header{border-bottom:1px solid #e5e5e5;display:flex;justify-content:space-between;margin-bottom:5px}.wcf-cfe-popup-overlay{background:rgba(0,0,0,.729);height:100%;left:0;position:fixed;text-align:left;top:0;width:100%;z-index:9999}.wcf-cfe-popup-content-wrapper{background:#fff;border-radius:3px;left:50%;padding:0;position:absolute;top:50%;transform:translate(-50%,-50%);width:665px}.wcf-close-popup{text-align:right}.wcf-cfe-popup-content .wcf-template-logo-wrap{padding:15px 0 15px 15px}.wcf-cfe-popup-content table{margin-bottom:0;padding:20px;width:100%}.wcf-cfe-popup-content table th{padding:5px 0}.wcf-cfe-popup-content label{display:inline-block;font-weight:500;min-width:80px;padding-right:20px}.wcf-cfe-popup-content .wcf-button{margin-top:15px}.wcf-cfe-popup-content .wcf-select-option select{margin-right:0}
92
- .wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content{margin-bottom:70px}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content .wcf-custom-field-editor__title{border-bottom:1px solid #ddd;display:inline-block;padding-bottom:15px;width:100%}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content .wcf-custom-field-editor__title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px;width:50%}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form{margin-top:20px}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form table{width:100%}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form table tr .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;margin-bottom:15px;padding:10px;width:25%}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form .wcf-field.wcf-submit{margin-top:20px}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form .wcf-field.wcf-submit .wcf-checkout-custom-fields__button{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;border-right:1px solid #fff;padding:20px;width:10%}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:0}}
93
- .wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-custom-field-editor__title .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px;width:50%}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content table{width:100%}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content table tr .checkbox-title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;margin:20px 0;padding:10px;width:15%}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-optin-fields-section-section .wcf-custom-field-editor-title-section .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;margin-bottom:30px;padding:15px;width:50%}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-optin-fields-section-section .wcf-optin-fields .title{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;margin-top:15px;padding:15px;width:100%}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-field.wcf-submit{margin-top:20px}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-field.wcf-submit .wcf-optin-form-field__button{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;border-right:1px solid #fff;padding:20px;width:10%}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:0}}
94
- .wcf-checkout-products .wcf-checkout-products--coupon,.wcf-checkout-products .wcf-checkout-products--options,.wcf-checkout-products .wcf-checkout-products--selection{margin:5px 0 15px}.wcf-checkout-products .wcf-product-options-section{margin-bottom:1.5em}.wcf-checkout-products .wcf-product-options__title{border-bottom:1px solid #ddd;display:inline-block;font-size:18px;font-weight:500;padding:35px 0 15px;width:100%}.wcf-checkout-products .wcf-product-options-notice__text{background:#f4f4f4;border:1px solid #f4f4f4;border-radius:2px;color:#444;font-size:13px;font-style:italic;font-weight:400;padding:12px 10px;width:310px}.wcf-checkout-products .wcf-checkout-product-selection-field{border:1px solid #dfdfdf;border-radius:3px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--product{width:35%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--quantity{width:20%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--discount{width:40%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--actions{width:5%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header{border-bottom:1px solid #dfdfdf;justify-content:left;padding:10px 20px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header .wcf-column--product{padding:0 0 0 20px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product{align-items:center;border-bottom:1px solid #dfdfdf;cursor:grab;display:flex;padding:15px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product *{line-height:1.1}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__drag{margin-right:20px;width:2%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen{background:#f9f9fa;cursor:grab;transition:all .1s ease-in}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen.sortable-ghost{cursor:grabbing}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-data{align-items:center;width:35%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-image img{border:1px solid #f4f4f4;display:block;height:80px;margin:0 auto;width:80px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details *{font-size:11px;font-weight:500;line-height:1.1em;margin-bottom:5px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details .wcf-product-repeater-field__title{font-size:15px;margin-bottom:10px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__quantity input{margin-right:20px;width:150px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount .wcf-product-repeater-field__discount-type{width:auto}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount input,.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount select{margin-right:20px;width:150px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action{margin-left:auto}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action .wcf-remove-product-button:hover{color:var(--primary-color);cursor:pointer}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new{padding:20px}
95
- .wcf-list-options{color:#444;line-height:34px;padding:0;text-align:left}.wcf-list-options table{width:100%}.wcf-list-options table th{font-weight:400;padding:0 0 10px}.wcf-list-options label{font-weight:500}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{color:#444;font-size:15px;font-weight:500}.wcf-list-options .wcf-child-field:before{color:#ccc;content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);font-family:dashicons;font-weight:400;margin-right:.75em;position:relative;top:-6px;vertical-align:middle}
96
- .wcf-edit-step__title-wrap{align-items:center;display:flex;justify-content:space-between;margin:0;padding:0 15px 10px}.wcf-edit-step__title-wrap .wcf-steps-header--title{color:#363b4e;font-size:22px;font-weight:500;line-height:40px}.wcf-edit-step__title-wrap .wcf-steps-header__title--text{color:#444;font-size:22px;font-weight:500;line-height:40px}.wcf-edit-step__title-wrap .wcf-steps-header__title--text input{background:#fff;border-color:#aaa;color:#444;font-weight:400;height:40px;line-height:1;width:350px}.wcf-edit-step__title-wrap .wcf-steps-header__title--text input:focus{border-color:#777}.wcf-edit-step__title-wrap .wcf-step__title--editable{align-items:center;display:flex}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons a,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons button{margin-left:10px;text-decoration:none;vertical-align:middle}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-button--small{font-size:14px;font-weight:400;line-height:1;padding:9px 20px}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-button--small.wcf-saving{animation:wcf-saving 2.5s linear infinite;background-image:linear-gradient(-45deg,#f06335 28%,#f78860 0,#f78860 72%,#f06335 0);background-size:100px 100%;opacity:1}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-visibility{vertical-align:unset}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:before,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-visibility:before{background:#fff;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-visibility:hover{color:#f16334}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view a,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view button{margin-left:15px}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view .wcf-steps-header__quick-view--button .dashicons-external{vertical-align:unset}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view .wcf-steps-header__quick-view--button .dashicons-external:before{background:#fff;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view .wcf-steps-header__quick-view--button .dashicons-external:hover{color:#f16334}.wcf-edit-step__title-wrap .wcf-steps-header--breadcrums .wcf-breadcrum--nav-item{color:#444;font-size:14px;font-weight:500}.wcf-edit-step__title-wrap .wcf-steps-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link{color:var(--primary-color);text-decoration:none}.wcf-edit-step__title-wrap .wcf-steps-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link:hover{color:var(--primary-hv-color)}
97
- .wcf-order-bump-page-wrapper{color:#444;text-align:left}.wcf-order-bump-page-wrapper table{width:100%}.wcf-order-bump-page-wrapper table th{font-weight:400;padding:0 0 15px}.wcf-order-bump-page-wrapper label{font-weight:500}.wcf-order-bump-page-wrapper p{font-size:15px;font-weight:400}.wcf-order-bump-page-wrapper .wcf-note-content{color:#444;font-size:15px;font-weight:500}.wcf-order-bump-page-wrapper .wcf_warning_notice{border-left:3px solid red;line-height:1.5;padding:10px}.wcf-order-bump-page-wrapper .wcf-order-bump-save-settings{margin-top:15px}
98
- .wcf-order-bump-product-tab.is-placeholder table label{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:15px;width:55%}.wcf-order-bump-product-tab.is-placeholder .wcf-order-bump-page-wrapper table th{padding:0 0 10px}.wcf-order-bump-product-tab.is-placeholder .wcf-order-bump-save-settings span{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:8px 70px}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:0}}
99
- .wcf-order-bump-design-tab.is-placeholder label{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;display:inline-block;padding:15px;width:100%}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__settings table label{width:100%}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__settings .wcf-order-bump-page-wrapper table th{padding:0 0 10px}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__preview .wcf-bump-order-wrap{width:100%}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__preview .wcf-content-container{padding:55px 0}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-save-settings span{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:8px 70px}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:0}}
100
- .wcf-order-bump-setting-tab.is-placeholder label{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;display:inline-block;padding:15px;width:100%}.wcf-order-bump-setting-tab.is-placeholder .wcf-field-one{width:20%}.wcf-order-bump-setting-tab.is-placeholder .wcf-field-two{width:50%}.wcf-order-bump-setting-tab.is-placeholder .wcf-order-bump-save-settings span{animation:shine-lines 1.6s linear infinite;background-image:linear-gradient(90deg,#ddd,#e8e8e8 10px,#ddd 80px);background-position:0;padding:8px 70px}@keyframes shine-lines{0%{background-position:-250px}40%,to{background-position:0}}
101
- .wcf-order-bumps-rules-page .wcf-rules-rules--text{padding:10px 0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--or{display:flex;justify-content:space-between;padding:15px 0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rule .wcf-order-bumps-rule--select-box{display:flex}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rule .wcf-order-bumps-rule--select-box .wcf-skeleton{margin-right:20px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rule .wcf-order-bumps-rule__and{margin:7px 0}
102
- .wcf-order-bump-design-tab{display:flex}.wcf-order-bump-design-tab .wcf-order-bump-design-tab__preview,.wcf-order-bump-design-tab .wcf-order-bump-design-tab__settings{width:50%}.wcf-order-bump-design-tab .wcf-order-bump-design-tab__preview{margin:0 0 0 30px}.wcf-order-bump-design-tab .wcf-order-bump-design-tab__settings .wcf-field__data--label label{width:230px}.wcf-order-bump-design-tab table tr:first-child .wcf-field__data--label{padding:0 0 5px}
103
- .wcf-order-bump-preview-wrapper{transition:all .3s}.wcf-order-bump-preview-wrapper.sticky{position:sticky;top:120px}.wcf-order-bump-design-tab__preview--title{border-bottom:1px solid #ddd;margin-bottom:20px;padding:0 0 5px}.wcf-order-bump-design-tab__preview--title label{font-size:16px;font-weight:600}.wcf-bump-order-wrap{display:block;float:none;margin:1em auto;overflow:hidden}.wcf-bump-order-wrap .wcf-bump-order-field-wrap .wcf-pointing-arrow{margin-right:5px;transform:scaleX(1);vertical-align:middle}.wcf-bump-order-wrap .wcf-bump-order-desc{line-height:1.7}.wcf-bump-order-wrap .wcf-bump-order-desc p{margin:0 0 .6em;padding:0}.wcf-bump-order-wrap .wcf-bump-order-desc p:last-child{margin:0;padding:0}.wcf-bump-order-wrap .wcf-bump-order-desc li,.wcf-bump-order-wrap .wcf-bump-order-desc ul{list-style-position:inside;margin:0;padding:0}.wcf-bump-order-wrap h1,.wcf-bump-order-wrap h2,.wcf-bump-order-wrap h3,.wcf-bump-order-wrap h4,.wcf-bump-order-wrap h5,.wcf-bump-order-wrap h6{font-weight:500;line-height:1.3em;margin:0;padding:0}@keyframes wcf-blinker{0%{visibility:hidden}40%{visibility:hidden}}.wcf-blink{animation:wcf-blinker .8s linear infinite;animation-direction:alternate}.wcf-bump-order-style-5{background:#fef7f5;border-radius:3px;display:inline-block;overflow:unset;padding:15px;position:relative;width:100%}.wcf-bump-order-style-5 .wcf-bump-order-field-wrap{align-items:center;-js-display:flex;display:flex}.wcf-bump-order-style-5 .wcf-bump-order-label{color:#333;font-size:16px;font-weight:600;line-height:1}.wcf-bump-order-style-5 .wcf-bump-order-desc,.wcf-bump-order-style-5 .wcf-bump-order-label{margin:0 0 15px}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action{border:2px solid #dea97c;border-radius:3px;line-height:1.2;padding:8px 18px;vertical-align:middle;width:-moz-fit-content;width:fit-content}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action.wcf-ob-action-button{border:none;line-height:unset;padding:0}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]{border-radius:3px;color:#f16334;height:20px;margin:0 10px 0 0;width:20px}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]:checked:before{content:"";font:normal normal 400 21px/1 dashicons;left:1px;position:relative;top:2px;width:20px}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button{border:1px solid #ccc;border-radius:3px;color:#333;margin:0;padding:8px 20px;text-decoration:none;text-transform:none}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-processing{background:#fff;opacity:.7;pointer-events:none}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-bump-remove-from-cart:hover{background:#e43b2c;color:#fff}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button:hover{cursor:pointer}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button.processing{background:linear-gradient(270deg,#fff 50%,#baf1ca 0) 100%;background-size:210%;border-color:#baf1ca;transition:.5s ease-out}.wcf-bump-order-style-5 .wcf-bump-order-info{align-items:center;display:flex}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-top{display:inline-block;text-align:center}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-top .wcf-bump-order-image{display:inline-block;margin:0 0 15px;max-width:100%;text-align:center}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-top .wcf-bump-order-action{display:inline-block}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right .wcf-bump-order-image{margin:0 0 0 15px}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right .wcf-bump-order-text{text-align:right}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right .wcf-bump-order-action{display:inline-block}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right{margin:0 0 0 15px}.wcf-bump-order-style-5 .wcf-bump-order-image{display:inline-flex;margin:0 15px 0 0;max-width:50%}.wcf-bump-order-style-5 .wcf-bump-order-image img{max-width:100%}.wcf-bump-order-style-4{background:#fff;border:1px dashed #f06434;border-radius:3px;display:inline-block;overflow:unset;padding:15px;position:relative;width:100%}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap{align-items:center;display:flex}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-info{flex:0 0 calc(100% - 100px);-webkit-flex:0 0 calc(100% - 115px)}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action{min-width:115px;text-align:right}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button{border:1px solid #ccc;border-radius:3px;color:#333;margin:0;padding:8px 20px;text-decoration:none;text-transform:none}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-processing{background:#fff;opacity:.7;pointer-events:none}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-bump-remove-from-cart:hover{background:#e43b2c;color:#fff}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button:hover{cursor:pointer}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button.processing{background:linear-gradient(270deg,#fff 50%,#baf1ca 0) 100%;background-size:210%;border-color:#baf1ca;transition:.5s ease-out}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]{display:none}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]:checked:before{font:normal normal 400 20px/1 cartflows-icon;left:2px;position:relative;top:2px;width:20px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image{align-self:center;display:inline;-webkit-flex:0 0 100px;margin-right:25px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image img{vertical-align:middle;width:100px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label{color:#f06434;font-size:16px;font-weight:500;margin-bottom:5px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-text{align-items:center;justify-content:space-between;width:100%}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-desc{font-size:13px}.wcf-bump-order-style-4 .wcf-content-container{padding:25px 0}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{display:block;text-align:center}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-action{margin:10px 0 0;text-align:center}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:right}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-action{min-width:80px}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-text{margin:0 15px}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-image{margin:0 0 0 15px}.wcf-bump-order-style-3{background:transparent;border:2px solid #f06434;display:inline-block;overflow:unset;padding:15px;position:relative;width:100%}.wcf-bump-order-style-3 .wcf-bump-order-info{align-items:center;display:flex;max-width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content{padding:0}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap{align-items:center;display:flex}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action{align-self:center;max-width:75px;text-align:center;width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]{border-radius:3px;height:20px;margin:0 10px 0 0;width:20px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]:checked:before{color:#f16334;content:"";font:normal normal 400 21px/1 dashicons;height:20px;left:2px;position:relative;top:2px;width:20px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label input[type=checkbox]{border-radius:3px;height:20px;margin:0 10px 0 0;width:20px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label input[type=checkbox]:checked:before{color:#f16334;content:"";font:normal normal 400 21px/1 dashicons;height:20px;left:2px;position:relative;top:2px;width:20px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image{align-self:center;margin-right:10px;width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image img{height:80px;max-width:100%;vertical-align:middle;width:80px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label{font-size:16px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-text{align-self:center;margin-left:10px;max-width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-desc{font-size:13px;margin-top:10px}.wcf-bump-order-style-3 .wcf-content-container{padding:25px 0}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{display:block}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-action,.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-info,.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-text{display:block;text-align:center}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-image{max-width:100%;text-align:center}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-image img{height:auto;width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:right}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-label input[type=checkbox]{margin:0 0 0 10px}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-label .wcf-pointing-arrow{display:inline-block;margin:0 10px;transform:rotate(180deg)}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-text{margin-right:10px}.wcf-bump-order-style-2{border:2px dashed red;border-radius:3px;display:inline-block}.wcf-bump-order-style-2 .wcf-bump-order-offer{font-size:1.1em;font-weight:600;padding:20px 25px}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-right{width:100%}.wcf-bump-order-style-2 .wcf-bump-order-desc{padding:0 25px 20px}.wcf-bump-order-style-2 .wcf-bump-order-field-wrap{border-top:2px dashed red;display:block;font-size:1.1em;margin:0;padding:15px 25px}.wcf-bump-order-style-2 .wcf-bump-order-field-wrap .wcf-bump-order-label{margin-left:1px}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-left{display:inline-block;vertical-align:middle;width:38%}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-left img{padding:0 0 25px 20px;width:100%}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{display:inline-block;vertical-align:middle;width:60%}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap,.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer{text-align:center}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left,.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-right{display:block;text-align:center;width:100%}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left img{padding:25px 25px 0}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap,.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer{text-align:right}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=checkbox],.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=radio]{margin-left:5px}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap .wcf-pointing-arrow{margin-top:-5px;transform:rotate(180deg)}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-right{display:inline-block;text-align:right;vertical-align:middle;width:60%}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-left{display:inline-block;width:38%}.wcf-bump-order-style-2 .wcf-bump-order-field-wrap,.wcf-bump-order-style-2 .wcf-bump-order-field-wrap *{cursor:pointer}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-2 .wcf-bump-order-offer-content-left{width:14%}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-2 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{width:85%}.wcf-show-coupon-field-toggle{padding-top:1em}.wcf-bump-order-style-1{background:#f1f1f1;border:2px red;border-radius:3px;display:inline-block}.wcf-bump-order-style-1 .wcf-bump-order-offer{font-size:1.2em;padding:0 25px 10px}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{text-align:center}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left,.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-right{display:block;text-align:center;width:100%}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left img{padding:25px 25px 0}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:right}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=checkbox],.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=radio]{margin-left:5px}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap .wcf-pointing-arrow{margin-top:-5px;transform:rotate(180deg)}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-right{display:inline-block;text-align:right;vertical-align:middle;width:60%}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-left{display:inline-block;width:38%}.wcf-bump-order-style-1 .wcf-content-container{padding:25px 0}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-right{width:100%}.wcf-bump-order-style-1 .wcf-bump-order-desc{padding:0 25px}.wcf-bump-order-style-1 .wcf-bump-order-field-wrap{background:#ddd;border:2px red;display:block;font-size:1.1em;margin:0;padding:20px 25px}.wcf-bump-order-style-1 .wcf-bump-order-field-wrap .wcf-bump-order-label{margin-left:1px}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-left{display:inline-block;vertical-align:middle;width:38%}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-left img{padding:0 0 0 20px}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{display:inline-block;vertical-align:middle;width:60%}.wcf-bump-order-style-1 .wcf-bump-order-field-wrap,.wcf-bump-order-style-1 .wcf-bump-order-field-wrap *{cursor:pointer}.wcf-embed-checkout-form .woocommerce #payment .wcf-bump-order-wrap input[type=checkbox]{margin:0 4px 0 0}.wcf-embed-checkout-form-two-column .wcf-bump-order-style-1.wcf-after-customer,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-2.wcf-after-customer,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-3.wcf-after-customer{float:left;width:calc(55% - 40px)}.wcf-embed-checkout-form-two-column .wcf-bump-order-style-1.wcf-after-order,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-2.wcf-after-order,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-3.wcf-after-order{margin:1em auto 0}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-1 .wcf-bump-order-offer-content-left{width:14%}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-1 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{width:85%}.wcf-bump-order-wrap .wcf-bump-order-offer-content-left img{max-width:100%;padding:25px}
104
  .wcf-order-bump-setting-tab table tr:first-child .wcf-field__data--label{padding:0 0 5px}
105
- .wcf-order-bump-content-tab{display:flex}.wcf-order-bump-content-tab .wcf-order-bump-content-tab__preview,.wcf-order-bump-content-tab .wcf-order-bump-content-tab__settings{width:50%}.wcf-order-bump-content-tab .wcf-order-bump-content-tab__preview{margin:0 0 0 30px}.wcf-order-bump-content-tab .wcf-order-bump-content-tab__settings .wcf-field__data--label label{width:230px}.wcf-order-bump-content-tab .wcf-number-field input[type=number]{padding-right:7px}.wcf-order-bump-content-tab table tr:first-child .wcf-field__data--label{padding:0 0 5px}
106
- .wcf-order-bumps-rules--group_rules{display:flex;margin-bottom:10px;position:relative}.wcf-order-bumps-rules--group_rules:first-child{margin-top:-17px;position:relative}.wcf-order-bumps-rules--group_rules:not(first-child){margin-top:10px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields{display:flex}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-conditional-field-text,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-conditional-field-text{align-self:center;margin-right:10px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-coupon-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-number-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-product-cat-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-product-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-select-option,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-select2-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-coupon-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-number-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-product-cat-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-product-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-select-option,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-select2-field{margin-right:18px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-order-bumps-rules--and_text,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-order-bumps-rules--and_text{align-self:center;margin:0 20px 0 10px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .and-close,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .and-close{align-self:center;cursor:pointer;font-size:18px;margin:5px 10px 0 0}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .and-close:hover,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .and-close:hover{color:#2271b1}
107
- .wcf-order-bumps-rules-page .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-order-bumps-rules-page .sortable-chosen .wcf-order-bumps-rules--group{background:#fafafb;border:1px dashed #aaa}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--enable_option{margin-bottom:30px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--enable_option label{align-items:center;display:flex;justify-content:center}.wcf-order-bumps-rules-page div .wcf-order-bumps-rules-page--group_wrapper{cursor:grab}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group{background-color:#fafafa;border:1px dashed #fafafa;padding:20px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group select{margin:0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf__control{border:1px solid #bebebe;width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf__value-container{line-height:16px;max-height:36px;overflow-y:auto;scroll-behavior:smooth}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf__value-container .wcf__multi-value{margin:5px 3px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--add-rule__repeater{display:flex;margin-top:-10px;position:relative}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--add-rule__repeater .wcf-button--secondary:hover{background-color:#fff;border:1px solid #2271b1;color:#2271b1}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper{display:inline-block;margin:50px 0 45px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-selection-field .wcf-select2-input{width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-select-option select{border:1px solid #bebebe;height:38px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-select-option:nth-child(3) select{width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-field__data--content input{border:1px solid #bebebe;width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label{align-items:center;display:flex;margin-left:10px;position:relative}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group{background-color:#fafafa;border:1px solid #ddd;border-radius:2px;display:flex;margin-right:17px;position:relative}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group:after,.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group:before{background-color:#bebebe;content:"";height:11px;position:absolute;width:1px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group:before{bottom:28px;left:20px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group:after{right:23px;top:28px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group .wcf--condition-label__and_group__text{color:#555;font-size:12px;font-weight:500;padding:5px 10px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header,.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-order-bumps-rules--group_header__left{align-items:center;display:flex;justify-content:space-between}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-order-bumps-rules--group_header__left .wcf-group-header--text{color:#444;font-size:14px;font-weight:500}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-order-bumps-rules--group_header__left .wcf-order-bumps-rules__handle{cursor:move;font-size:20px;margin-right:10px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-checkout-rules--group_header__right .dashicons{cursor:pointer;font-size:30px;line-height:.6;margin-left:10px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-checkout-rules--group_header__right .wcf-order-bumps-rules--group_id{color:#a3a2a2;font-size:10px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--group_wrapper__footer{display:flex;justify-content:space-between;margin:20px 0;position:relative;width:100%}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--group_wrapper__footer .wcf-button--secondary:hover{background-color:#fff;border:1px solid #2271b1;color:#2271b1}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group_rules:last-child{margin-bottom:0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--or_group{background-color:#fafafa;border:1px solid #ddd;border-radius:2px;color:#555;font-size:14px;font-weight:500;letter-spacing:.5px;margin:auto 0;padding:5px 15px}
108
- .wcf-edit-ob__title-wrap{align-items:center;display:flex;justify-content:space-between;margin:0;padding:0 15px 10px}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap{display:flex}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status{align-self:center;display:flex;margin-left:18px;position:relative}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch{border:1px solid #ccc;border-radius:30px;box-shadow:inset 0 0 0 0 transparent;box-sizing:border-box;cursor:pointer;display:block;height:18px;position:relative;text-indent:-999em;transition:all .3s ease;width:36px}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch:focus{outline:none}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch:before{background:#fff;border-radius:50%;box-shadow:0 1px 3px rgba(0,0,0,.3);content:"";display:block;height:12px;left:4px;position:absolute;top:2px;transition:all .15s ease;width:12px}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch[data-wcf-order-bump-switch=true]{border-color:var(--primary-border-color);box-shadow:inset 0 0 0 11px var(--primary-border-color)}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch[data-wcf-order-bump-switch=true]:before{transform:translateX(16px)}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch[data-wcf-order-bump-switch=false]{background:#ccc}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-spinner{animation:spin 2s linear infinite;color:#434343;float:none;left:45px;margin:0;position:absolute;right:0}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.wcf-edit-ob__title-wrap .wcf-ob-header--title{color:#363b4e;font-size:22px;font-weight:500;line-height:40px}.wcf-edit-ob__title-wrap .wcf-ob-header__title--text{color:#444;font-size:22px;font-weight:500;line-height:40px}.wcf-edit-ob__title-wrap .wcf-ob-header__title--text input{background:#fff;border-color:#aaa;color:#444;font-weight:400;height:40px;line-height:1;width:350px}.wcf-edit-ob__title-wrap .wcf-ob-header__title--text input:focus{border-color:#777}.wcf-edit-ob__title-wrap .wcf-ob__title--editable{align-items:center;display:flex}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons{display:inline;vertical-align:middle}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons a,.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons button{margin-left:10px;text-decoration:none;vertical-align:middle}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-button--small{font-size:14px;font-weight:400;line-height:1;padding:9px 20px}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-button--small.wcf-saving{animation:wcf-saving 2.5s linear infinite;background-image:linear-gradient(-45deg,#f06335 28%,#f78860 0,#f78860 72%,#f06335 0);background-size:100px 100%;opacity:1}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-ob-header__title--edit .dashicons-edit{vertical-align:unset}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-ob-header__title--edit .dashicons-edit:before{background:#fff;border-radius:100%;display:inline-block;font-size:18px;padding:5px;text-decoration:none}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-ob-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-edit-ob__title-wrap .wcf-ob-header--breadcrums .wcf-breadcrum--nav-item{color:#444;font-size:14px;font-weight:500}.wcf-edit-ob__title-wrap .wcf-ob-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link{color:var(--primary-color);text-decoration:none}.wcf-edit-ob__title-wrap .wcf-ob-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link:hover{color:var(--primary-hv-color)}
1
+ :root{--primary-color: #f06434;--primary-hv-color: #ee4710;--primary-border-color: #f06434;--secondary-color: #f5f6f7;--secondary-border-color: #ddd;--secondary-hv-color: #edeff1}.wcf-hide{display:none !important}.wcf-button{border-width:1px;border-style:solid;border-radius:2px;text-decoration:none;text-shadow:none;font-size:14px;min-height:36px;line-height:1.5;padding:7px 18px;display:inline;display:inline-block;vertical-align:middle;align-items:center;cursor:pointer;margin:0;font-weight:400;box-sizing:border-box}.wcf-button--small{min-height:26px;padding:0 8px;font-size:11px;border-width:1px;border-style:solid;border-radius:2px;text-decoration:none;text-shadow:none;line-height:2;display:inline-block;vertical-align:middle;align-items:center;cursor:pointer;margin:0}.wcf-button--primary{background:var(--primary-color);border-color:var(--primary-border-color);color:#fff}.wcf-button--primary:focus,.wcf-button--primary:hover{background:var(--primary-hv-color);border-color:var(--primary-border-color);color:#fff;box-shadow:none;outline:none}.wcf-button--secondary{background:var(--secondary-color);border-color:var(--secondary-border-color);color:#3a3a3a}.wcf-button--secondary:focus,.wcf-button--secondary:hover{background:var(--secondary-hv-color);border-color:var(--secondary-border-color);color:#3a3a3a;box-shadow:none}.wcf-popup-header-title{display:flex;align-items:center;font-size:15px;font-weight:500;color:#444;letter-spacing:0;text-transform:none;text-decoration:none}.wcf-popup-header-title .cartflows-logo-icon{padding:15px}.wcf-popup-header-action{display:inline-block;display:flex;align-items:center;padding:15px;border-left:1px solid #ddd;position:relative;color:#ccc;cursor:pointer}.wcf-popup-header-action .dashicons{line-height:1}.wcf-popup-header-action::after{font-size:25px}.wcf-popup-header-action:hover{color:#aaa}.wcf-message,.wcf-error-message--toggle,.wcf-error--info{padding:5px;display:block;font-size:12px}.wcf-message--error{color:var(--primary-color)}.wcf-error-message--toggle{cursor:pointer}.wcf-error--info{background-color:#f2f2f2;border-radius:3px;padding:10px;border:1px #ccc dashed}
2
+ .wcf-global-nav-menu{margin:0;padding:2px 20px 0 20px;display:flex;background:#fff;align-items:center;border-bottom:1px solid #ddd;box-shadow:none;border-radius:2px 2px 0 0}.wcf-global-nav-menu .wcf-title{max-width:170px}.wcf-global-nav-menu .wcf-title .wcf-logo{width:120px}.wcf-global-nav-menu .wcf-global-nav__items{display:flex;align-items:center}.wcf-global-nav-menu .wcf-global-nav-menu__tab{background:rgba(0,0,0,0);border:none;color:#444;cursor:pointer;padding:25px 30px 23px 30px;font-size:14px;line-height:1;letter-spacing:.225px;font-weight:400;margin:0 0 -1px 0;max-width:100%;text-align:center;text-decoration:none;outline:none;box-shadow:none;border-bottom:2px solid #fff}.wcf-global-nav-menu .wcf-global-nav-menu__tab:hover{color:#f06335;border-bottom:2px solid #f06335}.wcf-global-nav-menu .wcf-global-nav-menu__tab.wcf-global-nav-menu__tab--active{background:none;color:#f06335;border-bottom:2px solid #f06335}@media only screen and (max-width: 1200px){.wcf-global-nav-menu .wcf-global-nav-menu__tab.wcf-global-nav-menu__tab{padding:23px 20px}}.wcf-menu-page-content{margin:0 auto;width:100%;font-size:14px;font-weight:400}.wcf-global-nav-menu .wcf-title{max-width:140px;border-right:1px solid #ddd;display:flex;align-items:center}.wcf-global-nav-menu{position:fixed;width:calc(100% - 160px);left:160px;top:32px;z-index:10}
3
+ .wcf-editor-app .wcf-settings{margin:0}.wcf-editor-app .wcf-steps-page-wrapper{padding:30px;border-top:1px solid #ededed;margin-top:-1px}
4
+ .wcf-edit-flow--nav{border-bottom:1px solid #ededed;padding:0;display:flex;background:#fff;box-shadow:none;margin:0}.wcf-edit-flow--nav .wcf-steps-header--actions{position:relative;margin-left:auto;padding-right:30px;line-height:1;display:flex;align-items:center}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-actions-menu__dropdown .wcf-step__action-btn{cursor:pointer;display:flex;align-items:center}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-actions-menu__dropdown .wcf-step__action-btn .dashicons{margin-right:5px}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-steps-header--label{color:#444;font-weight:400;margin-right:15px;font-size:15px;line-height:1}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-flow__action-menu{color:#aaa;cursor:pointer;display:inline-block;width:13px}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-flow__action-menu:hover{color:#333}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-flow__action-menu .dashicons-ellipsis{transform:rotate(90deg)}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf_store_checkout__status{display:flex;position:relative;margin-right:10px}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf_store_checkout__status .wcf-spinner{float:none;margin:0;animation:spin 2s linear infinite;color:#434343}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-ob-status{align-self:center}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-switch{cursor:pointer;text-indent:-999em;display:block;width:38px;height:22px;border-radius:30px;border:none;position:relative;box-sizing:border-box;transition:all .3s ease;box-shadow:inset 0 0 0 0 rgba(0,0,0,0)}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-switch:focus{outline:none}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-switch::before{border-radius:50%;background:#fff;content:"";position:absolute;display:block;width:18px;height:18px;top:2px;left:2px;transition:all .15s ease;box-shadow:0 1px 3px rgba(0,0,0,.3)}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-switch[data-wcf-order-bump-switch=true]{box-shadow:inset 0 0 0 12px var(--primary-border-color)}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-switch[data-wcf-order-bump-switch=true]::before{transform:translateX(16px)}.wcf-edit-flow--nav .wcf-steps-header--actions .wcf-switch[data-wcf-order-bump-switch=false]{background:#ccc}.wcf-edit-flow--nav a.wcf-edit-flow--nav__back-to-flow{padding:18px 25px 18px 18px;text-decoration:none}.wcf-edit-flow--nav a.wcf-edit-flow--nav__back-to-flow:hover{background:#fafafa}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button{background:rgba(0,0,0,0);cursor:pointer;border:none;line-height:1}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button .dashicons{color:#444;font-size:15px;height:-moz-fit-content;height:fit-content;width:-moz-fit-content;width:fit-content;margin-right:8px}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button .wcf-back-button{font-size:15px;color:#444}.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow:focus,.wcf-edit-flow--nav .wcf-edit-flow--nav__back-to-flow--button:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-flow--nav__tab{background:rgba(0,0,0,0);border:1px solid #fff;border-top:0;border-bottom:1px solid #ededed;color:#434343;cursor:pointer;padding:18px 25px;font-size:15px;line-height:1;font-weight:300;margin-bottom:-1px;max-width:100%;text-align:center;text-decoration:none;outline:none;box-shadow:none}.wcf-edit-flow--nav__tab:hover{background:#f8f8f9;border:1px solid #f8f8f9;border-top:0;color:#444}.wcf-edit-flow--nav__tab:first-child{border-left:0}.wcf-edit-flow--nav__tab:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-flow--nav__tab--active{background:#fff;color:#444;font-weight:300;border:1px solid #ededed;border-bottom:1px solid #fff;border-top:0}.wcf-edit-flow--nav__tab--active:hover{background:#fff;color:#444;font-weight:300;border:1px solid #ededed;border-bottom:1px solid #fff;border-top:0;box-shadow:none}.wcf-edit-flow--nav__tab--active:first-child{border-left:0}.wcf-edit-step--nav__back-to-flow:focus,.wcf-edit-step--nav__back-to-flow--button:focus,.wcf-edit-step--nav__tab:focus,.wcf-edit-flow--nav__tab:focus{box-shadow:none;color:#444;outline:none}
5
+ .wcf-steps-page-wrapper{padding:30px;border-top:1px solid #ededed;margin-top:-1px}.wcf-steps-page-wrapper .wcf-list-steps{margin-bottom:15px}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step{border:1px dashed #cdcdcd;background:#f9f9f9;color:#444;padding:20px;text-align:center;display:block;width:100%;transition:all 100ms ease-in;font-weight:400}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover{background:rgba(0,0,0,0);border-color:#aaa;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover .dashicons-plus::before{background:rgba(0,0,0,0);color:#016087}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step:hover .wcf-create-step--text{border-color:#006799;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step--text{line-height:1;margin-left:7px;font-size:17px;background:rgba(0,0,0,0)}.wcf-no-step-notice{padding:20px 0 40px;font-size:15px;color:#444;font-weight:400}
6
+ .wcf-steps-header{display:flex;flex-flow:row;align-items:center;justify-content:space-between;margin:0 0 25px 0}.wcf-steps-header .wcf-steps-header--title{font-size:20px;line-height:40px;color:#444;font-weight:500}.wcf-steps-header .wcf-step__title--editable .new-flow-title{background:#fafafa;border-color:#ccc;padding:2px 15px;line-height:2}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit::before{padding:5px;font-size:18px;text-decoration:none;background:#eee;display:inline-block;border-radius:100%}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a{text-decoration:none;vertical-align:middle;margin-left:10px}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:focus,.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:hover{outline:none;box-shadow:none}.wcf-steps-header .wcf-create-step{display:flex;align-items:center;justify-content:space-between}.wcf-steps-header .wcf-create-step .dashicons{height:-moz-fit-content;height:fit-content;width:-moz-fit-content;width:fit-content;font-size:15px;margin-right:10px}
7
  .wcf-step-wrap{margin-bottom:20px}.invalid-step{pointer-events:none}.invalid-step .wcf-step .wcf-step__col-tags .wcf-flow-badge{color:red}
8
+ .wcf-list-steps .sortable-chosen{background:#fafafb}.wcf-list-steps .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-list-steps .sortable-chosen .wcf-step{border:1px dashed #aaa;background:#fafafb;border-left:4px solid #ddd}.wcf-list-steps .wcf-step{background:#fff;border:1px solid #ddd;border-radius:2px;border-left-width:4px;box-sizing:border-box;box-shadow:none;padding:20px;display:flex;justify-content:space-between;align-items:center;position:relative;cursor:grab}.wcf-list-steps .wcf-step.wcf-step__no-product{border-left:4px solid #f06335}.wcf-list-steps .wcf-step .wcf-step__title a{text-decoration:none}.wcf-list-steps .wcf-step .wcf-step__actions .wcf-step__basic-action-btns .dashicons,.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown .dashicons{margin-right:5px;font-size:18px;vertical-align:middle}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown a{padding:15px;background:#fff;text-align:left;text-decoration:none;display:block;border-top:1px solid rgba(230,230,230,.5);height:auto;color:#666;font-size:14px;transition:all linear 200ms}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown a:hover{background:#fafafa;color:#1e8cbe}.wcf-list-steps .wcf-step .wcf-loader{display:flex;justify-content:center;align-items:center;position:absolute;left:45%}.wcf-list-steps .wcf-step .wcf-dot-loader{height:20px;width:20px;border-radius:50%;background-color:#f06335;position:relative;animation:1.2s grow ease-in-out infinite}.wcf-list-steps .wcf-step .wcf-dot-loader--2{animation:1.2s grow ease-in-out infinite .15555s;margin:0 10px}.wcf-list-steps .wcf-step .wcf-dot-loader--3{animation:1.2s grow ease-in-out infinite .3s}@keyframes grow{0%,40%,100%{transform:scale(0)}40%{transform:scale(1)}}.wcf-list-steps .step-overlay :not(.wcf-loader){opacity:.1}.wcf-list-steps .wcf-step-wrap.sortable-chosen.sortable-ghost .wcf-step{cursor:grabbing}.wcf-step__col-title{width:50%}.wcf-step__title-text{margin-left:10px}.wcf-step__handle{cursor:move}.wcf-step__invalid-step{touch-action:none;pointer-events:none}.wcf-global-checkout-error-badge{color:#fff;background-color:#d54e21;padding:.3em .6em .3em;border-radius:0;line-height:.7em;margin-left:10px;text-align:center;vertical-align:middle;font-size:.75em;font-weight:400}.wcf-flow-badge__invalid-step{color:red}.wcf-no-product-badge{color:#fff;background-color:#f16334;padding:.3em .6em .3em;border-radius:0;line-height:.7em;margin-left:10px;text-align:center;vertical-align:middle;font-size:.75em;font-weight:400}.wcf-global-checkout-badge{color:#fff;background-color:#0072a7;padding:.3em .6em .3em;font-size:.7em;font-weight:600;border-radius:0;line-height:.7em;margin-left:10px;text-align:center;vertical-align:middle}.wcf-step__action-btns{display:flex;align-items:center}.wcf-step__action-btns .wcf-step__action-btn{font-size:1em;line-height:.9em;vertical-align:middle;text-align:center;margin-right:15px;text-decoration:none}.wcf-step__action-btns .wcf-step__action-btn.wcf-pro{opacity:.65;cursor:not-allowed}.wcf-step__action-btns .wcf-step__action-menu{position:relative;color:#aaa;cursor:pointer;display:inline-block;top:4px;width:13px}.wcf-step__action-btns .wcf-step__action-menu:hover{color:#333}.wcf-step__action-btns .wcf-step__action-menu .dashicons-ellipsis{font-size:18px;transform:rotate(90deg);vertical-align:super}.wcf-step-badge,.wcf-flow-badge{font-weight:400;color:#000;background-color:#e3e4e8;padding:.3em .6em .3em;font-size:.75em;border-radius:0;line-height:.7em;margin-left:10px;text-align:center;vertical-align:middle;text-transform:capitalize}.wcf-invalid-sequence-badge{color:#fff;background-color:#d54e21;border-color:#d6e9c6}.wcf-yes-next-badge{color:#3c763d;background-color:#dff0d8}.wcf-no-next-badge{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.wcf-step__col-tags .wcf-flow-badge{margin-left:0;width:75px;display:inline-block;padding:8px 0;font-weight:500;color:#000;background-color:#e3e4e8;font-size:.9em;border-radius:2px;line-height:.7em;border:1px solid rgba(67,67,67,.0666666667);text-align:center;vertical-align:middle;text-transform:capitalize}.wcf-step__col-tags .wcf-step-badge,.wcf-step__col-tags .wcf-flow-badge{margin-left:0}.wcf-step:hover{border-color:#e4e4e4;box-shadow:0 1px 4px 0 rgba(32,33,36,.15)}
9
+ .wcf-actions-menu__dropdown{position:absolute;visibility:hidden;opacity:0;background:#fafafa;border-top:1px solid rgba(230,230,230,.5);box-shadow:0 2px 6px rgba(0,0,0,.15);right:-1px;width:175px;z-index:1;border-radius:3px}.wcf-actions-menu__dropdown a{padding:9px 12px;background:#fafafa;text-align:left;text-decoration:none;display:block;border-top:1px solid rgba(230,230,230,.5);height:auto;color:#666;font-size:13px;transition:all linear 200ms}.wcf-actions-menu__dropdown a:hover{background:#f2f2f2;color:#1e8cbe}.wcf-actions-menu__dropdown a:first-child{border:none}.wcf-actions-menu__dropdown::after{background:#fafafa;height:14px;transform:rotate(45deg);width:14px;content:"";position:absolute;right:19px;z-index:-7;border:none;box-shadow:-2px -1px 3px rgba(0,0,0,.07)}.wcf-actions-menu__dropdown.wcf-edit-show{visibility:visible;opacity:1}.wcf-actions-menu__dropdown.wcf-edit-above{right:10px;top:10px;transform:translate(0, -100%)}.wcf-actions-menu__dropdown.wcf-edit-above::after{bottom:-7px}.wcf-actions-menu__dropdown.wcf-edit-below{right:10px;bottom:5px;transform:translate(0, 100%)}.wcf-actions-menu__dropdown.wcf-edit-below::after{top:-7px}.wcf-actions-menu__dropdown .wcf-pro{cursor:not-allowed;opacity:.65}
10
+ .wcf-ab-test{padding:20px;background:#fff;border:1px solid #ddd;border-left-width:4px}.wcf-ab-test:hover{border-color:#e4e4e4;box-shadow:0 1px 4px 0 rgba(32,33,36,.15)}.wcf-ab-test .wcf-step{margin-bottom:15px;background:#fafafb;border:1px solid #ddd;cursor:move}.wcf-ab-test .wcf-step .wcf-step__col-title .wcf-step__handle{display:none}.wcf-ab-test .wcf-step:hover{border-color:#ddd;box-shadow:none}.wcf-ab-test .wcf-step__handle{margin-right:10px}.wcf-ab-test.sortable-chosen{background:#fafafb;border:1px dashed #ddd;border-left-width:4px;border-left-style:solid;cursor:move}.wcf-ab-test.sortable-chosen .wcf-step{border:1px solid #aaa}.wcf-ab-test .wcf-abtest-control-badge{background:#f16334;color:#fff}.wcf-ab-test .wcf-abtest-variation-badge{background:#1e8cbe;color:#fff}.wcf-ab-test .wcf-archived-step .wcf-archived-steps:last-child{margin-bottom:0}.wcf-ab-test .wcf-archived-step .wcf-step__title{display:inline}.wcf-ab-test-head{display:flex;justify-content:space-between;align-items:center;margin:0 0 20px}.wcf-ab-test-head .wcf-steps-action-buttons .wcf-stop-split-test,.wcf-ab-test-head .wcf-steps-action-buttons .wcf-start-split-test,.wcf-ab-test-head .wcf-steps-action-buttons .dashicons-admin-generic{margin-left:10px;text-decoration:none;color:#444}.wcf-ab-test-head .wcf-steps-action-buttons .wcf-stop-split-test.is-loading,.wcf-ab-test-head .wcf-steps-action-buttons .wcf-start-split-test.is-loading,.wcf-ab-test-head .wcf-steps-action-buttons .dashicons-admin-generic.is-loading{animation:spin 4s linear infinite}.wcf-ab-test-head .wcf-steps-action-buttons .wcf-stop-split-test{color:var(--primary-color)}.wcf-ab-test-head .wcf-steps-action-buttons .wcf-start-split-test{color:green}.wcf-ab-test-head .wcf-steps-action-buttons:hover .wcf-stop-split-test,.wcf-ab-test-head .wcf-steps-action-buttons:hover .dashicons-admin-generic{color:#006799}@keyframes spin{100%{transform:rotate(360deg)}}
11
+ .wcf-ab-test-settings-popup-overlay{position:fixed;text-align:left;background:rgba(0,0,0,.7294117647);z-index:9999;width:100%;height:100%;left:0;top:0}.wcf-ab-test-popup-content{width:510px;background:#fff;border-radius:2px;left:50%;top:50%;position:absolute;transform:translate(-50%, -50%);z-index:100}.wcf-ab-test-settings-popup-overlay .wcf-popup-title-wrap{font-size:14px;font-weight:600;padding-left:8px}.wcf-content-wrap{padding:25px;background:#fff;border-radius:0 0 2px 2px}.wcf-ab-settings-header .wcf-cartflows-title{font-weight:500;font-size:16px}.wcf-ab-settings-content .wcf-ab-settings-content__title{font-weight:500;width:100%;display:inline-block;font-size:15px;margin-bottom:15px}.wcf-ab-settings-header{display:flex;justify-content:space-between;padding:15px;box-shadow:0 0 8px rgba(0,0,0,.2);border-bottom:1px solid rgba(0,0,0,.1)}.wcf-ab-settings-header .close-icon .wcf-cartflow-icons{position:relative;color:#ccc;cursor:pointer;display:inline-block}.wcf-ab-settings-header .close-icon .wcf-cartflow-icons:hover{color:#aaa}.wcf-ab-settings-footer{display:flex;justify-content:flex-end;padding:10px 35px 0}.wcf-ab-test-save.button-primary.updating-message::before{color:#fff;margin:7px 5px 0 -4px;font-size:18px}.wcf-popup-actions-wrap .button.wcf-ab-test-cancel{display:none}.wcf-popup-actions-wrap .button.wcf-ab-test-save{padding:3px 25px}.wcf-traffic-field{display:flex;align-items:center;margin-bottom:15px}.wcf-traffic-field .wcf-step-name{width:160px;margin-right:15px;line-height:1.8}.wcf-traffic-field .wcf-traffic-slider-wrap{display:flex;align-items:center;width:300px}.wcf-traffic-field .wcf-traffic-range{width:190px}.wcf-traffic-field .wcf-traffic-range input{width:150px;height:-moz-fit-content;height:fit-content}.wcf-traffic-field .wcf-traffic-value{width:90px;display:flex;align-items:center}.wcf-traffic-value .wcf-text-field input{height:unset;padding:0 0 0 8px}.wcf-traffic-value input{width:65px}.wcf-traffic-value input::after{position:absolute;content:"%";font-size:10px;color:#b6c3cf;left:43px;top:10px}.wcf-traffic-value .wcf-field__data--content{margin-right:10px}.wcf-traffic-input-field{margin-left:1px !important;width:65px !important}.wcf-traffic-value{display:flex}.cartflows-logo-icon{font-size:18px}
12
+ .wcf-field__desc{margin-top:10px;font-style:italic;font-weight:400;color:#666;line-height:1.5}.wcf-tooltip-icon{display:inline-block;margin-left:5px;vertical-align:middle}
13
  .wcf-checkbox-field label{margin-right:10px}.wcf-checkbox-field input[type=checkbox]{margin:0 7px 0 0}
14
+ .wcf-radio-field .wcf-field__data{display:block}.wcf-radio-field .wcf-field__data--label{padding:0 0 10px}.wcf-radio-field input[type=radio]{margin:0 7px 0 0}.wcf-radio-field .wcf-radio-field__option-desc{color:#777;line-height:1.5;margin-top:10px;font-style:italic;font-weight:400}.wcf-radio-field .wcf-radio-field__option.wcf-child-field{margin-left:15px}
15
+ .wcf-select-option select{font-weight:400;max-width:100%;margin:0 15px 0 0;height:36px;padding:4px 15px;border:1px solid #ddd;border-radius:2px;width:300px;background-size:15px;background-position:right 10px top 55%}.wcf-select-option select:focus{box-shadow:none;border-color:#aaa;color:#444}.wcf-select-option select:hover{color:#444}.wcf-select-option .wcf-field__data--content__after{margin-left:10px;font-weight:500;font-size:14px;color:#444}
16
+ .wcf-text-field input{font-weight:400;max-width:100%;margin:0;width:300px;height:36px;background:#fff;border-color:#ddd;padding:4px 15px;border-radius:2px}.wcf-text-field input:focus{box-shadow:none;border-color:#aaa}.wcf-text-field input.readonly,.wcf-text-field input[readonly]{background-color:#eee !important}.wcf-field__data{display:flex;align-items:center}
17
+ .wcf-textarea-field label{vertical-align:top}.wcf-textarea-field textarea{margin:0;border-color:#ddd}.wcf-textarea-field .wcf-field__data{align-items:flex-start}.wcf-textarea-field .wcf-field__data--label{padding:8px 0 0}
18
+ .wcf-button-style{background:#fff;border-radius:3px;text-shadow:none;text-decoration:none;border:1px solid #f06335;cursor:pointer;display:inline-block;font-size:15px;font-weight:400;padding:6px 20px;text-align:center;text-transform:uppercase;vertical-align:middle;transition:all 100ms linear}.wcf-btn-primary{background:#f06335;color:#fff;transition:all linear 250ms}.wcf-btn-primary:active,.wcf-btn-primary:focus,.wcf-btn-primary:hover{color:#fff;background:#f06335}.wcf-btn-primary:active,.wcf-btn-primary:focus,.wcf-button-style:hover{outline:0;text-decoration:none;box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23)}@keyframes wcf-saving{0%{background-position:200px 0}}.wcf-submit-field .wcf-success-notice{max-width:300px;display:inline-block;margin:0}.wcf-submit-field .dashicons{vertical-align:middle}.wcf-submit-field .wcf-success-message{font-weight:400;font-size:14px}.wcf-submit-field .wcf-saving{animation:wcf-saving 2.5s linear infinite;opacity:1;background-size:100px 100%;background-image:linear-gradient(-45deg, #f06335 28%, #f78860 0, #f78860 72%, #f06335 0)}
19
+ .wcf-selection-field{display:flex;align-items:center}.wcf-selection-field .wcf-select2-input .wcf__control{cursor:pointer}.wcf-selection-field .wcf__value-container .css-1g6gooi,.wcf-selection-field .wcf__value-container div:last-child{margin:0;padding:0;color:#444}.wcf-selection-field .wcf__value-container .css-1g6gooi input:focus,.wcf-selection-field .wcf__value-container div:last-child input:focus{box-shadow:none}.wcf-selection-field .wcf__control .css-1hwfws3m,.wcf-selection-field .wcf__value-container{min-height:36px;font-weight:400;color:#444}.wcf-selection-field .wcf-select2-input{border-color:#ddd;border-radius:2px;width:300px}.wcf-selection-field .wcf-select2-input .wcf__menu{font-weight:400;line-height:1.1;border-radius:2px;color:#555;background-color:#fff}.wcf-selection-field .wcf-select2-input .wcf__menu .wcf__menu-list{max-height:200px}.wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:active,.wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:hover{background-color:#f1f1f1;cursor:pointer;color:#444}.wcf-selection-field .wcf-select2-input .wcf__option--is-focused,.wcf-selection-field .wcf-select2-input .wcf__option--is-selected{cursor:pointer;background-color:#f1f1f1;color:#444}.wcf-selection-field .wcf__control{border-color:#ddd;border-radius:2px;width:300px}.wcf-selection-field .wcf__value-container,.wcf-selection-field .wcf__control .wcf__value-container--has-value,.wcf-selection-field .wcf__control .wcf__value-container--has-value .wcf__single-value{color:#444}.wcf-selection-field .wcf__control:hover,.wcf-selection-field .wcf__control:active,.wcf-selection-field .wcf__control.wcf__control--is-focused{border-color:#aaa;box-shadow:none}.css-2b097c-container{display:inline;margin:0 0 0 30px;width:450px}.wcf-selection-field label{display:inline-block}
20
+ .wcf-product-repeater-field__product{display:flex}.wcf-product-repeater-field__product button{padding:7px;text-align:center}.wcf-repeater-dashicon{margin:7px 15px 0 0}.wcf-product-repeater-field__options{padding:10px 0 10px 35px;display:flex}.wcf-product-repeater-field{padding:10px 0 30px}.wcf-checkout-product-selection-field__add-new .button{margin:10px}.wcf-add-new-product{margin-right:15px}.wcf-create-woo-iframe-opened{overflow:hidden}.wcf-create-woo-product-overlay{position:fixed;height:100%;width:100%;top:0;left:0;background:rgba(0,0,0,.7294117647);visibility:hidden;opacity:0;z-index:9999;-webkit-user-select:none;user-select:none;transition:none}.wcf-create-woo-product-overlay.open{visibility:visible;opacity:1;z-index:999999}.wcf-create-woo-product-wrap{max-width:100%;background-color:rgba(0,0,0,0);position:relative;border-radius:3px;top:50%;margin:0 auto;-ms-transform:translate(-50%, -35%);width:90%;min-height:85%;max-height:85%;height:85%;transform:translateY(-50%);z-index:99999}.wcf-create-woo-product-wrap:not(.product-loaded)::before{content:"";position:absolute;background:none !important;top:50%;margin:0 auto;text-align:center;color:#fff;left:50%;width:48px;height:48px;display:block;border:3px solid #fff;border-radius:50%;border-right-color:rgba(0,0,0,0);border-left-color:rgba(0,0,0,0);animation:wcf-admin-loader 575ms infinite linear}.wcf-woo-product-iframe{max-width:100%;width:100%;min-height:100%;height:100%;background:#fff}.wcf-close-create-woo-product{background:#fff;border:1px #fff solid;border-radius:50%;color:#000;height:25px;position:fixed;width:25px;top:-10px;left:auto;z-index:100000;cursor:pointer;right:-10px;font-size:20px;line-height:1.3;text-align:center}.wcf-close-create-woo-product::before{content:"";font-family:dashicons}#wcf-create-woo-product iframe.wcf-create-woo-product-iframe #wpadminbar,#wcf-create-woo-product iframe.wcf-create-woo-product-iframe #adminmenumain{display:none}.wcf-checkout-product-selection-field__header{display:flex;justify-content:space-between}.wcf-product-repeater-field__product-image img{width:55px}.wcf-product-repeater-field__product-data{display:flex}.wcf-product-repeater-field__product-details{width:250px;padding-left:20px}.wcf-product-repeater-field__discount{display:flex}.wcf-product-repeater-field__discount-type{width:220px}.wcf-product-repeater-field__discount-value{width:100px}.wcf-remove-product-button{margin-left:20px}
21
+ .wcf-select-product-popup-overlay{position:fixed;text-align:left;background:rgba(0,0,0,.7294117647);z-index:9999;width:100%;height:100%;left:0;top:0}.wcf-select-product-popup-overlay .wcf-select-product-popup-content{width:510px;background:#fff;border-radius:3px;left:50%;top:50%;position:absolute;transform:translate(-50%, -50%);justify-content:space-between}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header{display:flex;justify-content:space-between;align-items:center;position:relative;height:50px;margin:0;padding:0;width:100%;border-bottom:1px solid #ddd}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__title h2{text-transform:uppercase;font-size:14px;margin-right:10px;font-weight:600;line-height:1;padding-left:25px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__title h2 .cartflows-logo-icon{font-size:16px;margin-right:8px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu{padding:5px;border-left:1px solid #ddd;position:relative;color:#ccc;cursor:pointer;display:inline-block}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu .dashicons{line-height:1.5}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu::after{font-size:25px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select-product-header .wcf-select-product-header__menu:hover{color:#aaa}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-select2-field .wcf-selection-field label{display:none}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-content-wrap{padding:25px;background:#f5f5f5}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-content-wrap .wcf-content-wrap{padding:45px}.wcf-select-product-popup-overlay .wcf-select-product-popup-content .wcf-content-wrap .wcf-select-product-content{display:flex;padding:20px 0;justify-content:space-between}
22
+ .wcf-product-options-fields__list{margin:0}.wcf-product-options-fields__list .wcf-product-options-fields__list--no-product{color:#666;padding:10px 25px}.wcf-product-option-field{margin-bottom:10px;display:flex}.wcf-product-field-item-bar{border:1px solid #ddd;border-radius:2px;font-weight:400;color:#444;font-size:15px;padding:12px 20px;height:auto;min-height:20px;width:auto;line-height:initial}.wcf-product-field-item-bar .default-label-note{margin-right:20px;line-height:1.5;font-size:16px}.wcf-product-options-fields__list--header{border:1px solid #f4f4f4;border-radius:2px;font-weight:400;color:#444;font-size:13px;font-style:italic;padding:12px 10px;height:auto;min-height:20px;width:650px;line-height:initial;margin-bottom:10px;background:#f4f4f4;position:relative}.wcf-product-options-fields__list--header::before{content:"";width:10px;height:10px;border:1px solid #f4f4f4;top:-6px;position:absolute;transform:rotate(45deg);border-left:none;border-top:none;left:27px;background-color:#f4f4f4}.wcf-product-options-fields__list--header .default-label-note{line-height:1.5;font-size:16px}.wcf-product-options-fields__list--header .wcf-default-label{margin-right:10px}.wcf-product-option-default-in-cart{width:auto;line-height:initial;margin:0 25px 0 5px}.wcf-product-option-default-in-cart input{margin:0 !important}.disabled{opacity:.5;pointer-events:none}.wcf-product-field-item-bar span{display:inline-block;text-align:center;line-height:1}.wcf-dashicon{display:inline-flex;float:right;position:relative;top:-1px;cursor:pointer}.wcf-product-field-item-settings{background:#f5f6f7;border:1px solid #ececec;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:20px}.wcf-product-field-item-settings .wcf-field{margin-bottom:20px}.wcf-product-field-item-settings .wcf-field__desc{line-height:1.5}.wcf-product-field-item-settings .wcf-field.wcf-checkbox-field{margin-bottom:10px}.wcf-product-field-item-settings .wcf-field__data .wcf-field__data--label label{width:200px}.wcf-product-option-fields{width:650px}
23
+ .wcf-color-field{display:flex;align-items:center;line-height:1}.wcf-color-field .wcf-colorpicker-swatch-wrap{display:flex;align-items:center;cursor:pointer}.wcf-color-field .wcf-colorpicker-swatch{padding:0;background:#fafafa;display:inline-block;margin:0;border-right:1px solid #ddd;box-shadow:inset 0 0 0 3px #fff}.wcf-color-field .wcf-color-picker-popover{position:absolute;z-index:2;margin:8px 0}.wcf-color-field .wcf-color-picker-cover{position:fixed;top:0;right:0;bottom:0;left:0}.wcf-color-field .sketch-picker{font-weight:400}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-selector{display:flex;align-items:center}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-swatch-wrap{border:1px solid #ddd;border-radius:2px;background:#fff;color:#444}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-label{font-weight:400;padding:5px 7px}.wcf-color-field .wcf-field__data--content .wcf-colorpicker-reset{padding:6px;cursor:pointer}.wcf-color-field .wcf-color-picker{position:relative}.wcf-color-field .wcf-color-picker input{margin:0}.wcf-color-field .wcf-color-picker input[id^=rc-editable-input-]{width:100% !important}
24
  .wcf-font-family-field .wcf-font-weight-field{margin-top:30px}
25
+ .wcf-image-selector-field-buttons{display:flex;padding:7px;width:300px}.wcf-image-selector-field{display:flex}.wcf-image-selector-field-button-select,.wcf-image-selector-field-button-remove{display:inline;margin-left:10px;width:100%}.wcf-image-selector-field__input{margin-left:15px}#wcf-image-preview{text-align:center;border:1px solid #ddd;margin-bottom:10px;line-height:1}.wcf-image-selector-field__input,.wcf-image-selector-field-buttons,.wcf-image-selector-field-button-select{margin:0;padding:0}.wcf-image-selector-field-button-select button.wcf-select-image{font-weight:500;width:100%}
26
+ .wcf-input-text-field input{margin-left:20px;width:300px;max-width:100%}
27
+ .wcf-number-field input{margin:0 15px;width:300px;max-width:100%}.wcf-number-field input.readonly,.wcf-number-field input[readonly]{background-color:#eee !important}.wcf-number-field input[type=number]{font-weight:400;margin:0;height:36px;padding:4px 15px;border-radius:2px;border:1px solid #ddd}.wcf-number-field:focus{box-shadow:none;border-color:#aaa}.wcf-number-field .wcf-field__data--after-field{margin-left:10px}
28
+ @charset "UTF-8";
29
+ .react-datepicker__year-read-view--down-arrow,
30
+ .react-datepicker__month-read-view--down-arrow,
31
+ .react-datepicker__month-year-read-view--down-arrow, .react-datepicker__navigation-icon::before {
32
+ border-color: #ccc;
33
+ border-style: solid;
34
+ border-width: 3px 3px 0 0;
35
+ content: "";
36
+ display: block;
37
+ height: 9px;
38
+ position: absolute;
39
+ top: 6px;
40
+ width: 9px;
41
+ }
42
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
43
+ margin-left: -4px;
44
+ position: absolute;
45
+ width: 0;
46
+ }
47
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
48
+ box-sizing: content-box;
49
+ position: absolute;
50
+ border: 8px solid transparent;
51
+ height: 0;
52
+ width: 1px;
53
+ content: "";
54
+ z-index: -1;
55
+ border-width: 8px;
56
+ left: -8px;
57
+ }
58
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
59
+ border-bottom-color: #aeaeae;
60
+ }
61
+
62
+ .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
63
+ top: 0;
64
+ margin-top: -8px;
65
+ }
66
+ .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
67
+ border-top: none;
68
+ border-bottom-color: #f0f0f0;
69
+ }
70
+ .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
71
+ top: 0;
72
+ }
73
+ .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
74
+ top: -1px;
75
+ border-bottom-color: #aeaeae;
76
+ }
77
+
78
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
79
+ bottom: 0;
80
+ margin-bottom: -8px;
81
+ }
82
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
83
+ border-bottom: none;
84
+ border-top-color: #fff;
85
+ }
86
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
87
+ bottom: 0;
88
+ }
89
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before {
90
+ bottom: -1px;
91
+ border-top-color: #aeaeae;
92
+ }
93
+
94
+ .react-datepicker-wrapper {
95
+ display: inline-block;
96
+ padding: 0;
97
+ border: 0;
98
+ width: 100%;
99
+ }
100
+
101
+ .react-datepicker {
102
+ font-family: "Helvetica Neue", helvetica, arial, sans-serif;
103
+ font-size: 0.8rem;
104
+ background-color: #fff;
105
+ color: #000;
106
+ border: 1px solid #aeaeae;
107
+ border-radius: 0.3rem;
108
+ display: inline-block;
109
+ position: relative;
110
+ }
111
+
112
+ .react-datepicker--time-only .react-datepicker__triangle {
113
+ left: 35px;
114
+ }
115
+ .react-datepicker--time-only .react-datepicker__time-container {
116
+ border-left: 0;
117
+ }
118
+ .react-datepicker--time-only .react-datepicker__time,
119
+ .react-datepicker--time-only .react-datepicker__time-box {
120
+ border-bottom-left-radius: 0.3rem;
121
+ border-bottom-right-radius: 0.3rem;
122
+ }
123
+
124
+ .react-datepicker__triangle {
125
+ position: absolute;
126
+ left: 50px;
127
+ }
128
+
129
+ .react-datepicker-popper {
130
+ z-index: 1;
131
+ }
132
+ .react-datepicker-popper[data-placement^=bottom] {
133
+ padding-top: 10px;
134
+ }
135
+ .react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle, .react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle {
136
+ left: auto;
137
+ right: 50px;
138
+ }
139
+ .react-datepicker-popper[data-placement^=top] {
140
+ padding-bottom: 10px;
141
+ }
142
+ .react-datepicker-popper[data-placement^=right] {
143
+ padding-left: 8px;
144
+ }
145
+ .react-datepicker-popper[data-placement^=right] .react-datepicker__triangle {
146
+ left: auto;
147
+ right: 42px;
148
+ }
149
+ .react-datepicker-popper[data-placement^=left] {
150
+ padding-right: 8px;
151
+ }
152
+ .react-datepicker-popper[data-placement^=left] .react-datepicker__triangle {
153
+ left: 42px;
154
+ right: auto;
155
+ }
156
+
157
+ .react-datepicker__header {
158
+ text-align: center;
159
+ background-color: #f0f0f0;
160
+ border-bottom: 1px solid #aeaeae;
161
+ border-top-left-radius: 0.3rem;
162
+ padding: 8px 0;
163
+ position: relative;
164
+ }
165
+ .react-datepicker__header--time {
166
+ padding-bottom: 8px;
167
+ padding-left: 5px;
168
+ padding-right: 5px;
169
+ }
170
+ .react-datepicker__header--time:not(.react-datepicker__header--time--only) {
171
+ border-top-left-radius: 0;
172
+ }
173
+ .react-datepicker__header:not(.react-datepicker__header--has-time-select) {
174
+ border-top-right-radius: 0.3rem;
175
+ }
176
+
177
+ .react-datepicker__year-dropdown-container--select,
178
+ .react-datepicker__month-dropdown-container--select,
179
+ .react-datepicker__month-year-dropdown-container--select,
180
+ .react-datepicker__year-dropdown-container--scroll,
181
+ .react-datepicker__month-dropdown-container--scroll,
182
+ .react-datepicker__month-year-dropdown-container--scroll {
183
+ display: inline-block;
184
+ margin: 0 2px;
185
+ }
186
+
187
+ .react-datepicker__current-month,
188
+ .react-datepicker-time__header,
189
+ .react-datepicker-year-header {
190
+ margin-top: 0;
191
+ color: #000;
192
+ font-weight: bold;
193
+ font-size: 0.944rem;
194
+ }
195
+
196
+ .react-datepicker-time__header {
197
+ text-overflow: ellipsis;
198
+ white-space: nowrap;
199
+ overflow: hidden;
200
+ }
201
+
202
+ .react-datepicker__navigation {
203
+ align-items: center;
204
+ background: none;
205
+ display: flex;
206
+ justify-content: center;
207
+ text-align: center;
208
+ cursor: pointer;
209
+ position: absolute;
210
+ top: 2px;
211
+ padding: 0;
212
+ border: none;
213
+ z-index: 1;
214
+ height: 32px;
215
+ width: 32px;
216
+ text-indent: -999em;
217
+ overflow: hidden;
218
+ }
219
+ .react-datepicker__navigation--previous {
220
+ left: 2px;
221
+ }
222
+ .react-datepicker__navigation--next {
223
+ right: 2px;
224
+ }
225
+ .react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
226
+ right: 85px;
227
+ }
228
+ .react-datepicker__navigation--years {
229
+ position: relative;
230
+ top: 0;
231
+ display: block;
232
+ margin-left: auto;
233
+ margin-right: auto;
234
+ }
235
+ .react-datepicker__navigation--years-previous {
236
+ top: 4px;
237
+ }
238
+ .react-datepicker__navigation--years-upcoming {
239
+ top: -4px;
240
+ }
241
+ .react-datepicker__navigation:hover *::before {
242
+ border-color: #a6a6a6;
243
+ }
244
+
245
+ .react-datepicker__navigation-icon {
246
+ position: relative;
247
+ top: -1px;
248
+ font-size: 20px;
249
+ width: 0;
250
+ }
251
+ .react-datepicker__navigation-icon--next {
252
+ left: -2px;
253
+ }
254
+ .react-datepicker__navigation-icon--next::before {
255
+ transform: rotate(45deg);
256
+ left: -7px;
257
+ }
258
+ .react-datepicker__navigation-icon--previous {
259
+ right: -2px;
260
+ }
261
+ .react-datepicker__navigation-icon--previous::before {
262
+ transform: rotate(225deg);
263
+ right: -7px;
264
+ }
265
+
266
+ .react-datepicker__month-container {
267
+ float: left;
268
+ }
269
+
270
+ .react-datepicker__year {
271
+ margin: 0.4rem;
272
+ text-align: center;
273
+ }
274
+ .react-datepicker__year-wrapper {
275
+ display: flex;
276
+ flex-wrap: wrap;
277
+ max-width: 180px;
278
+ }
279
+ .react-datepicker__year .react-datepicker__year-text {
280
+ display: inline-block;
281
+ width: 4rem;
282
+ margin: 2px;
283
+ }
284
+
285
+ .react-datepicker__month {
286
+ margin: 0.4rem;
287
+ text-align: center;
288
+ }
289
+ .react-datepicker__month .react-datepicker__month-text,
290
+ .react-datepicker__month .react-datepicker__quarter-text {
291
+ display: inline-block;
292
+ width: 4rem;
293
+ margin: 2px;
294
+ }
295
+
296
+ .react-datepicker__input-time-container {
297
+ clear: both;
298
+ width: 100%;
299
+ float: left;
300
+ margin: 5px 0 10px 15px;
301
+ text-align: left;
302
+ }
303
+ .react-datepicker__input-time-container .react-datepicker-time__caption {
304
+ display: inline-block;
305
+ }
306
+ .react-datepicker__input-time-container .react-datepicker-time__input-container {
307
+ display: inline-block;
308
+ }
309
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
310
+ display: inline-block;
311
+ margin-left: 10px;
312
+ }
313
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
314
+ width: auto;
315
+ }
316
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
317
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
318
+ -webkit-appearance: none;
319
+ margin: 0;
320
+ }
321
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
322
+ -moz-appearance: textfield;
323
+ }
324
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
325
+ margin-left: 5px;
326
+ display: inline-block;
327
+ }
328
+
329
+ .react-datepicker__time-container {
330
+ float: right;
331
+ border-left: 1px solid #aeaeae;
332
+ width: 85px;
333
+ }
334
+ .react-datepicker__time-container--with-today-button {
335
+ display: inline;
336
+ border: 1px solid #aeaeae;
337
+ border-radius: 0.3rem;
338
+ position: absolute;
339
+ right: -72px;
340
+ top: 0;
341
+ }
342
+ .react-datepicker__time-container .react-datepicker__time {
343
+ position: relative;
344
+ background: white;
345
+ border-bottom-right-radius: 0.3rem;
346
+ }
347
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
348
+ width: 85px;
349
+ overflow-x: hidden;
350
+ margin: 0 auto;
351
+ text-align: center;
352
+ border-bottom-right-radius: 0.3rem;
353
+ }
354
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
355
+ list-style: none;
356
+ margin: 0;
357
+ height: calc(195px + (1.7rem / 2));
358
+ overflow-y: scroll;
359
+ padding-right: 0;
360
+ padding-left: 0;
361
+ width: 100%;
362
+ box-sizing: content-box;
363
+ }
364
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
365
+ height: 30px;
366
+ padding: 5px 10px;
367
+ white-space: nowrap;
368
+ }
369
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
370
+ cursor: pointer;
371
+ background-color: #f0f0f0;
372
+ }
373
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
374
+ background-color: #216ba5;
375
+ color: white;
376
+ font-weight: bold;
377
+ }
378
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
379
+ background-color: #216ba5;
380
+ }
381
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
382
+ color: #ccc;
383
+ }
384
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
385
+ cursor: default;
386
+ background-color: transparent;
387
+ }
388
+
389
+ .react-datepicker__week-number {
390
+ color: #ccc;
391
+ display: inline-block;
392
+ width: 1.7rem;
393
+ line-height: 1.7rem;
394
+ text-align: center;
395
+ margin: 0.166rem;
396
+ }
397
+ .react-datepicker__week-number.react-datepicker__week-number--clickable {
398
+ cursor: pointer;
399
+ }
400
+ .react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
401
+ border-radius: 0.3rem;
402
+ background-color: #f0f0f0;
403
+ }
404
+
405
+ .react-datepicker__day-names,
406
+ .react-datepicker__week {
407
+ white-space: nowrap;
408
+ }
409
+
410
+ .react-datepicker__day-names {
411
+ margin-bottom: -8px;
412
+ }
413
+
414
+ .react-datepicker__day-name,
415
+ .react-datepicker__day,
416
+ .react-datepicker__time-name {
417
+ color: #000;
418
+ display: inline-block;
419
+ width: 1.7rem;
420
+ line-height: 1.7rem;
421
+ text-align: center;
422
+ margin: 0.166rem;
423
+ }
424
+
425
+ .react-datepicker__month--selected, .react-datepicker__month--in-selecting-range, .react-datepicker__month--in-range,
426
+ .react-datepicker__quarter--selected,
427
+ .react-datepicker__quarter--in-selecting-range,
428
+ .react-datepicker__quarter--in-range {
429
+ border-radius: 0.3rem;
430
+ background-color: #216ba5;
431
+ color: #fff;
432
+ }
433
+ .react-datepicker__month--selected:hover, .react-datepicker__month--in-selecting-range:hover, .react-datepicker__month--in-range:hover,
434
+ .react-datepicker__quarter--selected:hover,
435
+ .react-datepicker__quarter--in-selecting-range:hover,
436
+ .react-datepicker__quarter--in-range:hover {
437
+ background-color: #1d5d90;
438
+ }
439
+ .react-datepicker__month--disabled,
440
+ .react-datepicker__quarter--disabled {
441
+ color: #ccc;
442
+ pointer-events: none;
443
+ }
444
+ .react-datepicker__month--disabled:hover,
445
+ .react-datepicker__quarter--disabled:hover {
446
+ cursor: default;
447
+ background-color: transparent;
448
+ }
449
+
450
+ .react-datepicker__day,
451
+ .react-datepicker__month-text,
452
+ .react-datepicker__quarter-text,
453
+ .react-datepicker__year-text {
454
+ cursor: pointer;
455
+ }
456
+ .react-datepicker__day:hover,
457
+ .react-datepicker__month-text:hover,
458
+ .react-datepicker__quarter-text:hover,
459
+ .react-datepicker__year-text:hover {
460
+ border-radius: 0.3rem;
461
+ background-color: #f0f0f0;
462
+ }
463
+ .react-datepicker__day--today,
464
+ .react-datepicker__month-text--today,
465
+ .react-datepicker__quarter-text--today,
466
+ .react-datepicker__year-text--today {
467
+ font-weight: bold;
468
+ }
469
+ .react-datepicker__day--highlighted,
470
+ .react-datepicker__month-text--highlighted,
471
+ .react-datepicker__quarter-text--highlighted,
472
+ .react-datepicker__year-text--highlighted {
473
+ border-radius: 0.3rem;
474
+ background-color: #3dcc4a;
475
+ color: #fff;
476
+ }
477
+ .react-datepicker__day--highlighted:hover,
478
+ .react-datepicker__month-text--highlighted:hover,
479
+ .react-datepicker__quarter-text--highlighted:hover,
480
+ .react-datepicker__year-text--highlighted:hover {
481
+ background-color: #32be3f;
482
+ }
483
+ .react-datepicker__day--highlighted-custom-1,
484
+ .react-datepicker__month-text--highlighted-custom-1,
485
+ .react-datepicker__quarter-text--highlighted-custom-1,
486
+ .react-datepicker__year-text--highlighted-custom-1 {
487
+ color: magenta;
488
+ }
489
+ .react-datepicker__day--highlighted-custom-2,
490
+ .react-datepicker__month-text--highlighted-custom-2,
491
+ .react-datepicker__quarter-text--highlighted-custom-2,
492
+ .react-datepicker__year-text--highlighted-custom-2 {
493
+ color: green;
494
+ }
495
+ .react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
496
+ .react-datepicker__month-text--selected,
497
+ .react-datepicker__month-text--in-selecting-range,
498
+ .react-datepicker__month-text--in-range,
499
+ .react-datepicker__quarter-text--selected,
500
+ .react-datepicker__quarter-text--in-selecting-range,
501
+ .react-datepicker__quarter-text--in-range,
502
+ .react-datepicker__year-text--selected,
503
+ .react-datepicker__year-text--in-selecting-range,
504
+ .react-datepicker__year-text--in-range {
505
+ border-radius: 0.3rem;
506
+ background-color: #216ba5;
507
+ color: #fff;
508
+ }
509
+ .react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover,
510
+ .react-datepicker__month-text--selected:hover,
511
+ .react-datepicker__month-text--in-selecting-range:hover,
512
+ .react-datepicker__month-text--in-range:hover,
513
+ .react-datepicker__quarter-text--selected:hover,
514
+ .react-datepicker__quarter-text--in-selecting-range:hover,
515
+ .react-datepicker__quarter-text--in-range:hover,
516
+ .react-datepicker__year-text--selected:hover,
517
+ .react-datepicker__year-text--in-selecting-range:hover,
518
+ .react-datepicker__year-text--in-range:hover {
519
+ background-color: #1d5d90;
520
+ }
521
+ .react-datepicker__day--keyboard-selected,
522
+ .react-datepicker__month-text--keyboard-selected,
523
+ .react-datepicker__quarter-text--keyboard-selected,
524
+ .react-datepicker__year-text--keyboard-selected {
525
+ border-radius: 0.3rem;
526
+ background-color: #2579ba;
527
+ color: #fff;
528
+ }
529
+ .react-datepicker__day--keyboard-selected:hover,
530
+ .react-datepicker__month-text--keyboard-selected:hover,
531
+ .react-datepicker__quarter-text--keyboard-selected:hover,
532
+ .react-datepicker__year-text--keyboard-selected:hover {
533
+ background-color: #1d5d90;
534
+ }
535
+ .react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
536
+ .react-datepicker__month-text--in-range,
537
+ .react-datepicker__quarter-text--in-range,
538
+ .react-datepicker__year-text--in-range),
539
+ .react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
540
+ .react-datepicker__month-text--in-range,
541
+ .react-datepicker__quarter-text--in-range,
542
+ .react-datepicker__year-text--in-range),
543
+ .react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
544
+ .react-datepicker__month-text--in-range,
545
+ .react-datepicker__quarter-text--in-range,
546
+ .react-datepicker__year-text--in-range),
547
+ .react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
548
+ .react-datepicker__month-text--in-range,
549
+ .react-datepicker__quarter-text--in-range,
550
+ .react-datepicker__year-text--in-range) {
551
+ background-color: rgba(33, 107, 165, 0.5);
552
+ }
553
+ .react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
554
+ .react-datepicker__month-text--in-selecting-range,
555
+ .react-datepicker__quarter-text--in-selecting-range,
556
+ .react-datepicker__year-text--in-selecting-range),
557
+ .react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
558
+ .react-datepicker__month-text--in-selecting-range,
559
+ .react-datepicker__quarter-text--in-selecting-range,
560
+ .react-datepicker__year-text--in-selecting-range),
561
+ .react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
562
+ .react-datepicker__month-text--in-selecting-range,
563
+ .react-datepicker__quarter-text--in-selecting-range,
564
+ .react-datepicker__year-text--in-selecting-range),
565
+ .react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
566
+ .react-datepicker__month-text--in-selecting-range,
567
+ .react-datepicker__quarter-text--in-selecting-range,
568
+ .react-datepicker__year-text--in-selecting-range) {
569
+ background-color: #f0f0f0;
570
+ color: #000;
571
+ }
572
+ .react-datepicker__day--disabled,
573
+ .react-datepicker__month-text--disabled,
574
+ .react-datepicker__quarter-text--disabled,
575
+ .react-datepicker__year-text--disabled {
576
+ cursor: default;
577
+ color: #ccc;
578
+ }
579
+ .react-datepicker__day--disabled:hover,
580
+ .react-datepicker__month-text--disabled:hover,
581
+ .react-datepicker__quarter-text--disabled:hover,
582
+ .react-datepicker__year-text--disabled:hover {
583
+ background-color: transparent;
584
+ }
585
+
586
+ .react-datepicker__month-text.react-datepicker__month--selected:hover, .react-datepicker__month-text.react-datepicker__month--in-range:hover, .react-datepicker__month-text.react-datepicker__quarter--selected:hover, .react-datepicker__month-text.react-datepicker__quarter--in-range:hover,
587
+ .react-datepicker__quarter-text.react-datepicker__month--selected:hover,
588
+ .react-datepicker__quarter-text.react-datepicker__month--in-range:hover,
589
+ .react-datepicker__quarter-text.react-datepicker__quarter--selected:hover,
590
+ .react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover {
591
+ background-color: #216ba5;
592
+ }
593
+ .react-datepicker__month-text:hover,
594
+ .react-datepicker__quarter-text:hover {
595
+ background-color: #f0f0f0;
596
+ }
597
+
598
+ .react-datepicker__input-container {
599
+ position: relative;
600
+ display: inline-block;
601
+ width: 100%;
602
+ }
603
+
604
+ .react-datepicker__year-read-view,
605
+ .react-datepicker__month-read-view,
606
+ .react-datepicker__month-year-read-view {
607
+ border: 1px solid transparent;
608
+ border-radius: 0.3rem;
609
+ position: relative;
610
+ }
611
+ .react-datepicker__year-read-view:hover,
612
+ .react-datepicker__month-read-view:hover,
613
+ .react-datepicker__month-year-read-view:hover {
614
+ cursor: pointer;
615
+ }
616
+ .react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
617
+ .react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
618
+ .react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
619
+ .react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
620
+ .react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
621
+ .react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
622
+ border-top-color: #b3b3b3;
623
+ }
624
+ .react-datepicker__year-read-view--down-arrow,
625
+ .react-datepicker__month-read-view--down-arrow,
626
+ .react-datepicker__month-year-read-view--down-arrow {
627
+ transform: rotate(135deg);
628
+ right: -16px;
629
+ top: 0;
630
+ }
631
+
632
+ .react-datepicker__year-dropdown,
633
+ .react-datepicker__month-dropdown,
634
+ .react-datepicker__month-year-dropdown {
635
+ background-color: #f0f0f0;
636
+ position: absolute;
637
+ width: 50%;
638
+ left: 25%;
639
+ top: 30px;
640
+ z-index: 1;
641
+ text-align: center;
642
+ border-radius: 0.3rem;
643
+ border: 1px solid #aeaeae;
644
+ }
645
+ .react-datepicker__year-dropdown:hover,
646
+ .react-datepicker__month-dropdown:hover,
647
+ .react-datepicker__month-year-dropdown:hover {
648
+ cursor: pointer;
649
+ }
650
+ .react-datepicker__year-dropdown--scrollable,
651
+ .react-datepicker__month-dropdown--scrollable,
652
+ .react-datepicker__month-year-dropdown--scrollable {
653
+ height: 150px;
654
+ overflow-y: scroll;
655
+ }
656
+
657
+ .react-datepicker__year-option,
658
+ .react-datepicker__month-option,
659
+ .react-datepicker__month-year-option {
660
+ line-height: 20px;
661
+ width: 100%;
662
+ display: block;
663
+ margin-left: auto;
664
+ margin-right: auto;
665
+ }
666
+ .react-datepicker__year-option:first-of-type,
667
+ .react-datepicker__month-option:first-of-type,
668
+ .react-datepicker__month-year-option:first-of-type {
669
+ border-top-left-radius: 0.3rem;
670
+ border-top-right-radius: 0.3rem;
671
+ }
672
+ .react-datepicker__year-option:last-of-type,
673
+ .react-datepicker__month-option:last-of-type,
674
+ .react-datepicker__month-year-option:last-of-type {
675
+ -webkit-user-select: none;
676
+ user-select: none;
677
+ border-bottom-left-radius: 0.3rem;
678
+ border-bottom-right-radius: 0.3rem;
679
+ }
680
+ .react-datepicker__year-option:hover,
681
+ .react-datepicker__month-option:hover,
682
+ .react-datepicker__month-year-option:hover {
683
+ background-color: #ccc;
684
+ }
685
+ .react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
686
+ .react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
687
+ .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
688
+ border-bottom-color: #b3b3b3;
689
+ }
690
+ .react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
691
+ .react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
692
+ .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
693
+ border-top-color: #b3b3b3;
694
+ }
695
+ .react-datepicker__year-option--selected,
696
+ .react-datepicker__month-option--selected,
697
+ .react-datepicker__month-year-option--selected {
698
+ position: absolute;
699
+ left: 15px;
700
+ }
701
+
702
+ .react-datepicker__close-icon {
703
+ cursor: pointer;
704
+ background-color: transparent;
705
+ border: 0;
706
+ outline: 0;
707
+ padding: 0 6px 0 0;
708
+ position: absolute;
709
+ top: 0;
710
+ right: 0;
711
+ height: 100%;
712
+ display: table-cell;
713
+ vertical-align: middle;
714
+ }
715
+ .react-datepicker__close-icon::after {
716
+ cursor: pointer;
717
+ background-color: #216ba5;
718
+ color: #fff;
719
+ border-radius: 50%;
720
+ height: 16px;
721
+ width: 16px;
722
+ padding: 2px;
723
+ font-size: 12px;
724
+ line-height: 1;
725
+ text-align: center;
726
+ display: table-cell;
727
+ vertical-align: middle;
728
+ content: "×";
729
+ }
730
+
731
+ .react-datepicker__today-button {
732
+ background: #f0f0f0;
733
+ border-top: 1px solid #aeaeae;
734
+ cursor: pointer;
735
+ text-align: center;
736
+ font-weight: bold;
737
+ padding: 5px 0;
738
+ clear: left;
739
+ }
740
+
741
+ .react-datepicker__portal {
742
+ position: fixed;
743
+ width: 100vw;
744
+ height: 100vh;
745
+ background-color: rgba(0, 0, 0, 0.8);
746
+ left: 0;
747
+ top: 0;
748
+ justify-content: center;
749
+ align-items: center;
750
+ display: flex;
751
+ z-index: 2147483647;
752
+ }
753
+ .react-datepicker__portal .react-datepicker__day-name,
754
+ .react-datepicker__portal .react-datepicker__day,
755
+ .react-datepicker__portal .react-datepicker__time-name {
756
+ width: 3rem;
757
+ line-height: 3rem;
758
+ }
759
+ @media (max-width: 400px), (max-height: 550px) {
760
+ .react-datepicker__portal .react-datepicker__day-name,
761
+ .react-datepicker__portal .react-datepicker__day,
762
+ .react-datepicker__portal .react-datepicker__time-name {
763
+ width: 2rem;
764
+ line-height: 2rem;
765
+ }
766
+ }
767
+ .react-datepicker__portal .react-datepicker__current-month,
768
+ .react-datepicker__portal .react-datepicker-time__header {
769
+ font-size: 1.44rem;
770
+ }
771
+
772
+ .wcf-field__doc-content{font-style:italic;font-weight:400;color:#666}
773
+ .wcf-section-heading-field .wcf-field__data--label label{font-size:15px;font-weight:600}
774
  .wcf-pro-notice{padding:20px}.wcf-pro-notice .wcf-pro-update-notice{color:#444;font-size:14px;font-weight:500}.wcf-pro-notice .wcf-pro-update-notice a{text-decoration:none}
775
+ .wcf-product-field .wcf-selection-field{display:flex;align-items:center}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__control{cursor:pointer}.wcf-product-field .wcf-selection-field .wcf__value-container .css-1g6gooi,.wcf-product-field .wcf-selection-field .wcf__value-container div:last-child{margin:0;padding:0;color:#444}.wcf-product-field .wcf-selection-field .wcf__value-container .css-1g6gooi input:focus,.wcf-product-field .wcf-selection-field .wcf__value-container div:last-child input:focus{box-shadow:none}.wcf-product-field .wcf-selection-field .wcf__control .css-1hwfws3m,.wcf-product-field .wcf-selection-field .wcf__value-container{height:36px;font-weight:400;color:#444}.wcf-product-field .wcf-selection-field .wcf-select2-input{border-color:#ddd;border-radius:2px;width:300px}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu{font-weight:400;line-height:1.1;border-radius:2px;color:#555;background-color:#fff}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__menu-list{max-height:200px}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:active,.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:hover{background-color:#f1f1f1;cursor:pointer;color:#444}.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__option--is-focused,.wcf-product-field .wcf-selection-field .wcf-select2-input .wcf__option--is-selected{cursor:pointer;background-color:#f1f1f1;color:#444}.wcf-product-field .wcf-selection-field .wcf__control{border-color:#ddd;border-radius:2px;width:300px}.wcf-product-field .wcf-selection-field .wcf__value-container,.wcf-product-field .wcf-selection-field .wcf__control .wcf__value-container--has-value,.wcf-product-field .wcf-selection-field .wcf__control .wcf__value-container--has-value .wcf__single-value{color:#444}.wcf-product-field .wcf-selection-field .wcf__control:hover,.wcf-product-field .wcf-selection-field .wcf__control:active,.wcf-product-field .wcf-selection-field .wcf__control.wcf__control--is-focused{border-color:#aaa;box-shadow:none}.wcf-product-field .wcf-selection-field label{display:inline-block}.wcf-product-field .css-2b097c-container{display:inline;margin:0 0 0 30px;width:450px}
776
+ .wcf-coupon-field .wcf-selection-field{display:flex;align-items:center}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__control{cursor:pointer}.wcf-coupon-field .wcf-selection-field .wcf__value-container .css-1g6gooi,.wcf-coupon-field .wcf-selection-field .wcf__value-container div:last-child{margin:0;padding:0;color:#444}.wcf-coupon-field .wcf-selection-field .wcf__value-container .css-1g6gooi input:focus,.wcf-coupon-field .wcf-selection-field .wcf__value-container div:last-child input:focus{box-shadow:none}.wcf-coupon-field .wcf-selection-field .wcf__control .css-1hwfws3m,.wcf-coupon-field .wcf-selection-field .wcf__value-container{height:36px;font-weight:400;color:#444}.wcf-coupon-field .wcf-selection-field .wcf-select2-input{border-color:#ddd;border-radius:2px;width:300px}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu{font-weight:400;line-height:1.1;border-radius:2px;color:#555;background-color:#fff}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__menu-list{max-height:200px}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:active,.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__menu .wcf__option:hover{background-color:#f1f1f1;cursor:pointer;color:#444}.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__option--is-focused,.wcf-coupon-field .wcf-selection-field .wcf-select2-input .wcf__option--is-selected{cursor:pointer;background-color:#f1f1f1;color:#444}.wcf-coupon-field .wcf-selection-field .wcf__control{border-color:#ddd;border-radius:2px;width:300px}.wcf-coupon-field .wcf-selection-field .wcf__value-container,.wcf-coupon-field .wcf-selection-field .wcf__control .wcf__value-container--has-value,.wcf-coupon-field .wcf-selection-field .wcf__control .wcf__value-container--has-value .wcf__single-value{color:#444}.wcf-coupon-field .wcf-selection-field .wcf__control:hover,.wcf-coupon-field .wcf-selection-field .wcf__control:active,.wcf-coupon-field .wcf-selection-field .wcf__control.wcf__control--is-focused{border-color:#aaa;box-shadow:none}.wcf-coupon-field .wcf-selection-field label{display:inline-block}.wcf-coupon-field .css-2b097c-container{display:inline;margin:0 0 0 30px;width:450px}
777
+ .wcf-tooltip-icon{position:relative}.wcf-tooltip-icon .dashicons{display:block;position:relative}.wcf-tooltip-icon .wcf-tooltip-text{visibility:hidden;background-color:#444;color:#fff;padding:5px 8px;border-radius:3px;position:absolute;z-index:1;line-height:13px;width:-moz-fit-content;width:fit-content;white-space:nowrap;left:-20px;font-size:11px;top:25px}.wcf-tooltip-icon .wcf-tooltip-text::after{content:"";margin-left:-5px;border-width:5px;border-style:solid;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #444 rgba(0,0,0,0);top:-10px;left:30px;position:absolute}.wcf-tooltip-icon:hover .wcf-tooltip-text{visibility:visible}.wcf-tooltip-icon.wcf-tooltip-position--right .wcf-tooltip-text{top:-5px;left:25px}.wcf-tooltip-icon.wcf-tooltip-position--right .wcf-tooltip-text::after{left:-6px;top:10px;transform:rotate(270deg)}
778
+ .wcf-sub-heading-field .wcf-field__data--label{padding:15px 0 0;border-bottom:1px solid #ddd;margin-bottom:20px}.wcf-sub-heading-field .wcf-field__data--label label{font-size:15px;font-weight:600}
779
+ .wcf-password-field input{font-weight:400;max-width:100%;margin:0;width:300px;height:36px;background:#fff;border-color:#ddd;padding:4px 15px;border-radius:2px}.wcf-password-field input:focus{box-shadow:none;border-color:#aaa}.wcf-password-field input.readonly,.wcf-password-field input[readonly]{background-color:#eee !important}.wcf-password-field .wcf-field__data{display:flex;align-items:center}.wcf-password-field .wcf-field__data--content{display:flex}.wcf-password-field .wcf-field__data--content .wcf-password-field__icon{cursor:pointer;width:auto;vertical-align:middle;line-height:1;padding:7px;border:1px solid #ddd;border-left:none;border-top-right-radius:2px;border-bottom-right-radius:2px}
780
+ .wcf-separator-field{border-bottom:1px solid #ddd}
781
+ .wcf-archived-step .wcf-loader{display:flex;justify-content:center;align-items:center;position:absolute;left:45%}.wcf-archived-step .wcf-dot-loader{height:20px;width:20px;border-radius:50%;background-color:#f06335;position:relative;animation:1.2s grow ease-in-out infinite}.wcf-archived-step .wcf-dot-loader--2{animation:1.2s grow ease-in-out infinite .15555s;margin:0 10px}.wcf-archived-step .wcf-dot-loader--3{animation:1.2s grow ease-in-out infinite .3s}@keyframes grow{0%,40%,100%{transform:scale(0)}40%{transform:scale(1)}}.step-overlay :not(.wcf-loader){opacity:.1;border:1px solid #ddd}
782
  #wcf-archived-button{cursor:pointer;display:block}#wcf-archived-button.is-active{margin-bottom:10px}
783
+ .wcf-skeleton-base{display:block}.wcf-skeleton{height:1.2em;display:block;background-color:rgba(0,0,0,.11)}.wcf-skeleton-pulse{animation:wcf-skeleton-keyframes-pulse 1.5s ease-in-out .5s infinite}@keyframes wcf-skeleton-keyframes-pulse{0%{opacity:1}50%{opacity:.4}100%{opacity:1}}.wcf-skeleton--wave{overflow:hidden;position:relative}.wcf-skeleton--wave::after{top:0;left:0;right:0;bottom:0;content:"";position:absolute;animation:wcf-skeleton-keyframes-wave 1.6s linear .5s infinite;transform:translateX(-100%);background:linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.04), transparent)}@keyframes wcf-skeleton-keyframes-wave{0%{transform:translateX(-100%)}60%{transform:translateX(100%)}100%{transform:translateX(100%)}}
784
+ .wcf-flow-row.is-placeholder{padding:20px 30px;border-bottom:1px solid #d7d7d7;display:flex;justify-content:space-between;align-items:center;position:relative}.wcf-flow-row.is-placeholder .wcf-flow-row__title,.wcf-flow-row.is-placeholder .wcf-flow-row__actions{width:500px;padding:15px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 40px, #ddd 80px);background-size:600px;animation:shine-lines 1.6s infinite linear}.wcf-flow-row.is-placeholder .wcf-flow-row__actions{width:250px;padding:8px}@keyframes shine-lines{0%{background-position:-100px}40%,100%{background-position:340px}}
785
+ .wcf-skeleton--text{height:auto;transform:scale(1, 0.6);margin-top:0;border-radius:4px;margin-bottom:0;transform-origin:0 60%;font-size:12px;line-height:1.5em}.wcf-skeleton--text:empty::before{content:" "}
786
  .wcf-skeleton--spacer{height:25px}
787
  .wcf-skeleton--rect{height:20px}
788
+ .wcf-skeleton--circle{border-radius:50%;width:40px;height:40px}
789
  .wcf-step-dummy{margin-bottom:20px}
790
+ .wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .title,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{padding:15px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .title{width:80%}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{width:60%}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons{width:8%;padding:15px;background-position:0 center;border-right:1px #fff solid;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right{display:flex}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-custom-filter-input{padding:15px 80px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-filters__buttons--custom-search{width:8%;padding:15px 50px;background-position:0 center;border:none;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data{padding:15px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);margin-right:15px;animation:shine-lines 1.6s infinite linear}.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title:last-child,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item:last-child,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name:last-child,.wcf-flow-analytics.is-placeholder .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data:last-child{margin-right:0}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:0}}
791
+ .wcf-flow-analytics{padding:30px}.wcf-flow-analytics .wcf-flow-analytics__revenue{display:flex;justify-content:space-between;max-width:100%;margin:0;padding:0}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block{display:inline;align-content:center;width:33.3333%;margin:0;background:#fff;box-shadow:none;border:1px solid #ddd;border-radius:0;border-right:0;position:relative;padding:30px}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block:last-child{border-right:1px solid #ddd;border-top-right-radius:3px;border-bottom-right-radius:3px}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value,.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .title{text-align:left;background:rgba(0,0,0,0);color:#444;font-weight:400;font-size:20px;margin:0;padding:0;width:100%}.wcf-flow-analytics .wcf-flow-analytics__revenue .wcf-flow-analytics__revenue--block .value{margin-top:30px}.wcf-flow-analytics .wcf-flow-analytics__filters{margin-top:50px;display:flex;flex-direction:row;align-items:center;margin-bottom:20px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons{margin:0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .button{margin:0;padding:4px 15px;border-radius:0;border:1px solid #ddd;background:#fff;color:#444}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .button:hover{background:#fafafa;color:#444}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-filters__buttons--last-today{border-radius:2px 0 0 2px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-filters__buttons--last-week{border-radius:0;border-left:0;border-right:0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-filters__buttons--last-month{border-radius:0 2px 2px 0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons button{outline:0}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-buttons .wcf-button.wcf-filter-active{background:#edeff1;background:var(--secondary-hv-color);border-color:#ddd;border-color:var(--secondary-border-color);color:#3a3a3a;box-shadow:none}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right{margin:0;text-align:left;margin-left:auto;display:flex}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-custom-filter-input{padding:3px 15px;border:1px solid #ddd;background:#fff;margin:0 5px}.wcf-flow-analytics .wcf-flow-analytics__filters .wcf-flow-analytics__filters-right .wcf-filters__buttons--custom-search{padding:3px 15px;border-radius:3px;background:#f06335;color:#fff;border:1px solid #f06335;margin:0 0 0 5px}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table{width:100%;border:1px solid #dfdfdf;border-bottom:0 solid #dfdfdf}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-header{display:flex;width:100%;padding:10px 25px;background:#f5f6f7;border-bottom:1px solid #dfdfdf;color:#444;justify-content:unset;align-items:center}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title{flex:1 1 20%}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__title,.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item{color:#444;font-weight:500}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name{flex:1 1 20%;color:#444;font-size:14px}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name .ab-test-step-name{cursor:pointer}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name .dashicons-editor-break{transform:scaleX(-1);margin-left:15px;margin-right:7px}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .step-name .wcf-archived-date{display:block;text-align:left;color:#666;margin-left:15px;font-size:13px}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-row{display:flex;width:100%;padding:25px;background:#fff;border-bottom:1px solid #dfdfdf}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-row:hover{background:#fafafa}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data,.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .header__item{flex:1 1 20%;text-align:center}.wcf-flow-analytics .wcf-flow-analytics__report .wcf-flow-analytics__report-table .table-data{color:#000}.wcf-flow-analytics .wcf-flow-analytics__reset-button{display:flex;justify-content:space-between;margin-top:15px;align-items:center}.wcf-analytics-no-step-notice{padding:20px 40px;font-size:15px;color:#444;font-weight:400}
792
+ a.wcf-nav-item{background:#f7f8fa;box-shadow:none;outline:none;display:block;border-bottom:1px solid #dedede;color:#444;cursor:pointer;padding:20px;text-decoration:none;font-weight:400}a.wcf-nav-item:hover{background:#e4e4e7;color:#444}a.wcf-nav-item---active{background:#e4e4e7;color:#444}
793
+ .wcf-nav-content{color:#444;font-size:14px;background:#fafafa;padding:0;display:none;line-height:34px;text-align:left}.wcf-nav-content table{width:100%}.wcf-nav-content table .wcf-section-heading-field:first-child .wcf-field__data--label{padding-top:10px}.wcf-nav-content table th{padding:10px 0;font-weight:400}.wcf-nav-content---active{display:block}.wcf-nav-content---active h3{margin:5px 0;line-height:1;padding:0 10px 20px;font-weight:500;color:#444}.wcf-nav-content---active .wcf-nav-content__header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #ddd;margin-bottom:20px}.wcf-nav-content---active .wcf-nav-content__header h3.wcf-nav-content__header--title,.wcf-nav-content---active .wcf-nav-content__header .wcf-nav-content__header--button{width:50%}.wcf-nav-content---active .wcf-nav-content__header .wcf-nav-content__header--button p,.wcf-nav-content---active .wcf-nav-content__header h3.wcf-nav-content__header--title{margin:0}.wcf-nav-content---active .wcf-nav-content__header .wcf-nav-content__header--button{padding:0 10px 10px;display:flex;justify-content:flex-end}.wcf-field-section-heading{color:#333;padding:10px 0 5px;text-decoration:none;font-size:15px;font-weight:600}.wcf-pro-update-notice{font-style:italic}
794
+ .wcf-settings-nav{display:flex}.wcf-settings-nav__tabs{width:250px;background:#f7f8fa;padding:15px}.wcf-settings-nav__tab{padding:0 0 10px 0}.wcf-settings-nav__tab:last-child{padding:0}.wcf-settings-nav__content{padding:25px;background:#fff;width:calc(100% - 250px)}
795
+ .wcf-edit-flow-setting{font-size:14px;padding:30px;min-height:750px}.wcf-edit-flow-setting form{position:relative;width:100%}.wcf-edit-flow-setting form .wcf-vertical-nav p{color:#444;font-size:14px;font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav table{min-width:200px;height:34px;line-height:34px;text-align:left}.wcf-edit-flow-setting form .wcf-vertical-nav table th{padding:15px 10px 15px 0}.wcf-edit-flow-setting form .wcf-vertical-nav table .wcf-field__desc{color:#666;line-height:1.5;margin-top:15px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu a{display:block;border-bottom:1px solid #eee;color:#5f5f5f;cursor:pointer;padding:23px;text-decoration:none;font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu a:hover{color:#434343;background:#e4e4e7;box-shadow:none;font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu .wcf-setting-icon{margin:7px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__menu{width:20%;background:#f7f8fa;float:unset}.wcf-edit-flow-setting form .wcf-vertical-nav a.wcf-nav-item---active{color:#434343;background:#e4e4e7;box-shadow:none}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content{width:80%;padding:20px 30px;background:#fafafa;border:1px solid #eee}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content{background:rgba(0,0,0,0);color:#444;padding:0;font-size:14px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content .wcf-field__data--label label,.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content .wcf-selection-field label{width:300px;line-height:1.1;padding-right:20px;font-weight:500;display:inline-block;font-size:14px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content label{font-weight:400}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content input[type=text],.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content select{font-weight:400;margin-left:20px}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-submit-button{text-align:left}.wcf-edit-flow-setting form .wcf-vertical-nav .wcf-vertical-nav__content .wcf-nav-content---active h3{margin:5px 0;line-height:1;padding:0 10px 10px}.wcf-edit-flow-setting form .wcf-vertical-nav h3{font-weight:500;color:#444}
796
+ .wcf-steps-page-wrapper{padding:30px;border-top:1px solid #ededed;margin-top:-1px}.wcf-steps-page-wrapper .wcf-list-steps{margin-bottom:15px}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step{border:1px dashed #cdcdcd;background:#f9f9f9;color:#444;padding:20px;text-align:center;display:block;width:100%;transition:all 100ms ease-in;font-weight:400}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover{background:rgba(0,0,0,0);border-color:#aaa;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover .dashicons-plus::before{background:rgba(0,0,0,0);color:#016087}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step:hover .wcf-create-step--text{border-color:#006799;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step--text{line-height:1;margin-left:7px;font-size:17px;background:rgba(0,0,0,0)}.wcf-no-step-notice{padding:20px 0 40px;font-size:15px;color:#444;font-weight:400}
797
+ .wcf-steps-header{display:flex;flex-flow:row;align-items:center;justify-content:space-between;margin:0 0 25px 0}.wcf-steps-header .wcf-steps-header--title{font-size:20px;line-height:40px;color:#444;font-weight:500}.wcf-steps-header .wcf-step__title--editable .new-flow-title{background:#fafafa;border-color:#ccc;padding:2px 15px;line-height:2}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit::before{padding:5px;font-size:18px;text-decoration:none;background:#eee;display:inline-block;border-radius:100%}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a{text-decoration:none;vertical-align:middle;margin-left:10px}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:focus,.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:hover{outline:none;box-shadow:none}.wcf-steps-header .wcf-create-step{display:flex;align-items:center;justify-content:space-between}.wcf-steps-header .wcf-create-step .dashicons{height:-moz-fit-content;height:fit-content;width:-moz-fit-content;width:fit-content;font-size:15px;margin-right:10px}
798
+ .wcf-steps-chart{border:1px solid #a5a5a5;height:100vh;max-height:70%}.wcf-steps-chart.wcf-fullscreen{position:fixed;max-height:unset;width:100%;left:0;top:0;z-index:999999}.wcf-steps-chart.wcf-fullscreen .wcf-steps-chart__exit-screen-msg{position:absolute;left:44%;top:20px;padding:10px;z-index:4;text-transform:none;background-color:#636363;color:#fff;text-align:center}.wcf-steps-chart .react-flow .react-flow__controls .wcf-full-screen,.wcf-steps-chart .react-flow .react-flow__controls .wcf-exit-full-screen{font-size:13px;height:unset}.wcf-steps-chart .react-flow__renderer.react-flow__zoompane{cursor:move}.wcf-steps-chart.loading{background-color:#f4f4f4;position:relative}.wcf-steps-chart.loading .wcf-step-chart-loader{flex:0 0 50%;position:absolute;top:50%;left:49%;width:300px;height:300px;display:flex}.wcf-steps-chart.loading .wcf-step-chart-loader .dot-loader{height:20px;width:20px;border-radius:50%;background-color:#f44336;position:relative;animation:1.2s grow ease-in-out infinite}.wcf-steps-chart.loading .wcf-step-chart-loader .dot-loader--2{animation:1.2s grow ease-in-out infinite .15555s;margin:0 20px}.wcf-steps-chart.loading .wcf-step-chart-loader .dot-loader--3{animation:1.2s grow ease-in-out infinite .3s}.wcf-flow-overview-screen{overflow:hidden}
799
+ .wcf-steps-chart .wcf-custom-node-design{position:relative}.wcf-steps-chart .wcf-node-actions{visibility:hidden}.wcf-steps-chart .wcf-node-action-delete{visibility:hidden}.wcf-steps-chart .react-flow__node-offer .react-flow__handle-right-a{top:8px;right:-4px;transform:none}.wcf-steps-chart .react-flow__node-offer .react-flow__handle-right-b{top:auto;bottom:8px;right:-4px;transform:none}.wcf-steps-chart .react-flow__node-checkout,.wcf-steps-chart .react-flow__node-landing,.wcf-steps-chart .react-flow__node-offer,.wcf-steps-chart .react-flow__node-thankyou,.wcf-steps-chart .react-flow__node-optin{font-size:12px;color:#222;text-align:center}.wcf-steps-chart .react-flow__node-checkout .wcf-handle-left,.wcf-steps-chart .react-flow__node-checkout .wcf-handle-right,.wcf-steps-chart .react-flow__node-landing .wcf-handle-left,.wcf-steps-chart .react-flow__node-landing .wcf-handle-right,.wcf-steps-chart .react-flow__node-offer .wcf-handle-left,.wcf-steps-chart .react-flow__node-offer .wcf-handle-right,.wcf-steps-chart .react-flow__node-thankyou .wcf-handle-left,.wcf-steps-chart .react-flow__node-thankyou .wcf-handle-right,.wcf-steps-chart .react-flow__node-optin .wcf-handle-left,.wcf-steps-chart .react-flow__node-optin .wcf-handle-right{top:45%}.wcf-steps-chart .react-flow__node-checkout .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-landing .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-offer .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-thankyou .wcf-custom-node-label,.wcf-steps-chart .react-flow__node-optin .wcf-custom-node-label{font-size:18px;text-align:center;padding:20px}.wcf-steps-chart .react-flow__node-checkout .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-landing .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-offer .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-thankyou .wcf-custom-node-design,.wcf-steps-chart .react-flow__node-optin .wcf-custom-node-design{border:1px solid #c2c2c2;border-radius:10px;background-repeat:no-repeat;width:200px;height:259px}.wcf-steps-chart .react-flow__node-conditional{font-size:12px;text-align:center}.wcf-steps-chart .react-flow__node-conditional .wcf-handle-left{top:42%}.wcf-steps-chart .react-flow__node-conditional .wcf-custom-node-label{font-size:18px;text-align:center;padding:20px 0}.wcf-steps-chart .react-flow__node-conditional .wcf-custom-node-design{border:1px solid #c2c2c2;border-radius:10px;background-repeat:no-repeat;height:137px;width:117px;position:relative}.wcf-steps-chart .react-flow__node-conditional .wcf-custom-node-design .wcf-node-actions{visibility:hidden}.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper{padding:10px;margin:-11px;border:1px solid #ec4a8e;position:relative}.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .wcf-rect,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .wcf-rect{height:10px;width:10px;position:absolute;border:1.5px solid red;background:#fff;border-radius:3px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .top-left,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .top-left{left:-5px;top:-5px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .top-right,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .top-right{right:-5px;top:-5px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .botton-left,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .botton-left{left:-5px;top:274px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-offer.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-optin.selected .wcf-custom-node-wrapper .bottom-right,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-custom-node-wrapper .bottom-right{right:-5px;top:274px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions{position:absolute;background:#fff;visibility:visible;left:35px;border-radius:2px;top:-75px;display:flex;padding:2px 5px 2px 5px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a{text-decoration:none;cursor:pointer;padding:10px;display:block}.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a .dashicons,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a .dashicons{margin-bottom:5px;color:#484848;font-size:25px}.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions a :focus,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions a :focus{color:#2271b1}.wcf-steps-chart .react-flow__node-landing.selected .wcf-node-actions::before,.wcf-steps-chart .react-flow__node-checkout.selected .wcf-node-actions::before,.wcf-steps-chart .react-flow__node-offer.selected .wcf-node-actions::before,.wcf-steps-chart .react-flow__node-optin.selected .wcf-node-actions::before,.wcf-steps-chart .react-flow__node-thankyou.selected .wcf-node-actions::before{content:"";width:20px;height:20px;border:1px solid #f4f4f4;top:36px;position:absolute;transform:rotate(45deg);border-left:none;border-top:none;left:56px;background-color:#fff}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper{padding:10px;margin:-11px;border:1px solid #ec4a8e;position:relative}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .wcf-rect{height:10px;width:10px;position:absolute;border:1.5px solid red;background:#fff;border-radius:3px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .top-left{left:-5px;top:-5px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .top-right{right:-5px;top:-5px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .botton-left{left:-5px;top:152px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-custom-node-wrapper .bottom-right{right:-5px;top:152px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions{position:absolute;background:#fff;visibility:visible;left:37px;border-radius:2px;top:-67px;display:flex;padding:2px 5px 2px 5px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a{text-decoration:none;cursor:pointer;padding:10px;display:block}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a .dashicons{margin:0 0 0 -1px;color:#484848;font-size:25px;line-height:20px;display:block;width:25px;height:20px}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a :hover,.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions a :focus{color:#2271b1}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-action-delete{visibility:hidden}.wcf-steps-chart .react-flow__node-conditional.selected .wcf-node-actions::before{content:"";width:20px;height:20px;border:1px solid #f4f4f4;top:29px;position:absolute;transform:rotate(45deg);border-left:none;border-top:none;left:16px;background-color:#fff;z-index:-1}
800
  .wcf-steps-chart .react-flow__edge-path{stroke:#2271b1;stroke-width:2px}
801
+ .wcf-step-library__item{padding:5em 0;flex:1;font-size:22px;text-align:center;background:rgba(0,0,0,0);margin:0 1em;border:5px dashed rgba(0,0,0,.1);position:relative;height:250px;display:flex;flex-direction:column;align-items:center;justify-content:center}.wcf-step-library__item:first-child:last-child{max-width:450px;margin:0 auto}.wcf-step-library__item .wcf-notice{border:none;background:rgba(0,0,0,0);box-shadow:none;margin:0}
802
  .wcf-create-step__dropdown-list{margin-bottom:.5em}
803
+ .wcf-learn-how{font-size:1rem;margin-top:1em}.wcf-learn-how a{text-decoration:none}.wcf-learn-how i{font-size:initial;vertical-align:middle}.wcf-button.disabled{pointer-events:none;background:rgba(241,99,52,.7490196078)}
804
+ .wcf-spinner{float:none;margin:0;animation:spin 2s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
805
+ .wcf-activate-link{text-decoration:none;font-size:14px}.wcf-activate-link .wcf-icon{font-size:initial;margin-left:2px;vertical-align:middle}
806
+ .wcf-name-your-step{position:fixed;left:0;right:0;top:0;bottom:0;z-index:9999}.wcf-name-your-step.show{display:block}.wcf-name-your-step.hide{display:none}.wcf-name-your-step .wcf-name-your-step__inner{border-radius:2px;margin:30vh auto 0;background:#fff;position:relative;max-width:550px;width:500px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close{position:absolute;right:0;cursor:pointer;padding:15px;top:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close .dashicons{color:#aaa}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close .dashicons:hover{color:#9a9a9a}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header{display:flex;justify-content:space-between;align-items:center;position:relative;margin:0;padding:0;width:100%;border-bottom:1px solid #ddd}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__title .wcf-name-your-step-popup__title{text-transform:capitalize;font-size:16px;margin:0;color:#444;font-weight:500;line-height:1;padding-left:25px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__title .wcf-name-your-step-popup__title .cartflows-logo-icon{font-size:14px;margin-right:10px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu{padding:15px;border-left:1px solid #ddd;position:relative;color:#ccc;cursor:pointer;display:inline-block}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu::after{font-size:25px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu:hover{color:#aaa}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header h3{margin-top:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body{background:#f5f5f5;display:block;padding:30px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body input{width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__text-field-wrap{margin-right:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer{text-align:right;margin-top:10px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-step-import__message{display:inline-block;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-step-import__message p{font-size:18px;color:#444;font-weight:400}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message{display:inline-block;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message p{font-size:18px;color:#444;font-weight:400}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message,.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__button{text-align:center}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer button a{color:#fff}.wcf-name-your-step .wcf-name-your-step__overlay{position:absolute;left:0;right:0;top:0;bottom:0;background:rgba(0,0,0,.7294117647)}
807
+ .wcf-remote-filters{text-align:center;padding:15px}.wcf-remote-filters .filter-links{display:inline-block;margin:0}.wcf-remote-filters .filter-links li{display:inline-block;margin:0}.wcf-remote-filters .filter-links li:first-child .step-type-filter-item{margin-left:0}.wcf-remote-filters .filter-links li .step-type-filter-item{border-bottom:0;text-decoration:none;margin:0 10px;font-weight:400;font-size:14px;color:#555;text-transform:capitalize;padding:10px}.wcf-remote-filters .filter-links li .step-type-filter-item.current{color:#f06335}.wcf-remote-filters .filter-links li .step-type-filter-item:hover{color:#000}.wcf-item{width:25%;margin-bottom:40px;float:left;padding-left:20px;padding-right:20px;position:relative;transition:all .2s ease-in-out}.wcf-item__type{padding:3px 10px;color:#fff;border-radius:2px;position:absolute;top:-6px;z-index:2;font-weight:700;font-size:10px;text-transform:uppercase;letter-spacing:.3px;right:14px}.wcf-item__inner{background:#fff;border:1px solid #ddd;border-radius:3px;display:block;position:relative;z-index:1;transition:all .2s ease-in-out;overflow:hidden;cursor:pointer}.wcf-item__inner:hover{transform:translateY(-1px)}.wcf-item__inner:hover .wcf-item__thumbnail-wrap{transform:scale(1.02);opacity:.7}.wcf-item__inner:hover .wcf-item__view{opacity:1}.wcf-item__inner:hover .wcf-step-preview-wrap{opacity:1}.wcf-item__inner .wcf-step-preview-wrap{position:absolute;text-align:center;z-index:15;left:0;right:0;top:50%;transform:translateY(-50%);opacity:0}.wcf-item__inner .wcf-step-preview{background:rgba(0,0,0,.7);color:#fff;font-size:14px;text-shadow:0 1px 0 rgba(0,0,0,.6);font-weight:600;border-radius:3px;padding:7px 18px;line-height:1.5px;text-decoration:none}.wcf-item__inner .wcf-step-preview .dashicons{margin-left:2px}.wcf-item__type{background:#f16334}.wcf-item__thumbnail-wrap{padding:8px;transition:all ease-in-out .2s}.wcf-item__thumbnail{background:#fff;border-bottom:1px solid #ededed;position:relative;overflow:hidden;max-height:225px}.wcf-item__thumbnail-image{width:100%}.wcf-item__view{background:#fff;border-top:none;color:#263238;display:block;height:auto;opacity:0;padding:10px;position:absolute;bottom:0;text-align:center;z-index:15;transition:all .2s ease-in-out;left:0;right:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.wcf-item__btn{display:inline-block;padding:7px 22px;background:#f16334;font-size:13px;text-shadow:none;font-weight:600;color:#fff;border-radius:2px;border:none;cursor:pointer}.wcf-item__heading-wrap{padding:10px 15px;text-align:center}.wcf-item__heading{font-size:14px;margin-bottom:3px;color:#2f3f50;font-weight:500;width:100%}
808
+ .wcf-flow-importer{margin-top:1em}.wcf-step-importer__list{margin-top:2em}.wcf-step-importer__list .wcf-step-row:last-child{border:0}.wcf-item__inner--active{border-color:#5b9dd9;border-radius:2px}.wcf-step-library .wcf-items-list{margin-left:-20px;margin-right:-20px;flex-wrap:wrap;padding:0;justify-content:flex-start;display:flex}.wcf-step-library .wcf-step-library__step-actions{background:#fff;display:flex;justify-content:space-between;padding:0 30px;min-height:50px;border-bottom:1px solid #eee;align-items:center;position:relative}.wcf-step-library .wcf-step-library__step-actions .wcf-button{min-height:auto;margin-right:30px}.wcf-step-library .wcf-step-library__step-actions h3{font-weight:500;color:#444}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper{position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;left:0;right:0}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links{display:inline-block;margin:0;padding:0}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li{display:inline-block}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .get-started-step-item{padding:10px 22px 15px;color:#444;text-decoration:none;border:none;align-items:center;font-weight:400;font-size:14px;justify-content:center;min-width:100px;margin:0 0 -6px 0;width:unset;position:relative}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .get-started-step-item:hover{color:#f06335;border-bottom:2px solid #f06335}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .current{font-weight:400;color:#f06335;border-bottom:2px solid #f06335}.wcf-step-library .wcf-remote-content{padding:30px;background:#fff;width:100%;position:relative;min-height:750px}.wcf-step-library .wcf-remote-content .wcf-ready-templates{display:none}.wcf-step-library .wcf-remote-content .wcf-ready-templates.current{display:block}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch{display:none}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch.current{display:flex;min-height:500px;align-items:center}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item{max-width:600px;border:4px dashed #ddd;border-radius:2px;padding:unset;height:350px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select{width:100%;display:flex;flex-wrap:wrap;padding:20px 30px;align-items:center;justify-content:center}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__dropdown-list{margin:0 10px 0 0}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__dropdown-list select{width:200px;height:36px;margin:0}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-learn-how{width:100%;margin-top:30px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__notice-wrap{width:100%}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__notice-wrap .wcf-create-step__notice p{font-size:14px;margin:0 0 20px;color:#444}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item--scratch h3{font-size:22px;font-weight:500;color:#444;margin:0 0 10px;width:100%}
809
+ .wcf-steps-page-wrapper{padding:30px;border-top:1px solid #ededed;margin-top:-1px}.wcf-steps-page-wrapper .wcf-list-steps{margin-bottom:15px}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step{border:1px dashed #cdcdcd;background:#f9f9f9;color:#444;padding:20px;text-align:center;display:block;width:100%;transition:all 100ms ease-in;font-weight:400}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover{background:rgba(0,0,0,0);border-color:#aaa;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step:hover .dashicons-plus::before{background:rgba(0,0,0,0);color:#016087}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step:hover .wcf-create-step--text{border-color:#006799;color:#006799}.wcf-steps-page-wrapper .wcf-step-footer .wcf-create-step .wcf-create-step--text{line-height:1;margin-left:7px;font-size:17px;background:rgba(0,0,0,0)}.wcf-no-step-notice{padding:20px 0 40px;font-size:15px;color:#444;font-weight:400}
810
+ .wcf-steps-header{display:flex;flex-flow:row;align-items:center;justify-content:space-between;margin:0 0 25px 0}.wcf-steps-header .wcf-steps-header--title{font-size:20px;line-height:40px;color:#444;font-weight:500}.wcf-steps-header .wcf-step__title--editable .new-flow-title{background:#fafafa;border-color:#ccc;padding:2px 15px;line-height:2}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit::before{padding:5px;font-size:18px;text-decoration:none;background:#eee;display:inline-block;border-radius:100%}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a{text-decoration:none;vertical-align:middle;margin-left:10px}.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:focus,.wcf-steps-header .wcf-step__title--editable .wcf-steps-header__title--buttons a:hover{outline:none;box-shadow:none}.wcf-steps-header .wcf-create-step{display:flex;align-items:center;justify-content:space-between}.wcf-steps-header .wcf-create-step .dashicons{height:-moz-fit-content;height:fit-content;width:-moz-fit-content;width:fit-content;font-size:15px;margin-right:10px}
811
+ .wcf-step-wrap{margin-bottom:20px}.invalid-step{pointer-events:none}.invalid-step .wcf-step .wcf-step__col-tags .wcf-flow-badge{color:red}.wcf-store-checkout .wcf-step-delete{pointer-events:all}.wcf-store-checkout .wcf-step__action-menu{pointer-events:all}
812
+ .wcf-list-steps .sortable-chosen{background:#fafafb}.wcf-list-steps .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-list-steps .sortable-chosen .wcf-step{border:1px dashed #aaa;background:#fafafb;border-left:4px solid #ddd}.wcf-list-steps .wcf-step{background:#fff;border:1px solid #ddd;border-radius:2px;border-left-width:4px;box-sizing:border-box;box-shadow:none;padding:20px;display:flex;justify-content:space-between;align-items:center;position:relative;cursor:grab}.wcf-list-steps .wcf-step.wcf-step__no-product{border-left:4px solid #f06335}.wcf-list-steps .wcf-step .wcf-step__title a{text-decoration:none}.wcf-list-steps .wcf-step .wcf-step__actions .wcf-step__basic-action-btns .dashicons,.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown .dashicons{margin-right:5px;font-size:18px;vertical-align:middle}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown a{padding:15px;background:#fff;text-align:left;text-decoration:none;display:block;border-top:1px solid rgba(230,230,230,.5);height:auto;color:#666;font-size:14px;transition:all linear 200ms}.wcf-list-steps .wcf-step .wcf-actions-menu__dropdown a:hover{background:#fafafa;color:#1e8cbe}.wcf-list-steps .wcf-step .wcf-loader{display:flex;justify-content:center;align-items:center;position:absolute;left:45%}.wcf-list-steps .wcf-step .wcf-dot-loader{height:20px;width:20px;border-radius:50%;background-color:#f06335;position:relative;animation:1.2s grow ease-in-out infinite}.wcf-list-steps .wcf-step .wcf-dot-loader--2{animation:1.2s grow ease-in-out infinite .15555s;margin:0 10px}.wcf-list-steps .wcf-step .wcf-dot-loader--3{animation:1.2s grow ease-in-out infinite .3s}@keyframes grow{0%,40%,100%{transform:scale(0)}40%{transform:scale(1)}}.wcf-list-steps .step-overlay :not(.wcf-loader){opacity:.1}.wcf-list-steps .wcf-step-wrap.sortable-chosen.sortable-ghost .wcf-step{cursor:grabbing}.wcf-step__col-title{width:50%}.wcf-step__title-text{margin-left:10px}.wcf-step__handle{cursor:move}.wcf-step__invalid-step{touch-action:none;pointer-events:none}.wcf-global-checkout-error-badge{color:#fff;background-color:#d54e21;padding:.3em .6em .3em;border-radius:0;line-height:.7em;margin-left:10px;text-align:center;vertical-align:middle;font-size:.75em;font-weight:400}.wcf-flow-badge__invalid-step{color:red}.wcf-no-product-badge{color:#fff;background-color:#f16334;padding:.3em .6em .3em;border-radius:0;line-height:.7em;margin-left:10px;text-align:center;vertical-align:middle;font-size:.75em;font-weight:400}.wcf-global-checkout-badge{color:#fff;background-color:#0072a7;padding:.3em .6em .3em;font-size:.7em;font-weight:600;border-radius:0;line-height:.7em;margin-left:10px;text-align:center;vertical-align:middle}.wcf-step__action-btns{display:flex;align-items:center}.wcf-step__action-btns .wcf-step__action-btn{font-size:1em;line-height:.9em;vertical-align:middle;text-align:center;margin-right:15px;text-decoration:none}.wcf-step__action-btns .wcf-step__action-btn.wcf-pro{opacity:.65;cursor:not-allowed}.wcf-step__action-btns .wcf-step__action-menu{position:relative;color:#aaa;cursor:pointer;display:inline-block;top:4px;width:13px}.wcf-step__action-btns .wcf-step__action-menu:hover{color:#333}.wcf-step__action-btns .wcf-step__action-menu .dashicons-ellipsis{font-size:18px;transform:rotate(90deg);vertical-align:super}.wcf-step-badge,.wcf-flow-badge{font-weight:400;color:#000;background-color:#e3e4e8;padding:.3em .6em .3em;font-size:.75em;border-radius:0;line-height:.7em;margin-left:10px;text-align:center;vertical-align:middle;text-transform:capitalize}.wcf-invalid-sequence-badge{color:#fff;background-color:#d54e21;border-color:#d6e9c6}.wcf-yes-next-badge{color:#3c763d;background-color:#dff0d8}.wcf-no-next-badge{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.wcf-step__col-tags .wcf-flow-badge{margin-left:0;width:75px;display:inline-block;padding:8px 0;font-weight:500;color:#000;background-color:#e3e4e8;font-size:.9em;border-radius:2px;line-height:.7em;border:1px solid rgba(67,67,67,.0666666667);text-align:center;vertical-align:middle;text-transform:capitalize}.wcf-step__col-tags .wcf-step-badge,.wcf-step__col-tags .wcf-flow-badge{margin-left:0}.wcf-step:hover{border-color:#e4e4e4;box-shadow:0 1px 4px 0 rgba(32,33,36,.15)}
813
+ .wcf-step-library__item{padding:5em 0;flex:1;font-size:22px;text-align:center;background:rgba(0,0,0,0);margin:0 1em;border:5px dashed rgba(0,0,0,.1);position:relative;height:250px;display:flex;flex-direction:column;align-items:center;justify-content:center}.wcf-step-library__item:first-child:last-child{max-width:450px;margin:0 auto}.wcf-step-library__item .wcf-notice{border:none;background:rgba(0,0,0,0);box-shadow:none;margin:0}
814
+ .wcf-create-step__dropdown-list{margin-bottom:.5em}
815
+ .wcf-learn-how{font-size:1rem;margin-top:1em}.wcf-learn-how a{text-decoration:none}.wcf-learn-how i{font-size:initial;vertical-align:middle}.wcf-button.disabled{pointer-events:none;background:rgba(241,99,52,.7490196078)}
816
+ .wcf-name-your-step{position:fixed;left:0;right:0;top:0;bottom:0;z-index:9999}.wcf-name-your-step.show{display:block}.wcf-name-your-step.hide{display:none}.wcf-name-your-step .wcf-name-your-step__inner{border-radius:2px;margin:30vh auto 0;background:#fff;position:relative;max-width:550px;width:500px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close{position:absolute;right:0;cursor:pointer;padding:15px;top:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close .dashicons{color:#aaa}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__close .dashicons:hover{color:#9a9a9a}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header{display:flex;justify-content:space-between;align-items:center;position:relative;margin:0;padding:0;width:100%;border-bottom:1px solid #ddd}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__title .wcf-name-your-step-popup__title{text-transform:capitalize;font-size:16px;margin:0;color:#444;font-weight:500;line-height:1;padding-left:25px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__title .wcf-name-your-step-popup__title .cartflows-logo-icon{font-size:14px;margin-right:10px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu{padding:15px;border-left:1px solid #ddd;position:relative;color:#ccc;cursor:pointer;display:inline-block}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu::after{font-size:25px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header .wcf-name-your-step__menu:hover{color:#aaa}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__header h3{margin-top:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body{background:#f5f5f5;display:block;padding:30px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body input{width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__text-field-wrap{margin-right:0}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer{text-align:right;margin-top:10px}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-step-import__message{display:inline-block;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-step-import__message p{font-size:18px;color:#444;font-weight:400}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message{display:inline-block;width:100%}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message p{font-size:18px;color:#444;font-weight:400}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__message,.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer .wcf-pro--required .wcf-flow-import__button{text-align:center}.wcf-name-your-step .wcf-name-your-step__inner .wcf-name-your-step__body .wcf-name-your-step__footer button a{color:#fff}.wcf-name-your-step .wcf-name-your-step__overlay{position:absolute;left:0;right:0;top:0;bottom:0;background:rgba(0,0,0,.7294117647)}
817
+ .wcf-remote-filters{text-align:center;padding:15px}.wcf-remote-filters .filter-links{display:inline-block;margin:0}.wcf-remote-filters .filter-links li{display:inline-block;margin:0}.wcf-remote-filters .filter-links li:first-child .step-type-filter-item{margin-left:0}.wcf-remote-filters .filter-links li .step-type-filter-item{border-bottom:0;text-decoration:none;margin:0 10px;font-weight:400;font-size:14px;color:#555;text-transform:capitalize;padding:10px}.wcf-remote-filters .filter-links li .step-type-filter-item.current{color:#f06335}.wcf-remote-filters .filter-links li .step-type-filter-item:hover{color:#000}.wcf-item{width:25%;margin-bottom:40px;float:left;padding-left:20px;padding-right:20px;position:relative;transition:all .2s ease-in-out}.wcf-item__type{padding:3px 10px;color:#fff;border-radius:2px;position:absolute;top:-6px;z-index:2;font-weight:700;font-size:10px;text-transform:uppercase;letter-spacing:.3px;right:14px}.wcf-item__inner{background:#fff;border:1px solid #ddd;border-radius:3px;display:block;position:relative;z-index:1;transition:all .2s ease-in-out;overflow:hidden;cursor:pointer}.wcf-item__inner:hover{transform:translateY(-1px)}.wcf-item__inner:hover .wcf-item__thumbnail-wrap{transform:scale(1.02);opacity:.7}.wcf-item__inner:hover .wcf-item__view{opacity:1}.wcf-item__inner:hover .wcf-step-preview-wrap{opacity:1}.wcf-item__inner .wcf-step-preview-wrap{position:absolute;text-align:center;z-index:15;left:0;right:0;top:50%;transform:translateY(-50%);opacity:0}.wcf-item__inner .wcf-step-preview{background:rgba(0,0,0,.7);color:#fff;font-size:14px;text-shadow:0 1px 0 rgba(0,0,0,.6);font-weight:600;border-radius:3px;padding:7px 18px;line-height:1.5px;text-decoration:none}.wcf-item__inner .wcf-step-preview .dashicons{margin-left:2px}.wcf-item__type{background:#f16334}.wcf-item__thumbnail-wrap{padding:8px;transition:all ease-in-out .2s}.wcf-item__thumbnail{background:#fff;border-bottom:1px solid #ededed;position:relative;overflow:hidden;max-height:225px}.wcf-item__thumbnail-image{width:100%}.wcf-item__view{background:#fff;border-top:none;color:#263238;display:block;height:auto;opacity:0;padding:10px;position:absolute;bottom:0;text-align:center;z-index:15;transition:all .2s ease-in-out;left:0;right:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.wcf-item__btn{display:inline-block;padding:7px 22px;background:#f16334;font-size:13px;text-shadow:none;font-weight:600;color:#fff;border-radius:2px;border:none;cursor:pointer}.wcf-item__heading-wrap{padding:10px 15px;text-align:center}.wcf-item__heading{font-size:14px;margin-bottom:3px;color:#2f3f50;font-weight:500;width:100%}
818
+ .wcf-name-your-flow{position:fixed;left:0;right:0;top:0;bottom:0;z-index:9999}.wcf-name-your-flow.show{display:block}.wcf-name-your-flow.hide{display:none}.wcf-name-your-flow .wcf-name-your-flow__inner{border-radius:2px;margin:30vh auto 0;max-width:600px;background:#fff;position:relative;width:550px}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__close{position:absolute;right:0;cursor:pointer;padding:15px;top:0}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__close .dashicons{color:#aaa}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__close .dashicons:hover{color:#9a9a9a}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header{display:flex;justify-content:space-between;align-items:center;position:relative;margin:0;padding:0;width:100%;border-bottom:1px solid #ddd}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header .wcf-name-your-flow__title .wcf-name-your-flow-popup__title{color:#444;text-transform:capitalize;font-size:16px;margin:0;font-weight:500;line-height:1;padding-left:25px}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header .wcf-name-your-flow__title .wcf-name-your-flow-popup__title .cartflows-logo-icon{font-size:14px;margin-right:10px}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header .wcf-name-your-flow__menu{padding:15px;border-left:1px solid #ddd;position:relative;color:#ccc;cursor:pointer;display:inline-block}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header .wcf-name-your-flow__menu::after{font-size:25px}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header .wcf-name-your-flow__menu:hover{color:#aaa}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__header h3{margin-top:0}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__body{background:#f5f5f5;display:block;padding:30px}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__body input{width:100%}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__body .wcf-name-your-flow__footer{margin-top:10px}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__footer .wcf-flow-import__button{text-align:right}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__footer .wcf-store-checkout-import__button{display:inline-block}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__footer .wcf-pro--required .wcf-flow-import__message{display:inline-block;width:100%}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__footer .wcf-pro--required .wcf-flow-import__message p{font-size:18px;color:#444;font-weight:400;margin-top:0}.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__footer .wcf-pro--required .wcf-flow-import__message,.wcf-name-your-flow .wcf-name-your-flow__inner .wcf-name-your-flow__footer .wcf-pro--required .wcf-flow-import__button{text-align:center}.wcf-name-your-flow .wcf-name-your-flow__overlay{position:absolute;left:0;right:0;top:0;bottom:0;background:rgba(0,0,0,.7294117647)}.wcf-name-your-flow .wcf-upgrade-pro .wcf-flow-import__message p{margin-top:0}.wcf-name-your-flow .wcf-upgrade-pro a.wcf-button{line-height:30px}
819
+ .wcf-flow-importer{margin-top:1em}.wcf-step-importer__list{margin-top:2em}.wcf-step-importer__list .wcf-step-row:last-child{border:0}.wcf-item__inner--active{border-color:#5b9dd9;border-radius:2px}.wcf-step-library .wcf-items-list{margin-left:-20px;margin-right:-20px;flex-wrap:wrap;padding:0;justify-content:flex-start;display:flex}.wcf-step-library .wcf-step-library__step-actions{background:#fff;display:flex;justify-content:space-between;padding:0 30px;min-height:50px;border-bottom:1px solid #eee;align-items:center;position:relative}.wcf-step-library .wcf-step-library__step-actions .wcf-button{min-height:auto;margin-right:30px}.wcf-step-library .wcf-step-library__step-actions h3{font-weight:500;color:#444}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper{position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;left:0;right:0}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links{display:inline-block;margin:0;padding:0}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li{display:inline-block}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .get-started-step-item{padding:10px 22px 15px;color:#444;text-decoration:none;border:none;align-items:center;font-weight:400;font-size:14px;justify-content:center;min-width:100px;margin:0 0 -6px 0;width:unset;position:relative}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .get-started-step-item:hover{color:#f06335;border-bottom:2px solid #f06335}.wcf-step-library .wcf-step-library__step-actions .wcf-tab-wrapper .filter-links li .current{font-weight:400;color:#f06335;border-bottom:2px solid #f06335}.wcf-step-library .wcf-remote-content{padding:30px;background:#fff;width:100%;position:relative;min-height:750px}.wcf-step-library .wcf-remote-content .wcf-ready-templates{display:none}.wcf-step-library .wcf-remote-content .wcf-ready-templates.current{display:block}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch{display:none}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch.current{display:flex;min-height:500px;align-items:center}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item{max-width:600px;border:4px dashed #ddd;border-radius:2px;padding:unset;height:350px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select{width:100%;display:flex;flex-wrap:wrap;padding:20px 30px;align-items:center;justify-content:center}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__dropdown-list{margin:0 10px 0 0}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__dropdown-list select{width:200px;height:36px;margin:0}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-learn-how{width:100%;margin-top:30px}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__notice-wrap{width:100%}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item .wcf-step-library__item--scratch__select .wcf-create-step__notice-wrap .wcf-create-step__notice p{font-size:14px;margin:0 0 20px;color:#444}.wcf-step-library .wcf-remote-content .wcf-start-from-scratch .wcf-step-library__item--scratch h3{font-size:22px;font-weight:500;color:#444;margin:0 0 10px;width:100%}
820
+ .wcf-edit-flow__title-wrap{padding:0 15px 10px;display:flex;justify-content:space-between;align-items:center;margin:0}.wcf-edit-flow__title-wrap .wcf-flows-header--title{font-size:22px;line-height:40px;color:#444;font-weight:500;width:50%}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container{display:flex;position:relative;align-items:center}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-spinner{float:none;margin-right:10px;vertical-align:middle;animation:spin 2s linear infinite;color:#434343}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf_store_checkout_status_label{font-size:14px;margin-right:10px}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-ob-status{align-self:center}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-switch{cursor:pointer;text-indent:-999em;display:block;width:38px;height:22px;border-radius:30px;border:none;position:relative;box-sizing:border-box;transition:all .3s ease;box-shadow:inset 0 0 0 0 rgba(0,0,0,0)}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-switch:focus{outline:none}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-switch::before{border-radius:50%;background:#fff;content:"";position:absolute;display:block;width:18px;height:18px;top:2px;left:2px;transition:all .15s ease;box-shadow:0 1px 3px rgba(0,0,0,.3)}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-switch[data-wcf-order-bump-switch=true]{box-shadow:inset 0 0 0 12px var(--primary-border-color)}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-switch[data-wcf-order-bump-switch=true]::before{transform:translateX(16px)}.wcf-edit-flow__title-wrap .wcf-store-checkout_status--container .wcf-switch[data-wcf-order-bump-switch=false]{background:#ccc}.wcf-edit-flow__title-wrap .wcf-step__title--editable{display:flex;align-items:center}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--text input{width:350px;background:#fff;color:#444;border-color:#aaa;height:40px;line-height:1;font-weight:400}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons{display:inline;vertical-align:middle}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-button--small{padding:9px 20px;line-height:1;font-size:14px;font-weight:400}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-button--small.wcf-saving{animation:wcf-saving 2.5s linear infinite;opacity:1;background-size:100px 100%;background-image:linear-gradient(-45deg, #f06335 28%, #f78860 0, #f78860 72%, #f06335 0)}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons a,.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons button{text-decoration:none;vertical-align:middle;margin-left:10px}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-flows-header__title--edit .dashicons-edit{vertical-align:unset}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-flows-header__title--edit .dashicons-edit::before{padding:5px;font-size:18px;text-decoration:none;background:#fff;display:inline-block;border-radius:100%}.wcf-edit-flow__title-wrap .wcf-step__title--editable .wcf-flows-header__title--buttons .wcf-flows-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums{width:50%;text-align:right}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums .wcf-breadcrum--nav-item{color:#444;font-weight:500;font-size:14px}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link{text-decoration:none;color:var(--primary-color)}.wcf-edit-flow__title-wrap .wcf-flows-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link:hover{color:var(--primary-hv-color)}
821
  .editor-wrap__content{background:#fff;position:relative}
822
+ .wcf-woo-notice{background:#fff;padding:20px;border-left:2px solid red;margin:0 0 15px;color:red}.wcf-payment-gateway-notice{background:#fff;padding:15px;border-left:2px solid red;margin:0 0 15px;line-height:1.5}.wcf-payment-gateway-notice .wcf-gateway-notice-style{font-weight:700}.wcf-vertical-nav .wcf-textarea-field textarea[id*=-script]{width:500px}
823
+ .wcf-edit-step--nav{border-bottom:1px solid #ededed;padding:0;display:flex;background:#fff;box-shadow:none;margin:0}.wcf-edit-step--nav a.wcf-edit-step--nav__back-to-flow{padding:18px 25px 18px 18px}.wcf-edit-step--nav a.wcf-edit-step--nav__back-to-flow:hover{background:#fafafa}.wcf-edit-step--nav .wcf-edit-step--nav__back-to-flow--button{background:rgba(0,0,0,0);cursor:pointer;border:none;line-height:1}.wcf-edit-step--nav .wcf-edit-step--nav__back-to-flow--button .dashicons{color:#444;font-size:15px;height:-moz-fit-content;height:fit-content;width:-moz-fit-content;width:fit-content;margin-right:8px}.wcf-edit-step--nav .wcf-edit-step--nav__back-to-flow--button .wcf-back-button{font-size:15px;color:#444}.wcf-edit-step--nav .wcf-edit-flow--nav__back-to-flow:focus,.wcf-edit-step--nav .wcf-edit-flow--nav__back-to-flow--button:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-step--nav__tab{background:rgba(0,0,0,0);border:1px solid #fff;border-top:0;border-bottom:1px solid #ededed;color:#434343;cursor:pointer;padding:18px 25px;font-size:15px;line-height:1;font-weight:300;margin-bottom:-1px;max-width:100%;text-align:center;text-decoration:none;outline:none;box-shadow:none}.wcf-edit-step--nav__tab:hover{background:#f8f8f9;border:1px solid #f8f8f9;border-top:0;color:#444}.wcf-edit-step--nav__tab:first-child{border-left:0}.wcf-edit-step--nav__tab:focus{box-shadow:none;color:#444;outline:none}.wcf-edit-step--nav__tab--active{background:#fff;color:#444;font-weight:300;border:1px solid #ededed;border-bottom:1px solid #fff;border-top:0}.wcf-edit-step--nav__tab--active:hover{background:#fff;color:#444;font-weight:300;border:1px solid #ededed;border-bottom:1px solid #fff;border-top:0}.wcf-edit-step--nav__tab--active:first-child{border-left:0}
824
+ .wcf-page-wrapper{padding:30px;min-height:750px}.wcf-page-wrapper .wcf-list-options .wcf-list-options__title,.wcf-page-wrapper .wcf-nav-content label.wcf-field-section-heading{display:inline-block;width:100%;font-size:18px;font-weight:500;padding:35px 0 15px;border-bottom:1px solid #ddd}.wcf-page-wrapper .wcf-custom-field-editor__content .wcf-custom-field-editor__title,.wcf-page-wrapper .wcf-checkout__section .wcf-list-options__title{padding-top:0}.wcf-page-wrapper form{width:100%;position:relative}.wcf-page-wrapper .wcf-field__data--label label,.wcf-page-wrapper .wcf-selection-field label{width:300px;line-height:1.1;padding-right:20px;font-weight:500;display:inline-block;font-size:14px;color:#444}.wcf-page-wrapper .wcf-section-heading-field .wcf-field__data--label{padding:25px 0 5px;border-bottom:1px solid #ddd;margin-bottom:10px}.wcf-page-wrapper .wcf-section-heading-field .wcf-field__data--label label{font-size:16px;font-weight:600}.wcf-page-wrapper .wcf-sub-heading-field .wcf-field__data--label{padding:15px 0 5px;border-bottom:1px solid #ddd;margin-bottom:10px}.wcf-page-wrapper .wcf-sub-heading-field .wcf-field__data--label label{font-size:15px;font-weight:500}.wcf-page-wrapper .wcf-checkbox-field .wcf-field__data--label,.wcf-page-wrapper .wcf-checkbox-field .wcf-field__data--label label,.wcf-page-wrapper .wcf-radio-button .wcf-field__data--label,.wcf-page-wrapper .wcf-radio-button .wcf-field__data--label label{width:-moz-fit-content;width:fit-content;font-size:14px}.wcf-page-wrapper .wcf-checkbox-field input[type=checkbox],.wcf-page-wrapper .wcf-radio-button input[type=radio]{margin:0 10px 0 0}.wcf-page-wrapper h3{line-height:1;margin-top:0;color:#444}.wcf-page-wrapper h3,.wcf-page-wrapper label.wcf-field-section-heading{width:100%;font-size:18px;padding:25px 0}.wcf-page-wrapper label.wcf-field-section-heading{display:inline-block;width:100%;font-size:18px;font-weight:500;padding:35px 0 15px;border-bottom:1px solid #ddd}.wcf-page-wrapper .wcf-selection-field .css-2b097c-container,.wcf-page-wrapper .wcf-selection-field .wcf-select2-input{margin:0}.wcf-page-wrapper .wcf-note-content{font-weight:500;font-size:15px;color:#444}.wcf-page-wrapper .wcf-pro-update-notice{color:#444;font-size:14px;font-weight:500}
825
+ .wcf-settings{margin:30px 0}.wcf-settings .wcf-vertical-nav__content{width:80%;padding:20px 30px;background:#fafafa;border:1px solid #eee}.wcf-settings .wcf-submit-button{text-align:right;margin-top:30px}.wcf-vertical-nav{border-radius:2px;min-height:500px;display:flex;font-size:14px}.wcf-vertical-nav .wcf-nav-content__header--title,.wcf-vertical-nav .wcf-nav-content__header--button{padding:0 0 10px 0}.wcf-vertical-nav .wcf-vertical-nav__menu{width:20%;background:#f7f8fa;border:0}.wcf-vertical-nav .wcf-text-field input{background:#fff;font-weight:400;width:300px;height:38px}.wcf-vertical-nav .wcf-textarea-field textarea{border-color:#ccc;padding:10px;border-radius:2px;font-weight:400;width:300px}.wcf-vertical-nav .wcf-textarea-field textarea:focus{box-shadow:none;border-color:#aaa}.wcf-vertical-nav p{color:#444;font-size:14px;font-weight:400}.wcf-vertical-nav__header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #ddd;margin-bottom:20px}.wcf-vertical-nav__header .wcf-vertical-nav__header-title{font-size:18px;font-weight:500;padding:0 10px 10px 0;margin:0;width:50%}.wcf-vertical-nav__header .wcf-vertical-nav__header-button{padding:0 0 10px 10px;display:flex;justify-content:flex-end}
826
+ .wcf-design-page .wcf-design-page__content{background:#fff;padding:0 0 50px 0;margin:0}.wcf-design-page .wcf-design-page__content .wcf-design-header--title{font-size:22px;color:#444;font-weight:500;padding:0 0 15px 0;line-height:1;margin:0}.wcf-design-page .wcf-design-page__content .wcf-design-page__text{font-size:15px;padding:10px 0}.wcf-design-page .wcf-design-page__content a.wcf-design-page__WPeditor{font-size:15px}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .new-step-title{background:#fafafa;border-color:#ccc;padding:2px 15px;line-height:2}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons{display:inline;vertical-align:middle}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons .wcf-design-header__title--edit .dashicons-edit::before{padding:5px;font-size:18px;text-decoration:none;background:#eee;display:inline-block;border-radius:100%}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons .wcf-design-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons a{text-decoration:none;vertical-align:middle;margin-left:10px}.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons a:focus,.wcf-design-page .wcf-design-page__content .wcf-step__title--editable .wcf-design-header__title--buttons a:hover{outline:none;box-shadow:none}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize{margin:25px 0 25px 0}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--preview,.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--edit{margin-right:15px}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--preview{margin-right:15px}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--edit{background:var(--primary-color);border-color:var(--primary-color);color:#fff}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-design-page__button--edit:hover{background:var(--primary-hv-color);border-color:var(--primary-color);color:#fff}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-change-step{display:inline-flex;align-items:center;justify-content:space-between}.wcf-design-page .wcf-design-page__content .wcf-design-page__customize .wcf-change-step .dashicons{height:-moz-fit-content;height:fit-content;width:-moz-fit-content;width:fit-content;font-size:20px;margin-right:10px}.wcf-design-page .wcf-design-page__content .wcf-design-page__text{font-size:14px}.wcf-design-page .wcf-design-page__settings{margin:0;padding:15px 0 0}.wcf-design-page .wcf-design-page__settings h3{font-weight:500;margin:0 0 20px}.wcf-design-page .wcf-design-page__settings .wcf-settings{margin:30px 0}
827
+ .wcf-design-page.is-placeholder .wcf-design-page__content .wcf-design-header--title .title{padding:15px;width:30%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-design-page.is-placeholder .wcf-design-page__customize{display:flex}.wcf-design-page.is-placeholder .wcf-design-page__customize .wcf-design-page__button{width:12%;padding:15px;background-position:0 center;border-right:1px #fff solid;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-design-page.is-placeholder .wcf-design-page__text .title{padding:8px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);width:60%;animation:shine-lines 1.6s infinite linear}.wcf-design-page.is-placeholder .wcf-design-page__WPeditor .title{padding:8px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);width:30%;animation:shine-lines 1.6s infinite linear}.wcf-design-page.is-placeholder .wcf-design-page__settings .title{padding:15px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);width:15%;animation:shine-lines 1.6s infinite linear}.wcf-design-page.is-placeholder .wcf-design-page__settings .wcf-field.wcf-checkbox-field{margin-top:20px}.wcf-design-page.is-placeholder .wcf-design-page__settings .wcf-field.wcf-checkbox-field .title{padding:20px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);width:30%;animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:0}}
828
+ .wcf-settings-nav{display:flex}.wcf-settings-nav__tabs{width:250px;background:#f7f8fa;padding:15px}.wcf-settings-nav__tab{padding:0 0 10px 0}.wcf-settings-nav__tab:last-child{padding:0}.wcf-settings-nav__content{padding:25px;background:#fff;width:calc(100% - 250px)}
829
+ .wcf-product-products .wcf-products--selection,.wcf-product-products .wcf-checkout-products--options,.wcf-product-products .wcf-checkout-products--coupon{margin:5px 0 15px 0}.wcf-product-products .wcf-checkout-product-selection-field{border:1px solid #dfdfdf;border-radius:3px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--product{width:35%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--quantity{width:20%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--discount{width:40%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-column--actions{width:5%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header{padding:10px 20px;border-bottom:1px solid #dfdfdf;justify-content:left}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header .wcf-column--product{padding:0 0 0 20px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product{cursor:grab;display:flex;align-items:center;padding:15px;border-bottom:1px solid #dfdfdf}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product *{line-height:1.1}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__drag{margin-right:20px;width:2%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen{cursor:grab;background:#f9f9fa;transition:all 100ms ease-in}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen.sortable-ghost{cursor:grabbing}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-data{align-items:center;width:35%}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-image img{width:80px;height:80px;display:block;margin:0 auto}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details *{line-height:1.1em;font-size:11px;font-weight:500;margin-bottom:5px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details .wcf-product-repeater-field__title{font-size:15px;margin-bottom:10px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__quantity input{width:150px;margin-right:20px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount .wcf-product-repeater-field__discount-type{width:auto}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount select,.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount input{width:150px;margin-right:20px}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action{margin-left:auto}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action .wcf-remove-product-button:hover{color:var(--primary-color);cursor:pointer}.wcf-product-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new{padding:20px}
830
+ .wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-product-selection-wrapper .wcf-list-options .wcf-list-options__title .title{padding:15px;width:30%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-product-selection-wrapper .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new{display:flex}.wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-product-selection-wrapper .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new .wcf-checkout-products__button{width:12%;padding:15px;background-position:0 center;border-right:1px #fff solid;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-products.is-placeholder .wcf-checkout-products--selection.wcf-checkout__section .wcf-design-header--title .title{padding:15px;width:30%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-products.is-placeholder .wcf-checkout-products__pro-options .wcf-checkout-products--coupon .wcf-list-options__title .title{padding:15px;width:15%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-products.is-placeholder .wcf-checkout-products__pro-options .wcf-checkout-products--coupon .wcf-select2-field .title{padding:15px;width:30%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-products.is-placeholder .wcf-field.wcf-submit .wcf-checkout-products__button{width:12%;padding:15px;background-position:0 center;border-right:1px #fff solid;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:0}}
831
+ .wcf-list-options{color:#444;padding:0;line-height:34px;text-align:left}.wcf-list-options table{width:100%}.wcf-list-options table th{padding:0 0 10px;font-weight:400}.wcf-list-options label{font-weight:500}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{font-size:15px;font-weight:500;color:#444}.wcf-list-options .wcf-child-field::before{content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);color:#ccc;font-family:dashicons;font-weight:400;margin-right:.75em;top:-6px;vertical-align:middle;position:relative}
832
+ .wcf-multiple-order-bumps{border-radius:3px;margin-bottom:20px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__content .sortable-chosen{background:#fafafb}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__content .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__content .sortable-chosen .wcf-order-bump__content-wrapper{border:1px dashed #aaa;background:#fafafb}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header{padding:10px 20px;border:1px solid #dfdfdf;justify-content:space-between;display:flex;background:#f5f6f7;line-height:1.2}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header .wcf-column{color:#444;font-weight:500;font-size:15px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header .wcf-column--title{padding:0 0 0 20px;width:35%}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__header .wcf-column--actions{padding:0 20px 0 0;width:25%;justify-content:flex-end;display:flex}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__no-content{padding:20px;border:1px solid #dfdfdf;border-top:none}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__no-content p{margin-left:20px}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__add-new{padding:0 0 30px 0;text-align:right}.wcf-multiple-order-bumps .wcf-multiple-order-bumps__add-new .dashicons{font-size:18px;vertical-align:middle;line-height:1.2;margin-right:5px}
833
+ .wcf-add-ob-popup-overlay{position:fixed;text-align:left;background:rgba(0,0,0,.7294117647);z-index:9999;width:100%;height:100%;left:0;top:0}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content{width:510px;background:#fff;border-radius:3px;left:50%;top:50%;position:absolute;transform:translate(-50%, -50%);justify-content:space-between}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header{display:flex;justify-content:space-between;align-items:center;position:relative;height:50px;margin:0;padding:0;width:100%;border-bottom:1px solid #ddd}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__title h2{text-transform:uppercase;font-size:14px;margin-right:10px;font-weight:600;line-height:1;padding-left:25px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__title h2 .cartflows-logo-icon{font-size:16px;margin-right:8px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu{padding:5px;border-left:1px solid #ddd;position:relative;color:#ccc;cursor:pointer;display:inline-block}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu .dashicons{line-height:1.5}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu::after{font-size:25px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-add-ob-header .wcf-add-ob-header__menu:hover{color:#aaa}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-select2-field .wcf-selection-field label{display:none}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-content-wrap{padding:25px;background:#f5f5f5}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-content-wrap .wcf-content-wrap{padding:45px}.wcf-add-ob-popup-overlay .wcf-add-ob-popup-content .wcf-content-wrap .wcf-add-ob-content{display:flex;padding:20px 0;justify-content:space-between}
834
+ .wcf-order-bump .wcf-order-bump__content-wrapper{line-height:1.5;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #dfdfdf;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf;padding:25px 30px}.wcf-order-bump .wcf-order-bump__content-wrapper:hover{background:#fafafa}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bumps__data{align-items:center;width:35%}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bumps__data-title img{width:80px;height:80px;display:block;margin:0 auto}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action{display:flex;width:25%;justify-content:flex-end}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a{cursor:pointer;font-size:14px;line-height:1.5;vertical-align:middle;text-align:center;margin-right:15px;text-decoration:none}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-clone-bump-button.wcf-cloning,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-remove-order-bump-button.wcf-removing{margin-right:0}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-clone-bump-button.wcf-cloning .dashicons,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action a.wcf-remove-order-bump-button.wcf-removing .dashicons{margin-right:2px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-settings-button,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-design-button{margin-left:0;margin-right:20px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-settings-button:hover,.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-edit-design-button:hover{color:var(--primary-color);cursor:pointer}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .wcf-remove-order-bump-button.wcf-removing{color:var(--primary-hv-color)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__action .dashicons{margin-right:5px;font-size:18px;line-height:1.3}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf_order_bump__status{display:flex;position:relative}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf_order_bump__status .wcf-spinner{float:none;margin:0;animation:spin 2s linear infinite;position:absolute;right:0;left:45px;color:#434343}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__data{padding-left:10px;width:35%}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump__data .wcf-order-bump__data-title a{text-decoration:none;font-weight:500;font-size:15px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-ob-status{align-self:center}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields{background:#f5f6f7;border:1px solid #ececec;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:20px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field{margin-bottom:20px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field__desc{line-height:1.5}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field.wcf-checkbox-field{margin-bottom:10px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-field__data .wcf-field__data--label label{width:200px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-selection-field{margin-bottom:15px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-order-bump-settings-fields .wcf-selection-field label{width:200px}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-ob-header__title--edit span{margin-left:10px;text-decoration:none}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch{cursor:pointer;text-indent:-999em;display:block;width:38px;height:22px;border-radius:30px;border:none;position:relative;box-sizing:border-box;transition:all .3s ease;box-shadow:inset 0 0 0 0 rgba(0,0,0,0)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch:focus{outline:none}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch::before{border-radius:50%;background:#fff;content:"";position:absolute;display:block;width:18px;height:18px;top:2px;left:2px;transition:all .15s ease;box-shadow:0 1px 3px rgba(0,0,0,.3)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch[data-wcf-order-bump-switch=true]{box-shadow:inset 0 0 0 12px var(--primary-border-color)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch[data-wcf-order-bump-switch=true]::before{transform:translateX(16px)}.wcf-order-bump .wcf-order-bump__content-wrapper .wcf-switch[data-wcf-order-bump-switch=false]{background:#ccc}
835
+ .wcf-multiple-order-bumps.is-placeholder .wcf-add-new-order-bump{padding:10px 90px;width:100%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-column--product{width:25%}.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-order-bump__data-title,.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf_order_bump__status,.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-column--actions span{padding:15px;width:100%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf_order_bump__status,.wcf-multiple-order-bumps.is-placeholder .wcf-multiple-order-bumps__content .wcf-order-bump .wcf-column--actions{width:10%}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:0}}
836
+ .wcf-list-options{color:#444;padding:0;line-height:34px;text-align:left}.wcf-list-options table{width:100%}.wcf-list-options table th{padding:0 0 10px;font-weight:400}.wcf-list-options label{font-weight:500}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{font-size:15px;font-weight:500;color:#444}.wcf-list-options .wcf-child-field::before{content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);color:#ccc;font-family:dashicons;font-weight:400;margin-right:.75em;top:-6px;vertical-align:middle;position:relative}
837
+ .wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options .wcf-list-options__title .title{padding:15px;width:50%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options table tr .checkbox-title{margin-bottom:20px;padding:10px;width:15%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options table tr .title{margin-bottom:10px;padding:15px;width:30%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options .wcf-field.wcf-submit{margin-top:20px}.wcf-checkout-offer-settings.wcf-checkout__section.is-placeholder .wcf-list-options .wcf-field.wcf-submit .wcf-checkout-offer__button{width:10%;padding:20px;background-position:0 center;border-right:1px #fff solid;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:0}}
838
+ .wcf-list-options{color:#444;padding:0;line-height:34px;text-align:left}.wcf-list-options table{width:100%}.wcf-list-options table th{padding:0 0 10px;font-weight:400}.wcf-list-options table .wcf-selection-field label,.wcf-list-options table .wcf-field__data--label label{font-weight:500;width:230px}.wcf-list-options table textarea{width:300px}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{font-size:15px;font-weight:500;color:#444}.wcf-list-options .wcf-child-field::before{content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);color:#ccc;font-family:dashicons;font-weight:400;margin-right:.75em;top:-6px;vertical-align:middle;position:relative}.wcf-list-options .wcf-co-options-wrapper{display:flex;justify-content:space-between}.wcf-list-options .wcf-co-options-wrapper .wcf-co-preview{width:100%;height:auto;margin:20px 0 0 30px;transition:all .3s}.wcf-list-options .wcf-co-options-wrapper .wcf-co-preview .wcf-section-heading-field{margin:27px 0}.wcf-list-options .wcf-co-options-wrapper .wcf-co-settings .wcf-first-style-child{padding-top:0}.wcf-list-options .wcf-co-options-wrapper table{width:80%}.wcf-list-options .wcf-co-options-wrapper.full-screen{flex-flow:column}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-settings{order:2}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview{order:1;margin:0 0 30px 0}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper{position:unset}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper{position:fixed;left:0;top:0;height:100%;width:100%;z-index:9999;overflow:auto}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal{max-width:950px;min-height:350px;margin:20px auto;top:0}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal .wcf-lightbox-content{padding:50px}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal .wcf-lightbox-content .wcf-pre-checkout-info{padding:30px}.wcf-list-options .wcf-co-options-wrapper.full-screen .wcf-co-preview .wcf-checkout-offer-preview-wrapper .wcf-full-screen-preview-exit-button{top:55px;z-index:99999;position:fixed;right:40px}.wcf-co-full-screen-preview{overflow:hidden}
839
+ .wcf-checkout-offer-preview-wrapper:not(.fullscreen){position:relative}.wcf-checkout-offer-preview-wrapper.sticky{position:sticky;top:90px}.wcf-checkout-offer-preview-wrapper.fullscreen{position:absolute;top:-30px;left:0;background-color:#fff}.wcf-checkout-offer-preview-wrapper.fullscreen .wcf-section-heading-field{margin-top:0}.wcf-checkout-offer-preview-wrapper.fullscreen .wcf-section-heading-field .wcf-field__data--label{padding-top:0}.wcf-checkout-offer-preview-wrapper.fullscreen .wcf-pre-checkout-offer-wrapper{width:80%;margin:0 auto}.wcf-checkout-offer-preview-wrapper .wcf-co-preview-mode{position:absolute;top:25px;right:0}.wcf-pre-checkout-offer-wrapper{background:#eee;transition:opacity .25s;z-index:1042;padding:40px}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-title h1{color:#333;font-family:inherit;font-size:1.7em;margin:10px 0}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-skip-btn .wcf-pre-checkout-skip{color:#555;display:block;font-size:14px;margin:5px auto 0 auto;opacity:.8;width:-moz-fit-content;width:fit-content}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-skip-btn .wcf-pre-checkout-skip:hover{opacity:1}.wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-content{width:100%;background-color:#fff;border:2px #e2e2e2 dashed;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.04);display:inline-block}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-progress-bar{overflow:hidden;margin-bottom:0}.wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-modal{background-color:#fff;position:relative;border-radius:4px;transform:translate(0%, 0%);overflow:hidden;font-family:inherit;box-shadow:0 0 30px 5px rgba(0,0,0,.1)}.wcf-pre-checkout-offer-wrapper .wcf-progress-bar-nav{margin-bottom:30px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-progress{position:relative;display:table;table-layout:fixed;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step{display:table-cell;text-align:center;position:relative;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-title{margin-bottom:12px;white-space:nowrap;font:inherit;letter-spacing:.6px;font-size:14px;color:#6d6d6d}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-nav-bar-title{color:inherit}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .after{right:0}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .before,.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .after{height:4px;content:"";background:#e2e2e2;display:block;position:absolute;width:50%;bottom:8px}.wcf-pre-checkout-offer-wrapper .wcf-progress-nav-step{width:20px;height:20px;border-radius:3px;margin:auto;position:relative;background:#e2e2e2;vertical-align:middle;text-align:center;z-index:2;line-height:17px}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-sub-title{margin-bottom:10px;position:relative;text-align:center;left:0;bottom:0}.wcf-pre-checkout-offer-wrapper .wcf-content-main-head{text-align:center;position:relative;padding:10px;width:100%;margin-bottom:30px}.wcf-pre-checkout-offer-wrapper .wcf-content-main-head .wcf_first_name{color:#f16334}.wcf-pre-checkout-offer-wrapper .wcf-lightbox-content{padding:35px 20px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price ins{background:none}.wcf-pre-checkout-screen-size .open #wcf-pre-checkout-offer-modal{top:50%;transform:translate(0%, -50%)}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-nav-bar-step-line .before{background:#f16334}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-nav-bar-step-line .order-after{height:4px;content:"";background:#f16334;position:absolute;width:50%;bottom:8px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step-line .before{left:0}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step:first-child .wcf-nav-bar-step-line::before,.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step:last-child .wcf-nav-bar-step-line::after{background:#000;display:none !important}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active+.wcf-nav-bar-step.active .wcf-nav-bar-step-line::after{background:#e2e2e2 !important}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-progress-nav-step{background:#f16334}.wcf-pre-checkout-offer-wrapper .wcf-nav-bar-step.active .wcf-progress-nav-step .before{content:"";margin:0;color:#fff;display:inline-block;font:normal normal 400 13px/20px cartflows-icon;speak:none;vertical-align:middle;-webkit-font-smoothing:antialiased;border:1px #fff solid;border-radius:1px;width:6px;height:6px;background-color:#fff;line-height:7px;right:7px}.wcf-pre-checkout-offer-wrapper #wcf-pre-checkout-offer-content button.wcf-pre-checkout-offer-btn{border:1px solid;border-color:#f16334;background:#f16334;border-radius:3px;color:#fff;font-family:inherit;font-weight:600;font-size:16px;line-height:1;margin-top:0;padding:12px 16px;width:100%;outline:none;min-height:48px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-product-title h1{color:#333;font-size:1.5em;font-weight:700;margin-top:0;margin-bottom:8px}.wcf-pre-checkout-offer-wrapper.open{visibility:visible;opacity:1;text-align:center;width:100%;height:100%;left:0;top:0;padding:30px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-desc,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-btn-action{padding:5px 0}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price .woocommerce-Price-amount.amount,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price ins .woocommerce-Price-amount.amount{display:inline-block;font-weight:600;font-size:17px;margin-bottom:3px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-price del .woocommerce-Price-amount.amount{font-weight:400;text-decoration:line-through}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-info{display:inline-block;width:49.7%;padding:20px 20px 12px;vertical-align:middle;text-align:center}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-img img{border:2px solid #e2e2e2;width:100%}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-info.wcf-pre-checkout-offer-product-details{text-align:left;padding-left:10px;line-height:2}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-actions{padding:0 20px 15px}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-btn-action{font-size:12px;padding-top:0}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-sub-title span,.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-desc span{font-family:inherit}.wcf-pre-checkout-offer-wrapper .wcf-pre-checkout-offer-desc span{color:#555;margin-top:5px}.wcf-pre-checkout-offer-wrapper .wcf-content-modal-sub-title span{color:#555;font-size:18px;font-weight:500;padding:0 5px}
840
  .wcf-checkout-offer-save-settings{margin-top:25px}
841
+ .wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper{background-color:#fafafa;padding:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules--text{padding:10px 0 10px 0;display:flex}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules--text .wcf-skeleton{margin-right:7px}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules{margin-top:20px;margin-bottom:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules .wcf-checkout-rule__and{margin:7px 0 7px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules .wcf-checkout-rule--select-box{display:flex}.wcf-checkout-rules-page .wcf-checkout-rules--group_wrapper .wcf-checkout-rules .wcf-checkout-rule--select-box .wcf-skeleton{margin-right:20px}.wcf-checkout-rules-page .wcf-checkout-rules--or{display:flex;justify-content:space-between;padding:15px 0 15px 0;margin-left:20px;margin-top:20px}.wcf-checkout-rules-page .wcf-checkout-rules--default-step{background-color:#fafafa;display:flex}.wcf-checkout-rules-page .wcf-checkout-rules--default-step .wcf-skeleton{margin-right:7px}
842
+ .wcf-checkout-rules--group_rules{display:flex;margin-bottom:10px;position:relative}.wcf-checkout-rules--group_rules:first-child{position:relative;margin-top:-17px}.wcf-checkout-rules--group_rules:not(first-child){margin-top:10px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions{display:flex}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-conditional-field-text,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-conditional-field-text{align-self:center;margin-right:10px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-select-option,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-product-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-product-cat-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-coupon-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-number-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-select2-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-select-option,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-product-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-product-cat-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-coupon-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-number-field,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-select2-field{margin-right:18px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .wcf-checkout-rules--and_text,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .wcf-checkout-rules--and_text{margin:0 20px 0 10px;align-self:center}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .and-close,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .and-close{align-self:center;cursor:pointer;margin:5px 10px 0 0;font-size:18px}.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_fields .and-close:hover,.wcf-checkout-rules--group_rules .wcf-checkout-rules--rule_actions .and-close:hover{color:#2271b1}
843
+ .wcf-checkout-rules-page .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-checkout-rules-page .sortable-chosen .wcf-checkout-rules--group{border:1px dashed #aaa;background:#fafafb}.wcf-checkout-rules-page .wcf-checkout-rules-page--enable_option{margin-bottom:30px}.wcf-checkout-rules-page .wcf-checkout-rules-page--enable_option label{display:flex;justify-content:center;align-items:center}.wcf-checkout-rules-page div .wcf-checkout-rules-page--group_wrapper{cursor:grab}.wcf-checkout-rules-page .wcf-checkout-rules--group{padding:20px;background-color:#fafafa;border:1px dashed #fafafa}.wcf-checkout-rules-page .wcf-checkout-rules--group select{margin:0}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf__control{width:400px;border:1px solid #bebebe}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf__value-container{line-height:16px;max-height:36px;overflow-y:auto;scroll-behavior:smooth}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf__value-container .wcf__multi-value{margin:5px 3px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--add-rule__repeater{display:flex;position:relative;margin-top:-10px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--add-rule__repeater .wcf-button--secondary:hover{color:#2271b1;border:1px solid #2271b1;background-color:#fff}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step{display:flex;justify-content:space-between;margin:5px 0 5px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header__left{display:flex;justify-content:space-between;align-items:center}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header__left .wcf-checkout-rules__handle{margin-right:10px;cursor:move}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step label{width:auto;padding-right:10px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step select{width:auto;border:1px solid #bebebe}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_id{font-size:10px;color:#a3a2a2}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header{display:flex;justify-content:space-between;align-items:center}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--redirection-step .wcf-checkout-rules--group_header .dashicons{cursor:pointer;margin-left:10px;font-size:30px;line-height:.6}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper{display:inline-block;margin:45px 0 45px 0}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-selection-field .wcf-select2-input{width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-select-option select{height:38px;border:1px solid #bebebe}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-select-option:nth-child(3) select{width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules--wrapper .wcf-field__data--content input{border:1px solid #bebebe;width:400px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label{margin-left:10px;position:relative;align-items:center;display:flex}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group{display:flex;position:relative;border:1px solid #ddd;border-radius:2px;margin-right:17px;background-color:#fafafa}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group::before,.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group::after{content:"";height:11px;width:1px;background-color:#bebebe;position:absolute}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group::before{bottom:28px;left:20px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group::after{top:28px;right:23px}.wcf-checkout-rules-page .wcf-checkout-rules--group .wcf-checkout-rules--group_rules__condition-label .wcf--condition-label__and_group .wcf--condition-label__and_group__text{font-weight:500;font-size:12px;color:#555;padding:5px 10px}.wcf-checkout-rules-page .wcf-checkout-rules-page--group_wrapper__footer{display:flex;margin:20px 0;width:100%;justify-content:space-between;position:relative}.wcf-checkout-rules-page .wcf-checkout-rules-page--group_wrapper__footer .wcf-button--secondary:hover{color:#2271b1;border:1px solid #2271b1;background-color:#fff}.wcf-checkout-rules-page .wcf-checkout-rules--default-step{padding:20px;margin:20px 0 20px 0;background-color:#fafafa}.wcf-checkout-rules-page .wcf-checkout-rules--default-step label{width:auto;padding-right:10px}.wcf-checkout-rules-page .wcf-checkout-rules--default-step select{width:auto;margin:0;border:1px solid #bebebe}.wcf-checkout-rules-page .wcf-checkout-rules--group_rules:last-child{margin-bottom:0}.wcf-checkout-rules-page .wcf-checkout-rules--or-group{font-weight:500;font-size:14px;background-color:#fafafa;padding:5px 15px;color:#555;border-radius:2px;letter-spacing:.5px;border:1px solid #ddd;margin:auto 0}
844
+ .wcf-custom-field-editor__content{background:#fff;padding:0;text-align:left}.wcf-custom-field-editor__content h3{display:inline-block;width:100%;font-size:18px;font-weight:500;padding:35px 0 15px;border-bottom:1px solid #ddd}.wcf-custom-field-editor__content .wcf-checkbox-field{margin-bottom:10px}.wcf-custom-field-editor__content .wcf-checkbox-field .wcf-field__data--label label{width:250px;line-height:1.1;padding-right:20px;font-weight:500;display:inline-block;font-size:14px}.wcf-custom-field-editor__content .wcf-cfe-child::before{content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);color:#ccc;font-family:dashicons;font-weight:400;margin-right:.75em;top:-6px;vertical-align:middle;position:relative}.wcf-custom-field-editor__content .wcf-field__data .wcf-cfe-child{padding-left:27px}.wcf-custom-field-editor__content table{margin-bottom:30px}.wcf-custom-field-editor__content .wcf-billings-fields-section{margin-right:15px}.wcf-custom-field-editor__content .wcf-shippings-fields-section{margin-left:15px}.wcf-custom-field-editor__content .wcf-billings-fields-section,.wcf-custom-field-editor__content .wcf-shippings-fields-section{border:none;width:calc(50% - 15px)}.wcf-custom-field-editor__content .wcf-billings-fields-section h3,.wcf-custom-field-editor__content .wcf-shippings-fields-section h3{padding:20px 0}.wcf-custom-field-editor__content .wcf-billings-fields-section #wcf-billing-fields,.wcf-custom-field-editor__content .wcf-shippings-fields-section #wcf-shipping-fields{padding:20px 0}.wcf-custom-field-editor__content .wcf-billings-fields-section #wcf-billing-fields .wcf-field__data--label,.wcf-custom-field-editor__content .wcf-shippings-fields-section #wcf-shipping-fields .wcf-field__data--label{width:190px}.wcf-billings-fields-section,.wcf-shippings-fields-section{display:inline-block;position:relative;vertical-align:top;border:none;width:calc(50% - 15px)}.wcf-billings-fields-section h3,.wcf-shippings-fields-section h3{padding:20px 0;margin:0;border:none}.wcf-billings-fields-section #wcf-billing-fields,.wcf-shippings-fields-section #wcf-shipping-fields{padding:20px 0}.wcf-billings-fields-section .wcf-field-item:first-child .wcf-field-item__bar,.wcf-shippings-fields-section .wcf-field-item:first-child .wcf-field-item__bar{margin:0}#wcf-billing-fields li,#wcf-shipping-fields li{margin-bottom:10px;overflow:hidden;touch-action:none}.wcf-custom-field-editor-buttons{display:flex}.billing-field-sortable .wcf-field-item.sortable-chosen .wcf-field-item-handle,.shipping-field-sortable .wcf-field-item.sortable-chosen .wcf-field-item-handle{background:#fafafb}.billing-field-sortable .wcf-field-item.sortable-ghost .wcf-field-item-handle,.shipping-field-sortable .wcf-field-item.sortable-ghost .wcf-field-item-handle{border-style:dashed;border-color:#ccc}.billing-field-sortable .wcf-field-item-handle .dashicons-visibility::before,.billing-field-sortable .wcf-field-item-handle .dashicons-hidden::before,.shipping-field-sortable .wcf-field-item-handle .dashicons-visibility::before,.shipping-field-sortable .wcf-field-item-handle .dashicons-hidden::before{cursor:pointer}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings{z-index:0;padding:15px;box-shadow:none}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings input{font-weight:400}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item-title{font-weight:400}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings table{margin:0}.wcf-custom-field-editor__content .wcf-field-item .wcf-field-item__settings table th{padding:5px}.wcf-cfe-popup-content-wrapper{padding:0;max-height:85%;overflow-y:auto}.wcf-cfe-popup-content-wrapper .wcf-textarea-field textarea{width:300px;height:60px;border-color:#ddd;padding:4px 15px;border-radius:2px;font-weight:400}.wcf-cfe-popup-content-wrapper .wcf-cpf-row-header h3{border:0;padding:15px;margin:0}.wcf-cfe-popup-content-wrapper .wcf-cpf-row-header{margin:0}.wcf-cfe-popup-content-wrapper .wcf-select-option select{margin-right:0}.wcf-cfe-popup-content-wrapper table th{padding:5px 0}.wcf-cfe-popup-content-wrapper::-webkit-scrollbar{width:5px;background-color:#eee}.wcf-cfe-popup-content-wrapper::-webkit-scrollbar-thumb{width:5px;background-color:#ccc}.wcf-cfe-popup-content table{margin-bottom:0;padding:20px}.wcf-cfe-popup-content table th{margin:0;padding:5px 0}.wcf-cfe-popup-content table tr:first-child th{margin:0;padding:5px 0}.wcf-cfe-popup-content .wcf-button{margin-top:15px}.wcf-custom-field-editor-title-section{position:relative}.wcf-custom-field-editor-buttons{position:absolute;bottom:20px;right:0}
845
+ .wcf-field-item .wcf-field-item__bar{clear:both;cursor:move;line-height:1.5em;position:relative;margin:9px 0 0}.wcf-field-item .wcf-field-item__bar.wcf-field-item__disabled{opacity:.5;border:1px dashed #999}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle{border:1px solid #ececec;background:#fff;position:relative;padding:10px 15px;height:auto;min-height:20px;width:auto;line-height:initial;overflow:hidden;word-wrap:break-word}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-title{font-size:13px;font-weight:600;line-height:20px;display:inline-block;margin-left:15px;margin-right:13em}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-title span:not(.wcf-tooltip-text):nth-child(2){color:red}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-controls{display:inline-flex;font-size:12px;float:right;position:relative;right:0;top:-1px}.wcf-field-item .wcf-field-item__bar .wcf-field-item-handle .item-controls .dashicons-arrow-down{cursor:pointer}.wcf-field-item .wcf-field-item__settings{width:auto;padding:10px 10px 10px 10px;position:relative;z-index:10;border:1px solid #ececec;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.0392156863);background:rgba(236,236,236,.2)}.wcf-field-item .wcf-field-item__settings table{width:100%}.wcf-field-item .wcf-field-item__settings table th{padding:15px 10px 15px 0}.wcf-field-item .wcf-field-item__settings table .wcf-cfe-field-enable-field{display:none}.wcf-field-item .wcf-field-item__settings label{font-weight:500;min-width:80px;padding-right:20px;display:inline-block}.wcf-field-item .wcf-field-item__settings .wcf-cpf-actions{text-align:right;color:red;cursor:pointer}.wcf-billings-fields-section .wcf-field__data--label label,.wcf-shippings-fields-section .wcf-field__data--label label{width:190px}
846
+ .wcf-cpf-row-header{display:flex;border-bottom:1px solid #e5e5e5;justify-content:space-between;margin-bottom:5px}.wcf-cfe-popup-overlay{position:fixed;text-align:left;background:rgba(0,0,0,.7294117647);z-index:9999;width:100%;height:100%;left:0;top:0}.wcf-cfe-popup-content-wrapper{width:665px;padding:0;background:#fff;border-radius:3px;left:50%;top:50%;position:absolute;transform:translate(-50%, -50%)}.wcf-close-popup{text-align:right}.wcf-cfe-popup-content .wcf-template-logo-wrap{padding:15px 0 15px 15px}.wcf-cfe-popup-content table{width:100%;padding:20px;margin-bottom:0}.wcf-cfe-popup-content table th{padding:5px 0}.wcf-cfe-popup-content label{font-weight:500;min-width:80px;padding-right:20px;display:inline-block}.wcf-cfe-popup-content .wcf-button{margin-top:15px}.wcf-cfe-popup-content .wcf-select-option select{margin-right:0}
847
+ .wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content{margin-bottom:70px}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content .wcf-custom-field-editor__title{display:inline-block;width:100%;padding-bottom:15px;border-bottom:1px solid #ddd}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content .wcf-custom-field-editor__title .title{padding:15px;width:50%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form{margin-top:20px}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form table{width:100%}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form table tr .title{margin-bottom:15px;padding:10px;width:25%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form .wcf-field.wcf-submit{margin-top:20px}.wcf-custom-field-editor.wcf-checkout__section.is-placeholder .wcf-custom-field-editor__content form .wcf-field.wcf-submit .wcf-checkout-custom-fields__button{width:10%;padding:20px;background-position:0 center;border-right:1px #fff solid;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:0}}
848
+ .wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-custom-field-editor__title .title{padding:15px;width:50%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content table{width:100%}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content table tr .checkbox-title{margin:20px 0;padding:10px;width:15%;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-optin-fields-section-section .wcf-custom-field-editor-title-section .title{padding:15px;width:50%;margin-bottom:30px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-optin-fields-section-section .wcf-optin-fields .title{padding:15px;width:100%;margin-top:15px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-field.wcf-submit{margin-top:20px}.wcf-custom-field-editor.is-placeholder .wcf-custom-field-editor__content .wcf-field.wcf-submit .wcf-optin-form-field__button{width:10%;padding:20px;background-position:0 center;border-right:1px #fff solid;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:0}}
849
+ .wcf-checkout-products .wcf-checkout-products--selection,.wcf-checkout-products .wcf-checkout-products--options,.wcf-checkout-products .wcf-checkout-products--coupon{margin:5px 0 15px 0}.wcf-checkout-products .wcf-product-options-section{margin-bottom:1.5em}.wcf-checkout-products .wcf-product-options__title{display:inline-block;width:100%;font-size:18px;font-weight:500;padding:35px 0 15px;border-bottom:1px solid #ddd}.wcf-checkout-products .wcf-product-options-notice__text{border:1px solid #f4f4f4;border-radius:2px;font-weight:400;color:#444;font-size:13px;font-style:italic;padding:12px 10px;width:310px;background:#f4f4f4}.wcf-checkout-products .wcf-checkout-product-selection-field{border:1px solid #dfdfdf;border-radius:3px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--product{width:35%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--quantity{width:20%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--discount{width:40%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-column--actions{width:5%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header{padding:10px 20px;border-bottom:1px solid #dfdfdf;justify-content:left}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__header .wcf-column--product{padding:0 0 0 20px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product{cursor:grab;display:flex;align-items:center;padding:15px;border-bottom:1px solid #dfdfdf}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product *{line-height:1.1}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__drag{margin-right:20px;width:2%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen{cursor:grab;background:#f9f9fa;transition:all 100ms ease-in}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product.sortable-chosen.sortable-ghost{cursor:grabbing}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-data{align-items:center;width:35%}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-image img{border:1px #f4f4f4 solid;width:80px;height:80px;display:block;margin:0 auto}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details *{line-height:1.1em;font-size:11px;font-weight:500;margin-bottom:5px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__product-details .wcf-product-repeater-field__title{font-size:15px;margin-bottom:10px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__quantity input{width:150px;margin-right:20px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount .wcf-product-repeater-field__discount-type{width:auto}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount select,.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__discount input{width:150px;margin-right:20px}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action{margin-left:auto}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__content .wcf-product-repeater-field__product .wcf-product-repeater-field__action .wcf-remove-product-button:hover{color:var(--primary-color);cursor:pointer}.wcf-checkout-products .wcf-checkout-product-selection-field .wcf-checkout-product-selection-field__add-new{padding:20px}
850
+ .wcf-list-options{color:#444;padding:0;line-height:34px;text-align:left}.wcf-list-options table{width:100%}.wcf-list-options table th{padding:0 0 10px;font-weight:400}.wcf-list-options label{font-weight:500}.wcf-list-options p{font-size:15px;font-weight:400}.wcf-list-options .wcf-note-content{font-size:15px;font-weight:500;color:#444}.wcf-list-options .wcf-child-field::before{content:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAACXBIWXMAABYlAAAWJQFJUiTwAAAF8WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTEwLTE3VDE1OjAzOjMxKzA1OjMwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0xMS0xNVQxNjoyMDo1NSswNTozMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDowNjEwODVjNC1iYmQ1LWE2NGItYjQxYy03Y2VmNDA4ZDc1YWYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMDlhMDAwNS05NTAyLTQ3YzItYmZhMy02ZTg1MmYxMzU5MTQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMwOWEwMDA1LTk1MDItNDdjMi1iZmEzLTZlODUyZjEzNTkxNCIgc3RFdnQ6d2hlbj0iMjAxOS0xMC0xN1QxNTowMzozMSswNTozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTFiZWIwZi05NTFkLTQwMGQtYTc3ZS1mYzA5MTI0YTk4MjQiIHN0RXZ0OndoZW49IjIwMTktMTEtMTVUMTY6MjA6NTUrMDU6MzAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7rJm4UAAAAHElEQVQokWOcOXPmfwYGBkYGIgDjqOKRqJgoAABfGiRckr54vAAAAABJRU5ErkJggg==);color:#ccc;font-family:dashicons;font-weight:400;margin-right:.75em;top:-6px;vertical-align:middle;position:relative}
851
+ .wcf-edit-step__title-wrap{display:flex;justify-content:space-between;align-items:center;padding:0 15px 10px;margin:0}.wcf-edit-step__title-wrap .wcf-steps-header--title{font-size:22px;line-height:40px;color:#363b4e;font-weight:500}.wcf-edit-step__title-wrap .wcf-steps-header__title--text{font-size:22px;line-height:40px;color:#444;font-weight:500}.wcf-edit-step__title-wrap .wcf-steps-header__title--text input{width:350px;background:#fff;color:#444;border-color:#aaa;height:40px;line-height:1;font-weight:400}.wcf-edit-step__title-wrap .wcf-steps-header__title--text input:focus{border-color:#777}.wcf-edit-step__title-wrap .wcf-step__title--editable{display:flex;align-items:center}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons{display:inline;vertical-align:middle}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons a,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons button{text-decoration:none;vertical-align:middle;margin-left:10px}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-button--small{padding:9px 20px;line-height:1;font-size:14px;font-weight:400}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-button--small.wcf-saving{animation:wcf-saving 2.5s linear infinite;opacity:1;background-size:100px 100%;background-image:linear-gradient(-45deg, #f06335 28%, #f78860 0, #f78860 72%, #f06335 0)}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-visibility{vertical-align:unset}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit::before,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-visibility::before{padding:5px;font-size:18px;text-decoration:none;background:#fff;display:inline-block;border-radius:100%}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-edit:hover,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__title--buttons .wcf-steps-header__title--edit .dashicons-visibility:hover{color:#f16334}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view a,.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view button{margin-left:15px}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view .wcf-steps-header__quick-view--button .dashicons-external{vertical-align:unset}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view .wcf-steps-header__quick-view--button .dashicons-external::before{padding:5px;font-size:18px;text-decoration:none;background:#fff;display:inline-block;border-radius:100%}.wcf-edit-step__title-wrap .wcf-step__title--editable .wcf-steps-header__quick-view .wcf-steps-header__quick-view--button .dashicons-external:hover{color:#f16334}.wcf-edit-step__title-wrap .wcf-steps-header--breadcrums .wcf-breadcrum--nav-item{color:#444;font-weight:500;font-size:14px}.wcf-edit-step__title-wrap .wcf-steps-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link{text-decoration:none;color:var(--primary-color)}.wcf-edit-step__title-wrap .wcf-steps-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link:hover{color:var(--primary-hv-color)}
852
+ .wcf-order-bump-page-wrapper{color:#444;text-align:left}.wcf-order-bump-page-wrapper table{width:100%}.wcf-order-bump-page-wrapper table th{padding:0 0 15px;font-weight:400}.wcf-order-bump-page-wrapper label{font-weight:500}.wcf-order-bump-page-wrapper p{font-size:15px;font-weight:400}.wcf-order-bump-page-wrapper .wcf-note-content{font-size:15px;font-weight:500;color:#444}.wcf-order-bump-page-wrapper .wcf_warning_notice{padding:10px;border-left:3px solid red;line-height:1.5}.wcf-order-bump-page-wrapper .wcf-order-bump-save-settings{margin-top:15px}
853
+ .wcf-order-bump-product-tab.is-placeholder table label{padding:15px 15px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear;width:55%}.wcf-order-bump-product-tab.is-placeholder .wcf-order-bump-page-wrapper table th{padding:0 0 10px}.wcf-order-bump-product-tab.is-placeholder .wcf-order-bump-save-settings span{padding:8px 70px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:0}}
854
+ .wcf-order-bump-design-tab.is-placeholder label{padding:15px 15px;width:100%;display:inline-block;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__settings table label{width:100%}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__settings .wcf-order-bump-page-wrapper table th{padding:0 0 10px}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__preview .wcf-bump-order-wrap{width:100%}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-design-tab__preview .wcf-content-container{padding:55px 0}.wcf-order-bump-design-tab.is-placeholder .wcf-order-bump-save-settings span{padding:8px 70px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:0}}
855
+ .wcf-order-bump-setting-tab.is-placeholder label{padding:15px 15px;width:100%;display:inline-block;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}.wcf-order-bump-setting-tab.is-placeholder .wcf-field-one{width:20%}.wcf-order-bump-setting-tab.is-placeholder .wcf-field-two{width:50%}.wcf-order-bump-setting-tab.is-placeholder .wcf-order-bump-save-settings span{padding:8px 70px;background-position:0 center;background-image:linear-gradient(90deg, #ddd 0, #e8e8e8 10px, #ddd 80px);animation:shine-lines 1.6s infinite linear}@keyframes shine-lines{0%{background-position:-250px}40%,100%{background-position:0}}
856
+ .wcf-order-bumps-rules-page .wcf-rules-rules--text{padding:10px 0 10px 0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--or{display:flex;justify-content:space-between;padding:15px 0 15px 0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rule .wcf-order-bumps-rule--select-box{display:flex}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rule .wcf-order-bumps-rule--select-box .wcf-skeleton{margin-right:20px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rule .wcf-order-bumps-rule__and{margin:7px 0 7px 0}
857
+ .wcf-order-bump-design-tab{display:flex}.wcf-order-bump-design-tab .wcf-order-bump-design-tab__settings,.wcf-order-bump-design-tab .wcf-order-bump-design-tab__preview{width:50%}.wcf-order-bump-design-tab .wcf-order-bump-design-tab__preview{margin:0 0 0 30px}.wcf-order-bump-design-tab .wcf-order-bump-design-tab__settings .wcf-field__data--label label{width:230px}.wcf-order-bump-design-tab table tr:first-child .wcf-field__data--label{padding:0 0 5px}
858
+ .wcf-order-bump-preview-wrapper{transition:all .3s}.wcf-order-bump-preview-wrapper.sticky{position:sticky;top:120px}.wcf-order-bump-design-tab__preview--title{border-bottom:1px solid #ddd;padding:0 0 5px;margin-bottom:20px}.wcf-order-bump-design-tab__preview--title label{font-size:16px;font-weight:600}.wcf-bump-order-wrap{width:100%;display:block;float:none;margin:1em auto 1em;overflow:hidden}.wcf-bump-order-wrap .wcf-bump-order-field-wrap .wcf-pointing-arrow{margin-right:5px;vertical-align:middle;transform:scaleX(1)}.wcf-bump-order-wrap .wcf-bump-order-desc{line-height:1.7}.wcf-bump-order-wrap .wcf-bump-order-desc p{margin:0 0 .6em;padding:0}.wcf-bump-order-wrap .wcf-bump-order-desc p:last-child{margin:0;padding:0}.wcf-bump-order-wrap .wcf-bump-order-desc ul,.wcf-bump-order-wrap .wcf-bump-order-desc li{margin:0;padding:0;list-style-position:inside}.wcf-bump-order-wrap h1,.wcf-bump-order-wrap h2,.wcf-bump-order-wrap h3,.wcf-bump-order-wrap h4,.wcf-bump-order-wrap h5,.wcf-bump-order-wrap h6{margin:0;padding:0;font-weight:500;line-height:1.3em}@keyframes wcf-blinker{0%{visibility:hidden}40%{visibility:hidden}}.wcf-blink{animation:wcf-blinker .8s linear infinite;animation-direction:alternate}.wcf-bump-order-style-5{background:#fef7f5;border-radius:3px;display:inline-block;padding:15px;position:relative;width:100%;overflow:unset}.wcf-bump-order-style-5 .wcf-bump-order-field-wrap{-js-display:flex;display:flex;align-items:center}.wcf-bump-order-style-5 .wcf-bump-order-label{font-weight:600;color:#333;font-size:16px;line-height:1}.wcf-bump-order-style-5 .wcf-bump-order-label,.wcf-bump-order-style-5 .wcf-bump-order-desc{margin:0 0 15px 0}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action{border-width:2px;border-style:solid;border-color:#dea97c;border-radius:3px;line-height:1.2;padding:8px 18px;width:-moz-fit-content;width:fit-content;vertical-align:middle}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action.wcf-ob-action-button{border:none;padding:0;line-height:unset}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]{height:20px;width:20px;margin:0 10px 0 0;border-radius:3px;color:#f16334}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]:checked::before{font:normal normal 400 21px/1 dashicons;content:"";width:20px;top:2px;position:relative;left:1px}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button{margin:0;border:1px solid #ccc;color:#333;padding:8px 20px;border-radius:3px;text-decoration:none;text-transform:none}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-processing{opacity:.7;background:#fff;pointer-events:none}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-bump-remove-from-cart:hover{color:#fff;background:#e43b2c}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button:hover{cursor:pointer}.wcf-bump-order-style-5 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button.processing{background:linear-gradient(to left, #fff 50%, rgb(186, 241, 202) 50%) right;background-size:210%;border-color:#baf1ca;transition:.5s ease-out}.wcf-bump-order-style-5 .wcf-bump-order-info{display:flex;align-items:center}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-top{display:inline-block;text-align:center}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-top .wcf-bump-order-image{margin:0 0 15px 0;display:inline-block;text-align:center;max-width:100%}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-top .wcf-bump-order-action{display:inline-block}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right .wcf-bump-order-image{margin:0 0 0 15px}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right .wcf-bump-order-text{text-align:right}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right .wcf-bump-order-action{display:inline-block}.wcf-bump-order-style-5 .wcf-bump-order-info.wcf-bump-order-image-right{margin:0 0 0 15px}.wcf-bump-order-style-5 .wcf-bump-order-image{max-width:50%;display:inline-flex;margin:0 15px 0 0}.wcf-bump-order-style-5 .wcf-bump-order-image img{max-width:100%}.wcf-bump-order-style-4{border-width:1px;border-style:dashed;border-color:#f06434;background:#fff;border-radius:3px;display:inline-block;padding:15px;position:relative;width:100%;overflow:unset}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap{display:flex;align-items:center}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-info{flex:0 0 calc(100% - 100px);-webkit-flex:0 0 calc(100% - 115px)}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action{text-align:right;min-width:115px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button{margin:0;border:1px solid #ccc;color:#333;padding:8px 20px;border-radius:3px;text-decoration:none;text-transform:none}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-processing{opacity:.7;background:#fff;pointer-events:none}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button .wcf-bump-remove-from-cart:hover{color:#fff;background:#e43b2c}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button:hover{cursor:pointer}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action .wcf-bump-order-cb-button.processing{background:linear-gradient(to left, #fff 50%, rgb(186, 241, 202) 50%) right;background-size:210%;border-color:#baf1ca;transition:.5s ease-out}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]{display:none}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]:checked::before{font:normal normal 400 20px/1 cartflows-icon;width:20px;top:2px;position:relative;left:2px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image{display:inline;margin-right:25px;align-self:center;-webkit-flex:0 0 100px}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image img{width:100px;vertical-align:middle}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label{font-size:16px;margin-bottom:5px;font-weight:500;color:#f06434}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-text{align-items:center;justify-content:space-between;width:100%}.wcf-bump-order-style-4 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-desc{font-size:13px}.wcf-bump-order-style-4 .wcf-content-container{padding:25px 0}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{display:block;text-align:center}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-action{text-align:center;margin:10px 0 0 0}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:right}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-action{min-width:80px}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-text{margin:0 15px}.wcf-bump-order-style-4 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-image{margin:0 0 0 15px}.wcf-bump-order-style-3{border-width:2px;border-style:solid;border-color:#f06434;background:rgba(0,0,0,0);display:inline-block;padding:15px;position:relative;width:100%;overflow:unset}.wcf-bump-order-style-3 .wcf-bump-order-info{display:flex;align-items:center;max-width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content{padding:0}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap{display:flex;align-items:center}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action{align-self:center;max-width:75px;text-align:center;width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]{height:20px;width:20px;margin:0 10px 0 0;border-radius:3px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-action input[type=checkbox]:checked::before{font:normal normal 400 21px/1 dashicons;width:20px;height:20px;top:2px;position:relative;left:2px;content:"";color:#f16334}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label input[type=checkbox]{height:20px;width:20px;margin:0 10px 0 0;border-radius:3px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label input[type=checkbox]:checked::before{font:normal normal 400 21px/1 dashicons;width:20px;height:20px;top:2px;position:relative;left:2px;content:"";color:#f16334}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image{width:100%;margin-right:10px;align-self:center}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-image img{height:80px;width:80px;vertical-align:middle;max-width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-label{font-size:16px}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-text{align-self:center;margin-left:10px;max-width:100%}.wcf-bump-order-style-3 .wcf-bump-order-content .wcf-bump-order-field-wrap .wcf-bump-order-desc{font-size:13px;margin-top:10px}.wcf-bump-order-style-3 .wcf-content-container{padding:25px 0}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{display:block}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-action,.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-info,.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-text{display:block;text-align:center}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-image{max-width:100%;text-align:center}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap .wcf-bump-order-image img{width:100%;height:auto}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:right}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-label input[type=checkbox]{margin:0 0 0 10px}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-label .wcf-pointing-arrow{transform:rotate(180deg);display:inline-block;margin:0 10px}.wcf-bump-order-style-3 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-text{margin-right:10px}.wcf-bump-order-style-2{border:2px red dashed;border-radius:3px;display:inline-block}.wcf-bump-order-style-2 .wcf-bump-order-offer{padding:20px 25px;font-size:1.1em;font-weight:600}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-right{width:100%}.wcf-bump-order-style-2 .wcf-bump-order-desc{padding:0 25px 20px}.wcf-bump-order-style-2 .wcf-bump-order-field-wrap{border-top:2px red dashed;padding:15px 25px;margin:0;font-size:1.1em;display:block}.wcf-bump-order-style-2 .wcf-bump-order-field-wrap .wcf-bump-order-label{margin-left:1px}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-left{width:38%;display:inline-block;vertical-align:middle}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-left img{padding:0 0 25px 20px;width:100%}.wcf-bump-order-style-2 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{width:60%;display:inline-block;vertical-align:middle}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer{text-align:center}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{text-align:center}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left,.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-right{display:block;width:100%;text-align:center}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left img{padding:25px 25px 0 25px}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer{text-align:right}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:right}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=checkbox],.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=radio]{margin-left:5px}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap .wcf-pointing-arrow{transform:rotate(180deg);margin-top:-5px}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-right{display:inline-block;width:60%;vertical-align:middle;text-align:right}.wcf-bump-order-style-2 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-left{width:38%;display:inline-block}.wcf-bump-order-style-2 .wcf-bump-order-field-wrap,.wcf-bump-order-style-2 .wcf-bump-order-field-wrap *{cursor:pointer}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-2 .wcf-bump-order-offer-content-left{width:14%}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-2 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{width:85%}.wcf-show-coupon-field-toggle{padding-top:1em}.wcf-bump-order-style-1{background:#f1f1f1;border-style:none;border-width:2px;border-color:red;border-radius:3px;display:inline-block}.wcf-bump-order-style-1 .wcf-bump-order-offer{padding:0 25px 10px;font-size:1.2em}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-field-wrap{text-align:center}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left,.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-right{display:block;width:100%;text-align:center}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-top .wcf-bump-order-offer-content-left img{padding:25px 25px 0 25px}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap{text-align:right}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=checkbox],.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap input[type=radio]{margin-left:5px}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-field-wrap .wcf-pointing-arrow{transform:rotate(180deg);margin-top:-5px}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-right{display:inline-block;width:60%;vertical-align:middle;text-align:right}.wcf-bump-order-style-1 .wcf-bump-order-content.wcf-bump-order-image-right .wcf-bump-order-offer-content-left{width:38%;display:inline-block}.wcf-bump-order-style-1 .wcf-content-container{padding:25px 0}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-right{width:100%}.wcf-bump-order-style-1 .wcf-bump-order-desc{padding:0 25px}.wcf-bump-order-style-1 .wcf-bump-order-field-wrap{border-style:none;border-width:2px;border-color:red;padding:20px 25px;margin:0;font-size:1.1em;display:block;background:#ddd}.wcf-bump-order-style-1 .wcf-bump-order-field-wrap .wcf-bump-order-label{margin-left:1px}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-left{width:38%;display:inline-block;vertical-align:middle}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-left img{padding:0 0 0 20px}.wcf-bump-order-style-1 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{width:60%;display:inline-block;vertical-align:middle}.wcf-bump-order-style-1 .wcf-bump-order-field-wrap,.wcf-bump-order-style-1 .wcf-bump-order-field-wrap *{cursor:pointer}.wcf-embed-checkout-form .woocommerce #payment .wcf-bump-order-wrap input[type=checkbox]{margin:0 4px 0 0}.wcf-embed-checkout-form-two-column .wcf-bump-order-style-1.wcf-after-customer,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-2.wcf-after-customer,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-3.wcf-after-customer{float:left;width:calc(55% - 40px)}.wcf-embed-checkout-form-two-column .wcf-bump-order-style-1.wcf-after-order,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-2.wcf-after-order,.wcf-embed-checkout-form-two-column .wcf-bump-order-style-3.wcf-after-order{margin:1em auto 0}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-1 .wcf-bump-order-offer-content-left{width:14%}.wcf-embed-checkout-form-one-column .wcf-bump-order-style-1 .wcf-bump-order-offer-content-left+.wcf-bump-order-offer-content-right{width:85%}.wcf-bump-order-wrap .wcf-bump-order-offer-content-left img{max-width:100%;padding:25px}
859
  .wcf-order-bump-setting-tab table tr:first-child .wcf-field__data--label{padding:0 0 5px}
860
+ .wcf-order-bump-content-tab{display:flex}.wcf-order-bump-content-tab .wcf-order-bump-content-tab__settings,.wcf-order-bump-content-tab .wcf-order-bump-content-tab__preview{width:50%}.wcf-order-bump-content-tab .wcf-order-bump-content-tab__preview{margin:0 0 0 30px}.wcf-order-bump-content-tab .wcf-order-bump-content-tab__settings .wcf-field__data--label label{width:230px}.wcf-order-bump-content-tab .wcf-number-field input[type=number]{padding-right:7px}.wcf-order-bump-content-tab table tr:first-child .wcf-field__data--label{padding:0 0 5px}
861
+ .wcf-order-bumps-rules--group_rules{display:flex;margin-bottom:10px;position:relative}.wcf-order-bumps-rules--group_rules:first-child{position:relative;margin-top:-17px}.wcf-order-bumps-rules--group_rules:not(first-child){margin-top:10px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions{display:flex}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-conditional-field-text,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-conditional-field-text{align-self:center;margin-right:10px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-select-option,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-product-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-product-cat-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-coupon-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-number-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-select2-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-select-option,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-product-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-product-cat-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-coupon-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-number-field,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-select2-field{margin-right:18px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .wcf-order-bumps-rules--and_text,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .wcf-order-bumps-rules--and_text{margin:0 20px 0 10px;align-self:center}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .and-close,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .and-close{align-self:center;cursor:pointer;margin:5px 10px 0 0;font-size:18px}.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_fields .and-close:hover,.wcf-order-bumps-rules--group_rules .wcf-order-bumps-rules--rule_actions .and-close:hover{color:#2271b1}
862
+ .wcf-order-bumps-rules-page .sortable-chosen .sortable-ghost{border:1px dashed #aaa}.wcf-order-bumps-rules-page .sortable-chosen .wcf-order-bumps-rules--group{border:1px dashed #aaa;background:#fafafb}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--enable_option{margin-bottom:30px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--enable_option label{display:flex;justify-content:center;align-items:center}.wcf-order-bumps-rules-page div .wcf-order-bumps-rules-page--group_wrapper{cursor:grab}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group{padding:20px;background-color:#fafafa;border:1px dashed #fafafa}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group select{margin:0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf__control{width:400px;border:1px solid #bebebe}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf__value-container{line-height:16px;max-height:36px;overflow-y:auto;scroll-behavior:smooth}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf__value-container .wcf__multi-value{margin:5px 3px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--add-rule__repeater{display:flex;position:relative;margin-top:-10px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--add-rule__repeater .wcf-button--secondary:hover{color:#2271b1;border:1px solid #2271b1;background-color:#fff}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper{display:inline-block;margin:50px 0 45px 0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-selection-field .wcf-select2-input{width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-select-option select{height:38px;border:1px solid #bebebe}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-select-option:nth-child(3) select{width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules--wrapper .wcf-field__data--content input{border:1px solid #bebebe;width:400px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label{margin-left:10px;position:relative;align-items:center;display:flex}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group{display:flex;position:relative;border:1px solid #ddd;border-radius:2px;margin-right:17px;background-color:#fafafa}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group::before,.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group::after{content:"";height:11px;width:1px;background-color:#bebebe;position:absolute}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group::before{bottom:28px;left:20px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group::after{top:28px;right:23px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group_rules__condition-label .wcf--condition-label__and_group .wcf--condition-label__and_group__text{font-weight:500;font-size:12px;color:#555;padding:5px 10px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header{display:flex;justify-content:space-between;align-items:center}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-order-bumps-rules--group_header__left{display:flex;justify-content:space-between;align-items:center}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-order-bumps-rules--group_header__left .wcf-group-header--text{font-weight:500;font-size:14px;color:#444}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-order-bumps-rules--group_header__left .wcf-order-bumps-rules__handle{margin-right:10px;cursor:move;font-size:20px}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-checkout-rules--group_header__right .dashicons{cursor:pointer;margin-left:10px;font-size:30px;line-height:.6}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group .wcf-order-bumps-rules--group-header .wcf-checkout-rules--group_header__right .wcf-order-bumps-rules--group_id{font-size:10px;color:#a3a2a2}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--group_wrapper__footer{display:flex;margin:20px 0;width:100%;justify-content:space-between;position:relative}.wcf-order-bumps-rules-page .wcf-order-bumps-rules-page--group_wrapper__footer .wcf-button--secondary:hover{color:#2271b1;border:1px solid #2271b1;background-color:#fff}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--group_rules:last-child{margin-bottom:0}.wcf-order-bumps-rules-page .wcf-order-bumps-rules--or_group{font-weight:500;font-size:14px;background-color:#fafafa;padding:5px 15px;color:#555;border-radius:2px;letter-spacing:.5px;border:1px solid #ddd;margin:auto 0}
863
+ .wcf-edit-ob__title-wrap{display:flex;justify-content:space-between;align-items:center;padding:0 15px 10px;margin:0}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap{display:flex}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status{margin-left:18px;align-self:center;display:flex;position:relative}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch{border:1px solid #ccc;cursor:pointer;text-indent:-999em;display:block;width:36px;height:18px;border-radius:30px;position:relative;box-sizing:border-box;transition:all .3s ease;box-shadow:inset 0 0 0 0 rgba(0,0,0,0)}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch:focus{outline:none}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch::before{border-radius:50%;background:#fff;content:"";position:absolute;display:block;width:12px;height:12px;top:2px;left:4px;transition:all .15s ease;box-shadow:0 1px 3px rgba(0,0,0,.3)}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch[data-wcf-order-bump-switch=true]{box-shadow:inset 0 0 0 11px var(--primary-border-color);border-color:var(--primary-border-color)}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch[data-wcf-order-bump-switch=true]::before{transform:translateX(16px)}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-switch[data-wcf-order-bump-switch=false]{background:#ccc}.wcf-edit-ob__title-wrap .wcf-ob-header--action-wrap .wcf-ob-header--ob-status .wcf-spinner{float:none;margin:0;animation:spin 2s linear infinite;position:absolute;right:0;left:45px;color:#434343}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.wcf-edit-ob__title-wrap .wcf-ob-header--title{font-size:22px;line-height:40px;color:#363b4e;font-weight:500}.wcf-edit-ob__title-wrap .wcf-ob-header__title--text{font-size:22px;line-height:40px;color:#444;font-weight:500}.wcf-edit-ob__title-wrap .wcf-ob-header__title--text input{width:350px;background:#fff;color:#444;border-color:#aaa;height:40px;line-height:1;font-weight:400}.wcf-edit-ob__title-wrap .wcf-ob-header__title--text input:focus{border-color:#777}.wcf-edit-ob__title-wrap .wcf-ob__title--editable{display:flex;align-items:center}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons{display:inline;vertical-align:middle}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons a,.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons button{text-decoration:none;vertical-align:middle;margin-left:10px}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-button--small{padding:9px 20px;line-height:1;font-size:14px;font-weight:400}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-button--small.wcf-saving{animation:wcf-saving 2.5s linear infinite;opacity:1;background-size:100px 100%;background-image:linear-gradient(-45deg, #f06335 28%, #f78860 0, #f78860 72%, #f06335 0)}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-ob-header__title--edit .dashicons-edit{vertical-align:unset}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-ob-header__title--edit .dashicons-edit::before{padding:5px;font-size:18px;text-decoration:none;background:#fff;display:inline-block;border-radius:100%}.wcf-edit-ob__title-wrap .wcf-ob__title--editable .wcf-ob-header__title--buttons .wcf-ob-header__title--edit .dashicons-edit:hover{color:#f16334}.wcf-edit-ob__title-wrap .wcf-ob-header--breadcrums .wcf-breadcrum--nav-item{color:#444;font-weight:500;font-size:14px}.wcf-edit-ob__title-wrap .wcf-ob-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link{text-decoration:none;color:var(--primary-color)}.wcf-edit-ob__title-wrap .wcf-ob-header--breadcrums .wcf-breadcrum--nav-item .wcf-breadcrum--nav-item__link:hover{color:var(--primary-hv-color)}
admin-core/assets/build/editor-app.js CHANGED
@@ -1,14 +1,18 @@
1
- !function(){var e={597:function(e,t,n){"use strict";var r,a=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},o=(r=n(9196))&&r.__esModule?r:{default:r};t.Z=function(e){var t=e.fill,n=void 0===t?"currentColor":t,r=e.width,i=void 0===r?24:r,s=e.height,c=void 0===s?24:s,l=e.style,u=void 0===l?{}:l,d=function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["fill","width","height","style"]);return o.default.createElement("svg",a({viewBox:"0 0 24 24",style:a({fill:n,width:i,height:c},u)},d),o.default.createElement("path",{d:"M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z"}))}},3891:function(e,t,n){"use strict";var r,a=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},o=(r=n(9196))&&r.__esModule?r:{default:r};t.Z=function(e){var t=e.fill,n=void 0===t?"currentColor":t,r=e.width,i=void 0===r?24:r,s=e.height,c=void 0===s?24:s,l=e.style,u=void 0===l?{}:l,d=function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["fill","width","height","style"]);return o.default.createElement("svg",a({viewBox:"0 0 24 24",style:a({fill:n,width:i,height:c},u)},d),o.default.createElement("path",{d:"M12,18.17L8.83,15L7.42,16.41L12,21L16.59,16.41L15.17,15M12,5.83L15.17,9L16.58,7.59L12,3L7.41,7.59L8.83,9L12,5.83Z"}))}},3366:function(){window.wcfWpNavMenuChange=function(e){const t=cartflows_admin.admin_base_slug,n=`.wp-submenu-wrap li > a[href$="${e?"admin.php?page="+t+"&path="+encodeURIComponent(e):"admin.php?page="+t}"]`,r=document.querySelectorAll(n);Array.from(document.getElementsByClassName("current")).forEach((function(e){e.classList.remove("current")})),Array.from(r).forEach((function(e){e.parentElement.classList.add("current")}))},window.wcfUnsavedChanges=!1,window.onbeforeunload=function(){if(wcfUnsavedChanges)return"Unsaved Changes"}},9742:function(e,t){"use strict";t.byteLength=function(e){var t=c(e),n=t[0],r=t[1];return 3*(n+r)/4-r},t.toByteArray=function(e){var t,n,o=c(e),i=o[0],s=o[1],l=new a(function(e,t,n){return 3*(t+n)/4-n}(0,i,s)),u=0,d=s>0?i-4:i;for(n=0;n<d;n+=4)t=r[e.charCodeAt(n)]<<18|r[e.charCodeAt(n+1)]<<12|r[e.charCodeAt(n+2)]<<6|r[e.charCodeAt(n+3)],l[u++]=t>>16&255,l[u++]=t>>8&255,l[u++]=255&t;return 2===s&&(t=r[e.charCodeAt(n)]<<2|r[e.charCodeAt(n+1)]>>4,l[u++]=255&t),1===s&&(t=r[e.charCodeAt(n)]<<10|r[e.charCodeAt(n+1)]<<4|r[e.charCodeAt(n+2)]>>2,l[u++]=t>>8&255,l[u++]=255&t),l},t.fromByteArray=function(e){for(var t,r=e.length,a=r%3,o=[],i=16383,s=0,c=r-a;s<c;s+=i)o.push(l(e,s,s+i>c?c:s+i));return 1===a?(t=e[r-1],o.push(n[t>>2]+n[t<<4&63]+"==")):2===a&&(t=(e[r-2]<<8)+e[r-1],o.push(n[t>>10]+n[t>>4&63]+n[t<<2&63]+"=")),o.join("")};for(var n=[],r=[],a="undefined"!=typeof Uint8Array?Uint8Array:Array,o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",i=0,s=o.length;i<s;++i)n[i]=o[i],r[o.charCodeAt(i)]=i;function c(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");return-1===n&&(n=t),[n,n===t?0:4-n%4]}function l(e,t,r){for(var a,o,i=[],s=t;s<r;s+=3)a=(e[s]<<16&16711680)+(e[s+1]<<8&65280)+(255&e[s+2]),i.push(n[(o=a)>>18&63]+n[o>>12&63]+n[o>>6&63]+n[63&o]);return i.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},8764:function(e,t,n){"use strict";var r=n(9742),a=n(645),o="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;t.Buffer=c,t.SlowBuffer=function(e){return+e!=e&&(e=0),c.alloc(+e)},t.INSPECT_MAX_BYTES=50;var i=2147483647;function s(e){if(e>i)throw new RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,c.prototype),t}function c(e,t,n){if("number"==typeof e){if("string"==typeof t)throw new TypeError('The "string" argument must be of type string. Received type number');return d(e)}return l(e,t,n)}function l(e,t,n){if("string"==typeof e)return function(e,t){if("string"==typeof t&&""!==t||(t="utf8"),!c.isEncoding(t))throw new TypeError("Unknown encoding: "+t);var n=0|h(e,t),r=s(n),a=r.write(e,t);return a!==n&&(r=r.slice(0,a)),r}(e,t);if(ArrayBuffer.isView(e))return function(e){if(Q(e,Uint8Array)){var t=new Uint8Array(e);return f(t.buffer,t.byteOffset,t.byteLength)}return p(e)}(e);if(null==e)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);if(Q(e,ArrayBuffer)||e&&Q(e.buffer,ArrayBuffer))return f(e,t,n);if("undefined"!=typeof SharedArrayBuffer&&(Q(e,SharedArrayBuffer)||e&&Q(e.buffer,SharedArrayBuffer)))return f(e,t,n);if("number"==typeof e)throw new TypeError('The "value" argument must not be of type number. Received type number');var r=e.valueOf&&e.valueOf();if(null!=r&&r!==e)return c.from(r,t,n);var a=function(e){if(c.isBuffer(e)){var t=0|m(e.length),n=s(t);return 0===n.length||e.copy(n,0,0,t),n}return void 0!==e.length?"number"!=typeof e.length||B(e.length)?s(0):p(e):"Buffer"===e.type&&Array.isArray(e.data)?p(e.data):void 0}(e);if(a)return a;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return c.from(e[Symbol.toPrimitive]("string"),t,n);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}function u(e){if("number"!=typeof e)throw new TypeError('"size" argument must be of type number');if(e<0)throw new RangeError('The value "'+e+'" is invalid for option "size"')}function d(e){return u(e),s(e<0?0:0|m(e))}function p(e){for(var t=e.length<0?0:0|m(e.length),n=s(t),r=0;r<t;r+=1)n[r]=255&e[r];return n}function f(e,t,n){if(t<0||e.byteLength<t)throw new RangeError('"offset" is outside of buffer bounds');if(e.byteLength<t+(n||0))throw new RangeError('"length" is outside of buffer bounds');var r;return r=void 0===t&&void 0===n?new Uint8Array(e):void 0===n?new Uint8Array(e,t):new Uint8Array(e,t,n),Object.setPrototypeOf(r,c.prototype),r}function m(e){if(e>=i)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+i.toString(16)+" bytes");return 0|e}function h(e,t){if(c.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||Q(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof e);var n=e.length,r=arguments.length>2&&!0===arguments[2];if(!r&&0===n)return 0;for(var a=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return U(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return Y(e).length;default:if(a)return r?-1:U(e).length;t=(""+t).toLowerCase(),a=!0}}function g(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return S(this,t,n);case"utf8":case"utf-8":return x(this,t,n);case"ascii":return j(this,t,n);case"latin1":case"binary":return T(this,t,n);case"base64":return D(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function y(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function v(e,t,n,r,a){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),B(n=+n)&&(n=a?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(a)return-1;n=e.length-1}else if(n<0){if(!a)return-1;n=0}if("string"==typeof t&&(t=c.from(t,r)),c.isBuffer(t))return 0===t.length?-1:w(e,t,n,r,a);if("number"==typeof t)return t&=255,"function"==typeof Uint8Array.prototype.indexOf?a?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):w(e,[t],n,r,a);throw new TypeError("val must be string, number or Buffer")}function w(e,t,n,r,a){var o,i=1,s=e.length,c=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;i=2,s/=2,c/=2,n/=2}function l(e,t){return 1===i?e[t]:e.readUInt16BE(t*i)}if(a){var u=-1;for(o=n;o<s;o++)if(l(e,o)===l(t,-1===u?0:o-u)){if(-1===u&&(u=o),o-u+1===c)return u*i}else-1!==u&&(o-=o-u),u=-1}else for(n+c>s&&(n=s-c),o=n;o>=0;o--){for(var d=!0,p=0;p<c;p++)if(l(e,o+p)!==l(t,p)){d=!1;break}if(d)return o}return-1}function b(e,t,n,r){n=Number(n)||0;var a=e.length-n;r?(r=Number(r))>a&&(r=a):r=a;var o=t.length;r>o/2&&(r=o/2);for(var i=0;i<r;++i){var s=parseInt(t.substr(2*i,2),16);if(B(s))return i;e[n+i]=s}return i}function M(e,t,n,r){return R(U(t,e.length-n),e,n,r)}function E(e,t,n,r){return R(function(e){for(var t=[],n=0;n<e.length;++n)t.push(255&e.charCodeAt(n));return t}(t),e,n,r)}function _(e,t,n,r){return R(Y(t),e,n,r)}function N(e,t,n,r){return R(function(e,t){for(var n,r,a,o=[],i=0;i<e.length&&!((t-=2)<0);++i)r=(n=e.charCodeAt(i))>>8,a=n%256,o.push(a),o.push(r);return o}(t,e.length-n),e,n,r)}function D(e,t,n){return 0===t&&n===e.length?r.fromByteArray(e):r.fromByteArray(e.slice(t,n))}function x(e,t,n){n=Math.min(e.length,n);for(var r=[],a=t;a<n;){var o,i,s,c,l=e[a],u=null,d=l>239?4:l>223?3:l>191?2:1;if(a+d<=n)switch(d){case 1:l<128&&(u=l);break;case 2:128==(192&(o=e[a+1]))&&(c=(31&l)<<6|63&o)>127&&(u=c);break;case 3:o=e[a+1],i=e[a+2],128==(192&o)&&128==(192&i)&&(c=(15&l)<<12|(63&o)<<6|63&i)>2047&&(c<55296||c>57343)&&(u=c);break;case 4:o=e[a+1],i=e[a+2],s=e[a+3],128==(192&o)&&128==(192&i)&&128==(192&s)&&(c=(15&l)<<18|(63&o)<<12|(63&i)<<6|63&s)>65535&&c<1114112&&(u=c)}null===u?(u=65533,d=1):u>65535&&(u-=65536,r.push(u>>>10&1023|55296),u=56320|1023&u),r.push(u),a+=d}return function(e){var t=e.length;if(t<=I)return String.fromCharCode.apply(String,e);for(var n="",r=0;r<t;)n+=String.fromCharCode.apply(String,e.slice(r,r+=I));return n}(r)}t.kMaxLength=i,c.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(e,t),42===e.foo()}catch(e){return!1}}(),c.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(c.prototype,"parent",{enumerable:!0,get:function(){if(c.isBuffer(this))return this.buffer}}),Object.defineProperty(c.prototype,"offset",{enumerable:!0,get:function(){if(c.isBuffer(this))return this.byteOffset}}),c.poolSize=8192,c.from=function(e,t,n){return l(e,t,n)},Object.setPrototypeOf(c.prototype,Uint8Array.prototype),Object.setPrototypeOf(c,Uint8Array),c.alloc=function(e,t,n){return function(e,t,n){return u(e),e<=0?s(e):void 0!==t?"string"==typeof n?s(e).fill(t,n):s(e).fill(t):s(e)}(e,t,n)},c.allocUnsafe=function(e){return d(e)},c.allocUnsafeSlow=function(e){return d(e)},c.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==c.prototype},c.compare=function(e,t){if(Q(e,Uint8Array)&&(e=c.from(e,e.offset,e.byteLength)),Q(t,Uint8Array)&&(t=c.from(t,t.offset,t.byteLength)),!c.isBuffer(e)||!c.isBuffer(t))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;for(var n=e.length,r=t.length,a=0,o=Math.min(n,r);a<o;++a)if(e[a]!==t[a]){n=e[a],r=t[a];break}return n<r?-1:r<n?1:0},c.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},c.concat=function(e,t){if(!Array.isArray(e))throw new TypeError('"list" argument must be an Array of Buffers');if(0===e.length)return c.alloc(0);var n;if(void 0===t)for(t=0,n=0;n<e.length;++n)t+=e[n].length;var r=c.allocUnsafe(t),a=0;for(n=0;n<e.length;++n){var o=e[n];if(Q(o,Uint8Array))a+o.length>r.length?c.from(o).copy(r,a):Uint8Array.prototype.set.call(r,o,a);else{if(!c.isBuffer(o))throw new TypeError('"list" argument must be an Array of Buffers');o.copy(r,a)}a+=o.length}return r},c.byteLength=h,c.prototype._isBuffer=!0,c.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t<e;t+=2)y(this,t,t+1);return this},c.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var t=0;t<e;t+=4)y(this,t,t+3),y(this,t+1,t+2);return this},c.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var t=0;t<e;t+=8)y(this,t,t+7),y(this,t+1,t+6),y(this,t+2,t+5),y(this,t+3,t+4);return this},c.prototype.toString=function(){var e=this.length;return 0===e?"":0===arguments.length?x(this,0,e):g.apply(this,arguments)},c.prototype.toLocaleString=c.prototype.toString,c.prototype.equals=function(e){if(!c.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e||0===c.compare(this,e)},c.prototype.inspect=function(){var e="",n=t.INSPECT_MAX_BYTES;return e=this.toString("hex",0,n).replace(/(.{2})/g,"$1 ").trim(),this.length>n&&(e+=" ... "),"<Buffer "+e+">"},o&&(c.prototype[o]=c.prototype.inspect),c.prototype.compare=function(e,t,n,r,a){if(Q(e,Uint8Array)&&(e=c.from(e,e.offset,e.byteLength)),!c.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===a&&(a=this.length),t<0||n>e.length||r<0||a>this.length)throw new RangeError("out of range index");if(r>=a&&t>=n)return 0;if(r>=a)return-1;if(t>=n)return 1;if(this===e)return 0;for(var o=(a>>>=0)-(r>>>=0),i=(n>>>=0)-(t>>>=0),s=Math.min(o,i),l=this.slice(r,a),u=e.slice(t,n),d=0;d<s;++d)if(l[d]!==u[d]){o=l[d],i=u[d];break}return o<i?-1:i<o?1:0},c.prototype.includes=function(e,t,n){return-1!==this.indexOf(e,t,n)},c.prototype.indexOf=function(e,t,n){return v(this,e,t,n,!0)},c.prototype.lastIndexOf=function(e,t,n){return v(this,e,t,n,!1)},c.prototype.write=function(e,t,n,r){if(void 0===t)r="utf8",n=this.length,t=0;else if(void 0===n&&"string"==typeof t)r=t,n=this.length,t=0;else{if(!isFinite(t))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");t>>>=0,isFinite(n)?(n>>>=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var a=this.length-t;if((void 0===n||n>a)&&(n=a),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var o=!1;;)switch(r){case"hex":return b(this,e,t,n);case"utf8":case"utf-8":return M(this,e,t,n);case"ascii":case"latin1":case"binary":return E(this,e,t,n);case"base64":return _(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return N(this,e,t,n);default:if(o)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),o=!0}},c.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var I=4096;function j(e,t,n){var r="";n=Math.min(e.length,n);for(var a=t;a<n;++a)r+=String.fromCharCode(127&e[a]);return r}function T(e,t,n){var r="";n=Math.min(e.length,n);for(var a=t;a<n;++a)r+=String.fromCharCode(e[a]);return r}function S(e,t,n){var r=e.length;(!t||t<0)&&(t=0),(!n||n<0||n>r)&&(n=r);for(var a="",o=t;o<n;++o)a+=F[e[o]];return a}function O(e,t,n){for(var r=e.slice(t,n),a="",o=0;o<r.length-1;o+=2)a+=String.fromCharCode(r[o]+256*r[o+1]);return a}function k(e,t,n){if(e%1!=0||e<0)throw new RangeError("offset is not uint");if(e+t>n)throw new RangeError("Trying to access beyond buffer length")}function A(e,t,n,r,a,o){if(!c.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>a||t<o)throw new RangeError('"value" argument is out of bounds');if(n+r>e.length)throw new RangeError("Index out of range")}function C(e,t,n,r,a,o){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function L(e,t,n,r,o){return t=+t,n>>>=0,o||C(e,0,n,4),a.write(e,t,n,r,23,4),n+4}function z(e,t,n,r,o){return t=+t,n>>>=0,o||C(e,0,n,8),a.write(e,t,n,r,52,8),n+8}c.prototype.slice=function(e,t){var n=this.length;(e=~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t<e&&(t=e);var r=this.subarray(e,t);return Object.setPrototypeOf(r,c.prototype),r},c.prototype.readUintLE=c.prototype.readUIntLE=function(e,t,n){e>>>=0,t>>>=0,n||k(e,t,this.length);for(var r=this[e],a=1,o=0;++o<t&&(a*=256);)r+=this[e+o]*a;return r},c.prototype.readUintBE=c.prototype.readUIntBE=function(e,t,n){e>>>=0,t>>>=0,n||k(e,t,this.length);for(var r=this[e+--t],a=1;t>0&&(a*=256);)r+=this[e+--t]*a;return r},c.prototype.readUint8=c.prototype.readUInt8=function(e,t){return e>>>=0,t||k(e,1,this.length),this[e]},c.prototype.readUint16LE=c.prototype.readUInt16LE=function(e,t){return e>>>=0,t||k(e,2,this.length),this[e]|this[e+1]<<8},c.prototype.readUint16BE=c.prototype.readUInt16BE=function(e,t){return e>>>=0,t||k(e,2,this.length),this[e]<<8|this[e+1]},c.prototype.readUint32LE=c.prototype.readUInt32LE=function(e,t){return e>>>=0,t||k(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},c.prototype.readUint32BE=c.prototype.readUInt32BE=function(e,t){return e>>>=0,t||k(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},c.prototype.readIntLE=function(e,t,n){e>>>=0,t>>>=0,n||k(e,t,this.length);for(var r=this[e],a=1,o=0;++o<t&&(a*=256);)r+=this[e+o]*a;return r>=(a*=128)&&(r-=Math.pow(2,8*t)),r},c.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||k(e,t,this.length);for(var r=t,a=1,o=this[e+--r];r>0&&(a*=256);)o+=this[e+--r]*a;return o>=(a*=128)&&(o-=Math.pow(2,8*t)),o},c.prototype.readInt8=function(e,t){return e>>>=0,t||k(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},c.prototype.readInt16LE=function(e,t){e>>>=0,t||k(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},c.prototype.readInt16BE=function(e,t){e>>>=0,t||k(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},c.prototype.readInt32LE=function(e,t){return e>>>=0,t||k(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},c.prototype.readInt32BE=function(e,t){return e>>>=0,t||k(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},c.prototype.readFloatLE=function(e,t){return e>>>=0,t||k(e,4,this.length),a.read(this,e,!0,23,4)},c.prototype.readFloatBE=function(e,t){return e>>>=0,t||k(e,4,this.length),a.read(this,e,!1,23,4)},c.prototype.readDoubleLE=function(e,t){return e>>>=0,t||k(e,8,this.length),a.read(this,e,!0,52,8)},c.prototype.readDoubleBE=function(e,t){return e>>>=0,t||k(e,8,this.length),a.read(this,e,!1,52,8)},c.prototype.writeUintLE=c.prototype.writeUIntLE=function(e,t,n,r){e=+e,t>>>=0,n>>>=0,r||A(this,e,t,n,Math.pow(2,8*n)-1,0);var a=1,o=0;for(this[t]=255&e;++o<n&&(a*=256);)this[t+o]=e/a&255;return t+n},c.prototype.writeUintBE=c.prototype.writeUIntBE=function(e,t,n,r){e=+e,t>>>=0,n>>>=0,r||A(this,e,t,n,Math.pow(2,8*n)-1,0);var a=n-1,o=1;for(this[t+a]=255&e;--a>=0&&(o*=256);)this[t+a]=e/o&255;return t+n},c.prototype.writeUint8=c.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||A(this,e,t,1,255,0),this[t]=255&e,t+1},c.prototype.writeUint16LE=c.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||A(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},c.prototype.writeUint16BE=c.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||A(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},c.prototype.writeUint32LE=c.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||A(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},c.prototype.writeUint32BE=c.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||A(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},c.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var a=Math.pow(2,8*n-1);A(this,e,t,n,a-1,-a)}var o=0,i=1,s=0;for(this[t]=255&e;++o<n&&(i*=256);)e<0&&0===s&&0!==this[t+o-1]&&(s=1),this[t+o]=(e/i>>0)-s&255;return t+n},c.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var a=Math.pow(2,8*n-1);A(this,e,t,n,a-1,-a)}var o=n-1,i=1,s=0;for(this[t+o]=255&e;--o>=0&&(i*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/i>>0)-s&255;return t+n},c.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||A(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},c.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||A(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},c.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||A(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},c.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||A(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},c.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||A(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},c.prototype.writeFloatLE=function(e,t,n){return L(this,e,t,!0,n)},c.prototype.writeFloatBE=function(e,t,n){return L(this,e,t,!1,n)},c.prototype.writeDoubleLE=function(e,t,n){return z(this,e,t,!0,n)},c.prototype.writeDoubleBE=function(e,t,n){return z(this,e,t,!1,n)},c.prototype.copy=function(e,t,n,r){if(!c.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===e.length||0===this.length)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t<r-n&&(r=e.length-t+n);var a=r-n;return this===e&&"function"==typeof Uint8Array.prototype.copyWithin?this.copyWithin(t,n,r):Uint8Array.prototype.set.call(e,this.subarray(n,r),t),a},c.prototype.fill=function(e,t,n,r){if("string"==typeof e){if("string"==typeof t?(r=t,t=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!c.isEncoding(r))throw new TypeError("Unknown encoding: "+r);if(1===e.length){var a=e.charCodeAt(0);("utf8"===r&&a<128||"latin1"===r)&&(e=a)}}else"number"==typeof e?e&=255:"boolean"==typeof e&&(e=Number(e));if(t<0||this.length<t||this.length<n)throw new RangeError("Out of range index");if(n<=t)return this;var o;if(t>>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(o=t;o<n;++o)this[o]=e;else{var i=c.isBuffer(e)?e:c.from(e,r),s=i.length;if(0===s)throw new TypeError('The value "'+e+'" is invalid for argument "value"');for(o=0;o<n-t;++o)this[o+t]=i[o%s]}return this};var P=/[^+/0-9A-Za-z-_]/g;function U(e,t){var n;t=t||1/0;for(var r=e.length,a=null,o=[],i=0;i<r;++i){if((n=e.charCodeAt(i))>55295&&n<57344){if(!a){if(n>56319){(t-=3)>-1&&o.push(239,191,189);continue}if(i+1===r){(t-=3)>-1&&o.push(239,191,189);continue}a=n;continue}if(n<56320){(t-=3)>-1&&o.push(239,191,189),a=n;continue}n=65536+(a-55296<<10|n-56320)}else a&&(t-=3)>-1&&o.push(239,191,189);if(a=null,n<128){if((t-=1)<0)break;o.push(n)}else if(n<2048){if((t-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function Y(e){return r.toByteArray(function(e){if((e=(e=e.split("=")[0]).trim().replace(P,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function R(e,t,n,r){for(var a=0;a<r&&!(a+n>=t.length||a>=e.length);++a)t[a+n]=e[a];return a}function Q(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}function B(e){return e!=e}var F=function(){for(var e="0123456789abcdef",t=new Array(256),n=0;n<16;++n)for(var r=16*n,a=0;a<16;++a)t[r+a]=e[n]+e[a];return t}()},4184:function(e,t){var n;!function(){"use strict";var r={}.hasOwnProperty;function a(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var o=typeof n;if("string"===o||"number"===o)e.push(n);else if(Array.isArray(n)){if(n.length){var i=a.apply(null,n);i&&e.push(i)}}else if("object"===o)if(n.toString===Object.prototype.toString)for(var s in n)r.call(n,s)&&n[s]&&e.push(s);else e.push(n.toString())}}return e.join(" ")}e.exports?(a.default=a,e.exports=a):void 0===(n=function(){return a}.apply(t,[]))||(e.exports=n)}()},681:function(e,t,n){e.exports={graphlib:n(574),layout:n(8123),debug:n(7570),util:{time:n(1138).time,notime:n(1138).notime},version:n(8177)}},2188:function(e,t,n){"use strict";var r=n(8436),a=n(4079);e.exports={run:function(e){var t="greedy"===e.graph().acyclicer?a(e,function(e){return function(t){return e.edge(t).weight}}(e)):function(e){var t=[],n={},a={};return r.forEach(e.nodes(),(function o(i){r.has(a,i)||(a[i]=!0,n[i]=!0,r.forEach(e.outEdges(i),(function(e){r.has(n,e.w)?t.push(e):o(e.w)})),delete n[i])})),t}(e);r.forEach(t,(function(t){var n=e.edge(t);e.removeEdge(t),n.forwardName=t.name,n.reversed=!0,e.setEdge(t.w,t.v,n,r.uniqueId("rev"))}))},undo:function(e){r.forEach(e.edges(),(function(t){var n=e.edge(t);if(n.reversed){e.removeEdge(t);var r=n.forwardName;delete n.reversed,delete n.forwardName,e.setEdge(t.w,t.v,n,r)}}))}}},1133:function(e,t,n){var r=n(8436),a=n(1138);function o(e,t,n,r,o,i){var s={width:0,height:0,rank:i,borderType:t},c=o[t][i-1],l=a.addDummyNode(e,"border",s,n);o[t][i]=l,e.setParent(l,r),c&&e.setEdge(c,l,{weight:1})}e.exports=function(e){r.forEach(e.children(),(function t(n){var a=e.children(n),i=e.node(n);if(a.length&&r.forEach(a,t),r.has(i,"minRank")){i.borderLeft=[],i.borderRight=[];for(var s=i.minRank,c=i.maxRank+1;s<c;++s)o(e,"borderLeft","_bl",n,i,s),o(e,"borderRight","_br",n,i,s)}}))}},3258:function(e,t,n){"use strict";var r=n(8436);function a(e){r.forEach(e.nodes(),(function(t){o(e.node(t))})),r.forEach(e.edges(),(function(t){o(e.edge(t))}))}function o(e){var t=e.width;e.width=e.height,e.height=t}function i(e){e.y=-e.y}function s(e){var t=e.x;e.x=e.y,e.y=t}e.exports={adjust:function(e){var t=e.graph().rankdir.toLowerCase();"lr"!==t&&"rl"!==t||a(e)},undo:function(e){var t=e.graph().rankdir.toLowerCase();"bt"!==t&&"rl"!==t||function(e){r.forEach(e.nodes(),(function(t){i(e.node(t))})),r.forEach(e.edges(),(function(t){var n=e.edge(t);r.forEach(n.points,i),r.has(n,"y")&&i(n)}))}(e),"lr"!==t&&"rl"!==t||(function(e){r.forEach(e.nodes(),(function(t){s(e.node(t))})),r.forEach(e.edges(),(function(t){var n=e.edge(t);r.forEach(n.points,s),r.has(n,"x")&&s(n)}))}(e),a(e))}}},7822:function(e){function t(){var e={};e._next=e._prev=e,this._sentinel=e}function n(e){e._prev._next=e._next,e._next._prev=e._prev,delete e._next,delete e._prev}function r(e,t){if("_next"!==e&&"_prev"!==e)return t}e.exports=t,t.prototype.dequeue=function(){var e=this._sentinel,t=e._prev;if(t!==e)return n(t),t},t.prototype.enqueue=function(e){var t=this._sentinel;e._prev&&e._next&&n(e),e._next=t._next,t._next._prev=e,t._next=e,e._prev=t},t.prototype.toString=function(){for(var e=[],t=this._sentinel,n=t._prev;n!==t;)e.push(JSON.stringify(n,r)),n=n._prev;return"["+e.join(", ")+"]"}},7570:function(e,t,n){var r=n(8436),a=n(1138),o=n(574).Graph;e.exports={debugOrdering:function(e){var t=a.buildLayerMatrix(e),n=new o({compound:!0,multigraph:!0}).setGraph({});return r.forEach(e.nodes(),(function(t){n.setNode(t,{label:t}),n.setParent(t,"layer"+e.node(t).rank)})),r.forEach(e.edges(),(function(e){n.setEdge(e.v,e.w,{},e.name)})),r.forEach(t,(function(e,t){var a="layer"+t;n.setNode(a,{rank:"same"}),r.reduce(e,(function(e,t){return n.setEdge(e,t,{style:"invis"}),t}))})),n}}},574:function(e,t,n){var r;try{r=n(8282)}catch(e){}r||(r=window.graphlib),e.exports=r},4079:function(e,t,n){var r=n(8436),a=n(574).Graph,o=n(7822);e.exports=function(e,t){if(e.nodeCount()<=1)return[];var n=function(e,t){var n=new a,i=0,s=0;r.forEach(e.nodes(),(function(e){n.setNode(e,{v:e,in:0,out:0})})),r.forEach(e.edges(),(function(e){var r=n.edge(e.v,e.w)||0,a=t(e),o=r+a;n.setEdge(e.v,e.w,o),s=Math.max(s,n.node(e.v).out+=a),i=Math.max(i,n.node(e.w).in+=a)}));var l=r.range(s+i+3).map((function(){return new o})),u=i+1;return r.forEach(n.nodes(),(function(e){c(l,u,n.node(e))})),{graph:n,buckets:l,zeroIdx:u}}(e,t||i),l=function(e,t,n){for(var r,a=[],o=t[t.length-1],i=t[0];e.nodeCount();){for(;r=i.dequeue();)s(e,t,n,r);for(;r=o.dequeue();)s(e,t,n,r);if(e.nodeCount())for(var c=t.length-2;c>0;--c)if(r=t[c].dequeue()){a=a.concat(s(e,t,n,r,!0));break}}return a}(n.graph,n.buckets,n.zeroIdx);return r.flatten(r.map(l,(function(t){return e.outEdges(t.v,t.w)})),!0)};var i=r.constant(1);function s(e,t,n,a,o){var i=o?[]:void 0;return r.forEach(e.inEdges(a.v),(function(r){var a=e.edge(r),s=e.node(r.v);o&&i.push({v:r.v,w:r.w}),s.out-=a,c(t,n,s)})),r.forEach(e.outEdges(a.v),(function(r){var a=e.edge(r),o=r.w,i=e.node(o);i.in-=a,c(t,n,i)})),e.removeNode(a.v),i}function c(e,t,n){n.out?n.in?e[n.out-n.in+t].enqueue(n):e[e.length-1].enqueue(n):e[0].enqueue(n)}},8123:function(e,t,n){"use strict";var r=n(8436),a=n(2188),o=n(5995),i=n(8093),s=n(1138).normalizeRanks,c=n(4219),l=n(1138).removeEmptyRanks,u=n(2981),d=n(1133),p=n(3258),f=n(3408),m=n(7873),h=n(1138),g=n(574).Graph;e.exports=function(e,t){var n=t&&t.debugTiming?h.time:h.notime;n("layout",(function(){var t=n(" buildLayoutGraph",(function(){return function(e){var t=new g({multigraph:!0,compound:!0}),n=x(e.graph());return t.setGraph(r.merge({},v,D(n,y),r.pick(n,w))),r.forEach(e.nodes(),(function(n){var a=x(e.node(n));t.setNode(n,r.defaults(D(a,b),M)),t.setParent(n,e.parent(n))})),r.forEach(e.edges(),(function(n){var a=x(e.edge(n));t.setEdge(n,r.merge({},_,D(a,E),r.pick(a,N)))})),t}(e)}));n(" runLayout",(function(){!function(e,t){t(" makeSpaceForEdgeLabels",(function(){!function(e){var t=e.graph();t.ranksep/=2,r.forEach(e.edges(),(function(n){var r=e.edge(n);r.minlen*=2,"c"!==r.labelpos.toLowerCase()&&("TB"===t.rankdir||"BT"===t.rankdir?r.width+=r.labeloffset:r.height+=r.labeloffset)}))}(e)})),t(" removeSelfEdges",(function(){!function(e){r.forEach(e.edges(),(function(t){if(t.v===t.w){var n=e.node(t.v);n.selfEdges||(n.selfEdges=[]),n.selfEdges.push({e:t,label:e.edge(t)}),e.removeEdge(t)}}))}(e)})),t(" acyclic",(function(){a.run(e)})),t(" nestingGraph.run",(function(){u.run(e)})),t(" rank",(function(){i(h.asNonCompoundGraph(e))})),t(" injectEdgeLabelProxies",(function(){!function(e){r.forEach(e.edges(),(function(t){var n=e.edge(t);if(n.width&&n.height){var r=e.node(t.v),a={rank:(e.node(t.w).rank-r.rank)/2+r.rank,e:t};h.addDummyNode(e,"edge-proxy",a,"_ep")}}))}(e)})),t(" removeEmptyRanks",(function(){l(e)})),t(" nestingGraph.cleanup",(function(){u.cleanup(e)})),t(" normalizeRanks",(function(){s(e)})),t(" assignRankMinMax",(function(){!function(e){var t=0;r.forEach(e.nodes(),(function(n){var a=e.node(n);a.borderTop&&(a.minRank=e.node(a.borderTop).rank,a.maxRank=e.node(a.borderBottom).rank,t=r.max(t,a.maxRank))})),e.graph().maxRank=t}(e)})),t(" removeEdgeLabelProxies",(function(){!function(e){r.forEach(e.nodes(),(function(t){var n=e.node(t);"edge-proxy"===n.dummy&&(e.edge(n.e).labelRank=n.rank,e.removeNode(t))}))}(e)})),t(" normalize.run",(function(){o.run(e)})),t(" parentDummyChains",(function(){c(e)})),t(" addBorderSegments",(function(){d(e)})),t(" order",(function(){f(e)})),t(" insertSelfEdges",(function(){!function(e){var t=h.buildLayerMatrix(e);r.forEach(t,(function(t){var n=0;r.forEach(t,(function(t,a){var o=e.node(t);o.order=a+n,r.forEach(o.selfEdges,(function(t){h.addDummyNode(e,"selfedge",{width:t.label.width,height:t.label.height,rank:o.rank,order:a+ ++n,e:t.e,label:t.label},"_se")})),delete o.selfEdges}))}))}(e)})),t(" adjustCoordinateSystem",(function(){p.adjust(e)})),t(" position",(function(){m(e)})),t(" positionSelfEdges",(function(){!function(e){r.forEach(e.nodes(),(function(t){var n=e.node(t);if("selfedge"===n.dummy){var r=e.node(n.e.v),a=r.x+r.width/2,o=r.y,i=n.x-a,s=r.height/2;e.setEdge(n.e,n.label),e.removeNode(t),n.label.points=[{x:a+2*i/3,y:o-s},{x:a+5*i/6,y:o-s},{x:a+i,y:o},{x:a+5*i/6,y:o+s},{x:a+2*i/3,y:o+s}],n.label.x=n.x,n.label.y=n.y}}))}(e)})),t(" removeBorderNodes",(function(){!function(e){r.forEach(e.nodes(),(function(t){if(e.children(t).length){var n=e.node(t),a=e.node(n.borderTop),o=e.node(n.borderBottom),i=e.node(r.last(n.borderLeft)),s=e.node(r.last(n.borderRight));n.width=Math.abs(s.x-i.x),n.height=Math.abs(o.y-a.y),n.x=i.x+n.width/2,n.y=a.y+n.height/2}})),r.forEach(e.nodes(),(function(t){"border"===e.node(t).dummy&&e.removeNode(t)}))}(e)})),t(" normalize.undo",(function(){o.undo(e)})),t(" fixupEdgeLabelCoords",(function(){!function(e){r.forEach(e.edges(),(function(t){var n=e.edge(t);if(r.has(n,"x"))switch("l"!==n.labelpos&&"r"!==n.labelpos||(n.width-=n.labeloffset),n.labelpos){case"l":n.x-=n.width/2+n.labeloffset;break;case"r":n.x+=n.width/2+n.labeloffset}}))}(e)})),t(" undoCoordinateSystem",(function(){p.undo(e)})),t(" translateGraph",(function(){!function(e){var t=Number.POSITIVE_INFINITY,n=0,a=Number.POSITIVE_INFINITY,o=0,i=e.graph(),s=i.marginx||0,c=i.marginy||0;function l(e){var r=e.x,i=e.y,s=e.width,c=e.height;t=Math.min(t,r-s/2),n=Math.max(n,r+s/2),a=Math.min(a,i-c/2),o=Math.max(o,i+c/2)}r.forEach(e.nodes(),(function(t){l(e.node(t))})),r.forEach(e.edges(),(function(t){var n=e.edge(t);r.has(n,"x")&&l(n)})),t-=s,a-=c,r.forEach(e.nodes(),(function(n){var r=e.node(n);r.x-=t,r.y-=a})),r.forEach(e.edges(),(function(n){var o=e.edge(n);r.forEach(o.points,(function(e){e.x-=t,e.y-=a})),r.has(o,"x")&&(o.x-=t),r.has(o,"y")&&(o.y-=a)})),i.width=n-t+s,i.height=o-a+c}(e)})),t(" assignNodeIntersects",(function(){!function(e){r.forEach(e.edges(),(function(t){var n,r,a=e.edge(t),o=e.node(t.v),i=e.node(t.w);a.points?(n=a.points[0],r=a.points[a.points.length-1]):(a.points=[],n=i,r=o),a.points.unshift(h.intersectRect(o,n)),a.points.push(h.intersectRect(i,r))}))}(e)})),t(" reversePoints",(function(){!function(e){r.forEach(e.edges(),(function(t){var n=e.edge(t);n.reversed&&n.points.reverse()}))}(e)})),t(" acyclic.undo",(function(){a.undo(e)}))}(t,n)})),n(" updateInputGraph",(function(){!function(e,t){r.forEach(e.nodes(),(function(n){var r=e.node(n),a=t.node(n);r&&(r.x=a.x,r.y=a.y,t.children(n).length&&(r.width=a.width,r.height=a.height))})),r.forEach(e.edges(),(function(n){var a=e.edge(n),o=t.edge(n);a.points=o.points,r.has(o,"x")&&(a.x=o.x,a.y=o.y)})),e.graph().width=t.graph().width,e.graph().height=t.graph().height}(e,t)}))}))};var y=["nodesep","edgesep","ranksep","marginx","marginy"],v={ranksep:50,edgesep:20,nodesep:50,rankdir:"tb"},w=["acyclicer","ranker","rankdir","align"],b=["width","height"],M={width:0,height:0},E=["minlen","weight","width","height","labeloffset"],_={minlen:1,weight:1,width:0,height:0,labeloffset:10,labelpos:"r"},N=["labelpos"];function D(e,t){return r.mapValues(r.pick(e,t),Number)}function x(e){var t={};return r.forEach(e,(function(e,n){t[n.toLowerCase()]=e})),t}},8436:function(e,t,n){var r;try{r={cloneDeep:n(361),constant:n(5703),defaults:n(1747),each:n(6073),filter:n(3105),find:n(3311),flatten:n(5564),forEach:n(4486),forIn:n(2620),has:n(8721),isUndefined:n(2353),last:n(928),map:n(5161),mapValues:n(6604),max:n(6162),merge:n(3857),min:n(3632),minBy:n(2762),now:n(7771),pick:n(9722),range:n(6026),reduce:n(4061),sortBy:n(9734),uniqueId:n(3955),values:n(2628),zipObject:n(7287)}}catch(e){}r||(r=window._),e.exports=r},2981:function(e,t,n){var r=n(8436),a=n(1138);function o(e,t,n,i,s,c,l){var u=e.children(l);if(u.length){var d=a.addBorderNode(e,"_bt"),p=a.addBorderNode(e,"_bb"),f=e.node(l);e.setParent(d,l),f.borderTop=d,e.setParent(p,l),f.borderBottom=p,r.forEach(u,(function(r){o(e,t,n,i,s,c,r);var a=e.node(r),u=a.borderTop?a.borderTop:r,f=a.borderBottom?a.borderBottom:r,m=a.borderTop?i:2*i,h=u!==f?1:s-c[l]+1;e.setEdge(d,u,{weight:m,minlen:h,nestingEdge:!0}),e.setEdge(f,p,{weight:m,minlen:h,nestingEdge:!0})})),e.parent(l)||e.setEdge(t,d,{weight:0,minlen:s+c[l]})}else l!==t&&e.setEdge(t,l,{weight:0,minlen:n})}e.exports={run:function(e){var t=a.addDummyNode(e,"root",{},"_root"),n=function(e){var t={};function n(a,o){var i=e.children(a);i&&i.length&&r.forEach(i,(function(e){n(e,o+1)})),t[a]=o}return r.forEach(e.children(),(function(e){n(e,1)})),t}(e),i=r.max(r.values(n))-1,s=2*i+1;e.graph().nestingRoot=t,r.forEach(e.edges(),(function(t){e.edge(t).minlen*=s}));var c=function(e){return r.reduce(e.edges(),(function(t,n){return t+e.edge(n).weight}),0)}(e)+1;r.forEach(e.children(),(function(r){o(e,t,s,c,i,n,r)})),e.graph().nodeRankFactor=s},cleanup:function(e){var t=e.graph();e.removeNode(t.nestingRoot),delete t.nestingRoot,r.forEach(e.edges(),(function(t){e.edge(t).nestingEdge&&e.removeEdge(t)}))}}},5995:function(e,t,n){"use strict";var r=n(8436),a=n(1138);e.exports={run:function(e){e.graph().dummyChains=[],r.forEach(e.edges(),(function(t){!function(e,t){var n,r,o,i=t.v,s=e.node(i).rank,c=t.w,l=e.node(c).rank,u=t.name,d=e.edge(t),p=d.labelRank;if(l!==s+1){for(e.removeEdge(t),o=0,++s;s<l;++o,++s)d.points=[],r={width:0,height:0,edgeLabel:d,edgeObj:t,rank:s},n=a.addDummyNode(e,"edge",r,"_d"),s===p&&(r.width=d.width,r.height=d.height,r.dummy="edge-label",r.labelpos=d.labelpos),e.setEdge(i,n,{weight:d.weight},u),0===o&&e.graph().dummyChains.push(n),i=n;e.setEdge(i,c,{weight:d.weight},u)}}(e,t)}))},undo:function(e){r.forEach(e.graph().dummyChains,(function(t){var n,r=e.node(t),a=r.edgeLabel;for(e.setEdge(r.edgeObj,a);r.dummy;)n=e.successors(t)[0],e.removeNode(t),a.points.push({x:r.x,y:r.y}),"edge-label"===r.dummy&&(a.x=r.x,a.y=r.y,a.width=r.width,a.height=r.height),t=n,r=e.node(t)}))}}},5093:function(e,t,n){var r=n(8436);e.exports=function(e,t,n){var a,o={};r.forEach(n,(function(n){for(var r,i,s=e.parent(n);s;){if((r=e.parent(s))?(i=o[r],o[r]=s):(i=a,a=s),i&&i!==s)return void t.setEdge(i,s);s=r}}))}},5439:function(e,t,n){var r=n(8436);e.exports=function(e,t){return r.map(t,(function(t){var n=e.inEdges(t);if(n.length){var a=r.reduce(n,(function(t,n){var r=e.edge(n),a=e.node(n.v);return{sum:t.sum+r.weight*a.order,weight:t.weight+r.weight}}),{sum:0,weight:0});return{v:t,barycenter:a.sum/a.weight,weight:a.weight}}return{v:t}}))}},3128:function(e,t,n){var r=n(8436),a=n(574).Graph;e.exports=function(e,t,n){var o=function(e){for(var t;e.hasNode(t=r.uniqueId("_root")););return t}(e),i=new a({compound:!0}).setGraph({root:o}).setDefaultNodeLabel((function(t){return e.node(t)}));return r.forEach(e.nodes(),(function(a){var s=e.node(a),c=e.parent(a);(s.rank===t||s.minRank<=t&&t<=s.maxRank)&&(i.setNode(a),i.setParent(a,c||o),r.forEach(e[n](a),(function(t){var n=t.v===a?t.w:t.v,o=i.edge(n,a),s=r.isUndefined(o)?0:o.weight;i.setEdge(n,a,{weight:e.edge(t).weight+s})})),r.has(s,"minRank")&&i.setNode(a,{borderLeft:s.borderLeft[t],borderRight:s.borderRight[t]}))})),i}},2746:function(e,t,n){"use strict";var r=n(8436);function a(e,t,n){for(var a=r.zipObject(n,r.map(n,(function(e,t){return t}))),o=r.flatten(r.map(t,(function(t){return r.sortBy(r.map(e.outEdges(t),(function(t){return{pos:a[t.w],weight:e.edge(t).weight}})),"pos")})),!0),i=1;i<n.length;)i<<=1;var s=2*i-1;i-=1;var c=r.map(new Array(s),(function(){return 0})),l=0;return r.forEach(o.forEach((function(e){var t=e.pos+i;c[t]+=e.weight;for(var n=0;t>0;)t%2&&(n+=c[t+1]),c[t=t-1>>1]+=e.weight;l+=e.weight*n}))),l}e.exports=function(e,t){for(var n=0,r=1;r<t.length;++r)n+=a(e,t[r-1],t[r]);return n}},3408:function(e,t,n){"use strict";var r=n(8436),a=n(2588),o=n(2746),i=n(1026),s=n(3128),c=n(5093),l=n(574).Graph,u=n(1138);function d(e,t,n){return r.map(t,(function(t){return s(e,t,n)}))}function p(e,t){var n=new l;r.forEach(e,(function(e){var a=e.graph().root,o=i(e,a,n,t);r.forEach(o.vs,(function(t,n){e.node(t).order=n})),c(e,n,o.vs)}))}function f(e,t){r.forEach(t,(function(t){r.forEach(t,(function(t,n){e.node(t).order=n}))}))}e.exports=function(e){var t=u.maxRank(e),n=d(e,r.range(1,t+1),"inEdges"),i=d(e,r.range(t-1,-1,-1),"outEdges"),s=a(e);f(e,s);for(var c,l=Number.POSITIVE_INFINITY,m=0,h=0;h<4;++m,++h){p(m%2?n:i,m%4>=2),s=u.buildLayerMatrix(e);var g=o(e,s);g<l&&(h=0,c=r.cloneDeep(s),l=g)}f(e,c)}},2588:function(e,t,n){"use strict";var r=n(8436);e.exports=function(e){var t={},n=r.filter(e.nodes(),(function(t){return!e.children(t).length})),a=r.max(r.map(n,(function(t){return e.node(t).rank}))),o=r.map(r.range(a+1),(function(){return[]})),i=r.sortBy(n,(function(t){return e.node(t).rank}));return r.forEach(i,(function n(a){if(!r.has(t,a)){t[a]=!0;var i=e.node(a);o[i.rank].push(a),r.forEach(e.successors(a),n)}})),o}},9567:function(e,t,n){"use strict";var r=n(8436);e.exports=function(e,t){var n={};return r.forEach(e,(function(e,t){var a=n[e.v]={indegree:0,in:[],out:[],vs:[e.v],i:t};r.isUndefined(e.barycenter)||(a.barycenter=e.barycenter,a.weight=e.weight)})),r.forEach(t.edges(),(function(e){var t=n[e.v],a=n[e.w];r.isUndefined(t)||r.isUndefined(a)||(a.indegree++,t.out.push(n[e.w]))})),function(e){var t=[];function n(e){return function(t){var n,a,o,i;t.merged||(r.isUndefined(t.barycenter)||r.isUndefined(e.barycenter)||t.barycenter>=e.barycenter)&&(a=t,o=0,i=0,(n=e).weight&&(o+=n.barycenter*n.weight,i+=n.weight),a.weight&&(o+=a.barycenter*a.weight,i+=a.weight),n.vs=a.vs.concat(n.vs),n.barycenter=o/i,n.weight=i,n.i=Math.min(a.i,n.i),a.merged=!0)}}function a(t){return function(n){n.in.push(t),0==--n.indegree&&e.push(n)}}for(;e.length;){var o=e.pop();t.push(o),r.forEach(o.in.reverse(),n(o)),r.forEach(o.out,a(o))}return r.map(r.filter(t,(function(e){return!e.merged})),(function(e){return r.pick(e,["vs","i","barycenter","weight"])}))}(r.filter(n,(function(e){return!e.indegree})))}},1026:function(e,t,n){var r=n(8436),a=n(5439),o=n(9567),i=n(7304);e.exports=function e(t,n,s,c){var l=t.children(n),u=t.node(n),d=u?u.borderLeft:void 0,p=u?u.borderRight:void 0,f={};d&&(l=r.filter(l,(function(e){return e!==d&&e!==p})));var m=a(t,l);r.forEach(m,(function(n){if(t.children(n.v).length){var a=e(t,n.v,s,c);f[n.v]=a,r.has(a,"barycenter")&&(o=n,i=a,r.isUndefined(o.barycenter)?(o.barycenter=i.barycenter,o.weight=i.weight):(o.barycenter=(o.barycenter*o.weight+i.barycenter*i.weight)/(o.weight+i.weight),o.weight+=i.weight))}var o,i}));var h=o(m,s);!function(e,t){r.forEach(e,(function(e){e.vs=r.flatten(e.vs.map((function(e){return t[e]?t[e].vs:e})),!0)}))}(h,f);var g=i(h,c);if(d&&(g.vs=r.flatten([d,g.vs,p],!0),t.predecessors(d).length)){var y=t.node(t.predecessors(d)[0]),v=t.node(t.predecessors(p)[0]);r.has(g,"barycenter")||(g.barycenter=0,g.weight=0),g.barycenter=(g.barycenter*g.weight+y.order+v.order)/(g.weight+2),g.weight+=2}return g}},7304:function(e,t,n){var r=n(8436),a=n(1138);function o(e,t,n){for(var a;t.length&&(a=r.last(t)).i<=n;)t.pop(),e.push(a.vs),n++;return n}e.exports=function(e,t){var n,i=a.partition(e,(function(e){return r.has(e,"barycenter")})),s=i.lhs,c=r.sortBy(i.rhs,(function(e){return-e.i})),l=[],u=0,d=0,p=0;s.sort((n=!!t,function(e,t){return e.barycenter<t.barycenter?-1:e.barycenter>t.barycenter?1:n?t.i-e.i:e.i-t.i})),p=o(l,c,p),r.forEach(s,(function(e){p+=e.vs.length,l.push(e.vs),u+=e.barycenter*e.weight,d+=e.weight,p=o(l,c,p)}));var f={vs:r.flatten(l,!0)};return d&&(f.barycenter=u/d,f.weight=d),f}},4219:function(e,t,n){var r=n(8436);e.exports=function(e){var t=function(e){var t={},n=0;return r.forEach(e.children(),(function a(o){var i=n;r.forEach(e.children(o),a),t[o]={low:i,lim:n++}})),t}(e);r.forEach(e.graph().dummyChains,(function(n){for(var r=e.node(n),a=r.edgeObj,o=function(e,t,n,r){var a,o,i=[],s=[],c=Math.min(t[n].low,t[r].low),l=Math.max(t[n].lim,t[r].lim);a=n;do{a=e.parent(a),i.push(a)}while(a&&(t[a].low>c||l>t[a].lim));for(o=a,a=r;(a=e.parent(a))!==o;)s.push(a);return{path:i.concat(s.reverse()),lca:o}}(e,t,a.v,a.w),i=o.path,s=o.lca,c=0,l=i[c],u=!0;n!==a.w;){if(r=e.node(n),u){for(;(l=i[c])!==s&&e.node(l).maxRank<r.rank;)c++;l===s&&(u=!1)}if(!u){for(;c<i.length-1&&e.node(l=i[c+1]).minRank<=r.rank;)c++;l=i[c]}e.setParent(n,l),n=e.successors(n)[0]}}))}},3573:function(e,t,n){"use strict";var r=n(8436),a=n(574).Graph,o=n(1138);function i(e,t){var n={};return r.reduce(t,(function(t,a){var o=0,i=0,s=t.length,l=r.last(a);return r.forEach(a,(function(t,u){var d=function(e,t){if(e.node(t).dummy)return r.find(e.predecessors(t),(function(t){return e.node(t).dummy}))}(e,t),p=d?e.node(d).order:s;(d||t===l)&&(r.forEach(a.slice(i,u+1),(function(t){r.forEach(e.predecessors(t),(function(r){var a=e.node(r),i=a.order;!(i<o||p<i)||a.dummy&&e.node(t).dummy||c(n,r,t)}))})),i=u+1,o=p)})),a})),n}function s(e,t){var n={};function a(t,a,o,i,s){var l;r.forEach(r.range(a,o),(function(a){l=t[a],e.node(l).dummy&&r.forEach(e.predecessors(l),(function(t){var r=e.node(t);r.dummy&&(r.order<i||r.order>s)&&c(n,t,l)}))}))}return r.reduce(t,(function(t,n){var o,i=-1,s=0;return r.forEach(n,(function(r,c){if("border"===e.node(r).dummy){var l=e.predecessors(r);l.length&&(o=e.node(l[0]).order,a(n,s,c,i,o),s=c,i=o)}a(n,s,n.length,o,t.length)})),n})),n}function c(e,t,n){if(t>n){var r=t;t=n,n=r}var a=e[t];a||(e[t]=a={}),a[n]=!0}function l(e,t,n){if(t>n){var a=t;t=n,n=a}return r.has(e[t],n)}function u(e,t,n,a){var o={},i={},s={};return r.forEach(t,(function(e){r.forEach(e,(function(e,t){o[e]=e,i[e]=e,s[e]=t}))})),r.forEach(t,(function(e){var t=-1;r.forEach(e,(function(e){var c=a(e);if(c.length){c=r.sortBy(c,(function(e){return s[e]}));for(var u=(c.length-1)/2,d=Math.floor(u),p=Math.ceil(u);d<=p;++d){var f=c[d];i[e]===e&&t<s[f]&&!l(n,e,f)&&(i[f]=e,i[e]=o[e]=o[f],t=s[f])}}}))})),{root:o,align:i}}function d(e,t,n,o,i){var s={},c=function(e,t,n,o){var i=new a,s=e.graph(),c=function(e,t,n){return function(a,o,i){var s,c=a.node(o),l=a.node(i),u=0;if(u+=c.width/2,r.has(c,"labelpos"))switch(c.labelpos.toLowerCase()){case"l":s=-c.width/2;break;case"r":s=c.width/2}if(s&&(u+=n?s:-s),s=0,u+=(c.dummy?t:e)/2,u+=(l.dummy?t:e)/2,u+=l.width/2,r.has(l,"labelpos"))switch(l.labelpos.toLowerCase()){case"l":s=l.width/2;break;case"r":s=-l.width/2}return s&&(u+=n?s:-s),s=0,u}}(s.nodesep,s.edgesep,o);return r.forEach(t,(function(t){var a;r.forEach(t,(function(t){var r=n[t];if(i.setNode(r),a){var o=n[a],s=i.edge(o,r);i.setEdge(o,r,Math.max(c(e,t,a),s||0))}a=t}))})),i}(e,t,n,i),l=i?"borderLeft":"borderRight";function u(e,t){for(var n=c.nodes(),r=n.pop(),a={};r;)a[r]?e(r):(a[r]=!0,n.push(r),n=n.concat(t(r))),r=n.pop()}return u((function(e){s[e]=c.inEdges(e).reduce((function(e,t){return Math.max(e,s[t.v]+c.edge(t))}),0)}),c.predecessors.bind(c)),u((function(t){var n=c.outEdges(t).reduce((function(e,t){return Math.min(e,s[t.w]-c.edge(t))}),Number.POSITIVE_INFINITY),r=e.node(t);n!==Number.POSITIVE_INFINITY&&r.borderType!==l&&(s[t]=Math.max(s[t],n))}),c.successors.bind(c)),r.forEach(o,(function(e){s[e]=s[n[e]]})),s}function p(e,t){return r.minBy(r.values(t),(function(t){var n=Number.NEGATIVE_INFINITY,a=Number.POSITIVE_INFINITY;return r.forIn(t,(function(t,r){var o=function(e,t){return e.node(t).width}(e,r)/2;n=Math.max(t+o,n),a=Math.min(t-o,a)})),n-a}))}function f(e,t){var n=r.values(t),a=r.min(n),o=r.max(n);r.forEach(["u","d"],(function(n){r.forEach(["l","r"],(function(i){var s,c=n+i,l=e[c];if(l!==t){var u=r.values(l);(s="l"===i?a-r.min(u):o-r.max(u))&&(e[c]=r.mapValues(l,(function(e){return e+s})))}}))}))}function m(e,t){return r.mapValues(e.ul,(function(n,a){if(t)return e[t.toLowerCase()][a];var o=r.sortBy(r.map(e,a));return(o[1]+o[2])/2}))}e.exports={positionX:function(e){var t,n=o.buildLayerMatrix(e),a=r.merge(i(e,n),s(e,n)),c={};r.forEach(["u","d"],(function(o){t="u"===o?n:r.values(n).reverse(),r.forEach(["l","r"],(function(n){"r"===n&&(t=r.map(t,(function(e){return r.values(e).reverse()})));var i=("u"===o?e.predecessors:e.successors).bind(e),s=u(0,t,a,i),l=d(e,t,s.root,s.align,"r"===n);"r"===n&&(l=r.mapValues(l,(function(e){return-e}))),c[o+n]=l}))}));var l=p(e,c);return f(c,l),m(c,e.graph().align)},findType1Conflicts:i,findType2Conflicts:s,addConflict:c,hasConflict:l,verticalAlignment:u,horizontalCompaction:d,alignCoordinates:f,findSmallestWidthAlignment:p,balance:m}},7873:function(e,t,n){"use strict";var r=n(8436),a=n(1138),o=n(3573).positionX;e.exports=function(e){(function(e){var t=a.buildLayerMatrix(e),n=e.graph().ranksep,o=0;r.forEach(t,(function(t){var a=r.max(r.map(t,(function(t){return e.node(t).height})));r.forEach(t,(function(t){e.node(t).y=o+a/2})),o+=a+n}))})(e=a.asNonCompoundGraph(e)),r.forEach(o(e),(function(t,n){e.node(n).x=t}))}},300:function(e,t,n){"use strict";var r=n(8436),a=n(574).Graph,o=n(6681).slack;function i(e,t){return r.forEach(e.nodes(),(function n(a){r.forEach(t.nodeEdges(a),(function(r){var i=r.v,s=a===i?r.w:i;e.hasNode(s)||o(t,r)||(e.setNode(s,{}),e.setEdge(a,s,{}),n(s))}))})),e.nodeCount()}function s(e,t){return r.minBy(t.edges(),(function(n){if(e.hasNode(n.v)!==e.hasNode(n.w))return o(t,n)}))}function c(e,t,n){r.forEach(e.nodes(),(function(e){t.node(e).rank+=n}))}e.exports=function(e){var t,n,r=new a({directed:!1}),l=e.nodes()[0],u=e.nodeCount();for(r.setNode(l,{});i(r,e)<u;)t=s(r,e),n=r.hasNode(t.v)?o(e,t):-o(e,t),c(r,e,n);return r}},8093:function(e,t,n){"use strict";var r=n(6681).longestPath,a=n(300),o=n(2472);e.exports=function(e){switch(e.graph().ranker){case"network-simplex":default:!function(e){o(e)}(e);break;case"tight-tree":!function(e){r(e),a(e)}(e);break;case"longest-path":i(e)}};var i=r},2472:function(e,t,n){"use strict";var r=n(8436),a=n(300),o=n(6681).slack,i=n(6681).longestPath,s=n(574).alg.preorder,c=n(574).alg.postorder,l=n(1138).simplify;function u(e){e=l(e),i(e);var t,n=a(e);for(f(n),d(n,e);t=h(n);)y(n,e,t,g(n,e,t))}function d(e,t){var n=c(e,e.nodes());n=n.slice(0,n.length-1),r.forEach(n,(function(n){!function(e,t,n){var r=e.node(n).parent;e.edge(n,r).cutvalue=p(e,t,n)}(e,t,n)}))}function p(e,t,n){var a=e.node(n).parent,o=!0,i=t.edge(n,a),s=0;return i||(o=!1,i=t.edge(a,n)),s=i.weight,r.forEach(t.nodeEdges(n),(function(r){var i,c,l=r.v===n,u=l?r.w:r.v;if(u!==a){var d=l===o,p=t.edge(r).weight;if(s+=d?p:-p,i=n,c=u,e.hasEdge(i,c)){var f=e.edge(n,u).cutvalue;s+=d?-f:f}}})),s}function f(e,t){arguments.length<2&&(t=e.nodes()[0]),m(e,{},1,t)}function m(e,t,n,a,o){var i=n,s=e.node(a);return t[a]=!0,r.forEach(e.neighbors(a),(function(o){r.has(t,o)||(n=m(e,t,n,o,a))})),s.low=i,s.lim=n++,o?s.parent=o:delete s.parent,n}function h(e){return r.find(e.edges(),(function(t){return e.edge(t).cutvalue<0}))}function g(e,t,n){var a=n.v,i=n.w;t.hasEdge(a,i)||(a=n.w,i=n.v);var s=e.node(a),c=e.node(i),l=s,u=!1;s.lim>c.lim&&(l=c,u=!0);var d=r.filter(t.edges(),(function(t){return u===v(0,e.node(t.v),l)&&u!==v(0,e.node(t.w),l)}));return r.minBy(d,(function(e){return o(t,e)}))}function y(e,t,n,a){var o=n.v,i=n.w;e.removeEdge(o,i),e.setEdge(a.v,a.w,{}),f(e),d(e,t),function(e,t){var n=r.find(e.nodes(),(function(e){return!t.node(e).parent})),a=s(e,n);a=a.slice(1),r.forEach(a,(function(n){var r=e.node(n).parent,a=t.edge(n,r),o=!1;a||(a=t.edge(r,n),o=!0),t.node(n).rank=t.node(r).rank+(o?a.minlen:-a.minlen)}))}(e,t)}function v(e,t,n){return n.low<=t.lim&&t.lim<=n.lim}e.exports=u,u.initLowLimValues=f,u.initCutValues=d,u.calcCutValue=p,u.leaveEdge=h,u.enterEdge=g,u.exchangeEdges=y},6681:function(e,t,n){"use strict";var r=n(8436);e.exports={longestPath:function(e){var t={};r.forEach(e.sources(),(function n(a){var o=e.node(a);if(r.has(t,a))return o.rank;t[a]=!0;var i=r.min(r.map(e.outEdges(a),(function(t){return n(t.w)-e.edge(t).minlen})));return i!==Number.POSITIVE_INFINITY&&null!=i||(i=0),o.rank=i}))},slack:function(e,t){return e.node(t.w).rank-e.node(t.v).rank-e.edge(t).minlen}}},1138:function(e,t,n){"use strict";var r=n(8436),a=n(574).Graph;function o(e,t,n,a){var o;do{o=r.uniqueId(a)}while(e.hasNode(o));return n.dummy=t,e.setNode(o,n),o}function i(e){return r.max(r.map(e.nodes(),(function(t){var n=e.node(t).rank;if(!r.isUndefined(n))return n})))}e.exports={addDummyNode:o,simplify:function(e){var t=(new a).setGraph(e.graph());return r.forEach(e.nodes(),(function(n){t.setNode(n,e.node(n))})),r.forEach(e.edges(),(function(n){var r=t.edge(n.v,n.w)||{weight:0,minlen:1},a=e.edge(n);t.setEdge(n.v,n.w,{weight:r.weight+a.weight,minlen:Math.max(r.minlen,a.minlen)})})),t},asNonCompoundGraph:function(e){var t=new a({multigraph:e.isMultigraph()}).setGraph(e.graph());return r.forEach(e.nodes(),(function(n){e.children(n).length||t.setNode(n,e.node(n))})),r.forEach(e.edges(),(function(n){t.setEdge(n,e.edge(n))})),t},successorWeights:function(e){var t=r.map(e.nodes(),(function(t){var n={};return r.forEach(e.outEdges(t),(function(t){n[t.w]=(n[t.w]||0)+e.edge(t).weight})),n}));return r.zipObject(e.nodes(),t)},predecessorWeights:function(e){var t=r.map(e.nodes(),(function(t){var n={};return r.forEach(e.inEdges(t),(function(t){n[t.v]=(n[t.v]||0)+e.edge(t).weight})),n}));return r.zipObject(e.nodes(),t)},intersectRect:function(e,t){var n,r,a=e.x,o=e.y,i=t.x-a,s=t.y-o,c=e.width/2,l=e.height/2;if(!i&&!s)throw new Error("Not possible to find intersection inside of the rectangle");return Math.abs(s)*c>Math.abs(i)*l?(s<0&&(l=-l),n=l*i/s,r=l):(i<0&&(c=-c),n=c,r=c*s/i),{x:a+n,y:o+r}},buildLayerMatrix:function(e){var t=r.map(r.range(i(e)+1),(function(){return[]}));return r.forEach(e.nodes(),(function(n){var a=e.node(n),o=a.rank;r.isUndefined(o)||(t[o][a.order]=n)})),t},normalizeRanks:function(e){var t=r.min(r.map(e.nodes(),(function(t){return e.node(t).rank})));r.forEach(e.nodes(),(function(n){var a=e.node(n);r.has(a,"rank")&&(a.rank-=t)}))},removeEmptyRanks:function(e){var t=r.min(r.map(e.nodes(),(function(t){return e.node(t).rank}))),n=[];r.forEach(e.nodes(),(function(r){var a=e.node(r).rank-t;n[a]||(n[a]=[]),n[a].push(r)}));var a=0,o=e.graph().nodeRankFactor;r.forEach(n,(function(t,n){r.isUndefined(t)&&n%o!=0?--a:a&&r.forEach(t,(function(t){e.node(t).rank+=a}))}))},addBorderNode:function(e,t,n,r){var a={width:0,height:0};return arguments.length>=4&&(a.rank=n,a.order=r),o(e,"border",a,t)},maxRank:i,partition:function(e,t){var n={lhs:[],rhs:[]};return r.forEach(e,(function(e){t(e)?n.lhs.push(e):n.rhs.push(e)})),n},time:function(e,t){var n=r.now();try{return t()}finally{console.log(e+" time: "+(r.now()-n)+"ms")}},notime:function(e,t){return t()}}},8177:function(e){e.exports="0.8.5"},5271:function(e,t){"use strict";function n(e,t){switch(e){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});default:return t.date({width:"full"})}}function r(e,t){switch(e){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});default:return t.time({width:"full"})}}var a={p:r,P:function(e,t){var a,o=e.match(/(P+)(p+)?/)||[],i=o[1],s=o[2];if(!s)return n(e,t);switch(i){case"P":a=t.dateTime({width:"short"});break;case"PP":a=t.dateTime({width:"medium"});break;case"PPP":a=t.dateTime({width:"long"});break;default:a=t.dateTime({width:"full"})}return a.replace("{{date}}",n(i,t)).replace("{{time}}",r(s,t))}};t.Z=a},4262:function(e,t,n){"use strict";function r(e){var t=new Date(Date.UTC(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()));return t.setUTCFullYear(e.getFullYear()),e.getTime()-t.getTime()}n.d(t,{Z:function(){return r}})},7032:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var r=n(9013),a=n(3882),o=n(6979);function i(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e),n=t.getUTCFullYear(),i=new Date(0);i.setUTCFullYear(n+1,0,4),i.setUTCHours(0,0,0,0);var s=(0,o.Z)(i),c=new Date(0);c.setUTCFullYear(n,0,4),c.setUTCHours(0,0,0,0);var l=(0,o.Z)(c);return t.getTime()>=s.getTime()?n+1:t.getTime()>=l.getTime()?n:n-1}},9702:function(e,t,n){"use strict";n.d(t,{Z:function(){return l}});var r=n(9013),a=n(6979),o=n(7032),i=n(3882);function s(e){(0,i.Z)(1,arguments);var t=(0,o.Z)(e),n=new Date(0);n.setUTCFullYear(t,0,4),n.setUTCHours(0,0,0,0);var r=(0,a.Z)(n);return r}var c=6048e5;function l(e){(0,i.Z)(1,arguments);var t=(0,r.default)(e),n=(0,a.Z)(t).getTime()-s(t).getTime();return Math.round(n/c)+1}},7651:function(e,t,n){"use strict";n.d(t,{Z:function(){return s}});var r=n(9013),a=n(3882),o=n(9025),i=n(3946);function s(e,t){(0,a.Z)(1,arguments);var n=(0,r.default)(e),s=n.getUTCFullYear(),c=t||{},l=c.locale,u=l&&l.options&&l.options.firstWeekContainsDate,d=null==u?1:(0,i.Z)(u),p=null==c.firstWeekContainsDate?d:(0,i.Z)(c.firstWeekContainsDate);if(!(p>=1&&p<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var f=new Date(0);f.setUTCFullYear(s+1,0,p),f.setUTCHours(0,0,0,0);var m=(0,o.Z)(f,t),h=new Date(0);h.setUTCFullYear(s,0,p),h.setUTCHours(0,0,0,0);var g=(0,o.Z)(h,t);return n.getTime()>=m.getTime()?s+1:n.getTime()>=g.getTime()?s:s-1}},3324:function(e,t,n){"use strict";n.d(t,{Z:function(){return u}});var r=n(9013),a=n(9025),o=n(7651),i=n(3882),s=n(3946);function c(e,t){(0,i.Z)(1,arguments);var n=t||{},r=n.locale,c=r&&r.options&&r.options.firstWeekContainsDate,l=null==c?1:(0,s.Z)(c),u=null==n.firstWeekContainsDate?l:(0,s.Z)(n.firstWeekContainsDate),d=(0,o.Z)(e,t),p=new Date(0);p.setUTCFullYear(d,0,u),p.setUTCHours(0,0,0,0);var f=(0,a.Z)(p,t);return f}var l=6048e5;function u(e,t){(0,i.Z)(1,arguments);var n=(0,r.default)(e),o=(0,a.Z)(n,t).getTime()-c(n,t).getTime();return Math.round(o/l)+1}},5267:function(e,t,n){"use strict";n.d(t,{Do:function(){return i},Iu:function(){return o},qp:function(){return s}});var r=["D","DD"],a=["YY","YYYY"];function o(e){return-1!==r.indexOf(e)}function i(e){return-1!==a.indexOf(e)}function s(e,t,n){if("YYYY"===e)throw new RangeError("Use `yyyy` instead of `YYYY` (in `".concat(t,"`) for formatting years to the input `").concat(n,"`; see: https://git.io/fxCyr"));if("YY"===e)throw new RangeError("Use `yy` instead of `YY` (in `".concat(t,"`) for formatting years to the input `").concat(n,"`; see: https://git.io/fxCyr"));if("D"===e)throw new RangeError("Use `d` instead of `D` (in `".concat(t,"`) for formatting days of the month to the input `").concat(n,"`; see: https://git.io/fxCyr"));if("DD"===e)throw new RangeError("Use `dd` instead of `DD` (in `".concat(t,"`) for formatting days of the month to the input `").concat(n,"`; see: https://git.io/fxCyr"))}},3882:function(e,t,n){"use strict";function r(e,t){if(t.length<e)throw new TypeError(e+" argument"+(e>1?"s":"")+" required, but only "+t.length+" present")}n.d(t,{Z:function(){return r}})},6979:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=1,n=(0,r.default)(e),o=n.getUTCDay(),i=(o<t?7:0)+o-t;return n.setUTCDate(n.getUTCDate()-i),n.setUTCHours(0,0,0,0),n}},9025:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var r=n(9013),a=n(3882),o=n(3946);function i(e,t){(0,a.Z)(1,arguments);var n=t||{},i=n.locale,s=i&&i.options&&i.options.weekStartsOn,c=null==s?0:(0,o.Z)(s),l=null==n.weekStartsOn?c:(0,o.Z)(n.weekStartsOn);if(!(l>=0&&l<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var u=(0,r.default)(e),d=u.getUTCDay(),p=(d<l?7:0)+d-l;return u.setUTCDate(u.getUTCDate()-p),u.setUTCHours(0,0,0,0),u}},3946:function(e,t,n){"use strict";function r(e){if(null===e||!0===e||!1===e)return NaN;var t=Number(e);return isNaN(t)?t:t<0?Math.ceil(t):Math.floor(t)}n.d(t,{Z:function(){return r}})},7349:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(9013),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,a.default)(e),i=(0,r.Z)(t);return isNaN(i)?new Date(NaN):i?(n.setDate(n.getDate()+i),n):n}},8343:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return s}});var r=n(3946),a=n(1820),o=n(3882),i=36e5;function s(e,t){(0,o.Z)(2,arguments);var n=(0,r.Z)(t);return(0,a.Z)(e,n*i)}},1820:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var r=n(3946),a=n(9013),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,a.default)(e).getTime(),i=(0,r.Z)(t);return new Date(n+i)}},8545:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(1820),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,r.Z)(t);return(0,a.Z)(e,6e4*n)}},1640:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(9013),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,a.default)(e),i=(0,r.Z)(t);if(isNaN(i))return new Date(NaN);if(!i)return n;var s=n.getDate(),c=new Date(n.getTime());c.setMonth(n.getMonth()+i+1,0);var l=c.getDate();return s>=l?c:(n.setFullYear(c.getFullYear(),c.getMonth(),s),n)}},3500:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(7349),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,r.Z)(t),i=7*n;return(0,a.default)(e,i)}},1593:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(1640),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,r.Z)(t);return(0,a.default)(e,12*n)}},2300:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return s}});var r=n(4262),a=n(9119),o=n(3882),i=864e5;function s(e,t){(0,o.Z)(2,arguments);var n=(0,a.default)(e),s=(0,a.default)(t),c=n.getTime()-(0,r.Z)(n),l=s.getTime()-(0,r.Z)(s);return Math.round((c-l)/i)}},4129:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e,t){(0,a.Z)(2,arguments);var n=(0,r.default)(e),o=(0,r.default)(t),i=n.getFullYear()-o.getFullYear(),s=n.getMonth()-o.getMonth();return 12*i+s}},2724:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return s}});var r=n(584),a=n(4262),o=n(3882),i=6048e5;function s(e,t,n){(0,o.Z)(2,arguments);var s=(0,r.default)(e,n),c=(0,r.default)(t,n),l=s.getTime()-(0,a.Z)(s),u=c.getTime()-(0,a.Z)(c);return Math.round((l-u)/i)}},1857:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e,t){(0,a.Z)(2,arguments);var n=(0,r.default)(e),o=(0,r.default)(t);return n.getFullYear()-o.getFullYear()}},3894:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e);return t.setHours(23,59,59,999),t}},4135:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e),n=t.getMonth();return t.setFullYear(t.getFullYear(),n+1,0),t.setHours(23,59,59,999),t}},7090:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(9013),a=n(3946),o=n(3882);function i(e,t){(0,o.Z)(1,arguments);var n=t||{},i=n.locale,s=i&&i.options&&i.options.weekStartsOn,c=null==s?0:(0,a.Z)(s),l=null==n.weekStartsOn?c:(0,a.Z)(n.weekStartsOn);if(!(l>=0&&l<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var u=(0,r.default)(e),d=u.getDay(),p=6+(d<l?-7:0)-(d-l);return u.setDate(u.getDate()+p),u.setHours(23,59,59,999),u}},9546:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return z}});var r=n(2274),a=n(4958),o=n(1218),i=n(9013),s=n(3882),c=864e5,l=n(9702),u=n(7032),d=n(3324),p=n(7651);function f(e,t){for(var n=e<0?"-":"",r=Math.abs(e).toString();r.length<t;)r="0"+r;return n+r}var m=function(e,t){var n=e.getUTCFullYear(),r=n>0?n:1-n;return f("yy"===t?r%100:r,t.length)},h=function(e,t){var n=e.getUTCMonth();return"M"===t?String(n+1):f(n+1,2)},g=function(e,t){return f(e.getUTCDate(),t.length)},y=function(e,t){return f(e.getUTCHours()%12||12,t.length)},v=function(e,t){return f(e.getUTCHours(),t.length)},w=function(e,t){return f(e.getUTCMinutes(),t.length)},b=function(e,t){return f(e.getUTCSeconds(),t.length)},M=function(e,t){var n=t.length,r=e.getUTCMilliseconds();return f(Math.floor(r*Math.pow(10,n-3)),t.length)},E={G:function(e,t,n){var r=e.getUTCFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return n.era(r,{width:"abbreviated"});case"GGGGG":return n.era(r,{width:"narrow"});default:return n.era(r,{width:"wide"})}},y:function(e,t,n){if("yo"===t){var r=e.getUTCFullYear(),a=r>0?r:1-r;return n.ordinalNumber(a,{unit:"year"})}return m(e,t)},Y:function(e,t,n,r){var a=(0,p.Z)(e,r),o=a>0?a:1-a;return"YY"===t?f(o%100,2):"Yo"===t?n.ordinalNumber(o,{unit:"year"}):f(o,t.length)},R:function(e,t){return f((0,u.Z)(e),t.length)},u:function(e,t){return f(e.getUTCFullYear(),t.length)},Q:function(e,t,n){var r=Math.ceil((e.getUTCMonth()+1)/3);switch(t){case"Q":return String(r);case"QQ":return f(r,2);case"Qo":return n.ordinalNumber(r,{unit:"quarter"});case"QQQ":return n.quarter(r,{width:"abbreviated",context:"formatting"});case"QQQQQ":return n.quarter(r,{width:"narrow",context:"formatting"});default:return n.quarter(r,{width:"wide",context:"formatting"})}},q:function(e,t,n){var r=Math.ceil((e.getUTCMonth()+1)/3);switch(t){case"q":return String(r);case"qq":return f(r,2);case"qo":return n.ordinalNumber(r,{unit:"quarter"});case"qqq":return n.quarter(r,{width:"abbreviated",context:"standalone"});case"qqqqq":return n.quarter(r,{width:"narrow",context:"standalone"});default:return n.quarter(r,{width:"wide",context:"standalone"})}},M:function(e,t,n){var r=e.getUTCMonth();switch(t){case"M":case"MM":return h(e,t);case"Mo":return n.ordinalNumber(r+1,{unit:"month"});case"MMM":return n.month(r,{width:"abbreviated",context:"formatting"});case"MMMMM":return n.month(r,{width:"narrow",context:"formatting"});default:return n.month(r,{width:"wide",context:"formatting"})}},L:function(e,t,n){var r=e.getUTCMonth();switch(t){case"L":return String(r+1);case"LL":return f(r+1,2);case"Lo":return n.ordinalNumber(r+1,{unit:"month"});case"LLL":return n.month(r,{width:"abbreviated",context:"standalone"});case"LLLLL":return n.month(r,{width:"narrow",context:"standalone"});default:return n.month(r,{width:"wide",context:"standalone"})}},w:function(e,t,n,r){var a=(0,d.Z)(e,r);return"wo"===t?n.ordinalNumber(a,{unit:"week"}):f(a,t.length)},I:function(e,t,n){var r=(0,l.Z)(e);return"Io"===t?n.ordinalNumber(r,{unit:"week"}):f(r,t.length)},d:function(e,t,n){return"do"===t?n.ordinalNumber(e.getUTCDate(),{unit:"date"}):g(e,t)},D:function(e,t,n){var r=function(e){(0,s.Z)(1,arguments);var t=(0,i.default)(e),n=t.getTime();t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0);var r=t.getTime(),a=n-r;return Math.floor(a/c)+1}(e);return"Do"===t?n.ordinalNumber(r,{unit:"dayOfYear"}):f(r,t.length)},E:function(e,t,n){var r=e.getUTCDay();switch(t){case"E":case"EE":case"EEE":return n.day(r,{width:"abbreviated",context:"formatting"});case"EEEEE":return n.day(r,{width:"narrow",context:"formatting"});case"EEEEEE":return n.day(r,{width:"short",context:"formatting"});default:return n.day(r,{width:"wide",context:"formatting"})}},e:function(e,t,n,r){var a=e.getUTCDay(),o=(a-r.weekStartsOn+8)%7||7;switch(t){case"e":return String(o);case"ee":return f(o,2);case"eo":return n.ordinalNumber(o,{unit:"day"});case"eee":return n.day(a,{width:"abbreviated",context:"formatting"});case"eeeee":return n.day(a,{width:"narrow",context:"formatting"});case"eeeeee":return n.day(a,{width:"short",context:"formatting"});default:return n.day(a,{width:"wide",context:"formatting"})}},c:function(e,t,n,r){var a=e.getUTCDay(),o=(a-r.weekStartsOn+8)%7||7;switch(t){case"c":return String(o);case"cc":return f(o,t.length);case"co":return n.ordinalNumber(o,{unit:"day"});case"ccc":return n.day(a,{width:"abbreviated",context:"standalone"});case"ccccc":return n.day(a,{width:"narrow",context:"standalone"});case"cccccc":return n.day(a,{width:"short",context:"standalone"});default:return n.day(a,{width:"wide",context:"standalone"})}},i:function(e,t,n){var r=e.getUTCDay(),a=0===r?7:r;switch(t){case"i":return String(a);case"ii":return f(a,t.length);case"io":return n.ordinalNumber(a,{unit:"day"});case"iii":return n.day(r,{width:"abbreviated",context:"formatting"});case"iiiii":return n.day(r,{width:"narrow",context:"formatting"});case"iiiiii":return n.day(r,{width:"short",context:"formatting"});default:return n.day(r,{width:"wide",context:"formatting"})}},a:function(e,t,n){var r=e.getUTCHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"aaa":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return n.dayPeriod(r,{width:"narrow",context:"formatting"});default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},b:function(e,t,n){var r,a=e.getUTCHours();switch(r=12===a?"noon":0===a?"midnight":a/12>=1?"pm":"am",t){case"b":case"bb":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"bbb":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return n.dayPeriod(r,{width:"narrow",context:"formatting"});default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},B:function(e,t,n){var r,a=e.getUTCHours();switch(r=a>=17?"evening":a>=12?"afternoon":a>=4?"morning":"night",t){case"B":case"BB":case"BBB":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"BBBBB":return n.dayPeriod(r,{width:"narrow",context:"formatting"});default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},h:function(e,t,n){if("ho"===t){var r=e.getUTCHours()%12;return 0===r&&(r=12),n.ordinalNumber(r,{unit:"hour"})}return y(e,t)},H:function(e,t,n){return"Ho"===t?n.ordinalNumber(e.getUTCHours(),{unit:"hour"}):v(e,t)},K:function(e,t,n){var r=e.getUTCHours()%12;return"Ko"===t?n.ordinalNumber(r,{unit:"hour"}):f(r,t.length)},k:function(e,t,n){var r=e.getUTCHours();return 0===r&&(r=24),"ko"===t?n.ordinalNumber(r,{unit:"hour"}):f(r,t.length)},m:function(e,t,n){return"mo"===t?n.ordinalNumber(e.getUTCMinutes(),{unit:"minute"}):w(e,t)},s:function(e,t,n){return"so"===t?n.ordinalNumber(e.getUTCSeconds(),{unit:"second"}):b(e,t)},S:function(e,t){return M(e,t)},X:function(e,t,n,r){var a=(r._originalDate||e).getTimezoneOffset();if(0===a)return"Z";switch(t){case"X":return N(a);case"XXXX":case"XX":return D(a);default:return D(a,":")}},x:function(e,t,n,r){var a=(r._originalDate||e).getTimezoneOffset();switch(t){case"x":return N(a);case"xxxx":case"xx":return D(a);default:return D(a,":")}},O:function(e,t,n,r){var a=(r._originalDate||e).getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+_(a,":");default:return"GMT"+D(a,":")}},z:function(e,t,n,r){var a=(r._originalDate||e).getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+_(a,":");default:return"GMT"+D(a,":")}},t:function(e,t,n,r){var a=r._originalDate||e;return f(Math.floor(a.getTime()/1e3),t.length)},T:function(e,t,n,r){return f((r._originalDate||e).getTime(),t.length)}};function _(e,t){var n=e>0?"-":"+",r=Math.abs(e),a=Math.floor(r/60),o=r%60;if(0===o)return n+String(a);var i=t||"";return n+String(a)+i+f(o,2)}function N(e,t){return e%60==0?(e>0?"-":"+")+f(Math.abs(e)/60,2):D(e,t)}function D(e,t){var n=t||"",r=e>0?"-":"+",a=Math.abs(e);return r+f(Math.floor(a/60),2)+n+f(a%60,2)}var x=E,I=n(5271),j=n(4262),T=n(5267),S=n(3946),O=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,k=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,A=/^'([^]*?)'?$/,C=/''/g,L=/[a-zA-Z]/;function z(e,t,n){(0,s.Z)(2,arguments);var c=String(t),l=n||{},u=l.locale||a.Z,d=u.options&&u.options.firstWeekContainsDate,p=null==d?1:(0,S.Z)(d),f=null==l.firstWeekContainsDate?p:(0,S.Z)(l.firstWeekContainsDate);if(!(f>=1&&f<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var m=u.options&&u.options.weekStartsOn,h=null==m?0:(0,S.Z)(m),g=null==l.weekStartsOn?h:(0,S.Z)(l.weekStartsOn);if(!(g>=0&&g<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(!u.localize)throw new RangeError("locale must contain localize property");if(!u.formatLong)throw new RangeError("locale must contain formatLong property");var y=(0,i.default)(e);if(!(0,r.default)(y))throw new RangeError("Invalid time value");var v=(0,j.Z)(y),w=(0,o.Z)(y,v),b={firstWeekContainsDate:f,weekStartsOn:g,locale:u,_originalDate:y},M=c.match(k).map((function(e){var t=e[0];return"p"===t||"P"===t?(0,I.Z[t])(e,u.formatLong,b):e})).join("").match(O).map((function(n){if("''"===n)return"'";var r=n[0];if("'"===r)return P(n);var a=x[r];if(a)return!l.useAdditionalWeekYearTokens&&(0,T.Do)(n)&&(0,T.qp)(n,t,e),!l.useAdditionalDayOfYearTokens&&(0,T.Iu)(n)&&(0,T.qp)(n,t,e),a(w,n,u.localize,b);if(r.match(L))throw new RangeError("Format string contains an unescaped latin alphabet character `"+r+"`");return n})).join("");return M}function P(e){return e.match(A)[1].replace(C,"'")}},5855:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e),n=t.getDate();return n}},466:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e),n=t.getDay();return n}},5817:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e),n=t.getHours();return n}},9827:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return u}});var r=n(9013),a=n(584),o=n(3882);function i(e){return(0,o.Z)(1,arguments),(0,a.default)(e,{weekStartsOn:1})}function s(e){(0,o.Z)(1,arguments);var t=(0,r.default)(e),n=t.getFullYear(),a=new Date(0);a.setFullYear(n+1,0,4),a.setHours(0,0,0,0);var s=i(a),c=new Date(0);c.setFullYear(n,0,4),c.setHours(0,0,0,0);var l=i(c);return t.getTime()>=s.getTime()?n+1:t.getTime()>=l.getTime()?n:n-1}function c(e){(0,o.Z)(1,arguments);var t=s(e),n=new Date(0);n.setFullYear(t,0,4),n.setHours(0,0,0,0);var r=i(n);return r}var l=6048e5;function u(e){(0,o.Z)(1,arguments);var t=(0,r.default)(e),n=i(t).getTime()-c(t).getTime();return Math.round(n/l)+1}},9159:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e),n=t.getMinutes();return n}},8966:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e),n=t.getMonth();return n}},6605:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e),n=Math.floor(t.getMonth()/3)+1;return n}},7881:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e),n=t.getSeconds();return n}},8789:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e),n=t.getTime();return n}},5570:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){return(0,a.Z)(1,arguments),(0,r.default)(e).getFullYear()}},2699:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e,t){(0,a.Z)(2,arguments);var n=(0,r.default)(e),o=(0,r.default)(t);return n.getTime()>o.getTime()}},6967:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e,t){(0,a.Z)(2,arguments);var n=(0,r.default)(e),o=(0,r.default)(t);return n.getTime()<o.getTime()}},1381:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return a}});var r=n(3882);function a(e){return(0,r.Z)(1,arguments),e instanceof Date||"object"==typeof e&&"[object Date]"===Object.prototype.toString.call(e)}},6843:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e,t){(0,a.Z)(2,arguments);var n=(0,r.default)(e),o=(0,r.default)(t);return n.getTime()===o.getTime()}},3151:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9119),a=n(3882);function o(e,t){(0,a.Z)(2,arguments);var n=(0,r.default)(e),o=(0,r.default)(t);return n.getTime()===o.getTime()}},9160:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e,t){(0,a.Z)(2,arguments);var n=(0,r.default)(e),o=(0,r.default)(t);return n.getFullYear()===o.getFullYear()&&n.getMonth()===o.getMonth()}},6117:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(4431),a=n(3882);function o(e,t){(0,a.Z)(2,arguments);var n=(0,r.default)(e),o=(0,r.default)(t);return n.getTime()===o.getTime()}},792:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e,t){(0,a.Z)(2,arguments);var n=(0,r.default)(e),o=(0,r.default)(t);return n.getFullYear()===o.getFullYear()}},2274:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(1381),a=n(9013),o=n(3882);function i(e){if((0,o.Z)(1,arguments),!(0,r.default)(e)&&"number"!=typeof e)return!1;var t=(0,a.default)(e);return!isNaN(Number(t))}},4257:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e,t){(0,a.Z)(2,arguments);var n=(0,r.default)(e).getTime(),o=(0,r.default)(t.start).getTime(),i=(0,r.default)(t.end).getTime();if(!(o<=i))throw new RangeError("Invalid interval");return n>=o&&n<=i}},4958:function(e,t,n){"use strict";n.d(t,{Z:function(){return m}});var r={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}};function a(e){return function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.width?String(t.width):e.defaultWidth,r=e.formats[n]||e.formats[e.defaultWidth];return r}}var o={date:a({formats:{full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},defaultWidth:"full"}),time:a({formats:{full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},defaultWidth:"full"}),dateTime:a({formats:{full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},defaultWidth:"full"})},i={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"};function s(e){return function(t,n){var r,a=n||{};if("formatting"===(a.context?String(a.context):"standalone")&&e.formattingValues){var o=e.defaultFormattingWidth||e.defaultWidth,i=a.width?String(a.width):o;r=e.formattingValues[i]||e.formattingValues[o]}else{var s=e.defaultWidth,c=a.width?String(a.width):e.defaultWidth;r=e.values[c]||e.values[s]}return r[e.argumentCallback?e.argumentCallback(t):t]}}var c={ordinalNumber:function(e,t){var n=Number(e),r=n%100;if(r>20||r<10)switch(r%10){case 1:return n+"st";case 2:return n+"nd";case 3:return n+"rd"}return n+"th"},era:s({values:{narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},defaultWidth:"wide"}),quarter:s({values:{narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},defaultWidth:"wide",argumentCallback:function(e){return e-1}}),month:s({values:{narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},defaultWidth:"wide"}),day:s({values:{narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},defaultWidth:"wide"}),dayPeriod:s({values:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},defaultWidth:"wide",formattingValues:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},defaultFormattingWidth:"wide"})};function l(e){return function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=n.width,a=r&&e.matchPatterns[r]||e.matchPatterns[e.defaultMatchWidth],o=t.match(a);if(!o)return null;var i,s=o[0],c=r&&e.parsePatterns[r]||e.parsePatterns[e.defaultParseWidth],l=Array.isArray(c)?d(c,(function(e){return e.test(s)})):u(c,(function(e){return e.test(s)}));i=e.valueCallback?e.valueCallback(l):l,i=n.valueCallback?n.valueCallback(i):i;var p=t.slice(s.length);return{value:i,rest:p}}}function u(e,t){for(var n in e)if(e.hasOwnProperty(n)&&t(e[n]))return n}function d(e,t){for(var n=0;n<e.length;n++)if(t(e[n]))return n}var p,f={ordinalNumber:(p={matchPattern:/^(\d+)(th|st|nd|rd)?/i,parsePattern:/\d+/i,valueCallback:function(e){return parseInt(e,10)}},function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.match(p.matchPattern);if(!n)return null;var r=n[0],a=e.match(p.parsePattern);if(!a)return null;var o=p.valueCallback?p.valueCallback(a[0]):a[0];o=t.valueCallback?t.valueCallback(o):o;var i=e.slice(r.length);return{value:o,rest:i}}),era:l({matchPatterns:{narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},defaultMatchWidth:"wide",parsePatterns:{any:[/^b/i,/^(a|c)/i]},defaultParseWidth:"any"}),quarter:l({matchPatterns:{narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},defaultMatchWidth:"wide",parsePatterns:{any:[/1/i,/2/i,/3/i,/4/i]},defaultParseWidth:"any",valueCallback:function(e){return e+1}}),month:l({matchPatterns:{narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},defaultParseWidth:"any"}),day:l({matchPatterns:{narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},defaultParseWidth:"any"}),dayPeriod:l({matchPatterns:{narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},defaultMatchWidth:"any",parsePatterns:{any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},defaultParseWidth:"any"})},m={code:"en-US",formatDistance:function(e,t,n){var a,o=r[e];return a="string"==typeof o?o:1===t?o.one:o.other.replace("{{count}}",t.toString()),null!=n&&n.addSuffix?n.comparison&&n.comparison>0?"in "+a:a+" ago":a},formatLong:o,formatRelative:function(e,t,n,r){return i[e]},localize:c,match:f,options:{weekStartsOn:0,firstWeekContainsDate:1}}},9890:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){var t,n;if((0,a.Z)(1,arguments),e&&"function"==typeof e.forEach)t=e;else{if("object"!=typeof e||null===e)return new Date(NaN);t=Array.prototype.slice.call(e)}return t.forEach((function(e){var t=(0,r.default)(e);(void 0===n||n<t||isNaN(Number(t)))&&(n=t)})),n||new Date(NaN)}},7950:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){var t,n;if((0,a.Z)(1,arguments),e&&"function"==typeof e.forEach)t=e;else{if("object"!=typeof e||null===e)return new Date(NaN);t=Array.prototype.slice.call(e)}return t.forEach((function(e){var t=(0,r.default)(e);(void 0===n||n>t||isNaN(t.getDate()))&&(n=t)})),n||new Date(NaN)}},2902:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}}),Math.pow(10,8);var r=36e5,a=n(3882),o=n(3946);function i(e,t){(0,a.Z)(1,arguments);var n=t||{},r=null==n.additionalDigits?2:(0,o.Z)(n.additionalDigits);if(2!==r&&1!==r&&0!==r)throw new RangeError("additionalDigits must be 0, 1 or 2");if("string"!=typeof e&&"[object String]"!==Object.prototype.toString.call(e))return new Date(NaN);var i,s=d(e);if(s.date){var c=p(s.date,r);i=f(c.restDateString,c.year)}if(!i||isNaN(i.getTime()))return new Date(NaN);var l,u=i.getTime(),m=0;if(s.time&&(m=h(s.time),isNaN(m)))return new Date(NaN);if(!s.timezone){var g=new Date(u+m),v=new Date(0);return v.setFullYear(g.getUTCFullYear(),g.getUTCMonth(),g.getUTCDate()),v.setHours(g.getUTCHours(),g.getUTCMinutes(),g.getUTCSeconds(),g.getUTCMilliseconds()),v}return l=y(s.timezone),isNaN(l)?new Date(NaN):new Date(u+m+l)}var s={dateTimeDelimiter:/[T ]/,timeZoneDelimiter:/[Z ]/i,timezone:/([Z+-].*)$/},c=/^-?(?:(\d{3})|(\d{2})(?:-?(\d{2}))?|W(\d{2})(?:-?(\d{1}))?|)$/,l=/^(\d{2}(?:[.,]\d*)?)(?::?(\d{2}(?:[.,]\d*)?))?(?::?(\d{2}(?:[.,]\d*)?))?$/,u=/^([+-])(\d{2})(?::?(\d{2}))?$/;function d(e){var t,n={},r=e.split(s.dateTimeDelimiter);if(r.length>2)return n;if(/:/.test(r[0])?t=r[0]:(n.date=r[0],t=r[1],s.timeZoneDelimiter.test(n.date)&&(n.date=e.split(s.timeZoneDelimiter)[0],t=e.substr(n.date.length,e.length))),t){var a=s.timezone.exec(t);a?(n.time=t.replace(a[1],""),n.timezone=a[1]):n.time=t}return n}function p(e,t){var n=new RegExp("^(?:(\\d{4}|[+-]\\d{"+(4+t)+"})|(\\d{2}|[+-]\\d{"+(2+t)+"})$)"),r=e.match(n);if(!r)return{year:NaN,restDateString:""};var a=r[1]?parseInt(r[1]):null,o=r[2]?parseInt(r[2]):null;return{year:null===o?a:100*o,restDateString:e.slice((r[1]||r[2]).length)}}function f(e,t){if(null===t)return new Date(NaN);var n=e.match(c);if(!n)return new Date(NaN);var r=!!n[4],a=m(n[1]),o=m(n[2])-1,i=m(n[3]),s=m(n[4]),l=m(n[5])-1;if(r)return function(e,t,n){return t>=1&&t<=53&&n>=0&&n<=6}(0,s,l)?function(e,t,n){var r=new Date(0);r.setUTCFullYear(e,0,4);var a=7*(t-1)+n+1-(r.getUTCDay()||7);return r.setUTCDate(r.getUTCDate()+a),r}(t,s,l):new Date(NaN);var u=new Date(0);return function(e,t,n){return t>=0&&t<=11&&n>=1&&n<=(v[t]||(w(e)?29:28))}(t,o,i)&&function(e,t){return t>=1&&t<=(w(e)?366:365)}(t,a)?(u.setUTCFullYear(t,o,Math.max(a,i)),u):new Date(NaN)}function m(e){return e?parseInt(e):1}function h(e){var t=e.match(l);if(!t)return NaN;var n=g(t[1]),a=g(t[2]),o=g(t[3]);return function(e,t,n){return 24===e?0===t&&0===n:n>=0&&n<60&&t>=0&&t<60&&e>=0&&e<25}(n,a,o)?n*r+6e4*a+1e3*o:NaN}function g(e){return e&&parseFloat(e.replace(",","."))||0}function y(e){if("Z"===e)return 0;var t=e.match(u);if(!t)return 0;var n="+"===t[1]?-1:1,a=parseInt(t[2]),o=t[3]&&parseInt(t[3])||0;return function(e,t){return t>=0&&t<=59}(0,o)?n*(a*r+6e4*o):NaN}var v=[31,null,31,30,31,30,31,31,30,31,30,31];function w(e){return e%400==0||e%4==0&&e%100!=0}},5853:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return ie}});var r=n(4958),a=n(1218),o=n(9013);function i(e,t){if(null==e)throw new TypeError("assign requires that input parameter not be null or undefined");for(var n in t=t||{})Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e}var s=n(5271),c=n(4262),l=n(5267),u=n(3946),d=n(7651),p=n(3882);function f(e,t,n){(0,p.Z)(2,arguments);var r=n||{},a=r.locale,i=a&&a.options&&a.options.weekStartsOn,s=null==i?0:(0,u.Z)(i),c=null==r.weekStartsOn?s:(0,u.Z)(r.weekStartsOn);if(!(c>=0&&c<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var l=(0,o.default)(e),d=(0,u.Z)(t),f=l.getUTCDay(),m=d%7,h=(m+7)%7,g=(h<c?7:0)+d-f;return l.setUTCDate(l.getUTCDate()+g),l}var m=n(9702),h=n(3324),g=n(6979),y=n(9025),v=/^(1[0-2]|0?\d)/,w=/^(3[0-1]|[0-2]?\d)/,b=/^(36[0-6]|3[0-5]\d|[0-2]?\d?\d)/,M=/^(5[0-3]|[0-4]?\d)/,E=/^(2[0-3]|[0-1]?\d)/,_=/^(2[0-4]|[0-1]?\d)/,N=/^(1[0-1]|0?\d)/,D=/^(1[0-2]|0?\d)/,x=/^[0-5]?\d/,I=/^[0-5]?\d/,j=/^\d/,T=/^\d{1,2}/,S=/^\d{1,3}/,O=/^\d{1,4}/,k=/^-?\d+/,A=/^-?\d/,C=/^-?\d{1,2}/,L=/^-?\d{1,3}/,z=/^-?\d{1,4}/,P=/^([+-])(\d{2})(\d{2})?|Z/,U=/^([+-])(\d{2})(\d{2})|Z/,Y=/^([+-])(\d{2})(\d{2})((\d{2}))?|Z/,R=/^([+-])(\d{2}):(\d{2})|Z/,Q=/^([+-])(\d{2}):(\d{2})(:(\d{2}))?|Z/;function B(e,t,n){var r=t.match(e);if(!r)return null;var a=parseInt(r[0],10);return{value:n?n(a):a,rest:t.slice(r[0].length)}}function F(e,t){var n=t.match(e);return n?"Z"===n[0]?{value:0,rest:t.slice(1)}:{value:("+"===n[1]?1:-1)*(36e5*(n[2]?parseInt(n[2],10):0)+6e4*(n[3]?parseInt(n[3],10):0)+1e3*(n[5]?parseInt(n[5],10):0)),rest:t.slice(n[0].length)}:null}function q(e,t){return B(k,e,t)}function H(e,t,n){switch(e){case 1:return B(j,t,n);case 2:return B(T,t,n);case 3:return B(S,t,n);case 4:return B(O,t,n);default:return B(new RegExp("^\\d{1,"+e+"}"),t,n)}}function V(e,t,n){switch(e){case 1:return B(A,t,n);case 2:return B(C,t,n);case 3:return B(L,t,n);case 4:return B(z,t,n);default:return B(new RegExp("^-?\\d{1,"+e+"}"),t,n)}}function G(e){switch(e){case"morning":return 4;case"evening":return 17;case"pm":case"noon":case"afternoon":return 12;default:return 0}}function Z(e,t){var n,r=t>0,a=r?t:1-t;if(a<=50)n=e||100;else{var o=a+50;n=e+100*Math.floor(o/100)-(e>=o%100?100:0)}return r?n:1-n}var W=[31,28,31,30,31,30,31,31,30,31,30,31],$=[31,29,31,30,31,30,31,31,30,31,30,31];function X(e){return e%400==0||e%4==0&&e%100!=0}var K={G:{priority:140,parse:function(e,t,n,r){switch(t){case"G":case"GG":case"GGG":return n.era(e,{width:"abbreviated"})||n.era(e,{width:"narrow"});case"GGGGG":return n.era(e,{width:"narrow"});default:return n.era(e,{width:"wide"})||n.era(e,{width:"abbreviated"})||n.era(e,{width:"narrow"})}},set:function(e,t,n,r){return t.era=n,e.setUTCFullYear(n,0,1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["R","u","t","T"]},y:{priority:130,parse:function(e,t,n,r){var a=function(e){return{year:e,isTwoDigitYear:"yy"===t}};switch(t){case"y":return H(4,e,a);case"yo":return n.ordinalNumber(e,{unit:"year",valueCallback:a});default:return H(t.length,e,a)}},validate:function(e,t,n){return t.isTwoDigitYear||t.year>0},set:function(e,t,n,r){var a=e.getUTCFullYear();if(n.isTwoDigitYear){var o=Z(n.year,a);return e.setUTCFullYear(o,0,1),e.setUTCHours(0,0,0,0),e}var i="era"in t&&1!==t.era?1-n.year:n.year;return e.setUTCFullYear(i,0,1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","u","w","I","i","e","c","t","T"]},Y:{priority:130,parse:function(e,t,n,r){var a=function(e){return{year:e,isTwoDigitYear:"YY"===t}};switch(t){case"Y":return H(4,e,a);case"Yo":return n.ordinalNumber(e,{unit:"year",valueCallback:a});default:return H(t.length,e,a)}},validate:function(e,t,n){return t.isTwoDigitYear||t.year>0},set:function(e,t,n,r){var a=(0,d.Z)(e,r);if(n.isTwoDigitYear){var o=Z(n.year,a);return e.setUTCFullYear(o,0,r.firstWeekContainsDate),e.setUTCHours(0,0,0,0),(0,y.Z)(e,r)}var i="era"in t&&1!==t.era?1-n.year:n.year;return e.setUTCFullYear(i,0,r.firstWeekContainsDate),e.setUTCHours(0,0,0,0),(0,y.Z)(e,r)},incompatibleTokens:["y","R","u","Q","q","M","L","I","d","D","i","t","T"]},R:{priority:130,parse:function(e,t,n,r){return V("R"===t?4:t.length,e)},set:function(e,t,n,r){var a=new Date(0);return a.setUTCFullYear(n,0,4),a.setUTCHours(0,0,0,0),(0,g.Z)(a)},incompatibleTokens:["G","y","Y","u","Q","q","M","L","w","d","D","e","c","t","T"]},u:{priority:130,parse:function(e,t,n,r){return V("u"===t?4:t.length,e)},set:function(e,t,n,r){return e.setUTCFullYear(n,0,1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["G","y","Y","R","w","I","i","e","c","t","T"]},Q:{priority:120,parse:function(e,t,n,r){switch(t){case"Q":case"QQ":return H(t.length,e);case"Qo":return n.ordinalNumber(e,{unit:"quarter"});case"QQQ":return n.quarter(e,{width:"abbreviated",context:"formatting"})||n.quarter(e,{width:"narrow",context:"formatting"});case"QQQQQ":return n.quarter(e,{width:"narrow",context:"formatting"});default:return n.quarter(e,{width:"wide",context:"formatting"})||n.quarter(e,{width:"abbreviated",context:"formatting"})||n.quarter(e,{width:"narrow",context:"formatting"})}},validate:function(e,t,n){return t>=1&&t<=4},set:function(e,t,n,r){return e.setUTCMonth(3*(n-1),1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","q","M","L","w","I","d","D","i","e","c","t","T"]},q:{priority:120,parse:function(e,t,n,r){switch(t){case"q":case"qq":return H(t.length,e);case"qo":return n.ordinalNumber(e,{unit:"quarter"});case"qqq":return n.quarter(e,{width:"abbreviated",context:"standalone"})||n.quarter(e,{width:"narrow",context:"standalone"});case"qqqqq":return n.quarter(e,{width:"narrow",context:"standalone"});default:return n.quarter(e,{width:"wide",context:"standalone"})||n.quarter(e,{width:"abbreviated",context:"standalone"})||n.quarter(e,{width:"narrow",context:"standalone"})}},validate:function(e,t,n){return t>=1&&t<=4},set:function(e,t,n,r){return e.setUTCMonth(3*(n-1),1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","Q","M","L","w","I","d","D","i","e","c","t","T"]},M:{priority:110,parse:function(e,t,n,r){var a=function(e){return e-1};switch(t){case"M":return B(v,e,a);case"MM":return H(2,e,a);case"Mo":return n.ordinalNumber(e,{unit:"month",valueCallback:a});case"MMM":return n.month(e,{width:"abbreviated",context:"formatting"})||n.month(e,{width:"narrow",context:"formatting"});case"MMMMM":return n.month(e,{width:"narrow",context:"formatting"});default:return n.month(e,{width:"wide",context:"formatting"})||n.month(e,{width:"abbreviated",context:"formatting"})||n.month(e,{width:"narrow",context:"formatting"})}},validate:function(e,t,n){return t>=0&&t<=11},set:function(e,t,n,r){return e.setUTCMonth(n,1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","q","Q","L","w","I","D","i","e","c","t","T"]},L:{priority:110,parse:function(e,t,n,r){var a=function(e){return e-1};switch(t){case"L":return B(v,e,a);case"LL":return H(2,e,a);case"Lo":return n.ordinalNumber(e,{unit:"month",valueCallback:a});case"LLL":return n.month(e,{width:"abbreviated",context:"standalone"})||n.month(e,{width:"narrow",context:"standalone"});case"LLLLL":return n.month(e,{width:"narrow",context:"standalone"});default:return n.month(e,{width:"wide",context:"standalone"})||n.month(e,{width:"abbreviated",context:"standalone"})||n.month(e,{width:"narrow",context:"standalone"})}},validate:function(e,t,n){return t>=0&&t<=11},set:function(e,t,n,r){return e.setUTCMonth(n,1),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","q","Q","M","w","I","D","i","e","c","t","T"]},w:{priority:100,parse:function(e,t,n,r){switch(t){case"w":return B(M,e);case"wo":return n.ordinalNumber(e,{unit:"week"});default:return H(t.length,e)}},validate:function(e,t,n){return t>=1&&t<=53},set:function(e,t,n,r){return(0,y.Z)(function(e,t,n){(0,p.Z)(2,arguments);var r=(0,o.default)(e),a=(0,u.Z)(t),i=(0,h.Z)(r,n)-a;return r.setUTCDate(r.getUTCDate()-7*i),r}(e,n,r),r)},incompatibleTokens:["y","R","u","q","Q","M","L","I","d","D","i","t","T"]},I:{priority:100,parse:function(e,t,n,r){switch(t){case"I":return B(M,e);case"Io":return n.ordinalNumber(e,{unit:"week"});default:return H(t.length,e)}},validate:function(e,t,n){return t>=1&&t<=53},set:function(e,t,n,r){return(0,g.Z)(function(e,t){(0,p.Z)(2,arguments);var n=(0,o.default)(e),r=(0,u.Z)(t),a=(0,m.Z)(n)-r;return n.setUTCDate(n.getUTCDate()-7*a),n}(e,n,r),r)},incompatibleTokens:["y","Y","u","q","Q","M","L","w","d","D","e","c","t","T"]},d:{priority:90,subPriority:1,parse:function(e,t,n,r){switch(t){case"d":return B(w,e);case"do":return n.ordinalNumber(e,{unit:"date"});default:return H(t.length,e)}},validate:function(e,t,n){var r=X(e.getUTCFullYear()),a=e.getUTCMonth();return r?t>=1&&t<=$[a]:t>=1&&t<=W[a]},set:function(e,t,n,r){return e.setUTCDate(n),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","q","Q","w","I","D","i","e","c","t","T"]},D:{priority:90,subPriority:1,parse:function(e,t,n,r){switch(t){case"D":case"DD":return B(b,e);case"Do":return n.ordinalNumber(e,{unit:"date"});default:return H(t.length,e)}},validate:function(e,t,n){return X(e.getUTCFullYear())?t>=1&&t<=366:t>=1&&t<=365},set:function(e,t,n,r){return e.setUTCMonth(0,n),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["Y","R","q","Q","M","L","w","I","d","E","i","e","c","t","T"]},E:{priority:90,parse:function(e,t,n,r){switch(t){case"E":case"EE":case"EEE":return n.day(e,{width:"abbreviated",context:"formatting"})||n.day(e,{width:"short",context:"formatting"})||n.day(e,{width:"narrow",context:"formatting"});case"EEEEE":return n.day(e,{width:"narrow",context:"formatting"});case"EEEEEE":return n.day(e,{width:"short",context:"formatting"})||n.day(e,{width:"narrow",context:"formatting"});default:return n.day(e,{width:"wide",context:"formatting"})||n.day(e,{width:"abbreviated",context:"formatting"})||n.day(e,{width:"short",context:"formatting"})||n.day(e,{width:"narrow",context:"formatting"})}},validate:function(e,t,n){return t>=0&&t<=6},set:function(e,t,n,r){return(e=f(e,n,r)).setUTCHours(0,0,0,0),e},incompatibleTokens:["D","i","e","c","t","T"]},e:{priority:90,parse:function(e,t,n,r){var a=function(e){var t=7*Math.floor((e-1)/7);return(e+r.weekStartsOn+6)%7+t};switch(t){case"e":case"ee":return H(t.length,e,a);case"eo":return n.ordinalNumber(e,{unit:"day",valueCallback:a});case"eee":return n.day(e,{width:"abbreviated",context:"formatting"})||n.day(e,{width:"short",context:"formatting"})||n.day(e,{width:"narrow",context:"formatting"});case"eeeee":return n.day(e,{width:"narrow",context:"formatting"});case"eeeeee":return n.day(e,{width:"short",context:"formatting"})||n.day(e,{width:"narrow",context:"formatting"});default:return n.day(e,{width:"wide",context:"formatting"})||n.day(e,{width:"abbreviated",context:"formatting"})||n.day(e,{width:"short",context:"formatting"})||n.day(e,{width:"narrow",context:"formatting"})}},validate:function(e,t,n){return t>=0&&t<=6},set:function(e,t,n,r){return(e=f(e,n,r)).setUTCHours(0,0,0,0),e},incompatibleTokens:["y","R","u","q","Q","M","L","I","d","D","E","i","c","t","T"]},c:{priority:90,parse:function(e,t,n,r){var a=function(e){var t=7*Math.floor((e-1)/7);return(e+r.weekStartsOn+6)%7+t};switch(t){case"c":case"cc":return H(t.length,e,a);case"co":return n.ordinalNumber(e,{unit:"day",valueCallback:a});case"ccc":return n.day(e,{width:"abbreviated",context:"standalone"})||n.day(e,{width:"short",context:"standalone"})||n.day(e,{width:"narrow",context:"standalone"});case"ccccc":return n.day(e,{width:"narrow",context:"standalone"});case"cccccc":return n.day(e,{width:"short",context:"standalone"})||n.day(e,{width:"narrow",context:"standalone"});default:return n.day(e,{width:"wide",context:"standalone"})||n.day(e,{width:"abbreviated",context:"standalone"})||n.day(e,{width:"short",context:"standalone"})||n.day(e,{width:"narrow",context:"standalone"})}},validate:function(e,t,n){return t>=0&&t<=6},set:function(e,t,n,r){return(e=f(e,n,r)).setUTCHours(0,0,0,0),e},incompatibleTokens:["y","R","u","q","Q","M","L","I","d","D","E","i","e","t","T"]},i:{priority:90,parse:function(e,t,n,r){var a=function(e){return 0===e?7:e};switch(t){case"i":case"ii":return H(t.length,e);case"io":return n.ordinalNumber(e,{unit:"day"});case"iii":return n.day(e,{width:"abbreviated",context:"formatting",valueCallback:a})||n.day(e,{width:"short",context:"formatting",valueCallback:a})||n.day(e,{width:"narrow",context:"formatting",valueCallback:a});case"iiiii":return n.day(e,{width:"narrow",context:"formatting",valueCallback:a});case"iiiiii":return n.day(e,{width:"short",context:"formatting",valueCallback:a})||n.day(e,{width:"narrow",context:"formatting",valueCallback:a});default:return n.day(e,{width:"wide",context:"formatting",valueCallback:a})||n.day(e,{width:"abbreviated",context:"formatting",valueCallback:a})||n.day(e,{width:"short",context:"formatting",valueCallback:a})||n.day(e,{width:"narrow",context:"formatting",valueCallback:a})}},validate:function(e,t,n){return t>=1&&t<=7},set:function(e,t,n,r){return e=function(e,t){(0,p.Z)(2,arguments);var n=(0,u.Z)(t);n%7==0&&(n-=7);var r=1,a=(0,o.default)(e),i=a.getUTCDay(),s=((n%7+7)%7<r?7:0)+n-i;return a.setUTCDate(a.getUTCDate()+s),a}(e,n,r),e.setUTCHours(0,0,0,0),e},incompatibleTokens:["y","Y","u","q","Q","M","L","w","d","D","E","e","c","t","T"]},a:{priority:80,parse:function(e,t,n,r){switch(t){case"a":case"aa":case"aaa":return n.dayPeriod(e,{width:"abbreviated",context:"formatting"})||n.dayPeriod(e,{width:"narrow",context:"formatting"});case"aaaaa":return n.dayPeriod(e,{width:"narrow",context:"formatting"});default:return n.dayPeriod(e,{width:"wide",context:"formatting"})||n.dayPeriod(e,{width:"abbreviated",context:"formatting"})||n.dayPeriod(e,{width:"narrow",context:"formatting"})}},set:function(e,t,n,r){return e.setUTCHours(G(n),0,0,0),e},incompatibleTokens:["b","B","H","k","t","T"]},b:{priority:80,parse:function(e,t,n,r){switch(t){case"b":case"bb":case"bbb":return n.dayPeriod(e,{width:"abbreviated",context:"formatting"})||n.dayPeriod(e,{width:"narrow",context:"formatting"});case"bbbbb":return n.dayPeriod(e,{width:"narrow",context:"formatting"});default:return n.dayPeriod(e,{width:"wide",context:"formatting"})||n.dayPeriod(e,{width:"abbreviated",context:"formatting"})||n.dayPeriod(e,{width:"narrow",context:"formatting"})}},set:function(e,t,n,r){return e.setUTCHours(G(n),0,0,0),e},incompatibleTokens:["a","B","H","k","t","T"]},B:{priority:80,parse:function(e,t,n,r){switch(t){case"B":case"BB":case"BBB":return n.dayPeriod(e,{width:"abbreviated",context:"formatting"})||n.dayPeriod(e,{width:"narrow",context:"formatting"});case"BBBBB":return n.dayPeriod(e,{width:"narrow",context:"formatting"});default:return n.dayPeriod(e,{width:"wide",context:"formatting"})||n.dayPeriod(e,{width:"abbreviated",context:"formatting"})||n.dayPeriod(e,{width:"narrow",context:"formatting"})}},set:function(e,t,n,r){return e.setUTCHours(G(n),0,0,0),e},incompatibleTokens:["a","b","t","T"]},h:{priority:70,parse:function(e,t,n,r){switch(t){case"h":return B(D,e);case"ho":return n.ordinalNumber(e,{unit:"hour"});default:return H(t.length,e)}},validate:function(e,t,n){return t>=1&&t<=12},set:function(e,t,n,r){var a=e.getUTCHours()>=12;return a&&n<12?e.setUTCHours(n+12,0,0,0):a||12!==n?e.setUTCHours(n,0,0,0):e.setUTCHours(0,0,0,0),e},incompatibleTokens:["H","K","k","t","T"]},H:{priority:70,parse:function(e,t,n,r){switch(t){case"H":return B(E,e);case"Ho":return n.ordinalNumber(e,{unit:"hour"});default:return H(t.length,e)}},validate:function(e,t,n){return t>=0&&t<=23},set:function(e,t,n,r){return e.setUTCHours(n,0,0,0),e},incompatibleTokens:["a","b","h","K","k","t","T"]},K:{priority:70,parse:function(e,t,n,r){switch(t){case"K":return B(N,e);case"Ko":return n.ordinalNumber(e,{unit:"hour"});default:return H(t.length,e)}},validate:function(e,t,n){return t>=0&&t<=11},set:function(e,t,n,r){return e.getUTCHours()>=12&&n<12?e.setUTCHours(n+12,0,0,0):e.setUTCHours(n,0,0,0),e},incompatibleTokens:["h","H","k","t","T"]},k:{priority:70,parse:function(e,t,n,r){switch(t){case"k":return B(_,e);case"ko":return n.ordinalNumber(e,{unit:"hour"});default:return H(t.length,e)}},validate:function(e,t,n){return t>=1&&t<=24},set:function(e,t,n,r){var a=n<=24?n%24:n;return e.setUTCHours(a,0,0,0),e},incompatibleTokens:["a","b","h","H","K","t","T"]},m:{priority:60,parse:function(e,t,n,r){switch(t){case"m":return B(x,e);case"mo":return n.ordinalNumber(e,{unit:"minute"});default:return H(t.length,e)}},validate:function(e,t,n){return t>=0&&t<=59},set:function(e,t,n,r){return e.setUTCMinutes(n,0,0),e},incompatibleTokens:["t","T"]},s:{priority:50,parse:function(e,t,n,r){switch(t){case"s":return B(I,e);case"so":return n.ordinalNumber(e,{unit:"second"});default:return H(t.length,e)}},validate:function(e,t,n){return t>=0&&t<=59},set:function(e,t,n,r){return e.setUTCSeconds(n,0),e},incompatibleTokens:["t","T"]},S:{priority:30,parse:function(e,t,n,r){return H(t.length,e,(function(e){return Math.floor(e*Math.pow(10,3-t.length))}))},set:function(e,t,n,r){return e.setUTCMilliseconds(n),e},incompatibleTokens:["t","T"]},X:{priority:10,parse:function(e,t,n,r){switch(t){case"X":return F(P,e);case"XX":return F(U,e);case"XXXX":return F(Y,e);case"XXXXX":return F(Q,e);default:return F(R,e)}},set:function(e,t,n,r){return t.timestampIsSet?e:new Date(e.getTime()-n)},incompatibleTokens:["t","T","x"]},x:{priority:10,parse:function(e,t,n,r){switch(t){case"x":return F(P,e);case"xx":return F(U,e);case"xxxx":return F(Y,e);case"xxxxx":return F(Q,e);default:return F(R,e)}},set:function(e,t,n,r){return t.timestampIsSet?e:new Date(e.getTime()-n)},incompatibleTokens:["t","T","X"]},t:{priority:40,parse:function(e,t,n,r){return q(e)},set:function(e,t,n,r){return[new Date(1e3*n),{timestampIsSet:!0}]},incompatibleTokens:"*"},T:{priority:20,parse:function(e,t,n,r){return q(e)},set:function(e,t,n,r){return[new Date(n),{timestampIsSet:!0}]},incompatibleTokens:"*"}},J=K,ee=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,te=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,ne=/^'([^]*?)'?$/,re=/''/g,ae=/\S/,oe=/[a-zA-Z]/;function ie(e,t,n,d){(0,p.Z)(3,arguments);var f=String(e),m=String(t),h=d||{},g=h.locale||r.Z;if(!g.match)throw new RangeError("locale must contain match property");var y=g.options&&g.options.firstWeekContainsDate,v=null==y?1:(0,u.Z)(y),w=null==h.firstWeekContainsDate?v:(0,u.Z)(h.firstWeekContainsDate);if(!(w>=1&&w<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var b=g.options&&g.options.weekStartsOn,M=null==b?0:(0,u.Z)(b),E=null==h.weekStartsOn?M:(0,u.Z)(h.weekStartsOn);if(!(E>=0&&E<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(""===m)return""===f?(0,o.default)(n):new Date(NaN);var _,N={firstWeekContainsDate:w,weekStartsOn:E,locale:g},D=[{priority:10,subPriority:-1,set:se,index:0}],x=m.match(te).map((function(e){var t=e[0];return"p"===t||"P"===t?(0,s.Z[t])(e,g.formatLong,N):e})).join("").match(ee),I=[];for(_=0;_<x.length;_++){var j=x[_];!h.useAdditionalWeekYearTokens&&(0,l.Do)(j)&&(0,l.qp)(j,m,e),!h.useAdditionalDayOfYearTokens&&(0,l.Iu)(j)&&(0,l.qp)(j,m,e);var T=j[0],S=J[T];if(S){var O=S.incompatibleTokens;if(Array.isArray(O)){for(var k=void 0,A=0;A<I.length;A++){var C=I[A].token;if(-1!==O.indexOf(C)||C===T){k=I[A];break}}if(k)throw new RangeError("The format string mustn't contain `".concat(k.fullToken,"` and `").concat(j,"` at the same time"))}else if("*"===S.incompatibleTokens&&I.length)throw new RangeError("The format string mustn't contain `".concat(j,"` and any other token at the same time"));I.push({token:T,fullToken:j});var L=S.parse(f,j,g.match,N);if(!L)return new Date(NaN);D.push({priority:S.priority,subPriority:S.subPriority||0,set:S.set,validate:S.validate,value:L.value,index:D.length}),f=L.rest}else{if(T.match(oe))throw new RangeError("Format string contains an unescaped latin alphabet character `"+T+"`");if("''"===j?j="'":"'"===T&&(j=ce(j)),0!==f.indexOf(j))return new Date(NaN);f=f.slice(j.length)}}if(f.length>0&&ae.test(f))return new Date(NaN);var z=D.map((function(e){return e.priority})).sort((function(e,t){return t-e})).filter((function(e,t,n){return n.indexOf(e)===t})).map((function(e){return D.filter((function(t){return t.priority===e})).sort((function(e,t){return t.subPriority-e.subPriority}))})).map((function(e){return e[0]})),P=(0,o.default)(n);if(isNaN(P))return new Date(NaN);var U=(0,a.Z)(P,(0,c.Z)(P)),Y={};for(_=0;_<z.length;_++){var R=z[_];if(R.validate&&!R.validate(U,R.value,N))return new Date(NaN);var Q=R.set(U,Y,R.value,N);Q[0]?(U=Q[0],i(Y,Q[1])):U=Q}return U}function se(e,t){if(t.timestampIsSet)return e;var n=new Date(0);return n.setFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()),n.setHours(e.getUTCHours(),e.getUTCMinutes(),e.getUTCSeconds(),e.getUTCMilliseconds()),n}function ce(e){return e.match(ne)[1].replace(re,"'")}},7042:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(9013),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,a.default)(e),i=(0,r.Z)(t);return n.setHours(i),n}},4543:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(9013),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,a.default)(e),i=(0,r.Z)(t);return n.setMinutes(i),n}},2225:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return s}});var r=n(3946),a=n(9013),o=n(3882);function i(e){(0,o.Z)(1,arguments);var t=(0,a.default)(e),n=t.getFullYear(),r=t.getMonth(),i=new Date(0);return i.setFullYear(n,r+1,0),i.setHours(0,0,0,0),i.getDate()}function s(e,t){(0,o.Z)(2,arguments);var n=(0,a.default)(e),s=(0,r.Z)(t),c=n.getFullYear(),l=n.getDate(),u=new Date(0);u.setFullYear(c,s,15),u.setHours(0,0,0,0);var d=i(u);return n.setMonth(s,Math.min(l,d)),n}},1503:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return s}});var r=n(3946),a=n(9013),o=n(2225),i=n(3882);function s(e,t){(0,i.Z)(2,arguments);var n=(0,a.default)(e),s=(0,r.Z)(t),c=Math.floor(n.getMonth()/3)+1,l=s-c;return(0,o.default)(n,n.getMonth()+3*l)}},9880:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(9013),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,a.default)(e),i=(0,r.Z)(t);return n.setSeconds(i),n}},4749:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(9013),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,a.default)(e),i=(0,r.Z)(t);return isNaN(n.getTime())?new Date(NaN):(n.setFullYear(i),n)}},9119:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e);return t.setHours(0,0,0,0),t}},3703:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e);return t.setDate(1),t.setHours(0,0,0,0),t}},4431:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e),n=t.getMonth(),o=n-n%3;return t.setMonth(o,1),t.setHours(0,0,0,0),t}},584:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(9013),a=n(3946),o=n(3882);function i(e,t){(0,o.Z)(1,arguments);var n=t||{},i=n.locale,s=i&&i.options&&i.options.weekStartsOn,c=null==s?0:(0,a.Z)(s),l=null==n.weekStartsOn?c:(0,a.Z)(n.weekStartsOn);if(!(l>=0&&l<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var u=(0,r.default)(e),d=u.getDay(),p=(d<l?7:0)+d-l;return u.setDate(u.getDate()-p),u.setHours(0,0,0,0),u}},8148:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return o}});var r=n(9013),a=n(3882);function o(e){(0,a.Z)(1,arguments);var t=(0,r.default)(e),n=new Date(0);return n.setFullYear(t.getFullYear(),0,1),n.setHours(0,0,0,0),n}},7069:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(7349),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,r.Z)(t);return(0,a.default)(e,-n)}},8330:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(8343),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,r.Z)(t);return(0,a.default)(e,-n)}},1218:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var r=n(3946),a=n(1820),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,r.Z)(t);return(0,a.Z)(e,-n)}},1784:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(8545),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,r.Z)(t);return(0,a.default)(e,-n)}},4559:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(1640),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,r.Z)(t);return(0,a.default)(e,-n)}},7982:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(3500),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,r.Z)(t);return(0,a.default)(e,-n)}},9319:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return i}});var r=n(3946),a=n(1593),o=n(3882);function i(e,t){(0,o.Z)(2,arguments);var n=(0,r.Z)(t);return(0,a.default)(e,-n)}},9013:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return a}});var r=n(3882);function a(e){(0,r.Z)(1,arguments);var t=Object.prototype.toString.call(e);return e instanceof Date||"object"==typeof e&&"[object Date]"===t?new Date(e.getTime()):"number"==typeof e||"[object Number]"===t?new Date(e):("string"!=typeof e&&"[object String]"!==t||"undefined"==typeof console||(console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://git.io/fjule"),console.warn((new Error).stack)),new Date(NaN))}},7187:function(e){"use strict";var t,n="object"==typeof Reflect?Reflect:null,r=n&&"function"==typeof n.apply?n.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};t=n&&"function"==typeof n.ownKeys?n.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var a=Number.isNaN||function(e){return e!=e};function o(){o.init.call(this)}e.exports=o,e.exports.once=function(e,t){return new Promise((function(n,r){function a(n){e.removeListener(t,o),r(n)}function o(){"function"==typeof e.removeListener&&e.removeListener("error",a),n([].slice.call(arguments))}h(e,t,o,{once:!0}),"error"!==t&&function(e,t,n){"function"==typeof e.on&&h(e,"error",t,{once:!0})}(e,a)}))},o.EventEmitter=o,o.prototype._events=void 0,o.prototype._eventsCount=0,o.prototype._maxListeners=void 0;var i=10;function s(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function c(e){return void 0===e._maxListeners?o.defaultMaxListeners:e._maxListeners}function l(e,t,n,r){var a,o,i,l;if(s(n),void 0===(o=e._events)?(o=e._events=Object.create(null),e._eventsCount=0):(void 0!==o.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),o=e._events),i=o[t]),void 0===i)i=o[t]=n,++e._eventsCount;else if("function"==typeof i?i=o[t]=r?[n,i]:[i,n]:r?i.unshift(n):i.push(n),(a=c(e))>0&&i.length>a&&!i.warned){i.warned=!0;var u=new Error("Possible EventEmitter memory leak detected. "+i.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");u.name="MaxListenersExceededWarning",u.emitter=e,u.type=t,u.count=i.length,l=u,console&&console.warn&&console.warn(l)}return e}function u(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function d(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},a=u.bind(r);return a.listener=n,r.wrapFn=a,a}function p(e,t,n){var r=e._events;if(void 0===r)return[];var a=r[t];return void 0===a?[]:"function"==typeof a?n?[a.listener||a]:[a]:n?function(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(a):m(a,a.length)}function f(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function m(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e[r];return n}function h(e,t,n,r){if("function"==typeof e.on)r.once?e.once(t,n):e.on(t,n);else{if("function"!=typeof e.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof e);e.addEventListener(t,(function a(o){r.once&&e.removeEventListener(t,a),n(o)}))}}Object.defineProperty(o,"defaultMaxListeners",{enumerable:!0,get:function(){return i},set:function(e){if("number"!=typeof e||e<0||a(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");i=e}}),o.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},o.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||a(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},o.prototype.getMaxListeners=function(){return c(this)},o.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var a="error"===e,o=this._events;if(void 0!==o)a=a&&void 0===o.error;else if(!a)return!1;if(a){var i;if(t.length>0&&(i=t[0]),i instanceof Error)throw i;var s=new Error("Unhandled error."+(i?" ("+i.message+")":""));throw s.context=i,s}var c=o[e];if(void 0===c)return!1;if("function"==typeof c)r(c,this,t);else{var l=c.length,u=m(c,l);for(n=0;n<l;++n)r(u[n],this,t)}return!0},o.prototype.addListener=function(e,t){return l(this,e,t,!1)},o.prototype.on=o.prototype.addListener,o.prototype.prependListener=function(e,t){return l(this,e,t,!0)},o.prototype.once=function(e,t){return s(t),this.on(e,d(this,e,t)),this},o.prototype.prependOnceListener=function(e,t){return s(t),this.prependListener(e,d(this,e,t)),this},o.prototype.removeListener=function(e,t){var n,r,a,o,i;if(s(t),void 0===(r=this._events))return this;if(void 0===(n=r[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete r[e],r.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(a=-1,o=n.length-1;o>=0;o--)if(n[o]===t||n[o].listener===t){i=n[o].listener,a=o;break}if(a<0)return this;0===a?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,a),1===n.length&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,i||t)}return this},o.prototype.off=o.prototype.removeListener,o.prototype.removeAllListeners=function(e){var t,n,r;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var a,o=Object.keys(n);for(r=0;r<o.length;++r)"removeListener"!==(a=o[r])&&this.removeAllListeners(a);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(r=t.length-1;r>=0;r--)this.removeListener(e,t[r]);return this},o.prototype.listeners=function(e){return p(this,e,!0)},o.prototype.rawListeners=function(e){return p(this,e,!1)},o.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):f.call(e,t)},o.prototype.listenerCount=f,o.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},8282:function(e,t,n){var r=n(2354);e.exports={Graph:r.Graph,json:n(8974),alg:n(2440),version:r.version}},2842:function(e,t,n){var r=n(9126);e.exports=function(e){var t,n={},a=[];function o(a){r.has(n,a)||(n[a]=!0,t.push(a),r.each(e.successors(a),o),r.each(e.predecessors(a),o))}return r.each(e.nodes(),(function(e){t=[],o(e),t.length&&a.push(t)})),a}},3984:function(e,t,n){var r=n(9126);function a(e,t,n,o,i,s){r.has(o,t)||(o[t]=!0,n||s.push(t),r.each(i(t),(function(t){a(e,t,n,o,i,s)})),n&&s.push(t))}e.exports=function(e,t,n){r.isArray(t)||(t=[t]);var o=(e.isDirected()?e.successors:e.neighbors).bind(e),i=[],s={};return r.each(t,(function(t){if(!e.hasNode(t))throw new Error("Graph does not have node: "+t);a(e,t,"post"===n,s,o,i)})),i}},4847:function(e,t,n){var r=n(3763),a=n(9126);e.exports=function(e,t,n){return a.transform(e.nodes(),(function(a,o){a[o]=r(e,o,t,n)}),{})}},3763:function(e,t,n){var r=n(9126),a=n(9675);e.exports=function(e,t,n,r){return function(e,t,n,r){var o,i,s={},c=new a,l=function(e){var t=e.v!==o?e.v:e.w,r=s[t],a=n(e),l=i.distance+a;if(a<0)throw new Error("dijkstra does not allow negative edge weights. Bad edge: "+e+" Weight: "+a);l<r.distance&&(r.distance=l,r.predecessor=o,c.decrease(t,l))};for(e.nodes().forEach((function(e){var n=e===t?0:Number.POSITIVE_INFINITY;s[e]={distance:n},c.add(e,n)}));c.size()>0&&(o=c.removeMin(),(i=s[o]).distance!==Number.POSITIVE_INFINITY);)r(o).forEach(l);return s}(e,String(t),n||o,r||function(t){return e.outEdges(t)})};var o=r.constant(1)},9096:function(e,t,n){var r=n(9126),a=n(5023);e.exports=function(e){return r.filter(a(e),(function(t){return t.length>1||1===t.length&&e.hasEdge(t[0],t[0])}))}},8924:function(e,t,n){var r=n(9126);e.exports=function(e,t,n){return function(e,t,n){var r={},a=e.nodes();return a.forEach((function(e){r[e]={},r[e][e]={distance:0},a.forEach((function(t){e!==t&&(r[e][t]={distance:Number.POSITIVE_INFINITY})})),n(e).forEach((function(n){var a=n.v===e?n.w:n.v,o=t(n);r[e][a]={distance:o,predecessor:e}}))})),a.forEach((function(e){var t=r[e];a.forEach((function(n){var o=r[n];a.forEach((function(n){var r=o[e],a=t[n],i=o[n],s=r.distance+a.distance;s<i.distance&&(i.distance=s,i.predecessor=a.predecessor)}))}))})),r}(e,t||a,n||function(t){return e.outEdges(t)})};var a=r.constant(1)},2440:function(e,t,n){e.exports={components:n(2842),dijkstra:n(3763),dijkstraAll:n(4847),findCycles:n(9096),floydWarshall:n(8924),isAcyclic:n(2707),postorder:n(8828),preorder:n(2648),prim:n(514),tarjan:n(5023),topsort:n(2166)}},2707:function(e,t,n){var r=n(2166);e.exports=function(e){try{r(e)}catch(e){if(e instanceof r.CycleException)return!1;throw e}return!0}},8828:function(e,t,n){var r=n(3984);e.exports=function(e,t){return r(e,t,"post")}},2648:function(e,t,n){var r=n(3984);e.exports=function(e,t){return r(e,t,"pre")}},514:function(e,t,n){var r=n(9126),a=n(771),o=n(9675);e.exports=function(e,t){var n,i=new a,s={},c=new o;function l(e){var r=e.v===n?e.w:e.v,a=c.priority(r);if(void 0!==a){var o=t(e);o<a&&(s[r]=n,c.decrease(r,o))}}if(0===e.nodeCount())return i;r.each(e.nodes(),(function(e){c.add(e,Number.POSITIVE_INFINITY),i.setNode(e)})),c.decrease(e.nodes()[0],0);for(var u=!1;c.size()>0;){if(n=c.removeMin(),r.has(s,n))i.setEdge(n,s[n]);else{if(u)throw new Error("Input graph is not connected: "+e);u=!0}e.nodeEdges(n).forEach(l)}return i}},5023:function(e,t,n){var r=n(9126);e.exports=function(e){var t=0,n=[],a={},o=[];function i(s){var c=a[s]={onStack:!0,lowlink:t,index:t++};if(n.push(s),e.successors(s).forEach((function(e){r.has(a,e)?a[e].onStack&&(c.lowlink=Math.min(c.lowlink,a[e].index)):(i(e),c.lowlink=Math.min(c.lowlink,a[e].lowlink))})),c.lowlink===c.index){var l,u=[];do{l=n.pop(),a[l].onStack=!1,u.push(l)}while(s!==l);o.push(u)}}return e.nodes().forEach((function(e){r.has(a,e)||i(e)})),o}},2166:function(e,t,n){var r=n(9126);function a(e){var t={},n={},a=[];if(r.each(e.sinks(),(function i(s){if(r.has(n,s))throw new o;r.has(t,s)||(n[s]=!0,t[s]=!0,r.each(e.predecessors(s),i),delete n[s],a.push(s))})),r.size(t)!==e.nodeCount())throw new o;return a}function o(){}e.exports=a,a.CycleException=o,o.prototype=new Error},9675:function(e,t,n){var r=n(9126);function a(){this._arr=[],this._keyIndices={}}e.exports=a,a.prototype.size=function(){return this._arr.length},a.prototype.keys=function(){return this._arr.map((function(e){return e.key}))},a.prototype.has=function(e){return r.has(this._keyIndices,e)},a.prototype.priority=function(e){var t=this._keyIndices[e];if(void 0!==t)return this._arr[t].priority},a.prototype.min=function(){if(0===this.size())throw new Error("Queue underflow");return this._arr[0].key},a.prototype.add=function(e,t){var n=this._keyIndices;if(e=String(e),!r.has(n,e)){var a=this._arr,o=a.length;return n[e]=o,a.push({key:e,priority:t}),this._decrease(o),!0}return!1},a.prototype.removeMin=function(){this._swap(0,this._arr.length-1);var e=this._arr.pop();return delete this._keyIndices[e.key],this._heapify(0),e.key},a.prototype.decrease=function(e,t){var n=this._keyIndices[e];if(t>this._arr[n].priority)throw new Error("New priority is greater than current priority. Key: "+e+" Old: "+this._arr[n].priority+" New: "+t);this._arr[n].priority=t,this._decrease(n)},a.prototype._heapify=function(e){var t=this._arr,n=2*e,r=n+1,a=e;n<t.length&&(a=t[n].priority<t[a].priority?n:a,r<t.length&&(a=t[r].priority<t[a].priority?r:a),a!==e&&(this._swap(e,a),this._heapify(a)))},a.prototype._decrease=function(e){for(var t,n=this._arr,r=n[e].priority;0!==e&&!(n[t=e>>1].priority<r);)this._swap(e,t),e=t},a.prototype._swap=function(e,t){var n=this._arr,r=this._keyIndices,a=n[e],o=n[t];n[e]=o,n[t]=a,r[o.key]=e,r[a.key]=t}},771:function(e,t,n){"use strict";var r=n(9126);e.exports=o;var a="\0";function o(e){this._isDirected=!r.has(e,"directed")||e.directed,this._isMultigraph=!!r.has(e,"multigraph")&&e.multigraph,this._isCompound=!!r.has(e,"compound")&&e.compound,this._label=void 0,this._defaultNodeLabelFn=r.constant(void 0),this._defaultEdgeLabelFn=r.constant(void 0),this._nodes={},this._isCompound&&(this._parent={},this._children={},this._children["\0"]={}),this._in={},this._preds={},this._out={},this._sucs={},this._edgeObjs={},this._edgeLabels={}}function i(e,t){e[t]?e[t]++:e[t]=1}function s(e,t){--e[t]||delete e[t]}function c(e,t,n,a){var o=""+t,i=""+n;if(!e&&o>i){var s=o;o=i,i=s}return o+""+i+""+(r.isUndefined(a)?"\0":a)}function l(e,t,n,r){var a=""+t,o=""+n;if(!e&&a>o){var i=a;a=o,o=i}var s={v:a,w:o};return r&&(s.name=r),s}function u(e,t){return c(e,t.v,t.w,t.name)}o.prototype._nodeCount=0,o.prototype._edgeCount=0,o.prototype.isDirected=function(){return this._isDirected},o.prototype.isMultigraph=function(){return this._isMultigraph},o.prototype.isCompound=function(){return this._isCompound},o.prototype.setGraph=function(e){return this._label=e,this},o.prototype.graph=function(){return this._label},o.prototype.setDefaultNodeLabel=function(e){return r.isFunction(e)||(e=r.constant(e)),this._defaultNodeLabelFn=e,this},o.prototype.nodeCount=function(){return this._nodeCount},o.prototype.nodes=function(){return r.keys(this._nodes)},o.prototype.sources=function(){var e=this;return r.filter(this.nodes(),(function(t){return r.isEmpty(e._in[t])}))},o.prototype.sinks=function(){var e=this;return r.filter(this.nodes(),(function(t){return r.isEmpty(e._out[t])}))},o.prototype.setNodes=function(e,t){var n=arguments,a=this;return r.each(e,(function(e){n.length>1?a.setNode(e,t):a.setNode(e)})),this},o.prototype.setNode=function(e,t){return r.has(this._nodes,e)?(arguments.length>1&&(this._nodes[e]=t),this):(this._nodes[e]=arguments.length>1?t:this._defaultNodeLabelFn(e),this._isCompound&&(this._parent[e]=a,this._children[e]={},this._children["\0"][e]=!0),this._in[e]={},this._preds[e]={},this._out[e]={},this._sucs[e]={},++this._nodeCount,this)},o.prototype.node=function(e){return this._nodes[e]},o.prototype.hasNode=function(e){return r.has(this._nodes,e)},o.prototype.removeNode=function(e){var t=this;if(r.has(this._nodes,e)){var n=function(e){t.removeEdge(t._edgeObjs[e])};delete this._nodes[e],this._isCompound&&(this._removeFromParentsChildList(e),delete this._parent[e],r.each(this.children(e),(function(e){t.setParent(e)})),delete this._children[e]),r.each(r.keys(this._in[e]),n),delete this._in[e],delete this._preds[e],r.each(r.keys(this._out[e]),n),delete this._out[e],delete this._sucs[e],--this._nodeCount}return this},o.prototype.setParent=function(e,t){if(!this._isCompound)throw new Error("Cannot set parent in a non-compound graph");if(r.isUndefined(t))t=a;else{for(var n=t+="";!r.isUndefined(n);n=this.parent(n))if(n===e)throw new Error("Setting "+t+" as parent of "+e+" would create a cycle");this.setNode(t)}return this.setNode(e),this._removeFromParentsChildList(e),this._parent[e]=t,this._children[t][e]=!0,this},o.prototype._removeFromParentsChildList=function(e){delete this._children[this._parent[e]][e]},o.prototype.parent=function(e){if(this._isCompound){var t=this._parent[e];if(t!==a)return t}},o.prototype.children=function(e){if(r.isUndefined(e)&&(e=a),this._isCompound){var t=this._children[e];if(t)return r.keys(t)}else{if(e===a)return this.nodes();if(this.hasNode(e))return[]}},o.prototype.predecessors=function(e){var t=this._preds[e];if(t)return r.keys(t)},o.prototype.successors=function(e){var t=this._sucs[e];if(t)return r.keys(t)},o.prototype.neighbors=function(e){var t=this.predecessors(e);if(t)return r.union(t,this.successors(e))},o.prototype.isLeaf=function(e){return 0===(this.isDirected()?this.successors(e):this.neighbors(e)).length},o.prototype.filterNodes=function(e){var t=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});t.setGraph(this.graph());var n=this;r.each(this._nodes,(function(n,r){e(r)&&t.setNode(r,n)})),r.each(this._edgeObjs,(function(e){t.hasNode(e.v)&&t.hasNode(e.w)&&t.setEdge(e,n.edge(e))}));var a={};function o(e){var r=n.parent(e);return void 0===r||t.hasNode(r)?(a[e]=r,r):r in a?a[r]:o(r)}return this._isCompound&&r.each(t.nodes(),(function(e){t.setParent(e,o(e))})),t},o.prototype.setDefaultEdgeLabel=function(e){return r.isFunction(e)||(e=r.constant(e)),this._defaultEdgeLabelFn=e,this},o.prototype.edgeCount=function(){return this._edgeCount},o.prototype.edges=function(){return r.values(this._edgeObjs)},o.prototype.setPath=function(e,t){var n=this,a=arguments;return r.reduce(e,(function(e,r){return a.length>1?n.setEdge(e,r,t):n.setEdge(e,r),r})),this},o.prototype.setEdge=function(){var e,t,n,a,o=!1,s=arguments[0];"object"==typeof s&&null!==s&&"v"in s?(e=s.v,t=s.w,n=s.name,2===arguments.length&&(a=arguments[1],o=!0)):(e=s,t=arguments[1],n=arguments[3],arguments.length>2&&(a=arguments[2],o=!0)),e=""+e,t=""+t,r.isUndefined(n)||(n=""+n);var u=c(this._isDirected,e,t,n);if(r.has(this._edgeLabels,u))return o&&(this._edgeLabels[u]=a),this;if(!r.isUndefined(n)&&!this._isMultigraph)throw new Error("Cannot set a named edge when isMultigraph = false");this.setNode(e),this.setNode(t),this._edgeLabels[u]=o?a:this._defaultEdgeLabelFn(e,t,n);var d=l(this._isDirected,e,t,n);return e=d.v,t=d.w,Object.freeze(d),this._edgeObjs[u]=d,i(this._preds[t],e),i(this._sucs[e],t),this._in[t][u]=d,this._out[e][u]=d,this._edgeCount++,this},o.prototype.edge=function(e,t,n){var r=1===arguments.length?u(this._isDirected,arguments[0]):c(this._isDirected,e,t,n);return this._edgeLabels[r]},o.prototype.hasEdge=function(e,t,n){var a=1===arguments.length?u(this._isDirected,arguments[0]):c(this._isDirected,e,t,n);return r.has(this._edgeLabels,a)},o.prototype.removeEdge=function(e,t,n){var r=1===arguments.length?u(this._isDirected,arguments[0]):c(this._isDirected,e,t,n),a=this._edgeObjs[r];return a&&(e=a.v,t=a.w,delete this._edgeLabels[r],delete this._edgeObjs[r],s(this._preds[t],e),s(this._sucs[e],t),delete this._in[t][r],delete this._out[e][r],this._edgeCount--),this},o.prototype.inEdges=function(e,t){var n=this._in[e];if(n){var a=r.values(n);return t?r.filter(a,(function(e){return e.v===t})):a}},o.prototype.outEdges=function(e,t){var n=this._out[e];if(n){var a=r.values(n);return t?r.filter(a,(function(e){return e.w===t})):a}},o.prototype.nodeEdges=function(e,t){var n=this.inEdges(e,t);if(n)return n.concat(this.outEdges(e,t))}},2354:function(e,t,n){e.exports={Graph:n(771),version:n(9631)}},8974:function(e,t,n){var r=n(9126),a=n(771);function o(e){return r.map(e.nodes(),(function(t){var n=e.node(t),a=e.parent(t),o={v:t};return r.isUndefined(n)||(o.value=n),r.isUndefined(a)||(o.parent=a),o}))}function i(e){return r.map(e.edges(),(function(t){var n=e.edge(t),a={v:t.v,w:t.w};return r.isUndefined(t.name)||(a.name=t.name),r.isUndefined(n)||(a.value=n),a}))}e.exports={write:function(e){var t={options:{directed:e.isDirected(),multigraph:e.isMultigraph(),compound:e.isCompound()},nodes:o(e),edges:i(e)};return r.isUndefined(e.graph())||(t.value=r.clone(e.graph())),t},read:function(e){var t=new a(e.options).setGraph(e.value);return r.each(e.nodes,(function(e){t.setNode(e.v,e.value),e.parent&&t.setParent(e.v,e.parent)})),r.each(e.edges,(function(e){t.setEdge({v:e.v,w:e.w,name:e.name},e.value)})),t}}},9126:function(e,t,n){var r;try{r={clone:n(6678),constant:n(5703),each:n(6073),filter:n(3105),has:n(8721),isArray:n(1469),isEmpty:n(1609),isFunction:n(3560),isUndefined:n(2353),keys:n(3674),map:n(5161),reduce:n(4061),size:n(4238),transform:n(8718),union:n(3386),values:n(2628)}}catch(e){}r||(r=window._),e.exports=r},9631:function(e){e.exports="2.1.8"},8679:function(e,t,n){"use strict";var r=n(9864),a={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},i={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};function c(e){return r.isMemo(e)?i:s[e.$$typeof]||a}s[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s[r.Memo]=i;var l=Object.defineProperty,u=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,p=Object.getOwnPropertyDescriptor,f=Object.getPrototypeOf,m=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(m){var a=f(n);a&&a!==m&&e(t,a,r)}var i=u(n);d&&(i=i.concat(d(n)));for(var s=c(t),h=c(n),g=0;g<i.length;++g){var y=i[g];if(!(o[y]||r&&r[y]||h&&h[y]||s&&s[y])){var v=p(n,y);try{l(t,y,v)}catch(e){}}}}return t}},9111:function(e,t,n){"use strict";var r=this&&this.__assign||function(){return r=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var a in t=arguments[n])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},r.apply(this,arguments)};Object.defineProperty(t,"__esModule",{value:!0});var a=n(7206),o=n(2642),i=n(9726),s=r(r({},a.namedReferences),{all:a.namedReferences.html5}),c={specialChars:/[<>'"&]/g,nonAscii:/(?:[<>'"&\u0080-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])/g,nonAsciiPrintable:/(?:[<>'"&\x01-\x08\x11-\x15\x17-\x1F\x7f-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])/g,extensive:/(?:[\x01-\x0c\x0e-\x1f\x21-\x2c\x2e-\x2f\x3a-\x40\x5b-\x60\x7b-\x7d\x7f-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])/g},l={mode:"specialChars",level:"all",numeric:"decimal"};t.encode=function(e,t){var n=void 0===(u=(o=void 0===t?l:t).mode)?"specialChars":u,r=void 0===(m=o.numeric)?"decimal":m,a=o.level;if(!e)return"";var o,u,d=c[n],p=s[void 0===a?"all":a].characters,f="hexadecimal"===r;if(d.lastIndex=0,o=d.exec(e)){u="";var m=0;do{m!==o.index&&(u+=e.substring(m,o.index));var h=p[a=o[0]];if(!h){var g=a.length>1?i.getCodePoint(a,0):a.charCodeAt(0);h=(f?"&#x"+g.toString(16):"&#"+g)+";"}u+=h,m=o.index+a.length}while(o=d.exec(e));m!==e.length&&(u+=e.substring(m))}else u=e;return u};var u={scope:"body",level:"all"},d=/&(?:#\d+|#[xX][\da-fA-F]+|[0-9a-zA-Z]+);/g,p=/&(?:#\d+|#[xX][\da-fA-F]+|[0-9a-zA-Z]+)[;=]?/g,f={xml:{strict:d,attribute:p,body:a.bodyRegExps.xml},html4:{strict:d,attribute:p,body:a.bodyRegExps.html4},html5:{strict:d,attribute:p,body:a.bodyRegExps.html5}},m=r(r({},f),{all:f.html5}),h=String.fromCharCode,g=h(65533),y={level:"all"};t.decodeEntity=function(e,t){var n=void 0===(r=(void 0===t?y:t).level)?"all":r;if(!e)return"";var r=e,a=(e[e.length-1],s[n].entities[e]);if(a)r=a;else if("&"===e[0]&&"#"===e[1]){var c=e[2],l="x"==c||"X"==c?parseInt(e.substr(3),16):parseInt(e.substr(2));r=l>=1114111?g:l>65535?i.fromCodePoint(l):h(o.numericUnicodeMap[l]||l)}return r},t.decode=function(e,t){var n=void 0===t?u:t,r=n.level,a=void 0===r?"all":r,c=n.scope,l=void 0===c?"xml"===a?"strict":"body":c;if(!e)return"";var d=m[a][l],p=s[a].entities,f="attribute"===l,y="strict"===l;d.lastIndex=0;var v,w=d.exec(e);if(w){v="";var b=0;do{b!==w.index&&(v+=e.substring(b,w.index));var M=w[0],E=M,_=M[M.length-1];if(f&&"="===_)E=M;else if(y&&";"!==_)E=M;else{var N=p[M];if(N)E=N;else if("&"===M[0]&&"#"===M[1]){var D=M[2],x="x"==D||"X"==D?parseInt(M.substr(3),16):parseInt(M.substr(2));E=x>=1114111?g:x>65535?i.fromCodePoint(x):h(o.numericUnicodeMap[x]||x)}}v+=E,b=w.index+M.length}while(w=d.exec(e));b!==e.length&&(v+=e.substring(b))}else v=e;return v}},7206:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.bodyRegExps={xml:/&(?:#\d+|#[xX][\da-fA-F]+|[0-9a-zA-Z]+);?/g,html4:/&(?:nbsp|iexcl|cent|pound|curren|yen|brvbar|sect|uml|copy|ordf|laquo|not|shy|reg|macr|deg|plusmn|sup2|sup3|acute|micro|para|middot|cedil|sup1|ordm|raquo|frac14|frac12|frac34|iquest|Agrave|Aacute|Acirc|Atilde|Auml|Aring|AElig|Ccedil|Egrave|Eacute|Ecirc|Euml|Igrave|Iacute|Icirc|Iuml|ETH|Ntilde|Ograve|Oacute|Ocirc|Otilde|Ouml|times|Oslash|Ugrave|Uacute|Ucirc|Uuml|Yacute|THORN|szlig|agrave|aacute|acirc|atilde|auml|aring|aelig|ccedil|egrave|eacute|ecirc|euml|igrave|iacute|icirc|iuml|eth|ntilde|ograve|oacute|ocirc|otilde|ouml|divide|oslash|ugrave|uacute|ucirc|uuml|yacute|thorn|yuml|quot|amp|lt|gt|#\d+|#[xX][\da-fA-F]+|[0-9a-zA-Z]+);?/g,html5:/&(?:AElig|AMP|Aacute|Acirc|Agrave|Aring|Atilde|Auml|COPY|Ccedil|ETH|Eacute|Ecirc|Egrave|Euml|GT|Iacute|Icirc|Igrave|Iuml|LT|Ntilde|Oacute|Ocirc|Ograve|Oslash|Otilde|Ouml|QUOT|REG|THORN|Uacute|Ucirc|Ugrave|Uuml|Yacute|aacute|acirc|acute|aelig|agrave|amp|aring|atilde|auml|brvbar|ccedil|cedil|cent|copy|curren|deg|divide|eacute|ecirc|egrave|eth|euml|frac12|frac14|frac34|gt|iacute|icirc|iexcl|igrave|iquest|iuml|laquo|lt|macr|micro|middot|nbsp|not|ntilde|oacute|ocirc|ograve|ordf|ordm|oslash|otilde|ouml|para|plusmn|pound|quot|raquo|reg|sect|shy|sup1|sup2|sup3|szlig|thorn|times|uacute|ucirc|ugrave|uml|uuml|yacute|yen|yuml|#\d+|#[xX][\da-fA-F]+|[0-9a-zA-Z]+);?/g},t.namedReferences={xml:{entities:{"&lt;":"<","&gt;":">","&quot;":'"',"&apos;":"'","&amp;":"&"},characters:{"<":"&lt;",">":"&gt;",'"':"&quot;","'":"&apos;","&":"&amp;"}},html4:{entities:{"&apos;":"'","&nbsp":" ","&nbsp;":" ","&iexcl":"¡","&iexcl;":"¡","&cent":"¢","&cent;":"¢","&pound":"£","&pound;":"£","&curren":"¤","&curren;":"¤","&yen":"¥","&yen;":"¥","&brvbar":"¦","&brvbar;":"¦","&sect":"§","&sect;":"§","&uml":"¨","&uml;":"¨","&copy":"©","&copy;":"©","&ordf":"ª","&ordf;":"ª","&laquo":"«","&laquo;":"«","&not":"¬","&not;":"¬","&shy":"­","&shy;":"­","&reg":"®","&reg;":"®","&macr":"¯","&macr;":"¯","&deg":"°","&deg;":"°","&plusmn":"±","&plusmn;":"±","&sup2":"²","&sup2;":"²","&sup3":"³","&sup3;":"³","&acute":"´","&acute;":"´","&micro":"µ","&micro;":"µ","&para":"¶","&para;":"¶","&middot":"·","&middot;":"·","&cedil":"¸","&cedil;":"¸","&sup1":"¹","&sup1;":"¹","&ordm":"º","&ordm;":"º","&raquo":"»","&raquo;":"»","&frac14":"¼","&frac14;":"¼","&frac12":"½","&frac12;":"½","&frac34":"¾","&frac34;":"¾","&iquest":"¿","&iquest;":"¿","&Agrave":"À","&Agrave;":"À","&Aacute":"Á","&Aacute;":"Á","&Acirc":"Â","&Acirc;":"Â","&Atilde":"Ã","&Atilde;":"Ã","&Auml":"Ä","&Auml;":"Ä","&Aring":"Å","&Aring;":"Å","&AElig":"Æ","&AElig;":"Æ","&Ccedil":"Ç","&Ccedil;":"Ç","&Egrave":"È","&Egrave;":"È","&Eacute":"É","&Eacute;":"É","&Ecirc":"Ê","&Ecirc;":"Ê","&Euml":"Ë","&Euml;":"Ë","&Igrave":"Ì","&Igrave;":"Ì","&Iacute":"Í","&Iacute;":"Í","&Icirc":"Î","&Icirc;":"Î","&Iuml":"Ï","&Iuml;":"Ï","&ETH":"Ð","&ETH;":"Ð","&Ntilde":"Ñ","&Ntilde;":"Ñ","&Ograve":"Ò","&Ograve;":"Ò","&Oacute":"Ó","&Oacute;":"Ó","&Ocirc":"Ô","&Ocirc;":"Ô","&Otilde":"Õ","&Otilde;":"Õ","&Ouml":"Ö","&Ouml;":"Ö","&times":"×","&times;":"×","&Oslash":"Ø","&Oslash;":"Ø","&Ugrave":"Ù","&Ugrave;":"Ù","&Uacute":"Ú","&Uacute;":"Ú","&Ucirc":"Û","&Ucirc;":"Û","&Uuml":"Ü","&Uuml;":"Ü","&Yacute":"Ý","&Yacute;":"Ý","&THORN":"Þ","&THORN;":"Þ","&szlig":"ß","&szlig;":"ß","&agrave":"à","&agrave;":"à","&aacute":"á","&aacute;":"á","&acirc":"â","&acirc;":"â","&atilde":"ã","&atilde;":"ã","&auml":"ä","&auml;":"ä","&aring":"å","&aring;":"å","&aelig":"æ","&aelig;":"æ","&ccedil":"ç","&ccedil;":"ç","&egrave":"è","&egrave;":"è","&eacute":"é","&eacute;":"é","&ecirc":"ê","&ecirc;":"ê","&euml":"ë","&euml;":"ë","&igrave":"ì","&igrave;":"ì","&iacute":"í","&iacute;":"í","&icirc":"î","&icirc;":"î","&iuml":"ï","&iuml;":"ï","&eth":"ð","&eth;":"ð","&ntilde":"ñ","&ntilde;":"ñ","&ograve":"ò","&ograve;":"ò","&oacute":"ó","&oacute;":"ó","&ocirc":"ô","&ocirc;":"ô","&otilde":"õ","&otilde;":"õ","&ouml":"ö","&ouml;":"ö","&divide":"÷","&divide;":"÷","&oslash":"ø","&oslash;":"ø","&ugrave":"ù","&ugrave;":"ù","&uacute":"ú","&uacute;":"ú","&ucirc":"û","&ucirc;":"û","&uuml":"ü","&uuml;":"ü","&yacute":"ý","&yacute;":"ý","&thorn":"þ","&thorn;":"þ","&yuml":"ÿ","&yuml;":"ÿ","&quot":'"',"&quot;":'"',"&amp":"&","&amp;":"&","&lt":"<","&lt;":"<","&gt":">","&gt;":">","&OElig;":"Œ","&oelig;":"œ","&Scaron;":"Š","&scaron;":"š","&Yuml;":"Ÿ","&circ;":"ˆ","&tilde;":"˜","&ensp;":" ","&emsp;":" ","&thinsp;":" ","&zwnj;":"‌","&zwj;":"‍","&lrm;":"‎","&rlm;":"‏","&ndash;":"–","&mdash;":"—","&lsquo;":"‘","&rsquo;":"’","&sbquo;":"‚","&ldquo;":"“","&rdquo;":"”","&bdquo;":"„","&dagger;":"†","&Dagger;":"‡","&permil;":"‰","&lsaquo;":"‹","&rsaquo;":"›","&euro;":"€","&fnof;":"ƒ","&Alpha;":"Α","&Beta;":"Β","&Gamma;":"Γ","&Delta;":"Δ","&Epsilon;":"Ε","&Zeta;":"Ζ","&Eta;":"Η","&Theta;":"Θ","&Iota;":"Ι","&Kappa;":"Κ","&Lambda;":"Λ","&Mu;":"Μ","&Nu;":"Ν","&Xi;":"Ξ","&Omicron;":"Ο","&Pi;":"Π","&Rho;":"Ρ","&Sigma;":"Σ","&Tau;":"Τ","&Upsilon;":"Υ","&Phi;":"Φ","&Chi;":"Χ","&Psi;":"Ψ","&Omega;":"Ω","&alpha;":"α","&beta;":"β","&gamma;":"γ","&delta;":"δ","&epsilon;":"ε","&zeta;":"ζ","&eta;":"η","&theta;":"θ","&iota;":"ι","&kappa;":"κ","&lambda;":"λ","&mu;":"μ","&nu;":"ν","&xi;":"ξ","&omicron;":"ο","&pi;":"π","&rho;":"ρ","&sigmaf;":"ς","&sigma;":"σ","&tau;":"τ","&upsilon;":"υ","&phi;":"φ","&chi;":"χ","&psi;":"ψ","&omega;":"ω","&thetasym;":"ϑ","&upsih;":"ϒ","&piv;":"ϖ","&bull;":"•","&hellip;":"…","&prime;":"′","&Prime;":"″","&oline;":"‾","&frasl;":"⁄","&weierp;":"℘","&image;":"ℑ","&real;":"ℜ","&trade;":"™","&alefsym;":"ℵ","&larr;":"←","&uarr;":"↑","&rarr;":"→","&darr;":"↓","&harr;":"↔","&crarr;":"↵","&lArr;":"⇐","&uArr;":"⇑","&rArr;":"⇒","&dArr;":"⇓","&hArr;":"⇔","&forall;":"∀","&part;":"∂","&exist;":"∃","&empty;":"∅","&nabla;":"∇","&isin;":"∈","&notin;":"∉","&ni;":"∋","&prod;":"∏","&sum;":"∑","&minus;":"−","&lowast;":"∗","&radic;":"√","&prop;":"∝","&infin;":"∞","&ang;":"∠","&and;":"∧","&or;":"∨","&cap;":"∩","&cup;":"∪","&int;":"∫","&there4;":"∴","&sim;":"∼","&cong;":"≅","&asymp;":"≈","&ne;":"≠","&equiv;":"≡","&le;":"≤","&ge;":"≥","&sub;":"⊂","&sup;":"⊃","&nsub;":"⊄","&sube;":"⊆","&supe;":"⊇","&oplus;":"⊕","&otimes;":"⊗","&perp;":"⊥","&sdot;":"⋅","&lceil;":"⌈","&rceil;":"⌉","&lfloor;":"⌊","&rfloor;":"⌋","&lang;":"〈","&rang;":"〉","&loz;":"◊","&spades;":"♠","&clubs;":"♣","&hearts;":"♥","&diams;":"♦"},characters:{"'":"&apos;"," ":"&nbsp;","¡":"&iexcl;","¢":"&cent;","£":"&pound;","¤":"&curren;","¥":"&yen;","¦":"&brvbar;","§":"&sect;","¨":"&uml;","©":"&copy;","ª":"&ordf;","«":"&laquo;","¬":"&not;","­":"&shy;","®":"&reg;","¯":"&macr;","°":"&deg;","±":"&plusmn;","²":"&sup2;","³":"&sup3;","´":"&acute;","µ":"&micro;","¶":"&para;","·":"&middot;","¸":"&cedil;","¹":"&sup1;","º":"&ordm;","»":"&raquo;","¼":"&frac14;","½":"&frac12;","¾":"&frac34;","¿":"&iquest;","À":"&Agrave;","Á":"&Aacute;","Â":"&Acirc;","Ã":"&Atilde;","Ä":"&Auml;","Å":"&Aring;","Æ":"&AElig;","Ç":"&Ccedil;","È":"&Egrave;","É":"&Eacute;","Ê":"&Ecirc;","Ë":"&Euml;","Ì":"&Igrave;","Í":"&Iacute;","Î":"&Icirc;","Ï":"&Iuml;","Ð":"&ETH;","Ñ":"&Ntilde;","Ò":"&Ograve;","Ó":"&Oacute;","Ô":"&Ocirc;","Õ":"&Otilde;","Ö":"&Ouml;","×":"&times;","Ø":"&Oslash;","Ù":"&Ugrave;","Ú":"&Uacute;","Û":"&Ucirc;","Ü":"&Uuml;","Ý":"&Yacute;","Þ":"&THORN;","ß":"&szlig;","à":"&agrave;","á":"&aacute;","â":"&acirc;","ã":"&atilde;","ä":"&auml;","å":"&aring;","æ":"&aelig;","ç":"&ccedil;","è":"&egrave;","é":"&eacute;","ê":"&ecirc;","ë":"&euml;","ì":"&igrave;","í":"&iacute;","î":"&icirc;","ï":"&iuml;","ð":"&eth;","ñ":"&ntilde;","ò":"&ograve;","ó":"&oacute;","ô":"&ocirc;","õ":"&otilde;","ö":"&ouml;","÷":"&divide;","ø":"&oslash;","ù":"&ugrave;","ú":"&uacute;","û":"&ucirc;","ü":"&uuml;","ý":"&yacute;","þ":"&thorn;","ÿ":"&yuml;",'"':"&quot;","&":"&amp;","<":"&lt;",">":"&gt;","Œ":"&OElig;","œ":"&oelig;","Š":"&Scaron;","š":"&scaron;","Ÿ":"&Yuml;","ˆ":"&circ;","˜":"&tilde;"," ":"&ensp;"," ":"&emsp;"," ":"&thinsp;","‌":"&zwnj;","‍":"&zwj;","‎":"&lrm;","‏":"&rlm;","–":"&ndash;","—":"&mdash;","‘":"&lsquo;","’":"&rsquo;","‚":"&sbquo;","“":"&ldquo;","”":"&rdquo;","„":"&bdquo;","†":"&dagger;","‡":"&Dagger;","‰":"&permil;","‹":"&lsaquo;","›":"&rsaquo;","€":"&euro;","ƒ":"&fnof;","Α":"&Alpha;","Β":"&Beta;","Γ":"&Gamma;","Δ":"&Delta;","Ε":"&Epsilon;","Ζ":"&Zeta;","Η":"&Eta;","Θ":"&Theta;","Ι":"&Iota;","Κ":"&Kappa;","Λ":"&Lambda;","Μ":"&Mu;","Ν":"&Nu;","Ξ":"&Xi;","Ο":"&Omicron;","Π":"&Pi;","Ρ":"&Rho;","Σ":"&Sigma;","Τ":"&Tau;","Υ":"&Upsilon;","Φ":"&Phi;","Χ":"&Chi;","Ψ":"&Psi;","Ω":"&Omega;","α":"&alpha;","β":"&beta;","γ":"&gamma;","δ":"&delta;","ε":"&epsilon;","ζ":"&zeta;","η":"&eta;","θ":"&theta;","ι":"&iota;","κ":"&kappa;","λ":"&lambda;","μ":"&mu;","ν":"&nu;","ξ":"&xi;","ο":"&omicron;","π":"&pi;","ρ":"&rho;","ς":"&sigmaf;","σ":"&sigma;","τ":"&tau;","υ":"&upsilon;","φ":"&phi;","χ":"&chi;","ψ":"&psi;","ω":"&omega;","ϑ":"&thetasym;","ϒ":"&upsih;","ϖ":"&piv;","•":"&bull;","…":"&hellip;","′":"&prime;","″":"&Prime;","‾":"&oline;","⁄":"&frasl;","℘":"&weierp;","ℑ":"&image;","ℜ":"&real;","™":"&trade;","ℵ":"&alefsym;","←":"&larr;","↑":"&uarr;","→":"&rarr;","↓":"&darr;","↔":"&harr;","↵":"&crarr;","⇐":"&lArr;","⇑":"&uArr;","⇒":"&rArr;","⇓":"&dArr;","⇔":"&hArr;","∀":"&forall;","∂":"&part;","∃":"&exist;","∅":"&empty;","∇":"&nabla;","∈":"&isin;","∉":"&notin;","∋":"&ni;","∏":"&prod;","∑":"&sum;","−":"&minus;","∗":"&lowast;","√":"&radic;","∝":"&prop;","∞":"&infin;","∠":"&ang;","∧":"&and;","∨":"&or;","∩":"&cap;","∪":"&cup;","∫":"&int;","∴":"&there4;","∼":"&sim;","≅":"&cong;","≈":"&asymp;","≠":"&ne;","≡":"&equiv;","≤":"&le;","≥":"&ge;","⊂":"&sub;","⊃":"&sup;","⊄":"&nsub;","⊆":"&sube;","⊇":"&supe;","⊕":"&oplus;","⊗":"&otimes;","⊥":"&perp;","⋅":"&sdot;","⌈":"&lceil;","⌉":"&rceil;","⌊":"&lfloor;","⌋":"&rfloor;","〈":"&lang;","〉":"&rang;","◊":"&loz;","♠":"&spades;","♣":"&clubs;","♥":"&hearts;","♦":"&diams;"}},html5:{entities:{"&AElig":"Æ","&AElig;":"Æ","&AMP":"&","&AMP;":"&","&Aacute":"Á","&Aacute;":"Á","&Abreve;":"Ă","&Acirc":"Â","&Acirc;":"Â","&Acy;":"А","&Afr;":"𝔄","&Agrave":"À","&Agrave;":"À","&Alpha;":"Α","&Amacr;":"Ā","&And;":"⩓","&Aogon;":"Ą","&Aopf;":"𝔸","&ApplyFunction;":"⁡","&Aring":"Å","&Aring;":"Å","&Ascr;":"𝒜","&Assign;":"≔","&Atilde":"Ã","&Atilde;":"Ã","&Auml":"Ä","&Auml;":"Ä","&Backslash;":"∖","&Barv;":"⫧","&Barwed;":"⌆","&Bcy;":"Б","&Because;":"∵","&Bernoullis;":"ℬ","&Beta;":"Β","&Bfr;":"𝔅","&Bopf;":"𝔹","&Breve;":"˘","&Bscr;":"ℬ","&Bumpeq;":"≎","&CHcy;":"Ч","&COPY":"©","&COPY;":"©","&Cacute;":"Ć","&Cap;":"⋒","&CapitalDifferentialD;":"ⅅ","&Cayleys;":"ℭ","&Ccaron;":"Č","&Ccedil":"Ç","&Ccedil;":"Ç","&Ccirc;":"Ĉ","&Cconint;":"∰","&Cdot;":"Ċ","&Cedilla;":"¸","&CenterDot;":"·","&Cfr;":"ℭ","&Chi;":"Χ","&CircleDot;":"⊙","&CircleMinus;":"⊖","&CirclePlus;":"⊕","&CircleTimes;":"⊗","&ClockwiseContourIntegral;":"∲","&CloseCurlyDoubleQuote;":"”","&CloseCurlyQuote;":"’","&Colon;":"∷","&Colone;":"⩴","&Congruent;":"≡","&Conint;":"∯","&ContourIntegral;":"∮","&Copf;":"ℂ","&Coproduct;":"∐","&CounterClockwiseContourIntegral;":"∳","&Cross;":"⨯","&Cscr;":"𝒞","&Cup;":"⋓","&CupCap;":"≍","&DD;":"ⅅ","&DDotrahd;":"⤑","&DJcy;":"Ђ","&DScy;":"Ѕ","&DZcy;":"Џ","&Dagger;":"‡","&Darr;":"↡","&Dashv;":"⫤","&Dcaron;":"Ď","&Dcy;":"Д","&Del;":"∇","&Delta;":"Δ","&Dfr;":"𝔇","&DiacriticalAcute;":"´","&DiacriticalDot;":"˙","&DiacriticalDoubleAcute;":"˝","&DiacriticalGrave;":"`","&DiacriticalTilde;":"˜","&Diamond;":"⋄","&DifferentialD;":"ⅆ","&Dopf;":"𝔻","&Dot;":"¨","&DotDot;":"⃜","&DotEqual;":"≐","&DoubleContourIntegral;":"∯","&DoubleDot;":"¨","&DoubleDownArrow;":"⇓","&DoubleLeftArrow;":"⇐","&DoubleLeftRightArrow;":"⇔","&DoubleLeftTee;":"⫤","&DoubleLongLeftArrow;":"⟸","&DoubleLongLeftRightArrow;":"⟺","&DoubleLongRightArrow;":"⟹","&DoubleRightArrow;":"⇒","&DoubleRightTee;":"⊨","&DoubleUpArrow;":"⇑","&DoubleUpDownArrow;":"⇕","&DoubleVerticalBar;":"∥","&DownArrow;":"↓","&DownArrowBar;":"⤓","&DownArrowUpArrow;":"⇵","&DownBreve;":"̑","&DownLeftRightVector;":"⥐","&DownLeftTeeVector;":"⥞","&DownLeftVector;":"↽","&DownLeftVectorBar;":"⥖","&DownRightTeeVector;":"⥟","&DownRightVector;":"⇁","&DownRightVectorBar;":"⥗","&DownTee;":"⊤","&DownTeeArrow;":"↧","&Downarrow;":"⇓","&Dscr;":"𝒟","&Dstrok;":"Đ","&ENG;":"Ŋ","&ETH":"Ð","&ETH;":"Ð","&Eacute":"É","&Eacute;":"É","&Ecaron;":"Ě","&Ecirc":"Ê","&Ecirc;":"Ê","&Ecy;":"Э","&Edot;":"Ė","&Efr;":"𝔈","&Egrave":"È","&Egrave;":"È","&Element;":"∈","&Emacr;":"Ē","&EmptySmallSquare;":"◻","&EmptyVerySmallSquare;":"▫","&Eogon;":"Ę","&Eopf;":"𝔼","&Epsilon;":"Ε","&Equal;":"⩵","&EqualTilde;":"≂","&Equilibrium;":"⇌","&Escr;":"ℰ","&Esim;":"⩳","&Eta;":"Η","&Euml":"Ë","&Euml;":"Ë","&Exists;":"∃","&ExponentialE;":"ⅇ","&Fcy;":"Ф","&Ffr;":"𝔉","&FilledSmallSquare;":"◼","&FilledVerySmallSquare;":"▪","&Fopf;":"𝔽","&ForAll;":"∀","&Fouriertrf;":"ℱ","&Fscr;":"ℱ","&GJcy;":"Ѓ","&GT":">","&GT;":">","&Gamma;":"Γ","&Gammad;":"Ϝ","&Gbreve;":"Ğ","&Gcedil;":"Ģ","&Gcirc;":"Ĝ","&Gcy;":"Г","&Gdot;":"Ġ","&Gfr;":"𝔊","&Gg;":"⋙","&Gopf;":"𝔾","&GreaterEqual;":"≥","&GreaterEqualLess;":"⋛","&GreaterFullEqual;":"≧","&GreaterGreater;":"⪢","&GreaterLess;":"≷","&GreaterSlantEqual;":"⩾","&GreaterTilde;":"≳","&Gscr;":"𝒢","&Gt;":"≫","&HARDcy;":"Ъ","&Hacek;":"ˇ","&Hat;":"^","&Hcirc;":"Ĥ","&Hfr;":"ℌ","&HilbertSpace;":"ℋ","&Hopf;":"ℍ","&HorizontalLine;":"─","&Hscr;":"ℋ","&Hstrok;":"Ħ","&HumpDownHump;":"≎","&HumpEqual;":"≏","&IEcy;":"Е","&IJlig;":"IJ","&IOcy;":"Ё","&Iacute":"Í","&Iacute;":"Í","&Icirc":"Î","&Icirc;":"Î","&Icy;":"И","&Idot;":"İ","&Ifr;":"ℑ","&Igrave":"Ì","&Igrave;":"Ì","&Im;":"ℑ","&Imacr;":"Ī","&ImaginaryI;":"ⅈ","&Implies;":"⇒","&Int;":"∬","&Integral;":"∫","&Intersection;":"⋂","&InvisibleComma;":"⁣","&InvisibleTimes;":"⁢","&Iogon;":"Į","&Iopf;":"𝕀","&Iota;":"Ι","&Iscr;":"ℐ","&Itilde;":"Ĩ","&Iukcy;":"І","&Iuml":"Ï","&Iuml;":"Ï","&Jcirc;":"Ĵ","&Jcy;":"Й","&Jfr;":"𝔍","&Jopf;":"𝕁","&Jscr;":"𝒥","&Jsercy;":"Ј","&Jukcy;":"Є","&KHcy;":"Х","&KJcy;":"Ќ","&Kappa;":"Κ","&Kcedil;":"Ķ","&Kcy;":"К","&Kfr;":"𝔎","&Kopf;":"𝕂","&Kscr;":"𝒦","&LJcy;":"Љ","&LT":"<","&LT;":"<","&Lacute;":"Ĺ","&Lambda;":"Λ","&Lang;":"⟪","&Laplacetrf;":"ℒ","&Larr;":"↞","&Lcaron;":"Ľ","&Lcedil;":"Ļ","&Lcy;":"Л","&LeftAngleBracket;":"⟨","&LeftArrow;":"←","&LeftArrowBar;":"⇤","&LeftArrowRightArrow;":"⇆","&LeftCeiling;":"⌈","&LeftDoubleBracket;":"⟦","&LeftDownTeeVector;":"⥡","&LeftDownVector;":"⇃","&LeftDownVectorBar;":"⥙","&LeftFloor;":"⌊","&LeftRightArrow;":"↔","&LeftRightVector;":"⥎","&LeftTee;":"⊣","&LeftTeeArrow;":"↤","&LeftTeeVector;":"⥚","&LeftTriangle;":"⊲","&LeftTriangleBar;":"⧏","&LeftTriangleEqual;":"⊴","&LeftUpDownVector;":"⥑","&LeftUpTeeVector;":"⥠","&LeftUpVector;":"↿","&LeftUpVectorBar;":"⥘","&LeftVector;":"↼","&LeftVectorBar;":"⥒","&Leftarrow;":"⇐","&Leftrightarrow;":"⇔","&LessEqualGreater;":"⋚","&LessFullEqual;":"≦","&LessGreater;":"≶","&LessLess;":"⪡","&LessSlantEqual;":"⩽","&LessTilde;":"≲","&Lfr;":"𝔏","&Ll;":"⋘","&Lleftarrow;":"⇚","&Lmidot;":"Ŀ","&LongLeftArrow;":"⟵","&LongLeftRightArrow;":"⟷","&LongRightArrow;":"⟶","&Longleftarrow;":"⟸","&Longleftrightarrow;":"⟺","&Longrightarrow;":"⟹","&Lopf;":"𝕃","&LowerLeftArrow;":"↙","&LowerRightArrow;":"↘","&Lscr;":"ℒ","&Lsh;":"↰","&Lstrok;":"Ł","&Lt;":"≪","&Map;":"⤅","&Mcy;":"М","&MediumSpace;":" ","&Mellintrf;":"ℳ","&Mfr;":"𝔐","&MinusPlus;":"∓","&Mopf;":"𝕄","&Mscr;":"ℳ","&Mu;":"Μ","&NJcy;":"Њ","&Nacute;":"Ń","&Ncaron;":"Ň","&Ncedil;":"Ņ","&Ncy;":"Н","&NegativeMediumSpace;":"​","&NegativeThickSpace;":"​","&NegativeThinSpace;":"​","&NegativeVeryThinSpace;":"​","&NestedGreaterGreater;":"≫","&NestedLessLess;":"≪","&NewLine;":"\n","&Nfr;":"𝔑","&NoBreak;":"⁠","&NonBreakingSpace;":" ","&Nopf;":"ℕ","&Not;":"⫬","&NotCongruent;":"≢","&NotCupCap;":"≭","&NotDoubleVerticalBar;":"∦","&NotElement;":"∉","&NotEqual;":"≠","&NotEqualTilde;":"≂̸","&NotExists;":"∄","&NotGreater;":"≯","&NotGreaterEqual;":"≱","&NotGreaterFullEqual;":"≧̸","&NotGreaterGreater;":"≫̸","&NotGreaterLess;":"≹","&NotGreaterSlantEqual;":"⩾̸","&NotGreaterTilde;":"≵","&NotHumpDownHump;":"≎̸","&NotHumpEqual;":"≏̸","&NotLeftTriangle;":"⋪","&NotLeftTriangleBar;":"⧏̸","&NotLeftTriangleEqual;":"⋬","&NotLess;":"≮","&NotLessEqual;":"≰","&NotLessGreater;":"≸","&NotLessLess;":"≪̸","&NotLessSlantEqual;":"⩽̸","&NotLessTilde;":"≴","&NotNestedGreaterGreater;":"⪢̸","&NotNestedLessLess;":"⪡̸","&NotPrecedes;":"⊀","&NotPrecedesEqual;":"⪯̸","&NotPrecedesSlantEqual;":"⋠","&NotReverseElement;":"∌","&NotRightTriangle;":"⋫","&NotRightTriangleBar;":"⧐̸","&NotRightTriangleEqual;":"⋭","&NotSquareSubset;":"⊏̸","&NotSquareSubsetEqual;":"⋢","&NotSquareSuperset;":"⊐̸","&NotSquareSupersetEqual;":"⋣","&NotSubset;":"⊂⃒","&NotSubsetEqual;":"⊈","&NotSucceeds;":"⊁","&NotSucceedsEqual;":"⪰̸","&NotSucceedsSlantEqual;":"⋡","&NotSucceedsTilde;":"≿̸","&NotSuperset;":"⊃⃒","&NotSupersetEqual;":"⊉","&NotTilde;":"≁","&NotTildeEqual;":"≄","&NotTildeFullEqual;":"≇","&NotTildeTilde;":"≉","&NotVerticalBar;":"∤","&Nscr;":"𝒩","&Ntilde":"Ñ","&Ntilde;":"Ñ","&Nu;":"Ν","&OElig;":"Œ","&Oacute":"Ó","&Oacute;":"Ó","&Ocirc":"Ô","&Ocirc;":"Ô","&Ocy;":"О","&Odblac;":"Ő","&Ofr;":"𝔒","&Ograve":"Ò","&Ograve;":"Ò","&Omacr;":"Ō","&Omega;":"Ω","&Omicron;":"Ο","&Oopf;":"𝕆","&OpenCurlyDoubleQuote;":"“","&OpenCurlyQuote;":"‘","&Or;":"⩔","&Oscr;":"𝒪","&Oslash":"Ø","&Oslash;":"Ø","&Otilde":"Õ","&Otilde;":"Õ","&Otimes;":"⨷","&Ouml":"Ö","&Ouml;":"Ö","&OverBar;":"‾","&OverBrace;":"⏞","&OverBracket;":"⎴","&OverParenthesis;":"⏜","&PartialD;":"∂","&Pcy;":"П","&Pfr;":"𝔓","&Phi;":"Φ","&Pi;":"Π","&PlusMinus;":"±","&Poincareplane;":"ℌ","&Popf;":"ℙ","&Pr;":"⪻","&Precedes;":"≺","&PrecedesEqual;":"⪯","&PrecedesSlantEqual;":"≼","&PrecedesTilde;":"≾","&Prime;":"″","&Product;":"∏","&Proportion;":"∷","&Proportional;":"∝","&Pscr;":"𝒫","&Psi;":"Ψ","&QUOT":'"',"&QUOT;":'"',"&Qfr;":"𝔔","&Qopf;":"ℚ","&Qscr;":"𝒬","&RBarr;":"⤐","&REG":"®","&REG;":"®","&Racute;":"Ŕ","&Rang;":"⟫","&Rarr;":"↠","&Rarrtl;":"⤖","&Rcaron;":"Ř","&Rcedil;":"Ŗ","&Rcy;":"Р","&Re;":"ℜ","&ReverseElement;":"∋","&ReverseEquilibrium;":"⇋","&ReverseUpEquilibrium;":"⥯","&Rfr;":"ℜ","&Rho;":"Ρ","&RightAngleBracket;":"⟩","&RightArrow;":"→","&RightArrowBar;":"⇥","&RightArrowLeftArrow;":"⇄","&RightCeiling;":"⌉","&RightDoubleBracket;":"⟧","&RightDownTeeVector;":"⥝","&RightDownVector;":"⇂","&RightDownVectorBar;":"⥕","&RightFloor;":"⌋","&RightTee;":"⊢","&RightTeeArrow;":"↦","&RightTeeVector;":"⥛","&RightTriangle;":"⊳","&RightTriangleBar;":"⧐","&RightTriangleEqual;":"⊵","&RightUpDownVector;":"⥏","&RightUpTeeVector;":"⥜","&RightUpVector;":"↾","&RightUpVectorBar;":"⥔","&RightVector;":"⇀","&RightVectorBar;":"⥓","&Rightarrow;":"⇒","&Ropf;":"ℝ","&RoundImplies;":"⥰","&Rrightarrow;":"⇛","&Rscr;":"ℛ","&Rsh;":"↱","&RuleDelayed;":"⧴","&SHCHcy;":"Щ","&SHcy;":"Ш","&SOFTcy;":"Ь","&Sacute;":"Ś","&Sc;":"⪼","&Scaron;":"Š","&Scedil;":"Ş","&Scirc;":"Ŝ","&Scy;":"С","&Sfr;":"𝔖","&ShortDownArrow;":"↓","&ShortLeftArrow;":"←","&ShortRightArrow;":"→","&ShortUpArrow;":"↑","&Sigma;":"Σ","&SmallCircle;":"∘","&Sopf;":"𝕊","&Sqrt;":"√","&Square;":"□","&SquareIntersection;":"⊓","&SquareSubset;":"⊏","&SquareSubsetEqual;":"⊑","&SquareSuperset;":"⊐","&SquareSupersetEqual;":"⊒","&SquareUnion;":"⊔","&Sscr;":"𝒮","&Star;":"⋆","&Sub;":"⋐","&Subset;":"⋐","&SubsetEqual;":"⊆","&Succeeds;":"≻","&SucceedsEqual;":"⪰","&SucceedsSlantEqual;":"≽","&SucceedsTilde;":"≿","&SuchThat;":"∋","&Sum;":"∑","&Sup;":"⋑","&Superset;":"⊃","&SupersetEqual;":"⊇","&Supset;":"⋑","&THORN":"Þ","&THORN;":"Þ","&TRADE;":"™","&TSHcy;":"Ћ","&TScy;":"Ц","&Tab;":"\t","&Tau;":"Τ","&Tcaron;":"Ť","&Tcedil;":"Ţ","&Tcy;":"Т","&Tfr;":"𝔗","&Therefore;":"∴","&Theta;":"Θ","&ThickSpace;":"  ","&ThinSpace;":" ","&Tilde;":"∼","&TildeEqual;":"≃","&TildeFullEqual;":"≅","&TildeTilde;":"≈","&Topf;":"𝕋","&TripleDot;":"⃛","&Tscr;":"𝒯","&Tstrok;":"Ŧ","&Uacute":"Ú","&Uacute;":"Ú","&Uarr;":"↟","&Uarrocir;":"⥉","&Ubrcy;":"Ў","&Ubreve;":"Ŭ","&Ucirc":"Û","&Ucirc;":"Û","&Ucy;":"У","&Udblac;":"Ű","&Ufr;":"𝔘","&Ugrave":"Ù","&Ugrave;":"Ù