Formidable Forms – Form Builder for WordPress - Version 4.03

Version Description

  • New: Add an easier way to upgrade to the Pro version.
  • New: When the default Contact form is created, use the email address in the form as the Reply to address.
  • Fix: On some sites, the Formidable js wasn't loading correctly and causing errors.
  • Fix: Don't include generated css with plugin. Some sites weren't updating it.
  • New: Added frm_before_create_field hook while a field is being created from the builder. This allows extra fields to be included at once.
Download this release

Release Info

Developer sswells
Plugin Icon 128x128 Formidable Forms – Form Builder for WordPress
Version 4.03
Comparing to
See all releases

Code changes from version 4.02.04 to 4.03

classes/controllers/FrmAddonsController.php CHANGED
@@ -7,13 +7,17 @@ class FrmAddonsController {
7
  return;
8
  }
9
 
10
- add_submenu_page( 'formidable', 'Formidable | ' . __( 'Add-Ons', 'formidable' ), __( 'Add-Ons', 'formidable' ), 'frm_view_forms', 'formidable-addons', 'FrmAddonsController::list_addons' );
 
 
 
 
11
 
12
  if ( ! FrmAppHelper::pro_is_installed() ) {
13
  add_submenu_page(
14
  'formidable',
15
  'Formidable | ' . __( 'Upgrade to Pro', 'formidable' ),
16
- '<span style="color:#f15a24">' . __( 'Upgrade to Pro', 'formidable' ) . '</span>',
17
  'frm_view_forms',
18
  'formidable-pro-upgrade',
19
  'FrmAddonsController::upgrade_to_pro'
@@ -691,6 +695,35 @@ class FrmAddonsController {
691
  include( FrmAppHelper::plugin_path() . '/classes/views/addons/upgrade_to_pro.php' );
692
  }
693
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
694
  /**
695
  * @since 3.04.02
696
  */
7
  return;
8
  }
9
 
10
+ $label = __( 'Add-Ons', 'formidable' );
11
+ if ( FrmAppHelper::pro_is_installed() ) {
12
+ $label = '<span style="color:#fe5a1d">' . $label . '</span>';
13
+ }
14
+ add_submenu_page( 'formidable', 'Formidable | ' . __( 'Add-Ons', 'formidable' ), $label, 'frm_view_forms', 'formidable-addons', 'FrmAddonsController::list_addons' );
15
 
16
  if ( ! FrmAppHelper::pro_is_installed() ) {
17
  add_submenu_page(
18
  'formidable',
19
  'Formidable | ' . __( 'Upgrade to Pro', 'formidable' ),
20
+ '<span style="color:#fe5a1d">' . __( 'Upgrade to Pro', 'formidable' ) . '</span>',
21
  'frm_view_forms',
22
  'formidable-pro-upgrade',
23
  'FrmAddonsController::upgrade_to_pro'
695
  include( FrmAppHelper::plugin_path() . '/classes/views/addons/upgrade_to_pro.php' );
696
  }
697
 
698
+ /**
699
+ * Install Pro after connection with Formidable.
700
+ *
701
+ * @since 4.02.05
702
+ */
703
+ public static function connect_pro() {
704
+ FrmAppHelper::permission_check( 'install_plugins' );
705
+ check_ajax_referer( 'frm_ajax', 'nonce' );
706
+
707
+ $url = FrmAppHelper::get_post_param( 'plugin', '', 'sanitize_text_field' );
708
+ if ( FrmAppHelper::pro_is_installed() || empty( $url ) ) {
709
+ wp_die();
710
+ }
711
+
712
+ $response = array();
713
+
714
+ // It's already installed and active.
715
+ $active = activate_plugin( 'formidable-pro/formidable-pro.php', false, false, true );
716
+ if ( is_wp_error( $active ) ) {
717
+ // The plugin was installed, but not active. Download it now.
718
+ self::ajax_install_addon();
719
+ } else {
720
+ $response['active'] = true;
721
+ }
722
+
723
+ echo json_encode( $response );
724
+ wp_die();
725
+ }
726
+
727
  /**
728
  * @since 3.04.02
729
  */
classes/controllers/FrmAppController.php CHANGED
@@ -209,52 +209,6 @@ class FrmAppController {
209
  public static function pro_get_started_headline() {
210
  self::review_request();
211
  FrmAppHelper::min_pro_version_notice( '4.0' );
212
-
213
- // Don't display this error as we're upgrading the thing, or if the user shouldn't see the message
214
- if ( 'upgrade-plugin' == FrmAppHelper::simple_get( 'action', 'sanitize_title' ) || ! current_user_can( 'update_plugins' ) ) {
215
- return;
216
- }
217
-
218
- $pro_installed = is_dir( WP_PLUGIN_DIR . '/formidable-pro' );
219
- $authorized = get_site_option( 'frmpro-authorized' ) && ! is_callable( 'load_formidable_pro' );
220
- if ( ! $authorized ) {
221
- return;
222
- }
223
-
224
- FrmAppHelper::load_admin_wide_js();
225
-
226
- // user is authorized, but running free version
227
- $download_url = '';
228
- if ( $pro_installed ) {
229
- // if pro version is installed, include link to activate it
230
- $inst_install_url = wp_nonce_url( self_admin_url( 'plugins.php?action=activate&plugin=formidable-pro/formidable-pro.php' ), 'activate-plugin_formidable-pro/formidable-pro.php' );
231
- } else {
232
- $inst_install_url = '#';
233
- $download_url = FrmAddonsController::get_pro_download_url();
234
-
235
- if ( empty( $download_url ) ) {
236
- $inst_install_url = 'https://formidableforms.com/knowledgebase/install-formidable-forms/?utm_source=WordPress&utm_medium=get-started&utm_campaign=liteplugin';
237
- }
238
- }
239
- ?>
240
- <div class="error frm_previous_install">
241
- <?php
242
- echo apply_filters( // WPCS: XSS ok.
243
- 'frm_pro_update_msg',
244
- sprintf(
245
- /* translators: %1$s: Start link HTML, %2$s: End link HTML, %3$s: Start link HTML, %4$s: End link HTML */
246
- esc_html__( 'This site has been previously authorized to run Formidable Forms. %1$sInstall Formidable Pro%2$s or %3$sdeauthorize%4$s this site to continue running the free version and remove this message.', 'formidable' ),
247
- '<br/><a href="' . esc_url( $inst_install_url ) . '" id="frm_install_link" target="_blank" data-prourl="' . esc_url( $download_url ) . '">',
248
- '</a>',
249
- '<a href="#" class="frm_deauthorize_link">',
250
- '</a>'
251
- ),
252
- esc_url( $inst_install_url )
253
- );
254
- ?>
255
- <div id="frm_install_message" class="hidden frm_hidden"></div>
256
- </div>
257
- <?php
258
  }
259
 
260
  /**
209
  public static function pro_get_started_headline() {
210
  self::review_request();
211
  FrmAppHelper::min_pro_version_notice( '4.0' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
  }
213
 
214
  /**
classes/controllers/FrmFieldsController.php CHANGED
@@ -57,6 +57,8 @@ class FrmFieldsController {
57
  $field_type = FrmAppHelper::get_post_param( 'field_type', '', 'sanitize_text_field' );
58
  $form_id = FrmAppHelper::get_post_param( 'form_id', 0, 'absint' );
59
 
 
 
60
  $field = self::include_new_field( $field_type, $form_id );
61
 
62
  // this hook will allow for multiple fields to be added at once
57
  $field_type = FrmAppHelper::get_post_param( 'field_type', '', 'sanitize_text_field' );
58
  $form_id = FrmAppHelper::get_post_param( 'form_id', 0, 'absint' );
59
 
60
+ do_action( 'frm_before_create_field', $field_type, $form_id );
61
+
62
  $field = self::include_new_field( $field_type, $form_id );
63
 
64
  // this hook will allow for multiple fields to be added at once
classes/controllers/FrmHooksController.php CHANGED
@@ -151,6 +151,7 @@ class FrmHooksController {
151
  add_action( 'wp_ajax_frm_addon_deactivate', 'FrmAddon::deactivate' );
152
  add_action( 'wp_ajax_frm_install_addon', 'FrmAddonsController::ajax_install_addon' );
153
  add_action( 'wp_ajax_frm_activate_addon', 'FrmAddonsController::ajax_activate_addon' );
 
154
 
155
  // Fields Controller.
156
  add_action( 'wp_ajax_frm_load_field', 'FrmFieldsController::load_field' );
151
  add_action( 'wp_ajax_frm_addon_deactivate', 'FrmAddon::deactivate' );
152
  add_action( 'wp_ajax_frm_install_addon', 'FrmAddonsController::ajax_install_addon' );
153
  add_action( 'wp_ajax_frm_activate_addon', 'FrmAddonsController::ajax_activate_addon' );
154
+ add_action( 'wp_ajax_frm_connect', 'FrmAddonsController::connect_pro' );
155
 
156
  // Fields Controller.
157
  add_action( 'wp_ajax_frm_load_field', 'FrmFieldsController::load_field' );
classes/helpers/FrmAppHelper.php CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '4.02.04';
15
 
16
  /**
17
  * @since 1.07.02
@@ -2058,6 +2058,7 @@ class FrmAppHelper {
2058
  'updating_msg' => __( 'Please wait while your site updates.', 'formidable' ),
2059
  'deauthorize' => __( 'Are you sure you want to deauthorize Formidable Forms on this site?', 'formidable' ),
2060
  'url' => self::plugin_url(),
 
2061
  'loading' => __( 'Loading&hellip;', 'formidable' ),
2062
  'nonce' => wp_create_nonce( 'frm_ajax' ),
2063
  );
@@ -2079,13 +2080,6 @@ class FrmAppHelper {
2079
  * @param string $location
2080
  */
2081
  public static function localize_script( $location ) {
2082
- global $frm_vars;
2083
-
2084
- if ( isset( $frm_vars['jsloc'] ) ) {
2085
- return;
2086
- }
2087
- $frm_vars['jsloc'] = true;
2088
-
2089
  $ajax_url = admin_url( 'admin-ajax.php', is_ssl() ? 'admin' : 'http' );
2090
  $ajax_url = apply_filters( 'frm_ajax_url', $ajax_url );
2091
 
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '4.03';
15
 
16
  /**
17
  * @since 1.07.02
2058
  'updating_msg' => __( 'Please wait while your site updates.', 'formidable' ),
2059
  'deauthorize' => __( 'Are you sure you want to deauthorize Formidable Forms on this site?', 'formidable' ),
2060
  'url' => self::plugin_url(),
2061
+ 'app_url' => 'https://formidableforms.com/',
2062
  'loading' => __( 'Loading&hellip;', 'formidable' ),
2063
  'nonce' => wp_create_nonce( 'frm_ajax' ),
2064
  );
2080
  * @param string $location
2081
  */
2082
  public static function localize_script( $location ) {
 
 
 
 
 
 
 
2083
  $ajax_url = admin_url( 'admin-ajax.php', is_ssl() ? 'admin' : 'http' );
2084
  $ajax_url = apply_filters( 'frm_ajax_url', $ajax_url );
2085
 
classes/models/FrmAddon.php CHANGED
@@ -272,7 +272,7 @@ class FrmAddon {
272
  $message = '';
273
  if ( empty( $this->license ) ) {
274
  /* translators: %1$s: Plugin name, %2$s: Start link HTML, %3$s: end link HTML */
275
- $message = sprintf( esc_html__( 'Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s.', 'formidable' ), esc_html( $this->plugin_name ), '<a href="' . esc_url( admin_url( 'admin.php?page=formidable-settings&t=licenses_settings' ) ) . '">', '</a>' );
276
  } else {
277
  $api = new FrmFormApi( $this->license );
278
  $errors = $api->error_for_license();
@@ -462,7 +462,8 @@ class FrmAddon {
462
  FrmAppHelper::permission_check( 'frm_change_settings' );
463
  check_ajax_referer( 'frm_ajax', 'nonce' );
464
 
465
- if ( ! isset( $_POST['license'] ) || empty( $_POST['license'] ) ) {
 
466
  wp_die(
467
  json_encode(
468
  array(
@@ -473,7 +474,6 @@ class FrmAddon {
473
  );
474
  }
475
 
476
- $license = stripslashes( FrmAppHelper::get_param( 'license', '', 'post', 'sanitize_text_field' ) );
477
  $plugin_slug = FrmAppHelper::get_param( 'plugin', '', 'post', 'sanitize_text_field' );
478
  $this_plugin = self::get_addon( $plugin_slug );
479
  $response = $this_plugin->activate_license( $license );
@@ -553,14 +553,30 @@ class FrmAddon {
553
  );
554
  }
555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
556
  public static function deactivate() {
557
  FrmAppHelper::permission_check( 'frm_change_settings' );
558
  check_ajax_referer( 'frm_ajax', 'nonce' );
559
 
560
- $plugin_slug = FrmAppHelper::get_param( 'plugin', '', 'post', 'sanitize_text_field' );
561
- $this_plugin = self::get_addon( $plugin_slug );
562
- $license = $this_plugin->get_license();
563
- $this_plugin->license = $license;
564
 
565
  $response = array(
566
  'success' => false,
@@ -585,6 +601,17 @@ class FrmAddon {
585
  wp_die();
586
  }
587
 
 
 
 
 
 
 
 
 
 
 
 
588
  public function send_mothership_request( $action ) {
589
  $api_params = array(
590
  'edd_action' => $action,
272
  $message = '';
273
  if ( empty( $this->license ) ) {
274
  /* translators: %1$s: Plugin name, %2$s: Start link HTML, %3$s: end link HTML */
275
+ $message = sprintf( esc_html__( 'Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s.', 'formidable' ), esc_html( $this->plugin_name ), '<a href="' . esc_url( admin_url( 'admin.php?page=formidable-settings' ) ) . '">', '</a>' );
276
  } else {
277
  $api = new FrmFormApi( $this->license );
278
  $errors = $api->error_for_license();
462
  FrmAppHelper::permission_check( 'frm_change_settings' );
463
  check_ajax_referer( 'frm_ajax', 'nonce' );
464
 
465
+ $license = stripslashes( FrmAppHelper::get_param( 'license', '', 'post', 'sanitize_text_field' ) );
466
+ if ( empty( $license ) ) {
467
  wp_die(
468
  json_encode(
469
  array(
474
  );
475
  }
476
 
 
477
  $plugin_slug = FrmAppHelper::get_param( 'plugin', '', 'post', 'sanitize_text_field' );
478
  $this_plugin = self::get_addon( $plugin_slug );
479
  $response = $this_plugin->activate_license( $license );
553
  );
554
  }
555
 
556
+ /**
557
+ * @since 4.03
558
+ */
559
+ public static function reset_cache() {
560
+ FrmAppHelper::permission_check( 'frm_change_settings' );
561
+ check_ajax_referer( 'frm_ajax', 'nonce' );
562
+
563
+ $this_plugin = self::set_license_from_post();
564
+ $this_plugin->delete_cache();
565
+
566
+ $response = array(
567
+ 'success' => true,
568
+ 'message' => __( 'Refresh downloads', 'formidable' ),
569
+ );
570
+
571
+ echo json_encode( $response );
572
+ wp_die();
573
+ }
574
+
575
  public static function deactivate() {
576
  FrmAppHelper::permission_check( 'frm_change_settings' );
577
  check_ajax_referer( 'frm_ajax', 'nonce' );
578
 
579
+ $this_plugin = self::set_license_from_post();
 
 
 
580
 
581
  $response = array(
582
  'success' => false,
601
  wp_die();
602
  }
603
 
604
+ /**
605
+ * @since 4.03
606
+ */
607
+ private static function set_license_from_post() {
608
+ $plugin_slug = FrmAppHelper::get_param( 'plugin', '', 'post', 'sanitize_text_field' );
609
+ $this_plugin = self::get_addon( $plugin_slug );
610
+ $license = $this_plugin->get_license();
611
+ $this_plugin->license = $license;
612
+ return $this_plugin;
613
+ }
614
+
615
  public function send_mothership_request( $action ) {
616
  $api_params = array(
617
  'edd_action' => $action,
classes/models/FrmEntryFormatter.php CHANGED
@@ -159,7 +159,7 @@ class FrmEntryFormatter {
159
  protected function prepare_entry_attributes( $atts ) {
160
  $entry_atts = array();
161
 
162
- $conditionally_add = array( 'include_fields', 'fields', 'exclude_fields' );
163
  foreach ( $conditionally_add as $index ) {
164
  if ( isset( $atts[ $index ] ) ) {
165
  $entry_atts[ $index ] = $atts[ $index ];
159
  protected function prepare_entry_attributes( $atts ) {
160
  $entry_atts = array();
161
 
162
+ $conditionally_add = array( 'include_fields', 'fields', 'exclude_fields', 'entry' );
163
  foreach ( $conditionally_add as $index ) {
164
  if ( isset( $atts[ $index ] ) ) {
165
  $entry_atts[ $index ] = $atts[ $index ];
classes/models/FrmEntryValues.php CHANGED
@@ -49,7 +49,11 @@ class FrmEntryValues {
49
  * @param array $atts
50
  */
51
  public function __construct( $entry_id, $atts = array() ) {
52
- $this->init_entry( $entry_id );
 
 
 
 
53
 
54
  if ( $this->entry === null || $this->entry === false ) {
55
  return;
49
  * @param array $atts
50
  */
51
  public function __construct( $entry_id, $atts = array() ) {
52
+ if ( isset( $atts['entry'] ) && is_object( $atts['entry'] ) && ! empty( $atts['entry']->metas ) ) {
53
+ $this->entry = $atts['entry'];
54
+ } else {
55
+ $this->init_entry( $entry_id );
56
+ }
57
 
58
  if ( $this->entry === null || $this->entry === false ) {
59
  return;
classes/models/FrmField.php CHANGED
@@ -156,6 +156,10 @@ class FrmField {
156
  'icon' => 'frm_icon_font frm_percent_icon frm_show_upgrade',
157
  'addon' => 'quizzes',
158
  ),
 
 
 
 
159
  );
160
 
161
  // Since the signature field may be in a different section, don't show it twice.
@@ -777,7 +781,7 @@ class FrmField {
777
  }
778
 
779
  public static function no_save_fields() {
780
- return array( 'divider', 'end_divider', 'captcha', 'break', 'html', 'form' );
781
  }
782
 
783
  /**
156
  'icon' => 'frm_icon_font frm_percent_icon frm_show_upgrade',
157
  'addon' => 'quizzes',
158
  ),
159
+ 'summary' => array(
160
+ 'name' => __( 'Summary', 'formidable' ),
161
+ 'icon' => 'frm_icon_font frm_file_text_icon',
162
+ ),
163
  );
164
 
165
  // Since the signature field may be in a different section, don't show it twice.
781
  }
782
 
783
  public static function no_save_fields() {
784
+ return array( 'divider', 'end_divider', 'captcha', 'break', 'html', 'form', 'summary' );
785
  }
786
 
787
  /**
classes/models/FrmFieldValue.php CHANGED
@@ -12,6 +12,13 @@ class FrmFieldValue {
12
  */
13
  protected $field = null;
14
 
 
 
 
 
 
 
 
15
  /**
16
  * @since 2.04
17
  *
@@ -44,6 +51,7 @@ class FrmFieldValue {
44
  return;
45
  }
46
 
 
47
  $this->entry_id = $entry->id;
48
  $this->field = $field;
49
  $this->init_saved_value( $entry );
@@ -90,13 +98,27 @@ class FrmFieldValue {
90
  return FrmField::get_option( $this->field, $value );
91
  }
92
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  /**
94
  * Get the field property's label
95
  *
96
  * @since 2.04
97
  */
98
  public function get_field_label() {
99
- return $this->field->name;
100
  }
101
 
102
  /**
@@ -105,7 +127,7 @@ class FrmFieldValue {
105
  * @since 2.05
106
  */
107
  public function get_field_id() {
108
- return $this->field->id;
109
  }
110
 
111
  /**
@@ -114,7 +136,7 @@ class FrmFieldValue {
114
  * @since 2.04
115
  */
116
  public function get_field_key() {
117
- return $this->field->field_key;
118
  }
119
 
120
  /**
@@ -123,7 +145,7 @@ class FrmFieldValue {
123
  * @since 2.04
124
  */
125
  public function get_field_type() {
126
- return $this->field->type;
127
  }
128
 
129
  /**
@@ -173,13 +195,18 @@ class FrmFieldValue {
173
  * @param array $atts
174
  */
175
  protected function filter_displayed_value( $atts ) {
176
- $entry = FrmEntry::getOne( $this->entry_id, true );
 
 
 
 
 
177
 
178
  // TODO: maybe change from 'source' to 'run_filters' = 'email'
179
  if ( isset( $atts['source'] ) && $atts['source'] === 'entry_formatter' ) {
180
  // Deprecated frm_email_value hook
181
  $meta = array(
182
- 'item_id' => $entry->id,
183
  'field_id' => $this->field->id,
184
  'meta_value' => $this->saved_value,
185
  'field_type' => $this->field->type,
@@ -191,7 +218,7 @@ class FrmFieldValue {
191
  'frm_email_value',
192
  $this->displayed_value,
193
  (object) $meta,
194
- $entry,
195
  array(
196
  'field' => $this->field,
197
  )
@@ -205,7 +232,7 @@ class FrmFieldValue {
205
  $this->displayed_value,
206
  array(
207
  'field' => $this->field,
208
- 'entry' => $entry,
209
  )
210
  );
211
  }
@@ -217,8 +244,9 @@ class FrmFieldValue {
217
  */
218
  protected function clean_saved_value() {
219
  if ( $this->saved_value !== '' ) {
220
-
221
- FrmAppHelper::unserialize_or_decode( $this->saved_value );
 
222
 
223
  if ( is_array( $this->saved_value ) && empty( $this->saved_value ) ) {
224
  $this->saved_value = '';
12
  */
13
  protected $field = null;
14
 
15
+ /**
16
+ * @since 4.03
17
+ *
18
+ * @var object
19
+ */
20
+ protected $entry;
21
+
22
  /**
23
  * @since 2.04
24
  *
51
  return;
52
  }
53
 
54
+ $this->entry = $entry;
55
  $this->entry_id = $entry->id;
56
  $this->field = $field;
57
  $this->init_saved_value( $entry );
98
  return FrmField::get_option( $this->field, $value );
99
  }
100
 
101
+ /**
102
+ * @since 4.03
103
+ */
104
+ public function get_field_attr( $option ) {
105
+ return is_object( $this->field ) ? $this->field->{$option} : '';
106
+ }
107
+
108
+ /**
109
+ * @since 4.03
110
+ */
111
+ public function get_field() {
112
+ return $this->field;
113
+ }
114
+
115
  /**
116
  * Get the field property's label
117
  *
118
  * @since 2.04
119
  */
120
  public function get_field_label() {
121
+ return $this->get_field_attr( 'name' );
122
  }
123
 
124
  /**
127
  * @since 2.05
128
  */
129
  public function get_field_id() {
130
+ return $this->get_field_attr( 'id' );
131
  }
132
 
133
  /**
136
  * @since 2.04
137
  */
138
  public function get_field_key() {
139
+ return $this->get_field_attr( 'field_key' );
140
  }
141
 
142
  /**
145
  * @since 2.04
146
  */
147
  public function get_field_type() {
148
+ return $this->get_field_attr( 'type' );
149
  }
150
 
151
  /**
195
  * @param array $atts
196
  */
197
  protected function filter_displayed_value( $atts ) {
198
+ if ( ! is_object( $this->entry ) || empty( $this->entry->metas ) ) {
199
+ $this->entry = FrmEntry::getOne( $this->entry_id, true );
200
+ if ( ! is_object( $this->entry ) ) {
201
+ return;
202
+ }
203
+ }
204
 
205
  // TODO: maybe change from 'source' to 'run_filters' = 'email'
206
  if ( isset( $atts['source'] ) && $atts['source'] === 'entry_formatter' ) {
207
  // Deprecated frm_email_value hook
208
  $meta = array(
209
+ 'item_id' => $this->entry->id,
210
  'field_id' => $this->field->id,
211
  'meta_value' => $this->saved_value,
212
  'field_type' => $this->field->type,
218
  'frm_email_value',
219
  $this->displayed_value,
220
  (object) $meta,
221
+ $this->entry,
222
  array(
223
  'field' => $this->field,
224
  )
232
  $this->displayed_value,
233
  array(
234
  'field' => $this->field,
235
+ 'entry' => $this->entry,
236
  )
237
  );
238
  }
244
  */
245
  protected function clean_saved_value() {
246
  if ( $this->saved_value !== '' ) {
247
+ if ( ! is_array( $this->saved_value ) && ! is_object( $this->saved_value ) ) {
248
+ FrmAppHelper::unserialize_or_decode( $this->saved_value );
249
+ }
250
 
251
  if ( is_array( $this->saved_value ) && empty( $this->saved_value ) ) {
252
  $this->saved_value = '';
classes/models/FrmTableHTMLGenerator.php CHANGED
@@ -268,17 +268,17 @@ class FrmTableHTMLGenerator {
268
  }
269
  $row .= '>';
270
 
 
 
 
271
  if ( 'rtl' == $this->direction ) {
272
- $first = $value;
273
- $second = $label;
274
  } else {
275
- $first = $label;
276
- $second = $value;
277
  }
278
 
279
- $row .= '<td' . $this->td_style . '>' . wp_kses_post( $first ) . '</td>';
280
- $row .= '<td' . $this->td_style . '>' . wp_kses_post( $second ) . '</td>';
281
-
282
  $row .= '</tr>' . "\r\n";
283
 
284
  $this->switch_odd();
268
  }
269
  $row .= '>';
270
 
271
+ $label = '<th' . $this->td_style . '>' . wp_kses_post( $label ) . '</th>';
272
+ $value = '<td' . $this->td_style . '>' . wp_kses_post( $value ) . '</td>';
273
+
274
  if ( 'rtl' == $this->direction ) {
275
+ $row .= $value;
276
+ $row .= $label;
277
  } else {
278
+ $row .= $label;
279
+ $row .= $value;
280
  }
281
 
 
 
 
282
  $row .= '</tr>' . "\r\n";
283
 
284
  $this->switch_odd();
classes/views/frm-forms/add_field.php CHANGED
@@ -18,6 +18,7 @@
18
  <a href="#" class="frm_bstooltip frm-hover-icon frm_delete_field" title="<?php esc_attr_e( 'Delete Field', 'formidable' ); ?>">
19
  <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_delete_icon' ); ?>
20
  </a>
 
21
  <a href="#" class="frm_bstooltip frm-hover-icon frm_clone_field" title="<?php ( $field['type'] === 'divider' ) ? esc_attr_e( 'Duplicate Section', 'formidable' ) : esc_attr_e( 'Duplicate Field', 'formidable' ); ?>">
22
  <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_clone_icon' ); ?>
23
  </a>
18
  <a href="#" class="frm_bstooltip frm-hover-icon frm_delete_field" title="<?php esc_attr_e( 'Delete Field', 'formidable' ); ?>">
19
  <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_delete_icon' ); ?>
20
  </a>
21
+
22
  <a href="#" class="frm_bstooltip frm-hover-icon frm_clone_field" title="<?php ( $field['type'] === 'divider' ) ? esc_attr_e( 'Duplicate Section', 'formidable' ) : esc_attr_e( 'Duplicate Field', 'formidable' ); ?>">
23
  <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_clone_icon' ); ?>
24
  </a>
classes/views/frm-settings/license_box.php CHANGED
@@ -1,3 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
  <p>You're using Formidable Forms Lite - no license needed. Enjoy! 🙂</p>
2
  <p>
3
  <?php
@@ -9,9 +21,7 @@
9
  );
10
  ?>
11
  </p>
12
- <p>
13
- <a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url( FrmAppHelper::admin_upgrade_link( 'settings-license', 'knowledgebase/install-formidable-forms/' ) ) ); ?>" target="_blank">
14
- <?php esc_html_e( 'Already purchased?', 'formidable' ); ?>
15
- </a>
16
- </p>
17
- <div class="clear"></div>
1
+ <div id="frm_license_top" class="frm_unauthorized_box">
2
+ <p id="frm-connect-btns" class="frm-show-unauthorized">
3
+ <a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable-settings' ) ); ?>" target="_blank" class="button-primary frm-button-primary" id="frm-settings-connect-btn">
4
+ <?php esc_html_e( 'Connect an Account', 'formidable' ); ?>
5
+ </a>
6
+ or
7
+ <a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url( FrmAppHelper::admin_upgrade_link( 'settings-license' ) ) ); ?>" target="_blank" class="button-secondary frm-secondary-button">
8
+ <?php esc_html_e( 'Get Formidable Now', 'formidable' ); ?>
9
+ </a>
10
+ </p>
11
+
12
+ <div id="frm-using-lite" class="frm-show-unauthorized">
13
  <p>You're using Formidable Forms Lite - no license needed. Enjoy! 🙂</p>
14
  <p>
15
  <?php
21
  );
22
  ?>
23
  </p>
24
+ </div>
25
+ </div>
26
+
27
+ <div class="frm_pro_license_msg frm_hidden"></div>
 
 
classes/views/xml/default-templates.xml CHANGED
@@ -84,7 +84,7 @@
84
  <link></link>
85
  <post_author><![CDATA[admin]]></post_author>
86
  <description></description>
87
- <content><![CDATA[{"email_to":"[admin_email]","cc":"","bcc":"","reply_to":"","from":"[sitename] <[admin_email]>","email_subject":"","email_message":"[default-message]","event":["create"],"conditions":{"send_stop":"send","any_all":"any"}}]]></content>
88
  <excerpt><![CDATA[email]]></excerpt>
89
  <post_id>1</post_id>
90
  <post_date>2015-04-06 17:18:12</post_date>
84
  <link></link>
85
  <post_author><![CDATA[admin]]></post_author>
86
  <description></description>
87
+ <content><![CDATA[{"email_to":"[admin_email]","cc":"","bcc":"","reply_to":"[3]","from":"[sitename] <[admin_email]>","email_subject":"","email_message":"[default-message]","event":["create"],"conditions":{"send_stop":"send","any_all":"any"}}]]></content>
88
  <excerpt><![CDATA[email]]></excerpt>
89
  <post_id>1</post_id>
90
  <post_date>2015-04-06 17:18:12</post_date>
css/_single_theme.css.php CHANGED
@@ -404,7 +404,8 @@ if ( ! empty( $important ) ) {
404
  .<?php echo esc_html( $style_class ); ?> input[type=submit],
405
  .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button],
406
  .<?php echo esc_html( $style_class ); ?> .frm_submit button,
407
- .frm_form_submit_style{
 
408
  width:<?php echo esc_html( ( $submit_width == '' ? 'auto' : $submit_width ) . $important ); ?>;
409
  font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
410
  font-size:<?php echo esc_html( $submit_font_size . $important ); ?>;
@@ -450,6 +451,7 @@ if ( ! empty( $important ) ) {
450
  }
451
 
452
  <?php if ( empty( $submit_bg_img ) ) { ?>
 
453
  .<?php echo esc_html( $style_class ); ?> input[type=submit]:hover,
454
  .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:hover,
455
  .<?php echo esc_html( $style_class ); ?> .frm_submit button:hover{
@@ -462,6 +464,7 @@ if ( ! empty( $important ) ) {
462
  margin-bottom:<?php echo esc_html( $submit_margin ); ?>;
463
  }
464
 
 
465
  .<?php echo esc_html( $style_class ); ?> input[type=submit]:focus,
466
  .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:focus,
467
  .<?php echo esc_html( $style_class ); ?> .frm_submit button:focus,
404
  .<?php echo esc_html( $style_class ); ?> input[type=submit],
405
  .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button],
406
  .<?php echo esc_html( $style_class ); ?> .frm_submit button,
407
+ .frm_form_submit_style,
408
+ .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn {
409
  width:<?php echo esc_html( ( $submit_width == '' ? 'auto' : $submit_width ) . $important ); ?>;
410
  font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
411
  font-size:<?php echo esc_html( $submit_font_size . $important ); ?>;
451
  }
452
 
453
  <?php if ( empty( $submit_bg_img ) ) { ?>
454
+ .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn:hover,
455
  .<?php echo esc_html( $style_class ); ?> input[type=submit]:hover,
456
  .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:hover,
457
  .<?php echo esc_html( $style_class ); ?> .frm_submit button:hover{
464
  margin-bottom:<?php echo esc_html( $submit_margin ); ?>;
465
  }
466
 
467
+ .<?php echo esc_html( $style_class ); ?> .frm-edit-page-btn:focus,
468
  .<?php echo esc_html( $style_class ); ?> input[type=submit]:focus,
469
  .<?php echo esc_html( $style_class ); ?> .frm_submit input[type=button]:focus,
470
  .<?php echo esc_html( $style_class ); ?> .frm_submit button:focus,
css/custom_theme.css.php CHANGED
@@ -211,6 +211,7 @@ legend.frm_hidden{
211
  margin-bottom:8px !important;
212
  }
213
 
 
214
  .with_frm_style .frm_submit input[type=submit],
215
  .with_frm_style .frm_submit input[type=button],
216
  .with_frm_style .frm_submit button{
211
  margin-bottom:8px !important;
212
  }
213
 
214
+ .with_frm_style .frm-edit-page-btn,
215
  .with_frm_style .frm_submit input[type=submit],
216
  .with_frm_style .frm_submit input[type=button],
217
  .with_frm_style .frm_submit button{
css/formidableforms.css DELETED
@@ -1,2 +0,0 @@
1
- /* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */
2
- .frm_hidden,.frm_add_form_row.frm_hidden,.frm_remove_form_row.frm_hidden,.with_frm_style .frm_button.frm_hidden{display:none;}form input.frm_verify{display:none !important;}.with_frm_style fieldset{min-width:0;}.with_frm_style fieldset fieldset{border:none;margin:0;padding:0;background-color:transparent;}legend.frm_hidden{display:none !important;}.with_frm_style .frm_form_fields{opacity:1;transition: opacity 0.1s linear;}.with_frm_style .frm_doing_ajax{opacity:.5;}.frm_transparent{color:transparent;}.input[type=file].frm_transparent:focus, .with_frm_style input[type=file]{background-color:transparent;border:none;outline:none;box-shadow:none;}.with_frm_style input[type=file]{display:initial;}.frm_preview_page:before{content:normal !important;}.frm_preview_page{padding:25px;}.with_frm_style .frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container .frm_primary_label,.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container .frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container .frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_none_container .frm_primary_label,.with_frm_style .frm_pos_none,.frm_pos_none,.frm_none_container .frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container .frm_primary_label{visibility:hidden;white-space:nowrap;}.with_frm_style .frm_inside_container .frm_primary_label{opacity:0;transition: opacity 0.1s linear;}.with_frm_style .frm_inside_container label.frm_visible,.frm_visible{opacity:1;}.with_frm_style .frm_description{clear:both;}.with_frm_style input[type=number][readonly]{-moz-appearance: textfield;}.with_frm_style select[multiple="multiple"]{height:auto;line-height:normal;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style textarea{height:auto;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none;border:1px solid #eee;padding:5px;display:inline;}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field,.frm_inline_form .frm_submit{grid-column: span 1 / span 1;}.frm_inline_form .frm_submit{margin:0;}.frm_submit.frm_inline_submit input[type=submit],.frm_submit.frm_inline_submit button,.frm_inline_form .frm_submit input[type=submit],.frm_inline_form .frm_submit button{margin-top:0;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style.frm_center_submit .frm_submit input[type=submit],.with_frm_style.frm_center_submit .frm_submit input[type=button],.with_frm_style.frm_center_submit .frm_submit button{margin-bottom:8px !important;}.with_frm_style .frm_submit input[type=submit],.with_frm_style .frm_submit input[type=button],.with_frm_style .frm_submit button{-webkit-appearance: none;cursor: pointer;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.with_frm_style .frm_loading_form .frm_ajax_loading{visibility:visible !important;}.with_frm_style .frm_loading_form .frm_button_submit {position: relative;opacity: .8;color: transparent !important;text-shadow: none !important;}.with_frm_style .frm_loading_form .frm_button_submit:hover,.with_frm_style .frm_loading_form .frm_button_submit:active,.with_frm_style .frm_loading_form .frm_button_submit:focus {cursor: not-allowed;color: transparent;outline: none !important;box-shadow: none;}.with_frm_style .frm_loading_form .frm_button_submit:before {content: '';display: inline-block;position: absolute;background: transparent;border: 1px solid #fff;border-top-color: transparent;border-left-color: transparent;border-radius: 50%;box-sizing: border-box;top: 50%;left: 50%;margin-top: -10px;margin-left: -10px;width: 20px;height: 20px;-webkit-animation: spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation: spin 2s linear infinite;animation: spin 2s linear infinite;}.frm_forms.frm_style_candy-cane.with_frm_style{max-width:80% !important;direction:ltr !important;margin:0 auto;}.frm_style_candy-cane.with_frm_style,.frm_style_candy-cane.with_frm_style form,.frm_style_candy-cane.with_frm_style .frm-show-form div.frm_description p {text-align:left !important;}.frm_inline_form.frm_style_candy-cane.with_frm_style form{text-align:center;}.frm_style_candy-cane.with_frm_style .frm_form_fields > fieldset{border-width:6px !important;border-style:solid;border-color:#fb32e4 !important;margin:0;padding:10px 25px 5px 25px !important;background-color:#fccff7;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_candy-cane.with_frm_style legend + h3,.frm_style_candy-cane.with_frm_style h3.frm_form_title{font-size:20px !important;color:#000 !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px !important;margin-bottom:10px !important;}.frm_style_candy-cane.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#555 !important;font-weight:bold !important;text-align:left !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_container,.frm_style_candy-cane.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;color:#000 !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_container{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .frm_form_field .frm_show_it{font-size:14px !important;font-weight:normal;}.frm_style_candy-cane.with_frm_style .frm_icon_font{color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e633";}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e632";}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#000 !important;vertical-align:middle;}.frm_style_candy-cane.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e635";color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e634";color:#555 !important;}.frm_style_candy-cane.with_frm_style .form-field{margin-bottom:20px !important;}.frm_style_candy-cane.with_frm_style .frm_grid,.frm_style_candy-cane.with_frm_style .frm_grid_first,.frm_style_candy-cane.with_frm_style .frm_grid_odd {margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style .form-field.frm_section_heading{margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style p.description,.frm_style_candy-cane.with_frm_style div.description,.frm_style_candy-cane.with_frm_style div.frm_description,.frm_style_candy-cane.with_frm_style .frm-show-form > div.frm_description,.frm_style_candy-cane.with_frm_style .frm_error{margin:0 !important;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:12px !important;color:#777 !important;font-weight:normal !important;text-align:left !important;font-style:normal !important;max-width:100%;}.frm_style_candy-cane.with_frm_style .frm-show-form div.frm_description p{font-size:14px !important;color:#000 !important;margin-top:10px !important;margin-bottom:25px !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_candy-cane.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_candy-cane.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.frm_style_candy-cane.with_frm_style .frm_pos_right{display:inline !important;width:150px !important;}.frm_style_candy-cane.with_frm_style .frm_none_container .frm_primary_label,.frm_style_candy-cane.with_frm_style .frm_pos_none{display:none !important;}.frm_style_candy-cane.with_frm_style .frm_scale label{font-weight:normal !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_required{color:#555 !important;font-weight:bold !important;}.frm_style_candy-cane.with_frm_style input[type=text],.frm_style_candy-cane.with_frm_style input[type=password],.frm_style_candy-cane.with_frm_style input[type=email],.frm_style_candy-cane.with_frm_style input[type=number],.frm_style_candy-cane.with_frm_style input[type=url],.frm_style_candy-cane.with_frm_style input[type=tel],.frm_style_candy-cane.with_frm_style input[type=search],.frm_style_candy-cane.with_frm_style select,.frm_style_candy-cane.with_frm_style textarea,.frm_style_candy-cane.with_frm_style .frm-card-element.StripeElement,.frm_style_candy-cane.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:14px;margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style textarea{vertical-align:top;}.frm_style_candy-cane.with_frm_style input[type=text],.frm_style_candy-cane.with_frm_style input[type=password],.frm_style_candy-cane.with_frm_style input[type=email],.frm_style_candy-cane.with_frm_style input[type=number],.frm_style_candy-cane.with_frm_style input[type=url],.frm_style_candy-cane.with_frm_style input[type=tel],.frm_style_candy-cane.with_frm_style input[type=phone],.frm_style_candy-cane.with_frm_style input[type=search],.frm_style_candy-cane.with_frm_style select,.frm_style_candy-cane.with_frm_style textarea,.frm_form_fields_style,.frm_style_candy-cane.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_candy-cane.with_frm_style .frm-card-element.StripeElement,.frm_style_candy-cane.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single{color:#555 !important;background-color:#ffffff !important;background-image:none !important;border-color: #fb32e4 !important;border-width:4px !important;border-style:dashed !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;max-width:100%;font-size:14px !important;padding:6px 10px !important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none !important;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset !important;}.frm_style_candy-cane.with_frm_style input[type=radio],.frm_style_candy-cane.with_frm_style input[type=checkbox]{border-color: #fb32e4 !important;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset !important;}.frm_style_candy-cane.with_frm_style input[type=text],.frm_style_candy-cane.with_frm_style input[type=password],.frm_style_candy-cane.with_frm_style input[type=email],.frm_style_candy-cane.with_frm_style input[type=number],.frm_style_candy-cane.with_frm_style input[type=url],.frm_style_candy-cane.with_frm_style input[type=tel],.frm_style_candy-cane.with_frm_style input[type=file],.frm_style_candy-cane.with_frm_style input[type=search],.frm_style_candy-cane.with_frm_style select,.frm_style_candy-cane.with_frm_style .frm-card-element.StripeElement{height:32px !important;line-height:1.3 !important;}.frm_style_candy-cane.with_frm_style select[multiple="multiple"]{height:auto !important;}.frm_style_candy-cane.with_frm_style input[type=file]{color: #555 !important;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:14px !important;}.frm_style_candy-cane.with_frm_style input[type=file].frm_transparent{color:transparent !important;}.frm_style_candy-cane.with_frm_style select{width:100% !important;max-width:100%;}.frm_style_candy-cane.with_frm_style .wp-editor-wrap{width:100% !important;max-width:100%;}.frm_style_candy-cane.with_frm_style .wp-editor-container textarea{border:none !important;}.frm_style_candy-cane.with_frm_style .mceIframeContainer{background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .auto_width input,.frm_style_candy-cane.with_frm_style input.auto_width,.frm_style_candy-cane.with_frm_style select.auto_width,.frm_style_candy-cane.with_frm_style textarea.auto_width{width:auto !important;}.frm_style_candy-cane.with_frm_style input[disabled],.frm_style_candy-cane.with_frm_style select[disabled],.frm_style_candy-cane.with_frm_style textarea[disabled],.frm_style_candy-cane.with_frm_style input[readonly],.frm_style_candy-cane.with_frm_style select[readonly],.frm_style_candy-cane.with_frm_style textarea[readonly]{background-color:#ffffff !important;color:#555 !important;border-color:#fb32e4 !important;}.frm_style_candy-cane.with_frm_style input::placeholder,.frm_style_candy-cane.with_frm_style textarea::placeholder{color: #555 !important;}.frm_style_candy-cane.with_frm_style input::-webkit-input-placeholder,.frm_style_candy-cane.with_frm_style textarea::-webkit-input-placeholder{color: #555 !important;}.frm_style_candy-cane.with_frm_style input::-moz-placeholder,.frm_style_candy-cane.with_frm_style textarea::-moz-placeholder{color: #555 !important;}.frm_style_candy-cane.with_frm_style input:-ms-input-placeholder,frm_style_candy-cane.with_frm_style textarea:-ms-input-placeholder{color: #555 !important;}.frm_style_candy-cane.with_frm_style input:-moz-placeholder,.frm_style_candy-cane.with_frm_style textarea:-moz-placeholder{color: #555 !important;}.frm_style_candy-cane.with_frm_style .frm_default,.frm_style_candy-cane.with_frm_style input.frm_default,.frm_style_candy-cane.with_frm_style textarea.frm_default,.frm_style_candy-cane.with_frm_style select.frm_default,.frm_style_candy-cane.with_frm_style .placeholder,.frm_style_candy-cane.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-default{color: #555 !important;}.frm_style_candy-cane.with_frm_style .form-field input:not([type=file]):focus,.frm_style_candy-cane.with_frm_style select:focus,.frm_style_candy-cane.with_frm_style textarea:focus,.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=text],.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=password],.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=email],.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=number],.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=url],.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=tel],.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_candy-cane.with_frm_style .frm_focus_field .frm-card-element.StripeElement,.frm_style_candy-cane.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_candy-cane.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff !important;border-color:#fb32e4 !important;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(251,50,228, 0.6);}.frm_style_candy-cane.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_candy-cane.with_frm_style input[type=submit],.frm_style_candy-cane.with_frm_style .frm_submit input[type=button],.frm_style_candy-cane.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;height:auto !important;line-height:normal !important;text-align:center;background:#fccff7 !important;border-width:4px;border-color: #fb32e4 !important;border-style:solid;color:#000 !important;cursor:pointer;font-weight:bold !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;text-shadow:none;padding:6px 11px !important;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_candy-cane.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_candy-cane.with_frm_style input[type=submit]:hover,.frm_style_candy-cane.with_frm_style .frm_submit input[type=button]:hover,.frm_style_candy-cane.with_frm_style .frm_submit button:hover{background: #efefef !important;border-color: #cccccc !important;color: #444444 !important;}.frm_style_candy-cane.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_candy-cane.with_frm_style input[type=submit]:focus,.frm_style_candy-cane.with_frm_style .frm_submit input[type=button]:focus,.frm_style_candy-cane.with_frm_style .frm_submit button:focus,.frm_style_candy-cane.with_frm_style input[type=submit]:active,.frm_style_candy-cane.with_frm_style .frm_submit input[type=button]:active,.frm_style_candy-cane.with_frm_style .frm_submit button:active{background: #efefef !important;border-color: #cccccc !important;color: #444444 !important;}.frm_style_candy-cane.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_candy-cane.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_candy-cane.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_candy-cane.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent !important;background: #fccff7 !important;}.frm_style_candy-cane.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #000 !important;border-right-color: #000 !important;}.frm_style_candy-cane.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_candy-cane.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#555 !important;font-weight:bold !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;visibility:hidden;}.frm_style_candy-cane.with_frm_style.frm_inline_form .frm_submit input,.frm_style_candy-cane.with_frm_style.frm_inline_form .frm_submit button,.frm_style_candy-cane.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_candy-cane.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_candy-cane.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:bold;}.frm_style_candy-cane.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#555 !important;font-weight:bold !important;clear:both;}.frm_style_candy-cane.with_frm_style .frm_radio{display:block !important;}.frm_style_candy-cane.with_frm_style .frm_checkbox{display:block !important;}.frm_style_candy-cane.with_frm_style .vertical_radio .frm_checkbox,.frm_style_candy-cane.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block !important;}.frm_style_candy-cane.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_candy-cane.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block !important;}.frm_style_candy-cane.with_frm_style .frm_radio label,.frm_style_candy-cane.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#555 !important;font-weight:normal !important;}.frm_style_candy-cane.with_frm_style .frm_radio input[type=radio],.frm_style_candy-cane.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px !important;position: static !important;}.frm_style_candy-cane.with_frm_style .frm_blank_field input[type=text],.frm_style_candy-cane.with_frm_style .frm_blank_field input[type=password],.frm_style_candy-cane.with_frm_style .frm_blank_field input[type=url],.frm_style_candy-cane.with_frm_style .frm_blank_field input[type=tel],.frm_style_candy-cane.with_frm_style .frm_blank_field input[type=number],.frm_style_candy-cane.with_frm_style .frm_blank_field input[type=email],.frm_style_candy-cane.with_frm_style .frm_blank_field textarea,.frm_style_candy-cane.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_candy-cane.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_candy-cane.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_candy-cane.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_candy-cane.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_candy-cane.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_candy-cane.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_candy-cane.with_frm_style .frm_form_field :invalid{color:#555 !important;background-color:#ffffff !important;border-color:#ff1914 !important;border-width:4px !important;border-style:dashed !important;}.frm_style_candy-cane.with_frm_style .frm_blank_field .sigWrapper{border-color:#ff1914 !important;}.frm_style_candy-cane.with_frm_style .frm_error{font-weight:bold !important;}.frm_style_candy-cane.with_frm_style .frm_blank_field label,.frm_style_candy-cane.with_frm_style .frm_error{color:#ff1914 !important;}.frm_style_candy-cane.with_frm_style .frm_error_style{background-color:#bf4a4a !important;border:1px solid #fb32e4 !important;border-radius:5px !important;color: #fff !important;font-size:14px !important;margin:0;margin-bottom:20px;}.frm_style_candy-cane.with_frm_style .frm_message,.frm_success_style{border:1px solid #fb32e4;background-color:#fccff7 !important;color:#555 !important;border-radius:5px !important;}.frm_style_candy-cane.with_frm_style .frm_message p{color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px !important;}.frm_style_candy-cane.with_frm_style .frm-grid td,.frm-grid th{border-color:#fb32e4;}.form_results.frm_style_candy-cane.with_frm_style{border:4px solid #fb32e4 !important;}.form_results.frm_style_candy-cane.with_frm_style tr td{color: #555 !important;border-top:4px solid #fb32e4 !important;}.form_results.frm_style_candy-cane.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #fb32e4 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #fb32e4 50%, #fb32e4 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_candy-cane.with_frm_style #frm_loading .progress-bar{background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_grid,.frm_style_candy-cane.with_frm_style .frm_grid_first,.frm_style_candy-cane.with_frm_style .frm_grid_odd{border-color:#fb32e4;}.frm_style_candy-cane.with_frm_style .frm_grid.frm_blank_field,.frm_style_candy-cane.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_candy-cane.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#bf4a4a !important;border-color:#fb32e4;}.frm_style_candy-cane.with_frm_style .frm_grid_first,.frm_style_candy-cane.with_frm_style .frm_grid_odd{background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_grid{background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff !important;border-color: #fb32e4 !important;border-width:4px !important;border-style:dashed !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;font-size:14px !important;padding:6px 10px !important;outline:none !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_total input,.frm_style_candy-cane.with_frm_style .frm_form_field.frm_total textarea{color: #555 !important;background-color:transparent !important;border:none !important;display:inline !important;width:auto !important;padding:0 !important;}.frm_style_candy-cane.with_frm_style .frm_button{padding:6px 11px !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;font-size:14px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-weight:bold !important;color:#000 !important;background: #fccff7 !important;border-width:4px;border-color: #fb32e4 !important;height:auto !important;}.frm_style_candy-cane.with_frm_style .frm_button .frm_icon_font:before{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone{border-color: #fb32e4 !important;border-radius:5px !important;color: #555 !important;background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-remove{color: #555 !important;}.frm_style_candy-cane.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #000 !important;}.frm_style_candy-cane.with_frm_style .frm_blank_field .frm_dropzone{border-color:#ff1914 !important;color:#555 !important;background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2 !important;}.frm_style_candy-cane.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555 !important;background-color:#ffffff !important;padding:6px 10px !important;border-radius:5px !important;border-color: #fb32e4 !important;border-width:4px !important;border-style:dashed !important;}.frm_style_candy-cane.with_frm_style .chosen-container{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .chosen-container .chosen-results li,.frm_style_candy-cane.with_frm_style .chosen-container .chosen-results li span{color:#555 !important;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px !important;line-height:32px !important;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single div{top:3px !important;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_candy-cane.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px !important;}.frm_style_candy-cane.with_frm_style .frm_page_bar input,.frm_style_candy-cane.with_frm_style .frm_page_bar input:disabled{color: #ffffff !important;background-color: #dddddd !important;border-color: #dfdfdf !important;border-width: 2px !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd !important;border-color: #dfdfdf !important;opacity:1 !important;}.frm_style_candy-cane.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_rootline_title,.frm_style_candy-cane.with_frm_style .frm_pages_complete,.frm_style_candy-cane.with_frm_style .frm_percent_complete{color: #777 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input,.frm_style_candy-cane.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff !important;border-right-color: #ffffff !important;border-left-width: 1px !important;border-right-width: 1px !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2 !important;border-right-color: #ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf !important;border-top-width: 2px !important;top: 15px;}.frm_style_candy-cane.with_frm_style .frm_rootline input,.frm_style_candy-cane.with_frm_style .frm_rootline input:hover {width: 30px !important;height: 30px !important;border-radius: 30px !important;padding: 0 !important;}.frm_style_candy-cane.with_frm_style .frm_rootline input:focus {border-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae !important;background-color: #008ec2 !important;color: #ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input,.frm_style_candy-cane.with_frm_style .frm_progress_line input:disabled,.frm_style_candy-cane.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_candy-cane.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_candy-cane.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_candy-cane.with_frm_style .frm_range_value{font-size:14px;}.frm_style_candy-cane.with_frm_style .form-field input[type=range],.frm_style_candy-cane.with_frm_style .form-field input[type=range]:focus {padding:0 !important;background:transparent !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc !important;border-radius:5px !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff !important;background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff !important;background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff !important;background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_switch_opt{font-size:14px !important;font-weight:normal !important;}.frm_style_candy-cane.with_frm_style .frm_on_label{color:#008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_off_label{color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_slider {background-color:#cccccc !important;}.frm_style_candy-cane.with_frm_style input:checked + .frm_slider {background-color:#008ec2 !important;}.frm_style_candy-cane.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto !important;}.frm_style_candy-cane.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_candy-cane.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_candy-cane.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block !important;}.frm_style_candy-cane.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 !important;margin-top:8px;}.frm_style_candy-cane.with_frm_style span.frm-pass-verified::before {color:#555 !important;}.frm_style_candy-cane.with_frm_style span.frm-pass-req::before {color:#fff !important;}.frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0 !important;margin:0 !important;font-size:18px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold !important;color:#555 !important;border:none !important;border-top:2px solid #e8e8e8 !important;background-color:transparent !important}.frm_style_candy-cane.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_candy-cane.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_candy-cane.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_candy-cane.with_frm_style .frm_section_heading{margin-top:15px !important;}.frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px !important;}.frm_style_candy-cane.with_frm_style .frm_repeat_sec{margin-bottom:20px !important;margin-top:20px !important;border-bottom:2px solid #e8e8e8 !important;}@media only screen and (max-width: 600px){.frm_style_candy-cane.with_frm_style .frm_repeat_inline,.frm_style_candy-cane.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_formidable-style-2.with_frm_style{max-width:100%;direction:ltr;margin:0 auto;}.frm_style_formidable-style-2.with_frm_style,.frm_style_formidable-style-2.with_frm_style form,.frm_style_formidable-style-2.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_inline_form.frm_style_formidable-style-2.with_frm_style form{text-align:center;}.frm_style_formidable-style-2.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#444444;margin:0;padding:35px;background-color:#f6f6f6;font-family:'Noto Sans', sans-serif;}.frm_style_formidable-style-2.with_frm_style legend + h3,.frm_style_formidable-style-2.with_frm_style h3.frm_form_title{font-size:24px;color:#444444;font-family:'Noto Sans', sans-serif;margin-top:20px;margin-bottom:20px;}.frm_style_formidable-style-2.with_frm_style .frm_primary_label{font-family:'Noto Sans', sans-serif;font-size:16px;color:#595959;font-weight:normal;text-align:left;margin:0;padding:0 5px 8px 0;width:auto;display:block;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-family:'Noto Sans', sans-serif;color:#757575;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-size:15px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font{color:#595959;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff;vertical-align:middle;}.frm_style_formidable-style-2.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .form-field{margin-bottom:35px;}.frm_style_formidable-style-2.with_frm_style .frm_grid,.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style p.description,.frm_style_formidable-style-2.with_frm_style div.description,.frm_style_formidable-style-2.with_frm_style div.frm_description,.frm_style_formidable-style-2.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style-2.with_frm_style .frm_error{margin:6px 0 0 0;padding:0;font-family:'Noto Sans', sans-serif;font-size:12px;color:#a3a3a3;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#757575;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style-2.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style-2.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style-2.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style-2.with_frm_style .frm_none_container .frm_primary_label,.frm_style_formidable-style-2.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style-2.with_frm_style .frm_scale label{font-weight:normal;font-family:'Noto Sans', sans-serif;font-size:16px;color:#565656;}.frm_style_formidable-style-2.with_frm_style .frm_required{color:#dd0000;font-weight:bold;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style textarea,.frm_style_formidable-style-2.with_frm_style .frm-card-element.StripeElement,.frm_style_formidable-style-2.with_frm_style .chosen-container{font-family:'Noto Sans', sans-serif;font-size:15px;margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=phone],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style-2.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style-2.with_frm_style .frm-card-element.StripeElement,.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single{color:#adadad;background-color:#ffffff;border-color: #e5e5e5;border-width:1px;border-style:solid;-moz-border-radius:0px;-webkit-border-radius:0px;border-radius:0px;width:100%;max-width:100%;font-size:15px;padding:14px 18px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:none;}.frm_style_formidable-style-2.with_frm_style input[type=radio],.frm_style_formidable-style-2.with_frm_style input[type=checkbox]{border-color: #e5e5e5;box-shadow:none;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=file],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style .frm-card-element.StripeElement{height:56px;line-height:1.3;}.frm_style_formidable-style-2.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_formidable-style-2.with_frm_style input[type=file]{color: #adadad;padding:0px;font-family:'Noto Sans', sans-serif;font-size:15px;}.frm_style_formidable-style-2.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style-2.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style-2.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .auto_width input,.frm_style_formidable-style-2.with_frm_style input.auto_width,.frm_style_formidable-style-2.with_frm_style select.auto_width,.frm_style_formidable-style-2.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style-2.with_frm_style input[disabled],.frm_style_formidable-style-2.with_frm_style select[disabled],.frm_style_formidable-style-2.with_frm_style textarea[disabled],.frm_style_formidable-style-2.with_frm_style input[readonly],.frm_style_formidable-style-2.with_frm_style select[readonly],.frm_style_formidable-style-2.with_frm_style textarea[readonly]{background-color:#f6f6f6;color:#7c7c7c;border-color:#f6f6f6;}.frm_style_formidable-style-2.with_frm_style input::placeholder,.frm_style_formidable-style-2.with_frm_style textarea::placeholder{color: #7c7c7c;}.frm_style_formidable-style-2.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style-2.with_frm_style textarea::-webkit-input-placeholder{color: #7c7c7c;}.frm_style_formidable-style-2.with_frm_style input::-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea::-moz-placeholder{color: #7c7c7c;}.frm_style_formidable-style-2.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style-2.with_frm_style textarea:-ms-input-placeholder{color: #7c7c7c;}.frm_style_formidable-style-2.with_frm_style input:-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea:-moz-placeholder{color: #7c7c7c;}.frm_style_formidable-style-2.with_frm_style .frm_default,.frm_style_formidable-style-2.with_frm_style input.frm_default,.frm_style_formidable-style-2.with_frm_style textarea.frm_default,.frm_style_formidable-style-2.with_frm_style select.frm_default,.frm_style_formidable-style-2.with_frm_style .placeholder,.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-default{color: #7c7c7c;}.frm_style_formidable-style-2.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style-2.with_frm_style select:focus,.frm_style_formidable-style-2.with_frm_style textarea:focus,.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style-2.with_frm_style .frm_focus_field .frm-card-element.StripeElement,.frm_style_formidable-style-2.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style-2.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#acdb60;box-shadow:none;}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style-2.with_frm_style input[type=submit],.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style-2.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:'Noto Sans', sans-serif;font-size:16px;height:auto;line-height:normal;text-align:center;background:#dd0000;border-width:1px;border-color: #ba0000;border-style:solid;color:#ffffff;cursor:pointer;font-weight:normal;-moz-border-radius:0px;-webkit-border-radius:0px;border-radius:0px;text-shadow:none;padding:12px 17px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #ffffff;-webkit-box-shadow:0 1px 1px #ffffff;box-shadow:0 1px 1px #ffffff;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style-2.with_frm_style input[type=submit]:hover,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style-2.with_frm_style .frm_submit button:hover{background: #222222;border-color: #111111;color: #fefefe;}.frm_style_formidable-style-2.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style-2.with_frm_style input[type=submit]:focus,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style-2.with_frm_style .frm_submit button:focus,.frm_style_formidable-style-2.with_frm_style input[type=submit]:active,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style-2.with_frm_style .frm_submit button:active{background: #595959;border-color: #595959;color: #fefefe;}.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #dd0000;}.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #ffffff;border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:'Noto Sans', sans-serif;font-size:16px;color:#595959;font-weight:normal;margin:0;padding:0 5px 8px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style-2.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style-2.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style-2.with_frm_style a.frm_save_draft{font-family:'Noto Sans', sans-serif;font-size:16px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style #frm_field_cptch_number_container{font-family:'Noto Sans', sans-serif;font-size:16px;color:#595959;font-weight:normal;clear:both;}.frm_style_formidable-style-2.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style-2.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style-2.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style-2.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style-2.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style-2.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style-2.with_frm_style .frm_radio label,.frm_style_formidable-style-2.with_frm_style .frm_checkbox label{font-family:'Noto Sans', sans-serif;font-size:16px;color:#565656;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style-2.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 16px;position: static;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style-2.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style-2.with_frm_style .frm_form_field :invalid{color:#dd0000;background-color:#fff4f4;border-color:#dd0000;border-width:2px;border-style:solid;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field .sigWrapper{border-color:#dd0000 !important;}.frm_style_formidable-style-2.with_frm_style .frm_error{font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field label,.frm_style_formidable-style-2.with_frm_style .frm_error{color:#dd0000;}.frm_style_formidable-style-2.with_frm_style .frm_error_style{background-color:#dd0000;border:1px solid #ad0000;border-radius:0px;color: #efefef;font-size:16px;margin:0;margin-bottom:35px;}.frm_style_formidable-style-2.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#9dc13d;color:#444444;border-radius:0px;}.frm_style_formidable-style-2.with_frm_style .frm_message p{color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_message{margin:5px 0 15px;font-size:16px;}.frm_style_formidable-style-2.with_frm_style .frm-grid td,.frm-grid th{border-color:#e5e5e5;}.form_results.frm_style_formidable-style-2.with_frm_style{border:1px solid #e5e5e5;}.form_results.frm_style_formidable-style-2.with_frm_style tr td{color: #adadad;border-top:1px solid #e5e5e5;}.form_results.frm_style_formidable-style-2.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #e5e5e5 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #e5e5e5 50%, #e5e5e5 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style-2.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_grid,.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd{border-color:#e5e5e5;}.frm_style_formidable-style-2.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style-2.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#dd0000;border-color:#ad0000;}.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #e5e5e5;border-width:1px;border-style:solid;-moz-border-radius:0px;-webkit-border-radius:0px;border-radius:0px;width:100%;font-size:15px;padding:14px 18px;outline:none;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_total textarea{color: #adadad;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style-2.with_frm_style .frm_button{padding:12px 17px;-moz-border-radius:0px;-webkit-border-radius:0px;border-radius:0px;font-size:16px;font-family:'Noto Sans', sans-serif;font-weight:normal;color:#ffffff;background: #dd0000;border-width:1px;border-color: #ba0000;height:auto;}.frm_style_formidable-style-2.with_frm_style .frm_button .frm_icon_font:before{font-size:16px;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone{border-color: #e5e5e5;border-radius:0px;color: #adadad;background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-remove{color: #adadad;}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm_dropzone{border-color:#dd0000;color:#dd0000;background-color:#fff4f4;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #dd0000;}.frm_style_formidable-style-2.with_frm_style input[type=file]::-webkit-file-upload-button{color:#adadad;background-color:#ffffff;padding:14px 18px;border-radius:0px;border-color: #e5e5e5;border-width:1px;border-style:solid;}.frm_style_formidable-style-2.with_frm_style .chosen-container{font-size:15px;}.frm_style_formidable-style-2.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style-2.with_frm_style .chosen-container .chosen-results li span{color:#adadad;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:56px;line-height:56px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single abbr{top:13px ;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single div{top:7px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:56px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_formidable-style-2.with_frm_style .frm_page_bar input,.frm_style_formidable-style-2.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input.frm_page_back{background-color: #dd0000;}.frm_style_formidable-style-2.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style-2.with_frm_style .frm_current_page .frm_rootline_title{color: #dd0000;}.frm_style_formidable-style-2.with_frm_style .frm_rootline_title,.frm_style_formidable-style-2.with_frm_style .frm_pages_complete,.frm_style_formidable-style-2.with_frm_style .frm_percent_complete{color: #a3a3a3;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input,.frm_style_formidable-style-2.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #dd0000;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #dd0000;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input.frm_page_back {border-color: #dd0000;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #dd0000;border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 30px;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input,.frm_style_formidable-style-2.with_frm_style .frm_rootline input:hover {width: 60px;height: 60px;border-radius: 60px;padding: 0;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input:focus {border-color: #dd0000;}.frm_style_formidable-style-2.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #c90000;background-color: #dd0000;color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input,.frm_style_formidable-style-2.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style-2.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_formidable-style-2.with_frm_style .frm_range_value{font-size:16px;}.frm_style_formidable-style-2.with_frm_style .form-field input[type=range],.frm_style_formidable-style-2.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:0px;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(221,0,0,0.6);color:#ffffff;background-color: #dd0000;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(221,0,0,0.6);color:#ffffff;background-color: #dd0000;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(221,0,0,0.6);color:#ffffff;background-color: #dd0000;}.frm_style_formidable-style-2.with_frm_style .frm_switch_opt{font-size:16px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_on_label{color:#dd0000;}.frm_style_formidable-style-2.with_frm_style .frm_off_label{color:#565656;}.frm_style_formidable-style-2.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style-2.with_frm_style input:checked + .frm_slider {background-color:#dd0000;}.frm_style_formidable-style-2.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style-2.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style-2.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style-2.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style-2.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-verified::before {color:#444444;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-req::before {color:#efefef;}.frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px;margin:0;font-size:18px;font-family:'Noto Sans', sans-serif;font-weight:bold;color:#ffffff;border:none;border-bottom:0px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style-2.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style-2.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style-2.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style-2.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:40px;}.frm_style_formidable-style-2.with_frm_style .frm_repeat_sec{margin-bottom:35px;margin-top:35px;border-bottom:0px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_formidable-style-2.with_frm_style .frm_repeat_inline,.frm_style_formidable-style-2.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_formidable-style.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style.with_frm_style,.frm_style_formidable-style.with_frm_style form,.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_formidable-style.with_frm_style legend + h3,.frm_style_formidable-style.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=phone],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=radio],.frm_style_formidable-style.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=file],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style .frm-card-element.StripeElement{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_formidable-style.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .auto_width input,.frm_style_formidable-style.with_frm_style input.auto_width,.frm_style_formidable-style.with_frm_style select.auto_width,.frm_style_formidable-style.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style.with_frm_style input[disabled],.frm_style_formidable-style.with_frm_style select[disabled],.frm_style_formidable-style.with_frm_style textarea[disabled],.frm_style_formidable-style.with_frm_style input[readonly],.frm_style_formidable-style.with_frm_style select[readonly],.frm_style_formidable-style.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style.with_frm_style input::placeholder,.frm_style_formidable-style.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input::-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input:-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .frm_default,.frm_style_formidable-style.with_frm_style input.frm_default,.frm_style_formidable-style.with_frm_style textarea.frm_default,.frm_style_formidable-style.with_frm_style select.frm_default,.frm_style_formidable-style.with_frm_style .placeholder,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style.with_frm_style select:focus,.frm_style_formidable-style.with_frm_style textarea:focus,.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style.with_frm_style .frm_focus_field .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#429646;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(66,150,70, 0.6);}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style.with_frm_style input[type=submit],.frm_style_formidable-style.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color: #cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style .frm_submit button:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_formidable-style.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_radio label,.frm_style_formidable-style.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style.with_frm_style .frm_blank_field label,.frm_style_formidable-style.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_formidable-style.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_formidable-style.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_formidable-style.with_frm_style .frm_page_bar input,.frm_style_formidable-style.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline_title,.frm_style_formidable-style.with_frm_style .frm_pages_complete,.frm_style_formidable-style.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style.with_frm_style .frm_rootline input,.frm_style_formidable-style.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_formidable-style.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style.with_frm_style .form-field input[type=range],.frm_style_formidable-style.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_formidable-style.with_frm_style .frm_repeat_inline,.frm_style_formidable-style.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_left-labels.with_frm_style{max-width:100%;direction:ltr;}.frm_style_left-labels.with_frm_style,.frm_style_left-labels.with_frm_style form,.frm_style_left-labels.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_left-labels.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_left-labels.with_frm_style legend + h3,.frm_style_left-labels.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_left-labels.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_container,.frm_style_left-labels.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_left-labels.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_left-labels.with_frm_style .frm_icon_font{color:#444444;}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_left-labels.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_left-labels.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_left-labels.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_left-labels.with_frm_style .form-field{margin-bottom:20px;}.frm_style_left-labels.with_frm_style .frm_grid,.frm_style_left-labels.with_frm_style .frm_grid_first,.frm_style_left-labels.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_left-labels.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_left-labels.with_frm_style p.description,.frm_style_left-labels.with_frm_style div.description,.frm_style_left-labels.with_frm_style div.frm_description,.frm_style_left-labels.with_frm_style .frm-show-form > div.frm_description,.frm_style_left-labels.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_left-labels.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_left-labels.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_left-labels.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_left-labels.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_left-labels.with_frm_style .frm_none_container .frm_primary_label,.frm_style_left-labels.with_frm_style .frm_pos_none{display:none;}.frm_style_left-labels.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_left-labels.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_left-labels.with_frm_style input[type=text],.frm_style_left-labels.with_frm_style input[type=password],.frm_style_left-labels.with_frm_style input[type=email],.frm_style_left-labels.with_frm_style input[type=number],.frm_style_left-labels.with_frm_style input[type=url],.frm_style_left-labels.with_frm_style input[type=tel],.frm_style_left-labels.with_frm_style input[type=search],.frm_style_left-labels.with_frm_style select,.frm_style_left-labels.with_frm_style textarea,.frm_style_left-labels.with_frm_style .frm-card-element.StripeElement,.frm_style_left-labels.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_left-labels.with_frm_style textarea{vertical-align:top;}.frm_style_left-labels.with_frm_style input[type=text],.frm_style_left-labels.with_frm_style input[type=password],.frm_style_left-labels.with_frm_style input[type=email],.frm_style_left-labels.with_frm_style input[type=number],.frm_style_left-labels.with_frm_style input[type=url],.frm_style_left-labels.with_frm_style input[type=tel],.frm_style_left-labels.with_frm_style input[type=phone],.frm_style_left-labels.with_frm_style input[type=search],.frm_style_left-labels.with_frm_style select,.frm_style_left-labels.with_frm_style textarea,.frm_form_fields_style,.frm_style_left-labels.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_left-labels.with_frm_style .frm-card-element.StripeElement,.frm_style_left-labels.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_left-labels.with_frm_style input[type=radio],.frm_style_left-labels.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_left-labels.with_frm_style input[type=text],.frm_style_left-labels.with_frm_style input[type=password],.frm_style_left-labels.with_frm_style input[type=email],.frm_style_left-labels.with_frm_style input[type=number],.frm_style_left-labels.with_frm_style input[type=url],.frm_style_left-labels.with_frm_style input[type=tel],.frm_style_left-labels.with_frm_style input[type=file],.frm_style_left-labels.with_frm_style input[type=search],.frm_style_left-labels.with_frm_style select,.frm_style_left-labels.with_frm_style .frm-card-element.StripeElement{height:32px;line-height:1.3;}.frm_style_left-labels.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_left-labels.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_left-labels.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_left-labels.with_frm_style select{width:100%;max-width:100%;}.frm_style_left-labels.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_left-labels.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_left-labels.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_left-labels.with_frm_style .auto_width input,.frm_style_left-labels.with_frm_style input.auto_width,.frm_style_left-labels.with_frm_style select.auto_width,.frm_style_left-labels.with_frm_style textarea.auto_width{width:auto;}.frm_style_left-labels.with_frm_style input[disabled],.frm_style_left-labels.with_frm_style select[disabled],.frm_style_left-labels.with_frm_style textarea[disabled],.frm_style_left-labels.with_frm_style input[readonly],.frm_style_left-labels.with_frm_style select[readonly],.frm_style_left-labels.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_left-labels.with_frm_style input::placeholder,.frm_style_left-labels.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_left-labels.with_frm_style input::-webkit-input-placeholder,.frm_style_left-labels.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_left-labels.with_frm_style input::-moz-placeholder,.frm_style_left-labels.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_left-labels.with_frm_style input:-ms-input-placeholder,frm_style_left-labels.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_left-labels.with_frm_style input:-moz-placeholder,.frm_style_left-labels.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_left-labels.with_frm_style .frm_default,.frm_style_left-labels.with_frm_style input.frm_default,.frm_style_left-labels.with_frm_style textarea.frm_default,.frm_style_left-labels.with_frm_style select.frm_default,.frm_style_left-labels.with_frm_style .placeholder,.frm_style_left-labels.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_left-labels.with_frm_style .form-field input:not([type=file]):focus,.frm_style_left-labels.with_frm_style select:focus,.frm_style_left-labels.with_frm_style textarea:focus,.frm_style_left-labels.with_frm_style .frm_focus_field input[type=text],.frm_style_left-labels.with_frm_style .frm_focus_field input[type=password],.frm_style_left-labels.with_frm_style .frm_focus_field input[type=email],.frm_style_left-labels.with_frm_style .frm_focus_field input[type=number],.frm_style_left-labels.with_frm_style .frm_focus_field input[type=url],.frm_style_left-labels.with_frm_style .frm_focus_field input[type=tel],.frm_style_left-labels.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_left-labels.with_frm_style .frm_focus_field .frm-card-element.StripeElement,.frm_style_left-labels.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_left-labels.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_left-labels.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_left-labels.with_frm_style input[type=submit],.frm_style_left-labels.with_frm_style .frm_submit input[type=button],.frm_style_left-labels.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color: #cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_left-labels.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_left-labels.with_frm_style input[type=submit]:hover,.frm_style_left-labels.with_frm_style .frm_submit input[type=button]:hover,.frm_style_left-labels.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_left-labels.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_left-labels.with_frm_style input[type=submit]:focus,.frm_style_left-labels.with_frm_style .frm_submit input[type=button]:focus,.frm_style_left-labels.with_frm_style .frm_submit button:focus,.frm_style_left-labels.with_frm_style input[type=submit]:active,.frm_style_left-labels.with_frm_style .frm_submit input[type=button]:active,.frm_style_left-labels.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_left-labels.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_left-labels.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_left-labels.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_left-labels.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_left-labels.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_left-labels.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_left-labels.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_left-labels.with_frm_style.frm_inline_form .frm_submit input,.frm_style_left-labels.with_frm_style.frm_inline_form .frm_submit button,.frm_style_left-labels.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_left-labels.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_left-labels.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_left-labels.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_left-labels.with_frm_style .frm_radio{display:block;}.frm_style_left-labels.with_frm_style .frm_checkbox{display:block;}.frm_style_left-labels.with_frm_style .vertical_radio .frm_checkbox,.frm_style_left-labels.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_left-labels.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_left-labels.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_left-labels.with_frm_style .frm_radio label,.frm_style_left-labels.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_left-labels.with_frm_style .frm_radio input[type=radio],.frm_style_left-labels.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_left-labels.with_frm_style .frm_blank_field input[type=text],.frm_style_left-labels.with_frm_style .frm_blank_field input[type=password],.frm_style_left-labels.with_frm_style .frm_blank_field input[type=url],.frm_style_left-labels.with_frm_style .frm_blank_field input[type=tel],.frm_style_left-labels.with_frm_style .frm_blank_field input[type=number],.frm_style_left-labels.with_frm_style .frm_blank_field input[type=email],.frm_style_left-labels.with_frm_style .frm_blank_field textarea,.frm_style_left-labels.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_left-labels.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_left-labels.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_left-labels.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_left-labels.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_left-labels.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_left-labels.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_left-labels.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_left-labels.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_left-labels.with_frm_style .frm_error{font-weight:bold;}.frm_style_left-labels.with_frm_style .frm_blank_field label,.frm_style_left-labels.with_frm_style .frm_error{color:#B94A48;}.frm_style_left-labels.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_left-labels.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_left-labels.with_frm_style .frm_message p{color:#468847;}.frm_style_left-labels.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_left-labels.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_left-labels.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_left-labels.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_left-labels.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_left-labels.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_left-labels.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_grid,.frm_style_left-labels.with_frm_style .frm_grid_first,.frm_style_left-labels.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_left-labels.with_frm_style .frm_grid.frm_blank_field,.frm_style_left-labels.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_left-labels.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_left-labels.with_frm_style .frm_grid_first,.frm_style_left-labels.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_total input,.frm_style_left-labels.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_left-labels.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_left-labels.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_left-labels.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_left-labels.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_left-labels.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_left-labels.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_left-labels.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_left-labels.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_left-labels.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_left-labels.with_frm_style .chosen-container{font-size:14px;}.frm_style_left-labels.with_frm_style .chosen-container .chosen-results li,.frm_style_left-labels.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_left-labels.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_left-labels.with_frm_style .frm_page_bar input,.frm_style_left-labels.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_left-labels.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_left-labels.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_rootline_title,.frm_style_left-labels.with_frm_style .frm_pages_complete,.frm_style_left-labels.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_left-labels.with_frm_style .frm_progress_line input,.frm_style_left-labels.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_left-labels.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_left-labels.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_left-labels.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_left-labels.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_left-labels.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_left-labels.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_left-labels.with_frm_style .frm_rootline input,.frm_style_left-labels.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_left-labels.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_left-labels.with_frm_style .frm_progress_line input,.frm_style_left-labels.with_frm_style .frm_progress_line input:disabled,.frm_style_left-labels.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_left-labels.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_left-labels.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_left-labels.with_frm_style .frm_range_value{font-size:14px;}.frm_style_left-labels.with_frm_style .form-field input[type=range],.frm_style_left-labels.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_left-labels.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_left-labels.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_left-labels.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_left-labels.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_left-labels.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_left-labels.with_frm_style .frm_off_label{color:#444444;}.frm_style_left-labels.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_left-labels.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_left-labels.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_left-labels.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_left-labels.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_left-labels.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_left-labels.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_left-labels.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_left-labels.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_left-labels.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_left-labels.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_left-labels.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_left-labels.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_left-labels.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_left-labels.with_frm_style .frm_repeat_inline,.frm_style_left-labels.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_lines.with_frm_style{max-width:100%;direction:ltr;}.frm_style_lines.with_frm_style,.frm_style_lines.with_frm_style form,.frm_style_lines.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_lines.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_lines.with_frm_style legend + h3,.frm_style_lines.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_lines.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#444444;font-weight:normal;text-align:left;margin:0;padding:0;width:auto;display:block;}.frm_style_lines.with_frm_style .frm_form_field.frm_html_container,.frm_style_lines.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_lines.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_lines.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_lines.with_frm_style .frm_icon_font{color:#444444;}.frm_style_lines.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_lines.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_lines.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_lines.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_lines.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_lines.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_lines.with_frm_style .form-field{margin-bottom:20px;}.frm_style_lines.with_frm_style .frm_grid,.frm_style_lines.with_frm_style .frm_grid_first,.frm_style_lines.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_lines.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_lines.with_frm_style p.description,.frm_style_lines.with_frm_style div.description,.frm_style_lines.with_frm_style div.frm_description,.frm_style_lines.with_frm_style .frm-show-form > div.frm_description,.frm_style_lines.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_lines.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_lines.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_lines.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_lines.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_lines.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_lines.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_lines.with_frm_style .frm_none_container .frm_primary_label,.frm_style_lines.with_frm_style .frm_pos_none{display:none;}.frm_style_lines.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_lines.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_lines.with_frm_style input[type=text],.frm_style_lines.with_frm_style input[type=password],.frm_style_lines.with_frm_style input[type=email],.frm_style_lines.with_frm_style input[type=number],.frm_style_lines.with_frm_style input[type=url],.frm_style_lines.with_frm_style input[type=tel],.frm_style_lines.with_frm_style input[type=search],.frm_style_lines.with_frm_style select,.frm_style_lines.with_frm_style textarea,.frm_style_lines.with_frm_style .frm-card-element.StripeElement,.frm_style_lines.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_lines.with_frm_style textarea{vertical-align:top;}.frm_style_lines.with_frm_style input[type=text],.frm_style_lines.with_frm_style input[type=password],.frm_style_lines.with_frm_style input[type=email],.frm_style_lines.with_frm_style input[type=number],.frm_style_lines.with_frm_style input[type=url],.frm_style_lines.with_frm_style input[type=tel],.frm_style_lines.with_frm_style input[type=phone],.frm_style_lines.with_frm_style input[type=search],.frm_style_lines.with_frm_style select,.frm_style_lines.with_frm_style textarea,.frm_form_fields_style,.frm_style_lines.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_lines.with_frm_style .frm-card-element.StripeElement,.frm_style_lines.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_lines.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:0 0 1px;border-style:solid;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;width:100%;max-width:100%;font-size:14px;padding:3px 0px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:none;}.frm_style_lines.with_frm_style input[type=radio],.frm_style_lines.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:none;}.frm_style_lines.with_frm_style input[type=text],.frm_style_lines.with_frm_style input[type=password],.frm_style_lines.with_frm_style input[type=email],.frm_style_lines.with_frm_style input[type=number],.frm_style_lines.with_frm_style input[type=url],.frm_style_lines.with_frm_style input[type=tel],.frm_style_lines.with_frm_style input[type=file],.frm_style_lines.with_frm_style input[type=search],.frm_style_lines.with_frm_style select,.frm_style_lines.with_frm_style .frm-card-element.StripeElement{height:32px;line-height:1.3;}.frm_style_lines.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_lines.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_lines.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_lines.with_frm_style select{width:100%;max-width:100%;}.frm_style_lines.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_lines.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_lines.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_lines.with_frm_style .auto_width input,.frm_style_lines.with_frm_style input.auto_width,.frm_style_lines.with_frm_style select.auto_width,.frm_style_lines.with_frm_style textarea.auto_width{width:auto;}.frm_style_lines.with_frm_style input[disabled],.frm_style_lines.with_frm_style select[disabled],.frm_style_lines.with_frm_style textarea[disabled],.frm_style_lines.with_frm_style input[readonly],.frm_style_lines.with_frm_style select[readonly],.frm_style_lines.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_lines.with_frm_style input::placeholder,.frm_style_lines.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_lines.with_frm_style input::-webkit-input-placeholder,.frm_style_lines.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_lines.with_frm_style input::-moz-placeholder,.frm_style_lines.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_lines.with_frm_style input:-ms-input-placeholder,frm_style_lines.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_lines.with_frm_style input:-moz-placeholder,.frm_style_lines.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_lines.with_frm_style .frm_default,.frm_style_lines.with_frm_style input.frm_default,.frm_style_lines.with_frm_style textarea.frm_default,.frm_style_lines.with_frm_style select.frm_default,.frm_style_lines.with_frm_style .placeholder,.frm_style_lines.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_lines.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_lines.with_frm_style .form-field input:not([type=file]):focus,.frm_style_lines.with_frm_style select:focus,.frm_style_lines.with_frm_style textarea:focus,.frm_style_lines.with_frm_style .frm_focus_field input[type=text],.frm_style_lines.with_frm_style .frm_focus_field input[type=password],.frm_style_lines.with_frm_style .frm_focus_field input[type=email],.frm_style_lines.with_frm_style .frm_focus_field input[type=number],.frm_style_lines.with_frm_style .frm_focus_field input[type=url],.frm_style_lines.with_frm_style .frm_focus_field input[type=tel],.frm_style_lines.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_lines.with_frm_style .frm_focus_field .frm-card-element.StripeElement,.frm_style_lines.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_lines.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:none;}.frm_style_lines.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_lines.with_frm_style input[type=submit],.frm_style_lines.with_frm_style .frm_submit input[type=button],.frm_style_lines.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color: #cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_lines.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_lines.with_frm_style input[type=submit]:hover,.frm_style_lines.with_frm_style .frm_submit input[type=button]:hover,.frm_style_lines.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_lines.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_lines.with_frm_style input[type=submit]:focus,.frm_style_lines.with_frm_style .frm_submit input[type=button]:focus,.frm_style_lines.with_frm_style .frm_submit button:focus,.frm_style_lines.with_frm_style input[type=submit]:active,.frm_style_lines.with_frm_style .frm_submit input[type=button]:active,.frm_style_lines.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_lines.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_lines.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_lines.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_lines.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_lines.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_lines.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_lines.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#444444;font-weight:normal;margin:0;padding:0;width:auto;display:block;visibility:hidden;}.frm_style_lines.with_frm_style.frm_inline_form .frm_submit input,.frm_style_lines.with_frm_style.frm_inline_form .frm_submit button,.frm_style_lines.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_lines.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_lines.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_lines.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#444444;font-weight:normal;clear:both;}.frm_style_lines.with_frm_style .frm_radio{display:inline;}.frm_style_lines.with_frm_style .frm_checkbox{display:block;}.frm_style_lines.with_frm_style .vertical_radio .frm_checkbox,.frm_style_lines.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_lines.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_lines.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_lines.with_frm_style .frm_radio label,.frm_style_lines.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_lines.with_frm_style .frm_radio input[type=radio],.frm_style_lines.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_lines.with_frm_style .frm_blank_field input[type=text],.frm_style_lines.with_frm_style .frm_blank_field input[type=password],.frm_style_lines.with_frm_style .frm_blank_field input[type=url],.frm_style_lines.with_frm_style .frm_blank_field input[type=tel],.frm_style_lines.with_frm_style .frm_blank_field input[type=number],.frm_style_lines.with_frm_style .frm_blank_field input[type=email],.frm_style_lines.with_frm_style .frm_blank_field textarea,.frm_style_lines.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_lines.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_lines.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_lines.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_lines.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_lines.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_lines.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_lines.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:0 0 1px;border-style:solid;}.frm_style_lines.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_lines.with_frm_style .frm_error{font-weight:normal;}.frm_style_lines.with_frm_style .frm_blank_field label,.frm_style_lines.with_frm_style .frm_error{color:#B94A48;}.frm_style_lines.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:0;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_lines.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:0;}.frm_style_lines.with_frm_style .frm_message p{color:#468847;}.frm_style_lines.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_lines.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_lines.with_frm_style{border:0 0 1px solid #cccccc;}.form_results.frm_style_lines.with_frm_style tr td{color: #555555;border-top:0 0 1px solid #cccccc;}.form_results.frm_style_lines.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_lines.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_lines.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_grid,.frm_style_lines.with_frm_style .frm_grid_first,.frm_style_lines.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_lines.with_frm_style .frm_grid.frm_blank_field,.frm_style_lines.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_lines.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_lines.with_frm_style .frm_grid_first,.frm_style_lines.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_lines.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:0 0 1px;border-style:solid;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;width:100%;font-size:14px;padding:3px 0px;outline:none;}.frm_style_lines.with_frm_style .frm_form_field.frm_total input,.frm_style_lines.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_lines.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_lines.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_lines.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:0;color: #555555;background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_lines.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_lines.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_lines.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_lines.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_lines.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_lines.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:3px 0px;border-radius:0;border-color: #cccccc;border-width:0 0 1px;border-style:solid;}.frm_style_lines.with_frm_style .chosen-container{font-size:14px;}.frm_style_lines.with_frm_style .chosen-container .chosen-results li,.frm_style_lines.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-single abbr{top:7px ;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-single div{top:1.5px;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_lines.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_lines.with_frm_style .frm_page_bar input,.frm_style_lines.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_lines.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_lines.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_lines.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_lines.with_frm_style .frm_rootline_title,.frm_style_lines.with_frm_style .frm_pages_complete,.frm_style_lines.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_lines.with_frm_style .frm_progress_line input,.frm_style_lines.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_lines.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_lines.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_lines.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_lines.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_lines.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_lines.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_lines.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_lines.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_lines.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_lines.with_frm_style .frm_rootline input,.frm_style_lines.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_lines.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_lines.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_lines.with_frm_style .frm_progress_line input,.frm_style_lines.with_frm_style .frm_progress_line input:disabled,.frm_style_lines.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_lines.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_lines.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_lines.with_frm_style .frm_range_value{font-size:14px;}.frm_style_lines.with_frm_style .form-field input[type=range],.frm_style_lines.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_lines.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:0;}.frm_style_lines.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_lines.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_lines.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_lines.with_frm_style .frm_switch_opt{font-size:12px;font-weight:normal;}.frm_style_lines.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_lines.with_frm_style .frm_off_label{color:#444444;}.frm_style_lines.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_lines.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_lines.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_lines.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_lines.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_lines.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_lines.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_lines.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_lines.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_lines.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_lines.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_lines.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_lines.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_lines.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_lines.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_lines.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_lines.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_lines.with_frm_style .frm_repeat_inline,.frm_style_lines.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_rtl.with_frm_style{max-width:100%;direction:rtl;unicode-bidi:embed;}.frm_style_rtl.with_frm_style,.frm_style_rtl.with_frm_style form,.frm_style_rtl.with_frm_style .frm-show-form div.frm_description p {text-align:right;}.frm_style_rtl.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_rtl.with_frm_style legend + h3,.frm_style_rtl.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_rtl.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:right;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_rtl.with_frm_style .frm_form_field.frm_html_container,.frm_style_rtl.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_rtl.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_rtl.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_rtl.with_frm_style .frm_icon_font{color:#444444;}.frm_style_rtl.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_rtl.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_rtl.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_rtl.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_rtl.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_rtl.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_rtl.with_frm_style .form-field{margin-bottom:20px;}.frm_style_rtl.with_frm_style .frm_grid,.frm_style_rtl.with_frm_style .frm_grid_first,.frm_style_rtl.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_rtl.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_rtl.with_frm_style p.description,.frm_style_rtl.with_frm_style div.description,.frm_style_rtl.with_frm_style div.frm_description,.frm_style_rtl.with_frm_style .frm-show-form > div.frm_description,.frm_style_rtl.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_rtl.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_rtl.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_rtl.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_rtl.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_rtl.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_rtl.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_rtl.with_frm_style .frm_none_container .frm_primary_label,.frm_style_rtl.with_frm_style .frm_pos_none{display:none;}.frm_style_rtl.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_rtl.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_rtl.with_frm_style input[type=text],.frm_style_rtl.with_frm_style input[type=password],.frm_style_rtl.with_frm_style input[type=email],.frm_style_rtl.with_frm_style input[type=number],.frm_style_rtl.with_frm_style input[type=url],.frm_style_rtl.with_frm_style input[type=tel],.frm_style_rtl.with_frm_style input[type=search],.frm_style_rtl.with_frm_style select,.frm_style_rtl.with_frm_style textarea,.frm_style_rtl.with_frm_style .frm-card-element.StripeElement,.frm_style_rtl.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_rtl.with_frm_style textarea{vertical-align:top;}.frm_style_rtl.with_frm_style input[type=text],.frm_style_rtl.with_frm_style input[type=password],.frm_style_rtl.with_frm_style input[type=email],.frm_style_rtl.with_frm_style input[type=number],.frm_style_rtl.with_frm_style input[type=url],.frm_style_rtl.with_frm_style input[type=tel],.frm_style_rtl.with_frm_style input[type=phone],.frm_style_rtl.with_frm_style input[type=search],.frm_style_rtl.with_frm_style select,.frm_style_rtl.with_frm_style textarea,.frm_form_fields_style,.frm_style_rtl.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_rtl.with_frm_style .frm-card-element.StripeElement,.frm_style_rtl.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_rtl.with_frm_style input[type=radio],.frm_style_rtl.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_rtl.with_frm_style input[type=text],.frm_style_rtl.with_frm_style input[type=password],.frm_style_rtl.with_frm_style input[type=email],.frm_style_rtl.with_frm_style input[type=number],.frm_style_rtl.with_frm_style input[type=url],.frm_style_rtl.with_frm_style input[type=tel],.frm_style_rtl.with_frm_style input[type=file],.frm_style_rtl.with_frm_style input[type=search],.frm_style_rtl.with_frm_style select,.frm_style_rtl.with_frm_style .frm-card-element.StripeElement{height:32px;line-height:1.3;}.frm_style_rtl.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_rtl.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_rtl.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_rtl.with_frm_style select{width:100%;max-width:100%;}.frm_style_rtl.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_rtl.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_rtl.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_rtl.with_frm_style .auto_width input,.frm_style_rtl.with_frm_style input.auto_width,.frm_style_rtl.with_frm_style select.auto_width,.frm_style_rtl.with_frm_style textarea.auto_width{width:auto;}.frm_style_rtl.with_frm_style input[disabled],.frm_style_rtl.with_frm_style select[disabled],.frm_style_rtl.with_frm_style textarea[disabled],.frm_style_rtl.with_frm_style input[readonly],.frm_style_rtl.with_frm_style select[readonly],.frm_style_rtl.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_rtl.with_frm_style input::placeholder,.frm_style_rtl.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_rtl.with_frm_style input::-webkit-input-placeholder,.frm_style_rtl.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_rtl.with_frm_style input::-moz-placeholder,.frm_style_rtl.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_rtl.with_frm_style input:-ms-input-placeholder,frm_style_rtl.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_rtl.with_frm_style input:-moz-placeholder,.frm_style_rtl.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_rtl.with_frm_style .frm_default,.frm_style_rtl.with_frm_style input.frm_default,.frm_style_rtl.with_frm_style textarea.frm_default,.frm_style_rtl.with_frm_style select.frm_default,.frm_style_rtl.with_frm_style .placeholder,.frm_style_rtl.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_rtl.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_rtl.with_frm_style .form-field input:not([type=file]):focus,.frm_style_rtl.with_frm_style select:focus,.frm_style_rtl.with_frm_style textarea:focus,.frm_style_rtl.with_frm_style .frm_focus_field input[type=text],.frm_style_rtl.with_frm_style .frm_focus_field input[type=password],.frm_style_rtl.with_frm_style .frm_focus_field input[type=email],.frm_style_rtl.with_frm_style .frm_focus_field input[type=number],.frm_style_rtl.with_frm_style .frm_focus_field input[type=url],.frm_style_rtl.with_frm_style .frm_focus_field input[type=tel],.frm_style_rtl.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_rtl.with_frm_style .frm_focus_field .frm-card-element.StripeElement,.frm_style_rtl.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_rtl.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_rtl.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_rtl.with_frm_style input[type=submit],.frm_style_rtl.with_frm_style .frm_submit input[type=button],.frm_style_rtl.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color: #cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_rtl.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_rtl.with_frm_style input[type=submit]:hover,.frm_style_rtl.with_frm_style .frm_submit input[type=button]:hover,.frm_style_rtl.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_rtl.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_rtl.with_frm_style input[type=submit]:focus,.frm_style_rtl.with_frm_style .frm_submit input[type=button]:focus,.frm_style_rtl.with_frm_style .frm_submit button:focus,.frm_style_rtl.with_frm_style input[type=submit]:active,.frm_style_rtl.with_frm_style .frm_submit input[type=button]:active,.frm_style_rtl.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_rtl.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_rtl.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_rtl.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_rtl.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_rtl.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_rtl.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_rtl.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_rtl.with_frm_style.frm_inline_form .frm_submit input,.frm_style_rtl.with_frm_style.frm_inline_form .frm_submit button,.frm_style_rtl.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_rtl.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_rtl.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_rtl.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_rtl.with_frm_style .frm_radio{display:block;}.frm_style_rtl.with_frm_style .frm_checkbox{display:block;}.frm_style_rtl.with_frm_style .vertical_radio .frm_checkbox,.frm_style_rtl.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_rtl.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_rtl.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_rtl.with_frm_style .frm_radio label,.frm_style_rtl.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_rtl.with_frm_style .frm_radio input[type=radio],.frm_style_rtl.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_rtl.with_frm_style .frm_blank_field input[type=text],.frm_style_rtl.with_frm_style .frm_blank_field input[type=password],.frm_style_rtl.with_frm_style .frm_blank_field input[type=url],.frm_style_rtl.with_frm_style .frm_blank_field input[type=tel],.frm_style_rtl.with_frm_style .frm_blank_field input[type=number],.frm_style_rtl.with_frm_style .frm_blank_field input[type=email],.frm_style_rtl.with_frm_style .frm_blank_field textarea,.frm_style_rtl.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_rtl.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_rtl.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_rtl.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_rtl.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_rtl.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_rtl.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_rtl.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_rtl.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_rtl.with_frm_style .frm_error{font-weight:bold;}.frm_style_rtl.with_frm_style .frm_blank_field label,.frm_style_rtl.with_frm_style .frm_error{color:#B94A48;}.frm_style_rtl.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_rtl.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_rtl.with_frm_style .frm_message p{color:#468847;}.frm_style_rtl.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_rtl.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_rtl.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_rtl.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_rtl.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_rtl.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_rtl.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_grid,.frm_style_rtl.with_frm_style .frm_grid_first,.frm_style_rtl.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_rtl.with_frm_style .frm_grid.frm_blank_field,.frm_style_rtl.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_rtl.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_rtl.with_frm_style .frm_grid_first,.frm_style_rtl.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_rtl.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_rtl.with_frm_style .frm_form_field.frm_total input,.frm_style_rtl.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_rtl.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_rtl.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_rtl.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_rtl.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_rtl.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_rtl.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_rtl.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_rtl.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_rtl.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_rtl.with_frm_style .chosen-container{font-size:14px;}.frm_style_rtl.with_frm_style .chosen-container .chosen-results li,.frm_style_rtl.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_rtl.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_rtl.with_frm_style .frm_page_bar input,.frm_style_rtl.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_rtl.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_rtl.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_rtl.with_frm_style .frm_rootline_title,.frm_style_rtl.with_frm_style .frm_pages_complete,.frm_style_rtl.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_rtl.with_frm_style .frm_progress_line input,.frm_style_rtl.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_rtl.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_rtl.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_rtl.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_rtl.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_rtl.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_rtl.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_rtl.with_frm_style .frm_rootline input,.frm_style_rtl.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_rtl.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_rtl.with_frm_style .frm_progress_line input,.frm_style_rtl.with_frm_style .frm_progress_line input:disabled,.frm_style_rtl.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_rtl.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_rtl.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_rtl.with_frm_style .frm_range_value{font-size:14px;}.frm_style_rtl.with_frm_style .form-field input[type=range],.frm_style_rtl.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_rtl.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_rtl.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_rtl.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_rtl.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_rtl.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_rtl.with_frm_style .frm_off_label{color:#444444;}.frm_style_rtl.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_rtl.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_rtl.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_rtl.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_rtl.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_rtl.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_rtl.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_rtl.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_rtl.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_rtl.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_rtl.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_rtl.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_rtl.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_rtl.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_rtl.with_frm_style .frm_repeat_inline,.frm_style_rtl.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_true-blue.with_frm_style{max-width:80% !important;direction:ltr !important;margin:0 auto;}.frm_style_true-blue.with_frm_style,.frm_style_true-blue.with_frm_style form,.frm_style_true-blue.with_frm_style .frm-show-form div.frm_description p {text-align:left !important;}.frm_inline_form.frm_style_true-blue.with_frm_style form{text-align:center;}.frm_style_true-blue.with_frm_style .frm_form_fields > fieldset{border-width:9px !important;border-style:solid;border-color:#14568a !important;margin:0;padding:10px 25px 5px 25px !important;background-color:#6fa3e7;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_true-blue.with_frm_style legend + h3,.frm_style_true-blue.with_frm_style h3.frm_form_title{font-size:20px !important;color:#fff !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px !important;margin-bottom:10px !important;}.frm_style_true-blue.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#fff !important;font-weight:bold !important;text-align:left !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_container,.frm_style_true-blue.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_container{font-size:14px !important;}.frm_style_true-blue.with_frm_style .frm_form_field .frm_show_it{font-size:14px !important;font-weight:normal;}.frm_style_true-blue.with_frm_style .frm_icon_font{color:#fff !important;}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e633";}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e632";}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_true-blue.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff !important;vertical-align:middle;}.frm_style_true-blue.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e60e";color:#fff !important;}.frm_style_true-blue.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e60c";color:#fff !important;}.frm_style_true-blue.with_frm_style .form-field{margin-bottom:20px !important;}.frm_style_true-blue.with_frm_style .frm_grid,.frm_style_true-blue.with_frm_style .frm_grid_first,.frm_style_true-blue.with_frm_style .frm_grid_odd {margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style .form-field.frm_section_heading{margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style p.description,.frm_style_true-blue.with_frm_style div.description,.frm_style_true-blue.with_frm_style div.frm_description,.frm_style_true-blue.with_frm_style .frm-show-form > div.frm_description,.frm_style_true-blue.with_frm_style .frm_error{margin:0 !important;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:12px !important;color:#ffffff !important;font-weight:normal !important;text-align:left !important;font-style:normal !important;max-width:100%;}.frm_style_true-blue.with_frm_style .frm-show-form div.frm_description p{font-size:14px !important;color:#ffffff !important;margin-top:10px !important;margin-bottom:25px !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_true-blue.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_true-blue.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.frm_style_true-blue.with_frm_style .frm_pos_right{display:inline !important;width:150px !important;}.frm_style_true-blue.with_frm_style .frm_none_container .frm_primary_label,.frm_style_true-blue.with_frm_style .frm_pos_none{display:none !important;}.frm_style_true-blue.with_frm_style .frm_scale label{font-weight:normal !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_required{color:#fff !important;font-weight:bold !important;}.frm_style_true-blue.with_frm_style input[type=text],.frm_style_true-blue.with_frm_style input[type=password],.frm_style_true-blue.with_frm_style input[type=email],.frm_style_true-blue.with_frm_style input[type=number],.frm_style_true-blue.with_frm_style input[type=url],.frm_style_true-blue.with_frm_style input[type=tel],.frm_style_true-blue.with_frm_style input[type=search],.frm_style_true-blue.with_frm_style select,.frm_style_true-blue.with_frm_style textarea,.frm_style_true-blue.with_frm_style .frm-card-element.StripeElement,.frm_style_true-blue.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:14px;margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style textarea{vertical-align:top;}.frm_style_true-blue.with_frm_style input[type=text],.frm_style_true-blue.with_frm_style input[type=password],.frm_style_true-blue.with_frm_style input[type=email],.frm_style_true-blue.with_frm_style input[type=number],.frm_style_true-blue.with_frm_style input[type=url],.frm_style_true-blue.with_frm_style input[type=tel],.frm_style_true-blue.with_frm_style input[type=phone],.frm_style_true-blue.with_frm_style input[type=search],.frm_style_true-blue.with_frm_style select,.frm_style_true-blue.with_frm_style textarea,.frm_form_fields_style,.frm_style_true-blue.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_true-blue.with_frm_style .frm-card-element.StripeElement,.frm_style_true-blue.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single{color:#14568a !important;background-color:#ffffff !important;background-image:none !important;border-color: #093b63 !important;border-width:2px !important;border-style:solid !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;max-width:100%;font-size:14px !important;padding:6px 10px !important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none !important;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset !important;}.frm_style_true-blue.with_frm_style input[type=radio],.frm_style_true-blue.with_frm_style input[type=checkbox]{border-color: #093b63 !important;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset !important;}.frm_style_true-blue.with_frm_style input[type=text],.frm_style_true-blue.with_frm_style input[type=password],.frm_style_true-blue.with_frm_style input[type=email],.frm_style_true-blue.with_frm_style input[type=number],.frm_style_true-blue.with_frm_style input[type=url],.frm_style_true-blue.with_frm_style input[type=tel],.frm_style_true-blue.with_frm_style input[type=file],.frm_style_true-blue.with_frm_style input[type=search],.frm_style_true-blue.with_frm_style select,.frm_style_true-blue.with_frm_style .frm-card-element.StripeElement{height:32px !important;line-height:1.3 !important;}.frm_style_true-blue.with_frm_style select[multiple="multiple"]{height:auto !important;}.frm_style_true-blue.with_frm_style input[type=file]{color: #14568a !important;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:14px !important;}.frm_style_true-blue.with_frm_style input[type=file].frm_transparent{color:transparent !important;}.frm_style_true-blue.with_frm_style select{width:100% !important;max-width:100%;}.frm_style_true-blue.with_frm_style .wp-editor-wrap{width:100% !important;max-width:100%;}.frm_style_true-blue.with_frm_style .wp-editor-container textarea{border:none !important;}.frm_style_true-blue.with_frm_style .mceIframeContainer{background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .auto_width input,.frm_style_true-blue.with_frm_style input.auto_width,.frm_style_true-blue.with_frm_style select.auto_width,.frm_style_true-blue.with_frm_style textarea.auto_width{width:auto !important;}.frm_style_true-blue.with_frm_style input[disabled],.frm_style_true-blue.with_frm_style select[disabled],.frm_style_true-blue.with_frm_style textarea[disabled],.frm_style_true-blue.with_frm_style input[readonly],.frm_style_true-blue.with_frm_style select[readonly],.frm_style_true-blue.with_frm_style textarea[readonly]{background-color:#ffffff !important;color:#A1A1A1 !important;border-color:#093b63 !important;}.frm_style_true-blue.with_frm_style input::placeholder,.frm_style_true-blue.with_frm_style textarea::placeholder{color: #A1A1A1 !important;}.frm_style_true-blue.with_frm_style input::-webkit-input-placeholder,.frm_style_true-blue.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1 !important;}.frm_style_true-blue.with_frm_style input::-moz-placeholder,.frm_style_true-blue.with_frm_style textarea::-moz-placeholder{color: #A1A1A1 !important;}.frm_style_true-blue.with_frm_style input:-ms-input-placeholder,frm_style_true-blue.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1 !important;}.frm_style_true-blue.with_frm_style input:-moz-placeholder,.frm_style_true-blue.with_frm_style textarea:-moz-placeholder{color: #A1A1A1 !important;}.frm_style_true-blue.with_frm_style .frm_default,.frm_style_true-blue.with_frm_style input.frm_default,.frm_style_true-blue.with_frm_style textarea.frm_default,.frm_style_true-blue.with_frm_style select.frm_default,.frm_style_true-blue.with_frm_style .placeholder,.frm_style_true-blue.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1 !important;}.frm_style_true-blue.with_frm_style .form-field input:not([type=file]):focus,.frm_style_true-blue.with_frm_style select:focus,.frm_style_true-blue.with_frm_style textarea:focus,.frm_style_true-blue.with_frm_style .frm_focus_field input[type=text],.frm_style_true-blue.with_frm_style .frm_focus_field input[type=password],.frm_style_true-blue.with_frm_style .frm_focus_field input[type=email],.frm_style_true-blue.with_frm_style .frm_focus_field input[type=number],.frm_style_true-blue.with_frm_style .frm_focus_field input[type=url],.frm_style_true-blue.with_frm_style .frm_focus_field input[type=tel],.frm_style_true-blue.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_true-blue.with_frm_style .frm_focus_field .frm-card-element.StripeElement,.frm_style_true-blue.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_true-blue.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff !important;border-color:#093b63 !important;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(9,59,99, 0.6);}.frm_style_true-blue.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_true-blue.with_frm_style input[type=submit],.frm_style_true-blue.with_frm_style .frm_submit input[type=button],.frm_style_true-blue.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;height:auto !important;line-height:normal !important;text-align:center;background:#14568a !important;border-width:2px;border-color: #093b63 !important;border-style:solid;color:#ffffff !important;cursor:pointer;font-weight:normal !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;text-shadow:none;padding:6px 11px !important;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_true-blue.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_true-blue.with_frm_style input[type=submit]:hover,.frm_style_true-blue.with_frm_style .frm_submit input[type=button]:hover,.frm_style_true-blue.with_frm_style .frm_submit button:hover{background: #1a6199 !important;border-color: #093b63 !important;color: #ffffff !important;}.frm_style_true-blue.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_true-blue.with_frm_style input[type=submit]:focus,.frm_style_true-blue.with_frm_style .frm_submit input[type=button]:focus,.frm_style_true-blue.with_frm_style .frm_submit button:focus,.frm_style_true-blue.with_frm_style input[type=submit]:active,.frm_style_true-blue.with_frm_style .frm_submit input[type=button]:active,.frm_style_true-blue.with_frm_style .frm_submit button:active{background: #093b63 !important;border-color: #14568a !important;color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_true-blue.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_true-blue.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_true-blue.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent !important;background: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #ffffff !important;border-right-color: #ffffff !important;}.frm_style_true-blue.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_true-blue.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#fff !important;font-weight:bold !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;visibility:hidden;}.frm_style_true-blue.with_frm_style.frm_inline_form .frm_submit input,.frm_style_true-blue.with_frm_style.frm_inline_form .frm_submit button,.frm_style_true-blue.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_true-blue.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_true-blue.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_true-blue.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#fff !important;font-weight:bold !important;clear:both;}.frm_style_true-blue.with_frm_style .frm_radio{display:block !important;}.frm_style_true-blue.with_frm_style .frm_checkbox{display:block !important;}.frm_style_true-blue.with_frm_style .vertical_radio .frm_checkbox,.frm_style_true-blue.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block !important;}.frm_style_true-blue.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_true-blue.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block !important;}.frm_style_true-blue.with_frm_style .frm_radio label,.frm_style_true-blue.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#ffffff !important;font-weight:normal !important;}.frm_style_true-blue.with_frm_style .frm_radio input[type=radio],.frm_style_true-blue.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px !important;position: static !important;}.frm_style_true-blue.with_frm_style .frm_blank_field input[type=text],.frm_style_true-blue.with_frm_style .frm_blank_field input[type=password],.frm_style_true-blue.with_frm_style .frm_blank_field input[type=url],.frm_style_true-blue.with_frm_style .frm_blank_field input[type=tel],.frm_style_true-blue.with_frm_style .frm_blank_field input[type=number],.frm_style_true-blue.with_frm_style .frm_blank_field input[type=email],.frm_style_true-blue.with_frm_style .frm_blank_field textarea,.frm_style_true-blue.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_true-blue.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_true-blue.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_true-blue.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_true-blue.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_true-blue.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_true-blue.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_true-blue.with_frm_style .frm_form_field :invalid{color:#14568a !important;background-color:#ffffff !important;border-color:#B94A48 !important;border-width:2px !important;border-style:solid !important;}.frm_style_true-blue.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_true-blue.with_frm_style .frm_error{font-weight:bold !important;}.frm_style_true-blue.with_frm_style .frm_blank_field label,.frm_style_true-blue.with_frm_style .frm_error{color:#B94A48 !important;}.frm_style_true-blue.with_frm_style .frm_error_style{background-color:#bf4a4a !important;border:1px solid #ff0a05 !important;border-radius:5px !important;color: #fff !important;font-size:14px !important;margin:0;margin-bottom:20px;}.frm_style_true-blue.with_frm_style .frm_message,.frm_success_style{border:1px solid #296aff;background-color:#14568a !important;color:#fff !important;border-radius:5px !important;}.frm_style_true-blue.with_frm_style .frm_message p{color:#fff !important;}.frm_style_true-blue.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px !important;}.frm_style_true-blue.with_frm_style .frm-grid td,.frm-grid th{border-color:#093b63;}.form_results.frm_style_true-blue.with_frm_style{border:2px solid #093b63 !important;}.form_results.frm_style_true-blue.with_frm_style tr td{color: #14568a !important;border-top:2px solid #093b63 !important;}.form_results.frm_style_true-blue.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #093b63 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #093b63 50%, #093b63 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_true-blue.with_frm_style #frm_loading .progress-bar{background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_grid,.frm_style_true-blue.with_frm_style .frm_grid_first,.frm_style_true-blue.with_frm_style .frm_grid_odd{border-color:#093b63;}.frm_style_true-blue.with_frm_style .frm_grid.frm_blank_field,.frm_style_true-blue.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_true-blue.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#bf4a4a !important;border-color:#ff0a05;}.frm_style_true-blue.with_frm_style .frm_grid_first,.frm_style_true-blue.with_frm_style .frm_grid_odd{background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_grid{background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff !important;border-color: #093b63 !important;border-width:2px !important;border-style:solid !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;font-size:14px !important;padding:6px 10px !important;outline:none !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_total input,.frm_style_true-blue.with_frm_style .frm_form_field.frm_total textarea{color: #14568a !important;background-color:transparent !important;border:none !important;display:inline !important;width:auto !important;padding:0 !important;}.frm_style_true-blue.with_frm_style .frm_button{padding:6px 11px !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;font-size:14px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-weight:normal !important;color:#ffffff !important;background: #14568a !important;border-width:2px;border-color: #093b63 !important;height:auto !important;}.frm_style_true-blue.with_frm_style .frm_button .frm_icon_font:before{font-size:14px !important;}.frm_style_true-blue.with_frm_style .frm_dropzone{border-color: #093b63 !important;border-radius:5px !important;color: #14568a !important;background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_true-blue.with_frm_style .frm_dropzone .dz-remove{color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48 !important;color:#14568a !important;background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_true-blue.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #14568a !important;}.frm_style_true-blue.with_frm_style input[type=file]::-webkit-file-upload-button{color:#14568a !important;background-color:#ffffff !important;padding:6px 10px !important;border-radius:5px !important;border-color: #093b63 !important;border-width:2px !important;border-style:solid !important;}.frm_style_true-blue.with_frm_style .chosen-container{font-size:14px !important;}.frm_style_true-blue.with_frm_style .chosen-container .chosen-results li,.frm_style_true-blue.with_frm_style .chosen-container .chosen-results li span{color:#14568a !important;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px !important;line-height:32px !important;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single div{top:3px !important;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_true-blue.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px !important;}.frm_style_true-blue.with_frm_style .frm_page_bar input,.frm_style_true-blue.with_frm_style .frm_page_bar input:disabled{color: #dfdfdf !important;background-color: #ffffff !important;border-color: #dfdfdf !important;border-width: 2px !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input.frm_page_back{background-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #ffffff !important;border-color: #dfdfdf !important;opacity:1 !important;}.frm_style_true-blue.with_frm_style .frm_current_page .frm_rootline_title{color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_rootline_title,.frm_style_true-blue.with_frm_style .frm_pages_complete,.frm_style_true-blue.with_frm_style .frm_percent_complete{color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input,.frm_style_true-blue.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #dfdfdf !important;border-right-color: #dfdfdf !important;border-left-width: 1px !important;border-right-width: 1px !important;}.frm_style_true-blue.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input.frm_page_back {border-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #14568a !important;border-right-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf !important;border-top-width: 2px !important;top: 20px;}.frm_style_true-blue.with_frm_style .frm_rootline input,.frm_style_true-blue.with_frm_style .frm_rootline input:hover {width: 40px !important;height: 40px !important;border-radius: 40px !important;padding: 0 !important;}.frm_style_true-blue.with_frm_style .frm_rootline input:focus {border-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #004276 !important;background-color: #14568a !important;color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input,.frm_style_true-blue.with_frm_style .frm_progress_line input:disabled,.frm_style_true-blue.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_true-blue.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_true-blue.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_true-blue.with_frm_style .frm_range_value{font-size:14px;}.frm_style_true-blue.with_frm_style .form-field input[type=range],.frm_style_true-blue.with_frm_style .form-field input[type=range]:focus {padding:0 !important;background:transparent !important;}.frm_style_true-blue.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#093b63 !important;border-radius:5px !important;}.frm_style_true-blue.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(20,86,138,0.6);color:#ffffff !important;background-color: #14568a !important;}.frm_style_true-blue.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(20,86,138,0.6);color:#ffffff !important;background-color: #14568a !important;}.frm_style_true-blue.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(20,86,138,0.6);color:#ffffff !important;background-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_switch_opt{font-size:14px !important;font-weight:normal !important;}.frm_style_true-blue.with_frm_style .frm_on_label{color:#14568a !important;}.frm_style_true-blue.with_frm_style .frm_off_label{color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_slider {background-color:#093b63 !important;}.frm_style_true-blue.with_frm_style input:checked + .frm_slider {background-color:#14568a !important;}.frm_style_true-blue.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto !important;}.frm_style_true-blue.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_true-blue.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_true-blue.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block !important;}.frm_style_true-blue.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 !important;margin-top:8px;}.frm_style_true-blue.with_frm_style span.frm-pass-verified::before {color:#fff !important;}.frm_style_true-blue.with_frm_style span.frm-pass-req::before {color:#fff !important;}.frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0 !important;margin:0 !important;font-size:18px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold !important;color:#fff !important;border:none !important;border-top:2px solid #e8e8e8 !important;background-color:transparent !important}.frm_style_true-blue.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_true-blue.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_true-blue.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_true-blue.with_frm_style .frm_section_heading{margin-top:15px !important;}.frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px !important;}.frm_style_true-blue.with_frm_style .frm_repeat_sec{margin-bottom:20px !important;margin-top:20px !important;border-bottom:2px solid #e8e8e8 !important;}@media only screen and (max-width: 600px){.frm_style_true-blue.with_frm_style .frm_repeat_inline,.frm_style_true-blue.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_ajax_loading{visibility:hidden;width:auto;}.frm_form_submit_style{height:auto;}a.frm_save_draft{cursor:pointer;}.horizontal_radio .frm_radio{margin:0 5px 0 0;}.horizontal_radio .frm_checkbox{margin:0;margin-right:5px;}.vertical_radio .frm_checkbox,.vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.horizontal_radio .frm_checkbox,.horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.with_frm_style .frm_checkbox label,.with_frm_style .frm_radio label{display: inline;white-space:normal;}.with_frm_style .vertical_radio .frm_checkbox label,.with_frm_style .vertical_radio .frm_radio label{display: block;padding-left: 20px;text-indent: -20px;}.frm_file_container .frm_file_link,.with_frm_style .frm_radio label .frm_file_container,.with_frm_style .frm_checkbox label .frm_file_container{display:inline-block;margin:5px;vertical-align:middle;}.with_frm_style .frm_radio input[type=radio]{-webkit-appearance:radio;border-radius:50%;}.with_frm_style .frm_checkbox input[type=checkbox]{-webkit-appearance:checkbox;border-radius:0;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{flex: none;display:inline-block;margin:4px 5px 0 0;width:auto;border:none;vertical-align:baseline;position: initial; }.with_frm_style :invalid,.with_frm_style :-moz-submit-invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:15px;}.with_frm_style .frm_message p{margin-bottom:5px;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-top:none;border-left:none;border-right:none;}.frm-alt-table {width:100%;border-collapse:collapse;margin-top:0.5em;font-size:15px;}.frm-alt-table th {width:200px;}.frm-alt-table tr {background-color:transparent;}.frm-alt-table th,.frm-alt-table td {background-color:transparent;vertical-align:top;text-align:left;padding:20px;}.frm-alt-table tr:nth-child(even) {background-color:#f9f9f9;}table.form_results.with_frm_style{border:1px solid #ccc;}table.form_results.with_frm_style tr td{text-align:left;color:#555555;padding:7px 9px;border-top:1px solid #cccccc;}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd{background-color:#f9f9f9;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar{background-color:#ffffff;box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;float:left;height:100%;line-height:20px;text-align:center;transition:width 0.6s ease 0s;width:100%;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(../images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}select.frm_loading_lookup{background-image: url(../images/ajax_loader.gif) !important;background-position: 10px;background-repeat: no-repeat;color: transparent !important;}.frm_screen_reader {border: 0;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;word-wrap: normal !important; }.frm_screen_reader.frm_hidden{display:initial;}.frm_clear_none{clear:none;}.frm_clear{clear:both;}.frm_form_field.frm_alignright{float:right !important;}.with_frm_style .frm_form_field{clear:both;}.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container{display:grid;grid-template-columns: repeat(12, 6.5%);grid-auto-rows: max-content;grid-gap: 0 2%;}.frm_combo_inputs_container > *,.frm_grid_container > *,.frm_section_heading > *,.frm_fields_container .frm_form_field,.frm_fields_container > *{grid-column: span 12 / span 12;}.frm_inline,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;grid-column: span 2 / span 2;}.frm6,.frm_half,.frm_form_field.frm_three_fifths, .frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{grid-column:span 6 / span 6;}.frm4,.frm_third,.frm_form_field.frm_two_fifths, .frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{grid-column:span 4 / span 4;}.frm8,.frm_two_thirds,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{grid-column: span 8/span 8;}.frm3,.frm_fourth,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{grid-column: span 3/span 3;}.frm9,.frm_three_fourths,.frm_form_field.frm_four_fifths, .frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm_three_fourths{grid-column: span 9/span 9;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{grid-column: span 2/span 2;}.frm2,.frm_sixth,.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{grid-column: span 2/span 2;}.frm10,.frm_form_field.frm10,.frm_submit.frm10{grid-column: span 10/span 10;}.frm1,.frm_form_field.frm1,.frm_submit.frm1,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{grid-column: span 1/span 1;}.frm5,.frm_form_field.frm5,.frm_submit.frm5{grid-column: span 5/span 5;}.frm7,.frm_form_field.frm7,.frm_submit.frm7{grid-column: span 7/span 7;}.frm11,.frm_form_field.frm11,.frm_submit.frm11{grid-column: span 11/span 11;}.frm12,.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type='checkbox']):not([type='radio']):not([type='button']),.frm_full select,.frm_full textarea{width:100% !important;grid-column: span 12/span 12;box-sizing: border-box;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_first,.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{grid-column-start:1;}.frm_last,.frm_form_field.frm_last,.frm_form_field.frm_alignright{grid-column-end:-1;grid-row-start: span 100;justify-content: end;}.with_frm_style.frm_rtl .frm_form_fields .star-rating{float:right;}.with_frm_style.frm_rtl .frm_grid .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_first .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_odd .frm_primary_label,.with_frm_style.frm_rtl .frm_grid .frm_radio,.with_frm_style.frm_rtl .frm_grid_first .frm_radio,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio,.with_frm_style.frm_rtl .frm_grid .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox{float:right !important;margin-right:0 !important;}.with_frm_style.frm_rtl .frm_grid_first .frm_radio label input,.with_frm_style.frm_rtl .frm_grid .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox label input{float:left;}.with_frm_style.frm_rtl .frm_catlevel_2,.with_frm_style.frm_rtl .frm_catlevel_3,.with_frm_style.frm_rtl .frm_catlevel_4,.with_frm_style.frm_rtl .frm_catlevel_5{margin-right:18px;}.with_frm_style.frm_rtl div > .frm_time_select{margin-right:5px;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display: grid;grid-template-columns: 25% auto;width:100%;grid-auto-rows: min-content;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_form_field.frm_inline_container{grid-template-columns: repeat(2, minmax(auto, max-content) );}.frm_form_field.frm_inline_container .frm_primary_label,.frm_form_field.frm_right_container .frm_primary_label,.frm_form_field.frm_left_container .frm_primary_label{margin-right:10px;grid-row:span 2/span 2;padding-top:4px;}.frm_form_field.frm_left_container .frm_primary_label{grid-column:1;grid-row:span 2/span 2; }.frm_form_field.frm_right_container .frm_primary_label{grid-column:2;grid-row:1;margin-right:0;margin-left:10px;}.frm_form_field.frm_inline_container .frm_description,.frm_form_field.frm_left_container .frm_description{grid-column:2;}.frm_form_field.frm_right_container .frm_description{grid-column:1;}.frm_conf_field.frm_left_container{grid-template-columns: 67%;}.frm_conf_field.frm_left_container .frm_description{grid-column:1;}.frm-fade-in {-webkit-animation-name: fadeIn;animation-name: fadeIn;-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}@keyframes spin {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}@keyframes fadeIn { 0% {opacity: 0;} 100% {opacity: 1;}}@media only screen and (max-width: 600px) {.frm_section_heading > .frm_form_field,.frm_fields_container > .frm_submit,.frm_grid_container > .frm_form_field,.frm_fields_container > .frm_form_field{grid-column: 1 / span 12 !important;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display:block;}}.frm_conf_field.frm_left_container .frm_primary_label{display:none;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd{background-color:#ffffff;}.frm_grid{background-color:#ffffff;}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{visibility:hidden;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 .frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 .frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 .frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 .frm_primary_label,.frm_grid_7 .frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 .frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 .frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 .frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 .frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 .frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_left_container .frm_opt_container{padding-top:4px;}.with_frm_style .frm_inline_container.frm_grid_first .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display: grid;grid-template-columns: repeat(2, 1fr);grid-auto-rows: max-content;grid-gap: 0 2.5%;}.frm_form_field.frm_three_col .frm_opt_container{grid-template-columns: repeat(3, 1fr);}.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(4, 1fr);}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{grid-column-end: span 1;}.frm_form_field .frm_checkbox,.frm_form_field .frm_checkbox + .frm_checkbox,.frm_form_field .frm_radio,.frm_form_field .frm_radio + .frm_radio{margin-top: 0;margin-bottom: 0;}.frm_form_field.frm_scroll_box .frm_opt_container{height:100px;overflow:auto;}.frm_html_container.frm_scroll_box,.frm_form_field.frm_html_scroll_box{height:100px;overflow:auto;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;-moz-box-shadow:none;-webkit-box-shadow:none;width:auto !important;box-shadow:none !important;display:inline;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.frm_form_field.frm_label_justify .frm_primary_label{text-align:justify !important;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:block;}@font-face {font-family: 's11-fp';src: url('../fonts/s11-fp.ttf?v=7') format('truetype'),url('../fonts/s11-fp.woff?v=7') format('woff'),url('../fonts/s11-fp.svg?v=7#s11-fp') format('svg');font-weight: normal;font-style: normal;}.frmfont,.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;display:inline-block;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-rendering: auto;line-height: 1;-moz-transition: color .1s ease-in-out, opacity .1s ease-in-out;-webkit-transition: color .1s ease-in-out, opacity .1s ease-in-out;transition: color .1s ease-in-out, opacity .1s ease-in-out;font-size: 18px;}i.frmfont,i.frm_icon_font{font-style:normal;font-variant: normal;speak: none;}.frmfont:before,select.frmfont,.frm_icon_font:before,select.frm_icon_font{font-family: 's11-fp' !important;text-align:center;}.frmfont,a.frmfont,.frmfont:hover,a.frmfont:hover.frm_icon_font,a.frm_icon_font,.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;box-shadow:none;}.frmfont:focus,.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frmfont:active,.frm_icon_font:active{outline:none;}.frm_trigger .frm_icon_font{padding:0 5px;}.frm_logo_icon:before {content: "\e601";}.frm_required_icon:before {content: "\e612";}.frm_delete_icon:before {content: "\e610" !important;}.frm_delete_solid_icon:before {content: "\e900";}.frm_move_icon:before {content: "\e61a";}.frm_drag_icon:before {content: "\e93b";}.frm_clear_icon:before {content: "\e60a";}.frm_noclear_icon:before {content: "\e60b";}.frm_duplicate_icon:before {content: "\e61b";}.frm_copy_icon:before {content: "\f0c5";}.frm_clone_solid_icon:before {content: "\f24e";}.frm_clone_icon:before {content: "\f24d";}.frm_tooltip_icon:before {content: "\e611";}.frm_tooltip_solid_icon:before {content: "\e907";}.frm_forbid_icon:before {content: "\e636";}.frm_checkmark_icon:before {content: "\e90a";}.frm_check_icon:before {content: "\e605";}.frm_check1_icon:before {content: "\e606";}.frm_plus_icon:before {content: "\e62f";}.frm_plus1_icon:before {content: "\e602";}.frm_plus2_icon:before {content: "\e603";}.frm_plus3_icon:before {content: "\e632";}.frm_plus4_icon:before {content: "\e60f";}.frm_minus_icon:before {content: "\e62e";}.frm_minus1_icon:before {content: "\e600";}.frm_minus2_icon:before {content: "\e604";}.frm_minus3_icon:before {content: "\e633";}.frm_minus4_icon:before {content: "\e613";}.frm_cancel_icon:before {content: "\e607";}.frm_cancel1_icon:before {content: "\e608";}.frm_close_icon:before {content: "\e928";}.frm_report_problem_solid_icon:before {content: "\e914";}.frm_report_problem_icon:before {content: "\e915";}.frm_arrowup_icon:before {content: "\e60d";}.frm_arrowup1_icon:before {content: "\e60e";}.frm_arrowup2_icon:before {content: "\e630";}.frm_arrowup3_icon:before {content: "\e62b";}.frm_arrowup4_icon:before {content: "\e62c";}.frm_arrowup5_icon:before {content: "\e635";}.frm_arrowup5_solid_icon:before {content: "\e9d";}.frm_arrowup7_icon:before {content: "\e908";}.frm_arrowup6_icon:before {content: "\e62d";}.frm_arrowdown_icon:before {content: "\e609";}.frm_arrowdown1_icon:before {content: "\e60c";}.frm_arrowdown2_icon:before {content: "\e631";}.frm_arrowdown3_icon:before {content: "\e628";}.frm_arrowdown4_icon:before {content: "\e629";}.frm_arrowdown5_icon:before {content: "\e634";}.frm_arrowdown5_solid_icon:before {content: "\e905";}.frm_arrowdown7_icon:before {content: "\e90b";}.frm_arrowdown6_icon:before {content: "\e62a";}.frm_arrow_left_icon:before {content: "\e912";}.frm_arrow_right_icon:before {content: "\e913";}.frm_filter_icon:before {content: "\e90c";}.frm_download_icon:before {content: "\e615";}.frm_upload2_icon:before {content: "\f093";}.frm_upload_icon:before {content: "\e616";}.frm_download2_icon:before {content: "\f019";}.frm_hard_drive_icon:before {content: "\e916";}.frm_pencil_solid_icon:before {content: "\e901";}.frm_pencil_icon:before {content: "\e61d";}.frm_signature_icon:before {content: "\e919";}.frm_user_icon:before {content: "\e7ff";}.frm_register_icon:before {content: "\e637";}.frm_account_circle_solid_icon:before {content: "\e853";}.frm_account_circle_icon:before {content: "\e921";}.frm_address_card_icon:before {content: "\e996";}.frm_paragraph_icon:before {content: "\f1dd";}.frm_checkbox_unchecked_icon:before {content: "\e91e";}.frm_checkbox_icon:before {content: "\e922";}.frm_checkbox_solid_icon:before {content: "\e91f";}.frm_dropdown_icon:before {content: "\e909";}.frm_caret_square_down_icon:before {content: "\f150";}.frm_check_square_icon:before {content: "\f14a";}.frm_radio_unchecked_icon:before {content: "\e971";}.frm_radio_checked_icon:before {content: "\ea54";}.frm_scrubber_icon:before {content: "\f2f8";}.frm_location_solid_icon:before {content: "\e955";}.frm_location_icon:before {content: "\e947";}.frm_toggle_on_icon:before {content: "\f205";}.frm_toggle_off_icon:before {content: "\f204";}.frm_shield_check_icon:before {content: "\f2f7";}.frm_shield_check_solid_icon:before {content: "\e97d";}.frm_clock_icon:before {content: "\e929";}.frm_clock_solid_icon:before {content: "\e985";}.frm_link_icon:before {content: "\f0c1";}.frm_email_icon:before {content: "\e626";}.frm_email_solid_icon:before {content: "\f0e0";}.frm_mail_bulk_icon:before {content: "\e95c";}.frm_phone_icon:before {content: "\e942";}.frm_calendar_icon:before {content: "\f073";}.frm_code_icon:before {content: "\e90d";}.frm_tag_icon:before {content: "\e98b";}.frm_tag_solid_icon:before {content: "\e989";}.frm_price_tags_icon:before {content: "\e936";}.frm_search_icon:before {content: "\e978";}.frm_sitemap_icon:before {content: "\f0e8";}.frm_file_icon:before {content: "\f15b";}.frm_file_text_solid_icon:before {content: "\f15c";}.frm_file_text_icon:before {content: "\e923";}.frm-option-icon:before, .frm_option_icon:before {content: "\e904";}.frm_option_solid_icon:before {content: "\e906";}.frm_more_horiz_icon:before {content: "\e5d3";}.frm_more_vert_icon:before {content: "\e5d4";}.frm_more_horiz_solid_icon {font-size: 28px !important;font-weight: bold;line-height: 18px;}.frm_more_horiz_solid_icon:before {content: "\00B7\00B7\00B7";}.frm_more_vert_solid_icon:before {content: "\f142";}.frm_calculator_icon:before {content: "\f1ec";}.frm_key_icon:before {content: "\f084";}.frm_keyalt_solid_icon:before {content: "\e986";}.frm_keyalt_icon:before {content: "\e987";}.frm_keyboard_icon:before {content: "\e924";}.frm_eye_icon:before {content: "\f06e";}.frm_eye_solid_icon:before {content: "\e945";}.frm_eye_slash_icon:before {content: "\f070";}.frm_eye_slash_solid_icon:before {content: "\e949";}.frm_page_break_icon:before {content: "\e8e9";}.frm_view_day_icon:before {content: "\e8ed";}.frm_attach_file_icon:before {content: "\e226";}.frm_printer_icon:before {content: "\e926";}.frm_header_icon:before {content: "\f1dc";}.frm_h1_icon:before {content: "\e94c";}.frm_repeat_icon:before {content: "\f363";}.frm_repeater_icon:before {content: "\e974";}.frm_hashtag_icon:before {content: "\e292";}.frm_save_icon:before {content: "\e927";}.frm_sliders_icon:before {content: "\f1de";}.frm_code_commit_icon:before {content: "\f386";}.frm_star_icon:before {content: "\e9d7";}.frm_star_full_icon:before {content: "\e9d9";}.frm_star_half_icon:before {content: "\e9d8";}.frm_linear_scale_icon:before {content: "\e260";}.frm_pie_chart_icon:before {content: "\e99a";}.frm_stats_bars_icon:before {content: "\e99c";}.frm_sms_icon:before {content: "\e61c";}.frm_highrise_icon:before {content: "\e617";}.frm_mailchimp_icon:before {content: "\e622";}.frm_feed_icon:before {content: "\e624";}.frm_align_right_icon:before {content: "\e90f";}.frm_align_left_icon:before {content: "\e910";}.frm_button_icon:before {content: "\e911";}.frm_browser_icon:before {content: "\e925";}.frm_cloud_download_solid_icon:before {content: "\e92a";}.frm_cloud_download_icon:before {content: "\e92b";}.frm_cloud_upload_solid_icon:before {content: "\e92c";}.frm_cloud_upload_icon:before {content: "\e92d";}.frm_cloud_solid_icon:before {content: "\e92e";}.frm_cloud_icon:before {content: "\e92f";}.frm_shuffle_icon:before {content: "\e917";}.frm_swap_icon:before {content: "\e918";}.frm_dropper_solid_icon:before {content: "\e93c";}.frm_tint_icon:before {content: "\e93e";}.frm_pallet_solid_icon:before {content: "\e96c";}.frm_pallet_icon:before {content: "\e96d";}.frm_fingerprint_icon:before {content: "\e94a";}.frm_ghost_icon:before {content: "\e94b";}.frm_heart_solid_icon:before {content: "\e94d";}.frm_heart_icon:before {content: "\e94e";}.frm_history_icon:before {content: "\e94f";}.frm_import_icon:before {content: "\e91a";}.frm_export_icon:before {content: "\e91b";}.frm_label_solid_icon:before {content: "\e952";}.frm_label_icon:before {content: "\e953";}.frm_lock_open_icon:before {content: "\e957";}.frm_lock_solid_icon:before {content: "\e958";}.frm_lock_icon:before {content: "\e959";}.frm_magic_wand_icon:before {content: "\e997";}.frm_dollar_sign_icon:before {content: "\e91c";}.frm_percent_icon:before {content: "\e939";}.frm_notification_solid_icon:before {content: "\e964";}.frm_notification_icon:before {content: "\e965";}.frm_external_link_icon:before {content: "\e966";}.frm_pageview_solid_icon:before {content: "\e96a";}.frm_pageview_icon:before {content: "\e96b";}.frm_settings_solid_icon:before {content: "\e979";}.frm_settings_icon:before {content: "\e97a";}.frm_stamp_icon:before {content: "\e980";}.frm_support_icon:before {content: "\f1cd";}.frm_text_solid_icon:before {content: "\e98c";}.frm_text_icon:before {content: "\e98d";}.frm_text2_icon:before {content: "\f031";}.frm_text3_icon:before {content: "\e98e";}.frm_unfold_less_icon:before {content: "\e993";}.frm_unfold_more_icon:before {content: "\e994";}.frm_work_solid_icon:before {content: "\e999";}.frm_work_icon:before {content: "\e99e";}.frm_white_label_icon:before {content: "\e91d" !important;}.frm_zoom_out_icon:before {content: "\e99f";}.frm_maximize_icon:before {content: "\e920";}.frm_minimize_icon:before {content: "\e93a";}.frm_authorize_icon:before {content: "\e903";}.frm_icon_font.frm_activecampaign_icon {background-image: none;}.frm_activecampaign_icon:before {content: "\e930";}.frm_aweber_icon:before {content: "\e627";}.frm_campaignmonitor_icon:before {content: "\e946";}.frm_constant_contact_icon:before {content: "\e931";}.frm_getresponse_icon:before {content: "\e932";}.frm_googlesheets_icon:before {content: "\e944";}.frm_building_icon:before {content: "\e93f";}.frm_hubspot_icon:before {content: "\e933";}.frm_icontact_icon:before {content: "\e940";}.frm_icon_font.frm_mailpoet_icon:before {content: "\e934";}.frm_paypal_icon:before {content: "\e61f";}.frm_sendinblue_icon:before {content: "\e943";}.frm_sendy_icon:before {content: "\e941";}.frm_salesforce_icon:before {content: "\e935";}.frm_salesforcealt_icon:before {content: "\e937";}.frm_stripe_icon:before {content: "\e902";}.frm_stripealt_icon:before {content: "\e93d";}.frm_twilio_icon:before {content: "\e620";}.frm_woocommerce_icon:before {content: "\e90e";}.frm_wordpress_icon:before {content: "\f19a";}.frm_credit_card_icon:before {content: "\e938";}.frm_credit-card-alt_icon:before, .frm_credit_card_alt_icon:before {content: "\f283";}.frm_cc_amex_icon:before {content: "\f1f3";}.frm_cc_discover_icon:before {content: "\f1f2";}.frm_cc_mastercard_icon:before {content: "\f1f1";}.frm_cc_visa_icon:before {content: "\f1f0";}.frm_cc_paypal_icon:before {content: "\f1f4";}.frm_cc_stripe_icon:before {content: "\f1f5";}.js .frm_logic_form:not(.frm_no_hide) {display:none;}.with_frm_style .frm_conf_field.frm_half label.frm_conf_label {overflow: hidden;white-space: nowrap;}.with_frm_style .frm_time_wrap{white-space:nowrap;}.with_frm_style select.frm_time_select{white-space:pre;display:inline;}.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;padding-bottom:15px;}.with_frm_style .frm_repeat_sec:last-child{border-bottom:none;padding-bottom:0;}.with_frm_style .frm_repeat_inline{clear:both;}.frm_invisible_section .frm_form_field,.frm_invisible_section{display:none !important;visibility:hidden !important;height:0;margin:0;}.frm_form_field .frm_repeat_sec .frm_add_form_row,.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row.frm_hide_add_button,.frm_form_field div.frm_repeat_grid .frm_add_form_row.frm_hide_add_button,.frm_form_field div.frm_repeat_inline .frm_add_form_row.frm_hide_add_button {-moz-transition: opacity .15s ease-in-out;-webkit-transition: opacity .15s ease-in-out;transition: opacity .15s ease-in-out;pointer-events: none;}.frm_form_field .frm_repeat_sec .frm_add_form_row,.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row.frm_hide_add_button {display: none;}.frm_form_field div.frm_repeat_grid .frm_add_form_row.frm_hide_add_button,.frm_form_field div.frm_repeat_inline .frm_add_form_row.frm_hide_add_button {visibility: hidden;}.frm_form_field div.frm_repeat_grid .frm_add_form_row,.frm_form_field div.frm_repeat_inline .frm_add_form_row,.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row {display: inline-block;visibility: visible;pointer-events: auto;}.frm_add_form_row.frm_button.frm_hidden:last-child, .frm_add_form_row.frm_icon_font.frm_hidden:last-child {display: inline-block;}.frm_repeat_inline .frm_repeat_buttons a.frm_icon_font{vertical-align: sub;}.frm_repeat_inline .frm_repeat_buttons a.frm_icon_font:before{vertical-align: text-top;}.frm_repeat_grid .frm_button,.frm_repeat_inline .frm_button,.frm_repeat_sec .frm_button{display: inline-block;line-height:1;}.frm_repeat_sec .frm_button .frm_icon_font:before,.frm_repeat_grid .frm_button .frm_icon_font:before,.frm_repeat_inline .frm_button .frm_icon_font:before{line-height:1;}.frm_form_field .frm_repeat_grid ~ .frm_repeat_grid .frm_form_field .frm_primary_label{display:none !important;}#ui-datepicker-div{display:none;z-index:999999 !important;}.ui-datepicker .ui-datepicker-title select.ui-datepicker-month,.ui-datepicker .ui-datepicker-title select.ui-datepicker-year {width: 33%;background-color:#fff;float:none;}.ui-datepicker select.ui-datepicker-month{margin-right: 3px;}.ui-datepicker-month, .ui-datepicker-year{max-width:100%;max-height:2em;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.ui-datepicker .ui-widget-header,.ui-datepicker .ui-datepicker-header {background: #008ec2 !important;color: #ffffff !important;}.ui-datepicker td.ui-datepicker-today{background: rgba(0,92,144,0.15) !important;}.ui-datepicker td.ui-datepicker-current-day,.ui-datepicker td .ui-state-hover,.ui-datepicker thead {background: #005c90 !important;color: #ffffff !important;}.ui-datepicker td.ui-datepicker-current-day .ui-state-default{color: #ffffff !important;}.google-visualization-tooltip-item-list {margin: 1em 0 !important;}.google-visualization-tooltip-item {list-style-type: none !important;margin: 0.65em 0 !important;}.google-visualization-tooltip-item-list .google-visualization-tooltip-item:first-child {margin: 1em 0;}.with_frm_style .frm_scale{margin-right:15px;text-align:center;float:left;}.with_frm_style .frm_scale input{display:block;margin:0;}.frm-star-group input {display: none !important;}.frm-star-group .star-rating,.frm-star-group input + label {float:left;width:25px;height:25px;font-size:25px;line-height:1;cursor:pointer;display:block;background:transparent;overflow:hidden !important;clear:none;font-style:normal;margin-right:15px;}.frm-star-group input + label:before,.frm-star-group .star-rating:before{font-family:'s11-fp';content:'\e9d7';color:#F0AD4E;display: inline-block;vertical-align: top;}.frm-star-group input[type=radio]:checked + label:before,.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before{color:#F0AD4E;}.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before,.frm-star-group input + label:hover:before,.frm-star-group:hover input + label:hover:before,.frm-star-group .star-rating-on:before,.frm-star-group .star-rating-hover:before{content:'\e9d9';color:#F0AD4E;}.frm-star-group .frm_half_star:before{content:'\e9d8';}.frm-star-group .star-rating-readonly{cursor:default !important;}.with_frm_style .frm_other_input.frm_other_full{margin-top:10px;}.frm_left_container .frm_other_input{grid-column:2;}.frm_inline_container.frm_other_container .frm_other_input,.frm_left_container.frm_other_container .frm_other_input{margin-left:5px;}.frm_right_container.frm_other_container .frm_other_input{margin-right:5px;}.frm_inline_container.frm_other_container select ~ .frm_other_input,.frm_right_container.frm_other_container select ~ .frm_other_input,.frm_left_container.frm_other_container select ~ .frm_other_input{margin:0;}.frm_pagination_cont ul.frm_pagination{display:inline-block;list-style:none;margin-left:0 !important;}.frm_pagination_cont ul.frm_pagination > li{display:inline;list-style:none;margin:2px;background-image:none;}ul.frm_pagination > li.active a{text-decoration:none;}.frm_pagination_cont ul.frm_pagination > li:first-child{margin-left:0;}.archive-pagination.frm_pagination_cont ul.frm_pagination > li{margin:0;}.frmcal{padding-top:30px;}.frmcal-title{font-size:116%;}.frmcal table.frmcal-calendar{border-collapse:collapse;margin-top:20px;color:#555555;}.frmcal table.frmcal-calendar,.frmcal table.frmcal-calendar tbody tr td{border:1px solid #cccccc;}.frmcal table.frmcal-calendar,.frmcal,.frmcal-header{width:100%;}.frmcal-header{text-align:center;}.frmcal-prev{margin-right:10px;}.frmcal-prev,.frmcal-dropdown{float:left;}.frmcal-dropdown{margin-left:5px;}.frmcal-next{float:right;}.frmcal table.frmcal-calendar thead tr th{text-align:center;padding:2px 4px;}.frmcal table.frmcal-calendar tbody tr td{height:110px;width:14.28%;vertical-align:top;padding:0 !important;color:#555555;font-size:12px;}table.frmcal-calendar .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #cccccc;-webkit-box-shadow:0 2px 5px #cccccc;box-shadow:0 2px 5px #cccccc;}table.frmcal-calendar .frmcal-today .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #429646;-webkit-box-shadow:0 2px 5px #429646;box-shadow:0 2px 5px #429646;}.frmcal_day_name,.frmcal_num{display:inline;}.frmcal-content{padding:2px 4px;}.frm_switch_opt {padding:0 8px 0 0;white-space:normal;display:inline;vertical-align: middle;}.frm_on_label{color: #3177c7;padding:0 0 0 8px;}.frm_switch {position: relative;display: inline-block;width: 40px;height: 25px;vertical-align: middle;}.frm_switch input {display:none !important;}.frm_slider {position: absolute;cursor: pointer;top: 0;left: 0;right: 0;bottom: 0;background-color: #ccc;transition: .4s;border-radius: 30px;}.frm_slider:before {border-radius: 50%;position: absolute;content: "";height: 23px;width: 23px;left: 1px;bottom: 1px;background-color: white;transition: .4s;box-shadow:0 2px 5px #999;}input:checked + .frm_slider {background-color: #3177c7;}input:focus + .frm_slider {box-shadow: 0 0 1px #3177c7;}input:checked + .frm_slider:before {transform: translateX(15px);}.with_frm_style .frm_range_value{display:inline-block;}.with_frm_style input[type=range] {-webkit-appearance: none;box-shadow:none !important;border:none !important;cursor: pointer;padding:0 ;background:transparent !important;display: block;width: 100%;margin: 7px 0 15px;font-size:14px;}.with_frm_style input[type=range]:active,.with_frm_style input[type=range]:focus {outline: none;box-shadow:none !important;background:transparent !important;}.with_frm_style .frm_range_container{text-align:center;}.with_frm_style input[type=range]::-webkit-slider-runnable-track {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animation: 0.2s;}.with_frm_style input[type=range]::-moz-range-track {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animation: 0.2s;border-color: transparent;border-width: 39px 0;color: transparent;}.with_frm_style input[type=range]::-ms-fill-lower {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animation: 0.2s;}.with_frm_style input[type=range]::-ms-fill-upper {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animation: 0.2s;}.with_frm_style input[type=range]::-webkit-slider-thumb {-webkit-appearance: none;-webkit-border-radius: 20px;height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;margin-top: -10px;}.with_frm_style input[type=range]::-moz-range-thumb {height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;-moz-border-radius: 20px;}.with_frm_style input[type=range]::-ms-thumb {height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;}@media screen and (max-width: 768px) {.frm-pass-req, .frm-pass-verified {width: 50% !important;white-space: nowrap;}}.frm-pass-req, .frm-pass-verified {float: left;width: 20%;line-height: 20px;font-size: 12px;padding-top: 4px;min-width: 175px;}.frm-pass-req:before, .frm-pass-verified:before {padding-right: 4px;font-size: 12px !important;vertical-align: middle !important;}span.frm-pass-verified::before {content: '\e606';}span.frm-pass-req::before {content: '\e608';}div.frm-password-strength {width: 100%;float: left;}div.frm_repeat_grid:after, div.frm_repeat_inline:after, div.frm_repeat_sec:after {content: '';display: table;clear: both;}.with_frm_style .chosen-container{font-size:14px;position:relative;display:inline-block;zoom:1;vertical-align:middle;width:100% !important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.with_frm_style .chosen-container * { -webkit-box-sizing: border-box; box-sizing: border-box;}.with_frm_style .chosen-container .chosen-drop{background:#fff;border:1px solid #aaa;border-top:0;position:absolute;top:100%;z-index:1010;width:100%;clip: rect(0, 0, 0, 0);-webkit-clip-path: inset(100% 100%);clip-path: inset(100% 100%);}.with_frm_style .chosen-container.chosen-with-drop .chosen-drop{clip: auto;-webkit-clip-path: none;clip-path: none;}.with_frm_style .chosen-container a{cursor:pointer;}.with_frm_style .chosen-container .search-choice .group-name,.with_frm_style .chosen-container .chosen-single .group-name {margin-right: 4px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-weight: normal;color: #999999;}.with_frm_style .chosen-container .search-choice .group-name:after,.with_frm_style .chosen-container .chosen-single .group-name:after {content: ":";padding-left: 2px;vertical-align: top;}.with_frm_style .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;text-decoration:none;white-space:nowrap;line-height:24px;}.with_frm_style .chosen-container-single .chosen-default {color: #999;}.with_frm_style .chosen-container-single .chosen-single span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.with_frm_style .chosen-container-single .chosen-single-with-deselect span{margin-right:38px;}.with_frm_style .chosen-container-single .chosen-single abbr{display:block;position:absolute;right:26px;top:6px;width:12px;height:12px;font-size:1px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') -42px 1px no-repeat;}.with_frm_style .chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single .chosen-single div{position:absolute;right:0;top:0;display:block;height:100%;width:18px;}.with_frm_style .chosen-container-single .chosen-single div b{background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat 0 2px;display:block;width:100%;height:100%;}.with_frm_style .chosen-container-single .chosen-search{padding:3px 4px;position:relative;margin:0;white-space:nowrap;z-index:1010;}.with_frm_style .chosen-container-single .chosen-search input[type="text"]{width:100% !important;max-width:100% !important;height:auto;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box;}.with_frm_style .chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;clip: rect(0, 0, 0, 0);-webkit-clip-path: inset(100% 100%);clip-path: inset(100% 100%);}.with_frm_style .chosen-container .chosen-results{cursor:text;overflow-x:hidden;overflow-y:auto;position:relative;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch;}.with_frm_style .chosen-container .chosen-results li:before{background:none;}.with_frm_style .chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none;}.with_frm_style .chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer;}.with_frm_style .chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container .chosen-results li.highlighted{background-color: #3875d7;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);color: #fff;}.with_frm_style .chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4;}.with_frm_style .chosen-container .chosen-results li.group-result{display:list-item;font-weight:bold;cursor:default;}.with_frm_style .chosen-container .chosen-results li.group-option{padding-left:15px;}.with_frm_style .chosen-container .chosen-results li em{font-style:normal;text-decoration:underline;}.with_frm_style .chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto;border: 1px solid #aaa;background-color: #fff;cursor:text;}.with_frm_style .chosen-container-multi .chosen-choices li{float:left;list-style:none;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{margin:1px 0;padding:0 !important;height:25px;outline:0;border:0 !important;background:transparent !important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;width: 25px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:1px 5px 1px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);color:#333;line-height:13px;cursor:default;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice span {word-wrap: break-word;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') -42px 1px no-repeat;font-size:1px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);color:#666;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-results{margin:0;padding:0;}.with_frm_style .chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container-single.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;border-bottom-right-radius:0;border-bottom-left-radius:0;box-shadow:0 1px 0 #fff inset;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px;}.with_frm_style .chosen-container-active .chosen-choices {border: 1px solid #5897fb;-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#111 !important;}.with_frm_style .chosen-disabled{opacity:0.5 !important;cursor:default;}.with_frm_style .chosen-disabled .chosen-single{cursor:default;}.with_frm_style .chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default;}.with_frm_style .chosen-rtl{text-align:right;}.with_frm_style .chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0;}.with_frm_style .chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl;}.with_frm_style .chosen-rtl .chosen-single-with-deselect span{margin-left:38px;}.with_frm_style .chosen-rtl .chosen-single div{right:auto;left:3px;}.with_frm_style .chosen-rtl .chosen-single abbr{right:auto;left:26px;}.with_frm_style .chosen-rtl .chosen-choices li{float:right;}.with_frm_style .chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice{margin:1px 5px 1px 0;padding:3px 5px 3px 19px;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0;}.with_frm_style .chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0;}.with_frm_style .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none;}.with_frm_style .chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat -30px -20px;direction:rtl;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px;}.with_frm_style .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px;}.with_frm_style .frm_repeat_sec,.with_frm_style .frm_repeat_inline,.with_frm_style .frm_repeat_grid {position: relative;}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi){.with_frm_style .chosen-rtl .chosen-search input[type="text"],.with_frm_style .chosen-container-single .chosen-single abbr,.with_frm_style .chosen-container-single .chosen-single div b,.with_frm_style .chosen-container-single .chosen-search input[type="text"],.with_frm_style .chosen-container-multi .chosen-choices .search-choice .search-choice-close,.with_frm_style .chosen-container .chosen-results-scroll-down span,.with_frm_style .chosen-container .chosen-results-scroll-up span{background-image:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite2x.png') !important;background-size:52px 37px !important;background-repeat:no-repeat !important;}}@-webkit-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-moz-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-webkit-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@-moz-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}.frm_dropzone, .frm_dropzone * {box-sizing: border-box;}.frm_dropzone.dz-clickable {min-height: 150px;margin-top:5px;line-height:1.42857143;}.frm_dropzone.dz-clickable * {cursor: default;}.frm_dropzone.dz-clickable.frm_single_upload{max-width: 200px;}.frm_dropzone.dz-clickable.frm_single_upload.dz-started {max-width: 300px;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: .5em 0 1em;}.frm_dropzone .dz-message{border: 2px dashed #dfdfdf;background:#ffffff;padding: 20px;border-radius:5px;cursor: pointer;display:none;font-size:20px;text-align: center;margin: .5em 0 1em;}.frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: 0 0 .5em 0;}.frm_dropzone.frm_single_upload.dz-started .dz-message{display: none;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone .frm_upload_icon{display:block;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone.dz-clickable .dz-message * {cursor: pointer;}#frm_form_editor_container .frm_dropzone.dz-clickable,#frm_form_editor_container .frm_dropzone.dz-clickable *{cursor: default;}.frm_dropzone.dz-drag-hover .dz-message {opacity: 0.5;}.frm_dropzone .frm_upload_icon:before{font-size:40px;}.frm_dropzone .frm_small_text {font-size:14px;}.frm_dropzone.dz-drag-hover {border-style: solid;}.frm_dropzone .dz-preview {padding: 15px 0;border-bottom: 1px solid #dfdfdf;}.frm_dropzone .dz-preview:last-child {border-bottom: none;}.frm_dropzone .dz-preview:hover {z-index: 1000;}.frm_dropzone .dz-preview.dz-file-preview .dz-details {opacity: 1;}.frm_dropzone .dz-preview.dz-image-preview .dz-details {-webkit-transition: opacity 0.2s linear;-moz-transition: opacity 0.2s linear;-ms-transition: opacity 0.2s linear;-o-transition: opacity 0.2s linear;transition: opacity 0.2s linear;}.frm_dropzone .dz-preview .dz-remove {cursor: pointer;border: none;float: right;}.frm_dropzone .dz-preview:hover .dz-details {opacity: 1;}.frm_dropzone .dz-preview .dz-details {font-size: 14px;margin: 5px 0 10px;}.frm_dropzone .dz-preview .dz-details .dz-size,.frm_dropzone .dz-preview .dz-details .dz-filename {display: inline-block;overflow: hidden;white-space: nowrap;}.frm_dropzone .dz-preview .dz-details .dz-size strong {font-weight: normal;}.frm_dropzone .dz-preview .dz-details .dz-filename {max-width: 75%;text-overflow: ellipsis;padding-right: 5px;}.frm_dropzone .dz-preview .dz-details .dz-filename a{cursor:pointer;}.frm_dropzone .dz-preview .dz-column {float: right;width: 68%;}.frm_dropzone .dz-preview .dz-image {overflow: hidden;width: 30%;height: 60px;display: block;float: left;margin-right: 2%;}.frm_dropzone .dz-preview .dz-image img {display: block;margin:0 auto;max-height: 60px;}.frm_dropzone .dz-preview.dz-success .dz-success-mark {-webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);}.frm_dropzone .dz-preview.dz-processing .dz-progress {-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;-ms-transition: all 0.2s linear;-o-transition: all 0.2s linear;transition: all 0.2s linear;}.frm_dropzone .dz-preview .dz-progress {pointer-events: none;position: relative;height: 10px;width: 100%;background: rgba(221, 221, 221, 1);-webkit-transform: scale(1);border-radius: 8px;overflow: hidden;}.frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_dropzone .dz-preview.dz-complete .dz-progress{background: #333;background: linear-gradient(to bottom, #666, #444);}.frm_dropzone .dz-preview .dz-progress .dz-upload {position: absolute;top: 0;left: 0;bottom: 0;width: 0;-webkit-transition: width 300ms ease-in-out;-moz-transition: width 300ms ease-in-out;-ms-transition: width 300ms ease-in-out;-o-transition: width 300ms ease-in-out;transition: width 300ms ease-in-out;}.frm_dropzone .dz-preview.dz-error .dz-error-message {display: block;opacity: 1;pointer-events: auto;}.frm_dropzone .dz-preview .dz-error-message {pointer-events: none;display: none;opacity: 0;-webkit-transition: opacity 0.3s ease;-moz-transition: opacity 0.3s ease;-ms-transition: opacity 0.3s ease;-o-transition: opacity 0.3s ease;transition: opacity 0.3s ease;color: #B94A48;padding: 0.5em;}.frm_dropzone .fallback input[type=file]{display:block;}.frm_compact_text{display:none;}.frm_compact .frm_dropzone.dz-clickable{min-height:60px;padding:0;border:none;background-color:transparent;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_compact .frm_compact_text{display:inline;}.frm_compact .frm_dropzone.frm_single_upload.dz-started .dz-message,.frm_compact .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_compact .frm_dropzone.dz-clickable .dz-message{font-size:14px;border:1px solid #dfdfdf;background:#fff;display: inline-block;border-radius: 4px;padding: 6px 11px;box-sizing: border-box;box-shadow: 0 1px 1px #eeeeee;vertical-align: middle;margin: 0 0 1em;}.frm_compact .frm_dropzone .frm_upload_icon:before{font-size:22px;padding-right:7px;vertical-align: middle;}.frm_compact .frm_dropzone .frm_upload_icon{display:inline;}.frm_compact .frm_dropzone .dz-preview{min-height:20px;max-width:200px;margin: 0 5px;padding: 0;display: inline-block;border-bottom: none;}.frm_compact .frm_dropzone .dz-preview.frm_clearfix:after {content:'';}.frm_compact .frm_dropzone .frm_upload_text,.frm_compact .frm_dropzone .frm_small_text,.frm_compact .frm_dropzone .dz-preview .dz-image,.frm_compact .frm_dropzone .dz-preview .dz-details .dz-size{display:none;}.frm_compact .frm_dropzone .dz-preview .dz-details {margin: 0;}.frm_compact .frm_dropzone .dz-preview .dz-column {float: none;width: 100%;}.frm_compact .frm_dropzone .dz-preview .dz-details .dz-filename {overflow: hidden;text-overflow: ellipsis;}.frm-show-form .dz-hidden-input{display:none;}.frm_rootline_group{margin: 20px 0 30px;}ul.frm_page_bar{list-style-type: none;margin: 0 !important;padding: 0;width: 100%;float: left;display: table;display: -webkit-flex;display: flex;flex-wrap: wrap;box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;}ul.frm_page_bar li{display: inline-block;-ms-flex: 1;flex: 1;}.frm_forms .frm_page_bar input,.frm_forms .frm_page_bar input:disabled{transition: background-color 0.1s ease;color: #ffffff;background-color: #dddddd;font-size: 18px;border-width: 2px;border-style: solid;border-color: #dfdfdf;}.frm_forms .frm_page_bar input:focus{outline: none;}.frm_forms .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_forms .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;}.frm_rootline_single{text-align: center;margin: 0;padding: 0;}.frm_current_page .frm_rootline_title{color: #008ec2;}.frm_rootline_title,.frm_pages_complete,.frm_percent_complete {font-size:14px;padding:4px;}.frm_pages_complete {float: right;margin-right:13px;}.frm_percent_complete {float: left;margin-left:13px;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled {width: 100%;border: none;border-top: 1px solid #dfdfdf;border-bottom: 1px solid #dfdfdf;box-shadow: inset 0 10px 20px -15px #aaa;margin: 5px 0;padding: 6px 0;border-radius:0;font-size:0;line-height:15px;}.frm_forms .frm_progress_line.frm_show_lines input {border-left: 1px solid #ffffff;border-right: 1px solid #ffffff;}.frm_progress_line .frm_rootline_single {display: flex;flex-direction: column;justify-content: flex-end;}.frm_forms .frm_progress_line li:first-of-type input {border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-left: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-right: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-right: 1px solid #dfdfdf;}.frm_forms .frm_progress_line .frm_current_page input[type="button"] {border-left: 1px solid #dfdfdf;}.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right: 1px solid #ffffff;}.frm_forms .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_forms .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_rtl.frm_forms .frm_progress_line li:first-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-top-left-radius:0px;border-bottom-left-radius:0px;border-right: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input{border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-left: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-left: 1px solid #dfdfdf;border-right:none;}.frm_rtl.frm_forms .frm_progress_line .frm_current_page input[type="button"] {border-right: 1px solid #dfdfdf;border-left:none;}.frm_rtl.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-left: 1px solid #ffffff;border-right:none;}.frm_rootline.frm_show_lines:before {border-top-width: 2px;border-top-style: solid;border-top-color: #dfdfdf;content: "";margin: 0 auto;position: absolute;top: 15px;left: 0;right: 0;bottom: 0;width: 100%;z-index: -1;}.frm_rootline.frm_show_lines{position: relative;z-index: 1;}.frm_rootline.frm_show_lines span{display:block;}.frm_forms .frm_rootline input {width: 30px;height: 30px;min-height:auto;border-radius: 30px;padding:0;}.frm_forms .frm_rootline input:focus {border-color: #008ec2;}.frm_forms .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled,.frm_forms .frm_progress_line .frm_current_page input[type="button"],.frm_forms .frm_rootline.frm_no_numbers input,.frm_forms .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}@media only screen and (max-width: 700px) {.frm_progress span.frm_rootline_title,.frm_rootline.frm_rootline_10 span.frm_rootline_title,.frm_rootline.frm_rootline_9 span.frm_rootline_title,.frm_rootline.frm_rootline_8 span.frm_rootline_title,.frm_rootline.frm_rootline_7 span.frm_rootline_title,.frm_rootline.frm_rootline_6 span.frm_rootline_title,.frm_rootline.frm_rootline_5 span.frm_rootline_title{display:none;}}@media only screen and (max-width: 500px) {.frm_rootline.frm_rootline_4 span.frm_rootline_title,.frm_rootline.frm_rootline_3 span.frm_rootline_title{display:none;}}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth .frm_primary_label{display: block !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(2, 1fr);}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style .frm-g-recaptcha > div > div,.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);-moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe,.with_frm_style .frm-g-recaptcha iframe{width:100%;}}.with_frm_style .frm_form_field{clear:both;}.frm_form_field,.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{width:auto;}.frm_inline_form .frm_form_field.form-field{margin-right:2.5%;display:inline-block;}.frm_inline_form .frm_submit{display:inline-block;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm10,.frm_submit.frm10,.frm_form_field.frm_right_half,.frm_form_field.frm_right_third,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_right_fourth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_half,.frm_form_field.frm_last_third,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_last_fourth,.frm_form_field.frm_last_fifth,.frm_form_field.frm_last_sixth,.frm_form_field.frm_last_seventh,.frm_form_field.frm_last_eighth,.frm_form_field.frm_last_inline,.frm_form_field.frm_last,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_two_thirds,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_inline,.frm_submit.frm_inline{clear:none;float:left;margin-left:2.5%;}.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{clear:left;float:left;margin-left:0;}.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{width:48.75%;}.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{width:31.66%;}.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{width:65.82%;}.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{width:23.12%;}.frm_form_field.frm9,.frm_form_field.frm_three_fourths{width:74.36%;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{width:18%;}.frm_form_field.frm_two_fifths {width:38.5%;}.frm_form_field.frm_three_fifths {width:59%;}.frm_form_field.frm_four_fifths {width:79.5%;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{width:14.58%;}.frm_form_field.frm10,.frm_submit.frm10{width:83.42%;}.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh{width:12.14%;}.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{width:10.31%;}.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;}.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type='checkbox']):not([type='radio']):not([type='button']),.frm_full select,.frm_full textarea{width:100% !important;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container,.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container,.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display:block;}.frm_form_field.frm_left_container .frm_primary_label{float:left;display:inline;max-width:33%;margin-right:5%;}.with_frm_style .frm_conf_field.frm_left_container .frm_primary_label{display:inline;visibility:hidden;}.frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_left_container textarea,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_left_container .chosen-container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_right_container textarea,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_right_container .chosen-container,.frm_form_field.frm_right_container .frm_combo_inputs_container{max-width:62%;}.frm_form_field.frm_left_container .frm_combo_inputs_container input,.frm_form_field.frm_left_container .frm_combo_inputs_container select,.frm_form_field.frm_right_container .frm_combo_inputs_container input,.frm_form_field.frm_right_container .frm_combo_inputs_container select{max-width:100%;}.frm_form_field.frm_left_container .frm_data_container,.frm_form_field.frm_right_container .frm_data_container,.frm_form_field.frm_inline_container .frm_data_container,.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container .frm_combo_inputs_container,.frm_form_field.frm_inline_container .frm_combo_inputs_container,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_inline_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_inline_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_inline_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_inline_container .g-recaptcha{display:inline-block;}.frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_left_container .frm_primary_label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;max-width:33%;}.with_frm_style .frm_left_container .frm_primary_label{float:left;display:inline !important;width:150px;max-width:33% !important;margin-right:10px !important;}.with_frm_style .frm_right_container .frm_primary_label{display:inline !important;width:150px;max-width:33% !important;margin-left:10px !important;}.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_left_container textarea,.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_right_container textarea,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:62% !important;}.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field input,.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field select,.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field input,.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field select{max-width:100% !important;}.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha{display:inline-block !important;}.with_frm_style .frm_left_container > p.description::before,.with_frm_style .frm_left_container > div.description::before,.with_frm_style .frm_left_container > div.frm_description::before,.with_frm_style .frm_left_container > .frm_error::before,.with_frm_style .frm_right_container > p.description::after,.with_frm_style .frm_right_container > div.description::after,.with_frm_style .frm_right_container > div.frm_description::after,.with_frm_style .frm_right_container > .frm_error::after{content:'' !important;display:inline-block !important;width:150px;max-width:33% !important;margin-right:10px !important;}.with_frm_style .frm_left_container.frm_inline .frm_primary_label{max-width:90% !important;}.with_frm_style .form-field.frm_col_field{clear:none;float:left;margin-right:20px;}.with_frm_style .form-field.frm_col_field div.frm_description{width:auto;max-width:100%;}.with_frm_style .frm_inline_container .frm_primary_label,.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.with_frm_style .frm_inline_container .frm_primary_label{margin-right:10px !important;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_checkbox{float:left;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width:30%;margin-right:5%;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:22%;margin-right:4%;}.frm_form_field.frm_two_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_two_col .frm_checkbox:nth-child(2n+2),.frm_form_field.frm_three_col .frm_radio:nth-child(3n+3),.frm_form_field.frm_three_col .frm_checkbox:nth-child(3n+3),.frm_form_field.frm_four_col .frm_radio:nth-child(4n+4),.frm_form_field.frm_four_col .frm_checkbox:nth-child(4n+4){margin-right:0;}.with_frm_style.frm_rtl .frm_form_field.frm2,.with_frm_style.frm_rtl .frm_form_field.frm3,.with_frm_style.frm_rtl .frm_form_field.frm4,.with_frm_style.frm_rtl .frm_form_field.frm6,.with_frm_style.frm_rtl .frm_form_field.frm8,.with_frm_style.frm_rtl .frm_form_field.frm9,.with_frm_style.frm_rtl .frm_form_field.frm10,.with_frm_style.frm_rtl .frm_form_field.frm_half,.with_frm_style.frm_rtl .frm_form_field.frm_third,.with_frm_style.frm_rtl .frm_form_field.frm_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_sixth,.with_frm_style.frm_rtl .frm_form_field.frm_seventh,.with_frm_style.frm_rtl .frm_form_field.frm_eighth,.with_frm_style.frm_rtl .frm_form_field.frm_inline,.with_frm_style.frm_rtl .frm_form_field.frm_left_half,.with_frm_style.frm_rtl .frm_form_field.frm_left_third,.with_frm_style.frm_rtl .frm_form_field.frm_left_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_left_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_left_inline,.with_frm_style.frm_rtl .frm_form_field.frm_first_half,.with_frm_style.frm_rtl .frm_form_field.frm_first_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_first_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_first_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_first_inline,.with_frm_style.frm_rtl .frm_form_field.frm_right_half,.with_frm_style.frm_rtl .frm_form_field.frm_right_third,.with_frm_style.frm_rtl .frm_form_field.frm_right_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_right_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_right_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_right_inline,.with_frm_style.frm_rtl .frm_form_field.frm_last_half,.with_frm_style.frm_rtl .frm_form_field.frm_last_third,.with_frm_style.frm_rtl .frm_form_field.frm_last_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_last_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_last_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_last_inline{float:right;margin-right:2.5%;margin-left:0;clear:none;}.with_frm_style.frm_rtl .frm_form_field.frm_left_half,.with_frm_style.frm_rtl .frm_form_field.frm_first_half,.with_frm_style.frm_rtl .frm_form_field.frm_first,.with_frm_style.frm_rtl .frm_form_field.frm_left_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_left_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_first_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_first_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_left_inline,.with_frm_style.frm_rtl .frm_form_field.frm_first_inline{clear:right;margin-right:0;}.with_frm_style.frm_rtl .frm_form_field.frm_two_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_three_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_four_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_two_col .frm_checkbox,.with_frm_style.frm_rtl .frm_form_field.frm_three_col .frm_checkbox,.with_frm_style.frm_rtl .frm_form_field.frm_four_col .frm_checkbox{float:right;}@media only screen and (max-width: 500px) {.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_left_container textarea,.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_right_container textarea,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:100% !important;}.with_frm_style .frm_left_container > p.description::before,.with_frm_style .frm_left_container > div.description::before,.with_frm_style .frm_left_container > div.frm_description::before,.with_frm_style .frm_left_container > .frm_error::before,.with_frm_style .frm_right_container > p.description::after,.with_frm_style .frm_right_container > div.description::after,.with_frm_style .frm_right_container > div.frm_description::after,.with_frm_style .frm_right_container > .frm_error::after{display:none !important;}.with_frm_style .frm_left_container .frm_primary_label,.with_frm_style .frm_right_container .frm_primary_label{width:100% !important;max-width:100% !important;margin-right:0 !important;margin-left:0 !important;padding-right:0 !important;padding-left:0 !important;}}@media only screen and (max-width: 600px){.with_frm_style .frm_form_field.frm_half.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_half.frm_left_container select,.with_frm_style .frm_form_field.frm_half.frm_left_container textarea,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_half.frm_left_container.frm-g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_left_container.g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_half.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_half.frm_right_container select,.with_frm_style .frm_form_field.frm_half.frm_right_container textarea,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_half.frm_right_container.frm-g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_right_container.g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_right_container .chosen-container{max-width:100% !important;}.with_frm_style .frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_primary_label{max-width:100% !important;margin-right:0;margin-left:0;padding-right:0;padding-left:0;width:100% !important;}.with_frm_style .frm_repeat_inline,.with_frm_style .frm_repeat_grid{margin: 20px 0;}.with_frm_style .frm_form_field.frm_first_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_first_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_error{margin-right:0;margin-left:0;padding-right:0;padding-left:0;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm10,.frm_submit.frm10,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_first_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_last_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_last_inline{width:100%;margin-left:0;margin-right:0;clear:both;float:none;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:48%;}.frm_form_field.frm_four_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_four_col .frm_checkbox:nth-child(2n+2){margin-right:0;}}.color &gt; .red,.red{color:red;content: '\dde23';}#frm_field_271_container input ,#frm_field_278_container input ,#frm_field_281_container input ,#frm_field_283_container input ,#frm_field_285_container input{ display: none;}#frm_field_271_container img ,#frm_field_278_container img ,#frm_field_281_container img ,#frm_field_283_container img ,#frm_field_285_container img { -webkit-filter: none; -moz-filter: none; filter: none;}#frm_field_271_container img:hover,#frm_field_271_container input:checked + img ,#frm_field_278_container img:hover,#frm_field_278_container input:checked + img ,#frm_field_281_container img:hover,#frm_field_281_container input:checked + img ,#frm_field_283_container img:hover,#frm_field_283_container input:checked + img ,#frm_field_285_container img:hover,#frm_field_285_container input:checked + img { -webkit-transition: all 100ms ease-in; -moz-transition: all 100ms ease-in; transition: all 100ms ease-in; -webkit-filter: drop-shadow(16px 16px 10px rgba(0,0,0,0.9)) sepia(1) saturate(200%); -moz-filter: drop-shadow(16px 16px 10px rgba(0,0,0,0.9)) sepia(1) saturate(200%); filter: drop-shadow(16px 16px 10px rgba(0,0,0,0.9)) sepia(1) saturate(200%);}
 
 
css/frm_admin.css CHANGED
@@ -2560,6 +2560,18 @@ a.frm_option_icon:hover::before {
2560
  left: 25%
2561
  }
2562
 
 
 
 
 
 
 
 
 
 
 
 
 
2563
  .frm-single-settings .frm-embed-message {
2564
  width: 100%;
2565
  position: static;
@@ -3582,6 +3594,7 @@ label.frm-example-icon {
3582
  margin-top: 0;
3583
  }
3584
 
 
3585
  .frm_unauthorized_box .frm-show-authorized {
3586
  display: none;
3587
  }
@@ -4727,6 +4740,10 @@ ul.start_divider {
4727
  cursor: not-allowed;
4728
  }
4729
 
 
 
 
 
4730
  .frm_no_section_fields:not(.frm_block) + ul.start_divider {
4731
  padding: 0;
4732
  min-height: 132px;
@@ -5821,10 +5838,18 @@ ul .frm_col_two {
5821
  border-radius: var(--border-radius) 0 0 var(--border-radius);
5822
  }
5823
 
5824
- #frm-insert-fields li a:hover {
5825
  background: var(--sidebar-hover);
5826
  }
5827
 
 
 
 
 
 
 
 
 
5828
  .frm_code_list {
5829
  clear: both;
5830
  }
@@ -5895,8 +5920,8 @@ input[disabled],
5895
  font-size: inherit;
5896
  }
5897
 
5898
- #frm-insert-fields li a:hover .frmsvg,
5899
- #frm-insert-fields li a:hover i {
5900
  color: var(--dark-grey);
5901
  }
5902
 
2560
  left: 25%
2561
  }
2562
 
2563
+ .frm-summary-message {
2564
+ top: 50%;
2565
+ left: 50%;
2566
+ padding: 15px 0;
2567
+ font-size: 16px;
2568
+ transform: translate(-50%, -50%);
2569
+ }
2570
+
2571
+ .frm-summary-learn-more {
2572
+ font-size: inherit !important;
2573
+ }
2574
+
2575
  .frm-single-settings .frm-embed-message {
2576
  width: 100%;
2577
  position: static;
3594
  margin-top: 0;
3595
  }
3596
 
3597
+ .frm_authorized_box .frm-show-unauthorized,
3598
  .frm_unauthorized_box .frm-show-authorized {
3599
  display: none;
3600
  }
4740
  cursor: not-allowed;
4741
  }
4742
 
4743
+ .edit_field_type_summary .frm_clone_field {
4744
+ display: none !important;
4745
+ }
4746
+
4747
  .frm_no_section_fields:not(.frm_block) + ul.start_divider {
4748
  padding: 0;
4749
  min-height: 132px;
5838
  border-radius: var(--border-radius) 0 0 var(--border-radius);
5839
  }
5840
 
5841
+ #frm-insert-fields li a:not(.disabled):hover {
5842
  background: var(--sidebar-hover);
5843
  }
5844
 
5845
+ #frm-insert-fields li a.disabled:hover {
5846
+ cursor: not-allowed;
5847
+ }
5848
+
5849
+ #frm-insert-fields li.ui-draggable-disabled {
5850
+ opacity: 0.5;
5851
+ }
5852
+
5853
  .frm_code_list {
5854
  clear: both;
5855
  }
5920
  font-size: inherit;
5921
  }
5922
 
5923
+ #frm-insert-fields li a:not(.disabled):hover .frmsvg,
5924
+ #frm-insert-fields li a:not(.disabled):hover i {
5925
  color: var(--dark-grey);
5926
  }
5927
 
formidable.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Formidable Forms
4
  Description: Quickly and easily create drag-and-drop forms
5
- Version: 4.02.04
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
2
  /*
3
  Plugin Name: Formidable Forms
4
  Description: Quickly and easily create drag-and-drop forms
5
+ Version: 4.03
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
js/formidable_admin.js CHANGED
@@ -1,3 +1,292 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  function frmAdminBuildJS() {
2
  //'use strict';
3
 
@@ -618,6 +907,13 @@ function frmAdminBuildJS() {
618
  */
619
  function insertNewFieldByDragging( selectedItem, fieldButton, opts ) {
620
  var fieldType = fieldButton.attr( 'id' );
 
 
 
 
 
 
 
621
  var currentItem = jQuery( selectedItem ).data().uiSortable.currentItem;
622
  var section = getSectionForFieldPlacement( currentItem );
623
  var formId = getFormIdForFieldPlacement( section );
@@ -626,6 +922,12 @@ function frmAdminBuildJS() {
626
  var loadingID = fieldType.replace( '|', '-' );
627
  currentItem.replaceWith( '<li class="frm-wait frmbutton_loadingnow" id="' + loadingID + '" ></li>' );
628
 
 
 
 
 
 
 
629
  jQuery.ajax( {
630
  type: 'POST', url: ajaxurl,
631
  data: {
@@ -633,7 +935,8 @@ function frmAdminBuildJS() {
633
  form_id: formId,
634
  field_type: fieldType,
635
  section_id: sectionId,
636
- nonce: frmGlobal.nonce
 
637
  },
638
  success: function( msg ) {
639
  document.getElementById( 'frm_form_editor_container' ).classList.add( 'frm-has-fields' );
@@ -641,13 +944,16 @@ function frmAdminBuildJS() {
641
  updateFieldOrder();
642
 
643
  afterAddField( msg, false );
644
- }
 
 
 
645
  } );
646
  }
647
 
648
- // don't allow page break, embed form, captcha, or section inside section field
649
  function allowDrop( ui ) {
650
- if ( !ui.placeholder.parent().hasClass( 'start_divider' ) ) {
651
  return true;
652
  }
653
 
@@ -660,8 +966,8 @@ function frmAdminBuildJS() {
660
  }
661
 
662
  // moving an existing field
663
- return !(ui.item.hasClass( 'edit_field_type_break' ) || ui.item.hasClass( 'edit_field_type_form' ) ||
664
- ui.item.hasClass( 'edit_field_type_divider' ));
665
  }
666
 
667
  function loadFields( field_id ) {
@@ -708,35 +1014,92 @@ function frmAdminBuildJS() {
708
 
709
  initiateMultiselect();
710
  renumberPageBreaks();
711
- }
712
  } );
713
  }
714
 
715
  function addFieldClick() {
716
  /*jshint validthis:true */
717
  var $thisObj = jQuery( this );
718
- var field_type = $thisObj.closest( 'li' ).attr( 'id' );
719
- var form_id = this_form_id;
 
 
 
720
  var $button = $thisObj.closest( '.frmbutton' );
 
 
 
 
 
 
 
 
 
 
 
 
721
  jQuery.ajax( {
722
  type: 'POST',
723
  url: ajaxurl,
724
  data: {
725
  action: 'frm_insert_field',
726
  form_id: form_id,
727
- field_type: field_type,
728
  section_id: 0,
729
- nonce: frmGlobal.nonce
 
730
  },
731
  success: function( msg ) {
732
  document.getElementById( 'frm_form_editor_container' ).classList.add( 'frm-has-fields' );
733
  $newFields.append( msg );
734
  afterAddField( msg, true );
735
- }
 
 
 
736
  } );
737
  return false;
738
  }
739
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
740
  function duplicateField() {
741
  /*jshint validthis:true */
742
  var thisField = jQuery( this ).closest( 'li' );
@@ -754,13 +1117,13 @@ function frmAdminBuildJS() {
754
  field_id: field_id,
755
  form_id: this_form_id,
756
  children: children,
757
- nonce: frmGlobal.nonce
758
  },
759
  success: function( msg ) {
760
  thisField.after( msg );
761
  updateFieldOrder();
762
  afterAddField( msg, false );
763
- }
764
  } );
765
  return false;
766
  }
@@ -807,7 +1170,7 @@ function frmAdminBuildJS() {
807
  container.scroll( {
808
  top: container.scrollHeight,
809
  left: 0,
810
- behavior: 'smooth'
811
  } );
812
  }
813
 
@@ -838,7 +1201,7 @@ function frmAdminBuildJS() {
838
 
839
  if ( typeof animate === 'undefined' ) {
840
  jQuery( container ).scrollTop(newPos);
841
- }else{
842
  // TODO: smooth scroll
843
  jQuery( container ).animate({scrollTop: newPos}, 500);
844
  }
@@ -975,6 +1338,44 @@ function frmAdminBuildJS() {
975
  return /\[id\]|\[key\]|\[if\s\w+\]|\[foreach\s\w+\]|\[created-at(\s*)?/g;
976
  }
977
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
978
  function popCalcFields( v, force ) {
979
  var box, exclude, fields, i, list,
980
  p = jQuery( v ).closest( '.frm-single-settings' ),
@@ -984,6 +1385,8 @@ function frmAdminBuildJS() {
984
  return;
985
  }
986
 
 
 
987
  var form_id = jQuery( 'input[name="id"]' ).val();
988
  var fieldId = p.find( 'input[name="frm_fields_submitted[]"]' ).val();
989
 
@@ -993,15 +1396,19 @@ function frmAdminBuildJS() {
993
  box = document.getElementById( 'frm-calc-box-' + fieldId );
994
  }
995
 
996
- exclude = JSON.parse( box.getElementsByClassName( 'frm_code_list' )[0].getAttribute( 'data-exclude' ) );
 
 
997
  fields = getFieldList();
998
  list = document.getElementById( 'frm-calc-list-' + fieldId );
999
  list.innerHTML = '';
1000
 
1001
  for ( i = 0; i < fields.length; i++ ) {
1002
- if ( exclude.includes( fields[ i ].fieldType ) ) {
 
1003
  continue;
1004
  }
 
1005
  var span = document.createElement( 'span' );
1006
  span.appendChild( document.createTextNode( '[' + fields[i].fieldId + ']' ) );
1007
 
@@ -1020,6 +1427,45 @@ function frmAdminBuildJS() {
1020
  }
1021
  }
1022
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1023
  function getFieldList() {
1024
  var i, fields = [],
1025
  allFields = document.querySelectorAll( 'li.frm_field_box' );
@@ -1485,6 +1931,9 @@ function frmAdminBuildJS() {
1485
  if ( $thisField.data( 'type' ) === 'break' ) {
1486
  renumberPageBreaks();
1487
  }
 
 
 
1488
  if ( jQuery( '#frm-show-fields li' ).length === 0 ) {
1489
  document.getElementById( 'frm_form_editor_container' ).classList.remove( 'frm-has-fields' );
1490
  } else if ( $section.length ) {
@@ -2185,10 +2634,11 @@ function frmAdminBuildJS() {
2185
  }
2186
 
2187
  function updateFieldOrder() {
 
2188
  renumberPageBreaks();
2189
  jQuery( '#frm-show-fields' ).each( function( i ) {
2190
  var fields = jQuery( 'li.frm_field_box', this );
2191
- for ( var i = 0; i < fields.length; i ++ ) {
2192
  var fieldId = fields[ i ].getAttribute( 'data-fid' ),
2193
  field = jQuery( 'input[name="field_options[field_order_' + fieldId + ']"]' ),
2194
  currentOrder = field.val(),
@@ -3212,8 +3662,7 @@ function frmAdminBuildJS() {
3212
  }
3213
 
3214
  function insertFieldCode( element, variable ) {
3215
- var variable,
3216
- rich = false,
3217
  element_id = element;
3218
  if ( typeof element === 'object' ) {
3219
  if ( element.hasClass( 'frm_noallow' ) ) {
@@ -3249,7 +3698,11 @@ function frmAdminBuildJS() {
3249
 
3250
  var content_box = jQuery( document.getElementById( element_id ) );
3251
  if ( typeof element.attr('data-shortcode') === 'undefined' && ( ! content_box.length || typeof content_box.attr('data-shortcode') === 'undefined' ) ) {
3252
- variable = '[' + variable + ']';
 
 
 
 
3253
  }
3254
 
3255
  if ( rich ) {
@@ -3692,83 +4145,11 @@ function frmAdminBuildJS() {
3692
  return false;
3693
  }
3694
 
3695
- function authorize() {
3696
- /*jshint validthis:true */
3697
- var button = jQuery( this );
3698
- var pluginSlug = button.data( 'plugin' );
3699
- var input = document.getElementById( 'edd_' + pluginSlug + '_license_key' );
3700
- var license = input.value;
3701
- var wpmu = document.getElementById( 'proplug-wpmu' );
3702
- if ( wpmu === null ) {
3703
- wpmu = 0;
3704
- } else if ( wpmu.checked ) {
3705
- wpmu = 1;
3706
- } else {
3707
- wpmu = 0;
3708
- }
3709
-
3710
- jQuery.ajax( {
3711
- type: 'POST', url: ajaxurl, dataType: 'json',
3712
- data: {
3713
- action: 'frm_addon_activate',
3714
- license: license,
3715
- plugin: pluginSlug,
3716
- wpmu: wpmu,
3717
- nonce: frmGlobal.nonce
3718
- },
3719
- success: function( msg ) {
3720
- var messageBox = jQuery( '.frm_pro_license_msg' );
3721
- if ( msg.success === true ) {
3722
- document.getElementById( 'pro_cred_form' ).classList.remove( 'frm_unauthorized_box' );
3723
- messageBox.removeClass( 'frm_error_style' ).addClass( 'frm_message frm_updated_message' );
3724
- input.value = '•••••••••••••••••••';
3725
- } else {
3726
- messageBox.addClass( 'frm_error_style' ).removeClass( 'frm_message frm_updated_message' );
3727
- }
3728
-
3729
- messageBox.removeClass( 'frm_hidden' );
3730
- messageBox.html( msg.message );
3731
- if ( msg.message !== '' ) {
3732
- setTimeout( function() {
3733
- messageBox.html( '' );
3734
- messageBox.addClass( 'frm_hidden' ).removeClass( 'frm_error_style frm_message frm_updated_message' );
3735
- }, 10000 );
3736
- }
3737
- }
3738
- } );
3739
- }
3740
-
3741
- function deauthorize() {
3742
- /*jshint validthis:true */
3743
- if ( !confirm( frmGlobal.deauthorize ) ) {
3744
- return false;
3745
- }
3746
- var $link = jQuery( this );
3747
- var pluginSlug = $link.data( 'plugin' );
3748
- var input = document.getElementById( 'edd_' + pluginSlug + '_license_key' );
3749
- var license = input.value;
3750
- jQuery.ajax( {
3751
- type: 'POST',
3752
- url: ajaxurl,
3753
- data: {
3754
- action: 'frm_addon_deactivate',
3755
- license: license,
3756
- plugin: pluginSlug,
3757
- nonce: frmGlobal.nonce
3758
- },
3759
- success: function( msg ) {
3760
- document.getElementById( 'pro_cred_form' ).classList.add( 'frm_unauthorized_box' );
3761
- input.value = '';
3762
- }
3763
- } );
3764
- return false;
3765
- }
3766
-
3767
  function saveAddonLicense() {
3768
  /*jshint validthis:true */
3769
  var button = jQuery( this );
3770
  var buttonName = this.name;
3771
- var pluginSlug = button.data( 'plugin' );
3772
  var action = buttonName.replace( 'edd_' + pluginSlug + '_license_', '' );
3773
  var license = document.getElementById( 'edd_' + pluginSlug + '_license_key' ).value;
3774
  jQuery.ajax( {
@@ -4361,7 +4742,7 @@ function frmAdminBuildJS() {
4361
  }
4362
  success( response );
4363
  }
4364
- }
4365
  xmlHttp.setRequestHeader( 'X-Requested-With', 'XMLHttpRequest' );
4366
  xmlHttp.setRequestHeader( 'Content-type', 'application/x-www-form-urlencoded' );
4367
  xmlHttp.send( params );
@@ -4436,6 +4817,26 @@ function frmAdminBuildJS() {
4436
  w.off( 'beforeunload.edit-post' );
4437
  }
4438
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4439
  return {
4440
  init: function() {
4441
  s = {};
@@ -4543,8 +4944,8 @@ function frmAdminBuildJS() {
4543
  autoSearch.keyup();
4544
  }
4545
 
4546
- jQuery( document.getElementById( 'frm_deauthorize_link' ) ).click( deauthorize );
4547
- jQuery( '.frm_authorize_link' ).click( authorize );
4548
 
4549
  jQuery( document ).on( 'click', '.frm-install-addon', installAddon );
4550
  jQuery( document ).on( 'click', '.frm-activate-addon', activateAddon );
@@ -4656,8 +5057,12 @@ function frmAdminBuildJS() {
4656
  $builderForm.on( 'click', '.frm-inline-modal .dismiss', dismissInlineModal );
4657
  jQuery( document ).on( 'change', '[data-frmchange]', changeInputtedValue );
4658
 
 
 
 
4659
  initBulkOptionsOverlay();
4660
  hideEmptyEle();
 
4661
  },
4662
 
4663
  settingsInit: function() {
@@ -4707,7 +5112,7 @@ function frmAdminBuildJS() {
4707
  if ( e.target.classList.contains( 'frm-show-box' ) ) {
4708
  return;
4709
  }
4710
- var sidebar = document.getElementById( 'frm_adv_info' )
4711
  isChild = jQuery( e.target ).closest( '#frm_adv_info' ).length > 0;
4712
 
4713
  if ( sidebar.getAttribute( 'data-fills' ) === e.target.id && typeof e.target.id !== 'undefined' ) {
@@ -5036,7 +5441,9 @@ function frmAdminBuildJS() {
5036
 
5037
  // activate addon licenses
5038
  var licenseTab = document.getElementById( 'licenses_settings' );
5039
- jQuery( licenseTab ).on( 'click', '.edd_frm_save_license', saveAddonLicense );
 
 
5040
 
5041
  jQuery( '#frm-dismissable-cta .dismiss' ).click( function( event ) {
5042
  event.preventDefault();
@@ -5199,3 +5606,12 @@ if ( ! String.prototype.trim ) {
5199
  return this.replace( /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '' );
5200
  };
5201
  }
 
 
 
 
 
 
 
 
 
1
+ var FrmFormsConnect = window.FrmFormsConnect || ( function( document, window, $ ) {
2
+
3
+ /*global jQuery:false, frm_admin_js, frmGlobal, ajaxurl */
4
+
5
+ var el = {
6
+ licenseBox: document.getElementById( 'frm_license_top' ),
7
+ messageBox: document.getElementsByClassName( 'frm_pro_license_msg' )[0],
8
+ btn: document.getElementById('frm-settings-connect-btn'),
9
+ reset: document.getElementById( 'frm_reconnect_link' )
10
+ };
11
+
12
+ /**
13
+ * Public functions and properties.
14
+ *
15
+ * @since 4.02.05
16
+ *
17
+ * @type {Object}
18
+ */
19
+ var app = {
20
+
21
+ /**
22
+ * Start the engine.
23
+ *
24
+ * @since 4.02.05
25
+ */
26
+ init: function() {
27
+ $( document ).ready( app.connectBtnClick );
28
+ },
29
+
30
+ /**
31
+ * Register connect button event.
32
+ *
33
+ * @since 4.02.05
34
+ */
35
+ connectBtnClick: function() {
36
+ $( document.getElementById( 'frm_deauthorize_link' ) ).click( app.deauthorize );
37
+ $( '.frm_authorize_link' ).click( app.authorize );
38
+ if ( el.reset !== null ) {
39
+ $( el.reset ).click( app.reauthorize );
40
+ }
41
+
42
+ $( el.btn ).on( 'click', function(e) {
43
+ e.preventDefault();
44
+ app.gotoUpgradeUrl();
45
+ } );
46
+
47
+ window.addEventListener('message', function(msg) {
48
+ if ( msg.origin.replace(/\/$/, '') !== frmGlobal.app_url.replace(/\/$/, '') ) {
49
+ return;
50
+ }
51
+
52
+ if ( ! msg.data || 'object' !== typeof msg.data ) {
53
+ console.error('Messages from "' + frmGlobal.app_url + '" must contain an api key string.');
54
+ return;
55
+ }
56
+
57
+ app.updateForm(msg.data);
58
+ });
59
+ },
60
+
61
+ /**
62
+ * Go to upgrade url.
63
+ *
64
+ * @since 4.02.05
65
+ */
66
+ gotoUpgradeUrl: function() {
67
+ var w = window.open(frmGlobal.app_url + '/api-connect/', '_blank', 'location=no,width=500,height=730,scrollbars=0');
68
+ w.focus();
69
+ },
70
+
71
+ updateForm: function(response) {
72
+
73
+ // Start spinner.
74
+ var btn = el.btn;
75
+ btn.classList.add('frm_loading_button');
76
+
77
+ if ( response.url !== '' ) {
78
+ app.showProgress({
79
+ success:true,
80
+ message:'Installing...'
81
+ });
82
+ var fallback = setTimeout( function() {
83
+ app.showProgress({
84
+ success:true,
85
+ message:'Installing is taking longer than expected. <a class="frm-install-addon button button-primary frm-button-primary" rel="' + response.url + '" aria-label="Install">Install Now</a>'
86
+ });
87
+ }, 10000 );
88
+ $.ajax( {
89
+ type: 'POST',
90
+ url: ajaxurl,
91
+ dataType: 'json',
92
+ data: {
93
+ action: 'frm_connect',
94
+ plugin: response.url,
95
+ nonce: frmGlobal.nonce
96
+ },
97
+ success: function() {
98
+ clearTimeout( fallback );
99
+ app.activateKey( response );
100
+ },
101
+ error: function(xhr, textStatus, e) {
102
+ clearTimeout( fallback );
103
+ btn.classList.remove('frm_loading_button');
104
+ app.showMessage({
105
+ success:false,
106
+ message: e
107
+ });
108
+ }
109
+ });
110
+ } else if ( response.key !== '' ) {
111
+ app.activateKey( response );
112
+ }
113
+ },
114
+
115
+ activateKey: function( response ) {
116
+ var btn = el.btn;
117
+ if ( response.key === '' ) {
118
+ btn.classList.remove('frm_loading_button');
119
+ } else {
120
+ app.showProgress({
121
+ success:true,
122
+ message:'Activating...'
123
+ });
124
+ $.ajax( {
125
+ type: 'POST',
126
+ url: ajaxurl,
127
+ dataType: 'json',
128
+ data: {
129
+ action: 'frm_addon_activate',
130
+ license: response.key,
131
+ plugin: 'formidable_pro',
132
+ wpmu: 0,
133
+ nonce: frmGlobal.nonce
134
+ },
135
+ success: function( msg ) {
136
+ btn.classList.remove('frm_loading_button');
137
+
138
+ if ( msg.success === true ) {
139
+ el.licenseBox.classList.replace( 'frm_unauthorized_box', 'frm_authorized_box' );
140
+ }
141
+
142
+ app.showMessage( msg );
143
+ },
144
+ error: function(xhr, textStatus, e) {
145
+ btn.classList.remove('frm_loading_button');
146
+ app.showMessage({
147
+ success:false,
148
+ message: e
149
+ });
150
+ }
151
+ });
152
+ }
153
+ },
154
+
155
+ /* Manual license authorization */
156
+ authorize: function() {
157
+ /*jshint validthis:true */
158
+ var button = this;
159
+ var pluginSlug = this.getAttribute('data-plugin');
160
+ var input = document.getElementById( 'edd_' + pluginSlug + '_license_key' );
161
+ var license = input.value;
162
+ var wpmu = document.getElementById( 'proplug-wpmu' );
163
+ this.classList.add( 'frm_loading_button' );
164
+ if ( wpmu === null ) {
165
+ wpmu = 0;
166
+ } else if ( wpmu.checked ) {
167
+ wpmu = 1;
168
+ } else {
169
+ wpmu = 0;
170
+ }
171
+
172
+ $.ajax( {
173
+ type: 'POST', url: ajaxurl, dataType: 'json',
174
+ data: {
175
+ action: 'frm_addon_activate',
176
+ license: license,
177
+ plugin: pluginSlug,
178
+ wpmu: wpmu,
179
+ nonce: frmGlobal.nonce
180
+ },
181
+ success: function( msg ) {
182
+ app.afterAuthorize( msg, input );
183
+ button.classList.remove( 'frm_loading_button' );
184
+ }
185
+ } );
186
+ },
187
+
188
+ afterAuthorize: function( msg, input ) {
189
+ if ( msg.success === true ) {
190
+ input.value = '•••••••••••••••••••';
191
+ }
192
+
193
+ app.showMessage( msg );
194
+ },
195
+
196
+ showProgress: function( msg ) {
197
+ var messageBox = el.messageBox;
198
+ if ( msg.success === true ) {
199
+ messageBox.classList.remove( 'frm_error_style' );
200
+ messageBox.classList.add( 'frm_message', 'frm_updated_message' );
201
+ } else {
202
+ messageBox.classList.add( 'frm_error_style' );
203
+ messageBox.classList.remove( 'frm_message', 'frm_updated_message' );
204
+ }
205
+ messageBox.classList.remove( 'frm_hidden' );
206
+ messageBox.innerHTML = msg.message;
207
+ },
208
+
209
+ showMessage: function( msg ) {
210
+ var messageBox = el.messageBox;
211
+
212
+ if ( msg.success === true ) {
213
+ var d = el.licenseBox;
214
+ d.className = d.className.replace( 'frm_unauthorized_box', 'frm_authorized_box' );
215
+ messageBox.classList.remove( 'frm_error_style' );
216
+ messageBox.classList.add( 'frm_message', 'frm_updated_message' );
217
+ } else {
218
+ messageBox.classList.add( 'frm_error_style' );
219
+ messageBox.classList.remove( 'frm_message', 'frm_updated_message' );
220
+ }
221
+
222
+ messageBox.classList.remove( 'frm_hidden' );
223
+ messageBox.innerHTML = msg.message;
224
+ if ( msg.message !== '' ) {
225
+ setTimeout( function() {
226
+ messageBox.innerHTML = '';
227
+ messageBox.classList.add( 'frm_hidden' );
228
+ messageBox.classList.remove( 'frm_error_style', 'frm_message', 'frm_updated_message' );
229
+ }, 10000 );
230
+ }
231
+ },
232
+
233
+ /* Clear the site license cache */
234
+ reauthorize: function() {
235
+ /*jshint validthis:true */
236
+ this.innerHTML = '<span class="frm-wait frm_spinner" style="visibility:visible;float:none"></span>';
237
+
238
+ $.ajax( {
239
+ type: 'POST',
240
+ url: ajaxurl,
241
+ dataType: 'json',
242
+ data: {
243
+ action: 'frm_reset_cache',
244
+ plugin: 'formidable_pro',
245
+ nonce: frmGlobal.nonce
246
+ },
247
+ success: function( msg ) {
248
+ el.reset.innerHTML = msg.message;
249
+ }
250
+ } );
251
+ return false;
252
+ },
253
+
254
+ deauthorize: function() {
255
+ /*jshint validthis:true */
256
+ if ( !confirm( frmGlobal.deauthorize ) ) {
257
+ return false;
258
+ }
259
+ var pluginSlug = this.getAttribute('data-plugin'),
260
+ input = document.getElementById( 'edd_' + pluginSlug + '_license_key' ),
261
+ license = input.value,
262
+ link = this;
263
+
264
+ this.innerHTML = '<span class="frm-wait frm_spinner" style="visibility:visible;"></span>';
265
+
266
+ $.ajax( {
267
+ type: 'POST',
268
+ url: ajaxurl,
269
+ data: {
270
+ action: 'frm_addon_deactivate',
271
+ license: license,
272
+ plugin: pluginSlug,
273
+ nonce: frmGlobal.nonce
274
+ },
275
+ success: function( msg ) {
276
+ el.licenseBox.className = el.licenseBox.className.replace( 'frm_authorized_box', 'frm_unauthorized_box' );
277
+ input.value = '';
278
+ link.innerHTML = '';
279
+ }
280
+ } );
281
+ return false;
282
+ }
283
+ };
284
+
285
+ // Provide access to public functions/properties.
286
+ return app;
287
+
288
+ }( document, window, jQuery ) );
289
+
290
  function frmAdminBuildJS() {
291
  //'use strict';
292
 
907
  */
908
  function insertNewFieldByDragging( selectedItem, fieldButton, opts ) {
909
  var fieldType = fieldButton.attr( 'id' );
910
+
911
+ // We'll optimistically disable the button now. We'll re-enable if AJAX fails
912
+ if ( 'summary' === fieldType ) {
913
+ var addBtn = fieldButton.children( '.frm_add_field' );
914
+ disableSummaryBtnBeforeAJAX( addBtn, fieldButton );
915
+ }
916
+
917
  var currentItem = jQuery( selectedItem ).data().uiSortable.currentItem;
918
  var section = getSectionForFieldPlacement( currentItem );
919
  var formId = getFormIdForFieldPlacement( section );
922
  var loadingID = fieldType.replace( '|', '-' );
923
  currentItem.replaceWith( '<li class="frm-wait frmbutton_loadingnow" id="' + loadingID + '" ></li>' );
924
 
925
+ var hasBreak = 0;
926
+ if ( 'summary' === fieldType ) {
927
+ // see if we need to insert a page break before this newly-added summary field. Check for at least 1 page break
928
+ hasBreak = jQuery( '.frmbutton_loadingnow#' + loadingID ).prevAll( 'li[data-type="break"]:first' ).length > 0 ? 1 : 0;
929
+ }
930
+
931
  jQuery.ajax( {
932
  type: 'POST', url: ajaxurl,
933
  data: {
935
  form_id: formId,
936
  field_type: fieldType,
937
  section_id: sectionId,
938
+ nonce: frmGlobal.nonce,
939
+ has_break: hasBreak,
940
  },
941
  success: function( msg ) {
942
  document.getElementById( 'frm_form_editor_container' ).classList.add( 'frm-has-fields' );
944
  updateFieldOrder();
945
 
946
  afterAddField( msg, false );
947
+ },
948
+ error: function( jqXHR, textStatus, errorThrown ) {
949
+ maybeReenableSummaryBtnAfterAJAX( fieldType, addBtn, fieldButton, errorThrown );
950
+ },
951
  } );
952
  }
953
 
954
+ // don't allow page break, embed form, captcha, summary, or section inside section field
955
  function allowDrop( ui ) {
956
+ if ( ! ui.placeholder.parent().hasClass( 'start_divider' ) ) {
957
  return true;
958
  }
959
 
966
  }
967
 
968
  // moving an existing field
969
+ return ! ( ui.item.hasClass( 'edit_field_type_break' ) || ui.item.hasClass( 'edit_field_type_form' ) ||
970
+ ui.item.hasClass( 'edit_field_type_divider' ) );
971
  }
972
 
973
  function loadFields( field_id ) {
1014
 
1015
  initiateMultiselect();
1016
  renumberPageBreaks();
1017
+ },
1018
  } );
1019
  }
1020
 
1021
  function addFieldClick() {
1022
  /*jshint validthis:true */
1023
  var $thisObj = jQuery( this );
1024
+ // there is no real way to disable a <a> (with a valid href attribute) in HTML - https://css-tricks.com/how-to-disable-links/
1025
+ if ( $thisObj.hasClass( 'disabled' ) ) {
1026
+ return false;
1027
+ }
1028
+
1029
  var $button = $thisObj.closest( '.frmbutton' );
1030
+ var fieldType = $button.attr( 'id' );
1031
+
1032
+ var hasBreak = 0;
1033
+ if ( 'summary' === fieldType ) {
1034
+ // We'll optimistically disable $button now. We'll re-enable if AJAX fails
1035
+ disableSummaryBtnBeforeAJAX( $thisObj, $button );
1036
+
1037
+ hasBreak = $newFields.children( 'li[data-type="break"]' ).length > 0 ? 1 : 0;
1038
+ }
1039
+
1040
+ var form_id = this_form_id;
1041
+
1042
  jQuery.ajax( {
1043
  type: 'POST',
1044
  url: ajaxurl,
1045
  data: {
1046
  action: 'frm_insert_field',
1047
  form_id: form_id,
1048
+ field_type: fieldType,
1049
  section_id: 0,
1050
+ nonce: frmGlobal.nonce,
1051
+ has_break: hasBreak,
1052
  },
1053
  success: function( msg ) {
1054
  document.getElementById( 'frm_form_editor_container' ).classList.add( 'frm-has-fields' );
1055
  $newFields.append( msg );
1056
  afterAddField( msg, true );
1057
+ },
1058
+ error: function( jqXHR, textStatus, errorThrown ) {
1059
+ maybeReenableSummaryBtnAfterAJAX( fieldType, $thisObj, $button, errorThrown );
1060
+ },
1061
  } );
1062
  return false;
1063
  }
1064
 
1065
+ function disableSummaryBtnBeforeAJAX( addBtn, fieldButton ) {
1066
+ addBtn.addClass( 'disabled' );
1067
+ fieldButton.draggable( 'disable' );
1068
+ }
1069
+
1070
+ function reenableAddSummaryBtn() {
1071
+ var frmBtn = jQuery( 'li#summary' );
1072
+ var addFieldLink = frmBtn.children( '.frm_add_field' );
1073
+ frmBtn.draggable( 'enable' );
1074
+ addFieldLink.removeClass( 'disabled' );
1075
+ }
1076
+
1077
+ function maybeDisableAddSummaryBtn() {
1078
+ if ( formHasSummaryField() ) {
1079
+ disableAddSummaryBtn();
1080
+ }
1081
+ }
1082
+
1083
+ function disableAddSummaryBtn() {
1084
+ var frmBtn = jQuery( 'li#summary' );
1085
+ var addFieldLink = frmBtn.children( '.frm_add_field' );
1086
+ frmBtn.draggable( 'disable' );
1087
+ addFieldLink.addClass( 'disabled' );
1088
+ }
1089
+
1090
+ function maybeReenableSummaryBtnAfterAJAX( fieldType, addBtn, fieldButton, errorThrown ) {
1091
+ alert( errorThrown + '. Please try again.' );
1092
+ if ( 'summary' === fieldType ) {
1093
+ addBtn.removeClass( 'disabled' );
1094
+ fieldButton.draggable( 'enable' );
1095
+ }
1096
+ }
1097
+
1098
+ function formHasSummaryField() {
1099
+ // .edit_field_type_summary is a better selector here in order to also cover fields loaded by AJAX
1100
+ return $newFields.children( 'li.edit_field_type_summary' ).length > 0;
1101
+ }
1102
+
1103
  function duplicateField() {
1104
  /*jshint validthis:true */
1105
  var thisField = jQuery( this ).closest( 'li' );
1117
  field_id: field_id,
1118
  form_id: this_form_id,
1119
  children: children,
1120
+ nonce: frmGlobal.nonce,
1121
  },
1122
  success: function( msg ) {
1123
  thisField.after( msg );
1124
  updateFieldOrder();
1125
  afterAddField( msg, false );
1126
+ },
1127
  } );
1128
  return false;
1129
  }
1170
  container.scroll( {
1171
  top: container.scrollHeight,
1172
  left: 0,
1173
+ behavior: 'smooth',
1174
  } );
1175
  }
1176
 
1201
 
1202
  if ( typeof animate === 'undefined' ) {
1203
  jQuery( container ).scrollTop(newPos);
1204
+ } else {
1205
  // TODO: smooth scroll
1206
  jQuery( container ).animate({scrollTop: newPos}, 500);
1207
  }
1338
  return /\[id\]|\[key\]|\[if\s\w+\]|\[foreach\s\w+\]|\[created-at(\s*)?/g;
1339
  }
1340
 
1341
+ function isSummaryCalcBox( box ) {
1342
+ var list = jQuery( box ).find( '.frm_code_list' );
1343
+ return 1 === list.length && list.hasClass( 'frm_js_summary_list' );
1344
+ }
1345
+
1346
+ function extractExcludedOptions( exclude ) {
1347
+ var opts = [];
1348
+ for ( var i = 0; i < exclude.length; i++ ) {
1349
+ if ( exclude[ i ].startsWith( '[' ) ) {
1350
+ opts.push( exclude[ i ] );
1351
+ // remove it
1352
+ exclude.splice( i, 1 );
1353
+ // https://love2dev.com/blog/javascript-remove-from-array/#remove-from-array-splice-value
1354
+ i--;
1355
+ }
1356
+ }
1357
+
1358
+ return opts;
1359
+ }
1360
+
1361
+ function hasExcludedOption( field, excludedOpts ) {
1362
+ var hasOption = false;
1363
+ for ( var i = 0; i < excludedOpts.length; i++ ) {
1364
+ var inputs = document.getElementsByName( getFieldOptionInputName( excludedOpts[ i ], field.fieldId ) );
1365
+ // 2nd condition checks that there's at least one non-empty value
1366
+ if ( inputs.length && jQuery( inputs[0] ).val() ) {
1367
+ hasOption = true;
1368
+ break;
1369
+ }
1370
+ }
1371
+ return hasOption;
1372
+ }
1373
+
1374
+ function getFieldOptionInputName( opt, fieldId ) {
1375
+ var at = opt.indexOf( ']' );
1376
+ return 'field_options' + opt.substring( 0, at ) + '_' + fieldId + opt.substring( at );
1377
+ }
1378
+
1379
  function popCalcFields( v, force ) {
1380
  var box, exclude, fields, i, list,
1381
  p = jQuery( v ).closest( '.frm-single-settings' ),
1385
  return;
1386
  }
1387
 
1388
+ var isSummary = isSummaryCalcBox( v );
1389
+
1390
  var form_id = jQuery( 'input[name="id"]' ).val();
1391
  var fieldId = p.find( 'input[name="frm_fields_submitted[]"]' ).val();
1392
 
1396
  box = document.getElementById( 'frm-calc-box-' + fieldId );
1397
  }
1398
 
1399
+ exclude = getExcludeArray( box, isSummary );
1400
+ var excludedOpts = extractExcludedOptions( exclude );
1401
+
1402
  fields = getFieldList();
1403
  list = document.getElementById( 'frm-calc-list-' + fieldId );
1404
  list.innerHTML = '';
1405
 
1406
  for ( i = 0; i < fields.length; i++ ) {
1407
+ if ( exclude.includes( fields[ i ].fieldType ) ||
1408
+ ( excludedOpts.length && hasExcludedOption( fields[ i ], excludedOpts ) ) ) {
1409
  continue;
1410
  }
1411
+
1412
  var span = document.createElement( 'span' );
1413
  span.appendChild( document.createTextNode( '[' + fields[i].fieldId + ']' ) );
1414
 
1427
  }
1428
  }
1429
 
1430
+ function getExcludeArray( calcBox, isSummary ) {
1431
+ var exclude = JSON.parse( calcBox.getElementsByClassName( 'frm_code_list' )[0].getAttribute( 'data-exclude' ) );
1432
+
1433
+ if ( isSummary ) {
1434
+ // includedExtras are those that are normally excluded from the summary but the form owner can choose to include,
1435
+ // when they have been chosen to be included, then they can now be manually excluded in the calc box.
1436
+ var includedExtras = getIncludedExtras();
1437
+ if ( includedExtras.length ) {
1438
+ for ( var i = 0; i < exclude.length; i++ ) {
1439
+ if ( includedExtras.includes( exclude[ i ] ) ) {
1440
+ // remove it
1441
+ exclude.splice( i, 1 );
1442
+ // https://love2dev.com/blog/javascript-remove-from-array/#remove-from-array-splice-value
1443
+ i--;
1444
+ }
1445
+ }
1446
+ }
1447
+ }
1448
+
1449
+ return exclude;
1450
+ }
1451
+
1452
+ function getIncludedExtras() {
1453
+ var checked = [];
1454
+ var checkboxes = document.getElementsByClassName( 'frm_include_extras_field' );
1455
+
1456
+ for ( var i = 0; i < checkboxes.length; i++ ) {
1457
+ if ( checkboxes[i].checked ) {
1458
+ checked.push( checkboxes[i].value );
1459
+ }
1460
+ }
1461
+
1462
+ return checked;
1463
+ }
1464
+
1465
+ function rePopCalcFieldsForSummary() {
1466
+ popCalcFields( jQuery( '.frm-inline-modal.postbox:has(.frm_js_summary_list)' )[0], true );
1467
+ }
1468
+
1469
  function getFieldList() {
1470
  var i, fields = [],
1471
  allFields = document.querySelectorAll( 'li.frm_field_box' );
1931
  if ( $thisField.data( 'type' ) === 'break' ) {
1932
  renumberPageBreaks();
1933
  }
1934
+ if ( $thisField.data( 'type' ) === 'summary' ) {
1935
+ reenableAddSummaryBtn();
1936
+ }
1937
  if ( jQuery( '#frm-show-fields li' ).length === 0 ) {
1938
  document.getElementById( 'frm_form_editor_container' ).classList.remove( 'frm-has-fields' );
1939
  } else if ( $section.length ) {
2634
  }
2635
 
2636
  function updateFieldOrder() {
2637
+ var i;
2638
  renumberPageBreaks();
2639
  jQuery( '#frm-show-fields' ).each( function( i ) {
2640
  var fields = jQuery( 'li.frm_field_box', this );
2641
+ for ( i = 0; i < fields.length; i ++ ) {
2642
  var fieldId = fields[ i ].getAttribute( 'data-fid' ),
2643
  field = jQuery( 'input[name="field_options[field_order_' + fieldId + ']"]' ),
2644
  currentOrder = field.val(),
3662
  }
3663
 
3664
  function insertFieldCode( element, variable ) {
3665
+ var rich = false,
 
3666
  element_id = element;
3667
  if ( typeof element === 'object' ) {
3668
  if ( element.hasClass( 'frm_noallow' ) ) {
3698
 
3699
  var content_box = jQuery( document.getElementById( element_id ) );
3700
  if ( typeof element.attr('data-shortcode') === 'undefined' && ( ! content_box.length || typeof content_box.attr('data-shortcode') === 'undefined' ) ) {
3701
+ // this helps to exclude those that don't want shortcode-like inserted content e.g. frm-pro's summary field
3702
+ var doShortcode = element.parents( 'ul.frm_code_list' ).attr( 'data-shortcode' );
3703
+ if ( doShortcode === 'undefined' || doShortcode !== 'no' ) {
3704
+ variable = '[' + variable + ']';
3705
+ }
3706
  }
3707
 
3708
  if ( rich ) {
4145
  return false;
4146
  }
4147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4148
  function saveAddonLicense() {
4149
  /*jshint validthis:true */
4150
  var button = jQuery( this );
4151
  var buttonName = this.name;
4152
+ var pluginSlug = this.getAttribute( 'data-plugin' );
4153
  var action = buttonName.replace( 'edd_' + pluginSlug + '_license_', '' );
4154
  var license = document.getElementById( 'edd_' + pluginSlug + '_license_key' ).value;
4155
  jQuery.ajax( {
4742
  }
4743
  success( response );
4744
  }
4745
+ };
4746
  xmlHttp.setRequestHeader( 'X-Requested-With', 'XMLHttpRequest' );
4747
  xmlHttp.setRequestHeader( 'Content-type', 'application/x-www-form-urlencoded' );
4748
  xmlHttp.send( params );
4817
  w.off( 'beforeunload.edit-post' );
4818
  }
4819
 
4820
+ function maybeChangeEmbedFormMsg() {
4821
+ var fieldId = jQuery( this ).closest( '.frm-single-settings' ).data( 'fid' );
4822
+ var fieldItem = document.getElementById( 'frm_field_id_' + fieldId );
4823
+ if ( null === fieldItem || 'form' !== fieldItem.dataset['type'] ) {
4824
+ return;
4825
+ }
4826
+
4827
+ fieldItem = jQuery( fieldItem );
4828
+
4829
+ if ( this.options[ this.selectedIndex ].value ) {
4830
+ fieldItem.find( '.frm-not-set' )[0].classList.add( 'frm_hidden' );
4831
+ var embedMsg = fieldItem.find( '.frm-embed-message' );
4832
+ embedMsg.html( embedMsg.data( 'embedmsg' ) + this.options[ this.selectedIndex ].text );
4833
+ fieldItem.find( '.frm-embed-field-placeholder' )[0].classList.remove( 'frm_hidden' );
4834
+ } else {
4835
+ fieldItem.find( '.frm-not-set' )[0].classList.remove( 'frm_hidden' );
4836
+ fieldItem.find( '.frm-embed-field-placeholder' )[0].classList.add( 'frm_hidden' );
4837
+ }
4838
+ }
4839
+
4840
  return {
4841
  init: function() {
4842
  s = {};
4944
  autoSearch.keyup();
4945
  }
4946
 
4947
+ // Initialize Formidable Connection.
4948
+ FrmFormsConnect.init();
4949
 
4950
  jQuery( document ).on( 'click', '.frm-install-addon', installAddon );
4951
  jQuery( document ).on( 'click', '.frm-activate-addon', activateAddon );
5057
  $builderForm.on( 'click', '.frm-inline-modal .dismiss', dismissInlineModal );
5058
  jQuery( document ).on( 'change', '[data-frmchange]', changeInputtedValue );
5059
 
5060
+ $builderForm.on( 'change', '.frm_include_extras_field', rePopCalcFieldsForSummary );
5061
+ $builderForm.on( 'change', 'select[name^="field_options[form_select_"]', maybeChangeEmbedFormMsg );
5062
+
5063
  initBulkOptionsOverlay();
5064
  hideEmptyEle();
5065
+ maybeDisableAddSummaryBtn();
5066
  },
5067
 
5068
  settingsInit: function() {
5112
  if ( e.target.classList.contains( 'frm-show-box' ) ) {
5113
  return;
5114
  }
5115
+ var sidebar = document.getElementById( 'frm_adv_info' ),
5116
  isChild = jQuery( e.target ).closest( '#frm_adv_info' ).length > 0;
5117
 
5118
  if ( sidebar.getAttribute( 'data-fills' ) === e.target.id && typeof e.target.id !== 'undefined' ) {
5441
 
5442
  // activate addon licenses
5443
  var licenseTab = document.getElementById( 'licenses_settings' );
5444
+ if ( licenseTab !== null ) {
5445
+ jQuery( licenseTab ).on( 'click', '.edd_frm_save_license', saveAddonLicense );
5446
+ }
5447
 
5448
  jQuery( '#frm-dismissable-cta .dismiss' ).click( function( event ) {
5449
  event.preventDefault();
5606
  return this.replace( /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '' );
5607
  };
5608
  }
5609
+ // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith#Polyfill
5610
+ if (!String.prototype.startsWith) {
5611
+ Object.defineProperty(String.prototype, 'startsWith', {
5612
+ value: function(search, pos) {
5613
+ pos = !pos || pos < 0 ? 0 : +pos;
5614
+ return this.substring(pos, pos + search.length) === search;
5615
+ }
5616
+ });
5617
+ }
languages/formidable.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Formidable Forms plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Formidable Forms 4.02.04\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2019-09-18T22:28:14+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.1.0\n"
15
  "X-Domain: formidable\n"
@@ -111,7 +111,7 @@ msgstr ""
111
  msgid "Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s."
112
  msgstr ""
113
 
114
- #: classes/models/FrmAddon.php:469
115
  msgid "Oops! You forgot to enter your license number."
116
  msgstr ""
117
 
@@ -140,29 +140,33 @@ msgstr ""
140
  msgid "Oops! That is the wrong license key for this plugin."
141
  msgstr ""
142
 
143
- #: classes/models/FrmAddon.php:574
 
 
 
 
144
  msgid "That license was removed successfully"
145
  msgstr ""
146
 
147
- #: classes/models/FrmAddon.php:576
148
  msgid "There was an error deactivating your license."
149
  msgstr ""
150
 
151
- #: classes/models/FrmAddon.php:609
152
  msgid "Your License Key was invalid"
153
  msgstr ""
154
 
155
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
156
- #: classes/models/FrmAddon.php:613
157
  msgid "You had an error communicating with the Formidable API. %1$sClick here%2$s for more information."
158
  msgstr ""
159
 
160
- #: classes/models/FrmAddon.php:616
161
  msgid "You had an HTTP error connecting to the Formidable API"
162
  msgstr ""
163
 
164
  #. translators: %1$s: Error code, %2$s: Error message
165
- #: classes/models/FrmAddon.php:627
166
  msgid "There was a %1$s error: %2$s"
167
  msgstr ""
168
 
@@ -177,21 +181,21 @@ msgid "User Information"
177
  msgstr ""
178
 
179
  #: classes/models/FrmEmail.php:304
180
- #: classes/models/FrmEntryValues.php:207
181
  msgid "User-Agent (Browser/OS)"
182
  msgstr ""
183
 
184
  #: classes/models/FrmEmail.php:305
185
- #: classes/models/FrmEntryValues.php:212
186
  msgid "Referrer"
187
  msgstr ""
188
 
189
  #: classes/models/FrmEmail.php:321
190
- #: classes/models/FrmEntryValues.php:202
191
  msgid "IP Address"
192
  msgstr ""
193
 
194
- #: classes/models/FrmFieldValue.php:145
195
  msgid "The display value has not been prepared. Please use the prepare_display_value() method before calling get_displayed_value()."
196
  msgstr ""
197
 
@@ -355,6 +359,10 @@ msgstr ""
355
  msgid "Quiz Score"
356
  msgstr ""
357
 
 
 
 
 
358
  #: classes/models/FrmDb.php:430
359
  msgid "Use the query in an array format so it can be properly prepared."
360
  msgstr ""
@@ -539,42 +547,43 @@ msgid "bold"
539
  msgstr ""
540
 
541
  #: classes/controllers/FrmAddonsController.php:10
 
542
  msgid "Add-Ons"
543
  msgstr ""
544
 
545
- #: classes/controllers/FrmAddonsController.php:15
546
- #: classes/controllers/FrmAddonsController.php:16
547
  #: classes/views/shared/upgrade_overlay.php:54
548
  #: classes/views/frm-fields/back-end/smart-values.php:11
549
  msgid "Upgrade to Pro"
550
  msgstr ""
551
 
552
- #: classes/controllers/FrmAddonsController.php:48
553
  msgid "There are no plugins on your site that require a license"
554
  msgstr ""
555
 
556
- #: classes/controllers/FrmAddonsController.php:472
557
  msgid "Installed"
558
  msgstr ""
559
 
560
- #: classes/controllers/FrmAddonsController.php:477
561
- #: classes/helpers/FrmAppHelper.php:2148
562
  msgid "Active"
563
  msgstr ""
564
 
565
- #: classes/controllers/FrmAddonsController.php:482
566
  msgid "Not Installed"
567
  msgstr ""
568
 
569
- #: classes/controllers/FrmAddonsController.php:711
570
  msgid "Your plugin has been installed. Please reload the page to see more options."
571
  msgstr ""
572
 
573
- #: classes/controllers/FrmAddonsController.php:738
574
  msgid "Sorry, you're site requires FTP authentication. Please install plugins manaully."
575
  msgstr ""
576
 
577
- #: classes/controllers/FrmAddonsController.php:781
578
  msgid "Your plugin has been activated. Please reload the page to see more options."
579
  msgstr ""
580
 
@@ -612,11 +621,6 @@ msgstr ""
612
  msgid "Build a Form"
613
  msgstr ""
614
 
615
- #. translators: %1$s: Start link HTML, %2$s: End link HTML, %3$s: Start link HTML, %4$s: End link HTML
616
- #: classes/controllers/FrmAppController.php:246
617
- msgid "This site has been previously authorized to run Formidable Forms. %1$sInstall Formidable Pro%2$s or %3$sdeauthorize%4$s this site to continue running the free version and remove this message."
618
- msgstr ""
619
-
620
  #: classes/controllers/FrmXMLController.php:6
621
  #: classes/views/xml/import_form.php:5
622
  msgid "Import/Export"
@@ -1153,23 +1157,23 @@ msgstr ""
1153
  msgid "%1$sClick here%2$s if you are not automatically redirected."
1154
  msgstr ""
1155
 
1156
- #: classes/controllers/FrmFieldsController.php:339
1157
  msgid "Default Value (Text)"
1158
  msgstr ""
1159
 
1160
- #: classes/controllers/FrmFieldsController.php:346
1161
  msgid "Default Value (Calculation)"
1162
  msgstr ""
1163
 
1164
- #: classes/controllers/FrmFieldsController.php:350
1165
  msgid "Calculator forms"
1166
  msgstr ""
1167
 
1168
- #: classes/controllers/FrmFieldsController.php:355
1169
  msgid "Default Value (Lookup)"
1170
  msgstr ""
1171
 
1172
- #: classes/controllers/FrmFieldsController.php:359
1173
  msgid "Lookup fields"
1174
  msgstr ""
1175
 
@@ -1287,7 +1291,7 @@ msgstr ""
1287
  #: classes/views/frm-forms/new-form-overlay.php:31
1288
  #: classes/views/shared/confirm-overlay.php:14
1289
  #: classes/views/shared/admin-header.php:44
1290
- #: classes/helpers/FrmAppHelper.php:2116
1291
  msgid "Cancel"
1292
  msgstr ""
1293
 
@@ -1401,19 +1405,19 @@ msgstr ""
1401
  msgid "Delete Field"
1402
  msgstr ""
1403
 
1404
- #: classes/views/frm-forms/add_field.php:21
1405
  msgid "Duplicate Section"
1406
  msgstr ""
1407
 
1408
- #: classes/views/frm-forms/add_field.php:21
1409
  msgid "Duplicate Field"
1410
  msgstr ""
1411
 
1412
- #: classes/views/frm-forms/add_field.php:36
1413
  msgid "(Collapsed)"
1414
  msgstr ""
1415
 
1416
- #: classes/views/frm-forms/add_field.php:73
1417
  msgid "Your section has no fields. Drag fields here to add them to this section."
1418
  msgstr ""
1419
 
@@ -1762,7 +1766,7 @@ msgstr ""
1762
  #: classes/views/addons/list.php:56
1763
  #: classes/views/addons/list.php:57
1764
  #: classes/views/shared/upgrade_overlay.php:27
1765
- #: classes/helpers/FrmAppHelper.php:2147
1766
  msgid "Install"
1767
  msgstr ""
1768
 
@@ -1783,7 +1787,7 @@ msgid "Dismiss this message"
1783
  msgstr ""
1784
 
1785
  #: classes/views/shared/confirm-overlay.php:10
1786
- #: classes/helpers/FrmAppHelper.php:2122
1787
  msgid "Are you sure?"
1788
  msgstr ""
1789
 
@@ -1826,7 +1830,6 @@ msgstr ""
1826
 
1827
  #: classes/views/shared/upgrade_overlay.php:59
1828
  #: classes/views/frm-fields/back-end/smart-values.php:15
1829
- #: classes/views/frm-settings/license_box.php:14
1830
  msgid "Already purchased?"
1831
  msgstr ""
1832
 
@@ -1898,7 +1901,7 @@ msgstr ""
1898
 
1899
  #: classes/views/shared/mb_adv_info.php:90
1900
  #: classes/helpers/FrmCSVExportHelper.php:154
1901
- #: classes/helpers/FrmAppHelper.php:2099
1902
  msgid "ID"
1903
  msgstr ""
1904
 
@@ -2523,7 +2526,7 @@ msgid "Label Position"
2523
  msgstr ""
2524
 
2525
  #: classes/views/frm-fields/back-end/settings.php:265
2526
- #: classes/helpers/FrmAppHelper.php:2117
2527
  msgid "Default"
2528
  msgstr ""
2529
 
@@ -2715,8 +2718,16 @@ msgstr ""
2715
  msgid "Get Formidable Forms Pro Today and Unlock all the Powerful Features »"
2716
  msgstr ""
2717
 
 
 
 
 
 
 
 
 
2718
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
2719
- #: classes/views/frm-settings/license_box.php:6
2720
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
2721
  msgstr ""
2722
 
@@ -3266,7 +3277,7 @@ msgid "Draft"
3266
  msgstr ""
3267
 
3268
  #: classes/helpers/FrmFieldsHelper.php:284
3269
- #: classes/helpers/FrmAppHelper.php:2127
3270
  msgid "The entered values do not match"
3271
  msgstr ""
3272
 
@@ -3277,7 +3288,7 @@ msgstr ""
3277
 
3278
  #: classes/helpers/FrmFieldsHelper.php:454
3279
  #: classes/helpers/FrmFieldsHelper.php:455
3280
- #: classes/helpers/FrmAppHelper.php:2131
3281
  msgid "New Option"
3282
  msgstr ""
3283
 
@@ -4771,7 +4782,7 @@ msgid "If you leave the subject blank, the default will be used: %1$s Form submi
4771
  msgstr ""
4772
 
4773
  #: classes/helpers/FrmAppHelper.php:2058
4774
- #: classes/helpers/FrmAppHelper.php:2136
4775
  msgid "Please wait while your site updates."
4776
  msgstr ""
4777
 
@@ -4779,399 +4790,399 @@ msgstr ""
4779
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
4780
  msgstr ""
4781
 
4782
- #: classes/helpers/FrmAppHelper.php:2061
4783
- #: classes/helpers/FrmAppHelper.php:2095
4784
  msgid "Loading&hellip;"
4785
  msgstr ""
4786
 
4787
- #: classes/helpers/FrmAppHelper.php:2096
4788
  msgid "Remove"
4789
  msgstr ""
4790
 
4791
- #: classes/helpers/FrmAppHelper.php:2100
4792
  msgid "No results match"
4793
  msgstr ""
4794
 
4795
- #: classes/helpers/FrmAppHelper.php:2101
4796
  msgid "That file looks like Spam."
4797
  msgstr ""
4798
 
4799
- #: classes/helpers/FrmAppHelper.php:2102
4800
  msgid "There is an error in the calculation in the field with key"
4801
  msgstr ""
4802
 
4803
- #: classes/helpers/FrmAppHelper.php:2103
4804
  msgid "Please complete the preceding required fields before uploading a file."
4805
  msgstr ""
4806
 
4807
- #: classes/helpers/FrmAppHelper.php:2110
4808
  msgid "(Click to add description)"
4809
  msgstr ""
4810
 
4811
- #: classes/helpers/FrmAppHelper.php:2111
4812
  msgid "(Blank)"
4813
  msgstr ""
4814
 
4815
- #: classes/helpers/FrmAppHelper.php:2112
4816
  msgid "(no label)"
4817
  msgstr ""
4818
 
4819
- #: classes/helpers/FrmAppHelper.php:2113
4820
  msgid "Saving"
4821
  msgstr ""
4822
 
4823
- #: classes/helpers/FrmAppHelper.php:2114
4824
  msgid "Saved"
4825
  msgstr ""
4826
 
4827
- #: classes/helpers/FrmAppHelper.php:2115
4828
  msgid "OK"
4829
  msgstr ""
4830
 
4831
- #: classes/helpers/FrmAppHelper.php:2118
4832
  msgid "Clear default value when typing"
4833
  msgstr ""
4834
 
4835
- #: classes/helpers/FrmAppHelper.php:2119
4836
  msgid "Do not clear default value when typing"
4837
  msgstr ""
4838
 
4839
- #: classes/helpers/FrmAppHelper.php:2120
4840
  msgid "Default value will pass form validation"
4841
  msgstr ""
4842
 
4843
- #: classes/helpers/FrmAppHelper.php:2121
4844
  msgid "Default value will NOT pass form validation"
4845
  msgstr ""
4846
 
4847
- #: classes/helpers/FrmAppHelper.php:2123
4848
  msgid "Are you sure you want to delete this field and all data associated with it?"
4849
  msgstr ""
4850
 
4851
- #: classes/helpers/FrmAppHelper.php:2124
4852
  msgid "WARNING: This will delete all fields inside of the section as well."
4853
  msgstr ""
4854
 
4855
- #: classes/helpers/FrmAppHelper.php:2125
4856
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
4857
  msgstr ""
4858
 
4859
- #: classes/helpers/FrmAppHelper.php:2128
4860
  msgid "Enter Email"
4861
  msgstr ""
4862
 
4863
- #: classes/helpers/FrmAppHelper.php:2129
4864
  msgid "Confirm Email"
4865
  msgstr ""
4866
 
4867
- #: classes/helpers/FrmAppHelper.php:2130
4868
  msgid "Conditional content here"
4869
  msgstr ""
4870
 
4871
- #: classes/helpers/FrmAppHelper.php:2132
4872
  msgid "In certain browsers (e.g. Firefox) text will not display correctly if the field height is too small relative to the field padding and text size. Please increase your field height or decrease your field padding."
4873
  msgstr ""
4874
 
4875
- #: classes/helpers/FrmAppHelper.php:2133
4876
  msgid "Enter Password"
4877
  msgstr ""
4878
 
4879
- #: classes/helpers/FrmAppHelper.php:2134
4880
  msgid "Confirm Password"
4881
  msgstr ""
4882
 
4883
- #: classes/helpers/FrmAppHelper.php:2135
4884
  msgid "Import Complete"
4885
  msgstr ""
4886
 
4887
- #: classes/helpers/FrmAppHelper.php:2137
4888
  msgid "Warning: There is no way to retrieve unsaved entries."
4889
  msgstr ""
4890
 
4891
- #: classes/helpers/FrmAppHelper.php:2138
4892
  msgid "Private"
4893
  msgstr ""
4894
 
4895
- #: classes/helpers/FrmAppHelper.php:2141
4896
  msgid "No new licenses were found"
4897
  msgstr ""
4898
 
4899
- #: classes/helpers/FrmAppHelper.php:2142
4900
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
4901
  msgstr ""
4902
 
4903
- #: classes/helpers/FrmAppHelper.php:2143
4904
  msgid "This calculation may have shortcodes that work in Views but not forms."
4905
  msgstr ""
4906
 
4907
- #: classes/helpers/FrmAppHelper.php:2144
4908
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
4909
  msgstr ""
4910
 
4911
- #: classes/helpers/FrmAppHelper.php:2145
4912
  msgid "Please enter a Repeat Limit that is greater than 1."
4913
  msgstr ""
4914
 
4915
- #: classes/helpers/FrmAppHelper.php:2146
4916
  msgid "Please select a limit between 0 and 200."
4917
  msgstr ""
4918
 
4919
- #: classes/helpers/FrmAppHelper.php:2171
4920
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
4921
  msgstr ""
4922
 
4923
- #: classes/helpers/FrmAppHelper.php:2198
4924
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
4925
  msgstr ""
4926
 
4927
- #: classes/helpers/FrmAppHelper.php:2226
4928
  msgid "The version of PHP on your server is too low. If this is not corrected, you may see issues with Formidable Forms. Please contact your web host and ask to be updated to PHP 7.0+."
4929
  msgstr ""
4930
 
4931
- #: classes/helpers/FrmAppHelper.php:2232
4932
  msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
4933
  msgstr ""
4934
 
4935
- #: classes/helpers/FrmAppHelper.php:2246
4936
  msgid "English"
4937
  msgstr ""
4938
 
4939
- #: classes/helpers/FrmAppHelper.php:2247
4940
  msgid "Afrikaans"
4941
  msgstr ""
4942
 
4943
- #: classes/helpers/FrmAppHelper.php:2248
4944
  msgid "Albanian"
4945
  msgstr ""
4946
 
4947
- #: classes/helpers/FrmAppHelper.php:2249
4948
  msgid "Arabic"
4949
  msgstr ""
4950
 
4951
- #: classes/helpers/FrmAppHelper.php:2250
4952
  msgid "Armenian"
4953
  msgstr ""
4954
 
4955
- #: classes/helpers/FrmAppHelper.php:2251
4956
  msgid "Azerbaijani"
4957
  msgstr ""
4958
 
4959
- #: classes/helpers/FrmAppHelper.php:2252
4960
  msgid "Basque"
4961
  msgstr ""
4962
 
4963
- #: classes/helpers/FrmAppHelper.php:2253
4964
  msgid "Bosnian"
4965
  msgstr ""
4966
 
4967
- #: classes/helpers/FrmAppHelper.php:2254
4968
  msgid "Bulgarian"
4969
  msgstr ""
4970
 
4971
- #: classes/helpers/FrmAppHelper.php:2255
4972
  msgid "Catalan"
4973
  msgstr ""
4974
 
4975
- #: classes/helpers/FrmAppHelper.php:2256
4976
  msgid "Chinese Hong Kong"
4977
  msgstr ""
4978
 
4979
- #: classes/helpers/FrmAppHelper.php:2257
4980
  msgid "Chinese Simplified"
4981
  msgstr ""
4982
 
4983
- #: classes/helpers/FrmAppHelper.php:2258
4984
  msgid "Chinese Traditional"
4985
  msgstr ""
4986
 
4987
- #: classes/helpers/FrmAppHelper.php:2259
4988
  msgid "Croatian"
4989
  msgstr ""
4990
 
4991
- #: classes/helpers/FrmAppHelper.php:2260
4992
  msgid "Czech"
4993
  msgstr ""
4994
 
4995
- #: classes/helpers/FrmAppHelper.php:2261
4996
  msgid "Danish"
4997
  msgstr ""
4998
 
4999
- #: classes/helpers/FrmAppHelper.php:2262
5000
  msgid "Dutch"
5001
  msgstr ""
5002
 
5003
- #: classes/helpers/FrmAppHelper.php:2263
5004
  msgid "English/UK"
5005
  msgstr ""
5006
 
5007
- #: classes/helpers/FrmAppHelper.php:2264
5008
  msgid "Esperanto"
5009
  msgstr ""
5010
 
5011
- #: classes/helpers/FrmAppHelper.php:2265
5012
  msgid "Estonian"
5013
  msgstr ""
5014
 
5015
- #: classes/helpers/FrmAppHelper.php:2266
5016
  msgid "Faroese"
5017
  msgstr ""
5018
 
5019
- #: classes/helpers/FrmAppHelper.php:2267
5020
  msgid "Farsi/Persian"
5021
  msgstr ""
5022
 
5023
- #: classes/helpers/FrmAppHelper.php:2268
5024
  msgid "Filipino"
5025
  msgstr ""
5026
 
5027
- #: classes/helpers/FrmAppHelper.php:2269
5028
  msgid "Finnish"
5029
  msgstr ""
5030
 
5031
- #: classes/helpers/FrmAppHelper.php:2270
5032
  msgid "French"
5033
  msgstr ""
5034
 
5035
- #: classes/helpers/FrmAppHelper.php:2271
5036
  msgid "French/Canadian"
5037
  msgstr ""
5038
 
5039
- #: classes/helpers/FrmAppHelper.php:2272
5040
  msgid "French/Swiss"
5041
  msgstr ""
5042
 
5043
- #: classes/helpers/FrmAppHelper.php:2273
5044
  msgid "German"
5045
  msgstr ""
5046
 
5047
- #: classes/helpers/FrmAppHelper.php:2274
5048
  msgid "German/Austria"
5049
  msgstr ""
5050
 
5051
- #: classes/helpers/FrmAppHelper.php:2275
5052
  msgid "German/Switzerland"
5053
  msgstr ""
5054
 
5055
- #: classes/helpers/FrmAppHelper.php:2276
5056
  msgid "Greek"
5057
  msgstr ""
5058
 
5059
- #: classes/helpers/FrmAppHelper.php:2277
5060
- #: classes/helpers/FrmAppHelper.php:2278
5061
  msgid "Hebrew"
5062
  msgstr ""
5063
 
5064
- #: classes/helpers/FrmAppHelper.php:2279
5065
  msgid "Hindi"
5066
  msgstr ""
5067
 
5068
- #: classes/helpers/FrmAppHelper.php:2280
5069
  msgid "Hungarian"
5070
  msgstr ""
5071
 
5072
- #: classes/helpers/FrmAppHelper.php:2281
5073
  msgid "Icelandic"
5074
  msgstr ""
5075
 
5076
- #: classes/helpers/FrmAppHelper.php:2282
5077
  msgid "Indonesian"
5078
  msgstr ""
5079
 
5080
- #: classes/helpers/FrmAppHelper.php:2283
5081
  msgid "Italian"
5082
  msgstr ""
5083
 
5084
- #: classes/helpers/FrmAppHelper.php:2284
5085
  msgid "Japanese"
5086
  msgstr ""
5087
 
5088
- #: classes/helpers/FrmAppHelper.php:2285
5089
  msgid "Korean"
5090
  msgstr ""
5091
 
5092
- #: classes/helpers/FrmAppHelper.php:2286
5093
  msgid "Latvian"
5094
  msgstr ""
5095
 
5096
- #: classes/helpers/FrmAppHelper.php:2287
5097
  msgid "Lithuanian"
5098
  msgstr ""
5099
 
5100
- #: classes/helpers/FrmAppHelper.php:2288
5101
  msgid "Malaysian"
5102
  msgstr ""
5103
 
5104
- #: classes/helpers/FrmAppHelper.php:2289
5105
  msgid "Norwegian"
5106
  msgstr ""
5107
 
5108
- #: classes/helpers/FrmAppHelper.php:2290
5109
  msgid "Polish"
5110
  msgstr ""
5111
 
5112
- #: classes/helpers/FrmAppHelper.php:2291
5113
  msgid "Portuguese"
5114
  msgstr ""
5115
 
5116
- #: classes/helpers/FrmAppHelper.php:2292
5117
  msgid "Portuguese/Brazilian"
5118
  msgstr ""
5119
 
5120
- #: classes/helpers/FrmAppHelper.php:2293
5121
  msgid "Portuguese/Portugal"
5122
  msgstr ""
5123
 
5124
- #: classes/helpers/FrmAppHelper.php:2294
5125
  msgid "Romanian"
5126
  msgstr ""
5127
 
5128
- #: classes/helpers/FrmAppHelper.php:2295
5129
  msgid "Russian"
5130
  msgstr ""
5131
 
5132
- #: classes/helpers/FrmAppHelper.php:2296
5133
- #: classes/helpers/FrmAppHelper.php:2297
5134
  msgid "Serbian"
5135
  msgstr ""
5136
 
5137
- #: classes/helpers/FrmAppHelper.php:2298
5138
  msgid "Slovak"
5139
  msgstr ""
5140
 
5141
- #: classes/helpers/FrmAppHelper.php:2299
5142
  msgid "Slovenian"
5143
  msgstr ""
5144
 
5145
- #: classes/helpers/FrmAppHelper.php:2300
5146
  msgid "Spanish"
5147
  msgstr ""
5148
 
5149
- #: classes/helpers/FrmAppHelper.php:2301
5150
  msgid "Spanish/Latin America"
5151
  msgstr ""
5152
 
5153
- #: classes/helpers/FrmAppHelper.php:2302
5154
  msgid "Swedish"
5155
  msgstr ""
5156
 
5157
- #: classes/helpers/FrmAppHelper.php:2303
5158
  msgid "Tamil"
5159
  msgstr ""
5160
 
5161
- #: classes/helpers/FrmAppHelper.php:2304
5162
  msgid "Thai"
5163
  msgstr ""
5164
 
5165
- #: classes/helpers/FrmAppHelper.php:2305
5166
- #: classes/helpers/FrmAppHelper.php:2306
5167
  msgid "Turkish"
5168
  msgstr ""
5169
 
5170
- #: classes/helpers/FrmAppHelper.php:2307
5171
  msgid "Ukranian"
5172
  msgstr ""
5173
 
5174
- #: classes/helpers/FrmAppHelper.php:2308
5175
  msgid "Vietnamese"
5176
  msgstr ""
5177
 
2
  # This file is distributed under the same license as the Formidable Forms plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Formidable Forms 4.03\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2019-09-30T19:03:35+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.1.0\n"
15
  "X-Domain: formidable\n"
111
  msgid "Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s."
112
  msgstr ""
113
 
114
+ #: classes/models/FrmAddon.php:470
115
  msgid "Oops! You forgot to enter your license number."
116
  msgstr ""
117
 
140
  msgid "Oops! That is the wrong license key for this plugin."
141
  msgstr ""
142
 
143
+ #: classes/models/FrmAddon.php:568
144
+ msgid "Refresh downloads"
145
+ msgstr ""
146
+
147
+ #: classes/models/FrmAddon.php:590
148
  msgid "That license was removed successfully"
149
  msgstr ""
150
 
151
+ #: classes/models/FrmAddon.php:592
152
  msgid "There was an error deactivating your license."
153
  msgstr ""
154
 
155
+ #: classes/models/FrmAddon.php:636
156
  msgid "Your License Key was invalid"
157
  msgstr ""
158
 
159
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
160
+ #: classes/models/FrmAddon.php:640
161
  msgid "You had an error communicating with the Formidable API. %1$sClick here%2$s for more information."
162
  msgstr ""
163
 
164
+ #: classes/models/FrmAddon.php:643
165
  msgid "You had an HTTP error connecting to the Formidable API"
166
  msgstr ""
167
 
168
  #. translators: %1$s: Error code, %2$s: Error message
169
+ #: classes/models/FrmAddon.php:654
170
  msgid "There was a %1$s error: %2$s"
171
  msgstr ""
172
 
181
  msgstr ""
182
 
183
  #: classes/models/FrmEmail.php:304
184
+ #: classes/models/FrmEntryValues.php:211
185
  msgid "User-Agent (Browser/OS)"
186
  msgstr ""
187
 
188
  #: classes/models/FrmEmail.php:305
189
+ #: classes/models/FrmEntryValues.php:216
190
  msgid "Referrer"
191
  msgstr ""
192
 
193
  #: classes/models/FrmEmail.php:321
194
+ #: classes/models/FrmEntryValues.php:206
195
  msgid "IP Address"
196
  msgstr ""
197
 
198
+ #: classes/models/FrmFieldValue.php:167
199
  msgid "The display value has not been prepared. Please use the prepare_display_value() method before calling get_displayed_value()."
200
  msgstr ""
201
 
359
  msgid "Quiz Score"
360
  msgstr ""
361
 
362
+ #: classes/models/FrmField.php:160
363
+ msgid "Summary"
364
+ msgstr ""
365
+
366
  #: classes/models/FrmDb.php:430
367
  msgid "Use the query in an array format so it can be properly prepared."
368
  msgstr ""
547
  msgstr ""
548
 
549
  #: classes/controllers/FrmAddonsController.php:10
550
+ #: classes/controllers/FrmAddonsController.php:14
551
  msgid "Add-Ons"
552
  msgstr ""
553
 
554
+ #: classes/controllers/FrmAddonsController.php:19
555
+ #: classes/controllers/FrmAddonsController.php:20
556
  #: classes/views/shared/upgrade_overlay.php:54
557
  #: classes/views/frm-fields/back-end/smart-values.php:11
558
  msgid "Upgrade to Pro"
559
  msgstr ""
560
 
561
+ #: classes/controllers/FrmAddonsController.php:52
562
  msgid "There are no plugins on your site that require a license"
563
  msgstr ""
564
 
565
+ #: classes/controllers/FrmAddonsController.php:476
566
  msgid "Installed"
567
  msgstr ""
568
 
569
+ #: classes/controllers/FrmAddonsController.php:481
570
+ #: classes/helpers/FrmAppHelper.php:2142
571
  msgid "Active"
572
  msgstr ""
573
 
574
+ #: classes/controllers/FrmAddonsController.php:486
575
  msgid "Not Installed"
576
  msgstr ""
577
 
578
+ #: classes/controllers/FrmAddonsController.php:744
579
  msgid "Your plugin has been installed. Please reload the page to see more options."
580
  msgstr ""
581
 
582
+ #: classes/controllers/FrmAddonsController.php:771
583
  msgid "Sorry, you're site requires FTP authentication. Please install plugins manaully."
584
  msgstr ""
585
 
586
+ #: classes/controllers/FrmAddonsController.php:814
587
  msgid "Your plugin has been activated. Please reload the page to see more options."
588
  msgstr ""
589
 
621
  msgid "Build a Form"
622
  msgstr ""
623
 
 
 
 
 
 
624
  #: classes/controllers/FrmXMLController.php:6
625
  #: classes/views/xml/import_form.php:5
626
  msgid "Import/Export"
1157
  msgid "%1$sClick here%2$s if you are not automatically redirected."
1158
  msgstr ""
1159
 
1160
+ #: classes/controllers/FrmFieldsController.php:341
1161
  msgid "Default Value (Text)"
1162
  msgstr ""
1163
 
1164
+ #: classes/controllers/FrmFieldsController.php:348
1165
  msgid "Default Value (Calculation)"
1166
  msgstr ""
1167
 
1168
+ #: classes/controllers/FrmFieldsController.php:352
1169
  msgid "Calculator forms"
1170
  msgstr ""
1171
 
1172
+ #: classes/controllers/FrmFieldsController.php:357
1173
  msgid "Default Value (Lookup)"
1174
  msgstr ""
1175
 
1176
+ #: classes/controllers/FrmFieldsController.php:361
1177
  msgid "Lookup fields"
1178
  msgstr ""
1179
 
1291
  #: classes/views/frm-forms/new-form-overlay.php:31
1292
  #: classes/views/shared/confirm-overlay.php:14
1293
  #: classes/views/shared/admin-header.php:44
1294
+ #: classes/helpers/FrmAppHelper.php:2110
1295
  msgid "Cancel"
1296
  msgstr ""
1297
 
1405
  msgid "Delete Field"
1406
  msgstr ""
1407
 
1408
+ #: classes/views/frm-forms/add_field.php:22
1409
  msgid "Duplicate Section"
1410
  msgstr ""
1411
 
1412
+ #: classes/views/frm-forms/add_field.php:22
1413
  msgid "Duplicate Field"
1414
  msgstr ""
1415
 
1416
+ #: classes/views/frm-forms/add_field.php:37
1417
  msgid "(Collapsed)"
1418
  msgstr ""
1419
 
1420
+ #: classes/views/frm-forms/add_field.php:74
1421
  msgid "Your section has no fields. Drag fields here to add them to this section."
1422
  msgstr ""
1423
 
1766
  #: classes/views/addons/list.php:56
1767
  #: classes/views/addons/list.php:57
1768
  #: classes/views/shared/upgrade_overlay.php:27
1769
+ #: classes/helpers/FrmAppHelper.php:2141
1770
  msgid "Install"
1771
  msgstr ""
1772
 
1787
  msgstr ""
1788
 
1789
  #: classes/views/shared/confirm-overlay.php:10
1790
+ #: classes/helpers/FrmAppHelper.php:2116
1791
  msgid "Are you sure?"
1792
  msgstr ""
1793
 
1830
 
1831
  #: classes/views/shared/upgrade_overlay.php:59
1832
  #: classes/views/frm-fields/back-end/smart-values.php:15
 
1833
  msgid "Already purchased?"
1834
  msgstr ""
1835
 
1901
 
1902
  #: classes/views/shared/mb_adv_info.php:90
1903
  #: classes/helpers/FrmCSVExportHelper.php:154
1904
+ #: classes/helpers/FrmAppHelper.php:2093
1905
  msgid "ID"
1906
  msgstr ""
1907
 
2526
  msgstr ""
2527
 
2528
  #: classes/views/frm-fields/back-end/settings.php:265
2529
+ #: classes/helpers/FrmAppHelper.php:2111
2530
  msgid "Default"
2531
  msgstr ""
2532
 
2718
  msgid "Get Formidable Forms Pro Today and Unlock all the Powerful Features »"
2719
  msgstr ""
2720
 
2721
+ #: classes/views/frm-settings/license_box.php:4
2722
+ msgid "Connect an Account"
2723
+ msgstr ""
2724
+
2725
+ #: classes/views/frm-settings/license_box.php:8
2726
+ msgid "Get Formidable Now"
2727
+ msgstr ""
2728
+
2729
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
2730
+ #: classes/views/frm-settings/license_box.php:18
2731
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
2732
  msgstr ""
2733
 
3277
  msgstr ""
3278
 
3279
  #: classes/helpers/FrmFieldsHelper.php:284
3280
+ #: classes/helpers/FrmAppHelper.php:2121
3281
  msgid "The entered values do not match"
3282
  msgstr ""
3283
 
3288
 
3289
  #: classes/helpers/FrmFieldsHelper.php:454
3290
  #: classes/helpers/FrmFieldsHelper.php:455
3291
+ #: classes/helpers/FrmAppHelper.php:2125
3292
  msgid "New Option"
3293
  msgstr ""
3294
 
4782
  msgstr ""
4783
 
4784
  #: classes/helpers/FrmAppHelper.php:2058
4785
+ #: classes/helpers/FrmAppHelper.php:2130
4786
  msgid "Please wait while your site updates."
4787
  msgstr ""
4788
 
4790
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
4791
  msgstr ""
4792
 
4793
+ #: classes/helpers/FrmAppHelper.php:2062
4794
+ #: classes/helpers/FrmAppHelper.php:2089
4795
  msgid "Loading&hellip;"
4796
  msgstr ""
4797
 
4798
+ #: classes/helpers/FrmAppHelper.php:2090
4799
  msgid "Remove"
4800
  msgstr ""
4801
 
4802
+ #: classes/helpers/FrmAppHelper.php:2094
4803
  msgid "No results match"
4804
  msgstr ""
4805
 
4806
+ #: classes/helpers/FrmAppHelper.php:2095
4807
  msgid "That file looks like Spam."
4808
  msgstr ""
4809
 
4810
+ #: classes/helpers/FrmAppHelper.php:2096
4811
  msgid "There is an error in the calculation in the field with key"
4812
  msgstr ""
4813
 
4814
+ #: classes/helpers/FrmAppHelper.php:2097
4815
  msgid "Please complete the preceding required fields before uploading a file."
4816
  msgstr ""
4817
 
4818
+ #: classes/helpers/FrmAppHelper.php:2104
4819
  msgid "(Click to add description)"
4820
  msgstr ""
4821
 
4822
+ #: classes/helpers/FrmAppHelper.php:2105
4823
  msgid "(Blank)"
4824
  msgstr ""
4825
 
4826
+ #: classes/helpers/FrmAppHelper.php:2106
4827
  msgid "(no label)"
4828
  msgstr ""
4829
 
4830
+ #: classes/helpers/FrmAppHelper.php:2107
4831
  msgid "Saving"
4832
  msgstr ""
4833
 
4834
+ #: classes/helpers/FrmAppHelper.php:2108
4835
  msgid "Saved"
4836
  msgstr ""
4837
 
4838
+ #: classes/helpers/FrmAppHelper.php:2109
4839
  msgid "OK"
4840
  msgstr ""
4841
 
4842
+ #: classes/helpers/FrmAppHelper.php:2112
4843
  msgid "Clear default value when typing"
4844
  msgstr ""
4845
 
4846
+ #: classes/helpers/FrmAppHelper.php:2113
4847
  msgid "Do not clear default value when typing"
4848
  msgstr ""
4849
 
4850
+ #: classes/helpers/FrmAppHelper.php:2114
4851
  msgid "Default value will pass form validation"
4852
  msgstr ""
4853
 
4854
+ #: classes/helpers/FrmAppHelper.php:2115
4855
  msgid "Default value will NOT pass form validation"
4856
  msgstr ""
4857
 
4858
+ #: classes/helpers/FrmAppHelper.php:2117
4859
  msgid "Are you sure you want to delete this field and all data associated with it?"
4860
  msgstr ""
4861
 
4862
+ #: classes/helpers/FrmAppHelper.php:2118
4863
  msgid "WARNING: This will delete all fields inside of the section as well."
4864
  msgstr ""
4865
 
4866
+ #: classes/helpers/FrmAppHelper.php:2119
4867
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
4868
  msgstr ""
4869
 
4870
+ #: classes/helpers/FrmAppHelper.php:2122
4871
  msgid "Enter Email"
4872
  msgstr ""
4873
 
4874
+ #: classes/helpers/FrmAppHelper.php:2123
4875
  msgid "Confirm Email"
4876
  msgstr ""
4877
 
4878
+ #: classes/helpers/FrmAppHelper.php:2124
4879
  msgid "Conditional content here"
4880
  msgstr ""
4881
 
4882
+ #: classes/helpers/FrmAppHelper.php:2126
4883
  msgid "In certain browsers (e.g. Firefox) text will not display correctly if the field height is too small relative to the field padding and text size. Please increase your field height or decrease your field padding."
4884
  msgstr ""
4885
 
4886
+ #: classes/helpers/FrmAppHelper.php:2127
4887
  msgid "Enter Password"
4888
  msgstr ""
4889
 
4890
+ #: classes/helpers/FrmAppHelper.php:2128
4891
  msgid "Confirm Password"
4892
  msgstr ""
4893
 
4894
+ #: classes/helpers/FrmAppHelper.php:2129
4895
  msgid "Import Complete"
4896
  msgstr ""
4897
 
4898
+ #: classes/helpers/FrmAppHelper.php:2131
4899
  msgid "Warning: There is no way to retrieve unsaved entries."
4900
  msgstr ""
4901
 
4902
+ #: classes/helpers/FrmAppHelper.php:2132
4903
  msgid "Private"
4904
  msgstr ""
4905
 
4906
+ #: classes/helpers/FrmAppHelper.php:2135
4907
  msgid "No new licenses were found"
4908
  msgstr ""
4909
 
4910
+ #: classes/helpers/FrmAppHelper.php:2136
4911
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
4912
  msgstr ""
4913
 
4914
+ #: classes/helpers/FrmAppHelper.php:2137
4915
  msgid "This calculation may have shortcodes that work in Views but not forms."
4916
  msgstr ""
4917
 
4918
+ #: classes/helpers/FrmAppHelper.php:2138
4919
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
4920
  msgstr ""
4921
 
4922
+ #: classes/helpers/FrmAppHelper.php:2139
4923
  msgid "Please enter a Repeat Limit that is greater than 1."
4924
  msgstr ""
4925
 
4926
+ #: classes/helpers/FrmAppHelper.php:2140
4927
  msgid "Please select a limit between 0 and 200."
4928
  msgstr ""
4929
 
4930
+ #: classes/helpers/FrmAppHelper.php:2165
4931
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
4932
  msgstr ""
4933
 
4934
+ #: classes/helpers/FrmAppHelper.php:2192
4935
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
4936
  msgstr ""
4937
 
4938
+ #: classes/helpers/FrmAppHelper.php:2220
4939
  msgid "The version of PHP on your server is too low. If this is not corrected, you may see issues with Formidable Forms. Please contact your web host and ask to be updated to PHP 7.0+."
4940
  msgstr ""
4941
 
4942
+ #: classes/helpers/FrmAppHelper.php:2226
4943
  msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
4944
  msgstr ""
4945
 
4946
+ #: classes/helpers/FrmAppHelper.php:2240
4947
  msgid "English"
4948
  msgstr ""
4949
 
4950
+ #: classes/helpers/FrmAppHelper.php:2241
4951
  msgid "Afrikaans"
4952
  msgstr ""
4953
 
4954
+ #: classes/helpers/FrmAppHelper.php:2242
4955
  msgid "Albanian"
4956
  msgstr ""
4957
 
4958
+ #: classes/helpers/FrmAppHelper.php:2243
4959
  msgid "Arabic"
4960
  msgstr ""
4961
 
4962
+ #: classes/helpers/FrmAppHelper.php:2244
4963
  msgid "Armenian"
4964
  msgstr ""
4965
 
4966
+ #: classes/helpers/FrmAppHelper.php:2245
4967
  msgid "Azerbaijani"
4968
  msgstr ""
4969
 
4970
+ #: classes/helpers/FrmAppHelper.php:2246
4971
  msgid "Basque"
4972
  msgstr ""
4973
 
4974
+ #: classes/helpers/FrmAppHelper.php:2247
4975
  msgid "Bosnian"
4976
  msgstr ""
4977
 
4978
+ #: classes/helpers/FrmAppHelper.php:2248
4979
  msgid "Bulgarian"
4980
  msgstr ""
4981
 
4982
+ #: classes/helpers/FrmAppHelper.php:2249
4983
  msgid "Catalan"
4984
  msgstr ""
4985
 
4986
+ #: classes/helpers/FrmAppHelper.php:2250
4987
  msgid "Chinese Hong Kong"
4988
  msgstr ""
4989
 
4990
+ #: classes/helpers/FrmAppHelper.php:2251
4991
  msgid "Chinese Simplified"
4992
  msgstr ""
4993
 
4994
+ #: classes/helpers/FrmAppHelper.php:2252
4995
  msgid "Chinese Traditional"
4996
  msgstr ""
4997
 
4998
+ #: classes/helpers/FrmAppHelper.php:2253
4999
  msgid "Croatian"
5000
  msgstr ""
5001
 
5002
+ #: classes/helpers/FrmAppHelper.php:2254
5003
  msgid "Czech"
5004
  msgstr ""
5005
 
5006
+ #: classes/helpers/FrmAppHelper.php:2255
5007
  msgid "Danish"
5008
  msgstr ""
5009
 
5010
+ #: classes/helpers/FrmAppHelper.php:2256
5011
  msgid "Dutch"
5012
  msgstr ""
5013
 
5014
+ #: classes/helpers/FrmAppHelper.php:2257
5015
  msgid "English/UK"
5016
  msgstr ""
5017
 
5018
+ #: classes/helpers/FrmAppHelper.php:2258
5019
  msgid "Esperanto"
5020
  msgstr ""
5021
 
5022
+ #: classes/helpers/FrmAppHelper.php:2259
5023
  msgid "Estonian"
5024
  msgstr ""
5025
 
5026
+ #: classes/helpers/FrmAppHelper.php:2260
5027
  msgid "Faroese"
5028
  msgstr ""
5029
 
5030
+ #: classes/helpers/FrmAppHelper.php:2261
5031
  msgid "Farsi/Persian"
5032
  msgstr ""
5033
 
5034
+ #: classes/helpers/FrmAppHelper.php:2262
5035
  msgid "Filipino"
5036
  msgstr ""
5037
 
5038
+ #: classes/helpers/FrmAppHelper.php:2263
5039
  msgid "Finnish"
5040
  msgstr ""
5041
 
5042
+ #: classes/helpers/FrmAppHelper.php:2264
5043
  msgid "French"
5044
  msgstr ""
5045
 
5046
+ #: classes/helpers/FrmAppHelper.php:2265
5047
  msgid "French/Canadian"
5048
  msgstr ""
5049
 
5050
+ #: classes/helpers/FrmAppHelper.php:2266
5051
  msgid "French/Swiss"
5052
  msgstr ""
5053
 
5054
+ #: classes/helpers/FrmAppHelper.php:2267
5055
  msgid "German"
5056
  msgstr ""
5057
 
5058
+ #: classes/helpers/FrmAppHelper.php:2268
5059
  msgid "German/Austria"
5060
  msgstr ""
5061
 
5062
+ #: classes/helpers/FrmAppHelper.php:2269
5063
  msgid "German/Switzerland"
5064
  msgstr ""
5065
 
5066
+ #: classes/helpers/FrmAppHelper.php:2270
5067
  msgid "Greek"
5068
  msgstr ""
5069
 
5070
+ #: classes/helpers/FrmAppHelper.php:2271
5071
+ #: classes/helpers/FrmAppHelper.php:2272
5072
  msgid "Hebrew"
5073
  msgstr ""
5074
 
5075
+ #: classes/helpers/FrmAppHelper.php:2273
5076
  msgid "Hindi"
5077
  msgstr ""
5078
 
5079
+ #: classes/helpers/FrmAppHelper.php:2274
5080
  msgid "Hungarian"
5081
  msgstr ""
5082
 
5083
+ #: classes/helpers/FrmAppHelper.php:2275
5084
  msgid "Icelandic"
5085
  msgstr ""
5086
 
5087
+ #: classes/helpers/FrmAppHelper.php:2276
5088
  msgid "Indonesian"
5089
  msgstr ""
5090
 
5091
+ #: classes/helpers/FrmAppHelper.php:2277
5092
  msgid "Italian"
5093
  msgstr ""
5094
 
5095
+ #: classes/helpers/FrmAppHelper.php:2278
5096
  msgid "Japanese"
5097
  msgstr ""
5098
 
5099
+ #: classes/helpers/FrmAppHelper.php:2279
5100
  msgid "Korean"
5101
  msgstr ""
5102
 
5103
+ #: classes/helpers/FrmAppHelper.php:2280
5104
  msgid "Latvian"
5105
  msgstr ""
5106
 
5107
+ #: classes/helpers/FrmAppHelper.php:2281
5108
  msgid "Lithuanian"
5109
  msgstr ""
5110
 
5111
+ #: classes/helpers/FrmAppHelper.php:2282
5112
  msgid "Malaysian"
5113
  msgstr ""
5114
 
5115
+ #: classes/helpers/FrmAppHelper.php:2283
5116
  msgid "Norwegian"
5117
  msgstr ""
5118
 
5119
+ #: classes/helpers/FrmAppHelper.php:2284
5120
  msgid "Polish"
5121
  msgstr ""
5122
 
5123
+ #: classes/helpers/FrmAppHelper.php:2285
5124
  msgid "Portuguese"
5125
  msgstr ""
5126
 
5127
+ #: classes/helpers/FrmAppHelper.php:2286
5128
  msgid "Portuguese/Brazilian"
5129
  msgstr ""
5130
 
5131
+ #: classes/helpers/FrmAppHelper.php:2287
5132
  msgid "Portuguese/Portugal"
5133
  msgstr ""
5134
 
5135
+ #: classes/helpers/FrmAppHelper.php:2288
5136
  msgid "Romanian"
5137
  msgstr ""
5138
 
5139
+ #: classes/helpers/FrmAppHelper.php:2289
5140
  msgid "Russian"
5141
  msgstr ""
5142
 
5143
+ #: classes/helpers/FrmAppHelper.php:2290
5144
+ #: classes/helpers/FrmAppHelper.php:2291
5145
  msgid "Serbian"
5146
  msgstr ""
5147
 
5148
+ #: classes/helpers/FrmAppHelper.php:2292
5149
  msgid "Slovak"
5150
  msgstr ""
5151
 
5152
+ #: classes/helpers/FrmAppHelper.php:2293
5153
  msgid "Slovenian"
5154
  msgstr ""
5155
 
5156
+ #: classes/helpers/FrmAppHelper.php:2294
5157
  msgid "Spanish"
5158
  msgstr ""
5159
 
5160
+ #: classes/helpers/FrmAppHelper.php:2295
5161
  msgid "Spanish/Latin America"
5162
  msgstr ""
5163
 
5164
+ #: classes/helpers/FrmAppHelper.php:2296
5165
  msgid "Swedish"
5166
  msgstr ""
5167
 
5168
+ #: classes/helpers/FrmAppHelper.php:2297
5169
  msgid "Tamil"
5170
  msgstr ""
5171
 
5172
+ #: classes/helpers/FrmAppHelper.php:2298
5173
  msgid "Thai"
5174
  msgstr ""
5175
 
5176
+ #: classes/helpers/FrmAppHelper.php:2299
5177
+ #: classes/helpers/FrmAppHelper.php:2300
5178
  msgid "Turkish"
5179
  msgstr ""
5180
 
5181
+ #: classes/helpers/FrmAppHelper.php:2301
5182
  msgid "Ukranian"
5183
  msgstr ""
5184
 
5185
+ #: classes/helpers/FrmAppHelper.php:2302
5186
  msgid "Vietnamese"
5187
  msgstr ""
5188
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: forms, contact form, form builder, survey, form maker, form, form creator
4
  Requires at least: 4.6
5
  Tested up to: 5.2
6
  Requires PHP: 5.6
7
- Stable tag: 4.02.04
8
 
9
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quiz forms, and more.
10
 
@@ -356,6 +356,13 @@ Formidable Forms drag & drop form builder combined with our add-ons is the most
356
  To get access to more features, integrations, and support, <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">upgrade to Formidable Forms Pro</a>. A Pro license gives you access to the full version of Formidable Forms for more advanced contact forms, Formidable Views, graphs and stats, priority support, and Formidable Forms Add-ons!
357
 
358
  == Changelog ==
 
 
 
 
 
 
 
359
  = 4.02.04 =
360
  * Add a bit more in-plugin education and guidance for using Styles.
361
  * Add styling for Stripe credit card fields.
@@ -363,11 +370,6 @@ To get access to more features, integrations, and support, <a href="https://form
363
  * Fix: Use the current date for the auto-created contact form.
364
  * Remove a bit of unused code.
365
 
366
- = 4.02.03 =
367
- * Security: Don't unserialize values posted in field options in admin area.
368
- * Start switching any data saved with serializing to json, including cache keys and default values.
369
- * Save styling settings with json instead of serialized array.
370
-
371
  = 4.0 =
372
  * We've added a new, full screen builder for a faster and more enjoyable form building experience.
373
  * Moved all settings into the sidebar instead of expanding/collapsing under each field.
4
  Requires at least: 4.6
5
  Tested up to: 5.2
6
  Requires PHP: 5.6
7
+ Stable tag: 4.03
8
 
9
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quiz forms, and more.
10
 
356
  To get access to more features, integrations, and support, <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">upgrade to Formidable Forms Pro</a>. A Pro license gives you access to the full version of Formidable Forms for more advanced contact forms, Formidable Views, graphs and stats, priority support, and Formidable Forms Add-ons!
357
 
358
  == Changelog ==
359
+ = 4.03 =
360
+ * New: Add an easier way to upgrade to the Pro version.
361
+ * New: When the default Contact form is created, use the email address in the form as the Reply to address.
362
+ * Fix: On some sites, the Formidable js wasn't loading correctly and causing errors.
363
+ * Fix: Don't include generated css with plugin. Some sites weren't updating it.
364
+ * New: Added frm_before_create_field hook while a field is being created from the builder. This allows extra fields to be included at once.
365
+
366
  = 4.02.04 =
367
  * Add a bit more in-plugin education and guidance for using Styles.
368
  * Add styling for Stripe credit card fields.
370
  * Fix: Use the current date for the auto-created contact form.
371
  * Remove a bit of unused code.
372
 
 
 
 
 
 
373
  = 4.0 =
374
  * We've added a new, full screen builder for a faster and more enjoyable form building experience.
375
  * Moved all settings into the sidebar instead of expanding/collapsing under each field.