Formidable Forms – Form Builder for WordPress - Version 3.06

Version Description

  • New: Add one-click form creation from a form template and adjust the way a new form is created
  • New: Add a new process for creating a custom form template
  • Tweak: Create smaller XML fiels when exporting forms
  • Tweak: Use the name of the form for XML exports when a single form is exported
  • Tweak: Don't limit the width of the color picker in the form styler to avoid conflicts with some color picker plugins
  • Fix: Prevent the 'Advanced' section from hiding on non-Formidable blocks
  • Fix: Some users were seeing PHP error messages in PHP 5.2
  • Fix: XML form exports set to use the default style were not correctly setting the style on import
Download this release

Release Info

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

Code changes from version 3.05 to 3.06

Files changed (56) hide show
  1. classes/controllers/FrmAddonsController.php +61 -132
  2. classes/controllers/FrmAppController.php +1 -1
  3. classes/controllers/FrmFormsController.php +117 -10
  4. classes/controllers/FrmHooksController.php +3 -1
  5. classes/controllers/FrmSimpleBlocksController.php +4 -1
  6. classes/controllers/FrmStylesController.php +1 -1
  7. classes/controllers/FrmXMLController.php +120 -19
  8. classes/helpers/FrmAppHelper.php +36 -6
  9. classes/helpers/FrmEntriesHelper.php +1 -1
  10. classes/helpers/FrmEntriesListHelper.php +3 -3
  11. classes/helpers/FrmFieldsHelper.php +1 -1
  12. classes/helpers/FrmFormsHelper.php +2 -4
  13. classes/helpers/FrmFormsListHelper.php +12 -67
  14. classes/helpers/FrmListHelper.php +20 -27
  15. classes/helpers/FrmXMLHelper.php +136 -26
  16. classes/models/FrmAddon.php +14 -8
  17. classes/models/FrmEntry.php +7 -7
  18. classes/models/FrmField.php +7 -7
  19. classes/models/FrmForm.php +0 -1
  20. classes/models/FrmFormApi.php +202 -0
  21. classes/models/FrmFormTemplateApi.php +25 -0
  22. classes/models/FrmMigrate.php +36 -18
  23. classes/models/FrmPersonalData.php +1 -1
  24. classes/views/addons/list.php +4 -4
  25. classes/views/frm-entries/_sidebar-shared-pub.php +2 -2
  26. classes/views/frm-fields/back-end/number-range.php +1 -1
  27. classes/views/frm-forms/_publish_box.php +1 -19
  28. classes/views/frm-forms/add-new.php +59 -0
  29. classes/views/frm-forms/form.php +1 -12
  30. classes/views/frm-forms/list-templates.php +149 -0
  31. classes/views/frm-forms/list.php +1 -1
  32. classes/views/frm-forms/template-name-overlay.php +46 -0
  33. classes/views/frm-settings/form.php +3 -3
  34. classes/views/shared/admin-header.php +4 -1
  35. classes/views/shared/form-nav.php +1 -1
  36. classes/views/shared/upgrade_overlay.php +2 -2
  37. classes/views/styles/manage.php +1 -1
  38. classes/views/xml/default-templates.xml +2 -3
  39. classes/views/xml/forms_xml.php +1 -1
  40. classes/views/xml/import_form.php +18 -22
  41. css/custom_theme.css.php +1 -0
  42. css/formidableforms.css +1 -1
  43. css/frm_admin.css +225 -66
  44. css/frm_blocks.css +0 -4
  45. deprecated/FrmDeprecated.php +56 -3
  46. formidable.php +1 -1
  47. images/new-blank.svg +57 -0
  48. images/new-form.svg +53 -0
  49. images/new-import.svg +66 -0
  50. js/formidable_admin.js +232 -56
  51. js/formidable_blocks.js +1 -1
  52. js/jquery/jquery.editinplace.js +653 -0
  53. languages/formidable-js-strings.php +3 -3
  54. languages/formidable-js.pot +60 -0
  55. languages/formidable.pot +613 -380
  56. readme.txt +12 -9
classes/controllers/FrmAddonsController.php CHANGED
@@ -18,8 +18,10 @@ class FrmAddonsController {
18
  $installed_addons = apply_filters( 'frm_installed_addons', array() );
19
 
20
  $addons = self::get_api_addons();
21
- $errors = self::get_error_from_response( $addons );
22
  if ( isset( $addons['error'] ) ) {
 
 
23
  unset( $addons['error'] );
24
  }
25
  self::prepare_addons( $addons );
@@ -42,13 +44,8 @@ class FrmAddonsController {
42
  }
43
 
44
  private static function get_api_addons() {
45
- $license = '';
46
- $edd_update = self::get_pro_updater();
47
- if ( ! empty( $edd_update ) ) {
48
- $license = $edd_update->license;
49
- }
50
-
51
- $addons = self::get_addon_info( $license );
52
 
53
  if ( empty( $addons ) ) {
54
  $addons = self::fallback_plugin_list();
@@ -63,17 +60,6 @@ class FrmAddonsController {
63
  return $addons;
64
  }
65
 
66
- /**
67
- * @since 3.04.03
68
- */
69
- public static function get_pro_updater() {
70
- if ( FrmAppHelper::pro_is_installed() && is_callable( 'FrmProAppHelper::get_updater' ) ) {
71
- return FrmProAppHelper::get_updater();
72
- }
73
-
74
- return false;
75
- }
76
-
77
  /**
78
  * If the API is unable to connect, show something on the addons page
79
  *
@@ -182,121 +168,13 @@ class FrmAddonsController {
182
  $license = strtoupper( $license );
183
  }
184
 
185
- $downloads = self::get_addon_info( $license );
 
186
  $pro = isset( $downloads['93790'] ) ? $downloads['93790'] : array();
187
 
188
  return isset( $pro['url'] ) ? $pro['url'] : '';
189
  }
190
 
191
- /**
192
- * @since 3.04.03
193
- * @return array
194
- */
195
- public static function get_addon_info( $license = '' ) {
196
- $addons = array();
197
- $url = 'https://formidableforms.com/wp-json/s11edd/v1/updates/';
198
- if ( ! empty( $license ) ) {
199
- $url .= '?l=' . urlencode( base64_encode( $license ) );
200
- }
201
-
202
- $addons = self::get_cached_addons( $license );
203
- if ( ! empty( $addons ) ) {
204
- return $addons;
205
- }
206
-
207
- $response = wp_remote_get( $url );
208
- if ( is_array( $response ) && ! is_wp_error( $response ) ) {
209
- $addons = $response['body'];
210
- if ( ! empty( $addons ) ) {
211
- $addons = json_decode( $addons, true );
212
-
213
- $skip_categories = array( 'WordPress Form Templates', 'WordPress Form Style Templates' );
214
- foreach ( $addons as $k => $addon ) {
215
- if ( ! isset( $addon['categories'] ) ) {
216
- continue;
217
- }
218
- $cats = array_intersect( $skip_categories, $addon['categories'] );
219
- if ( ! empty( $cats ) ) {
220
- unset( $addons[ $k ] );
221
- }
222
- }
223
-
224
- self::set_cached_addons( $addons, $license );
225
- }
226
- }
227
-
228
- return $addons;
229
- }
230
-
231
- /**
232
- * @since 3.04.03
233
- * @return array
234
- */
235
- private static function get_cached_addons( $license = '' ) {
236
- $cache_key = self::get_cache_key( $license );
237
- $cache = get_option( $cache_key );
238
-
239
- if ( empty( $cache ) || empty( $cache['timeout'] ) || current_time( 'timestamp' ) > $cache['timeout'] ) {
240
- return false; // Cache is expired
241
- }
242
-
243
- return json_decode( $cache['value'], true );
244
- }
245
-
246
- /**
247
- * @since 3.04.03
248
- */
249
- private static function set_cached_addons( $addons, $license = '' ) {
250
- $cache_key = self::get_cache_key( $license );
251
- $data = array(
252
- 'timeout' => strtotime( '+6 hours', current_time( 'timestamp' ) ),
253
- 'value' => json_encode( $addons ),
254
- );
255
-
256
- update_option( $cache_key, $data, 'no' );
257
- }
258
-
259
- /**
260
- * @since 3.04.03
261
- */
262
- public static function reset_cached_addons( $license = '' ) {
263
- delete_option( self::get_cache_key( $license ) );
264
- }
265
-
266
- /**
267
- * @since 3.04.03
268
- * @return string
269
- */
270
- public static function get_cache_key( $license ) {
271
- return 'frm_addons_l' . ( empty( $license ) ? '' : md5( $license ) );
272
- }
273
-
274
- /**
275
- * @since 3.04.03
276
- * @return array
277
- */
278
- public static function error_for_license( $license ) {
279
- $errors = array();
280
- if ( ! empty( $license ) ) {
281
- $addons = self::get_addon_info( $license );
282
- $errors = self::get_error_from_response( $addons );
283
- }
284
- return $errors;
285
- }
286
-
287
- /**
288
- * @since 3.04.03
289
- * @return array
290
- */
291
- private static function get_error_from_response( $addons ) {
292
- $errors = array();
293
- if ( isset( $addons['error'] ) ) {
294
- $errors[] = $addons['error']['message'];
295
- do_action( 'frm_license_error', $addons['error'] );
296
- }
297
- return $errors;
298
- }
299
-
300
  /**
301
  * @since 3.04.03
302
  */
@@ -389,12 +267,13 @@ class FrmAddonsController {
389
 
390
  $checked_licenses[] = $new_license;
391
 
 
392
  if ( empty( $version_info ) ) {
393
- $version_info = self::get_addon_info( $new_license );
394
  continue;
395
  }
396
 
397
- $plugin = self::get_addon_for_license( $version_info, $addon );
398
  if ( empty( $plugin ) ) {
399
  continue;
400
  }
@@ -402,7 +281,7 @@ class FrmAddonsController {
402
  $download_id = isset( $plugin['id'] ) ? $plugin['id'] : 0;
403
  if ( ! empty( $download_id ) && ! isset( $version_info[ $download_id ]['package'] ) ) {
404
  // if this addon is using its own license, get the update url
405
- $addon_info = self::get_addon_info( $new_license );
406
 
407
  $version_info[ $download_id ] = $addon_info[ $download_id ];
408
  if ( isset( $addon_info['error'] ) ) {
@@ -665,6 +544,56 @@ class FrmAddonsController {
665
  }
666
  }
667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
668
  /**
669
  * @since 2.03.08
670
  * @deprecated 3.04.03
18
  $installed_addons = apply_filters( 'frm_installed_addons', array() );
19
 
20
  $addons = self::get_api_addons();
21
+ $errors = array();
22
  if ( isset( $addons['error'] ) ) {
23
+ $api = new FrmFormApi();
24
+ $errors = $api->get_error_from_response( $addons );
25
  unset( $addons['error'] );
26
  }
27
  self::prepare_addons( $addons );
44
  }
45
 
46
  private static function get_api_addons() {
47
+ $api = new FrmFormApi();
48
+ $addons = $api->get_api_info();
 
 
 
 
 
49
 
50
  if ( empty( $addons ) ) {
51
  $addons = self::fallback_plugin_list();
60
  return $addons;
61
  }
62
 
 
 
 
 
 
 
 
 
 
 
 
63
  /**
64
  * If the API is unable to connect, show something on the addons page
65
  *
168
  $license = strtoupper( $license );
169
  }
170
 
171
+ $api = new FrmFormApi( $license );
172
+ $downloads = $api->get_api_info();
173
  $pro = isset( $downloads['93790'] ) ? $downloads['93790'] : array();
174
 
175
  return isset( $pro['url'] ) ? $pro['url'] : '';
176
  }
177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
  /**
179
  * @since 3.04.03
180
  */
267
 
268
  $checked_licenses[] = $new_license;
269
 
270
+ $api = new FrmFormApi( $new_license );
271
  if ( empty( $version_info ) ) {
272
+ $version_info = $api->get_api_info();
273
  continue;
274
  }
275
 
276
+ $plugin = $api->get_addon_for_license( $addon, $version_info );
277
  if ( empty( $plugin ) ) {
278
  continue;
279
  }
281
  $download_id = isset( $plugin['id'] ) ? $plugin['id'] : 0;
282
  if ( ! empty( $download_id ) && ! isset( $version_info[ $download_id ]['package'] ) ) {
283
  // if this addon is using its own license, get the update url
284
+ $addon_info = $api->get_api_info();
285
 
286
  $version_info[ $download_id ] = $addon_info[ $download_id ];
287
  if ( isset( $addon_info['error'] ) ) {
544
  }
545
  }
546
 
547
+ /**
548
+ * @since 3.04.03
549
+ * @deprecated 3.06
550
+ * @codeCoverageIgnore
551
+ * @return array
552
+ */
553
+ public static function error_for_license( $license ) {
554
+ return FrmDeprecated::error_for_license( $license );
555
+ }
556
+
557
+ /**
558
+ * @since 3.04.03
559
+ * @deprecated 3.06
560
+ * @codeCoverageIgnore
561
+ */
562
+ public static function get_pro_updater() {
563
+ return FrmDeprecated::get_pro_updater();
564
+ }
565
+
566
+ /**
567
+ * @since 3.04.03
568
+ * @deprecated 3.06
569
+ * @codeCoverageIgnore
570
+ *
571
+ * @return array
572
+ */
573
+ public static function get_addon_info( $license = '' ) {
574
+ return FrmDeprecated::get_addon_info( $license );
575
+ }
576
+
577
+ /**
578
+ * @since 3.04.03
579
+ * @deprecated 3.06
580
+ * @codeCoverageIgnore
581
+ *
582
+ * @return string
583
+ */
584
+ public static function get_cache_key( $license ) {
585
+ return FrmDeprecated::get_cache_key( $license );
586
+ }
587
+
588
+ /**
589
+ * @since 3.04.03
590
+ * @deprecated 3.06
591
+ * @codeCoverageIgnore
592
+ */
593
+ public static function reset_cached_addons( $license = '' ) {
594
+ FrmDeprecated::reset_cached_addons( $license );
595
+ }
596
+
597
  /**
598
  * @since 2.03.08
599
  * @deprecated 3.04.03
classes/controllers/FrmAppController.php CHANGED
@@ -44,7 +44,7 @@ class FrmAppController {
44
  * @since 3.0
45
  */
46
  private static function is_white_page() {
47
- $is_white_page = ( FrmAppHelper::is_admin_page( 'formidable' ) || FrmAppHelper::is_admin_page( 'formidable-entries' ) || FrmAppHelper::is_admin_page( 'formidable-pro-upgrade' ) || FrmAppHelper::is_admin_page( 'formidable-addons' ) );
48
  if ( ! $is_white_page ) {
49
  $screen = get_current_screen();
50
  $is_white_page = ( $screen && $screen->id === 'edit-frm_display' );
44
  * @since 3.0
45
  */
46
  private static function is_white_page() {
47
+ $is_white_page = ( FrmAppHelper::is_admin_page( 'formidable' ) || FrmAppHelper::is_admin_page( 'formidable-entries' ) || FrmAppHelper::is_admin_page( 'formidable-pro-upgrade' ) || FrmAppHelper::is_admin_page( 'formidable-addons' ) || FrmAppHelper::is_admin_page( 'formidable-import' ) );
48
  if ( ! $is_white_page ) {
49
  $screen = get_current_screen();
50
  $is_white_page = ( $screen && $screen->id === 'edit-frm_display' );
classes/controllers/FrmFormsController.php CHANGED
@@ -51,11 +51,25 @@ class FrmFormsController {
51
  public static function list_form() {
52
  FrmAppHelper::permission_check( 'frm_view_forms' );
53
 
 
54
  $params = FrmForm::list_page_params();
55
  $errors = self::process_bulk_form_actions( array() );
 
 
 
 
56
  $errors = apply_filters( 'frm_admin_list_form_action', $errors );
57
 
58
- return self::display_forms_list( $params, '', $errors );
 
 
 
 
 
 
 
 
 
59
  }
60
 
61
  public static function new_form( $values = array() ) {
@@ -209,8 +223,11 @@ class FrmFormsController {
209
  * Also delete the current form
210
  *
211
  * @since 2.0
 
212
  */
213
  public static function _create_from_template() {
 
 
214
  FrmAppHelper::permission_check( 'frm_edit_forms' );
215
  check_ajax_referer( 'frm_ajax', 'nonce' );
216
 
@@ -388,6 +405,17 @@ class FrmFormsController {
388
  return $message;
389
  }
390
 
 
 
 
 
 
 
 
 
 
 
 
391
  public static function trash() {
392
  self::change_form_status( 'trash' );
393
  }
@@ -514,6 +542,46 @@ class FrmFormsController {
514
  self::display_forms_list( array(), $message );
515
  }
516
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
517
  /**
518
  * Inserts Formidable button
519
  * Hook exists since 2.5.0
@@ -692,6 +760,49 @@ class FrmFormsController {
692
  return $save;
693
  }
694
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
695
  private static function get_edit_vars( $id, $errors = array(), $message = '', $create_link = false ) {
696
  global $frm_vars;
697
 
@@ -728,9 +839,7 @@ class FrmFormsController {
728
 
729
  $all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
730
 
731
- if ( $form->default_template ) {
732
- wp_die( esc_html__( 'That template cannot be edited', 'formidable' ) );
733
- } elseif ( defined( 'DOING_AJAX' ) ) {
734
  wp_die();
735
  } else if ( $create_link ) {
736
  require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' );
@@ -749,10 +858,6 @@ class FrmFormsController {
749
  $fields = FrmField::get_all_for_form( $id );
750
  $values = FrmAppHelper::setup_edit_vars( $form, 'forms', $fields, true );
751
 
752
- if ( isset( $values['default_template'] ) && $values['default_template'] ) {
753
- wp_die( esc_html__( 'That template cannot be edited', 'formidable' ) );
754
- }
755
-
756
  self::clean_submit_html( $values );
757
 
758
  $action_controls = FrmFormActionsController::get_form_actions();
@@ -1010,7 +1115,7 @@ class FrmFormsController {
1010
  }
1011
 
1012
  if ( isset( $message ) && ! empty( $message ) ) {
1013
- echo '<div id="message" class="frm_updated_message">' . FrmAppHelper::kses( $message, array( 'a' ) ) . '</div>'; // WPCS: XSS ok.
1014
  }
1015
 
1016
  return $errors;
@@ -1053,6 +1158,8 @@ class FrmFormsController {
1053
  switch ( $action ) {
1054
  case 'new':
1055
  return self::new_form( $vars );
 
 
1056
  case 'create':
1057
  case 'edit':
1058
  case 'update':
@@ -1154,7 +1261,7 @@ class FrmFormsController {
1154
  array(
1155
  'parent' => 'frm-forms',
1156
  'id' => 'edit_form_' . $form_id,
1157
- 'title' => empty( $name ) ? __( '(no title)' ) : $name,
1158
  'href' => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ),
1159
  )
1160
  );
51
  public static function list_form() {
52
  FrmAppHelper::permission_check( 'frm_view_forms' );
53
 
54
+ $message = '';
55
  $params = FrmForm::list_page_params();
56
  $errors = self::process_bulk_form_actions( array() );
57
+ if ( isset( $errors['message'] ) ) {
58
+ $message = $errors['message'];
59
+ unset( $errors['message'] );
60
+ }
61
  $errors = apply_filters( 'frm_admin_list_form_action', $errors );
62
 
63
+ return self::display_forms_list( $params, $message, $errors );
64
+ }
65
+
66
+ /**
67
+ * Choose which type of form to create
68
+ *
69
+ * @since 3.06
70
+ */
71
+ public static function add_new() {
72
+ require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/add-new.php' );
73
  }
74
 
75
  public static function new_form( $values = array() ) {
223
  * Also delete the current form
224
  *
225
  * @since 2.0
226
+ * @deprecated 3.06
227
  */
228
  public static function _create_from_template() {
229
+ _deprecated_function( __FUNCTION__, '3.06' );
230
+
231
  FrmAppHelper::permission_check( 'frm_edit_forms' );
232
  check_ajax_referer( 'frm_ajax', 'nonce' );
233
 
405
  return $message;
406
  }
407
 
408
+ /**
409
+ * @since 3.06
410
+ */
411
+ public static function ajax_trash() {
412
+ FrmAppHelper::permission_check( 'frm_delete_forms' );
413
+ check_ajax_referer( 'frm_ajax', 'nonce' );
414
+ $form_id = FrmAppHelper::get_param( 'id', '', 'post', 'absint' );
415
+ FrmForm::set_status( $form_id, 'trash' );
416
+ wp_die();
417
+ }
418
+
419
  public static function trash() {
420
  self::change_form_status( 'trash' );
421
  }
542
  self::display_forms_list( array(), $message );
543
  }
544
 
545
+ /**
546
+ * Create a custom template from a form
547
+ *
548
+ * @since 3.06
549
+ */
550
+ public static function build_template() {
551
+ global $wpdb;
552
+
553
+ FrmAppHelper::permission_check( 'frm_edit_forms' );
554
+ check_ajax_referer( 'frm_ajax', 'nonce' );
555
+
556
+ $form_id = FrmAppHelper::get_param( 'xml', '', 'post', 'absint' );
557
+ $new_form_id = FrmForm::duplicate( $form_id, 1, true );
558
+ if ( empty( $new_form_id ) ) {
559
+ $response = array(
560
+ 'message' => __( 'There was an error creating a template.', 'formidable' ),
561
+ );
562
+ } else {
563
+ // Update the new form name and description.
564
+ $name = FrmAppHelper::get_param( 'name', '', 'post', 'sanitize_text_field' );
565
+ $desc = FrmAppHelper::get_param( 'desc', '', 'post', 'sanitize_textarea_field' );
566
+
567
+ $new_values = array(
568
+ 'name' => $name,
569
+ 'description' => $desc,
570
+ );
571
+ $query_results = $wpdb->update( $wpdb->prefix . 'frm_forms', $new_values, array( 'id' => $new_form_id ) );
572
+ if ( $query_results ) {
573
+ FrmForm::clear_form_cache();
574
+ }
575
+
576
+ $response = array(
577
+ 'redirect' => admin_url( 'admin.php?page=formidable&frm_action=list_templates' ),
578
+ );
579
+ }
580
+
581
+ echo wp_json_encode( $response );
582
+ wp_die();
583
+ }
584
+
585
  /**
586
  * Inserts Formidable button
587
  * Hook exists since 2.5.0
760
  return $save;
761
  }
762
 
763
+ /**
764
+ * Show the template listing page
765
+ *
766
+ * @since 3.06
767
+ */
768
+ private static function list_templates() {
769
+ wp_enqueue_script( 'jquery-ui-dialog' );
770
+ wp_enqueue_style( 'jquery-ui-dialog' );
771
+
772
+ $where = apply_filters( 'frm_forms_dropdown', array(), '' );
773
+ $forms = FrmForm::get_published_forms( $where );
774
+
775
+ $api = new FrmFormTemplateApi();
776
+ $templates = $api->get_api_info();
777
+ self::add_user_templates( $templates );
778
+
779
+ $pricing = FrmAppHelper::admin_upgrade_link( 'form-templates' );
780
+ $plans = array( 'free', 'Personal', 'Business', 'Elite' );
781
+
782
+ require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/list-templates.php' );
783
+ }
784
+
785
+ private static function add_user_templates( &$templates ) {
786
+ $user_templates = array(
787
+ 'is_template' => 1,
788
+ 'default_template' => 0,
789
+ );
790
+ $user_templates = FrmForm::getAll( $user_templates, 'name' );
791
+ foreach ( $user_templates as $template ) {
792
+ $template = array(
793
+ 'id' => $template->id,
794
+ 'name' => $template->name,
795
+ 'key' => $template->form_key,
796
+ 'description' => $template->description,
797
+ 'url' => admin_url( 'admin.php?page=formidable&frm_action=duplicate&id=' . absint( $template->id ) ),
798
+ 'released' => $template->created_at,
799
+ 'installed' => 1,
800
+ );
801
+ array_unshift( $templates, $template );
802
+ unset( $template );
803
+ }
804
+ }
805
+
806
  private static function get_edit_vars( $id, $errors = array(), $message = '', $create_link = false ) {
807
  global $frm_vars;
808
 
839
 
840
  $all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
841
 
842
+ if ( defined( 'DOING_AJAX' ) ) {
 
 
843
  wp_die();
844
  } else if ( $create_link ) {
845
  require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' );
858
  $fields = FrmField::get_all_for_form( $id );
859
  $values = FrmAppHelper::setup_edit_vars( $form, 'forms', $fields, true );
860
 
 
 
 
 
861
  self::clean_submit_html( $values );
862
 
863
  $action_controls = FrmFormActionsController::get_form_actions();
1115
  }
1116
 
1117
  if ( isset( $message ) && ! empty( $message ) ) {
1118
+ $errors['message'] = $message;
1119
  }
1120
 
1121
  return $errors;
1158
  switch ( $action ) {
1159
  case 'new':
1160
  return self::new_form( $vars );
1161
+ case 'add_new':
1162
+ case 'list_templates':
1163
  case 'create':
1164
  case 'edit':
1165
  case 'update':
1261
  array(
1262
  'parent' => 'frm-forms',
1263
  'id' => 'edit_form_' . $form_id,
1264
+ 'title' => empty( $name ) ? __( '(no title)', 'formidable' ) : $name,
1265
  'href' => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ),
1266
  )
1267
  );
classes/controllers/FrmHooksController.php CHANGED
@@ -163,12 +163,13 @@ class FrmHooksController {
163
  add_action( 'wp_ajax_frm_form_action_fill', 'FrmFormActionsController::fill_action' );
164
 
165
  // Forms Controller
166
- add_action( 'wp_ajax_frm_create_from_template', 'FrmFormsController::_create_from_template' );
167
  add_action( 'wp_ajax_frm_save_form', 'FrmFormsController::route' );
168
  add_action( 'wp_ajax_frm_get_default_html', 'FrmFormsController::get_email_html' );
169
  add_action( 'wp_ajax_frm_get_shortcode_opts', 'FrmFormsController::get_shortcode_opts' );
170
  add_action( 'wp_ajax_frm_forms_preview', 'FrmFormsController::preview' );
171
  add_action( 'wp_ajax_nopriv_frm_forms_preview', 'FrmFormsController::preview' );
 
 
172
 
173
  // Settings
174
  add_action( 'wp_ajax_frm_lite_settings_upgrade', 'FrmSettingsController::settings_cta_dismiss' );
@@ -182,6 +183,7 @@ class FrmHooksController {
182
  add_action( 'wp_ajax_nopriv_frmpro_css', 'FrmStylesController::load_saved_css' );
183
 
184
  // XML Controller
 
185
  add_action( 'wp_ajax_frm_entries_csv', 'FrmXMLController::csv' );
186
  add_action( 'wp_ajax_nopriv_frm_entries_csv', 'FrmXMLController::csv' );
187
  add_action( 'wp_ajax_frm_export_xml', 'FrmXMLController::export_xml' );
163
  add_action( 'wp_ajax_frm_form_action_fill', 'FrmFormActionsController::fill_action' );
164
 
165
  // Forms Controller
 
166
  add_action( 'wp_ajax_frm_save_form', 'FrmFormsController::route' );
167
  add_action( 'wp_ajax_frm_get_default_html', 'FrmFormsController::get_email_html' );
168
  add_action( 'wp_ajax_frm_get_shortcode_opts', 'FrmFormsController::get_shortcode_opts' );
169
  add_action( 'wp_ajax_frm_forms_preview', 'FrmFormsController::preview' );
170
  add_action( 'wp_ajax_nopriv_frm_forms_preview', 'FrmFormsController::preview' );
171
+ add_action( 'wp_ajax_frm_forms_trash', 'FrmFormsController::ajax_trash' );
172
+ add_action( 'wp_ajax_frm_build_template', 'FrmFormsController::build_template' );
173
 
174
  // Settings
175
  add_action( 'wp_ajax_frm_lite_settings_upgrade', 'FrmSettingsController::settings_cta_dismiss' );
183
  add_action( 'wp_ajax_nopriv_frmpro_css', 'FrmStylesController::load_saved_css' );
184
 
185
  // XML Controller
186
+ add_action( 'wp_ajax_frm_install_template', 'FrmXMLController::install_template' );
187
  add_action( 'wp_ajax_frm_entries_csv', 'FrmXMLController::csv' );
188
  add_action( 'wp_ajax_nopriv_frm_entries_csv', 'FrmXMLController::csv' );
189
  add_action( 'wp_ajax_frm_export_xml', 'FrmXMLController::export_xml' );
classes/controllers/FrmSimpleBlocksController.php CHANGED
@@ -60,7 +60,7 @@ class FrmSimpleBlocksController {
60
  'name'
61
  );
62
 
63
- return array_map( 'self::set_form_options', $forms );
64
  }
65
 
66
  /**
@@ -105,6 +105,9 @@ class FrmSimpleBlocksController {
105
  'minimize' => array(
106
  'type' => 'string',
107
  ),
 
 
 
108
  ),
109
  'editor_style' => 'formidable',
110
  'editor_script' => 'formidable-form-selector',
60
  'name'
61
  );
62
 
63
+ return array_map( 'FrmSimpleBlocksController::set_form_options', $forms );
64
  }
65
 
66
  /**
105
  'minimize' => array(
106
  'type' => 'string',
107
  ),
108
+ 'className' => array(
109
+ 'type' => 'string',
110
+ ),
111
  ),
112
  'editor_style' => 'formidable',
113
  'editor_script' => 'formidable-form-selector',
classes/controllers/FrmStylesController.php CHANGED
@@ -35,7 +35,7 @@ class FrmStylesController {
35
  'name' => __( 'Styles', 'formidable' ),
36
  'singular_name' => __( 'Style', 'formidable' ),
37
  'menu_name' => __( 'Style', 'formidable' ),
38
- 'edit' => __( 'Edit' ),
39
  'add_new_item' => __( 'Create a New Style', 'formidable' ),
40
  'edit_item' => __( 'Edit Style', 'formidable' ),
41
  ),
35
  'name' => __( 'Styles', 'formidable' ),
36
  'singular_name' => __( 'Style', 'formidable' ),
37
  'menu_name' => __( 'Style', 'formidable' ),
38
+ 'edit' => __( 'Edit', 'formidable' ),
39
  'add_new_item' => __( 'Create a New Style', 'formidable' ),
40
  'edit_item' => __( 'Edit Style', 'formidable' ),
41
  ),
classes/controllers/FrmXMLController.php CHANGED
@@ -15,18 +15,12 @@ class FrmXMLController {
15
  $set_err = libxml_use_internal_errors( true );
16
  $loader = libxml_disable_entity_loader( true );
17
 
18
- $files = apply_filters( 'frm_default_templates_files', array( FrmAppHelper::plugin_path() . '/classes/views/xml/default-templates.xml' ) );
19
 
20
  foreach ( (array) $files as $file ) {
21
  FrmXMLHelper::import_xml( $file );
22
  unset( $file );
23
  }
24
- /*
25
- if(is_wp_error($result))
26
- $errors[] = $result->get_error_message();
27
- else if($result)
28
- $message = $result;
29
- */
30
 
31
  unset( $files );
32
 
@@ -34,6 +28,86 @@ class FrmXMLController {
34
  libxml_disable_entity_loader( $loader );
35
  }
36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  public static function route() {
38
  $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action';
39
  $action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' );
@@ -184,18 +258,7 @@ class FrmXMLController {
184
  );
185
  $args = wp_parse_args( $args, $defaults );
186
 
187
- $sitename = sanitize_key( get_bloginfo( 'name' ) );
188
-
189
- if ( ! empty( $sitename ) ) {
190
- $sitename .= '.';
191
- }
192
- $filename = $sitename . 'formidable.' . date( 'Y-m-d' ) . '.xml';
193
-
194
- header( 'Content-Description: File Transfer' );
195
- header( 'Content-Disposition: attachment; filename=' . $filename );
196
- header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true );
197
-
198
- //make sure ids are numeric
199
  if ( is_array( $args['ids'] ) && ! empty( $args['ids'] ) ) {
200
  $args['ids'] = array_filter( $args['ids'], 'is_numeric' );
201
  }
@@ -278,6 +341,12 @@ class FrmXMLController {
278
  unset( $tb_type );
279
  }
280
 
 
 
 
 
 
 
281
  echo '<?xml version="1.0" encoding="' . esc_attr( get_bloginfo( 'charset' ) ) . "\" ?>\n";
282
  include( FrmAppHelper::plugin_path() . '/classes/views/xml/xml.php' );
283
  }
@@ -295,6 +364,38 @@ class FrmXMLController {
295
  }
296
  }
297
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
298
  public static function generate_csv( $atts ) {
299
  $form_ids = $atts['ids'];
300
  if ( empty( $form_ids ) ) {
15
  $set_err = libxml_use_internal_errors( true );
16
  $loader = libxml_disable_entity_loader( true );
17
 
18
+ $files = apply_filters( 'frm_default_templates_files', array() );
19
 
20
  foreach ( (array) $files as $file ) {
21
  FrmXMLHelper::import_xml( $file );
22
  unset( $file );
23
  }
 
 
 
 
 
 
24
 
25
  unset( $files );
26
 
28
  libxml_disable_entity_loader( $loader );
29
  }
30
 
31
+
32
+ /**
33
+ * Use the template link to install the XML template
34
+ *
35
+ * @since 3.06
36
+ */
37
+ public static function install_template() {
38
+ FrmAppHelper::permission_check( 'frm_create_forms' );
39
+ check_ajax_referer( 'frm_ajax', 'nonce' );
40
+
41
+ $url = FrmAppHelper::get_param( 'xml', '', 'post', 'esc_url_raw' );
42
+
43
+ $response = wp_remote_get( $url );
44
+ $body = wp_remote_retrieve_body( $response );
45
+ $xml = simplexml_load_string( $body );
46
+
47
+ if ( ! $xml ) {
48
+ $response = array(
49
+ 'message' => __( 'There was an error reading the form template', 'formidable' ),
50
+ );
51
+ echo wp_json_encode( $response );
52
+ wp_die();
53
+ }
54
+
55
+ self::set_new_form_name( $xml );
56
+
57
+ $imported = FrmXMLHelper::import_xml_now( $xml );
58
+ if ( isset( $imported['form_status'] ) && ! empty( $imported['form_status'] ) ) {
59
+ // Get the last form id in case there are child forms.
60
+ end( $imported['form_status'] );
61
+ $form_id = key( $imported['form_status'] );
62
+ $response = array(
63
+ 'id' => $form_id,
64
+ 'redirect' => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . absint( $form_id ) ),
65
+ 'success' => 1,
66
+ );
67
+ } else {
68
+ $response = array(
69
+ 'message' => __( 'There was an error importing form', 'formidable' ),
70
+ );
71
+ }
72
+
73
+ echo wp_json_encode( $response );
74
+ wp_die();
75
+ }
76
+
77
+ /**
78
+ * Change the name of the last form that is not a child.
79
+ * This will allow for lookup fields and embedded forms
80
+ * since we redirect to the last form.
81
+ *
82
+ * @since 3.06
83
+ * @param object $xml The values included in the XML.
84
+ */
85
+ private static function set_new_form_name( &$xml ) {
86
+ if ( ! isset( $xml->form ) ) {
87
+ return;
88
+ }
89
+
90
+ // Get the main form ID.
91
+ $set_name = 0;
92
+ foreach ( $xml->form as $form ) {
93
+ if ( ! isset( $form->parent_form_id ) || empty( $form->parent_form_id ) ) {
94
+ $set_name = $form->id;
95
+ }
96
+ }
97
+
98
+ foreach ( $xml->form as $form ) {
99
+ // Maybe set the form name if this isn't a child form.
100
+ if ( $set_name == $form->id ) {
101
+ $form->name = FrmAppHelper::get_param( 'name', '', 'post', 'sanitize_text_field' );
102
+ $form->description = FrmAppHelper::get_param( 'desc', '', 'post', 'sanitize_textarea_field' );
103
+ }
104
+
105
+ // Use a unique key to prevent editing existing form.
106
+ $name = sanitize_title( $form->name );
107
+ $form->form_key = FrmAppHelper::get_unique_key( $name, 'frm_forms', 'form_key' );
108
+ }
109
+ }
110
+
111
  public static function route() {
112
  $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action';
113
  $action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' );
258
  );
259
  $args = wp_parse_args( $args, $defaults );
260
 
261
+ // Make sure ids are numeric.
 
 
 
 
 
 
 
 
 
 
 
262
  if ( is_array( $args['ids'] ) && ! empty( $args['ids'] ) ) {
263
  $args['ids'] = array_filter( $args['ids'], 'is_numeric' );
264
  }
341
  unset( $tb_type );
342
  }
343
 
344
+ $filename = self::get_file_name( $args, $type, $records );
345
+
346
+ header( 'Content-Description: File Transfer' );
347
+ header( 'Content-Disposition: attachment; filename=' . $filename );
348
+ header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true );
349
+
350
  echo '<?xml version="1.0" encoding="' . esc_attr( get_bloginfo( 'charset' ) ) . "\" ?>\n";
351
  include( FrmAppHelper::plugin_path() . '/classes/views/xml/xml.php' );
352
  }
364
  }
365
  }
366
 
367
+ /**
368
+ * Use a generic file name if multiple items are exported.
369
+ * Use the nme of the form if only one form is exported.
370
+ *
371
+ * @since 3.06
372
+ *
373
+ * @return string
374
+ */
375
+ private static function get_file_name( $args, $type, $records ) {
376
+ $has_one_form = isset( $records['forms'] ) && ! empty( $records['forms'] ) && count( $args['ids'] ) === 1;
377
+ if ( $has_one_form ) {
378
+ // one form is being exported
379
+ $selected_form_id = reset( $args['ids'] );
380
+ foreach ( $records['forms'] as $form_id ) {
381
+ $filename = 'form-' . $form_id . '.xml';
382
+ if ( $selected_form_id === $form_id ) {
383
+ $form = FrmForm::getOne( $form_id );
384
+ $filename = sanitize_title( $form->name ) . '-form.xml';
385
+ break;
386
+ }
387
+ }
388
+ } else {
389
+ $sitename = sanitize_key( get_bloginfo( 'name' ) );
390
+
391
+ if ( ! empty( $sitename ) ) {
392
+ $sitename .= '.';
393
+ }
394
+ $filename = $sitename . 'formidable.' . date( 'Y-m-d' ) . '.xml';
395
+ }
396
+ return $filename;
397
+ }
398
+
399
  public static function generate_csv( $atts ) {
400
  $form_ids = $atts['ids'];
401
  if ( empty( $form_ids ) ) {
classes/helpers/FrmAppHelper.php CHANGED
@@ -4,14 +4,14 @@ if ( ! defined( 'ABSPATH' ) ) {
4
  }
5
 
6
  class FrmAppHelper {
7
- public static $db_version = 88; //version of the database we are moving to
8
  public static $pro_db_version = 37; //deprecated
9
  public static $font_version = 3;
10
 
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '3.05';
15
 
16
  /**
17
  * @since 1.07.02
@@ -620,6 +620,36 @@ class FrmAppHelper {
620
  }
621
  }
622
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
623
  /**
624
  * @param string $type
625
  */
@@ -1650,7 +1680,7 @@ class FrmAppHelper {
1650
  'updating_msg' => __( 'Please wait while your site updates.', 'formidable' ),
1651
  'deauthorize' => __( 'Are you sure you want to deauthorize Formidable Forms on this site?', 'formidable' ),
1652
  'url' => self::plugin_url(),
1653
- 'loading' => __( 'Loading&hellip;' ),
1654
  'nonce' => wp_create_nonce( 'frm_ajax' ),
1655
  );
1656
  wp_localize_script( 'formidable_admin_global', 'frmGlobal', $global_strings );
@@ -1677,7 +1707,7 @@ class FrmAppHelper {
1677
  $script_strings = array(
1678
  'ajax_url' => $ajax_url,
1679
  'images_url' => self::plugin_url() . '/images',
1680
- 'loading' => __( 'Loading&hellip;' ),
1681
  'remove' => __( 'Remove', 'formidable' ),
1682
  'offset' => apply_filters( 'frm_scroll_offset', 4 ),
1683
  'nonce' => wp_create_nonce( 'frm_ajax' ),
@@ -1698,7 +1728,7 @@ class FrmAppHelper {
1698
  'no_label' => __( '(no label)', 'formidable' ),
1699
  'saving' => esc_attr( __( 'Saving', 'formidable' ) ),
1700
  'saved' => esc_attr( __( 'Saved', 'formidable' ) ),
1701
- 'ok' => __( 'OK' ),
1702
  'cancel' => __( 'Cancel', 'formidable' ),
1703
  'default' => __( 'Default', 'formidable' ),
1704
  'clear_default' => __( 'Clear default value when typing', 'formidable' ),
@@ -1719,7 +1749,7 @@ class FrmAppHelper {
1719
  'import_complete' => __( 'Import Complete', 'formidable' ),
1720
  'updating' => __( 'Please wait while your site updates.', 'formidable' ),
1721
  'no_save_warning' => __( 'Warning: There is no way to retrieve unsaved entries.', 'formidable' ),
1722
- 'private' => __( 'Private' ),
1723
  'jquery_ui_url' => self::jquery_ui_base_url(),
1724
  'pro_url' => is_callable( 'FrmProAppHelper::plugin_url' ) ? FrmProAppHelper::plugin_url() : '',
1725
  'no_licenses' => __( 'No new licenses were found', 'formidable' ),
4
  }
5
 
6
  class FrmAppHelper {
7
+ public static $db_version = 90; //version of the database we are moving to
8
  public static $pro_db_version = 37; //deprecated
9
  public static $font_version = 3;
10
 
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '3.06';
15
 
16
  /**
17
  * @since 1.07.02
620
  }
621
  }
622
 
623
+ /**
624
+ * @since 3.06
625
+ */
626
+ public static function show_search_box( $text, $input_id, $placeholder = '' ) {
627
+ $tosearch = '';
628
+ $class = 'frm-search-input';
629
+ if ( $input_id === 'template' ) {
630
+ $tosearch = 'frm-card';
631
+ $class .= ' frm-auto-search';
632
+ }
633
+ $input_id = $input_id . '-search-input';
634
+ if ( empty( $text ) ) {
635
+ $text = __( 'Search', 'formidable' );
636
+ }
637
+ ?>
638
+ <p class="search-box frm-search">
639
+ <label class="screen-reader-text" for="<?php echo esc_attr( $input_id ) ?>">
640
+ <?php echo wp_kses( $text, array() ); ?>:
641
+ </label>
642
+ <span class="dashicons dashicons-search"></span>
643
+ <input type="search" id="<?php echo esc_attr( $input_id ) ?>" name="s" value="<?php _admin_search_query(); ?>" placeholder="<?php echo esc_attr( $placeholder ); ?>" class="<?php echo esc_attr( $class ); ?>" data-tosearch="<?php echo esc_attr( $tosearch ); ?>" />
644
+ <?php
645
+ if ( empty( $tosearch ) ) {
646
+ submit_button( $text, 'button-secondary', '', false, array( 'id' => 'search-submit' ) );
647
+ }
648
+ ?>
649
+ </p>
650
+ <?php
651
+ }
652
+
653
  /**
654
  * @param string $type
655
  */
1680
  'updating_msg' => __( 'Please wait while your site updates.', 'formidable' ),
1681
  'deauthorize' => __( 'Are you sure you want to deauthorize Formidable Forms on this site?', 'formidable' ),
1682
  'url' => self::plugin_url(),
1683
+ 'loading' => __( 'Loading&hellip;', 'formidable' ),
1684
  'nonce' => wp_create_nonce( 'frm_ajax' ),
1685
  );
1686
  wp_localize_script( 'formidable_admin_global', 'frmGlobal', $global_strings );
1707
  $script_strings = array(
1708
  'ajax_url' => $ajax_url,
1709
  'images_url' => self::plugin_url() . '/images',
1710
+ 'loading' => __( 'Loading&hellip;', 'formidable' ),
1711
  'remove' => __( 'Remove', 'formidable' ),
1712
  'offset' => apply_filters( 'frm_scroll_offset', 4 ),
1713
  'nonce' => wp_create_nonce( 'frm_ajax' ),
1728
  'no_label' => __( '(no label)', 'formidable' ),
1729
  'saving' => esc_attr( __( 'Saving', 'formidable' ) ),
1730
  'saved' => esc_attr( __( 'Saved', 'formidable' ) ),
1731
+ 'ok' => __( 'OK', 'formidable' ),
1732
  'cancel' => __( 'Cancel', 'formidable' ),
1733
  'default' => __( 'Default', 'formidable' ),
1734
  'clear_default' => __( 'Clear default value when typing', 'formidable' ),
1749
  'import_complete' => __( 'Import Complete', 'formidable' ),
1750
  'updating' => __( 'Please wait while your site updates.', 'formidable' ),
1751
  'no_save_warning' => __( 'Warning: There is no way to retrieve unsaved entries.', 'formidable' ),
1752
+ 'private' => __( 'Private', 'formidable' ),
1753
  'jquery_ui_url' => self::jquery_ui_base_url(),
1754
  'pro_url' => is_callable( 'FrmProAppHelper::plugin_url' ) ? FrmProAppHelper::plugin_url() : '',
1755
  'no_licenses' => __( 'No new licenses were found', 'formidable' ),
classes/helpers/FrmEntriesHelper.php CHANGED
@@ -538,7 +538,7 @@ class FrmEntriesHelper {
538
  if ( current_user_can( 'frm_delete_entries' ) ) {
539
  $actions['frm_delete'] = array(
540
  'url' => admin_url( 'admin.php?page=formidable-entries&frm_action=destroy&id=' . $id . '&form=' . $entry->form_id ),
541
- 'label' => __( 'Delete' ),
542
  'icon' => 'frm_icon_font frm_delete_icon',
543
  'data' => array( 'frmverify' => __( 'Really delete?', 'formidable' ) ),
544
  );
538
  if ( current_user_can( 'frm_delete_entries' ) ) {
539
  $actions['frm_delete'] = array(
540
  'url' => admin_url( 'admin.php?page=formidable-entries&frm_action=destroy&id=' . $id . '&form=' . $entry->form_id ),
541
+ 'label' => __( 'Delete', 'formidable' ),
542
  'icon' => 'frm_icon_font frm_delete_icon',
543
  'data' => array( 'frmverify' => __( 'Really delete?', 'formidable' ) ),
544
  );
classes/helpers/FrmEntriesListHelper.php CHANGED
@@ -111,7 +111,7 @@ class FrmEntriesListHelper extends FrmListHelper {
111
  if ( $which == 'top' && empty( $form_id ) ) {
112
  echo '<div class="alignleft actions">';
113
  echo FrmFormsHelper::forms_dropdown( 'form', $form_id, array( 'blank' => __( 'View all forms', 'formidable' ) ) ); // WPCS: XSS ok.
114
- submit_button( __( 'Filter' ), 'filter_action', '', false, array( 'id' => 'post-query-submit' ) );
115
  echo '</div>';
116
  }
117
  }
@@ -221,7 +221,7 @@ class FrmEntriesListHelper extends FrmListHelper {
221
  $val = '<abbr title="' . esc_attr( FrmAppHelper::get_formatted_time( $item->{$col_name}, '', 'g:i:s A' ) ) . '">' . $date . '</abbr>';
222
  break;
223
  case 'is_draft':
224
- $val = empty( $item->is_draft ) ? esc_html__( 'No' ) : esc_html__( 'Yes' );
225
  break;
226
  case 'form_id':
227
  $val = FrmFormsHelper::edit_form_link( $item->form_id );
@@ -254,7 +254,7 @@ class FrmEntriesListHelper extends FrmListHelper {
254
 
255
  if ( current_user_can( 'frm_delete_entries' ) ) {
256
  $delete_link = '?page=formidable-entries&frm_action=destroy&id=' . $item->id . '&form=' . $this->params['form'];
257
- $actions['delete'] = '<a href="' . esc_url( wp_nonce_url( $delete_link ) ) . '" class="submitdelete" data-frmverify="' . esc_attr__( 'Are you sure?', 'formidable' ) . '">' . __( 'Delete' ) . '</a>';
258
  }
259
 
260
  $actions = apply_filters( 'frm_row_actions', $actions, $item );
111
  if ( $which == 'top' && empty( $form_id ) ) {
112
  echo '<div class="alignleft actions">';
113
  echo FrmFormsHelper::forms_dropdown( 'form', $form_id, array( 'blank' => __( 'View all forms', 'formidable' ) ) ); // WPCS: XSS ok.
114
+ submit_button( __( 'Filter', 'formidable' ), 'filter_action', '', false, array( 'id' => 'post-query-submit' ) );
115
  echo '</div>';
116
  }
117
  }
221
  $val = '<abbr title="' . esc_attr( FrmAppHelper::get_formatted_time( $item->{$col_name}, '', 'g:i:s A' ) ) . '">' . $date . '</abbr>';
222
  break;
223
  case 'is_draft':
224
+ $val = empty( $item->is_draft ) ? esc_html__( 'No', 'formidable' ) : esc_html__( 'Yes', 'formidable' );
225
  break;
226
  case 'form_id':
227
  $val = FrmFormsHelper::edit_form_link( $item->form_id );
254
 
255
  if ( current_user_can( 'frm_delete_entries' ) ) {
256
  $delete_link = '?page=formidable-entries&frm_action=destroy&id=' . $item->id . '&form=' . $this->params['form'];
257
+ $actions['delete'] = '<a href="' . esc_url( wp_nonce_url( $delete_link ) ) . '" class="submitdelete" data-frmverify="' . esc_attr__( 'Are you sure?', 'formidable' ) . '">' . __( 'Delete', 'formidable' ) . '</a>';
258
  }
259
 
260
  $actions = apply_filters( 'frm_row_actions', $actions, $item );
classes/helpers/FrmFieldsHelper.php CHANGED
@@ -438,7 +438,7 @@ class FrmFieldsHelper {
438
 
439
  $link = sprintf(
440
  esc_html__( 'Please add options from the WordPress "%1$s" page', 'formidable' ),
441
- '<a href="' . esc_url( admin_url( 'edit-tags.php?taxonomy=' . $tax->name ) ) . '" target="_blank">' . ( empty( $tax->labels->name ) ? esc_html__( 'Categories' ) : $tax->labels->name ) . '</a>'
442
  );
443
  unset( $tax );
444
 
438
 
439
  $link = sprintf(
440
  esc_html__( 'Please add options from the WordPress "%1$s" page', 'formidable' ),
441
+ '<a href="' . esc_url( admin_url( 'edit-tags.php?taxonomy=' . $tax->name ) ) . '" target="_blank">' . ( empty( $tax->labels->name ) ? esc_html__( 'Categories', 'formidable' ) : $tax->labels->name ) . '</a>'
442
  );
443
  unset( $tax );
444
 
classes/helpers/FrmFormsHelper.php CHANGED
@@ -110,7 +110,7 @@ class FrmFormsHelper {
110
  $args['form'] = $form->id;
111
  }
112
  ?>
113
- <li><a href="<?php echo esc_url( isset( $base ) ? add_query_arg( $args, $base ) : add_query_arg( $args ) ); ?>" tabindex="-1"><?php echo esc_html( empty( $form->name ) ? __( '(no title)' ) : FrmAppHelper::truncate( $form->name, 60 ) ); ?></a></li>
114
  <?php
115
  unset( $form );
116
  }
@@ -217,7 +217,6 @@ class FrmFormsHelper {
217
  'form_id' => '',
218
  'logged_in' => '',
219
  'editable' => '',
220
- 'default_template' => 0,
221
  'is_template' => 0,
222
  'status' => 'draft',
223
  'parent_form_id' => 0,
@@ -248,7 +247,6 @@ class FrmFormsHelper {
248
  }
249
 
250
  $values['form_key'] = isset( $post_values['form_key'] ) ? $post_values['form_key'] : $record->form_key;
251
- $values['default_template'] = isset( $post_values['default_template'] ) ? $post_values['default_template'] : $record->default_template;
252
  $values['is_template'] = isset( $post_values['is_template'] ) ? $post_values['is_template'] : $record->is_template;
253
  $values['status'] = $record->status;
254
 
@@ -776,7 +774,7 @@ BEFORE_HTML;
776
  }
777
 
778
  if ( $form_id ) {
779
- $val = '<a href="' . esc_url( admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ) ) . '">' . ( '' == $name ? __( '(no title)' ) : FrmAppHelper::truncate( $name, 40 ) ) . '</a>';
780
  } else {
781
  $val = '';
782
  }
110
  $args['form'] = $form->id;
111
  }
112
  ?>
113
+ <li><a href="<?php echo esc_url( isset( $base ) ? add_query_arg( $args, $base ) : add_query_arg( $args ) ); ?>" tabindex="-1"><?php echo esc_html( empty( $form->name ) ? __( '(no title)', 'formidable' ) : FrmAppHelper::truncate( $form->name, 60 ) ); ?></a></li>
114
  <?php
115
  unset( $form );
116
  }
217
  'form_id' => '',
218
  'logged_in' => '',
219
  'editable' => '',
 
220
  'is_template' => 0,
221
  'status' => 'draft',
222
  'parent_form_id' => 0,
247
  }
248
 
249
  $values['form_key'] = isset( $post_values['form_key'] ) ? $post_values['form_key'] : $record->form_key;
 
250
  $values['is_template'] = isset( $post_values['is_template'] ) ? $post_values['is_template'] : $record->is_template;
251
  $values['status'] = $record->status;
252
 
774
  }
775
 
776
  if ( $form_id ) {
777
+ $val = '<a href="' . esc_url( admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ) ) . '">' . ( '' == $name ? __( '(no title)', 'formidable' ) : FrmAppHelper::truncate( $name, 40 ) ) . '</a>';
778
  } else {
779
  $val = '';
780
  }
classes/helpers/FrmFormsListHelper.php CHANGED
@@ -51,10 +51,6 @@ class FrmFormsListHelper extends FrmListHelper {
51
  ),
52
  );
53
  switch ( $this->status ) {
54
- case 'template':
55
- $s_query['is_template'] = 1;
56
- $s_query['status !'] = 'trash';
57
- break;
58
  case 'draft':
59
  $s_query['is_template'] = 0;
60
  $s_query['status'] = 'draft';
@@ -100,14 +96,12 @@ class FrmFormsListHelper extends FrmListHelper {
100
  }
101
 
102
  public function no_items() {
103
- if ( 'template' == $this->status ) {
104
- esc_html_e( 'No Templates Found.', 'formidable' );
105
- } else {
106
- esc_html_e( 'No Forms Found.', 'formidable' );
107
- ?>
108
- <a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable&frm_action=new' ) ) ?>"><?php esc_html_e( 'Add New', 'formidable' ); ?></a>
109
  <?php
110
- }
111
  }
112
 
113
  public function get_bulk_actions() {
@@ -124,7 +118,7 @@ class FrmFormsListHelper extends FrmListHelper {
124
  } elseif ( EMPTY_TRASH_DAYS && current_user_can( 'frm_delete_forms' ) ) {
125
  $actions['bulk_trash'] = __( 'Move to Trash', 'formidable' );
126
  } elseif ( current_user_can( 'frm_delete_forms' ) ) {
127
- $actions['bulk_delete'] = __( 'Delete' );
128
  }
129
 
130
  return $actions;
@@ -138,56 +132,16 @@ class FrmFormsListHelper extends FrmListHelper {
138
  if ( 'trash' == $this->status && current_user_can( 'frm_delete_forms' ) ) {
139
  ?>
140
  <div class="alignleft actions frm_visible_overflow">
141
- <?php submit_button( __( 'Empty Trash' ), 'apply', 'delete_all', false ); ?>
142
  </div>
143
  <?php
144
- return;
145
  }
146
-
147
- if ( 'template' != $this->status ) {
148
- return;
149
- }
150
-
151
- $where = apply_filters( 'frm_forms_dropdown', array(), '' );
152
- $forms = FrmForm::get_published_forms( $where );
153
-
154
- $base = admin_url( 'admin.php?page=formidable&form_type=template' );
155
- $args = array(
156
- 'frm_action' => 'duplicate',
157
- 'template' => true,
158
- );
159
-
160
- ?>
161
- <div class="alignleft actions frm_visible_overflow">
162
- <div class="dropdown frm_tiny_top_margin">
163
- <a href="#" id="frm-templateDrop" class="frm-dropdown-toggle button" data-toggle="dropdown"><?php esc_html_e( 'Create New Template', 'formidable' ) ?> <b class="caret"></b></a>
164
- <ul class="frm-dropdown-menu" role="menu" aria-labelledby="frm-templateDrop">
165
- <?php
166
- if ( empty( $forms ) ) {
167
- ?>
168
- <li class="frm_dropdown_li"><?php esc_html_e( 'You have not created any forms yet. You must create a form before you can make a template.', 'formidable' ) ?></li>
169
- <?php
170
- } else {
171
- foreach ( $forms as $form ) {
172
- $args['id'] = $form->id;
173
- ?>
174
- <li><a href="<?php echo esc_url( add_query_arg( $args, $base ) ); ?>" tabindex="-1"><?php echo esc_html( empty( $form->name ) ? __( '(no title)' ) : FrmAppHelper::truncate( $form->name, 33 ) ); ?></a></li>
175
- <?php
176
- unset( $form );
177
- }
178
- }
179
- ?>
180
- </ul>
181
- </div>
182
- </div>
183
- <?php
184
  }
185
 
186
  public function get_views() {
187
 
188
  $statuses = array(
189
  'published' => __( 'My Forms', 'formidable' ),
190
- 'template' => __( 'Templates', 'formidable' ),
191
  'draft' => __( 'Drafts', 'formidable' ),
192
  'trash' => __( 'Trash', 'formidable' ),
193
  );
@@ -209,7 +163,7 @@ class FrmFormsListHelper extends FrmListHelper {
209
  $class = '';
210
  }
211
 
212
- if ( $counts->{$status} || 'published' == $status || 'template' == $status ) {
213
  $links[ $status ] = '<a href="' . esc_url( '?page=formidable&form_type=' . $status ) . '" ' . $class . '>' . sprintf( __( '%1$s <span class="count">(%2$s)</span>', 'formidable' ), $name, number_format_i18n( $counts->{$status} ) ) . '</a>';
214
  }
215
 
@@ -295,10 +249,6 @@ class FrmFormsListHelper extends FrmListHelper {
295
  $val = current_user_can( 'frm_view_entries' ) ? '<a href="' . esc_url( admin_url( 'admin.php?page=formidable-entries&form=' . $item->id ) ) . '">' . $text . '</a>' : $text;
296
  unset( $text );
297
  }
298
- break;
299
- case 'type':
300
- $val = ( $item->is_template && $item->default_template ) ? __( 'Default', 'formidable' ) : __( 'Custom', 'formidable' );
301
- break;
302
  }
303
 
304
  if ( isset( $val ) ) {
@@ -328,17 +278,12 @@ class FrmFormsListHelper extends FrmListHelper {
328
  }
329
 
330
  if ( current_user_can( 'frm_edit_forms' ) ) {
331
- if ( ! $item->is_template || ! $item->default_template ) {
332
- $actions['frm_edit'] = '<a href="' . esc_url( $edit_link ) . '">' . __( 'Edit' ) . '</a>';
333
- }
334
-
335
- if ( ! $item->is_template ) {
336
- $actions['frm_settings'] = '<a href="' . esc_url( '?page=formidable&frm_action=settings&id=' . $item->id ) . '">' . __( 'Settings', 'formidable' ) . '</a>';
337
- }
338
  }
339
 
340
  $actions = array_merge( $actions, $new_actions );
341
- $actions['view'] = '<a href="' . esc_url( FrmFormsHelper::get_direct_link( $item->form_key, $item ) ) . '" target="_blank">' . __( 'Preview' ) . '</a>';
342
  }
343
 
344
  /**
@@ -347,7 +292,7 @@ class FrmFormsListHelper extends FrmListHelper {
347
  private function get_form_name( $item, $actions, $edit_link, $mode = 'list' ) {
348
  $form_name = $item->name;
349
  if ( trim( $form_name ) == '' ) {
350
- $form_name = __( '(no title)' );
351
  }
352
  $form_name = FrmAppHelper::kses( $form_name );
353
  if ( 'excerpt' != $mode ) {
51
  ),
52
  );
53
  switch ( $this->status ) {
 
 
 
 
54
  case 'draft':
55
  $s_query['is_template'] = 0;
56
  $s_query['status'] = 'draft';
96
  }
97
 
98
  public function no_items() {
99
+ esc_html_e( 'No Forms Found.', 'formidable' );
100
+ ?>
101
+ <a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable&frm_action=new' ) ) ?>">
102
+ <?php esc_html_e( 'Add New', 'formidable' ); ?>
103
+ </a>
 
104
  <?php
 
105
  }
106
 
107
  public function get_bulk_actions() {
118
  } elseif ( EMPTY_TRASH_DAYS && current_user_can( 'frm_delete_forms' ) ) {
119
  $actions['bulk_trash'] = __( 'Move to Trash', 'formidable' );
120
  } elseif ( current_user_can( 'frm_delete_forms' ) ) {
121
+ $actions['bulk_delete'] = __( 'Delete', 'formidable' );
122
  }
123
 
124
  return $actions;
132
  if ( 'trash' == $this->status && current_user_can( 'frm_delete_forms' ) ) {
133
  ?>
134
  <div class="alignleft actions frm_visible_overflow">
135
+ <?php submit_button( __( 'Empty Trash', 'formidable' ), 'apply', 'delete_all', false ); ?>
136
  </div>
137
  <?php
 
138
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  }
140
 
141
  public function get_views() {
142
 
143
  $statuses = array(
144
  'published' => __( 'My Forms', 'formidable' ),
 
145
  'draft' => __( 'Drafts', 'formidable' ),
146
  'trash' => __( 'Trash', 'formidable' ),
147
  );
163
  $class = '';
164
  }
165
 
166
+ if ( $counts->{$status} || 'published' == $status ) {
167
  $links[ $status ] = '<a href="' . esc_url( '?page=formidable&form_type=' . $status ) . '" ' . $class . '>' . sprintf( __( '%1$s <span class="count">(%2$s)</span>', 'formidable' ), $name, number_format_i18n( $counts->{$status} ) ) . '</a>';
168
  }
169
 
249
  $val = current_user_can( 'frm_view_entries' ) ? '<a href="' . esc_url( admin_url( 'admin.php?page=formidable-entries&form=' . $item->id ) ) . '">' . $text . '</a>' : $text;
250
  unset( $text );
251
  }
 
 
 
 
252
  }
253
 
254
  if ( isset( $val ) ) {
278
  }
279
 
280
  if ( current_user_can( 'frm_edit_forms' ) ) {
281
+ $actions['frm_edit'] = '<a href="' . esc_url( $edit_link ) . '">' . __( 'Edit', 'formidable' ) . '</a>';
282
+ $actions['frm_settings'] = '<a href="' . esc_url( '?page=formidable&frm_action=settings&id=' . $item->id ) . '">' . __( 'Settings', 'formidable' ) . '</a>';
 
 
 
 
 
283
  }
284
 
285
  $actions = array_merge( $actions, $new_actions );
286
+ $actions['view'] = '<a href="' . esc_url( FrmFormsHelper::get_direct_link( $item->form_key, $item ) ) . '" target="_blank">' . __( 'Preview', 'formidable' ) . '</a>';
287
  }
288
 
289
  /**
292
  private function get_form_name( $item, $actions, $edit_link, $mode = 'list' ) {
293
  $form_name = $item->name;
294
  if ( trim( $form_name ) == '' ) {
295
+ $form_name = __( '(no title)', 'formidable' );
296
  }
297
  $form_name = FrmAppHelper::kses( $form_name );
298
  if ( 'excerpt' != $mode ) {
classes/helpers/FrmListHelper.php CHANGED
@@ -120,8 +120,8 @@ class FrmListHelper {
120
 
121
  if ( empty( $this->modes ) ) {
122
  $this->modes = array(
123
- 'list' => __( 'List View' ),
124
- 'excerpt' => __( 'Excerpt View' ),
125
  );
126
  }
127
  }
@@ -237,7 +237,7 @@ class FrmListHelper {
237
  * @access public
238
  */
239
  public function no_items() {
240
- esc_html_e( 'No items found.' );
241
  }
242
 
243
  /**
@@ -254,18 +254,11 @@ class FrmListHelper {
254
  return;
255
  }
256
 
257
- $input_id = $input_id . '-search-input';
258
-
259
  foreach ( array( 'orderby', 'order' ) as $search_params ) {
260
  $this->hidden_search_inputs( $search_params );
261
  }
262
- ?>
263
- <p class="search-box">
264
- <label class="screen-reader-text" for="<?php echo esc_attr( $input_id ) ?>"><?php echo wp_kses( $text, array() ); ?>:</label>
265
- <input type="search" id="<?php echo esc_attr( $input_id ) ?>" name="s" value="<?php _admin_search_query(); ?>" />
266
- <?php submit_button( $text, 'button', '', false, array( 'id' => 'search-submit' ) ); ?>
267
- </p>
268
- <?php
269
  }
270
 
271
  private function hidden_search_inputs( $param_name ) {
@@ -369,9 +362,9 @@ class FrmListHelper {
369
  return;
370
  }
371
 
372
- echo "<label for='bulk-action-selector-" . esc_attr( $which ) . "' class='screen-reader-text'>" . esc_attr__( 'Select bulk action' ) . '</label>';
373
  echo "<select name='action" . esc_attr( $two ) . "' id='bulk-action-selector-" . esc_attr( $which ) . "'>\n";
374
- echo "<option value='-1' selected='selected'>" . esc_attr__( 'Bulk Actions' ) . "</option>\n";
375
 
376
  foreach ( $this->_actions as $name => $title ) {
377
  $class = 'edit' == $name ? ' class="hide-if-no-js"' : '';
@@ -381,7 +374,7 @@ class FrmListHelper {
381
 
382
  echo "</select>\n";
383
 
384
- submit_button( __( 'Apply' ), 'action', '', false, array( 'id' => "doaction$two" ) );
385
  echo "\n";
386
  }
387
 
@@ -446,7 +439,7 @@ class FrmListHelper {
446
  }
447
  $out .= '</div>';
448
 
449
- $out .= '<button type="button" class="toggle-row"><span class="screen-reader-text">' . __( 'Show more details' ) . '</span></button>';
450
 
451
  return $out;
452
  }
@@ -552,7 +545,7 @@ class FrmListHelper {
552
  $infinite_scroll = $this->_pagination_args['infinite_scroll'];
553
  }
554
 
555
- $output = '<span class="displaying-num">' . sprintf( _n( '%s item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . '</span>';
556
 
557
  $current = $this->get_pagenum();
558
 
@@ -583,17 +576,17 @@ class FrmListHelper {
583
 
584
  if ( 'bottom' == $which ) {
585
  $html_current_page = $current;
586
- $total_pages_before = '<span class="screen-reader-text">' . __( 'Current Page' ) . '</span><span id="table-paging" class="paging-input">';
587
  } else {
588
  $html_current_page = sprintf(
589
  "%s<input class='current-page' id='current-page-selector' type='text' name='paged' value='%s' size='%d' aria-describedby='table-paging' />",
590
- '<label for="current-page-selector" class="screen-reader-text">' . __( 'Current Page' ) . '</label>',
591
  $current,
592
  strlen( $total_pages )
593
  );
594
  }
595
  $html_total_pages = sprintf( "<span class='total-pages'>%s</span>", number_format_i18n( $total_pages ) );
596
- $page_links[] = $total_pages_before . sprintf( _x( '%1$s of %2$s', 'paging' ), $html_current_page, $html_total_pages ) . $total_pages_after;
597
 
598
  $page_links[] = $this->add_page_link(
599
  array(
@@ -657,10 +650,10 @@ class FrmListHelper {
657
 
658
  private function link_label( $link ) {
659
  $labels = array(
660
- 'first' => __( 'First page' ),
661
- 'last' => __( 'Last page' ),
662
- 'prev' => __( 'Previous page' ),
663
- 'next' => __( 'Next page' ),
664
  );
665
  return $labels[ $link ];
666
  }
@@ -875,7 +868,7 @@ class FrmListHelper {
875
 
876
  if ( ! empty( $columns['cb'] ) ) {
877
  static $cb_counter = 1;
878
- $columns['cb'] = '<label class="screen-reader-text" for="cb-select-all-' . $cb_counter . '">' . __( 'Select All' ) . '</label>'
879
  . '<input id="cb-select-all-' . esc_attr( $cb_counter ) . '" type="checkbox" />';
880
  $cb_counter++;
881
  }
@@ -1099,7 +1092,7 @@ class FrmListHelper {
1099
  * @return string The row actions output. In this case, an empty string.
1100
  */
1101
  protected function handle_row_actions( $item, $column_name, $primary ) {
1102
- return $column_name == $primary ? '<button type="button" class="toggle-row"><span class="screen-reader-text">' . esc_html__( 'Show more details' ) . '</span></button>' : '';
1103
  }
1104
 
1105
  /**
@@ -1124,7 +1117,7 @@ class FrmListHelper {
1124
 
1125
  if ( isset( $this->_pagination_args['total_items'] ) ) {
1126
  $response['total_items_i18n'] = sprintf(
1127
- _n( '%s item', '%s items', $this->_pagination_args['total_items'] ),
1128
  number_format_i18n( $this->_pagination_args['total_items'] )
1129
  );
1130
  }
120
 
121
  if ( empty( $this->modes ) ) {
122
  $this->modes = array(
123
+ 'list' => __( 'List View', 'formidable' ),
124
+ 'excerpt' => __( 'Excerpt View', 'formidable' ),
125
  );
126
  }
127
  }
237
  * @access public
238
  */
239
  public function no_items() {
240
+ esc_html_e( 'No items found.', 'formidable' );
241
  }
242
 
243
  /**
254
  return;
255
  }
256
 
 
 
257
  foreach ( array( 'orderby', 'order' ) as $search_params ) {
258
  $this->hidden_search_inputs( $search_params );
259
  }
260
+
261
+ FrmAppHelper::show_search_box( $text, $input_id );
 
 
 
 
 
262
  }
263
 
264
  private function hidden_search_inputs( $param_name ) {
362
  return;
363
  }
364
 
365
+ echo "<label for='bulk-action-selector-" . esc_attr( $which ) . "' class='screen-reader-text'>" . esc_attr__( 'Select bulk action', 'formidable' ) . '</label>';
366
  echo "<select name='action" . esc_attr( $two ) . "' id='bulk-action-selector-" . esc_attr( $which ) . "'>\n";
367
+ echo "<option value='-1' selected='selected'>" . esc_attr__( 'Bulk Actions', 'formidable' ) . "</option>\n";
368
 
369
  foreach ( $this->_actions as $name => $title ) {
370
  $class = 'edit' == $name ? ' class="hide-if-no-js"' : '';
374
 
375
  echo "</select>\n";
376
 
377
+ submit_button( __( 'Apply', 'formidable' ), 'action', '', false, array( 'id' => "doaction$two" ) );
378
  echo "\n";
379
  }
380
 
439
  }
440
  $out .= '</div>';
441
 
442
+ $out .= '<button type="button" class="toggle-row"><span class="screen-reader-text">' . __( 'Show more details', 'formidable' ) . '</span></button>';
443
 
444
  return $out;
445
  }
545
  $infinite_scroll = $this->_pagination_args['infinite_scroll'];
546
  }
547
 
548
+ $output = '<span class="displaying-num">' . sprintf( _n( '%s item', '%s items', $total_items, 'formidable' ), number_format_i18n( $total_items ) ) . '</span>';
549
 
550
  $current = $this->get_pagenum();
551
 
576
 
577
  if ( 'bottom' == $which ) {
578
  $html_current_page = $current;
579
+ $total_pages_before = '<span class="screen-reader-text">' . __( 'Current Page', 'formidable' ) . '</span><span id="table-paging" class="paging-input">';
580
  } else {
581
  $html_current_page = sprintf(
582
  "%s<input class='current-page' id='current-page-selector' type='text' name='paged' value='%s' size='%d' aria-describedby='table-paging' />",
583
+ '<label for="current-page-selector" class="screen-reader-text">' . __( 'Current Page', 'formidable' ) . '</label>',
584
  $current,
585
  strlen( $total_pages )
586
  );
587
  }
588
  $html_total_pages = sprintf( "<span class='total-pages'>%s</span>", number_format_i18n( $total_pages ) );
589
+ $page_links[] = $total_pages_before . sprintf( _x( '%1$s of %2$s', 'paging', 'formidable' ), $html_current_page, $html_total_pages ) . $total_pages_after;
590
 
591
  $page_links[] = $this->add_page_link(
592
  array(
650
 
651
  private function link_label( $link ) {
652
  $labels = array(
653
+ 'first' => __( 'First page', 'formidable' ),
654
+ 'last' => __( 'Last page', 'formidable' ),
655
+ 'prev' => __( 'Previous page', 'formidable' ),
656
+ 'next' => __( 'Next page', 'formidable' ),
657
  );
658
  return $labels[ $link ];
659
  }
868
 
869
  if ( ! empty( $columns['cb'] ) ) {
870
  static $cb_counter = 1;
871
+ $columns['cb'] = '<label class="screen-reader-text" for="cb-select-all-' . $cb_counter . '">' . __( 'Select All', 'formidable' ) . '</label>'
872
  . '<input id="cb-select-all-' . esc_attr( $cb_counter ) . '" type="checkbox" />';
873
  $cb_counter++;
874
  }
1092
  * @return string The row actions output. In this case, an empty string.
1093
  */
1094
  protected function handle_row_actions( $item, $column_name, $primary ) {
1095
+ return $column_name == $primary ? '<button type="button" class="toggle-row"><span class="screen-reader-text">' . esc_html__( 'Show more details', 'formidable' ) . '</span></button>' : '';
1096
  }
1097
 
1098
  /**
1117
 
1118
  if ( isset( $this->_pagination_args['total_items'] ) ) {
1119
  $response['total_items_i18n'] = sprintf(
1120
+ _n( '%s item', '%s items', $this->_pagination_args['total_items'], 'formidable' ),
1121
  number_format_i18n( $this->_pagination_args['total_items'] )
1122
  );
1123
  }
classes/helpers/FrmXMLHelper.php CHANGED
@@ -23,25 +23,6 @@ class FrmXMLHelper {
23
  }
24
 
25
  public static function import_xml( $file ) {
26
- $defaults = array(
27
- 'forms' => 0,
28
- 'fields' => 0,
29
- 'terms' => 0,
30
- 'posts' => 0,
31
- 'views' => 0,
32
- 'actions' => 0,
33
- 'styles' => 0,
34
- );
35
-
36
- $imported = array(
37
- 'imported' => $defaults,
38
- 'updated' => $defaults,
39
- 'forms' => array(),
40
- 'terms' => array(),
41
- );
42
-
43
- unset( $defaults );
44
-
45
  if ( ! defined( 'WP_IMPORTING' ) ) {
46
  define( 'WP_IMPORTING', true );
47
  }
@@ -68,7 +49,18 @@ class FrmXMLHelper {
68
  return new WP_Error( 'SimpleXML_parse_error', __( 'There was an error when reading this XML file', 'formidable' ), libxml_get_errors() );
69
  }
70
 
71
- // add terms, forms (form and field ids), posts (post ids), and entries to db, in that order
 
 
 
 
 
 
 
 
 
 
 
72
  foreach ( array( 'term', 'form', 'view' ) as $item_type ) {
73
  // grab cats, tags, and terms, or forms or posts
74
  if ( isset( $xml->{$item_type} ) ) {
@@ -78,10 +70,31 @@ class FrmXMLHelper {
78
  }
79
  }
80
 
81
- $return = apply_filters( 'frm_importing_xml', $imported, $xml );
 
82
 
83
- return $return;
84
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
 
86
  public static function import_xml_terms( $terms, $imported ) {
87
  foreach ( $terms as $t ) {
@@ -190,7 +203,6 @@ class FrmXMLHelper {
190
  'options' => (string) $item->options,
191
  'logged_in' => (int) $item->logged_in,
192
  'is_template' => (int) $item->is_template,
193
- 'default_template' => (int) $item->default_template,
194
  'editable' => (int) $item->editable,
195
  'status' => (string) $item->status,
196
  'parent_form_id' => isset( $item->parent_form_id ) ? (int) $item->parent_form_id : 0,
@@ -872,8 +884,9 @@ class FrmXMLHelper {
872
  */
873
  public static function prepare_form_options_for_export( $options ) {
874
  $options = maybe_unserialize( $options );
875
- // Change custom_style to the post_name instead of ID
876
- if ( isset( $options['custom_style'] ) && 1 !== $options['custom_style'] ) {
 
877
  global $wpdb;
878
  $table = $wpdb->prefix . 'posts';
879
  $where = array( 'ID' => $options['custom_style'] );
@@ -887,10 +900,107 @@ class FrmXMLHelper {
887
  $options['custom_style'] = 1;
888
  }
889
  }
 
890
  $options = serialize( $options );
891
  return self::cdata( $options );
892
  }
893
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
894
  public static function cdata( $str ) {
895
  $str = maybe_unserialize( $str );
896
  if ( is_array( $str ) ) {
23
  }
24
 
25
  public static function import_xml( $file ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  if ( ! defined( 'WP_IMPORTING' ) ) {
27
  define( 'WP_IMPORTING', true );
28
  }
49
  return new WP_Error( 'SimpleXML_parse_error', __( 'There was an error when reading this XML file', 'formidable' ), libxml_get_errors() );
50
  }
51
 
52
+ return self::import_xml_now( $xml );
53
+ }
54
+
55
+ /**
56
+ * Add terms, forms (form and field ids), posts (post ids), and entries to db, in that order
57
+ *
58
+ * @since 3.06
59
+ * @return array The number of items imported
60
+ */
61
+ public static function import_xml_now( $xml ) {
62
+ $imported = self::pre_import_data();
63
+
64
  foreach ( array( 'term', 'form', 'view' ) as $item_type ) {
65
  // grab cats, tags, and terms, or forms or posts
66
  if ( isset( $xml->{$item_type} ) ) {
70
  }
71
  }
72
 
73
+ return apply_filters( 'frm_importing_xml', $imported, $xml );
74
+ }
75
 
76
+ /**
77
+ * @since 3.06
78
+ * @return array
79
+ */
80
+ private static function pre_import_data() {
81
+ $defaults = array(
82
+ 'forms' => 0,
83
+ 'fields' => 0,
84
+ 'terms' => 0,
85
+ 'posts' => 0,
86
+ 'views' => 0,
87
+ 'actions' => 0,
88
+ 'styles' => 0,
89
+ );
90
+
91
+ return array(
92
+ 'imported' => $defaults,
93
+ 'updated' => $defaults,
94
+ 'forms' => array(),
95
+ 'terms' => array(),
96
+ );
97
+ }
98
 
99
  public static function import_xml_terms( $terms, $imported ) {
100
  foreach ( $terms as $t ) {
203
  'options' => (string) $item->options,
204
  'logged_in' => (int) $item->logged_in,
205
  'is_template' => (int) $item->is_template,
 
206
  'editable' => (int) $item->editable,
207
  'status' => (string) $item->status,
208
  'parent_form_id' => isset( $item->parent_form_id ) ? (int) $item->parent_form_id : 0,
884
  */
885
  public static function prepare_form_options_for_export( $options ) {
886
  $options = maybe_unserialize( $options );
887
+ // Change custom_style to the post_name instead of ID (1 may be a string)
888
+ $not_default = isset( $options['custom_style'] ) && 1 != $options['custom_style'];
889
+ if ( $not_default ) {
890
  global $wpdb;
891
  $table = $wpdb->prefix . 'posts';
892
  $where = array( 'ID' => $options['custom_style'] );
900
  $options['custom_style'] = 1;
901
  }
902
  }
903
+ self::remove_default_form_options( $options );
904
  $options = serialize( $options );
905
  return self::cdata( $options );
906
  }
907
 
908
+ /**
909
+ * If the saved value is the same as the default, remove it from the export
910
+ * This keeps file size down and prevents overriding global settings after import
911
+ *
912
+ * @since 3.06
913
+ */
914
+ private static function remove_default_form_options( &$options ) {
915
+ $defaults = FrmFormsHelper::get_default_opts();
916
+ if ( is_callable( 'FrmProFormsHelper::get_default_opts' ) ) {
917
+ $defaults += FrmProFormsHelper::get_default_opts();
918
+ }
919
+ self::remove_defaults( $defaults, $options );
920
+ }
921
+
922
+ /**
923
+ * Remove extra settings from field to keep file size down
924
+ *
925
+ * @since 3.06
926
+ */
927
+ public static function prepare_field_for_export( &$field ) {
928
+ self::remove_default_field_options( $field );
929
+ }
930
+
931
+ /**
932
+ * Remove defaults from field options too
933
+ *
934
+ * @since 3.06
935
+ */
936
+ private static function remove_default_field_options( &$field ) {
937
+ $defaults = FrmFieldsHelper::get_default_field_options( $field->type );
938
+ if ( empty( $defaults['blank'] ) ) {
939
+ $global_settings = new FrmSettings();
940
+ $global_defaults = $global_settings->default_options();
941
+ $defaults['blank'] = $global_defaults['blank_msg'];
942
+ }
943
+
944
+ if ( empty( $defaults['custom_html'] ) ) {
945
+ $defaults['custom_html'] = FrmFieldsHelper::get_default_html( $field->type );
946
+ }
947
+ $options = maybe_unserialize( $field->field_options );
948
+ self::remove_defaults( $defaults, $options );
949
+ self::remove_default_html( 'custom_html', $defaults, $options );
950
+
951
+ // Get variations on the defaults.
952
+ if ( isset( $options['invalid'] ) ) {
953
+ $defaults = array(
954
+ 'invalid' => sprintf( __( '%s is invalid', 'formidable' ), $field->name ),
955
+ );
956
+ self::remove_defaults( $defaults, $options );
957
+ }
958
+
959
+ $field->field_options = serialize( $options );
960
+ }
961
+
962
+ /**
963
+ * Compare the default array to the saved values and
964
+ * remove if they are the same
965
+ *
966
+ * @since 3.06
967
+ */
968
+ private static function remove_defaults( $defaults, &$saved ) {
969
+ $array_defaults = array_filter( $defaults, 'is_array' );
970
+ foreach ( $array_defaults as $d => $default ) {
971
+ // compare array defaults
972
+ if ( $default == $saved[ $d ] ) {
973
+ unset( $saved[ $d ] );
974
+ }
975
+ unset( $defaults[ $d ] );
976
+ }
977
+ $saved = array_diff_assoc( (array) $saved, $defaults );
978
+ }
979
+
980
+ /**
981
+ * The line endings may prevent html from being equal when it should
982
+ *
983
+ * @since 3.06
984
+ */
985
+ private static function remove_default_html( $html_name, $defaults, &$options ) {
986
+ if ( ! isset( $options[ $html_name ] ) || ! isset( $defaults[ $html_name ] ) ) {
987
+ return;
988
+ }
989
+
990
+ $old_html = str_replace( "\r\n", "\n", $options[ $html_name ] );
991
+ $default_html = $defaults[ $html_name ];
992
+ if ( $old_html == $default_html ) {
993
+ unset( $options[ $html_name ] );
994
+ return;
995
+ }
996
+
997
+ // Account for some of the older field default HTML.
998
+ $default_html = str_replace( ' id="frm_desc_field_[key]"', '', $default_html );
999
+ if ( $old_html == $default_html ) {
1000
+ unset( $options[ $html_name ] );
1001
+ }
1002
+ }
1003
+
1004
  public static function cdata( $str ) {
1005
  $str = maybe_unserialize( $str );
1006
  if ( is_array( $str ) ) {
classes/models/FrmAddon.php CHANGED
@@ -104,7 +104,8 @@ class FrmAddon {
104
  ),
105
  );
106
  } else {
107
- $plugins = FrmAddonsController::get_addon_info( $this->license );
 
108
  $_data = $plugins[ $item_id ];
109
  }
110
 
@@ -143,8 +144,9 @@ class FrmAddon {
143
  return false;
144
  }
145
 
146
- $frmpro_updater = FrmAddonsController::get_pro_updater();
147
- $license = $frmpro_updater->license;
 
148
  if ( empty( $license ) ) {
149
  return false;
150
  }
@@ -236,7 +238,9 @@ class FrmAddon {
236
  */
237
  protected function delete_cache() {
238
  delete_transient( 'frm_api_licence' );
239
- delete_option( FrmAddonsController::get_cache_key( $this->license ) );
 
 
240
  }
241
 
242
  /**
@@ -260,7 +264,8 @@ class FrmAddon {
260
  /* translators: %1$s: Plugin name, %2$s: Start link HTML, %3$s: end link HTML */
261
  $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>' );
262
  } else {
263
- $errors = FrmAddonsController::error_for_license( $this->license );
 
264
  if ( ! empty( $errors ) ) {
265
  $message = reset( $errors );
266
  }
@@ -338,8 +343,8 @@ class FrmAddon {
338
  * @since 3.04.03
339
  */
340
  protected function get_api_info( $license ) {
341
- $addons = FrmAddonsController::get_addon_info( $license );
342
- $addon = FrmAddonsController::get_addon_for_license( $addons, $this );
343
 
344
  // if there is no download url, this license does not apply to the addon
345
  if ( isset( $addon['package'] ) ) {
@@ -363,7 +368,8 @@ class FrmAddon {
363
  $timeout = ( isset( $version_info->timeout ) && ! empty( $version_info->timeout ) ) ? $version_info->timeout : 0;
364
  if ( ! empty( $timeout ) && time() > $timeout ) {
365
  $version_info = false; // Cache is expired
366
- FrmAddonsController::reset_cached_addons( $this->license );
 
367
  }
368
  }
369
 
104
  ),
105
  );
106
  } else {
107
+ $api = new FrmFormApi( $this->license );
108
+ $plugins = $api->get_api_info();
109
  $_data = $plugins[ $item_id ];
110
  }
111
 
144
  return false;
145
  }
146
 
147
+ $api = new FrmFormApi();
148
+ $api->get_pro_updater();
149
+ $license = $api->get_license();
150
  if ( empty( $license ) ) {
151
  return false;
152
  }
238
  */
239
  protected function delete_cache() {
240
  delete_transient( 'frm_api_licence' );
241
+
242
+ $api = new FrmFormApi( $this->license );
243
+ $api->reset_cached();
244
  }
245
 
246
  /**
264
  /* translators: %1$s: Plugin name, %2$s: Start link HTML, %3$s: end link HTML */
265
  $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>' );
266
  } else {
267
+ $api = new FrmFormApi( $this->license );
268
+ $errors = $api->error_for_license();
269
  if ( ! empty( $errors ) ) {
270
  $message = reset( $errors );
271
  }
343
  * @since 3.04.03
344
  */
345
  protected function get_api_info( $license ) {
346
+ $api = new FrmFormApi( $license );
347
+ $addon = $api->get_addon_for_license( $this );
348
 
349
  // if there is no download url, this license does not apply to the addon
350
  if ( isset( $addon['package'] ) ) {
368
  $timeout = ( isset( $version_info->timeout ) && ! empty( $version_info->timeout ) ) ? $version_info->timeout : 0;
369
  if ( ! empty( $timeout ) && time() > $timeout ) {
370
  $version_info = false; // Cache is expired
371
+ $api = new FrmFormApi( $this->license );
372
+ $api->reset_cached();
373
  }
374
  }
375
 
classes/models/FrmEntry.php CHANGED
@@ -899,12 +899,12 @@ class FrmEntry {
899
  return $updated;
900
  }
901
 
902
- /**
903
- * @param string $key
904
- * @return int entry_id
905
- */
906
  public static function get_id_by_key( $key ) {
907
- $entry_id = FrmDb::get_var( 'frm_items', array( 'item_key' => sanitize_title( $key ) ) );
908
- return $entry_id;
909
- }
910
  }
899
  return $updated;
900
  }
901
 
902
+ /**
903
+ * @param string $key
904
+ * @return int entry_id
905
+ */
906
  public static function get_id_by_key( $key ) {
907
+ $entry_id = FrmDb::get_var( 'frm_items', array( 'item_key' => sanitize_title( $key ) ) );
908
+ return (int) $entry_id;
909
+ }
910
  }
classes/models/FrmField.php CHANGED
@@ -868,14 +868,14 @@ class FrmField {
868
  return ( $is_repeating_field && self::is_option_true( $field, 'repeat' ) );
869
  }
870
 
871
- /**
872
- * @param string $key
873
- * @return int field id
874
- */
875
  public static function get_id_by_key( $key ) {
876
- $id = FrmDb::get_var( 'frm_fields', array( 'field_key' => sanitize_title( $key ) ) );
877
- return $id;
878
- }
879
 
880
  /**
881
  * @param string $id
868
  return ( $is_repeating_field && self::is_option_true( $field, 'repeat' ) );
869
  }
870
 
871
+ /**
872
+ * @param string $key
873
+ * @return int field id
874
+ */
875
  public static function get_id_by_key( $key ) {
876
+ $id = FrmDb::get_var( 'frm_fields', array( 'field_key' => sanitize_title( $key ) ) );
877
+ return (int) $id;
878
+ }
879
 
880
  /**
881
  * @param string $id
classes/models/FrmForm.php CHANGED
@@ -20,7 +20,6 @@ class FrmForm {
20
  'is_template' => isset( $values['is_template'] ) ? (int) $values['is_template'] : 0,
21
  'parent_form_id' => isset( $values['parent_form_id'] ) ? absint( $values['parent_form_id'] ) : 0,
22
  'editable' => isset( $values['editable'] ) ? (int) $values['editable'] : 0,
23
- 'default_template' => isset( $values['default_template'] ) ? (int) $values['default_template'] : 0,
24
  'created_at' => isset( $values['created_at'] ) ? $values['created_at'] : current_time( 'mysql', 1 ),
25
  );
26
 
20
  'is_template' => isset( $values['is_template'] ) ? (int) $values['is_template'] : 0,
21
  'parent_form_id' => isset( $values['parent_form_id'] ) ? absint( $values['parent_form_id'] ) : 0,
22
  'editable' => isset( $values['editable'] ) ? (int) $values['editable'] : 0,
 
23
  'created_at' => isset( $values['created_at'] ) ? $values['created_at'] : current_time( 'mysql', 1 ),
24
  );
25
 
classes/models/FrmFormApi.php ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class FrmFormApi {
4
+
5
+ protected $license = '';
6
+ protected $cache_key = '';
7
+ protected $cache_timeout = '+6 hours';
8
+
9
+ /**
10
+ * @since 3.06
11
+ */
12
+ public function __construct( $license = null ) {
13
+ $this->set_license( $license );
14
+ $this->set_cache_key();
15
+ }
16
+
17
+ /**
18
+ * @since 3.06
19
+ */
20
+ private function set_license( $license ) {
21
+ if ( $license === null ) {
22
+ $edd_update = $this->get_pro_updater();
23
+ if ( ! empty( $edd_update ) ) {
24
+ $license = $edd_update->license;
25
+ }
26
+ }
27
+ $this->license = $license;
28
+ }
29
+
30
+ /**
31
+ * @since 3.06
32
+ * @return string
33
+ */
34
+ public function get_license() {
35
+ return $this->license;
36
+ }
37
+
38
+ /**
39
+ * @since 3.06
40
+ */
41
+ protected function set_cache_key() {
42
+ $this->cache_key = 'frm_addons_l' . ( empty( $this->license ) ? '' : md5( $this->license ) );
43
+ }
44
+
45
+ /**
46
+ * @since 3.06
47
+ * @return string
48
+ */
49
+ public function get_cache_key() {
50
+ return $this->cache_key;
51
+ }
52
+
53
+ /**
54
+ * @since 3.06
55
+ * @return array
56
+ */
57
+ public function get_api_info() {
58
+ $url = $this->api_url();
59
+ if ( ! empty( $this->license ) ) {
60
+ $url .= '?l=' . urlencode( base64_encode( $this->license ) );
61
+ }
62
+
63
+ $addons = $this->get_cached();
64
+ if ( ! empty( $addons ) ) {
65
+ return $addons;
66
+ }
67
+
68
+ $response = wp_remote_get( $url );
69
+ if ( is_array( $response ) && ! is_wp_error( $response ) ) {
70
+ $addons = $response['body'];
71
+ if ( ! empty( $addons ) ) {
72
+ $addons = json_decode( $addons, true );
73
+
74
+ foreach ( $addons as $k => $addon ) {
75
+ if ( ! isset( $addon['categories'] ) ) {
76
+ continue;
77
+ }
78
+ $cats = array_intersect( $this->skip_categories(), $addon['categories'] );
79
+ if ( ! empty( $cats ) ) {
80
+ unset( $addons[ $k ] );
81
+ }
82
+ }
83
+
84
+ $this->set_cached( $addons );
85
+ }
86
+ }
87
+
88
+ return $addons;
89
+ }
90
+
91
+ /**
92
+ * @since 3.06
93
+ */
94
+ protected function api_url() {
95
+ return 'https://formidableforms.com/wp-json/s11edd/v1/updates/';
96
+ }
97
+
98
+ /**
99
+ * @since 3.06
100
+ */
101
+ protected function skip_categories() {
102
+ return array( 'WordPress Form Templates', 'WordPress Form Style Templates' );
103
+ }
104
+
105
+ /**
106
+ * @since 3.06
107
+ * @param object $license_plugin The FrmAddon object
108
+ * @return array
109
+ */
110
+ public function get_addon_for_license( $license_plugin, $addons = array() ) {
111
+ if ( empty( $addons ) ) {
112
+ $addons = $this->get_api_info();
113
+ }
114
+ $download_id = $license_plugin->download_id;
115
+ $plugin = array();
116
+ if ( empty( $download_id ) && ! empty( $addons ) ) {
117
+ foreach ( $addons as $addon ) {
118
+ if ( strtolower( $license_plugin->plugin_name ) == strtolower( $addon['title'] ) ) {
119
+ return $addon;
120
+ }
121
+ }
122
+ } elseif ( isset( $addons[ $download_id ] ) ) {
123
+ $plugin = $addons[ $download_id ];
124
+ }
125
+
126
+ return $plugin;
127
+ }
128
+
129
+ /**
130
+ * @since 3.06
131
+ */
132
+ public function get_pro_updater() {
133
+ if ( FrmAppHelper::pro_is_installed() && is_callable( 'FrmProAppHelper::get_updater' ) ) {
134
+ $updater = FrmProAppHelper::get_updater();
135
+ $this->set_license( $updater->license );
136
+ return $updater;
137
+ }
138
+
139
+ return false;
140
+ }
141
+
142
+ /**
143
+ * @since 3.06
144
+ * @return array
145
+ */
146
+ protected function get_cached() {
147
+ $cache = get_option( $this->cache_key );
148
+
149
+ if ( empty( $cache ) || empty( $cache['timeout'] ) || current_time( 'timestamp' ) > $cache['timeout'] ) {
150
+ return false; // Cache is expired
151
+ }
152
+
153
+ return json_decode( $cache['value'], true );
154
+ }
155
+
156
+ /**
157
+ * @since 3.06
158
+ */
159
+ protected function set_cached( $addons ) {
160
+ $data = array(
161
+ 'timeout' => strtotime( $this->cache_timeout, current_time( 'timestamp' ) ),
162
+ 'value' => json_encode( $addons ),
163
+ );
164
+
165
+ update_option( $this->cache_key, $data, 'no' );
166
+ }
167
+
168
+ /**
169
+ * @since 3.06
170
+ */
171
+ public function reset_cached() {
172
+ delete_option( $this->cache_key );
173
+ }
174
+
175
+ /**
176
+ * @since 3.06
177
+ * @return array
178
+ */
179
+ public function error_for_license() {
180
+ $errors = array();
181
+ if ( ! empty( $this->license ) ) {
182
+ $errors = $this->get_error_from_response();
183
+ }
184
+ return $errors;
185
+ }
186
+
187
+ /**
188
+ * @since 3.06
189
+ * @return array
190
+ */
191
+ public function get_error_from_response( $addons = array() ) {
192
+ if ( empty( $addons ) ) {
193
+ $addons = $this->get_api_info();
194
+ }
195
+ $errors = array();
196
+ if ( isset( $addons['error'] ) ) {
197
+ $errors[] = $addons['error']['message'];
198
+ do_action( 'frm_license_error', $addons['error'] );
199
+ }
200
+ return $errors;
201
+ }
202
+ }
classes/models/FrmFormTemplateApi.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class FrmFormTemplateApi extends FrmFormApi {
4
+
5
+ /**
6
+ * @since 3.06
7
+ */
8
+ protected function set_cache_key() {
9
+ $this->cache_key = 'frm_form_templates_l' . ( empty( $this->license ) ? '' : md5( $this->license ) );
10
+ }
11
+
12
+ /**
13
+ * @since 3.06
14
+ */
15
+ protected function api_url() {
16
+ return 'https://formidableforms.com/wp-json/form-templates/v1/list';
17
+ }
18
+
19
+ /**
20
+ * @since 3.06
21
+ */
22
+ protected function skip_categories() {
23
+ return array();
24
+ }
25
+ }
classes/models/FrmMigrate.php CHANGED
@@ -47,9 +47,6 @@ class FrmMigrate {
47
  /***** SAVE DB VERSION *****/
48
  update_option( 'frm_db_version', FrmAppHelper::plugin_version() . '-' . FrmAppHelper::$db_version );
49
 
50
- /**** ADD/UPDATE DEFAULT TEMPLATES ****/
51
- FrmXMLController::add_default_templates();
52
-
53
  if ( ! $old_db_version ) {
54
  $this->maybe_create_contact_form();
55
  }
@@ -165,22 +162,31 @@ class FrmMigrate {
165
  }
166
 
167
  private function maybe_create_contact_form() {
168
- $template_id = FrmForm::get_id_by_key( 'contact' );
169
- if ( $template_id ) {
170
- $form_exists = FrmForm::get_id_by_key( 'contact-form' );
171
- if ( $form_exists ) {
172
- return;
173
- }
174
 
175
- $form_id = FrmForm::duplicate( $template_id, false, true );
176
- if ( $form_id ) {
177
- $values = array(
178
- 'status' => 'published',
179
- 'form_key' => 'contact-form',
180
- );
181
- FrmForm::update( $form_id, $values );
182
- }
 
183
  }
 
 
 
 
 
 
 
 
 
184
  }
185
 
186
  /**
@@ -200,7 +206,7 @@ class FrmMigrate {
200
  return;
201
  }
202
 
203
- $migrations = array( 16, 11, 16, 17, 23, 25, 86 );
204
  foreach ( $migrations as $migration ) {
205
  if ( FrmAppHelper::$db_version >= $migration && $old_db_version < $migration ) {
206
  $function_name = 'migrate_to_' . $migration;
@@ -263,6 +269,18 @@ class FrmMigrate {
263
  return true;
264
  }
265
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  /**
267
  * Reverse migration 17 -- Divide by 9
268
  *
47
  /***** SAVE DB VERSION *****/
48
  update_option( 'frm_db_version', FrmAppHelper::plugin_version() . '-' . FrmAppHelper::$db_version );
49
 
 
 
 
50
  if ( ! $old_db_version ) {
51
  $this->maybe_create_contact_form();
52
  }
162
  }
163
 
164
  private function maybe_create_contact_form() {
165
+ $form_exists = FrmForm::get_id_by_key( 'contact-form' );
166
+ if ( ! $form_exists ) {
167
+ $this->add_default_template();
168
+ }
169
+ }
 
170
 
171
+ /**
172
+ * Create the default contact form
173
+ *
174
+ * @since 3.06
175
+ */
176
+ private function add_default_template() {
177
+ if ( ! function_exists( 'libxml_disable_entity_loader' ) ) {
178
+ // XML import is not enabled on your server.
179
+ return;
180
  }
181
+
182
+ $set_err = libxml_use_internal_errors( true );
183
+ $loader = libxml_disable_entity_loader( true );
184
+
185
+ $file = FrmAppHelper::plugin_path() . '/classes/views/xml/default-templates.xml';
186
+ FrmXMLHelper::import_xml( $file );
187
+
188
+ libxml_use_internal_errors( $set_err );
189
+ libxml_disable_entity_loader( $loader );
190
  }
191
 
192
  /**
206
  return;
207
  }
208
 
209
+ $migrations = array( 16, 11, 16, 17, 23, 25, 86, 90 );
210
  foreach ( $migrations as $migration ) {
211
  if ( FrmAppHelper::$db_version >= $migration && $old_db_version < $migration ) {
212
  $function_name = 'migrate_to_' . $migration;
269
  return true;
270
  }
271
 
272
+ /**
273
+ * Delete uneeded default templates
274
+ *
275
+ * @since 3.06
276
+ */
277
+ private function migrate_to_90() {
278
+ $form = FrmForm::getOne( 'contact' );
279
+ if ( $form && $form->default_template == 1 ) {
280
+ FrmForm::destroy( 'contact' );
281
+ }
282
+ }
283
+
284
  /**
285
  * Reverse migration 17 -- Divide by 9
286
  *
classes/models/FrmPersonalData.php CHANGED
@@ -35,7 +35,7 @@ class FrmPersonalData {
35
  */
36
  public function register_data_eraser( $erasers ) {
37
  $erasers['formidable-eraser'] = array(
38
- 'eraser_friendly_name' => __( 'Formidable Forms entries' ),
39
  'callback' => array( $this, 'erase_data' ),
40
  );
41
 
35
  */
36
  public function register_data_eraser( $erasers ) {
37
  $erasers['formidable-eraser'] = array(
38
+ 'eraser_friendly_name' => __( 'Formidable Forms entries', 'formidable' ),
39
  'callback' => array( $this, 'erase_data' ),
40
  );
41
 
classes/views/addons/list.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  <div id="the-list" class="frm-addons">
8
  <?php foreach ( $addons as $slug => $addon ) { ?>
9
- <div class="plugin-card plugin-card-<?php echo esc_attr( $slug ); ?> frm-no-thumb frm-addon-<?php echo esc_attr( $addon['status']['type'] ); ?>">
10
  <div class="plugin-card-top">
11
  <?php if ( strtotime( $addon['released'] ) > strtotime( '-90 days' ) ) { ?>
12
  <div class="frm_ribbon">
@@ -33,16 +33,16 @@
33
  ?>
34
  </span>
35
  <?php if ( $addon['status']['type'] === 'installed' ) { ?>
36
- <a href="<?php echo esc_url( $addon['activate_url'] ) ?>" class="button button-primary activate-now <?php echo esc_attr( empty( $addon['activate_url'] ) ? 'frm_hidden' : '' ); ?>">
37
  <?php esc_html_e( 'Activate', 'formidable' ); ?>
38
  </a>
39
  <?php } elseif ( isset( $addon['url'] ) && ! empty( $addon['url'] ) ) { ?>
40
- <a class="frm-install-addon button button-primary" rel="<?php echo esc_attr( $addon['url'] ); ?>" aria-label="<?php esc_attr_e( 'Install', 'formidable' ); ?>">
41
  <?php esc_html_e( 'Install', 'formidable' ); ?>
42
  </a>
43
  <span class="spinner"></span>
44
  <?php } else { ?>
45
- <a class="install-now button button-primary" href="<?php echo esc_url( $pricing ); ?>" target="_blank" aria-label="<?php esc_attr_e( 'Upgrade Now', 'formidable' ); ?>">
46
  <?php esc_html_e( 'Upgrade Now', 'formidable' ); ?>
47
  </a>
48
  <?php } ?>
6
 
7
  <div id="the-list" class="frm-addons">
8
  <?php foreach ( $addons as $slug => $addon ) { ?>
9
+ <div class="frm-card plugin-card-<?php echo esc_attr( $slug ); ?> frm-no-thumb frm-addon-<?php echo esc_attr( $addon['status']['type'] ); ?>">
10
  <div class="plugin-card-top">
11
  <?php if ( strtotime( $addon['released'] ) > strtotime( '-90 days' ) ) { ?>
12
  <div class="frm_ribbon">
33
  ?>
34
  </span>
35
  <?php if ( $addon['status']['type'] === 'installed' ) { ?>
36
+ <a href="<?php echo esc_url( $addon['activate_url'] ) ?>" class="button button-primary frm-button-primary activate-now <?php echo esc_attr( empty( $addon['activate_url'] ) ? 'frm_hidden' : '' ); ?>">
37
  <?php esc_html_e( 'Activate', 'formidable' ); ?>
38
  </a>
39
  <?php } elseif ( isset( $addon['url'] ) && ! empty( $addon['url'] ) ) { ?>
40
+ <a class="frm-install-addon button button-primary frm-button-primary" rel="<?php echo esc_attr( $addon['url'] ); ?>" aria-label="<?php esc_attr_e( 'Install', 'formidable' ); ?>">
41
  <?php esc_html_e( 'Install', 'formidable' ); ?>
42
  </a>
43
  <span class="spinner"></span>
44
  <?php } else { ?>
45
+ <a class="install-now button button-primary frm-button-primary" href="<?php echo esc_url( $pricing ); ?>" target="_blank" aria-label="<?php esc_attr_e( 'Upgrade Now', 'formidable' ); ?>">
46
  <?php esc_html_e( 'Upgrade Now', 'formidable' ); ?>
47
  </a>
48
  <?php } ?>
classes/views/frm-entries/_sidebar-shared-pub.php CHANGED
@@ -6,8 +6,8 @@ if ( ! isset( $entry ) ) {
6
  <div class="misc-pub-section curtime misc-pub-curtime">
7
  <span id="timestamp">
8
  <?php
9
- $date_format = __( 'M j, Y @ G:i' );
10
- printf( esc_html__( 'Published on: %1$s' ), '<b>' . esc_html( FrmAppHelper::get_localized_date( $date_format, $entry->created_at ) ) . '</b>' );
11
  ?>
12
  </span>
13
  </div>
6
  <div class="misc-pub-section curtime misc-pub-curtime">
7
  <span id="timestamp">
8
  <?php
9
+ $date_format = __( 'M j, Y @ G:i', 'formidable' );
10
+ printf( esc_html__( 'Published on: %1$s', 'formidable' ), '<b>' . esc_html( FrmAppHelper::get_localized_date( $date_format, $entry->created_at ) ) . '</b>' );
11
  ?>
12
  </span>
13
  </div>
classes/views/frm-fields/back-end/number-range.php CHANGED
@@ -1,7 +1,7 @@
1
  <tr>
2
  <td style="width:150px">
3
  <label><?php esc_html_e( 'Number Range', 'formidable' ) ?>
4
- <span class="frm_help frm_icon_font frm_tooltip_icon" title="<?php esc_attr_e( 'Browsers that support the HTML5 number field require a number range to determine the numbers seen when clicking the arrows next to the field.', 'formidable' ) ?>" ></span>
5
  </label>
6
  </td>
7
  <td>
1
  <tr>
2
  <td style="width:150px">
3
  <label><?php esc_html_e( 'Number Range', 'formidable' ) ?>
4
+ <span class="frm_help frm_icon_font frm_tooltip_icon" title="<?php esc_attr_e( 'Set the number range the field validation should allow. Browsers that support the HTML5 number field require a number range to determine the numbers seen when clicking the arrows next to the field.', 'formidable' ) ?>" ></span>
5
  </label>
6
  </td>
7
  <td>
classes/views/frm-forms/_publish_box.php CHANGED
@@ -2,24 +2,6 @@
2
  <div class="inside">
3
  <div class="submitbox" id="submitpost">
4
 
5
- <?php /* TODO: Move these to settings page
6
-
7
- <label for="post_status"><?php _e( 'Status', 'formidable' ) ?>:</label>
8
- <span id="form-status-display"><?php echo FrmFormsHelper::status_nice_name($values['status']); ?></span>
9
- <?php if ( 'draft' != $values['status'] && ( ! isset( $_GET['frm_action'] ) || 'settings' != FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' ) ) ) { ?>
10
- <a href="#post_status" class="edit-form-status hide-if-no-js" data-slidedown="form-status-select"><span aria-hidden="true"><?php esc_html_e( 'Edit' ) ?></span> <span class="screen-reader-text"><?php esc_html_e( 'Edit status' ) ?></span></a>
11
-
12
- <div id="form-status-select" class="frm_hidden">
13
- <select name="frm_change_status" id="form_change_status">
14
- <option value="published" <?php selected($values['status'], 'published') ?>><?php esc_html_e( 'Published' ); ?></option>
15
- <option value="draft" <?php selected($values['status'], 'draft') ?>><?php esc_html_e( 'Draft' ) ?></option>
16
- </select>
17
- <a href="#post_status" class="save-form-status hide-if-no-js button"><?php esc_html_e( 'OK') ?></a>
18
- <a href="#post_status" class="cancel-form-status hide-if-no-js button-cancel" data-slideup="form-status-select"><?php esc_html_e( 'Cancel') ?></a>
19
- </div>
20
- <?php } ?>
21
-
22
- */ ?>
23
  <div id="major-publishing-actions">
24
  <div id="publishing-action" class="<?php echo esc_attr( 'draft' === $values['status'] ? 'frm-is-draft' : '' ); ?>">
25
  <div class="alignleft">
@@ -41,7 +23,7 @@
41
  <div id="frm-preview-action">
42
  <?php if ( ( ! isset( $hide_preview ) || ! $hide_preview ) && isset( $values['form_key'] ) ) { ?>
43
  <div class="preview dropdown">
44
- <a href="#" id="frm-previewDrop" class="frm-dropdown-toggle button" data-toggle="dropdown"><?php esc_html_e( 'Preview', 'formidable' ); ?> <b class="caret"></b></a>
45
 
46
  <ul class="frm-dropdown-menu <?php echo esc_attr( is_rtl() ? 'pull-left' : 'pull-right' ) ?>" role="menu" aria-labelledby="frm-previewDrop">
47
  <li>
2
  <div class="inside">
3
  <div class="submitbox" id="submitpost">
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  <div id="major-publishing-actions">
6
  <div id="publishing-action" class="<?php echo esc_attr( 'draft' === $values['status'] ? 'frm-is-draft' : '' ); ?>">
7
  <div class="alignleft">
23
  <div id="frm-preview-action">
24
  <?php if ( ( ! isset( $hide_preview ) || ! $hide_preview ) && isset( $values['form_key'] ) ) { ?>
25
  <div class="preview dropdown">
26
+ <a href="#" id="frm-previewDrop" class="frm-dropdown-toggle button frm-button-primary" data-toggle="dropdown"><?php esc_html_e( 'Preview', 'formidable' ); ?> <b class="caret"></b></a>
27
 
28
  <ul class="frm-dropdown-menu <?php echo esc_attr( is_rtl() ? 'pull-left' : 'pull-right' ) ?>" role="menu" aria-labelledby="frm-previewDrop">
29
  <li>
classes/views/frm-forms/add-new.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="frm_wrap">
2
+ <?php
3
+ FrmAppHelper::get_admin_header(
4
+ array(
5
+ 'label' => __( 'Add new form', 'formidable' ),
6
+ 'cancel_link' => '?page=formidable',
7
+ )
8
+ );
9
+ ?>
10
+ <div class="wrap frm-add-new-form">
11
+ <div class="frm-addons">
12
+ <div class="frm-card">
13
+ <div class="plugin-card-top">
14
+ <div class="frm-round-image">
15
+ <img src="<?php echo esc_attr( FrmAppHelper::plugin_url() ); ?>/images/new-blank.svg" alt="<?php esc_attr_e( 'Create Blank Form', 'formidable' ); ?>" class="frm-blank-form-icon" />
16
+ </div>
17
+ <h2><?php esc_html_e( 'Start with a blank form', 'formidable' ); ?></h2>
18
+ <p><?php esc_html_e( 'Build anything you can imagine.', 'formidable' ); ?></p>
19
+ </div>
20
+ <div class="plugin-card-bottom">
21
+ <a class="button button-primary frm-button-primary" href="<?php echo esc_url( admin_url( 'admin.php?page=formidable&frm_action=new' ) ); ?>">
22
+ <?php esc_html_e( 'Create Blank Form', 'formidable' ); ?>
23
+ </a>
24
+ </div>
25
+ </div>
26
+
27
+ <div class="frm-card">
28
+ <div class="plugin-card-top">
29
+ <div class="frm-round-image">
30
+ <img src="<?php echo esc_attr( FrmAppHelper::plugin_url() ); ?>/images/new-form.svg" alt="<?php esc_attr_e( 'Choose Template', 'formidable' ); ?>" class="frm-new-template-icon" />
31
+ </div>
32
+ <h2><?php esc_html_e( 'Start with a template', 'formidable' ); ?></h2>
33
+ <p><?php esc_html_e( 'We\'ve done the heavy lifting.', 'formidable' ); ?></p>
34
+ </div>
35
+ <div class="plugin-card-bottom">
36
+ <a class="button button-primary frm-button-primary" href="<?php echo esc_url( admin_url( 'admin.php?page=formidable&frm_action=list_templates' ) ); ?>">
37
+ <?php esc_html_e( 'Choose Template', 'formidable' ); ?>
38
+ </a>
39
+ </div>
40
+ </div>
41
+
42
+ <div class="frm-card">
43
+ <div class="plugin-card-top">
44
+ <div class="frm-round-image">
45
+ <img src="<?php echo esc_attr( FrmAppHelper::plugin_url() ); ?>/images/new-import.svg" alt="<?php esc_attr_e( 'Import Form', 'formidable' ); ?>" class="frm-import-form-icon" />
46
+ </div>
47
+ <h2><?php esc_html_e( 'Import your form', 'formidable' ); ?></h2>
48
+ <p><?php esc_html_e( 'Import a form from an XML file.', 'formidable' ); ?></p>
49
+ </div>
50
+ <div class="plugin-card-bottom">
51
+ <a class="button button-primary frm-button-primary" href="<?php echo esc_url( admin_url( 'admin.php?page=formidable-import' ) ); ?>">
52
+ <?php esc_html_e( 'Import Form', 'formidable' ); ?>
53
+ </a>
54
+ </div>
55
+ </div>
56
+ </div>
57
+ <div class="clear"></div>
58
+ </div>
59
+ </div>
classes/views/frm-forms/form.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  <div class="postbox">
8
  <div id="titlediv" class="inside">
9
- <input type="text" name="name" value="<?php echo esc_attr( $form->name ); ?>" id="title" placeholder="<?php esc_attr_e( 'Enter title here' ) ?>" />
10
  </div>
11
 
12
  <div class="frm_no_fields <?php echo ( isset( $values['fields'] ) && ! empty( $values['fields'] ) ) ? 'frm_hidden' : ''; ?>">
@@ -25,17 +25,6 @@
25
  <div class="clear"></div>
26
 
27
  <div class="frm_drag_inst"><?php esc_html_e( 'Add Fields Here', 'formidable' ) ?></div>
28
- <p id="frm_create_template_form">
29
- <?php if ( ! empty( $all_templates ) ) { ?>
30
- <?php esc_html_e( 'Or load fields from a template', 'formidable' ); ?>
31
- <select id="frm_create_template_dropdown">
32
- <?php foreach ( $all_templates as $temp ) { ?>
33
- <option value="<?php echo esc_attr( $temp->id ) ?>"><?php echo FrmAppHelper::truncate( $temp->name, 40 ); // WPCS: XSS ok. ?></option>
34
- <?php } ?>
35
- </select>
36
- <input type="button" id="frm_create_template_button" class="button-secondary" value="<?php esc_attr_e( 'Load Template', 'formidable' ) ?>" />
37
- <?php } ?>
38
- </p>
39
 
40
  <div class="alignleft sketch3">
41
  <div class="alignright"><?php esc_html_e( '3. Save your form', 'formidable' ) ?></div>
6
 
7
  <div class="postbox">
8
  <div id="titlediv" class="inside">
9
+ <input type="text" name="name" value="<?php echo esc_attr( $form->name ); ?>" id="title" placeholder="<?php esc_attr_e( 'Enter title here', 'formidable' ); ?>" />
10
  </div>
11
 
12
  <div class="frm_no_fields <?php echo ( isset( $values['fields'] ) && ! empty( $values['fields'] ) ) ? 'frm_hidden' : ''; ?>">
25
  <div class="clear"></div>
26
 
27
  <div class="frm_drag_inst"><?php esc_html_e( 'Add Fields Here', 'formidable' ) ?></div>
 
 
 
 
 
 
 
 
 
 
 
28
 
29
  <div class="alignleft sketch3">
30
  <div class="alignright"><?php esc_html_e( '3. Save your form', 'formidable' ) ?></div>
classes/views/frm-forms/list-templates.php ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="frm_wrap" id="frm-templates-page">
2
+ <?php
3
+ FrmAppHelper::get_admin_header(
4
+ array(
5
+ 'label' => __( 'Add new form', 'formidable' ),
6
+ 'cancel_link' => '?page=formidable&frm_action=add_new',
7
+ )
8
+ );
9
+ ?>
10
+ <div class="wrap">
11
+ <h2 class="frm-h2"><?php esc_html_e( 'Form templates', 'formidable' ); ?></h2>
12
+ <p class="howto">
13
+ <?php
14
+ /* translators: %1$s: Start link HTML, %2$s: End link HTML */
15
+ printf(
16
+ esc_html__( 'Save time by starting from one of our pre-made templates. They are expertly designed and configured to work right out of the box. If you don\'t find a template you like, you can always start with a %1$sblank form%2$s.', 'formidable' ),
17
+ '<a href="' . esc_url( admin_url( 'admin.php?page=formidable&frm_action=new' ) ) . '">',
18
+ '</a>'
19
+ );
20
+ ?>
21
+ </p>
22
+
23
+ <?php FrmAppHelper::show_search_box( '', 'template', __( 'Search Templates', 'formidable' ) ); ?>
24
+ <div class="clear"></div>
25
+
26
+ <div class="frm-addons">
27
+ <div class="frm-card frm-no-thumb">
28
+ <div class="plugin-card-top">
29
+ <h3><?php esc_html_e( 'Create a Custom Template', 'formidable' ); ?></h3>
30
+ <ol>
31
+ <li><?php esc_html_e( 'Build a form and setup form actions.', 'formidable' ); ?></li>
32
+ <li><?php esc_html_e( 'Select your form in the dropdown below.', 'formidable' ); ?></li>
33
+ <li><?php esc_html_e( 'Give your template a name and description.', 'formidable' ); ?></li>
34
+ <li><?php esc_html_e( 'Delete the original form. (optional)', 'formidable' ); ?></li>
35
+ </ol>
36
+ </div>
37
+ <div class="plugin-card-bottom frm-new-template">
38
+ <div class="dropdown">
39
+ <a href="#" id="frm-template-drop" class="frm-dropdown-toggle" data-toggle="dropdown">
40
+ <?php esc_html_e( 'Select form for new template', 'formidable' ); ?>
41
+ <b class="caret"></b>
42
+ </a>
43
+ <ul class="frm-dropdown-menu" role="menu" aria-labelledby="frm-template-drop">
44
+ <?php
45
+ if ( empty( $forms ) ) {
46
+ ?>
47
+ <li class="frm_dropdown_li">
48
+ <?php esc_html_e( 'You have not created any forms yet.', 'formidable' ); ?>
49
+ </li>
50
+ <?php
51
+ } else {
52
+ foreach ( $forms as $form ) {
53
+ ?>
54
+ <li>
55
+ <a href="#" data-formid="<?php echo esc_attr( $form->id ); ?>" class="frm-build-template" data-fullname="<?php echo esc_attr( $form->name ); ?>" tabindex="-1">
56
+ <?php echo esc_html( empty( $form->name ) ? __( '(no title)', 'formidable' ) : FrmAppHelper::truncate( $form->name, 33 ) ); ?>
57
+ </a>
58
+ </li>
59
+ <?php
60
+ unset( $form );
61
+ }
62
+ }
63
+ ?>
64
+ </ul>
65
+ </div>
66
+ </div>
67
+ </div>
68
+
69
+ <div class="frm-card frm-no-thumb">
70
+ <div class="plugin-card-top">
71
+ <h3><?php esc_html_e( 'Blank Form', 'formidable' ); ?></h3>
72
+ <p><?php esc_html_e( 'Start from scratch and build exactly what you want. This option will not pre-load any fields.', 'formidable' ); ?></p>
73
+ </div>
74
+ <div class="plugin-card-bottom">
75
+ <a class="button button-primary frm-button-primary" href="<?php echo esc_url( admin_url( 'admin.php?page=formidable&frm_action=new' ) ); ?>">
76
+ <?php esc_html_e( 'Create Form', 'formidable' ); ?>
77
+ </a>
78
+ </div>
79
+ </div>
80
+
81
+ <?php foreach ( $templates as $k => $template ) { ?>
82
+ <div class="frm-card frm-no-thumb">
83
+ <div class="plugin-card-top">
84
+ <?php if ( strtotime( $template['released'] ) > strtotime( '-10 days' ) ) { ?>
85
+ <div class="frm_ribbon">
86
+ <span>New</span>
87
+ </div>
88
+ <?php } ?>
89
+ <h3><?php echo esc_html( preg_replace( '/(\sForm)?(\sTemplate)?$/', '', $template['name'] ) ); ?></h3>
90
+ <p><?php echo esc_html( $template['description'] ); ?></p>
91
+ <?php
92
+ if ( isset( $template['installed'] ) && $template['installed'] ) {
93
+ $preview_link = admin_url( 'admin-ajax.php?action=frm_forms_preview&form=' . $template['key'] );
94
+ } else {
95
+ $preview_link = 'https://sandbox.formidableforms.com/demos/wp-json/frm/v2/forms/' . $template['key'] . '?return=html';
96
+ }
97
+
98
+ if ( isset( $template['categories'] ) && ( ! isset( $template['url'] ) || empty( $template['url'] ) ) ) {
99
+ foreach ( $template['categories'] as $k => $category ) {
100
+ if ( in_array( $category, $plans ) ) {
101
+ printf(
102
+ esc_html__( 'License plan required: %s', 'formidable' ),
103
+ '<a href="' . esc_url( $pricing ) . '" target="_blank" rel="noopener">' . esc_html( $category ) . '</a>'
104
+ );
105
+ unset( $template['categories'][ $k ] );
106
+ break;
107
+ }
108
+ }
109
+ }
110
+ ?>
111
+ <?php if ( ! empty( $template['categories'] ) ) { ?>
112
+ <div class="frm_hidden">
113
+ Category:<?php echo esc_html( implode( $template['categories'], ', Category:' ) ); ?>
114
+ </div>
115
+ <?php } ?>
116
+ </div>
117
+ <div class="plugin-card-bottom">
118
+ <a href="#" class="frm-preview-template" rel="<?php echo esc_url( $preview_link ); ?>">
119
+ <?php esc_html_e( 'Preview', 'formidable' ); ?>
120
+ </a>
121
+ <?php if ( isset( $template['installed'] ) && $template['installed'] ) { ?>
122
+ |
123
+ <a href="#" class="frm-trash-template frm-trash" data-id="<?php echo esc_attr( $template['id'] ); ?>" data-frmverify="<?php esc_attr_e( 'Are you sure?', 'formidable' ); ?>">
124
+ <?php esc_html_e( 'Delete', 'formidable' ); ?>
125
+ </a>
126
+ <?php } ?>
127
+
128
+ <?php if ( isset( $template['url'] ) && ! empty( $template['url'] ) ) { ?>
129
+ <?php if ( isset( $template['installed'] ) && $template['installed'] ) { ?>
130
+ <a class="button button-primary frm-button-primary" href="<?php echo esc_attr( $template['url'] ); ?>" aria-label="<?php esc_attr_e( 'Create Form', 'formidable' ); ?>">
131
+ <?php } else { ?>
132
+ <a class="frm-install-template button button-primary frm-button-primary" rel="<?php echo esc_attr( $template['url'] ); ?>" aria-label="<?php esc_attr_e( 'Create Form', 'formidable' ); ?>">
133
+ <?php } ?>
134
+ <?php esc_html_e( 'Create Form', 'formidable' ); ?>
135
+ </a>
136
+ <?php } else { ?>
137
+ <a class="install-now button button-primary frm-button-primary" href="<?php echo esc_url( $pricing ); ?>" target="_blank" rel="noopener" aria-label="<?php esc_attr_e( 'Upgrade Now', 'formidable' ); ?>">
138
+ <?php esc_html_e( 'Upgrade Now', 'formidable' ); ?>
139
+ </a>
140
+ <?php } ?>
141
+ </div>
142
+ </div>
143
+ <?php unset( $template, $templates[ $k ] ); ?>
144
+ <?php } ?>
145
+ </div>
146
+ <?php include( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/template-name-overlay.php' ); ?>
147
+ <div class="clear"></div>
148
+ </div>
149
+ </div>
classes/views/frm-forms/list.php CHANGED
@@ -3,7 +3,7 @@
3
  FrmAppHelper::get_admin_header(
4
  array(
5
  'label' => $params['template'] ? __( 'Templates', 'formidable' ) : __( 'Forms', 'formidable' ),
6
- 'new_link' => ( ! $params['template'] && current_user_can( 'frm_edit_forms' ) ) ? '?page=formidable&frm_action=new' : '',
7
  )
8
  );
9
  ?>
3
  FrmAppHelper::get_admin_header(
4
  array(
5
  'label' => $params['template'] ? __( 'Templates', 'formidable' ) : __( 'Forms', 'formidable' ),
6
+ 'new_link' => ( ! $params['template'] && current_user_can( 'frm_edit_forms' ) ) ? '?page=formidable&frm_action=add_new' : '',
7
  )
8
  );
9
  ?>
classes/views/frm-forms/template-name-overlay.php ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div id="frm_template_modal" class="frm_hidden settings-lite-cta">
2
+ <div class="metabox-holder">
3
+ <div class="postbox">
4
+ <div class="inside">
5
+ <div class="cta-inside">
6
+
7
+ <form name="frm-new-template-form" id="frm-new-template-form" method="post">
8
+ <p>
9
+ <label for="frm_template_name" id="frm_new_name" data-template="<?php esc_attr_e( 'Template Name', 'formidable' ); ?>" data-form="<?php esc_html_e( 'Form Name', 'formidable' ); ?>">
10
+ <?php esc_html_e( 'Form Name', 'formidable' ); ?>
11
+ </label><br/>
12
+ <input type="text" name="template_name" id="frm_template_name" class="frm_long_input" />
13
+ </p>
14
+
15
+ <p>
16
+ <label for="frm_template_desc" id="frm_new_desc" data-template="<?php esc_attr_e( 'Template Description', 'formidable' ); ?>" data-form="<?php esc_html_e( 'Form Description', 'formidable' ); ?>">
17
+ <?php esc_html_e( 'Form Description', 'formidable' ); ?>
18
+ </label><br/>
19
+ <textarea name="template_desc" id="frm_template_desc" class="frm_long_input"></textarea>
20
+ </p>
21
+ <input type="hidden" name="link" id="frm_link" />
22
+ <input type="hidden" name="type" id="frm_action_type" value="frm_install_template" />
23
+
24
+ <button type="submit" class="button-primary frm-button-primary">
25
+ <?php esc_html_e( 'Create', 'formidable' ); ?>
26
+ </button>
27
+
28
+ <a href="#" class="dismiss">
29
+ <?php esc_attr_e( 'Cancel', 'formidable' ); ?>
30
+ </a>
31
+ <span id="frm-importing-spinner" class="spinner"></span>
32
+ </form>
33
+ </div>
34
+ </div>
35
+ </div>
36
+ </div>
37
+ </div>
38
+ <div id="frm_preview_template_modal" class="frm_hidden settings-lite-cta">
39
+ <div class="metabox-holder">
40
+ <div class="postbox">
41
+ <div class="inside" id="frm-preview-block">
42
+ </div>
43
+ </div>
44
+ </div>
45
+ </div>
46
+
classes/views/frm-settings/form.php CHANGED
@@ -8,7 +8,7 @@
8
  <div class="inside frm_license_box">
9
  <h2><?php esc_html_e( 'License', 'formidable' ); ?></h2>
10
  <hr/>
11
- <p class="howto"><?php esc_html_e( 'Your license key provides access to automatic updates.' ); ?></p>
12
 
13
  <?php do_action( 'frm_before_settings' ); ?>
14
  </div>
@@ -45,7 +45,7 @@
45
 
46
  <div class="general_settings tabs-panel <?php echo esc_attr( $a === 'general_settings' ? 'frm_block' : 'frm_hidden' ); ?>">
47
  <p class="submit">
48
- <input class="button-primary" type="submit" value="<?php esc_attr_e( 'Update Options', 'formidable' ) ?>" />
49
  </p>
50
 
51
  <h3><?php esc_html_e( 'Styling & Scripts', 'formidable' ); ?></h3>
@@ -232,7 +232,7 @@
232
  <span class="spinner frm_spinner"></span>
233
  </p>
234
  <p class="submit">
235
- <input class="button-primary" type="submit" value="<?php esc_attr_e( 'Update Options', 'formidable' ) ?>" />
236
  </p>
237
 
238
  </form>
8
  <div class="inside frm_license_box">
9
  <h2><?php esc_html_e( 'License', 'formidable' ); ?></h2>
10
  <hr/>
11
+ <p class="howto"><?php esc_html_e( 'Your license key provides access to automatic updates.', 'formidable' ); ?></p>
12
 
13
  <?php do_action( 'frm_before_settings' ); ?>
14
  </div>
45
 
46
  <div class="general_settings tabs-panel <?php echo esc_attr( $a === 'general_settings' ? 'frm_block' : 'frm_hidden' ); ?>">
47
  <p class="submit">
48
+ <input class="button-primary frm-button-primary" type="submit" value="<?php esc_attr_e( 'Update Options', 'formidable' ) ?>" />
49
  </p>
50
 
51
  <h3><?php esc_html_e( 'Styling & Scripts', 'formidable' ); ?></h3>
232
  <span class="spinner frm_spinner"></span>
233
  </p>
234
  <p class="submit">
235
+ <input class="button-primary frm-button-primary" type="submit" value="<?php esc_attr_e( 'Update Options', 'formidable' ) ?>" />
236
  </p>
237
 
238
  </form>
classes/views/shared/admin-header.php CHANGED
@@ -11,6 +11,9 @@
11
  <div class="frm_top_left">
12
  <h1><?php echo esc_html( $atts['label'] ); ?>
13
  <?php FrmAppHelper::add_new_item_link( $atts ); ?>
 
 
 
14
  </h1>
15
  </div>
16
  <?php
@@ -23,7 +26,7 @@
23
  <?php if ( isset( $atts['form'] ) && ! empty( $atts['form'] ) && ! isset( $atts['hide_title'] ) ) { ?>
24
  <h<?php echo $has_nav ? 1 : 2 ?> id="frm_form_heading">
25
  <?php
26
- echo esc_html( strip_tags( '' === $atts['form']->name ? __( '(no title)' ) : $atts['form']->name ) );
27
  if ( $has_nav ) {
28
  FrmAppHelper::add_new_item_link( $atts );
29
  }
11
  <div class="frm_top_left">
12
  <h1><?php echo esc_html( $atts['label'] ); ?>
13
  <?php FrmAppHelper::add_new_item_link( $atts ); ?>
14
+ <?php if ( isset( $atts['cancel_link'] ) ) { ?>
15
+ <a href="<?php echo esc_url( $atts['cancel_link'] ) ?>" class="add-new-h2 frm_animate_bg"><?php esc_html_e( 'Cancel', 'formidable' ); ?></a>
16
+ <?php } ?>
17
  </h1>
18
  </div>
19
  <?php
26
  <?php if ( isset( $atts['form'] ) && ! empty( $atts['form'] ) && ! isset( $atts['hide_title'] ) ) { ?>
27
  <h<?php echo $has_nav ? 1 : 2 ?> id="frm_form_heading">
28
  <?php
29
+ echo esc_html( strip_tags( '' === $atts['form']->name ? __( '(no title)', 'formidable' ) : $atts['form']->name ) );
30
  if ( $has_nav ) {
31
  FrmAppHelper::add_new_item_link( $atts );
32
  }
classes/views/shared/form-nav.php CHANGED
@@ -17,5 +17,5 @@ FrmFormsHelper::form_switcher();
17
  if ( $form && 'show' === $title ) {
18
  _deprecated_argument( '$title in form-nav.php', '3.0' );
19
  ?>
20
- <input id="title" type="text" value="<?php echo esc_attr( '' === $form->name ? __( '(no title)' ) : $form->name ) ?>" readonly="readonly" disabled="disabled" />
21
  <?php } ?>
17
  if ( $form && 'show' === $title ) {
18
  _deprecated_argument( '$title in form-nav.php', '3.0' );
19
  ?>
20
+ <input id="title" type="text" value="<?php echo esc_attr( '' === $form->name ? __( '(no title)', 'formidable' ) : $form->name ) ?>" readonly="readonly" disabled="disabled" />
21
  <?php } ?>
classes/views/shared/upgrade_overlay.php CHANGED
@@ -25,11 +25,11 @@
25
  ?>
26
  </p>
27
  <?php if ( $is_pro ) { ?>
28
- <a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable-addons' ) ); ?>" class="button button-primary">
29
  <?php esc_html_e( 'See My Add-Ons', 'formidable' ); ?>
30
  </a>
31
  <?php } else { ?>
32
- <a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'builder-upgrade' ) ); ?>" class="button button-primary" target="_blank" rel="noopener noreferrer">
33
  <?php esc_html_e( 'Upgrade to Pro', 'formidable' ); ?>
34
  </a>
35
 
25
  ?>
26
  </p>
27
  <?php if ( $is_pro ) { ?>
28
+ <a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable-addons' ) ); ?>" class="button button-primary frm-button-primary">
29
  <?php esc_html_e( 'See My Add-Ons', 'formidable' ); ?>
30
  </a>
31
  <?php } else { ?>
32
+ <a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'builder-upgrade' ) ); ?>" class="button button-primary frm-button-primary" target="_blank" rel="noopener noreferrer">
33
  <?php esc_html_e( 'Upgrade to Pro', 'formidable' ); ?>
34
  </a>
35
 
classes/views/styles/manage.php CHANGED
@@ -33,7 +33,7 @@
33
  ?>
34
  <tr id="menu-locations-row">
35
  <td class="menu-location-title">
36
- <strong><?php echo esc_html( empty( $form->name ) ? __( '(no title)' ) : $form->name ); ?></strong>
37
  </td>
38
  <td class="menu-location-menus">
39
  <input type="hidden" name="prev_style[<?php echo esc_attr( $form->id ) ?>]" value="<?php echo esc_attr( $this_style ) ?>" />
33
  ?>
34
  <tr id="menu-locations-row">
35
  <td class="menu-location-title">
36
+ <strong><?php echo esc_html( empty( $form->name ) ? __( '(no title)', 'formidable' ) : $form->name ); ?></strong>
37
  </td>
38
  <td class="menu-location-menus">
39
  <input type="hidden" name="prev_style[<?php echo esc_attr( $form->id ) ?>]" value="<?php echo esc_attr( $this_style ) ?>" />
classes/views/xml/default-templates.xml CHANGED
@@ -4,13 +4,12 @@
4
  <channel>
5
  <form>
6
  <id>1</id>
7
- <form_key><![CDATA[contact]]></form_key>
8
  <name><![CDATA[Contact Us]]></name>
9
  <description><![CDATA[We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.]]></description>
10
  <created_at>2009-11-24 00:17:31</created_at>
11
  <logged_in>0</logged_in>
12
- <is_template>1</is_template>
13
- <default_template>1</default_template>
14
  <editable>0</editable>
15
  <options><![CDATA[{"custom_style":1}]]></options>
16
  <status><![CDATA[published]]></status>
4
  <channel>
5
  <form>
6
  <id>1</id>
7
+ <form_key><![CDATA[contact-form]]></form_key>
8
  <name><![CDATA[Contact Us]]></name>
9
  <description><![CDATA[We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.]]></description>
10
  <created_at>2009-11-24 00:17:31</created_at>
11
  <logged_in>0</logged_in>
12
+ <is_template>0</is_template>
 
13
  <editable>0</editable>
14
  <options><![CDATA[{"custom_style":1}]]></options>
15
  <status><![CDATA[published]]></status>
classes/views/xml/forms_xml.php CHANGED
@@ -19,7 +19,6 @@ while ( $next_set = array_splice( $item_ids, 0, 20 ) ) {
19
  <created_at><?php echo esc_html( $form->created_at ) ?></created_at>
20
  <logged_in><?php echo esc_html( $form->logged_in ) ?></logged_in>
21
  <is_template><?php echo esc_html( $form->is_template ) ?></is_template>
22
- <default_template><?php echo esc_html( $form->default_template ) ?></default_template>
23
  <editable><?php echo esc_html( $form->editable ) ?></editable>
24
  <options><?php echo FrmXMLHelper::prepare_form_options_for_export( $form->options ); // WPCS: XSS ok. ?></options>
25
  <status><?php echo FrmXMLHelper::cdata( $form->status ); // WPCS: XSS ok. ?></status>
@@ -29,6 +28,7 @@ while ( $next_set = array_splice( $item_ids, 0, 20 ) ) {
29
  $fields = FrmDb::get_results( $wpdb->prefix . 'frm_fields', array( 'form_id' => $form->id ), '*', array( 'order_by' => 'field_order' ) );
30
 
31
  foreach ( $fields as $field ) {
 
32
  ?>
33
  <field>
34
  <id><?php echo absint( $field->id ) ?></id>
19
  <created_at><?php echo esc_html( $form->created_at ) ?></created_at>
20
  <logged_in><?php echo esc_html( $form->logged_in ) ?></logged_in>
21
  <is_template><?php echo esc_html( $form->is_template ) ?></is_template>
 
22
  <editable><?php echo esc_html( $form->editable ) ?></editable>
23
  <options><?php echo FrmXMLHelper::prepare_form_options_for_export( $form->options ); // WPCS: XSS ok. ?></options>
24
  <status><?php echo FrmXMLHelper::cdata( $form->status ); // WPCS: XSS ok. ?></status>
28
  $fields = FrmDb::get_results( $wpdb->prefix . 'frm_fields', array( 'form_id' => $form->id ), '*', array( 'order_by' => 'field_order' ) );
29
 
30
  foreach ( $fields as $field ) {
31
+ FrmXMLHelper::prepare_field_for_export( $field );
32
  ?>
33
  <field>
34
  <id><?php echo absint( $field->id ) ?></id>
classes/views/xml/import_form.php CHANGED
@@ -1,13 +1,15 @@
1
- <div class="wrap">
2
- <h1><?php esc_html_e( 'Import/Export', 'formidable' ); ?></h1>
 
 
 
 
 
 
 
 
3
 
4
- <?php include( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' ); ?>
5
- <div class="metabox-holder">
6
-
7
- <div class="postbox ">
8
- <div class="inside">
9
- <h2><?php esc_html_e( 'Import', 'formidable' ); ?></h2>
10
- <hr/>
11
  <p class="howto"><?php echo esc_html( apply_filters( 'frm_upload_instructions1', __( 'Upload your Formidable XML file to import forms into this site. If your imported form key and creation date match a form on your site, that form will be updated.', 'formidable' ) ) ) ?></p>
12
  <br/>
13
  <form enctype="multipart/form-data" method="post">
@@ -28,13 +30,12 @@
28
  </p>
29
  </form>
30
  <?php FrmTipsHelper::pro_tip( 'get_import_tip' ); ?>
31
- </div>
32
- </div>
33
 
34
- <div class="postbox">
35
- <div class="inside with_frm_style">
36
- <h2><?php esc_html_e( 'Export', 'formidable' ); ?></h2>
37
- <hr/>
 
38
  <form method="post" action="<?php echo esc_url( admin_url( 'admin-ajax.php' ) ); ?>" id="frm_export_xml">
39
  <input type="hidden" name="action" value="frm_export_xml" />
40
  <?php wp_nonce_field( 'export-xml-nonce', 'export-xml' ); ?>
@@ -92,11 +93,9 @@
92
  <?php foreach ( $forms as $form ) { ?>
93
  <option value="<?php echo esc_attr( $form->id ) ?>">
94
  <?php
95
- echo esc_html( '' === $form->name ? __( '(no title)' ) : $form->name );
96
  echo ' &mdash; ' . esc_html( $form->form_key );
97
- if ( $form->is_template && $form->default_template ) {
98
- echo ' ' . esc_html__( '(default template)', 'formidable' );
99
- } elseif ( $form->is_template ) {
100
  echo ' ' . esc_html__( '(template)', 'formidable' );
101
  } elseif ( $form->parent_form_id ) {
102
  echo ' ' . esc_html__( '(child)', 'formidable' );
@@ -114,8 +113,5 @@
114
  </p>
115
  </form>
116
 
117
- </div>
118
- </div>
119
-
120
  </div>
121
  </div>
1
+ <div class="frm_wrap">
2
+ <?php
3
+ FrmAppHelper::get_admin_header(
4
+ array(
5
+ 'label' => __( 'Import/Export', 'formidable' ),
6
+ )
7
+ );
8
+ ?>
9
+ <div class="wrap">
10
+ <?php include( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' ); ?>
11
 
12
+ <h2 class="frm-h2"><?php esc_html_e( 'Import', 'formidable' ); ?></h2>
 
 
 
 
 
 
13
  <p class="howto"><?php echo esc_html( apply_filters( 'frm_upload_instructions1', __( 'Upload your Formidable XML file to import forms into this site. If your imported form key and creation date match a form on your site, that form will be updated.', 'formidable' ) ) ) ?></p>
14
  <br/>
15
  <form enctype="multipart/form-data" method="post">
30
  </p>
31
  </form>
32
  <?php FrmTipsHelper::pro_tip( 'get_import_tip' ); ?>
 
 
33
 
34
+ <br/><br/>
35
+ <h2 class="frm-h2"><?php esc_html_e( 'Export', 'formidable' ); ?></h2>
36
+ <p class="howto">
37
+ <?php echo esc_html( __( 'Export your forms, entries, views, and styles so you can easily import them on another site.', 'formidable' ) ); ?>
38
+ </p>
39
  <form method="post" action="<?php echo esc_url( admin_url( 'admin-ajax.php' ) ); ?>" id="frm_export_xml">
40
  <input type="hidden" name="action" value="frm_export_xml" />
41
  <?php wp_nonce_field( 'export-xml-nonce', 'export-xml' ); ?>
93
  <?php foreach ( $forms as $form ) { ?>
94
  <option value="<?php echo esc_attr( $form->id ) ?>">
95
  <?php
96
+ echo esc_html( '' === $form->name ? __( '(no title)', 'formidable' ) : $form->name );
97
  echo ' &mdash; ' . esc_html( $form->form_key );
98
+ if ( $form->is_template ) {
 
 
99
  echo ' ' . esc_html__( '(template)', 'formidable' );
100
  } elseif ( $form->parent_form_id ) {
101
  echo ' ' . esc_html__( '(child)', 'formidable' );
113
  </p>
114
  </form>
115
 
 
 
 
116
  </div>
117
  </div>
css/custom_theme.css.php CHANGED
@@ -112,6 +112,7 @@ legend.frm_hidden{
112
  .with_frm_style .frm_pos_hidden,
113
  .frm_hidden_container label.frm_primary_label{
114
  visibility:hidden;
 
115
  }
116
 
117
  .with_frm_style .frm_inside_container label.frm_primary_label{
112
  .with_frm_style .frm_pos_hidden,
113
  .frm_hidden_container label.frm_primary_label{
114
  visibility:hidden;
115
+ white-space:nowrap;
116
  }
117
 
118
  .with_frm_style .frm_inside_container label.frm_primary_label{
css/formidableforms.css CHANGED
@@ -1,2 +1,2 @@
1
  /* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */
2
- .frm_form_field .grecaptcha-badge,.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 label.frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container label.frm_primary_label,.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container label.frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container label.frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_none_container label.frm_primary_label,.with_frm_style .frm_pos_none,.frm_none_container label.frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container label.frm_primary_label{visibility:hidden;}.with_frm_style .frm_inside_container label.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-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;}.frm_style_candy-cane.with_frm_style label.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 label.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 .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 .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=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{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 .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 .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_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;}@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.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-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;}.frm_style_formidable-style.with_frm_style label.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:#cccccc;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 label.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 .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 .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=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{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 .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:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 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:#cccccc;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: #cccccc;border-right-color: #cccccc;}.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 .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_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:#cccccc;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: #cccccc;}.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;}@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_formidable-style-2.with_frm_style{max-width:100%;direction:ltr;}.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_style_formidable-style-2.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:"Average 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:20px;color:#444444;font-family:"Average Sans",sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Average Sans",sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px 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:12px;}.frm_style_formidable-style-2.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style-2.with_frm_style label.frm_primary_label{font-family:"Average Sans",sans-serif;font-size:16px;color:#969292;font-weight:bold;text-align:left;margin:0;padding:0 0 5px 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:"Average Sans",sans-serif;color:#333333;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container{font-size:16px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font{color:#969292;}.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:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style-2.with_frm_style .form-field{margin-bottom:20px;}.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:5px 0 0 0;padding:0;font-family:"Average Sans",sans-serif;font-size:12px;color:#666666;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:16px;color:#333333;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 label.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:"Average Sans",sans-serif;font-size:16px;color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_required{color:#B94A48;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 .chosen-container{font-family:"Average Sans",sans-serif;font-size:14px;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 .chosen-container-multi .chosen-choices,.frm_style_formidable-style-2.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-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{height:32px;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: #555555;padding:0px;font-family:"Average Sans",sans-serif;font-size:14px;}.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:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style-2.with_frm_style input::placeholder,.frm_style_formidable-style-2.with_frm_style textarea::placeholder{color: #A1A1A1;}.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: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input::-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.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: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input:-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.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: #A1A1A1;}.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 .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:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.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:"Average Sans",sans-serif;font-size:16px;height:auto;line-height:normal;text-align:center;background:#214150;border-width:0px;border-color: #cccccc;border-style:solid;color:#ffffff;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:10px 10px;-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-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: #e6e6e6;border-color: #e6e6e6;color: #214150;}.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: #efefef;border-color: #cccccc;color: #444444;}.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: #214150;}.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:"Average Sans",sans-serif;font-size:16px;color:#969292;font-weight:bold;margin:0;padding:0 0 5px 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:"Average Sans",sans-serif;font-size:16px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style #frm_field_cptch_number_container{font-family:"Average Sans",sans-serif;font-size:16px;color:#969292;font-weight:bold;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:"Average Sans",sans-serif;font-size:16px;color:#444444;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 .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:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style-2.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field label,.frm_style_formidable-style-2.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style-2.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-2.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style-2.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style-2.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style-2.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.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, #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-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:#cccccc;}.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:#F2DEDE;border-color:#EBCCD1;}.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_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-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: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style-2.with_frm_style .frm_button{padding:10px 10px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:16px;font-family:"Average Sans",sans-serif;font-weight:normal;color:#ffffff;background: #214150;border-width:0px;border-color: #cccccc;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: #cccccc;border-radius:4px;color: #555555;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: #555555;}.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:#B94A48;color:#444444;background-color:#ffffff;}.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: #008ec2;}.frm_style_formidable-style-2.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-2.with_frm_style .chosen-container{font-size:14px;}.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:#555555;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.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: #008ec2;}.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: #008ec2;}.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: #666666;}.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: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.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: #008ec2;}.frm_style_formidable-style-2.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-2.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input,.frm_style_formidable-style-2.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;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:14px;}.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:4px;}.frm_style_formidable-style-2.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-2.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-2.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-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:#008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_off_label{color:#444444;}.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:#008ec2;}.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:#468847;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-req::before {color:#B94A48;}@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_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-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;}.frm_style_left-labels.with_frm_style label.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 label.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 .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 .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=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{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 .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 .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_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;}@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-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;}.frm_style_lines.with_frm_style label.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 label.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 .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 .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=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{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 .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 .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_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;}@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_formidable-style-3.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style-3.with_frm_style,.frm_style_formidable-style-3.with_frm_style form,.frm_style_formidable-style-3.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style-3.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-3.with_frm_style legend + h3,.frm_style_formidable-style-3.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-3.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-3.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style-3.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style-3.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style-3.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style-3.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style-3.with_frm_style label.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-3.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style-3.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-3.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style-3.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_formidable-style-3.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style-3.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style-3.with_frm_style .frm_grid,.frm_style_formidable-style-3.with_frm_style .frm_grid_first,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style-3.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style-3.with_frm_style p.description,.frm_style_formidable-style-3.with_frm_style div.description,.frm_style_formidable-style-3.with_frm_style div.frm_description,.frm_style_formidable-style-3.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style-3.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-3.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-3.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style-3.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-3.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style-3.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style-3.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style-3.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_formidable-style-3.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style-3.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-3.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style-3.with_frm_style input[type=text],.frm_style_formidable-style-3.with_frm_style input[type=password],.frm_style_formidable-style-3.with_frm_style input[type=email],.frm_style_formidable-style-3.with_frm_style input[type=number],.frm_style_formidable-style-3.with_frm_style input[type=url],.frm_style_formidable-style-3.with_frm_style input[type=tel],.frm_style_formidable-style-3.with_frm_style input[type=search],.frm_style_formidable-style-3.with_frm_style select,.frm_style_formidable-style-3.with_frm_style textarea,.frm_style_formidable-style-3.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-3.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style-3.with_frm_style input[type=text],.frm_style_formidable-style-3.with_frm_style input[type=password],.frm_style_formidable-style-3.with_frm_style input[type=email],.frm_style_formidable-style-3.with_frm_style input[type=number],.frm_style_formidable-style-3.with_frm_style input[type=url],.frm_style_formidable-style-3.with_frm_style input[type=tel],.frm_style_formidable-style-3.with_frm_style input[type=phone],.frm_style_formidable-style-3.with_frm_style input[type=search],.frm_style_formidable-style-3.with_frm_style select,.frm_style_formidable-style-3.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style-3.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style-3.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style-3.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:50%;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-3.with_frm_style input[type=text],.frm_style_formidable-style-3.with_frm_style input[type=password],.frm_style_formidable-style-3.with_frm_style input[type=email],.frm_style_formidable-style-3.with_frm_style input[type=number],.frm_style_formidable-style-3.with_frm_style input[type=url],.frm_style_formidable-style-3.with_frm_style input[type=tel],.frm_style_formidable-style-3.with_frm_style input[type=file],.frm_style_formidable-style-3.with_frm_style input[type=search],.frm_style_formidable-style-3.with_frm_style select{height:32px;line-height:1.3;}.frm_style_formidable-style-3.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_formidable-style-3.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-3.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style-3.with_frm_style select{width:50%;max-width:100%;}.frm_style_formidable-style-3.with_frm_style .wp-editor-wrap{width:50%;max-width:100%;}.frm_style_formidable-style-3.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style-3.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .auto_width input,.frm_style_formidable-style-3.with_frm_style input.auto_width,.frm_style_formidable-style-3.with_frm_style select.auto_width,.frm_style_formidable-style-3.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style-3.with_frm_style input[disabled],.frm_style_formidable-style-3.with_frm_style select[disabled],.frm_style_formidable-style-3.with_frm_style textarea[disabled],.frm_style_formidable-style-3.with_frm_style input[readonly],.frm_style_formidable-style-3.with_frm_style select[readonly],.frm_style_formidable-style-3.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style-3.with_frm_style input::placeholder,.frm_style_formidable-style-3.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style-3.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input::-moz-placeholder,.frm_style_formidable-style-3.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style-3.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input:-moz-placeholder,.frm_style_formidable-style-3.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style .frm_default,.frm_style_formidable-style-3.with_frm_style input.frm_default,.frm_style_formidable-style-3.with_frm_style textarea.frm_default,.frm_style_formidable-style-3.with_frm_style select.frm_default,.frm_style_formidable-style-3.with_frm_style .placeholder,.frm_style_formidable-style-3.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style-3.with_frm_style select:focus,.frm_style_formidable-style-3.with_frm_style textarea:focus,.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style-3.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style-3.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_formidable-style-3.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style-3.with_frm_style input[type=submit],.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style-3.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-3.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style-3.with_frm_style input[type=submit]:hover,.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style-3.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-3.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style-3.with_frm_style input[type=submit]:focus,.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style-3.with_frm_style .frm_submit button:focus,.frm_style_formidable-style-3.with_frm_style input[type=submit]:active,.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style-3.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_formidable-style-3.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style-3.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-3.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style-3.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style-3.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style-3.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style-3.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-3.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-3.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style-3.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style-3.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style-3.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style-3.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style-3.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style-3.with_frm_style .frm_radio label,.frm_style_formidable-style-3.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-3.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style-3.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style-3.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style-3.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style-3.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-3.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style-3.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field label,.frm_style_formidable-style-3.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style-3.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-3.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style-3.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style-3.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style-3.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style-3.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style-3.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style-3.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style-3.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-3.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_grid,.frm_style_formidable-style-3.with_frm_style .frm_grid_first,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style-3.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style-3.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style-3.with_frm_style .frm_grid_first,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style-3.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:50%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style-3.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-3.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-3.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style-3.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style-3.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-3.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style-3.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style-3.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_formidable-style-3.with_frm_style .frm_page_bar input,.frm_style_formidable-style-3.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style-3.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_rootline_title,.frm_style_formidable-style-3.with_frm_style .frm_pages_complete,.frm_style_formidable-style-3.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input,.frm_style_formidable-style-3.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style-3.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-3.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style-3.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-3.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style-3.with_frm_style .frm_rootline input,.frm_style_formidable-style-3.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style-3.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input,.frm_style_formidable-style-3.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style-3.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_formidable-style-3.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style-3.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_formidable-style-3.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .form-field input[type=range],.frm_style_formidable-style-3.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style-3.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style-3.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-3.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-3.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-3.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style-3.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style-3.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style-3.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style-3.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style-3.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style-3.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style-3.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style-3.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style-3.with_frm_style span.frm-pass-req::before {color:#B94A48;}@media only screen and (max-width: 600px){.frm_style_formidable-style-3.with_frm_style .frm_repeat_inline,.frm_style_formidable-style-3.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-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;}.frm_style_rtl.with_frm_style label.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 label.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 .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 .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=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{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 .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 .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_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;}@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-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;}.frm_style_true-blue.with_frm_style label.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 label.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 .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 .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=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{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 .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 .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_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;}@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:initial;}.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;}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:#ffffff;}.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_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;}.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;}.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;}.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;}.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;}.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;}.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;}.frm_form_field.frm10,.frm_submit.frm10{grid-column: span 10/span 10;}.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;}.frm_form_field.frm5,.frm_submit.frm5{grid-column: span 5/span 5;}.frm_form_field.frm7,.frm_submit.frm7{grid-column: span 7/span 7;}.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;}.frm_full .wp-editor-wrap input{width:auto !important;}.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_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 label.frm_primary_label,.frm_form_field.frm_right_container label.frm_primary_label,.frm_form_field.frm_left_container label.frm_primary_label{margin-right:10px;grid-row:span 2/span 2;padding-top:4px;}.frm_form_field.frm_left_container label.frm_primary_label{grid-column:1;grid-row:span 2/span 2; }.frm_form_field.frm_right_container label.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: 700px) {.frm_form_fields .frm_fields_container{grid-gap: 0 2%;}}@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 label.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 label.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 label.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 label.frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 label.frm_primary_label,.frm_grid_7 label.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 label.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 label.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 label.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 label.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 label.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 label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd label.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: 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_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 label.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.eot?v=3');src:local('☺'), url('../fonts/s11-fp.woff?v=3') format('woff'), url('../fonts/s11-fp.ttf?v=3') format('truetype'), url('../fonts/s11-fp.svg?v=3') format('svg');font-weight:normal;font-style:normal;}.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;display:inline-block;}i.frm_icon_font{font-style:normal;}.frm_icon_font:before,select.frm_icon_font{font-family: 's11-fp' !important;speak: none;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;-moz-transition: all .1s ease-in-out;-webkit-transition: all .1s ease-in-out;transition: all .1s ease-in-out;text-align:center;width: 18px;height: 18px;font-size: 18px;line-height: 1.4;vertical-align: top;}.frm_icon_font,a.frm_icon_font,.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;box-shadow:none;}.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frm_duplicate_icon:active,.frm_move_icon:active,.frm_delete_icon:active{outline:none;}.frm_trigger .frm_icon_font{padding:0 5px;}.ab-icon.frm_dashicon_font:before{content: "\f324";}.frm_logo_icon:before {content: "\e601";}.frm_required_icon:before {content: "\e612";}.frm_delete_icon:before {content: "\e610" !important;}.frm_move_icon:before {content: "\e61a";}.frm_clear_icon:before {content: "\e60a";}.frm_noclear_icon:before {content: "\e60b";}.frm_duplicate_icon:before {content: "\e61b";}.frm_new_icon:before {content: "\e614";}.frm_paste_icon:before {content: "\e901";}.frm_tooltip_icon:before {content: "\e611";}.frm_forbid_icon:before {content: "\e636";}.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_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_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_arrowdown6_icon:before {content: "\e62a";}.frm_download_icon:before {content: "\e615";}.frm_upload_icon:before {content: "\e616";}.frm_menu_icon:before {content: "\e618";}.frm_twitter_icon:before {content: "\e619";}.frm_sms_icon:before {content: "\e61c";}.frm_pencil_icon:before {content: "\e61d";}.frm_pencil1_icon:before {content: "\e61e";}.frm_paypal_icon:before {content: "\e61f";}.frm_twilio_icon:before {content: "\e620";}.frm_googleplus_icon:before {content: "\e621";}.frm_google-plus-g_icon:before {content: "\f0d5";}.frm_mailchimp_icon:before {content: "\e622";}.frm_pdf_icon:before {content: "\e623";}.frm_highrise_icon:before {content: "\e617";}.frm_feed_icon:before {content: "\e624";}.frm_facebook_icon:before {content: "\e625";}.frm_email_icon:before {content: "\e626";}.frm_aweber_icon:before {content: "\e627";}.frm_register_icon:before {content: "\e637";}.frm_authorize_icon:before {content: "\e900";}.frm_stripe_icon:before {content: "\e902";}.frm_woocommerce_icon:before {content: "\e903";}.frm_wordpress_icon:before {content: "\f19a";}.frm_paragraph_icon:before {content: "\f1dd";}.frm_check-square_icon:before {content: "\f14a";}.frm_caret-square-down_icon:before {content: "\f150";}.frm_scrubber_icon:before {content: "\f2f8";}.frm_radio-checked_icon:before {content: "\ea54";}.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_clock-o_icon:before {content: "\f017";}.frm_link_icon:before {content: "\f0c1";}.frm_link2_icon:before {content: "\e157";}.frm_envelope_icon:before {content: "\f0e0";}.frm_envelope-o_icon:before {content: "\f003";}.frm_phone_icon:before {content: "\e942";}.frm_calendar_icon:before {content: "\f073";}.frm_upload2_icon:before {content: "\f093";}.frm_embed2_icon:before {content: "\ea80";}.frm_user_icon:before {content: "\f007";}.frm_price-tags_icon:before {content: "\e936";}.frm_search_icon:before {content: "\f002";}.frm_sitemap_icon:before {content: "\f0e8";}.frm_file-text_icon:before {content: "\f15c";}.frm_check-circle-o_icon:before {content: "\f05d";}.frm_option-icon3_icon:before {content: "\e904";}.frm-option-icon:before {content: "\e905";}.frm_more_horiz_icon:before {content: "\e5d3";}.frm_more_vert_icon:before {content: "\e5d4";}.frm_ellipsis-h_icon:before {content: "\f141";}.frm_ellipsis-v_icon:before {content: "\f142";}.frm_calculator_icon:before {content: "\f1ec";}.frm_key_icon:before {content: "\f084";}.frm_key2_icon:before {content: "\f085";}.frm_upload3_icon:before {content: "\e9c8";}.frm_download2_icon:before {content: "\f019";}.frm_list-alt_icon:before {content: "\f022";}.frm_eye_icon:before {content: "\f06e";}.frm_eye-slash_icon:before {content: "\f070";}.frm_view_agenda_icon:before {content: "\e8e9";}.frm_view_day_icon:before {content: "\e8ed";}.frm_h3_icon:before {content: "\f315";}.frm_repeat_icon:before {content: "\f363";}.frm_sliders_icon:before {content: "\f1de";}.frm_code-commit_icon:before {content: "\f386";}.frm_star-o_icon:before {content: "\f006";}.frm_star_icon:before {content: "\f005";}.frm_star-half_icon:before {content: "\f089";}.frm_linear_scale_icon:before {content: "\e260";}.frm_pause_icon:before {content: "\ea16";}.frm_pause-circle_icon:before {content: "\f28b";}.frm_view_comfy_icon:before {content: "\e42a";}.frm_sort_icon:before {content: "\f0dc";}.frm_unsorted_icon:before {content: "\f0dc";}.frm_pie-chart_icon:before {content: "\e99a";}.frm_area-chart_icon:before {content: "\f1fe";}.frm_stats-dots_icon:before {content: "\e99b";}.frm_stats-bars_icon:before {content: "\e99c";}.frm_stats-bars2_icon:before {content: "\e99d";}.frm_credit-card-alt_icon:before {content: "\f283";}.frm_cc-visa_icon:before {content: "\f1f0";}.frm_cc-mastercard_icon:before {content: "\f1f1";}.frm_cc-discover_icon:before {content: "\f1f2";}.frm_cc-amex_icon:before {content: "\f1f3";}.frm_cc-paypal_icon:before {content: "\f1f4";}.frm_cc-stripe_icon:before {content: "\f1f5";}.frm_trash-alt_icon:before {content: "\f2ed";}.frm_view_quilt_icon:before {content: "\e8f1";}.frm_line_style_icon:before {content: "\e919";}.frm_page-break_icon:before {content: "\ea68";}.frm_asterisk_icon:before {content: "\f069";}.frm_arrows_icon:before {content: "\f047";}.frm_clone_icon:before {content: "\f24d";}.frm_copy_icon:before {content: "\f0c5";}.frm_file-code_icon:before {content: "\f1c9";}.frm_file-plus_icon:before {content: "\f319";}.frm_file_icon:before {content: "\f15b";}.frm_info-circle_icon:before {content: "\f05a";}.frm_info-square_icon:before {content: "\f30f";}.frm_star-empty_icon:before {content: "\e9d7";}.frm_star-half2_icon:before {content: "\e9d8";}.frm_star-full_icon:before {content: "\e9d9";}.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;}.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_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.3;}.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.3;}.frm_form_field .frm_repeat_grid .frm_form_field label.frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field label.frm_primary_label{display:inherit !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;}.with_frm_style .frm_scale{margin-right:10px;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:20px;height:20px;font-size:20px;line-height:1.4em;cursor:pointer;display:block;background:transparent;overflow:hidden !important;clear:none;font-style:normal;}.frm-star-group input + label:before,.frm-star-group .star-rating:before{font-family:'s11-fp';content:'\e9d7';color:#F0AD4E;display: inline-block;}.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 #66afe9;-webkit-box-shadow:0 2px 5px #66afe9;box-shadow:0 2px 5px #66afe9;}.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: #008ec2;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: #008ec2;}input:focus + .frm_slider {box-shadow: 0 0 1px #008ec2;}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: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-moz-range-track {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;border-color: transparent;border-width: 39px 0;color: transparent;}.with_frm_style input[type=range]::-ms-fill-lower {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-ms-fill-upper {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-webkit-slider-thumb {-webkit-appearance: none;-webkit-border-radius: 20px;height: 2em;width: 2em;border-radius: 20px;border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;cursor: pointer;margin-top: -.9em;}.with_frm_style input[type=range]::-moz-range-thumb {height: 2em;width: 2em;border-radius: 20px;border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;cursor: pointer;-moz-border-radius: 20px;}.with_frm_style input[type=range]::-ms-thumb {height: 2em;width: 2em;border-radius: 20px;border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;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;}.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%;box-shadow:0 4px 5px rgba(0,0,0,.15);z-index:1010;width:100%;display: none;}.with_frm_style .chosen-container.chosen-with-drop .chosen-drop{display: block;}.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-single input[type="text"] {cursor: pointer;opacity: 0;position: absolute;}.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);}.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;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));background-image: linear-gradient(#eee 1%, #fff 15%);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;}@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;}}.with_frm_style.frm_login_form,.with_frm_style.frm_login_form form{clear:both;}.frm_login_form .login_lost_pw.frm_half{text-align:right;}.frm_inline_login.frm_no_labels .frm_submit input,.frm_inline_login.frm_no_labels .frm_submit button{margin-top:0 !important;}.with_frm_style.frm_login_form.frm_slide.frm_inline_login form,.with_frm_style.frm_login_form.frm_slide.frm_inline_login form{clear:none;}.with_frm_style.frm_slide.frm_inline_login .frm-open-login{float:left;margin-right:15px;}.with_frm_style.frm_slide form,.frm_slide form,.with_frm_style.frm_slide.frm_inline_login a.forgot-password,.with_frm_style.frm_slide.frm_inline_login .login-remember{display:none;}.with_frm_style.frm_slide.frm_inline_login .frm_form_field,.with_frm_style.frm_slide.frm_inline_login .frm_submit input{margin-bottom:0;}.with_frm_style.frm_slide.frm_inline_login fieldset{padding-bottom:0;}.with_frm_style.frm_login_form.frm_inline_login .login-username,.with_frm_style.frm_login_form.frm_inline_login .login-password,.with_frm_style.frm_login_form.frm_inline_login .login-remember{margin-right:0 !important;}.with_frm_style.frm_login_form.frm_inline_login form,.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:static !important;}.with_frm_style.frm_login_form a{text-decoration:none;border:none;outline:none;box-shadow:none;}.with_frm_style.frm_login_form .cptch_block .cptch_title{display:none;}@media only screen and (max-width: 600px) {.frm_login_form .login_lost_pw.frm_half{text-align:left;}.with_frm_style .login-remember.frm_first.frm_half,.with_frm_style.frm_login_form .login_lost_pw.frm_half{text-align:center;}.with_frm_style.frm_slide.frm_inline_login .frm_form_field,.with_frm_style.frm_slide.frm_inline_login .frm_submit input{margin-bottom:20px;}}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth label.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%;}}.color > .red,.red{color:red;}
1
  /* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */
2
+ .frm_form_field .grecaptcha-badge,.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 label.frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container label.frm_primary_label,.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container label.frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container label.frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_none_container label.frm_primary_label,.with_frm_style .frm_pos_none,.frm_none_container label.frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container label.frm_primary_label{visibility:hidden;white-space:nowrap;}.with_frm_style .frm_inside_container label.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-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;}.frm_style_candy-cane.with_frm_style label.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 label.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 .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 .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=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{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 .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 .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_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;}@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.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-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;}.frm_style_formidable-style.with_frm_style label.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:#cccccc;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 label.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 .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 .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=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{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 .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:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 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:#cccccc;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: #cccccc;border-right-color: #cccccc;}.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 .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_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:#cccccc;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: #cccccc;}.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;}@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_formidable-style-2.with_frm_style{max-width:100%;direction:ltr;}.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_style_formidable-style-2.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:"Average 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:20px;color:#444444;font-family:"Average Sans",sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Average Sans",sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px 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:12px;}.frm_style_formidable-style-2.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style-2.with_frm_style label.frm_primary_label{font-family:"Average Sans",sans-serif;font-size:16px;color:#969292;font-weight:bold;text-align:left;margin:0;padding:0 0 5px 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:"Average Sans",sans-serif;color:#333333;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container{font-size:16px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font{color:#969292;}.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:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style-2.with_frm_style .form-field{margin-bottom:20px;}.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:5px 0 0 0;padding:0;font-family:"Average Sans",sans-serif;font-size:12px;color:#666666;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:16px;color:#333333;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 label.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:"Average Sans",sans-serif;font-size:16px;color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_required{color:#B94A48;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 .chosen-container{font-family:"Average Sans",sans-serif;font-size:14px;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 .chosen-container-multi .chosen-choices,.frm_style_formidable-style-2.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-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{height:32px;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: #555555;padding:0px;font-family:"Average Sans",sans-serif;font-size:14px;}.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:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style-2.with_frm_style input::placeholder,.frm_style_formidable-style-2.with_frm_style textarea::placeholder{color: #A1A1A1;}.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: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input::-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.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: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input:-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.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: #A1A1A1;}.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 .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:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.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:"Average Sans",sans-serif;font-size:16px;height:auto;line-height:normal;text-align:center;background:#214150;border-width:0px;border-color: #cccccc;border-style:solid;color:#ffffff;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:10px 10px;-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-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: #e6e6e6;border-color: #e6e6e6;color: #214150;}.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: #efefef;border-color: #cccccc;color: #444444;}.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: #214150;}.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:"Average Sans",sans-serif;font-size:16px;color:#969292;font-weight:bold;margin:0;padding:0 0 5px 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:"Average Sans",sans-serif;font-size:16px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style #frm_field_cptch_number_container{font-family:"Average Sans",sans-serif;font-size:16px;color:#969292;font-weight:bold;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:"Average Sans",sans-serif;font-size:16px;color:#444444;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 .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:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style-2.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field label,.frm_style_formidable-style-2.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style-2.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-2.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style-2.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style-2.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style-2.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.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, #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-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:#cccccc;}.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:#F2DEDE;border-color:#EBCCD1;}.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_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-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: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style-2.with_frm_style .frm_button{padding:10px 10px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:16px;font-family:"Average Sans",sans-serif;font-weight:normal;color:#ffffff;background: #214150;border-width:0px;border-color: #cccccc;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: #cccccc;border-radius:4px;color: #555555;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: #555555;}.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:#B94A48;color:#444444;background-color:#ffffff;}.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: #008ec2;}.frm_style_formidable-style-2.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-2.with_frm_style .chosen-container{font-size:14px;}.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:#555555;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.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: #008ec2;}.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: #008ec2;}.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: #666666;}.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: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.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: #008ec2;}.frm_style_formidable-style-2.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-2.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input,.frm_style_formidable-style-2.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;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:14px;}.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:4px;}.frm_style_formidable-style-2.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-2.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-2.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-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:#008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_off_label{color:#444444;}.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:#008ec2;}.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:#468847;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-req::before {color:#B94A48;}@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_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-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;}.frm_style_left-labels.with_frm_style label.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 label.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 .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 .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=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{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 .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 .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_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;}@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-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;}.frm_style_lines.with_frm_style label.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 label.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 .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 .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=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{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 .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 .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_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;}@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_formidable-style-3.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style-3.with_frm_style,.frm_style_formidable-style-3.with_frm_style form,.frm_style_formidable-style-3.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style-3.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-3.with_frm_style legend + h3,.frm_style_formidable-style-3.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-3.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-3.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style-3.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style-3.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style-3.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style-3.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style-3.with_frm_style label.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-3.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style-3.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-3.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style-3.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_formidable-style-3.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style-3.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style-3.with_frm_style .frm_grid,.frm_style_formidable-style-3.with_frm_style .frm_grid_first,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style-3.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style-3.with_frm_style p.description,.frm_style_formidable-style-3.with_frm_style div.description,.frm_style_formidable-style-3.with_frm_style div.frm_description,.frm_style_formidable-style-3.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style-3.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-3.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-3.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style-3.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-3.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style-3.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style-3.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style-3.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_formidable-style-3.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style-3.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-3.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style-3.with_frm_style input[type=text],.frm_style_formidable-style-3.with_frm_style input[type=password],.frm_style_formidable-style-3.with_frm_style input[type=email],.frm_style_formidable-style-3.with_frm_style input[type=number],.frm_style_formidable-style-3.with_frm_style input[type=url],.frm_style_formidable-style-3.with_frm_style input[type=tel],.frm_style_formidable-style-3.with_frm_style input[type=search],.frm_style_formidable-style-3.with_frm_style select,.frm_style_formidable-style-3.with_frm_style textarea,.frm_style_formidable-style-3.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-3.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style-3.with_frm_style input[type=text],.frm_style_formidable-style-3.with_frm_style input[type=password],.frm_style_formidable-style-3.with_frm_style input[type=email],.frm_style_formidable-style-3.with_frm_style input[type=number],.frm_style_formidable-style-3.with_frm_style input[type=url],.frm_style_formidable-style-3.with_frm_style input[type=tel],.frm_style_formidable-style-3.with_frm_style input[type=phone],.frm_style_formidable-style-3.with_frm_style input[type=search],.frm_style_formidable-style-3.with_frm_style select,.frm_style_formidable-style-3.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style-3.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style-3.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style-3.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:50%;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-3.with_frm_style input[type=text],.frm_style_formidable-style-3.with_frm_style input[type=password],.frm_style_formidable-style-3.with_frm_style input[type=email],.frm_style_formidable-style-3.with_frm_style input[type=number],.frm_style_formidable-style-3.with_frm_style input[type=url],.frm_style_formidable-style-3.with_frm_style input[type=tel],.frm_style_formidable-style-3.with_frm_style input[type=file],.frm_style_formidable-style-3.with_frm_style input[type=search],.frm_style_formidable-style-3.with_frm_style select{height:32px;line-height:1.3;}.frm_style_formidable-style-3.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_formidable-style-3.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-3.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style-3.with_frm_style select{width:50%;max-width:100%;}.frm_style_formidable-style-3.with_frm_style .wp-editor-wrap{width:50%;max-width:100%;}.frm_style_formidable-style-3.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style-3.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .auto_width input,.frm_style_formidable-style-3.with_frm_style input.auto_width,.frm_style_formidable-style-3.with_frm_style select.auto_width,.frm_style_formidable-style-3.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style-3.with_frm_style input[disabled],.frm_style_formidable-style-3.with_frm_style select[disabled],.frm_style_formidable-style-3.with_frm_style textarea[disabled],.frm_style_formidable-style-3.with_frm_style input[readonly],.frm_style_formidable-style-3.with_frm_style select[readonly],.frm_style_formidable-style-3.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style-3.with_frm_style input::placeholder,.frm_style_formidable-style-3.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style-3.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input::-moz-placeholder,.frm_style_formidable-style-3.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style-3.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input:-moz-placeholder,.frm_style_formidable-style-3.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style .frm_default,.frm_style_formidable-style-3.with_frm_style input.frm_default,.frm_style_formidable-style-3.with_frm_style textarea.frm_default,.frm_style_formidable-style-3.with_frm_style select.frm_default,.frm_style_formidable-style-3.with_frm_style .placeholder,.frm_style_formidable-style-3.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style-3.with_frm_style select:focus,.frm_style_formidable-style-3.with_frm_style textarea:focus,.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style-3.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style-3.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_formidable-style-3.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style-3.with_frm_style input[type=submit],.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style-3.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-3.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style-3.with_frm_style input[type=submit]:hover,.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style-3.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-3.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style-3.with_frm_style input[type=submit]:focus,.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style-3.with_frm_style .frm_submit button:focus,.frm_style_formidable-style-3.with_frm_style input[type=submit]:active,.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style-3.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_formidable-style-3.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style-3.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-3.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style-3.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style-3.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style-3.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style-3.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-3.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-3.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style-3.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style-3.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style-3.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style-3.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style-3.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style-3.with_frm_style .frm_radio label,.frm_style_formidable-style-3.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-3.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style-3.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style-3.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style-3.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style-3.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-3.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style-3.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field label,.frm_style_formidable-style-3.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style-3.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-3.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style-3.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style-3.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style-3.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style-3.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style-3.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style-3.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style-3.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-3.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_grid,.frm_style_formidable-style-3.with_frm_style .frm_grid_first,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style-3.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style-3.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style-3.with_frm_style .frm_grid_first,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style-3.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:50%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style-3.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-3.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-3.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style-3.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style-3.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-3.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style-3.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style-3.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_formidable-style-3.with_frm_style .frm_page_bar input,.frm_style_formidable-style-3.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style-3.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_rootline_title,.frm_style_formidable-style-3.with_frm_style .frm_pages_complete,.frm_style_formidable-style-3.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input,.frm_style_formidable-style-3.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style-3.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-3.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style-3.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-3.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style-3.with_frm_style .frm_rootline input,.frm_style_formidable-style-3.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style-3.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input,.frm_style_formidable-style-3.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style-3.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_formidable-style-3.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style-3.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_formidable-style-3.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .form-field input[type=range],.frm_style_formidable-style-3.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style-3.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style-3.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-3.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-3.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-3.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style-3.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style-3.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style-3.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style-3.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style-3.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style-3.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style-3.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style-3.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style-3.with_frm_style span.frm-pass-req::before {color:#B94A48;}@media only screen and (max-width: 600px){.frm_style_formidable-style-3.with_frm_style .frm_repeat_inline,.frm_style_formidable-style-3.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-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;}.frm_style_rtl.with_frm_style label.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 label.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 .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 .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=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{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 .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 .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_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;}@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-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;}.frm_style_true-blue.with_frm_style label.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 label.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 .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 .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=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{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 .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 .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_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;}@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:initial;}.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;}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:#ffffff;}.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_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;}.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;}.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;}.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;}.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;}.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;}.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;}.frm_form_field.frm10,.frm_submit.frm10{grid-column: span 10/span 10;}.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;}.frm_form_field.frm5,.frm_submit.frm5{grid-column: span 5/span 5;}.frm_form_field.frm7,.frm_submit.frm7{grid-column: span 7/span 7;}.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;}.frm_full .wp-editor-wrap input{width:auto !important;}.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_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 label.frm_primary_label,.frm_form_field.frm_right_container label.frm_primary_label,.frm_form_field.frm_left_container label.frm_primary_label{margin-right:10px;grid-row:span 2/span 2;padding-top:4px;}.frm_form_field.frm_left_container label.frm_primary_label{grid-column:1;grid-row:span 2/span 2; }.frm_form_field.frm_right_container label.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: 700px) {.frm_form_fields .frm_fields_container{grid-gap: 0 2%;}}@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 label.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 label.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 label.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 label.frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 label.frm_primary_label,.frm_grid_7 label.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 label.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 label.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 label.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 label.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 label.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 label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd label.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: 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_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 label.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.eot?v=3');src:local('☺'), url('../fonts/s11-fp.woff?v=3') format('woff'), url('../fonts/s11-fp.ttf?v=3') format('truetype'), url('../fonts/s11-fp.svg?v=3') format('svg');font-weight:normal;font-style:normal;}.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;display:inline-block;}i.frm_icon_font{font-style:normal;}.frm_icon_font:before,select.frm_icon_font{font-family: 's11-fp' !important;speak: none;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;-moz-transition: all .1s ease-in-out;-webkit-transition: all .1s ease-in-out;transition: all .1s ease-in-out;text-align:center;width: 18px;height: 18px;font-size: 18px;line-height: 1.4;vertical-align: top;}.frm_icon_font,a.frm_icon_font,.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;box-shadow:none;}.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frm_duplicate_icon:active,.frm_move_icon:active,.frm_delete_icon:active{outline:none;}.frm_trigger .frm_icon_font{padding:0 5px;}.ab-icon.frm_dashicon_font:before{content: "\f324";}.frm_logo_icon:before {content: "\e601";}.frm_required_icon:before {content: "\e612";}.frm_delete_icon:before {content: "\e610" !important;}.frm_move_icon:before {content: "\e61a";}.frm_clear_icon:before {content: "\e60a";}.frm_noclear_icon:before {content: "\e60b";}.frm_duplicate_icon:before {content: "\e61b";}.frm_new_icon:before {content: "\e614";}.frm_paste_icon:before {content: "\e901";}.frm_tooltip_icon:before {content: "\e611";}.frm_forbid_icon:before {content: "\e636";}.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_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_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_arrowdown6_icon:before {content: "\e62a";}.frm_download_icon:before {content: "\e615";}.frm_upload_icon:before {content: "\e616";}.frm_menu_icon:before {content: "\e618";}.frm_twitter_icon:before {content: "\e619";}.frm_sms_icon:before {content: "\e61c";}.frm_pencil_icon:before {content: "\e61d";}.frm_pencil1_icon:before {content: "\e61e";}.frm_paypal_icon:before {content: "\e61f";}.frm_twilio_icon:before {content: "\e620";}.frm_googleplus_icon:before {content: "\e621";}.frm_google-plus-g_icon:before {content: "\f0d5";}.frm_mailchimp_icon:before {content: "\e622";}.frm_pdf_icon:before {content: "\e623";}.frm_highrise_icon:before {content: "\e617";}.frm_feed_icon:before {content: "\e624";}.frm_facebook_icon:before {content: "\e625";}.frm_email_icon:before {content: "\e626";}.frm_aweber_icon:before {content: "\e627";}.frm_register_icon:before {content: "\e637";}.frm_authorize_icon:before {content: "\e900";}.frm_stripe_icon:before {content: "\e902";}.frm_woocommerce_icon:before {content: "\e903";}.frm_wordpress_icon:before {content: "\f19a";}.frm_paragraph_icon:before {content: "\f1dd";}.frm_check-square_icon:before {content: "\f14a";}.frm_caret-square-down_icon:before {content: "\f150";}.frm_scrubber_icon:before {content: "\f2f8";}.frm_radio-checked_icon:before {content: "\ea54";}.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_clock-o_icon:before {content: "\f017";}.frm_link_icon:before {content: "\f0c1";}.frm_link2_icon:before {content: "\e157";}.frm_envelope_icon:before {content: "\f0e0";}.frm_envelope-o_icon:before {content: "\f003";}.frm_phone_icon:before {content: "\e942";}.frm_calendar_icon:before {content: "\f073";}.frm_upload2_icon:before {content: "\f093";}.frm_embed2_icon:before {content: "\ea80";}.frm_user_icon:before {content: "\f007";}.frm_price-tags_icon:before {content: "\e936";}.frm_search_icon:before {content: "\f002";}.frm_sitemap_icon:before {content: "\f0e8";}.frm_file-text_icon:before {content: "\f15c";}.frm_check-circle-o_icon:before {content: "\f05d";}.frm_option-icon3_icon:before {content: "\e904";}.frm-option-icon:before {content: "\e905";}.frm_more_horiz_icon:before {content: "\e5d3";}.frm_more_vert_icon:before {content: "\e5d4";}.frm_ellipsis-h_icon:before {content: "\f141";}.frm_ellipsis-v_icon:before {content: "\f142";}.frm_calculator_icon:before {content: "\f1ec";}.frm_key_icon:before {content: "\f084";}.frm_key2_icon:before {content: "\f085";}.frm_upload3_icon:before {content: "\e9c8";}.frm_download2_icon:before {content: "\f019";}.frm_list-alt_icon:before {content: "\f022";}.frm_eye_icon:before {content: "\f06e";}.frm_eye-slash_icon:before {content: "\f070";}.frm_view_agenda_icon:before {content: "\e8e9";}.frm_view_day_icon:before {content: "\e8ed";}.frm_h3_icon:before {content: "\f315";}.frm_repeat_icon:before {content: "\f363";}.frm_sliders_icon:before {content: "\f1de";}.frm_code-commit_icon:before {content: "\f386";}.frm_star-o_icon:before {content: "\f006";}.frm_star_icon:before {content: "\f005";}.frm_star-half_icon:before {content: "\f089";}.frm_linear_scale_icon:before {content: "\e260";}.frm_pause_icon:before {content: "\ea16";}.frm_pause-circle_icon:before {content: "\f28b";}.frm_view_comfy_icon:before {content: "\e42a";}.frm_sort_icon:before {content: "\f0dc";}.frm_unsorted_icon:before {content: "\f0dc";}.frm_pie-chart_icon:before {content: "\e99a";}.frm_area-chart_icon:before {content: "\f1fe";}.frm_stats-dots_icon:before {content: "\e99b";}.frm_stats-bars_icon:before {content: "\e99c";}.frm_stats-bars2_icon:before {content: "\e99d";}.frm_credit-card-alt_icon:before {content: "\f283";}.frm_cc-visa_icon:before {content: "\f1f0";}.frm_cc-mastercard_icon:before {content: "\f1f1";}.frm_cc-discover_icon:before {content: "\f1f2";}.frm_cc-amex_icon:before {content: "\f1f3";}.frm_cc-paypal_icon:before {content: "\f1f4";}.frm_cc-stripe_icon:before {content: "\f1f5";}.frm_trash-alt_icon:before {content: "\f2ed";}.frm_view_quilt_icon:before {content: "\e8f1";}.frm_line_style_icon:before {content: "\e919";}.frm_page-break_icon:before {content: "\ea68";}.frm_asterisk_icon:before {content: "\f069";}.frm_arrows_icon:before {content: "\f047";}.frm_clone_icon:before {content: "\f24d";}.frm_copy_icon:before {content: "\f0c5";}.frm_file-code_icon:before {content: "\f1c9";}.frm_file-plus_icon:before {content: "\f319";}.frm_file_icon:before {content: "\f15b";}.frm_info-circle_icon:before {content: "\f05a";}.frm_info-square_icon:before {content: "\f30f";}.frm_star-empty_icon:before {content: "\e9d7";}.frm_star-half2_icon:before {content: "\e9d8";}.frm_star-full_icon:before {content: "\e9d9";}.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;}.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_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.3;}.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.3;}.frm_form_field .frm_repeat_grid .frm_form_field label.frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field label.frm_primary_label{display:inherit !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;}.with_frm_style .frm_scale{margin-right:10px;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:20px;height:20px;font-size:20px;line-height:1.4em;cursor:pointer;display:block;background:transparent;overflow:hidden !important;clear:none;font-style:normal;}.frm-star-group input + label:before,.frm-star-group .star-rating:before{font-family:'s11-fp';content:'\e9d7';color:#F0AD4E;display: inline-block;}.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 #66afe9;-webkit-box-shadow:0 2px 5px #66afe9;box-shadow:0 2px 5px #66afe9;}.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: #008ec2;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: #008ec2;}input:focus + .frm_slider {box-shadow: 0 0 1px #008ec2;}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: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-moz-range-track {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;border-color: transparent;border-width: 39px 0;color: transparent;}.with_frm_style input[type=range]::-ms-fill-lower {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-ms-fill-upper {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-webkit-slider-thumb {-webkit-appearance: none;-webkit-border-radius: 20px;height: 2em;width: 2em;border-radius: 20px;border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;cursor: pointer;margin-top: -.9em;}.with_frm_style input[type=range]::-moz-range-thumb {height: 2em;width: 2em;border-radius: 20px;border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;cursor: pointer;-moz-border-radius: 20px;}.with_frm_style input[type=range]::-ms-thumb {height: 2em;width: 2em;border-radius: 20px;border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;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;}.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%;box-shadow:0 4px 5px rgba(0,0,0,.15);z-index:1010;width:100%;display: none;}.with_frm_style .chosen-container.chosen-with-drop .chosen-drop{display: block;}.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-single input[type="text"] {cursor: pointer;opacity: 0;position: absolute;}.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);}.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;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));background-image: linear-gradient(#eee 1%, #fff 15%);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;}@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;}}.with_frm_style.frm_login_form,.with_frm_style.frm_login_form form{clear:both;}.frm_login_form .login_lost_pw.frm_half{text-align:right;}.frm_inline_login.frm_no_labels .frm_submit input,.frm_inline_login.frm_no_labels .frm_submit button{margin-top:0 !important;}.with_frm_style.frm_login_form.frm_slide.frm_inline_login form,.with_frm_style.frm_login_form.frm_slide.frm_inline_login form{clear:none;}.with_frm_style.frm_slide.frm_inline_login .frm-open-login{float:left;margin-right:15px;}.with_frm_style.frm_slide form,.frm_slide form,.with_frm_style.frm_slide.frm_inline_login a.forgot-password,.with_frm_style.frm_slide.frm_inline_login .login-remember{display:none;}.with_frm_style.frm_slide.frm_inline_login .frm_form_field,.with_frm_style.frm_slide.frm_inline_login .frm_submit input{margin-bottom:0;}.with_frm_style.frm_slide.frm_inline_login fieldset{padding-bottom:0;}.with_frm_style.frm_login_form.frm_inline_login .login-username,.with_frm_style.frm_login_form.frm_inline_login .login-password,.with_frm_style.frm_login_form.frm_inline_login .login-remember{margin-right:0 !important;}.with_frm_style.frm_login_form.frm_inline_login form,.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:static !important;}.with_frm_style.frm_login_form a{text-decoration:none;border:none;outline:none;box-shadow:none;}.with_frm_style.frm_login_form .cptch_block .cptch_title{display:none;}@media only screen and (max-width: 600px) {.frm_login_form .login_lost_pw.frm_half{text-align:left;}.with_frm_style .login-remember.frm_first.frm_half,.with_frm_style.frm_login_form .login_lost_pw.frm_half{text-align:center;}.with_frm_style.frm_slide.frm_inline_login .frm_form_field,.with_frm_style.frm_slide.frm_inline_login .frm_submit input{margin-bottom:20px;}}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth label.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%;}}.color > .red,.red{color:red;}
css/frm_admin.css CHANGED
@@ -1,5 +1,17 @@
1
  @import url(font_icons.css);
2
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  a, .widget .widget-top, .postbox h3, .stuffbox h3{cursor: pointer; text-decoration:none;}
4
  .postbox h3.hndle{cursor:default;}
5
 
@@ -11,7 +23,7 @@ a.frm_confirming,
11
  color:#f37656 !important;
12
  }
13
  .frm_wrap > .wrap{
14
- margin: 10px 30px 30px;
15
  }
16
 
17
  .formidable_page_formidable-pro-upgrade #post-body-content,
@@ -92,8 +104,8 @@ td.column-title .frm_actions_dropdown{
92
  #frm_top_bar{
93
  display:block;
94
  width:100%;
95
- padding:15px 30px;
96
- margin-bottom: 10px;
97
  box-sizing: border-box;
98
  }
99
 
@@ -110,11 +122,12 @@ td.column-title .frm_actions_dropdown{
110
 
111
  .post-type-frm_display .wrap #frm_top_bar h1,
112
  .frm_wrap #frm_top_bar h1{
113
- font-size: 20px;
114
- font-weight:400;
115
  padding:0;
116
  margin: 0;
117
  line-height: 1.4;
 
118
  }
119
 
120
  .frm_top_left{
@@ -175,7 +188,7 @@ ul.frm_form_nav > li{
175
  font-size: 24px;
176
  font-weight: normal;
177
  letter-spacing: 1px;
178
- padding: 0 20px 8px;
179
  line-height: 1.4;
180
  color:#72777C;
181
  }
@@ -424,11 +437,11 @@ ul.frm_form_nav > li{
424
  transition: all .2s ease;
425
  }
426
 
 
 
427
  .frm_orange_button,
428
  .wrap .frm_pricing a.button-primary,
429
  .toplevel_page_formidable #frm_upgrade_modal .button-primary,
430
- #frm_upgrade_modal .button,
431
- #form_global_settings .button-primary,
432
  #form_global_settings .button-secondary,
433
  .wp-core-ui.frm-white-body .button-primary,
434
  .wp-core-ui.frm-white-body .button-secondary,
@@ -441,19 +454,22 @@ ul.frm_form_nav > li{
441
  text-shadow:none;
442
  box-shadow:none;
443
  border-radius:4px;
444
- border-color:#e5e5e5;
445
  font-size: 1.1em;
446
  transition: all .2s ease;
447
  }
448
 
449
- #frm-addons-page .button-primary,
450
- .frm_single_entry_page .button-primary,
451
- #form_global_settings .button-primary,
452
- #frm_upgrade_modal .button,
453
- .frm_wrap .preview > .button{
454
- border-color: rgba(53,97,150,0.5) !important;
455
- background: rgb(53,97,150);
456
- color: #fff;
 
 
 
457
  }
458
 
459
  .frm_orange_button,
@@ -669,7 +685,7 @@ input.frm_insert_in_template{
669
  .frm_single_entry_page .frm_form_fields + p,
670
  #frm_form_editor_container > .postbox > p,
671
  .frm_form_settings > p{
672
- margin:6px 30px;
673
  padding:0;
674
  }
675
  label.frm_primary_label,
@@ -817,8 +833,8 @@ div.frm_updated_message{
817
  border: 25px solid transparent;
818
  border-bottom: 25px solid #f37656;
819
  position: absolute;
820
- top: 3px;
821
- right: -39px;
822
  padding: 0 10px;
823
  width: 65px;
824
  color: white;
@@ -891,21 +907,52 @@ div.frm_updated_message{
891
  text-align:center;
892
  }
893
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
894
  .frm-addons {
895
  margin-top:30px;
 
 
 
896
  }
897
 
898
- .frm-addons .plugin-card:nth-child(even),
899
- .frm-addons .plugin-card:nth-child(odd),
900
- .frm-addons .plugin-card{
901
- width: 31.3%;
902
- margin:0 3% 30px 0;
903
- clear:none;
 
 
 
 
 
 
904
  border-radius: 10px;
905
- border-color: rgb( 235, 235, 235 );
906
- border-width: 2px;
 
 
907
  }
908
 
 
 
 
 
 
909
  .frm-addons .plugin-card-top{
910
  height:175px;
911
  }
@@ -919,14 +966,6 @@ div.frm_updated_message{
919
  opacity:0.8;
920
  }
921
 
922
- .frm-addons .plugin-card:nth-child(3n+3) {
923
- margin-right:0;
924
- }
925
-
926
- .frm-addons .plugin-card:nth-child(3n+4) {
927
- clear:both;
928
- }
929
-
930
  .frm-addons .plugin-card-bottom {
931
  padding: 5px 20px 20px;
932
  text-align:center;
@@ -972,6 +1011,73 @@ div.frm_updated_message{
972
  margin-left: -17px;
973
  }
974
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
975
  #frm_bulk_options{
976
  height:240px;
977
  width:335px;
@@ -1117,7 +1223,7 @@ div.frm_updated_message{
1117
  }
1118
 
1119
  a.frm-option-icon:before{
1120
- color: rgb(53,97,150);
1121
  font-size: 22px;
1122
  width: 22px;
1123
  height: 22px;
@@ -1125,17 +1231,30 @@ a.frm-option-icon:before{
1125
 
1126
  a.frm-option-icon:focus::before,
1127
  a.frm-option-icon:hover::before{
1128
- color:#5b9dd9;
1129
  }
1130
 
1131
  .frm_top_left .frm-dropdown-toggle{
1132
  color:#999;
1133
  }
1134
 
 
 
 
 
1135
  .frm-dropdown-toggle{
1136
  text-decoration:none;
1137
  }
1138
 
 
 
 
 
 
 
 
 
 
1139
  .frm_actions_dropdown .frm-dropdown-menu{
1140
  font-size:14px;
1141
  color:#5F6C72;
@@ -2597,11 +2716,14 @@ tr.frm_options_heading td{
2597
  margin-bottom: 25px;
2598
  }
2599
 
2600
- #frm_create_template_form{
2601
- font-weight:bold;
2602
- position:relative;
2603
- z-index:9999;
2604
- margin-bottom:75px;
 
 
 
2605
  }
2606
 
2607
  .frm_inline_label{
@@ -2770,8 +2892,56 @@ ul.frm-category-tabs{
2770
  .widefat .column-entries, .widefat .column-link{width:10%;text-align:center;}
2771
  .widefat .column-form_key, .widefat .column-created_at{width:10%;}
2772
 
 
2773
  .frm_wrap .search-box{
2774
  float:right;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2775
  }
2776
 
2777
  select[name="m"]{display:none;}
@@ -2935,7 +3105,7 @@ ul .frm_col_two{float:right;}
2935
  }
2936
 
2937
  .frm_code_list.frm_grid_container a:hover{
2938
- background-color:rgb(53,97,150);
2939
  color:#fbfdff;
2940
  }
2941
 
@@ -3031,7 +3201,7 @@ li.frm_noallow.button.frm_show_upgrade {
3031
  }
3032
 
3033
  .wp-dialog {
3034
- z-index:10;
3035
  padding: 0 !important;
3036
  }
3037
 
@@ -3387,22 +3557,12 @@ Responsive Design
3387
  margin: 5px 0;
3388
  }
3389
 
3390
- .frm-addons .plugin-card:nth-child(3n+4),
3391
- .frm-addons .plugin-card:nth-child(3n+3),
3392
- .frm-addons .plugin-card:nth-child(even),
3393
- .frm-addons .plugin-card:nth-child(odd),
3394
- .frm-addons .plugin-card{
3395
- width: 48.5%;
3396
- margin:0 3% 30px 0;
3397
- clear:none;
3398
  }
3399
 
3400
- .frm-addons .plugin-card:nth-child(even) {
3401
- margin-right:0;
3402
- }
3403
-
3404
- .frm-addons .plugin-card:nth-child(odd) {
3405
- clear:both;
3406
  }
3407
  }
3408
  @media only screen and (max-width: 1050px) {
@@ -3455,6 +3615,10 @@ Responsive Design
3455
  .frm_no_actions .inner_actions{
3456
  margin-left:80px;
3457
  }
 
 
 
 
3458
  }
3459
  @media only screen and (max-width: 960px){
3460
  .auto-fold #adminmenuwrap{
@@ -3661,13 +3825,8 @@ Responsive Design
3661
  display: inline-block;
3662
  }
3663
 
3664
- .frm-addons .plugin-card:nth-child(3n+4),
3665
- .frm-addons .plugin-card:nth-child(3n+3),
3666
- .frm-addons .plugin-card:nth-child(even),
3667
- .frm-addons .plugin-card:nth-child(odd),
3668
- .frm-addons .plugin-card{
3669
- width: 100%;
3670
- margin-right:0;
3671
  }
3672
  }
3673
 
1
  @import url(font_icons.css);
2
 
3
+ :root,
4
+ .frm_wrap{
5
+ --light-blue: #f1f9ff;
6
+ --blue-border: #bce0fd;
7
+ --dark-grey: #616871;
8
+ --medium-grey:#7f7f7f;
9
+ --light-grey: rgb( 235, 235, 235 );
10
+ --primary-color: #3177c7;
11
+ --primary-border:#4199fd;
12
+ --primary-hover:#2963a4;
13
+ }
14
+
15
  a, .widget .widget-top, .postbox h3, .stuffbox h3{cursor: pointer; text-decoration:none;}
16
  .postbox h3.hndle{cursor:default;}
17
 
23
  color:#f37656 !important;
24
  }
25
  .frm_wrap > .wrap{
26
+ margin: 10px 40px 30px;
27
  }
28
 
29
  .formidable_page_formidable-pro-upgrade #post-body-content,
104
  #frm_top_bar{
105
  display:block;
106
  width:100%;
107
+ padding:25px 40px 25px;
108
+ margin: 0;
109
  box-sizing: border-box;
110
  }
111
 
122
 
123
  .post-type-frm_display .wrap #frm_top_bar h1,
124
  .frm_wrap #frm_top_bar h1{
125
+ font-size: 23px;
126
+ font-weight:700;
127
  padding:0;
128
  margin: 0;
129
  line-height: 1.4;
130
+ color: var(--medium-grey);
131
  }
132
 
133
  .frm_top_left{
188
  font-size: 24px;
189
  font-weight: normal;
190
  letter-spacing: 1px;
191
+ padding: 0 40px 8px;
192
  line-height: 1.4;
193
  color:#72777C;
194
  }
437
  transition: all .2s ease;
438
  }
439
 
440
+ .frm-button-primary,
441
+ .wp-core-ui .button-primary.frm-button-primary,
442
  .frm_orange_button,
443
  .wrap .frm_pricing a.button-primary,
444
  .toplevel_page_formidable #frm_upgrade_modal .button-primary,
 
 
445
  #form_global_settings .button-secondary,
446
  .wp-core-ui.frm-white-body .button-primary,
447
  .wp-core-ui.frm-white-body .button-secondary,
454
  text-shadow:none;
455
  box-shadow:none;
456
  border-radius:4px;
457
+ border-color:var(--light-grey);
458
  font-size: 1.1em;
459
  transition: all .2s ease;
460
  }
461
 
462
+ .frm-button-primary,
463
+ .wp-core-ui .button-primary.frm-button-primary,
464
+ .frm_single_entry_page .button-primary {
465
+ border-color: var(--primary-border) !important;
466
+ background-color: var(--primary-color) !important;
467
+ color: #fff !important;
468
+ }
469
+
470
+ .wp-core-ui .button-primary.frm-button-primary:hover,
471
+ .frm-button-primary:hover{
472
+ background-color: var(--primary-hover) !important;
473
  }
474
 
475
  .frm_orange_button,
685
  .frm_single_entry_page .frm_form_fields + p,
686
  #frm_form_editor_container > .postbox > p,
687
  .frm_form_settings > p{
688
+ margin:6px 40px;
689
  padding:0;
690
  }
691
  label.frm_primary_label,
833
  border: 25px solid transparent;
834
  border-bottom: 25px solid #f37656;
835
  position: absolute;
836
+ top: 4px;
837
+ right: -38px;
838
  padding: 0 10px;
839
  width: 65px;
840
  color: white;
907
  text-align:center;
908
  }
909
 
910
+ h2.frm-h2{
911
+ color: var(--dark-grey);
912
+ border-bottom:1px solid grey;
913
+ border-color:var(--light-grey);
914
+ font-size:19px !important;
915
+ font-weight:500 !important;
916
+ padding: 9px 0 5px;
917
+ margin: 0;
918
+ }
919
+
920
+ h2.frm-h2 + .howto{
921
+ color:var(--medium-grey);
922
+ max-width:850px;
923
+ }
924
+
925
  .frm-addons {
926
  margin-top:30px;
927
+ display:grid;
928
+ grid-template-columns: 1fr 1fr 1fr;
929
+ grid-gap: 30px 2%;
930
  }
931
 
932
+ .frm-addons,
933
+ .frm-addons h2,
934
+ .frm-addons h3{
935
+ color: var(--dark-grey);
936
+ }
937
+
938
+ .frm-addons h2{
939
+ font-size: 17px;
940
+ }
941
+
942
+ .frm-card{
943
+ width: 100%;
944
  border-radius: 10px;
945
+ border: 1px solid grey;
946
+ border-color: var(--light-grey);
947
+ opacity:1;
948
+ transition:opacity 1s;
949
  }
950
 
951
+ .frm-fade{
952
+ opacity:0;
953
+ }
954
+
955
+ /* Add-on tiles */
956
  .frm-addons .plugin-card-top{
957
  height:175px;
958
  }
966
  opacity:0.8;
967
  }
968
 
 
 
 
 
 
 
 
 
969
  .frm-addons .plugin-card-bottom {
970
  padding: 5px 20px 20px;
971
  text-align:center;
1011
  margin-left: -17px;
1012
  }
1013
 
1014
+ /* Form Templates */
1015
+ #frm-templates-page .plugin-card-bottom{
1016
+ text-align:left;
1017
+ }
1018
+
1019
+ .frm-new-template.plugin-card-bottom{
1020
+ overflow:visible;
1021
+ }
1022
+
1023
+ #frm_preview_template_modal .postbox{
1024
+ margin-bottom:0;
1025
+ }
1026
+
1027
+ #frm-templates-page .error,
1028
+ .frm-add-new-form .error{
1029
+ display:none;
1030
+ }
1031
+
1032
+ /* Add New Form */
1033
+ .wrap.frm-add-new-form{
1034
+ margin-top:40px;
1035
+ }
1036
+
1037
+ .frm-add-new-form .frm-addons .button{
1038
+ padding: 5px 0;
1039
+ height: auto;
1040
+ width: 90%;
1041
+ max-width:205px;
1042
+ border-radius: 20px;
1043
+ margin-top:30px;
1044
+ float:none;
1045
+ }
1046
+
1047
+ .frm-add-new-form .frm-addons{
1048
+ grid-gap: 30px 7%;
1049
+ max-width:900px;
1050
+ }
1051
+
1052
+ .frm-add-new-form .frm-addons .plugin-card-top{
1053
+ height:200px;
1054
+ text-align:center;
1055
+ }
1056
+
1057
+ .frm-add-new-form .frm-addons .plugin-card-bottom{
1058
+ padding-bottom:25px;
1059
+ }
1060
+
1061
+ .frm-add-new-form .frm-addons h2{
1062
+ margin-top:1.5em;
1063
+ margin-bottom:.7em;
1064
+ }
1065
+
1066
+ .frm-round-image{
1067
+ background: var( --light-blue );
1068
+ border: 1px solid var( --blue-border );
1069
+ border-radius:50%;
1070
+ height:58px;
1071
+ width:58px;
1072
+ margin:0 auto;
1073
+ padding:25px;
1074
+ text-align: center;
1075
+ }
1076
+
1077
+ .frm-round-image img{
1078
+ width:48px;
1079
+ }
1080
+
1081
  #frm_bulk_options{
1082
  height:240px;
1083
  width:335px;
1223
  }
1224
 
1225
  a.frm-option-icon:before{
1226
+ color: var(--primary-color);
1227
  font-size: 22px;
1228
  width: 22px;
1229
  height: 22px;
1231
 
1232
  a.frm-option-icon:focus::before,
1233
  a.frm-option-icon:hover::before{
1234
+ color:var(--primary-hover);
1235
  }
1236
 
1237
  .frm_top_left .frm-dropdown-toggle{
1238
  color:#999;
1239
  }
1240
 
1241
+ .frm-card ol{
1242
+ margin-left:15px;
1243
+ }
1244
+
1245
  .frm-dropdown-toggle{
1246
  text-decoration:none;
1247
  }
1248
 
1249
+ .frm-card .frm-dropdown-toggle{
1250
+ border:2px solid grey;
1251
+ border-color:var(--light-grey);
1252
+ border-radius:4px;
1253
+ font-size:13px;
1254
+ color:var(--dark-grey);
1255
+ padding:7px 20px;
1256
+ }
1257
+
1258
  .frm_actions_dropdown .frm-dropdown-menu{
1259
  font-size:14px;
1260
  color:#5F6C72;
2716
  margin-bottom: 25px;
2717
  }
2718
 
2719
+ #frm-preview-block{
2720
+ height:400px;
2721
+ overflow:scroll;
2722
+ margin:0;
2723
+ }
2724
+
2725
+ .plugin-card-bottom .frm-trash{
2726
+ color:#a00;
2727
  }
2728
 
2729
  .frm_inline_label{
2892
  .widefat .column-entries, .widefat .column-link{width:10%;text-align:center;}
2893
  .widefat .column-form_key, .widefat .column-created_at{width:10%;}
2894
 
2895
+ .post-type-frm_display .search-box,
2896
  .frm_wrap .search-box{
2897
  float:right;
2898
+ margin-bottom: 15px;
2899
+ }
2900
+
2901
+ .frm-search{
2902
+ width:32%;
2903
+ float:right;
2904
+ position:relative;
2905
+ }
2906
+
2907
+ .frm-search span {
2908
+ position: absolute;
2909
+ padding: 7px 10px;
2910
+ pointer-events: none;
2911
+ left: 0px;
2912
+ color: var(--medium-grey);
2913
+ opacity:.5;
2914
+ }
2915
+
2916
+ .frm-search.search-box input[name="s"],
2917
+ .frm-search #search-submit{
2918
+ border-width:2px;
2919
+ border-color:var(--light-grey);
2920
+ box-shadow:none;
2921
+ margin:0;
2922
+ padding: 7px;
2923
+ height: auto;
2924
+ font-size: 13px;
2925
+ line-height:normal;
2926
+ }
2927
+
2928
+ .frm-search.search-box input[name="s"] {
2929
+ width:70%;
2930
+ border-radius:4px 0 0 4px;
2931
+ border-right-width:0;
2932
+ padding-left:33px;
2933
+ }
2934
+
2935
+ .frm-search.search-box input.frm-auto-search{
2936
+ width:100%;
2937
+ border-right-width:2px;
2938
+ border-radius:4px;
2939
+ }
2940
+
2941
+ .frm-search #search-submit{
2942
+ width:30%;
2943
+ border-radius:0 4px 4px 0;
2944
+ text-align:center;
2945
  }
2946
 
2947
  select[name="m"]{display:none;}
3105
  }
3106
 
3107
  .frm_code_list.frm_grid_container a:hover{
3108
+ background-color:var(--primary-color);
3109
  color:#fbfdff;
3110
  }
3111
 
3201
  }
3202
 
3203
  .wp-dialog {
3204
+ z-index:100;
3205
  padding: 0 !important;
3206
  }
3207
 
3557
  margin: 5px 0;
3558
  }
3559
 
3560
+ .frm-addons{
3561
+ grid-template-columns: 1fr 1fr;
 
 
 
 
 
 
3562
  }
3563
 
3564
+ .frm-add-new-form .frm-addons{
3565
+ grid-template-columns: 1fr 1fr 1fr;
 
 
 
 
3566
  }
3567
  }
3568
  @media only screen and (max-width: 1050px) {
3615
  .frm_no_actions .inner_actions{
3616
  margin-left:80px;
3617
  }
3618
+
3619
+ .frm-add-new-form .frm-addons{
3620
+ grid-gap: 30px 3%;
3621
+ }
3622
  }
3623
  @media only screen and (max-width: 960px){
3624
  .auto-fold #adminmenuwrap{
3825
  display: inline-block;
3826
  }
3827
 
3828
+ .frm-addons, .frm-add-new-form .frm-addons{
3829
+ grid-template-columns: 1fr;
 
 
 
 
 
3830
  }
3831
  }
3832
 
css/frm_blocks.css CHANGED
@@ -62,7 +62,3 @@
62
  .frm-admin-loading {
63
  width: 200px;
64
  }
65
-
66
- .components-panel__body.editor-block-inspector__advanced {
67
- display:none;
68
- }
62
  .frm-admin-loading {
63
  width: 200px;
64
  }
 
 
 
 
deprecated/FrmDeprecated.php CHANGED
@@ -94,6 +94,62 @@ class FrmDeprecated {
94
  return $data;
95
  }
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  /**
98
  * Add a filter to shorten the EDD filename for Formidable plugin, and add-on, updates
99
  *
@@ -358,9 +414,6 @@ class FrmDeprecated {
358
  $values['form_key'] = $filename;
359
  $values['is_template'] = $template;
360
  $values['status'] = 'published';
361
- if ( $default ) {
362
- $values['default_template'] = 1;
363
- }
364
 
365
  include( $templates[ $i ] );
366
 
94
  return $data;
95
  }
96
 
97
+ /**
98
+ * @since 3.04.03
99
+ * @deprecated 3.06
100
+ * @codeCoverageIgnore
101
+ */
102
+ public static function get_pro_updater() {
103
+ _deprecated_function( __FUNCTION__, '3.06', 'FrmFormApi::get_pro_updater' );
104
+ $api = new FrmFormApi();
105
+ return $api->get_pro_updater();
106
+ }
107
+
108
+ /**
109
+ * @since 3.04.03
110
+ * @deprecated 3.06
111
+ * @codeCoverageIgnore
112
+ * @return array
113
+ */
114
+ public static function error_for_license( $license ) {
115
+ _deprecated_function( __FUNCTION__, '3.06', 'FrmFormApi::error_for_license' );
116
+ $api = new FrmFormApi( $license );
117
+ return $api->error_for_license();
118
+ }
119
+
120
+ /**
121
+ * @since 3.04.03
122
+ * @deprecated 3.06
123
+ */
124
+ public static function reset_cached_addons( $license = '' ) {
125
+ _deprecated_function( __FUNCTION__, '3.06', 'FrmFormApi::reset_cached' );
126
+ $api = new FrmFormApi( $this->license );
127
+ $api->reset_cached();
128
+ }
129
+
130
+ /**
131
+ * @since 3.04.03
132
+ * @deprecated 3.06
133
+ * @return string
134
+ */
135
+ public static function get_cache_key( $license ) {
136
+ _deprecated_function( __FUNCTION__, '3.06', 'FrmFormApi::get_cache_key' );
137
+ $api = new FrmFormApi( $this->license );
138
+ return $api->get_cache_key();
139
+ }
140
+
141
+ /**
142
+ * @since 3.04.03
143
+ * @deprecated 3.06
144
+ * @codeCoverageIgnore
145
+ * @return array
146
+ */
147
+ public static function get_addon_info( $license = '' ) {
148
+ _deprecated_function( __FUNCTION__, '3.06', 'FrmFormApi::get_api_info' );
149
+ $api = new FrmFormApi( $license );
150
+ return $api->get_api_info();
151
+ }
152
+
153
  /**
154
  * Add a filter to shorten the EDD filename for Formidable plugin, and add-on, updates
155
  *
414
  $values['form_key'] = $filename;
415
  $values['is_template'] = $template;
416
  $values['status'] = 'published';
 
 
 
417
 
418
  include( $templates[ $i ] );
419
 
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: 3.05
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: 3.06
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
images/new-blank.svg ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="55" height="63" viewBox="0 0 55 63">
2
+ <defs>
3
+ <style>
4
+ .cls-1 {
5
+ fill: #fff;
6
+ }
7
+
8
+ .cls-2, .cls-3, .cls-4 {
9
+ fill: none;
10
+ stroke-linecap: round;
11
+ stroke-width: 2px;
12
+ }
13
+
14
+ .cls-2 {
15
+ stroke: #dfe4e7;
16
+ }
17
+
18
+ .cls-2, .cls-3, .cls-4, .cls-5 {
19
+ opacity: 0.151;
20
+ }
21
+
22
+ .cls-3 {
23
+ stroke: #657d95;
24
+ }
25
+
26
+ .cls-4 {
27
+ stroke: #b2bdca;
28
+ }
29
+
30
+ .cls-5 {
31
+ fill: #657d95;
32
+ }
33
+
34
+ .cls-6, .cls-7 {
35
+ stroke: none;
36
+ }
37
+
38
+ .cls-7 {
39
+ fill: #ddd;
40
+ }
41
+ </style>
42
+ </defs>
43
+ <g id="Group_1113" data-name="Group 1113" transform="translate(13796 22211)">
44
+ <g id="Path_570" data-name="Path 570" class="cls-1" transform="translate(-13796 -22211)">
45
+ <path class="cls-6" d="M 52 62.5 L 3 62.5 C 1.621500015258789 62.5 0.5 61.37850189208984 0.5 60 L 0.5 3 C 0.5 1.621500015258789 1.621500015258789 0.5 3 0.5 L 52 0.5 C 53.37850189208984 0.5 54.5 1.621500015258789 54.5 3 L 54.5 60 C 54.5 61.37850189208984 53.37850189208984 62.5 52 62.5 Z"/>
46
+ <path class="cls-7" d="M 3 1 C 1.897201538085938 1 1 1.897201538085938 1 3 L 1 60 C 1 61.10279846191406 1.897201538085938 62 3 62 L 52 62 C 53.10279846191406 62 54 61.10279846191406 54 60 L 54 3 C 54 1.897201538085938 53.10279846191406 1 52 1 L 3 1 M 3 0 L 52 0 C 53.6568489074707 0 55 1.343151092529297 55 3 L 55 60 C 55 61.6568489074707 53.6568489074707 63 52 63 L 3 63 C 1.343151092529297 63 0 61.6568489074707 0 60 L 0 3 C 0 1.343151092529297 1.343151092529297 0 3 0 Z"/>
47
+ </g>
48
+ <line id="Line_339" data-name="Line 339" class="cls-2" x2="12" transform="translate(-13787.5 -22181.5)"/>
49
+ <line id="Line_341" data-name="Line 341" class="cls-2" x2="12" transform="translate(-13787.5 -22170.5)"/>
50
+ <line id="Line_337" data-name="Line 337" class="cls-2" x2="12" transform="translate(-13787.5 -22193.5)"/>
51
+ <line id="Line_336" data-name="Line 336" class="cls-3" x2="16" transform="translate(-13787.5 -22202.5)"/>
52
+ <line id="Line_338" data-name="Line 338" class="cls-4" x2="36" transform="translate(-13787.5 -22189.5)"/>
53
+ <line id="Line_340" data-name="Line 340" class="cls-4" x2="36" transform="translate(-13787.5 -22177.5)"/>
54
+ <line id="Line_342" data-name="Line 342" class="cls-4" x2="36" transform="translate(-13787.5 -22166.5)"/>
55
+ <rect id="Rectangle_1375" data-name="Rectangle 1375" class="cls-5" width="15" height="4" rx="2" transform="translate(-13789 -22158)"/>
56
+ </g>
57
+ </svg>
images/new-form.svg ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="55" height="63" viewBox="0 0 55 63">
2
+ <defs>
3
+ <style>
4
+ .cls-1 {
5
+ fill: #fff;
6
+ }
7
+
8
+ .cls-2, .cls-3, .cls-4 {
9
+ fill: none;
10
+ stroke-linecap: round;
11
+ stroke-width: 2px;
12
+ }
13
+
14
+ .cls-2 {
15
+ stroke: #dfe4e7;
16
+ }
17
+
18
+ .cls-3 {
19
+ stroke: #657d95;
20
+ }
21
+
22
+ .cls-4 {
23
+ stroke: #b2bdca;
24
+ }
25
+
26
+ .cls-5 {
27
+ fill: #657d95;
28
+ }
29
+
30
+ .cls-6, .cls-7 {
31
+ stroke: none;
32
+ }
33
+
34
+ .cls-7 {
35
+ fill: #ddd;
36
+ }
37
+ </style>
38
+ </defs>
39
+ <g id="Group_1095" data-name="Group 1095" transform="translate(-662 -77)">
40
+ <g id="Path_595" data-name="Path 595" class="cls-1" transform="translate(662 77)">
41
+ <path class="cls-6" d="M 52 62.5 L 3 62.5 C 1.621500015258789 62.5 0.5 61.37850189208984 0.5 60 L 0.5 3 C 0.5 1.621500015258789 1.621500015258789 0.5 3 0.5 L 52 0.5 C 53.37850189208984 0.5 54.5 1.621500015258789 54.5 3 L 54.5 60 C 54.5 61.37850189208984 53.37850189208984 62.5 52 62.5 Z"/>
42
+ <path class="cls-7" d="M 3 1 C 1.897201538085938 1 1 1.897201538085938 1 3 L 1 60 C 1 61.10279846191406 1.897201538085938 62 3 62 L 52 62 C 53.10279846191406 62 54 61.10279846191406 54 60 L 54 3 C 54 1.897201538085938 53.10279846191406 1 52 1 L 3 1 M 3 0 L 52 0 C 53.6568489074707 0 55 1.343151092529297 55 3 L 55 60 C 55 61.6568489074707 53.6568489074707 63 52 63 L 3 63 C 1.343151092529297 63 0 61.6568489074707 0 60 L 0 3 C 0 1.343151092529297 1.343151092529297 0 3 0 Z"/>
43
+ </g>
44
+ <line id="Line_358" data-name="Line 358" class="cls-2" x2="12" transform="translate(670.5 106.5)"/>
45
+ <line id="Line_360" data-name="Line 360" class="cls-2" x2="12" transform="translate(670.5 117.5)"/>
46
+ <line id="Line_355" data-name="Line 355" class="cls-2" x2="12" transform="translate(670.5 94.5)"/>
47
+ <line id="Line_356" data-name="Line 356" class="cls-3" x2="16" transform="translate(670.5 85.5)"/>
48
+ <line id="Line_357" data-name="Line 357" class="cls-4" x2="36" transform="translate(670.5 98.5)"/>
49
+ <line id="Line_359" data-name="Line 359" class="cls-4" x2="36" transform="translate(670.5 110.5)"/>
50
+ <line id="Line_361" data-name="Line 361" class="cls-4" x2="36" transform="translate(670.5 121.5)"/>
51
+ <rect id="Rectangle_1398" data-name="Rectangle 1398" class="cls-5" width="15" height="4" rx="2" transform="translate(669 130)"/>
52
+ </g>
53
+ </svg>
images/new-import.svg ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="55" height="63" viewBox="0 0 55 63">
2
+ <defs>
3
+ <style>
4
+ .cls-1 {
5
+ fill: #fff;
6
+ }
7
+
8
+ .cls-2, .cls-3, .cls-4 {
9
+ fill: none;
10
+ stroke-linecap: round;
11
+ stroke-width: 2px;
12
+ }
13
+
14
+ .cls-2 {
15
+ stroke: #dfe4e7;
16
+ }
17
+
18
+ .cls-2, .cls-3, .cls-4, .cls-6 {
19
+ opacity: 0.151;
20
+ }
21
+
22
+ .cls-3 {
23
+ stroke: #657d95;
24
+ }
25
+
26
+ .cls-4 {
27
+ stroke: #b2bdca;
28
+ }
29
+
30
+ .cls-5 {
31
+ fill: #3177c7;
32
+ }
33
+
34
+ .cls-6 {
35
+ fill: #657d95;
36
+ }
37
+
38
+ .cls-7, .cls-8 {
39
+ stroke: none;
40
+ }
41
+
42
+ .cls-8 {
43
+ fill: #ddd;
44
+ }
45
+ </style>
46
+ </defs>
47
+ <g id="Group_1113" data-name="Group 1113" transform="translate(13112 22372)">
48
+ <g id="Path_633" data-name="Path 633" class="cls-1" transform="translate(-13112 -22372)">
49
+ <path class="cls-7" d="M 52 62.5 L 3 62.5 C 1.621500015258789 62.5 0.5 61.37850189208984 0.5 60 L 0.5 3 C 0.5 1.621500015258789 1.621500015258789 0.5 3 0.5 L 52 0.5 C 53.37850189208984 0.5 54.5 1.621500015258789 54.5 3 L 54.5 60 C 54.5 61.37850189208984 53.37850189208984 62.5 52 62.5 Z"/>
50
+ <path class="cls-8" d="M 3 1 C 1.897201538085938 1 1 1.897201538085938 1 3 L 1 60 C 1 61.10279846191406 1.897201538085938 62 3 62 L 52 62 C 53.10279846191406 62 54 61.10279846191406 54 60 L 54 3 C 54 1.897201538085938 53.10279846191406 1 52 1 L 3 1 M 3 0 L 52 0 C 53.6568489074707 0 55 1.343151092529297 55 3 L 55 60 C 55 61.6568489074707 53.6568489074707 63 52 63 L 3 63 C 1.343151092529297 63 0 61.6568489074707 0 60 L 0 3 C 0 1.343151092529297 1.343151092529297 0 3 0 Z"/>
51
+ </g>
52
+ <g id="Path_634" data-name="Path 634" class="cls-1" transform="translate(-13112 -22372)">
53
+ <path class="cls-7" d="M 52 62.5 L 3 62.5 C 1.621500015258789 62.5 0.5 61.37850189208984 0.5 60 L 0.5 3 C 0.5 1.621500015258789 1.621500015258789 0.5 3 0.5 L 52 0.5 C 53.37850189208984 0.5 54.5 1.621500015258789 54.5 3 L 54.5 60 C 54.5 61.37850189208984 53.37850189208984 62.5 52 62.5 Z"/>
54
+ <path class="cls-8" d="M 3 1 C 1.897201538085938 1 1 1.897201538085938 1 3 L 1 60 C 1 61.10279846191406 1.897201538085938 62 3 62 L 52 62 C 53.10279846191406 62 54 61.10279846191406 54 60 L 54 3 C 54 1.897201538085938 53.10279846191406 1 52 1 L 3 1 M 3 0 L 52 0 C 53.6568489074707 0 55 1.343151092529297 55 3 L 55 60 C 55 61.6568489074707 53.6568489074707 63 52 63 L 3 63 C 1.343151092529297 63 0 61.6568489074707 0 60 L 0 3 C 0 1.343151092529297 1.343151092529297 0 3 0 Z"/>
55
+ </g>
56
+ <line id="Line_360" data-name="Line 360" class="cls-2" x2="12" transform="translate(-13103.5 -22342.5)"/>
57
+ <line id="Line_362" data-name="Line 362" class="cls-2" x2="12" transform="translate(-13103.5 -22331.5)"/>
58
+ <line id="Line_358" data-name="Line 358" class="cls-2" x2="12" transform="translate(-13103.5 -22354.5)"/>
59
+ <line id="Line_357" data-name="Line 357" class="cls-3" x2="16" transform="translate(-13103.5 -22363.5)"/>
60
+ <line id="Line_359" data-name="Line 359" class="cls-4" x2="36" transform="translate(-13103.5 -22350.5)"/>
61
+ <line id="Line_361" data-name="Line 361" class="cls-4" x2="36" transform="translate(-13103.5 -22338.5)"/>
62
+ <line id="Line_363" data-name="Line 363" class="cls-4" x2="36" transform="translate(-13103.5 -22327.5)"/>
63
+ <path id="Path_635" data-name="Path 635" class="cls-5" d="M3.562,0a.542.542,0,0,1-.4-.164A.542.542,0,0,1,3-.562V-1.687a.542.542,0,0,1,.164-.4.542.542,0,0,1,.4-.164H7.5a2.17,2.17,0,0,0,1.594-.656A2.17,2.17,0,0,0,9.75-4.5v-9a2.17,2.17,0,0,0-.656-1.594A2.17,2.17,0,0,0,7.5-15.75H3.562a.542.542,0,0,1-.4-.164.542.542,0,0,1-.164-.4v-1.125a.542.542,0,0,1,.164-.4.542.542,0,0,1,.4-.164H7.5a4.34,4.34,0,0,1,3.187,1.312A4.34,4.34,0,0,1,12-13.5v9a4.34,4.34,0,0,1-1.312,3.187A4.34,4.34,0,0,1,7.5,0ZM-4.172-17.109v.047a.583.583,0,0,1,.422-.187.507.507,0,0,1,.375.141L4.359-9.422A.686.686,0,0,1,4.5-9a.507.507,0,0,1-.141.375L-3.375-.937A.445.445,0,0,1-3.75-.75a.583.583,0,0,1-.422-.187l-.937-.891A.686.686,0,0,1-5.25-2.25a.445.445,0,0,1,.187-.375l5.3-5.156H-11.438a.542.542,0,0,1-.4-.164.542.542,0,0,1-.164-.4V-9.656a.542.542,0,0,1,.164-.4.542.542,0,0,1,.4-.164H.234l-5.3-5.156a.445.445,0,0,1-.187-.375.583.583,0,0,1,.187-.422Z" transform="translate(-13084 -22333)"/>
64
+ <rect id="Rectangle_1401" data-name="Rectangle 1401" class="cls-6" width="15" height="4" rx="2" transform="translate(-13105 -22319)"/>
65
+ </g>
66
+ </svg>
js/formidable_admin.js CHANGED
@@ -1654,20 +1654,6 @@ function frmAdminBuildJS(){
1654
  return false;
1655
  }
1656
 
1657
- function createFromTemplate() {
1658
- var dropdown = document.getElementById('frm_create_template_dropdown');
1659
- jQuery.ajax({
1660
- type:'POST',url:ajaxurl,
1661
- data:{
1662
- action:'frm_create_from_template', this_form:this_form_id,
1663
- id:dropdown.options[dropdown.selectedIndex].value, nonce:frmGlobal.nonce
1664
- },
1665
- success:function(url){
1666
- window.location = url;
1667
- }
1668
- });
1669
- }
1670
-
1671
  function submitBuild(){
1672
  /*jshint validthis:true */
1673
  var $thisEle = jQuery(this);
@@ -1748,36 +1734,12 @@ function frmAdminBuildJS(){
1748
  }, 2000);
1749
  }
1750
 
1751
- function openUpgradeModal() {
1752
- var $info = jQuery('#frm_upgrade_modal');
1753
- if ( $info.length < 1 ) {
1754
  return;
1755
  }
1756
 
1757
- $info.dialog({
1758
- dialogClass: 'wp-dialog',
1759
- modal: true,
1760
- autoOpen: false,
1761
- closeOnEscape: true,
1762
- width: '550px',
1763
- resizable: false,
1764
- draggable: false,
1765
- open: function( event ) {
1766
- jQuery('.ui-dialog-titlebar').addClass('frm_hidden').removeClass('ui-helper-clearfix');
1767
- jQuery('#wpwrap').addClass('frm_overlay');
1768
- jQuery('.wp-dialog').removeClass('ui-widget ui-widget-content ui-corner-all');
1769
- jQuery('#frm_upgrade_modal').removeClass('ui-dialog-content ui-widget-content');
1770
-
1771
- // close dialog by clicking the overlay behind it
1772
- jQuery('.ui-widget-overlay, a.dismiss').bind('click', function() {
1773
- $info.dialog('close');
1774
- });
1775
- },
1776
- close: function() {
1777
- jQuery('#wpwrap').removeClass('frm_overlay');
1778
- }
1779
- });
1780
-
1781
  jQuery('.frm_show_upgrade').click( function( event ) {
1782
  event.preventDefault();
1783
  jQuery('.frm_feature_label').html( jQuery(this).data('upgrade') );
@@ -3160,7 +3122,214 @@ function frmAdminBuildJS(){
3160
  jQuery('.frm-addon-error').delay(4000).fadeOut();
3161
  }
3162
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3163
  /* Helpers */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3164
  function toggle( cname, id ) {
3165
  if(id === '#'){
3166
  var cont = document.getElementById(cname);
@@ -3207,27 +3376,26 @@ function frmAdminBuildJS(){
3207
  if($newFields.length > 0){
3208
  // only load this on the form builder page
3209
  frmAdminBuild.buildInit();
3210
- }else if(jQuery(document.getElementById('frm_notification_settings')).length > 0){
3211
  // only load on form settings page
3212
  frmAdminBuild.settingsInit();
3213
- }else if(document.getElementById('frm_styling_form') !== null){
3214
  // load styling settings js
3215
  frmAdminBuild.styleInit();
3216
- }else if(document.getElementById('frm_custom_css_box') !== null){
3217
  // load styling settings js
3218
  frmAdminBuild.customCSSInit();
3219
- }else if(jQuery(document.getElementById('form_global_settings')).length > 0){
3220
  // global settings page
3221
  frmAdminBuild.globalSettingsInit();
3222
- }else if(jQuery(document.getElementById('frm_export_xml')).length > 0){
3223
  // import/export page
3224
  frmAdminBuild.exportInit();
3225
- }else{
3226
- var $dynCont = jQuery(document.getElementById('frm_dyncontent'));
3227
- if($dynCont.length > 0){
3228
- // only load on views settings page
3229
- frmAdminBuild.viewInit();
3230
- }
3231
  }
3232
 
3233
  var $advInfo = jQuery(document.getElementById('frm_adv_info'));
@@ -3311,7 +3479,6 @@ function frmAdminBuildJS(){
3311
  $form_name.focus();
3312
  }
3313
 
3314
- jQuery(document.getElementById('frm_create_template_button')).click(createFromTemplate);
3315
  jQuery('.frm_submit_ajax').click(submitBuild);
3316
  jQuery('.frm_submit_no_ajax').click(submitNoAjax);
3317
 
@@ -3383,7 +3550,7 @@ function frmAdminBuildJS(){
3383
 
3384
  $newFields.on('change', '.frm_get_field_selection', getFieldSelection);
3385
 
3386
- openUpgradeModal();
3387
  },
3388
 
3389
  settingsInit: function(){
@@ -3499,7 +3666,7 @@ function frmAdminBuildJS(){
3499
  }
3500
  });
3501
 
3502
- openUpgradeModal();
3503
  },
3504
 
3505
  panelInit: function(){
@@ -3572,6 +3739,16 @@ function frmAdminBuildJS(){
3572
 
3573
  },
3574
 
 
 
 
 
 
 
 
 
 
 
3575
  viewInit: function(){
3576
  var $advInfo = jQuery(document.getElementById('frm_adv_info'));
3577
  $advInfo.before('<div id="frm_position_ele"></div>');
@@ -3619,7 +3796,6 @@ function frmAdminBuildJS(){
3619
  document.getElementById('frm_field_pad').addEventListener('change', textSquishCheck);
3620
 
3621
  jQuery('input.hex').wpColorPicker({
3622
- width:200,
3623
  change: function( event, ui ) {
3624
  var hexcolor = jQuery( this ).wpColorPicker( 'color' );
3625
  jQuery( event.target ).val( hexcolor ).change();
1654
  return false;
1655
  }
1656
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1657
  function submitBuild(){
1658
  /*jshint validthis:true */
1659
  var $thisEle = jQuery(this);
1734
  }, 2000);
1735
  }
1736
 
1737
+ function initUpgradeModal() {
1738
+ var $info = initModal( '#frm_upgrade_modal' );
1739
+ if ( $info === false ) {
1740
  return;
1741
  }
1742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1743
  jQuery('.frm_show_upgrade').click( function( event ) {
1744
  event.preventDefault();
1745
  jQuery('.frm_feature_label').html( jQuery(this).data('upgrade') );
3122
  jQuery('.frm-addon-error').delay(4000).fadeOut();
3123
  }
3124
 
3125
+ /* Templates */
3126
+
3127
+ function initTemplateModal() {
3128
+ jQuery( '.frm_wrap' ).on( 'click', '.frm-trash-template.frm_confirming', trashTemplate );
3129
+
3130
+ var $preview = initModal( '#frm_preview_template_modal', '700px' );
3131
+ if ( $preview !== false ) {
3132
+ jQuery('.frm-preview-template').click( function( event ) {
3133
+ event.preventDefault();
3134
+ var link = this.attributes.rel.value,
3135
+ cont = document.getElementById('frm-preview-block');
3136
+
3137
+ if ( link.indexOf( ajaxurl ) > -1 ) {
3138
+ var iframe = document.createElement('iframe');
3139
+ iframe.src = link;
3140
+ iframe.height = '400';
3141
+ iframe.width = '100%';
3142
+ cont.innerHTML = '';
3143
+ cont.appendChild(iframe);
3144
+ } else {
3145
+ frmApiPreview( cont, link );
3146
+ }
3147
+ $preview.dialog('open');
3148
+ } );
3149
+ }
3150
+
3151
+ var $info = initModal( '#frm_template_modal' );
3152
+ if ( $info === false ) {
3153
+ return;
3154
+ }
3155
+
3156
+ jQuery('.frm-install-template').click( function( event ) {
3157
+ event.preventDefault();
3158
+ var oldName = jQuery(this).closest('.frm-card').find('h3').html(),
3159
+ nameLabel = document.getElementById('frm_new_name'),
3160
+ descLabel = document.getElementById('frm_new_desc');
3161
+
3162
+ document.getElementById('frm_template_name').value = oldName;
3163
+ document.getElementById('frm_link').value = this.attributes.rel.value;
3164
+ document.getElementById('frm_action_type').value = 'frm_install_template';
3165
+ nameLabel.innerHTML = nameLabel.dataset.form;
3166
+ descLabel.innerHTML = descLabel.dataset.form;
3167
+ $info.dialog('open');
3168
+ } );
3169
+
3170
+ jQuery('.frm-build-template').click( function( event ) {
3171
+ event.preventDefault();
3172
+ var nameLabel = document.getElementById('frm_new_name'),
3173
+ descLabel = document.getElementById('frm_new_desc');
3174
+
3175
+ nameLabel.innerHTML = nameLabel.dataset.template;
3176
+ descLabel.innerHTML = descLabel.dataset.template;
3177
+ document.getElementById('frm_template_name').value = this.dataset.fullname;
3178
+ document.getElementById('frm_link').value = this.dataset.formid;
3179
+ document.getElementById('frm_action_type').value = 'frm_build_template';
3180
+ $info.dialog('open');
3181
+ } );
3182
+
3183
+ jQuery( document ).on( 'submit', '#frm-new-template-form', installTemplate );
3184
+ }
3185
+
3186
+ function frmApiPreview( cont, link ) {
3187
+ jQuery.ajax({
3188
+ dataType:'json',
3189
+ url:link,
3190
+ success:function(json){
3191
+ var form = json.renderedHtml;
3192
+ form = form.replace(/<script\b[^<]*(js\/jquery\/jquery)[^<]*><\/script>/gi, '' );
3193
+ form = form.replace(/<link\b[^>]*(formidableforms17.css)[^>]*>/gi, '' );
3194
+ form = form.replace('<form ', '<form onsubmit="event.preventDefault();" ' );
3195
+ cont.innerHTML = form;
3196
+ }
3197
+ });
3198
+ }
3199
+
3200
+ function installTemplate( e ) {
3201
+ /*jshint validthis:true */
3202
+ var action = this.elements['type'].value,
3203
+ spinner = document.getElementById('frm-importing-spinner');
3204
+ e.preventDefault();
3205
+ spinner.style.visibility = 'visible';
3206
+ installNewForm( this, action );
3207
+ }
3208
+
3209
+ function installNewForm( form, action ) {
3210
+ var data,
3211
+ formName = form.elements['template_name'].value,
3212
+ formDesc = form.elements['template_desc'].value,
3213
+ link = form.elements['link'].value;
3214
+
3215
+ data = {
3216
+ action: action,
3217
+ xml: link,
3218
+ name: formName,
3219
+ desc: formDesc,
3220
+ nonce: frmGlobal.nonce
3221
+ };
3222
+ postAjax( data, function( response ) {
3223
+ if ( typeof response.redirect !== 'undefined' ) {
3224
+ window.location = response.redirect;
3225
+ } else {
3226
+ jQuery('.spinner').css( 'visibility', 'hidden' );
3227
+ // TODO: show response.message
3228
+ }
3229
+ });
3230
+ }
3231
+
3232
+ function trashTemplate( e ) {
3233
+ /*jshint validthis:true */
3234
+ var id = this.dataset.id,
3235
+ link = this;
3236
+ e.preventDefault();
3237
+
3238
+ data = {
3239
+ action: 'frm_forms_trash',
3240
+ id: id,
3241
+ nonce: frmGlobal.nonce
3242
+ };
3243
+ postAjax( data, function() {
3244
+ var card = link.closest('.frm-card');
3245
+ fadeOut( card, function() {
3246
+ card.parentNode.removeChild(card);
3247
+ } );
3248
+ } );
3249
+ }
3250
+
3251
+ function searchContent() {
3252
+ /*jshint validthis:true */
3253
+ var i,
3254
+ searchText = this.value.toLowerCase(),
3255
+ items = document.getElementsByClassName( this.dataset.tosearch );
3256
+
3257
+ for ( i = 0; i < items.length; i++ ) {
3258
+ if ( items[i].innerHTML.toLowerCase().indexOf(searchText) >= 0 ) {
3259
+ items[i].style.display = 'block';
3260
+ } else {
3261
+ items[i].style.display = 'none';
3262
+ }
3263
+ }
3264
+ }
3265
+
3266
  /* Helpers */
3267
+
3268
+ function postAjax( data, success ) {
3269
+ var xmlHttp = new XMLHttpRequest();
3270
+ var params = typeof data == 'string' ? data : Object.keys(data).map(
3271
+ function(k){
3272
+ return encodeURIComponent(k) + '=' + encodeURIComponent(data[k]);
3273
+ }
3274
+ ).join( '&' );
3275
+
3276
+ xmlHttp.open( 'post', ajaxurl, true );
3277
+ xmlHttp.onreadystatechange = function() {
3278
+ if ( xmlHttp.readyState > 3 && xmlHttp.status == 200 ) {
3279
+ var response = xmlHttp.responseText;
3280
+ if ( response !== '' ) {
3281
+ response = JSON.parse( response );
3282
+ }
3283
+ success( response );
3284
+ }
3285
+ }
3286
+ xmlHttp.setRequestHeader( 'X-Requested-With', 'XMLHttpRequest' );
3287
+ xmlHttp.setRequestHeader( 'Content-type', 'application/x-www-form-urlencoded' );
3288
+ xmlHttp.send( params );
3289
+ return xmlHttp;
3290
+ }
3291
+
3292
+ function fadeOut( element, success ) {
3293
+ element.classList.add('frm-fade');
3294
+ setTimeout( success, 1000 );
3295
+ }
3296
+
3297
+ function initModal( id, width ) {
3298
+ var $info = jQuery( id );
3299
+ if ( $info.length < 1 ) {
3300
+ return false;
3301
+ }
3302
+ if ( typeof width === 'undefined' ) {
3303
+ width = '550px';
3304
+ }
3305
+ $info.dialog({
3306
+ dialogClass: 'wp-dialog',
3307
+ modal: true,
3308
+ autoOpen: false,
3309
+ closeOnEscape: true,
3310
+ width: width,
3311
+ resizable: false,
3312
+ draggable: false,
3313
+ open: function( event ) {
3314
+ jQuery('.ui-dialog-titlebar').addClass('frm_hidden').removeClass('ui-helper-clearfix');
3315
+ jQuery('#wpwrap').addClass('frm_overlay');
3316
+ jQuery('.wp-dialog').removeClass('ui-widget ui-widget-content ui-corner-all');
3317
+ jQuery( id ).removeClass('ui-dialog-content ui-widget-content');
3318
+
3319
+ // close dialog by clicking the overlay behind it
3320
+ jQuery('.ui-widget-overlay, a.dismiss').bind('click', function() {
3321
+ $info.dialog('close');
3322
+ });
3323
+ },
3324
+ close: function() {
3325
+ jQuery('#wpwrap').removeClass('frm_overlay');
3326
+ jQuery('.spinner').css( 'visibility', 'hidden' );
3327
+ }
3328
+ });
3329
+
3330
+ return $info;
3331
+ }
3332
+
3333
  function toggle( cname, id ) {
3334
  if(id === '#'){
3335
  var cont = document.getElementById(cname);
3376
  if($newFields.length > 0){
3377
  // only load this on the form builder page
3378
  frmAdminBuild.buildInit();
3379
+ } else if ( document.getElementById( 'frm_notification_settings' ) !== null ) {
3380
  // only load on form settings page
3381
  frmAdminBuild.settingsInit();
3382
+ } else if ( document.getElementById( 'frm_styling_form' ) !== null ) {
3383
  // load styling settings js
3384
  frmAdminBuild.styleInit();
3385
+ } else if ( document.getElementById( 'frm_custom_css_box' ) !== null ) {
3386
  // load styling settings js
3387
  frmAdminBuild.customCSSInit();
3388
+ } else if ( document.getElementById( 'form_global_settings' ) !== null ) {
3389
  // global settings page
3390
  frmAdminBuild.globalSettingsInit();
3391
+ } else if ( document.getElementById( 'frm_export_xml' ) !== null ) {
3392
  // import/export page
3393
  frmAdminBuild.exportInit();
3394
+ } else if ( document.getElementById( 'frm-templates-page' ) !== null ) {
3395
+ frmAdminBuild.templateInit();
3396
+ } else if ( document.getElementById( 'frm_dyncontent' ) !== null ) {
3397
+ // only load on views settings page
3398
+ frmAdminBuild.viewInit();
 
3399
  }
3400
 
3401
  var $advInfo = jQuery(document.getElementById('frm_adv_info'));
3479
  $form_name.focus();
3480
  }
3481
 
 
3482
  jQuery('.frm_submit_ajax').click(submitBuild);
3483
  jQuery('.frm_submit_no_ajax').click(submitNoAjax);
3484
 
3550
 
3551
  $newFields.on('change', '.frm_get_field_selection', getFieldSelection);
3552
 
3553
+ initUpgradeModal();
3554
  },
3555
 
3556
  settingsInit: function(){
3666
  }
3667
  });
3668
 
3669
+ initUpgradeModal();
3670
  },
3671
 
3672
  panelInit: function(){
3739
 
3740
  },
3741
 
3742
+ templateInit: function() {
3743
+ initTemplateModal();
3744
+
3745
+ var autoSearch = jQuery('.frm-auto-search');
3746
+ autoSearch.keyup( searchContent );
3747
+ if ( autoSearch.val() !== '' ) {
3748
+ autoSearch.keyup();
3749
+ }
3750
+ },
3751
+
3752
  viewInit: function(){
3753
  var $advInfo = jQuery(document.getElementById('frm_adv_info'));
3754
  $advInfo.before('<div id="frm_position_ele"></div>');
3796
  document.getElementById('frm_field_pad').addEventListener('change', textSquishCheck);
3797
 
3798
  jQuery('input.hex').wpColorPicker({
 
3799
  change: function( event, ui ) {
3800
  var hexcolor = jQuery( this ).wpColorPicker( 'color' );
3801
  jQuery( event.target ).val( hexcolor ).change();
js/formidable_blocks.js CHANGED
@@ -1 +1 @@
1
- !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},n.r=function(e){Object.defineProperty(e,"__esModule",{value:!0})},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=10)}([function(e,t,n){e.exports=n(7)()},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=l(n(5)),i=l(n(0));function l(e){return e&&e.__esModule?e:{default:e}}var a=wp.i18n.__,u=wp.element.Component,c=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,u),r(t,[{key:"render",value:function(){var e=this.props,t=e.formId,n=e.setAttributes,r=e.forms;return wp.element.createElement(o.default,{selected:t,itemName:a("form","formidable"),itemNamePlural:a("forms","formidable"),items:r,onChange:function(e){n({formId:e})}})}}]),t}();t.default=c,c.propTypes={formId:i.default.string,setAttributes:i.default.func.isRequired}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.updateAttribute=function(e,t,n){n(function(e,t,n){t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n;return e}({},e,t))},t.setTextAttribute=function(e,t){if(e)return" "+t+'="'+e+'"';return""},t.getSubDir=function(){var e=window.location.pathname,t=e.indexOf("wp-admin"),n="/";t>-1&&(n=e.substr(0,t));return n}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(2);var i=wp.element.Component;var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,i),r(t,[{key:"render",value:function(){return wp.element.createElement("div",null,"[formidable",function(e){var t=e.formId,n=e.title,r=e.description,i=e.minimize,l="";return l+=(0,o.setTextAttribute)(t,"id"),l+=(0,o.setTextAttribute)(n,"title"),l+=(0,o.setTextAttribute)(r,"description"),l+=(0,o.setTextAttribute)(i,"minimize")}(this.props),"]")}}]),t}();t.default=l},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();var o=wp.element.Component,i=wp.components.Dashicon,l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,o),r(t,[{key:"render",value:function(){return"svg"!==formidable_form_selector.icon?wp.element.createElement(i,{icon:formidable_form_selector.icon,size:"120"}):wp.element.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 599.68 601.37",width:"120",height:"120"},wp.element.createElement("defs",null),wp.element.createElement("rect",{className:"cls-1 orange",x:"289.64",y:"383.96",width:"140",height:"76"}),wp.element.createElement("path",{className:"cls-1",d:"M400.21,147H200.12c-17,0-30.48,12.2-30.48,29.31V218h260V147Z"}),wp.element.createElement("path",{className:"cls-1",d:"M397.86,264H169.64V460h75V340H397.86A32.22,32.22,0,0,0,428,318.56a24.29,24.29,0,0,0,1.66-8.69V264Z"}),wp.element.createElement("path",{className:"cls-1",d:"M299.84,601.37A300.26,300.26,0,0,1,0,300.68,299.84,299.84,0,1,1,511.85,513.3,297.44,297.44,0,0,1,299.84,601.37Zm0-563A261.94,261.94,0,0,0,38.26,300.68,261.58,261.58,0,1,0,484.8,115.2,259.47,259.47,0,0,0,299.84,38.37Z"}))}}]),t}();t.default=l},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=function(e){return e&&e.__esModule?e:{default:e}}(n(0));var i=wp.i18n,l=i.__,a=i.sprintf,u=wp.element.Component,c=wp.components.SelectControl,f=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,u),r(t,[{key:"createOptions",value:function(e,t){var n=e.map(function(e){return{label:e.label,value:e.value}});return[{label:a(l("Select a %s","formidable"),t),value:""}].concat(function(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}(n))}},{key:"render",value:function(){var e=this.props,t=e.selected,n=e.items,r=e.onChange,o=e.itemName,i=e.itemNamePlural,u=e.label,f=e.help;return n&&0!==n.length?wp.element.createElement(c,{value:t,options:this.createOptions(n,o),label:u,help:f,onChange:r}):wp.element.createElement("p",{className:"frm-block-select-no-items"},a(l("Currently, there are no %s","formidable"),i))}}]),t}();t.default=f,f.defaultProps={itemName:"item",itemNamePlural:"items"},f.propTypes={selected:o.default.oneOfType([o.default.string,o.default.number]),items:o.default.array,onChange:o.default.func,itemName:o.default.string,itemNamePlural:o.default.string,label:o.default.string,help:o.default.string}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";var r=n(6);function o(){}e.exports=function(){function e(e,t,n,o,i,l){if(l!==r){var a=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw a.name="Invariant Violation",a}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t};return n.checkPropTypes=o,n.PropTypes=n,n}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=u(n(0)),i=u(n(1)),l=u(n(3)),a=n(2);function u(e){return e&&e.__esModule?e:{default:e}}var c=wp.i18n.__,f=wp.element.Component,s=wp.editor.InspectorControls,p=wp.components,m=p.PanelBody,b=p.PanelRow,d=p.ToggleControl,y=p.ExternalLink,w=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,f),r(t,[{key:"render",value:function(){var e=this.props,t=e.setAttributes,n=e.attributes,r=e.forms,o=n.formId,u=n.title,f=n.description,p=n.minimize;return wp.element.createElement(s,null,wp.element.createElement(m,{title:c("Select Form","formidable"),initialOpen:!0},wp.element.createElement(b,null,wp.element.createElement(i.default,{formId:o,setAttributes:t,forms:r})),o&&wp.element.createElement(b,null,wp.element.createElement(y,{href:(0,a.getSubDir)()+"wp-admin/admin.php?page=formidable&frm_action=edit&id="+o},c("Go to form","formidable")))),wp.element.createElement(m,{title:c("Options","formidable"),initialOpen:!1},wp.element.createElement(d,{label:c("Show Form Title","formidable"),checked:u,onChange:function(e){(0,a.updateAttribute)("title",e?"1":"",t)}}),wp.element.createElement(d,{label:c("Show Form Description","formidable"),checked:f,onChange:function(e){(0,a.updateAttribute)("description",e?"1":"",t)}}),wp.element.createElement(d,{label:c("Minimize HTML","formidable"),checked:p,onChange:function(e){(0,a.updateAttribute)("minimize",e?"1":"",t)}})),wp.element.createElement(m,{title:c("Shortcode","formidable"),initialOpen:!1},wp.element.createElement(b,null,wp.element.createElement(l.default,this.props.attributes))))}}]),t}();t.default=w,w.propTypes={attributes:o.default.object,setAttributes:o.default.func}},function(e,t,n){"use strict";var r=a(n(3)),o=a(n(8)),i=a(n(4)),l=a(n(1));function a(e){return e&&e.__esModule?e:{default:e}}var u=wp.element.Fragment,c=wp.i18n.__,f=wp.blocks.registerBlockType,s=wp.components,p=s.ServerSideRender,m=s.Notice;f("formidable/simple-form",{title:formidable_form_selector.name,description:c("Display a Form","formidable"),icon:i.default,category:"widgets",keywords:[c("contact forms","formidable"),"formidable"],edit:function(e){var t=e.setAttributes,n=e.attributes,r=n.formId,a=formidable_form_selector.forms;return 0===a.length?wp.element.createElement(m,{status:"warning",isDismissible:!1},c("This site does not have any forms.","formidable")):r?wp.element.createElement(u,null,wp.element.createElement(o.default,{attributes:n,setAttributes:t,forms:a}),wp.element.createElement(p,{block:"formidable/simple-form",attributes:n})):wp.element.createElement("div",{className:"frm-block-intro-screen"},wp.element.createElement("div",{className:"frm-block-intro-content"},wp.element.createElement(i.default,null),wp.element.createElement("div",{className:"frm-block-title"},formidable_form_selector.name),wp.element.createElement("div",{className:"frm-block-selector-screen"},wp.element.createElement(l.default,{formId:r,setAttributes:t,forms:a}))))},save:function(e){var t=e.attributes;return void 0===t.formId?"":wp.element.createElement(u,null,wp.element.createElement(r.default,t))}})},function(e,t,n){"use strict";n(9)}]);
1
+ !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},n.r=function(e){Object.defineProperty(e,"__esModule",{value:!0})},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=10)}([function(e,t,n){e.exports=n(7)()},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.updateAttribute=function(e,t,n){n(function(e,t,n){t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n;return e}({},e,t))},t.setTextAttribute=function(e,t){if(e)return" "+t+'="'+e+'"';return""},t.getSubDir=function(){var e=window.location.pathname,t=e.indexOf("wp-admin"),n="/";t>-1&&(n=e.substr(0,t));return n};t.cssHideAdvancedSettings="\n .components-panel__body.editor-block-inspector__advanced {\n display:none;\n }\n"},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=l(n(5)),i=l(n(0));function l(e){return e&&e.__esModule?e:{default:e}}var a=wp.i18n.__,u=wp.element.Component,c=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,u),r(t,[{key:"render",value:function(){var e=this.props,t=e.formId,n=e.setAttributes,r=e.forms;return wp.element.createElement(o.default,{selected:t,itemName:a("form","formidable"),itemNamePlural:a("forms","formidable"),items:r,onChange:function(e){n({formId:e})}})}}]),t}();t.default=c,c.propTypes={formId:i.default.string,setAttributes:i.default.func.isRequired}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=n(1);var i=wp.element.Component;var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,i),r(t,[{key:"render",value:function(){return wp.element.createElement("div",null,"[formidable",function(e){var t=e.formId,n=e.title,r=e.description,i=e.minimize,l="";return l+=(0,o.setTextAttribute)(t,"id"),l+=(0,o.setTextAttribute)(n,"title"),l+=(0,o.setTextAttribute)(r,"description"),l+=(0,o.setTextAttribute)(i,"minimize")}(this.props),"]")}}]),t}();t.default=l},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();var o=wp.element.Component,i=wp.components.Dashicon,l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,o),r(t,[{key:"render",value:function(){return"svg"!==formidable_form_selector.icon?wp.element.createElement(i,{icon:formidable_form_selector.icon,size:"120"}):wp.element.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 599.68 601.37",width:"120",height:"120"},wp.element.createElement("defs",null),wp.element.createElement("rect",{className:"cls-1 orange",x:"289.64",y:"383.96",width:"140",height:"76"}),wp.element.createElement("path",{className:"cls-1",d:"M400.21,147H200.12c-17,0-30.48,12.2-30.48,29.31V218h260V147Z"}),wp.element.createElement("path",{className:"cls-1",d:"M397.86,264H169.64V460h75V340H397.86A32.22,32.22,0,0,0,428,318.56a24.29,24.29,0,0,0,1.66-8.69V264Z"}),wp.element.createElement("path",{className:"cls-1",d:"M299.84,601.37A300.26,300.26,0,0,1,0,300.68,299.84,299.84,0,1,1,511.85,513.3,297.44,297.44,0,0,1,299.84,601.37Zm0-563A261.94,261.94,0,0,0,38.26,300.68,261.58,261.58,0,1,0,484.8,115.2,259.47,259.47,0,0,0,299.84,38.37Z"}))}}]),t}();t.default=l},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=function(e){return e&&e.__esModule?e:{default:e}}(n(0));var i=wp.i18n,l=i.__,a=i.sprintf,u=wp.element.Component,c=wp.components.SelectControl,f=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,u),r(t,[{key:"createOptions",value:function(e,t){var n=e.map(function(e){return{label:e.label,value:e.value}});return[{label:a(l("Select a %s","formidable"),t),value:""}].concat(function(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}(n))}},{key:"render",value:function(){var e=this.props,t=e.selected,n=e.items,r=e.onChange,o=e.itemName,i=e.itemNamePlural,u=e.label,f=e.help;return n&&0!==n.length?wp.element.createElement(c,{value:t,options:this.createOptions(n,o),label:u,help:f,onChange:r}):wp.element.createElement("p",{className:"frm-block-select-no-items"},a(l("Currently, there are no %s","formidable"),i))}}]),t}();t.default=f,f.defaultProps={itemName:"item",itemNamePlural:"items"},f.propTypes={selected:o.default.oneOfType([o.default.string,o.default.number]),items:o.default.array,onChange:o.default.func,itemName:o.default.string,itemNamePlural:o.default.string,label:o.default.string,help:o.default.string}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";var r=n(6);function o(){}e.exports=function(){function e(e,t,n,o,i,l){if(l!==r){var a=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw a.name="Invariant Violation",a}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t};return n.checkPropTypes=o,n.PropTypes=n,n}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=u(n(0)),i=u(n(2)),l=u(n(3)),a=n(1);function u(e){return e&&e.__esModule?e:{default:e}}var c=wp.i18n.__,f=wp.element.Component,s=wp.editor.InspectorControls,p=wp.components,m=p.PanelBody,b=p.PanelRow,d=p.ToggleControl,y=p.ExternalLink,w=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,f),r(t,[{key:"render",value:function(){var e=this.props,t=e.setAttributes,n=e.attributes,r=e.forms,o=n.formId,u=n.title,f=n.description,p=n.minimize;return wp.element.createElement(s,null,wp.element.createElement(m,{title:c("Select Form","formidable"),initialOpen:!0},wp.element.createElement(b,null,wp.element.createElement(i.default,{formId:o,setAttributes:t,forms:r})),o&&wp.element.createElement(b,null,wp.element.createElement(y,{href:(0,a.getSubDir)()+"wp-admin/admin.php?page=formidable&frm_action=edit&id="+o},c("Go to form","formidable")))),wp.element.createElement(m,{title:c("Options","formidable"),initialOpen:!1},wp.element.createElement(d,{label:c("Show Form Title","formidable"),checked:u,onChange:function(e){(0,a.updateAttribute)("title",e?"1":"",t)}}),wp.element.createElement(d,{label:c("Show Form Description","formidable"),checked:f,onChange:function(e){(0,a.updateAttribute)("description",e?"1":"",t)}}),wp.element.createElement(d,{label:c("Minimize HTML","formidable"),checked:p,onChange:function(e){(0,a.updateAttribute)("minimize",e?"1":"",t)}})),wp.element.createElement(m,{title:c("Shortcode","formidable"),initialOpen:!1},wp.element.createElement(b,null,wp.element.createElement(l.default,this.props.attributes))))}}]),t}();t.default=w,w.propTypes={attributes:o.default.object,setAttributes:o.default.func}},function(e,t,n){"use strict";var r=u(n(3)),o=u(n(8)),i=u(n(4)),l=u(n(2)),a=n(1);function u(e){return e&&e.__esModule?e:{default:e}}var c=wp.element.Fragment,f=wp.i18n.__,s=wp.blocks.registerBlockType,p=wp.components,m=p.ServerSideRender,b=p.Notice;s("formidable/simple-form",{title:formidable_form_selector.name,description:f("Display a Form","formidable"),icon:i.default,category:"widgets",keywords:[f("contact forms","formidable"),"formidable"],edit:function(e){var t=e.setAttributes,n=e.attributes,r=e.isSelected,u=n.formId,s=formidable_form_selector.forms;return 0===s.length?wp.element.createElement(b,{status:"warning",isDismissible:!1},f("This site does not have any forms.","formidable")):u?wp.element.createElement(c,null,wp.element.createElement(o.default,{attributes:n,setAttributes:t,forms:s}),r&&wp.element.createElement("style",null,a.cssHideAdvancedSettings),wp.element.createElement(m,{block:"formidable/simple-form",attributes:n})):wp.element.createElement("div",{className:"frm-block-intro-screen"},wp.element.createElement("div",{className:"frm-block-intro-content"},wp.element.createElement(i.default,null),wp.element.createElement("div",{className:"frm-block-title"},formidable_form_selector.name),wp.element.createElement("div",{className:"frm-block-selector-screen"},wp.element.createElement(l.default,{formId:u,setAttributes:t,forms:s}))))},save:function(e){var t=e.attributes;return void 0===t.formId?"":wp.element.createElement(c,null,wp.element.createElement(r.default,t))}})},function(e,t,n){"use strict";n(9)}]);
js/jquery/jquery.editinplace.js ADDED
@@ -0,0 +1,653 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+
3
+ A jQuery edit in place plugin
4
+
5
+ Version 2.3.0
6
+
7
+ Authors:
8
+ Dave Hauenstein
9
+ Martin Häcker <spamfaenger [at] gmx [dot] de>
10
+
11
+ Project home:
12
+ http://code.google.com/p/jquery-in-place-editor/
13
+
14
+ Patches with tests welcomed! For guidance see the tests </spec/unit/>. To submit, attach them to the bug tracker.
15
+
16
+ License:
17
+ This source file is subject to the BSD license bundled with this package.
18
+ Available online: {@link http://www.opensource.org/licenses/bsd-license.php}
19
+ If you did not receive a copy of the license, and are unable to obtain it,
20
+ learn to use a search engine.
21
+
22
+ */
23
+
24
+ (function($){
25
+
26
+ $.fn.editInPlace = function(options) {
27
+ jQuery.browser = {};
28
+ jQuery.browser.mozilla = /mozilla/.test(navigator.userAgent.toLowerCase()) && !/webkit/.test(navigator.userAgent.toLowerCase());
29
+ jQuery.browser.webkit = /webkit/.test(navigator.userAgent.toLowerCase());
30
+ jQuery.browser.opera = /opera/.test(navigator.userAgent.toLowerCase());
31
+ jQuery.browser.msie = /msie/.test(navigator.userAgent.toLowerCase());
32
+ jQuery.browser.safari = navigator.userAgent.indexOf("Safari") > -1;
33
+
34
+ var settings = $.extend({}, $.fn.editInPlace.defaults, options);
35
+ if(settings.type == 'textarea') settings.use_html = true;
36
+ assertMandatorySettingsArePresent(settings);
37
+ preloadImage(settings.saving_image);
38
+
39
+ return this.each(function() {
40
+ var dom = $(this);
41
+ // This won't work with live queries as there is no specific element to attach this
42
+ // one way to deal with this could be to store a reference to self and then compare that in click?
43
+ if (dom.data('editInPlace'))
44
+ return; // already an editor here
45
+ dom.data('editInPlace', true);
46
+
47
+ new InlineEditor(settings, dom).init();
48
+ });
49
+ };
50
+
51
+ /// Switch these through the dictionary argument to $(aSelector).editInPlace(overideOptions)
52
+ /// Required Options: Either url or callback, so the editor knows what to do with the edited values.
53
+ $.fn.editInPlace.defaults = {
54
+ url: "", // string: POST URL to send edited content
55
+ bg_over: "inherit", // string: background color of hover of unactivated editor
56
+ bg_out: "inherit", // string: background color on restore from hover
57
+ hover_class: "", // string: class added to root element during hover. Will override bg_over and bg_out
58
+ show_buttons: ((navigator.appName=='Microsoft Internet Explorer') ? true : false), // boolean: will show the buttons: cancel or save; will automatically cancel out the onBlur functionality
59
+ save_button: '<button class="inplace_save">Save</button>', // string: image button tag to use as “Save” button
60
+ cancel_button: '<button class="inplace_cancel">Cancel</button>', // string: image button tag to use as “Cancel” button
61
+ params: "", // string: example: first_name=dave&last_name=hauenstein extra paramters sent via the post request to the server
62
+ field_type: "text", // string: "text", "textarea", or "select"; The type of form field that will appear on instantiation
63
+ default_text: "(Click here to add text)", // string: text to show up if the element that has this functionality is empty
64
+ use_html: true, // boolean, set to true if the editor should use jQuery.fn.html() to extract the value to show from the dom node
65
+ textarea_rows: 10, // integer: set rows attribute of textarea, if field_type is set to textarea. Use CSS if possible though
66
+ textarea_cols: 25, // integer: set cols attribute of textarea, if field_type is set to textarea. Use CSS if possible though
67
+ select_text: "Choose new value", // string: default text to show up in select box
68
+ select_options: "", // string or array: Used if field_type is set to 'select'. Can be comma delimited list of options 'textandValue,text:value', Array of options ['textAndValue', 'text:value'] or array of arrays ['textAndValue', ['text', 'value']]. The last form is especially usefull if your labels or values contain colons)
69
+ text_size: null, // integer: set cols attribute of text input, if field_type is set to text. Use CSS if possible though
70
+
71
+ // Specifying callback_skip_dom_reset will disable all saving_* options
72
+ saving_text: undefined, // string: text to be used when server is saving information. Example "Saving..."
73
+ saving_image: "", // string: uses saving text specify an image location instead of text while server is saving
74
+ saving_animation_color: 'transparent', // hex color string, will be the color the pulsing animation during the save pulses to. Note: Only works if jquery-ui is loaded
75
+
76
+ value_required: false, // boolean: if set to true, the element will not be saved unless a value is entered
77
+ element_id: "element_id", // string: name of parameter holding the id or the editable
78
+ update_value: "update_value", // string: name of parameter holding the updated/edited value
79
+ original_value: 'original_value', // string: name of parameter holding the updated/edited value
80
+ original_html: "original_html", // string: name of parameter holding original_html value of the editable /* DEPRECATED in 2.2.0 */ use original_value instead.
81
+ save_if_nothing_changed: false, // boolean: submit to function or server even if the user did not change anything
82
+ on_blur: "save", // string: "save" or null; what to do on blur; will be overridden if show_buttons is true
83
+ cancel: "", // string: if not empty, a jquery selector for elements that will not cause the editor to open even though they are clicked. E.g. if you have extra buttons inside editable fields
84
+
85
+ // All callbacks will have this set to the DOM node of the editor that triggered the callback
86
+
87
+ callback: null, // function: function to be called when editing is complete; cancels ajax submission to the url param. Prototype: function(idOfEditor, enteredText, orinalHTMLContent, settingsParams, callbacks). The function needs to return the value that should be shown in the dom. Returning undefined means cancel and will restore the dom and trigger an error. callbacks is a dictionary with two functions didStartSaving and didEndSaving() that you can use to tell the inline editor that it should start and stop any saving animations it has configured. /* DEPRECATED in 2.1.0 */ Parameter idOfEditor, use $(this).attr('id') instead
88
+ callback_skip_dom_reset: false, // boolean: set this to true if the callback should handle replacing the editor with the new value to show
89
+ success: null, // function: this function gets called if server responds with a success. Prototype: function(newEditorContentString)
90
+ error: null, // function: this function gets called if server responds with an error. Prototype: function(request)
91
+ error_sink: function(idOfEditor, errorString) { }, // function: gets id of the editor and the error. Make sure the editor has an id, or it will just be undefined. If set to null, no error will be reported. /* DEPRECATED in 2.1.0 */ Parameter idOfEditor, use $(this).attr('id') instead
92
+ preinit: null, // function: this function gets called after a click on an editable element but before the editor opens. If you return false, the inline editor will not open. Prototype: function(currentDomNode). DEPRECATED in 2.2.0 use delegate shouldOpenEditInPlace call instead
93
+ postclose: null, // function: this function gets called after the inline editor has closed and all values are updated. Prototype: function(currentDomNode). DEPRECATED in 2.2.0 use delegate didCloseEditInPlace call instead
94
+ delegate: null // object: if it has methods with the name of the callbacks documented below in delegateExample these will be called. This means that you just need to impelment the callbacks you are interested in.
95
+ };
96
+
97
+ // Lifecycle events that the delegate can implement
98
+ // this will always be fixed to the delegate
99
+ var delegateExample = {
100
+ // called while opening the editor.
101
+ // return false to prevent editor from opening
102
+ shouldOpenEditInPlace: function(aDOMNode, aSettingsDict, triggeringEvent) {},
103
+ // return content to show in inplace editor
104
+ willOpenEditInPlace: function(aDOMNode, aSettingsDict) {},
105
+ didOpenEditInPlace: function(aDOMNode, aSettingsDict) {},
106
+
107
+ // called while closing the editor
108
+ // return false to prevent the editor from closing
109
+ shouldCloseEditInPlace: function(aDOMNode, aSettingsDict, triggeringEvent) {},
110
+ // return value will be shown during saving
111
+ willCloseEditInPlace: function(aDOMNode, aSettingsDict) {},
112
+ didCloseEditInPlace: function(aDOMNode, aSettingsDict) {},
113
+
114
+ missingCommaErrorPreventer:''
115
+ };
116
+
117
+
118
+ function InlineEditor(settings, dom) {
119
+ this.settings = settings;
120
+ this.dom = dom;
121
+ this.originalValue = null;
122
+ this.didInsertDefaultText = false;
123
+ this.shouldDelayReinit = false;
124
+ };
125
+
126
+ $.extend(InlineEditor.prototype, {
127
+
128
+ init: function() {
129
+ this.setDefaultTextIfNeccessary();
130
+ this.connectOpeningEvents();
131
+ },
132
+
133
+ reinit: function() {
134
+ if (this.shouldDelayReinit)
135
+ return;
136
+
137
+ this.triggerCallback(this.settings.postclose, /* DEPRECATED in 2.1.0 */ this.dom);
138
+ this.triggerDelegateCall('didCloseEditInPlace');
139
+
140
+ this.markEditorAsInactive();
141
+ this.connectOpeningEvents();
142
+ },
143
+
144
+ setDefaultTextIfNeccessary: function() {
145
+ if('' !== this.dom.html())
146
+ return;
147
+
148
+ this.dom.html(this.settings.default_text);
149
+ this.didInsertDefaultText = true;
150
+ },
151
+
152
+ connectOpeningEvents: function() {
153
+ var that = this;
154
+ this.dom
155
+ .bind('mouseenter.editInPlace', function(){ that.addHoverEffect(); })
156
+ .bind('mouseleave.editInPlace', function(){ that.removeHoverEffect(); })
157
+ .bind('click.editInPlace', function(anEvent){ that.openEditor(anEvent); });
158
+ },
159
+
160
+ disconnectOpeningEvents: function() {
161
+ // prevent re-opening the editor when it is already open
162
+ this.dom.unbind('.editInPlace');
163
+ },
164
+
165
+ addHoverEffect: function() {
166
+ if (this.settings.hover_class)
167
+ this.dom.addClass(this.settings.hover_class);
168
+ else
169
+ this.dom.css("background-color", this.settings.bg_over);
170
+ },
171
+
172
+ removeHoverEffect: function() {
173
+ if (this.settings.hover_class)
174
+ this.dom.removeClass(this.settings.hover_class);
175
+ else
176
+ this.dom.css("background-color", this.settings.bg_out);
177
+ },
178
+
179
+ openEditor: function(anEvent) {
180
+ if ( ! this.shouldOpenEditor(anEvent))
181
+ return;
182
+
183
+ this.disconnectOpeningEvents();
184
+ this.removeHoverEffect();
185
+ this.removeInsertedDefaultTextIfNeccessary();
186
+ this.saveOriginalValue();
187
+ this.markEditorAsActive();
188
+ this.replaceContentWithEditor();
189
+ this.setInitialValue();
190
+ this.workAroundMissingBlurBug();
191
+ this.connectClosingEventsToEditor();
192
+ this.triggerDelegateCall('didOpenEditInPlace');
193
+ },
194
+
195
+ shouldOpenEditor: function(anEvent) {
196
+ if (this.isClickedObjectCancelled(anEvent.target))
197
+ return false;
198
+
199
+ if (false === this.triggerCallback(this.settings.preinit, /* DEPRECATED in 2.1.0 */ this.dom))
200
+ return false;
201
+
202
+ if (false === this.triggerDelegateCall('shouldOpenEditInPlace', true, anEvent))
203
+ return false;
204
+
205
+ return true;
206
+ },
207
+
208
+ removeInsertedDefaultTextIfNeccessary: function() {
209
+ if ( ! this.didInsertDefaultText
210
+ || this.dom.html() !== this.settings.default_text)
211
+ return;
212
+
213
+ this.dom.html('');
214
+ this.didInsertDefaultText = false;
215
+ },
216
+
217
+ isClickedObjectCancelled: function(eventTarget) {
218
+ if ( ! this.settings.cancel)
219
+ return false;
220
+
221
+ var eventTargetAndParents = $(eventTarget).parents().andSelf();
222
+ var elementsMatchingCancelSelector = eventTargetAndParents.filter(this.settings.cancel);
223
+ return 0 !== elementsMatchingCancelSelector.length;
224
+ },
225
+
226
+ saveOriginalValue: function() {
227
+ if (this.settings.use_html)
228
+ this.originalValue = this.dom.html();
229
+ else
230
+ this.originalValue = trim(this.dom.text());
231
+ },
232
+
233
+ restoreOriginalValue: function() {
234
+ this.setClosedEditorContent(this.originalValue);
235
+ },
236
+
237
+ setClosedEditorContent: function(aValue) {
238
+ if (this.settings.use_html)
239
+ this.dom.html(aValue);
240
+ else
241
+ this.dom.text(aValue);
242
+ },
243
+
244
+ workAroundMissingBlurBug: function() {
245
+ // Strangely, all browser will forget to send a blur event to an input element
246
+ // when another one is created and selected programmatically. (at least under some circumstances).
247
+ // This means that if another inline editor is opened, existing inline editors will _not_ close
248
+ // if they are configured to submit when blurred.
249
+
250
+ // Using parents() instead document as base to workaround the fact that in the unittests
251
+ // the editor is not a child of window.document but of a document fragment
252
+ var ourInput = this.dom.find(':input');
253
+ this.dom.parents(':last').find('.editInPlace-active :input').not(ourInput).blur();
254
+ },
255
+
256
+ replaceContentWithEditor: function() {
257
+ var buttons_html = (this.settings.show_buttons) ? this.settings.save_button + ' ' + this.settings.cancel_button : '';
258
+ var editorElement = this.createEditorElement(); // needs to happen before anything is replaced
259
+ /* insert the new in place form after the element they click, then empty out the original element */
260
+ this.dom.html('').append('<form class="inplace_form" style="display: inline; margin: 0; padding: 0;"></form>')
261
+ .find('form')
262
+ .append(editorElement)
263
+ .append(buttons_html);
264
+ },
265
+
266
+ createEditorElement: function() {
267
+ if (-1 === $.inArray(this.settings.field_type, ['text', 'textarea', 'select']))
268
+ throw "Unknown field_type <fnord>, supported are 'text', 'textarea' and 'select'";
269
+
270
+ var editor = null;
271
+ if ("select" === this.settings.field_type)
272
+ editor = this.createSelectEditor();
273
+ else if ("text" === this.settings.field_type)
274
+ editor = $('<input type="text" ' + this.inputNameAndClass()
275
+ + ' size="' + this.settings.text_size + '" />');
276
+ else if ("textarea" === this.settings.field_type)
277
+ editor = $('<textarea ' + this.inputNameAndClass()
278
+ + ' rows="' + this.settings.textarea_rows + '" '
279
+ + ' cols="' + this.settings.textarea_cols + '" />');
280
+
281
+ return editor;
282
+ },
283
+
284
+ setInitialValue: function() {
285
+ var initialValue = this.triggerDelegateCall('willOpenEditInPlace', this.originalValue);
286
+ var editor = this.dom.find(':input');
287
+ editor.val(initialValue);
288
+
289
+ // Workaround for select fields which don't contain the original value.
290
+ // Somehow the browsers don't like to select the instructional choice (disabled) in that case
291
+ if (editor.val() !== initialValue)
292
+ editor.val(''); // selects instructional choice
293
+ },
294
+
295
+ inputNameAndClass: function() {
296
+ return ' name="inplace_value" class="inplace_field" ';
297
+ },
298
+
299
+ createSelectEditor: function() {
300
+ var editor = $('<select' + this.inputNameAndClass() + '>'
301
+ + '<option disabled="true" value="">' + this.settings.select_text + '</option>'
302
+ + '</select>');
303
+
304
+ var optionsArray = this.settings.select_options;
305
+ if ( ! $.isArray(optionsArray))
306
+ optionsArray = optionsArray.split(',');
307
+
308
+ for (var i=0; i<optionsArray.length; i++) {
309
+ var currentTextAndValue = optionsArray[i];
310
+ if ( ! $.isArray(currentTextAndValue))
311
+ currentTextAndValue = currentTextAndValue.split(':');
312
+
313
+ var value = trim(currentTextAndValue[1] || currentTextAndValue[0]);
314
+ var text = trim(currentTextAndValue[0]);
315
+
316
+ var option = $('<option>').val(value).text(text);
317
+ editor.append(option);
318
+ }
319
+
320
+ return editor;
321
+ },
322
+
323
+ connectClosingEventsToEditor: function() {
324
+ var that = this;
325
+ function cancelEditorAction(anEvent) {
326
+ that.handleCancelEditor(anEvent);
327
+ return false; // stop event bubbling
328
+ }
329
+ function saveEditorAction(anEvent) {
330
+ that.handleSaveEditor(anEvent);
331
+ return false; // stop event bubbling
332
+ }
333
+
334
+ var form = this.dom.find("form");
335
+
336
+ form.find(".inplace_field").focus().select();
337
+ form.find(".inplace_cancel").click(cancelEditorAction);
338
+ form.find(".inplace_save").click(saveEditorAction);
339
+
340
+ if ( ! this.settings.show_buttons) {
341
+ // TODO: Firefox has a bug where blur is not reliably called when focus is lost
342
+ // (for example by another editor appearing)
343
+ if ("save" === this.settings.on_blur)
344
+ form.find(".inplace_field").blur(saveEditorAction);
345
+ else
346
+ form.find(".inplace_field").blur(cancelEditorAction);
347
+
348
+ // workaround for msie & firefox bug where it won't submit on enter if no button is shown
349
+ if ($.browser.mozilla || $.browser.msie)
350
+ this.bindSubmitOnEnterInInput();
351
+ }
352
+
353
+ form.keyup(function(anEvent) {
354
+ // allow canceling with escape
355
+ var escape = 27;
356
+ if (escape === anEvent.which)
357
+ return cancelEditorAction();
358
+ });
359
+
360
+ // workaround for webkit nightlies where they won't submit at all on enter
361
+ // REFACT: find a way to just target the nightlies
362
+ if ($.browser.safari)
363
+ this.bindSubmitOnEnterInInput();
364
+
365
+
366
+ form.submit(saveEditorAction);
367
+ },
368
+
369
+ bindSubmitOnEnterInInput: function() {
370
+ if ('textarea' === this.settings.field_type)
371
+ return; // can't enter newlines otherwise
372
+
373
+ var that = this;
374
+ this.dom.find(':input').keyup(function(event) {
375
+ var enter = 13;
376
+ if (enter === event.which)
377
+ return that.dom.find('form').submit();
378
+ });
379
+
380
+ },
381
+
382
+ handleCancelEditor: function(anEvent) {
383
+ // REFACT: remove duplication between save and cancel
384
+ if (false === this.triggerDelegateCall('shouldCloseEditInPlace', true, anEvent))
385
+ return;
386
+
387
+ var enteredText = this.dom.find(':input').val();
388
+ enteredText = this.triggerDelegateCall('willCloseEditInPlace', enteredText);
389
+
390
+ this.restoreOriginalValue();
391
+ if (hasContent(enteredText)
392
+ && ! this.isDisabledDefaultSelectChoice())
393
+ this.setClosedEditorContent(enteredText);
394
+ this.reinit();
395
+ },
396
+
397
+ handleSaveEditor: function(anEvent) {
398
+ if (false === this.triggerDelegateCall('shouldCloseEditInPlace', true, anEvent))
399
+ return;
400
+
401
+ var enteredText = this.dom.find(':input').val();
402
+ enteredText = this.triggerDelegateCall('willCloseEditInPlace', enteredText);
403
+
404
+ if (this.isDisabledDefaultSelectChoice()
405
+ || this.isUnchangedInput(enteredText)) {
406
+ this.handleCancelEditor(anEvent);
407
+ return;
408
+ }
409
+
410
+ if (this.didForgetRequiredText(enteredText)) {
411
+ this.handleCancelEditor(anEvent);
412
+ this.reportError("Error: You must enter a value to save this field");
413
+ return;
414
+ }
415
+
416
+ this.showSaving(enteredText);
417
+
418
+ if (this.settings.callback)
419
+ this.handleSubmitToCallback(enteredText);
420
+ else
421
+ this.handleSubmitToServer(enteredText);
422
+ },
423
+
424
+ didForgetRequiredText: function(enteredText) {
425
+ return this.settings.value_required
426
+ && ("" === enteredText
427
+ || undefined === enteredText
428
+ || null === enteredText);
429
+ },
430
+
431
+ isDisabledDefaultSelectChoice: function() {
432
+ return this.dom.find('option').eq(0).is(':selected:disabled');
433
+ },
434
+
435
+ isUnchangedInput: function(enteredText) {
436
+ return ! this.settings.save_if_nothing_changed
437
+ && this.originalValue === enteredText;
438
+ },
439
+
440
+ showSaving: function(enteredText) {
441
+ if (this.settings.callback && this.settings.callback_skip_dom_reset)
442
+ return;
443
+
444
+ var savingMessage = enteredText;
445
+ if (hasContent(this.settings.saving_text))
446
+ savingMessage = this.settings.saving_text;
447
+ if(hasContent(this.settings.saving_image))
448
+ // REFACT: alt should be the configured saving message
449
+ savingMessage = $('<img />').attr('src', this.settings.saving_image).attr('alt', savingMessage);
450
+ this.dom.html(savingMessage);
451
+ },
452
+
453
+ handleSubmitToCallback: function(enteredText) {
454
+ // REFACT: consider to encode enteredText and originalHTML before giving it to the callback
455
+ this.enableOrDisableAnimationCallbacks(true, false);
456
+ var newHTML = this.triggerCallback(this.settings.callback, /* DEPRECATED in 2.1.0 */ this.id(), enteredText, this.originalValue,
457
+ this.settings.params, this.savingAnimationCallbacks());
458
+
459
+ if (this.settings.callback_skip_dom_reset){
460
+ // do nothing
461
+ }else if (undefined === newHTML) {
462
+ // failure; put original back
463
+ this.reportError("Error: Failed to save value: " + enteredText);
464
+ this.restoreOriginalValue();
465
+ }
466
+ else
467
+ // REFACT: use setClosedEditorContent
468
+ this.dom.html(newHTML);
469
+
470
+ if (this.didCallNoCallbacks()) {
471
+ this.enableOrDisableAnimationCallbacks(false, false);
472
+ this.reinit();
473
+ }
474
+ },
475
+
476
+ handleSubmitToServer: function(enteredText) {
477
+ var data = this.settings.update_value + '=' + encodeURIComponent(enteredText)
478
+ + '&' + this.settings.element_id + '=' + this.dom.attr("id")
479
+ + ((this.settings.params) ? '&' + this.settings.params : '')
480
+ + '&' + this.settings.original_html + '=' + encodeURIComponent(this.originalValue) /* DEPRECATED in 2.2.0 */
481
+ + '&' + this.settings.original_value + '=' + encodeURIComponent(this.originalValue);
482
+
483
+ this.enableOrDisableAnimationCallbacks(true, false);
484
+ this.didStartSaving();
485
+ var that = this;
486
+ $.ajax({
487
+ url: that.settings.url,
488
+ type: "POST",
489
+ data: data,
490
+ dataType: "html",
491
+ complete: function(request){
492
+ that.didEndSaving();
493
+ },
494
+ success: function(html){
495
+ var new_text = html || that.settings.default_text;
496
+
497
+ /* put the newly updated info into the original element */
498
+ // FIXME: should be affected by the preferences switch
499
+ that.dom.html(new_text);
500
+ // REFACT: remove dom parameter, already in this, not documented, should be easy to remove
501
+ // REFACT: callback should be able to override what gets put into the DOM
502
+ that.triggerCallback(that.settings.success, html);
503
+ },
504
+ error: function(request) {
505
+ that.dom.html(that.originalHTML); // REFACT: what about a restorePreEditingContent()
506
+ if (that.settings.error)
507
+ // REFACT: remove dom parameter, already in this, not documented, can remove without deprecation
508
+ // REFACT: callback should be able to override what gets entered into the DOM
509
+ that.triggerCallback(that.settings.error, request);
510
+ else
511
+ that.reportError("Failed to save value: " + request.responseText || 'Unspecified Error');
512
+ }
513
+ });
514
+ },
515
+
516
+ // Utilities .........................................................
517
+
518
+ triggerCallback: function(aCallback /*, arguments */) {
519
+ if ( ! aCallback)
520
+ return; // callback wasn't specified after all
521
+
522
+ var callbackArguments = Array.prototype.slice.call(arguments, 1);
523
+ return aCallback.apply(this.dom[0], callbackArguments);
524
+ },
525
+
526
+ /// defaultReturnValue is only used if the delegate returns undefined
527
+ triggerDelegateCall: function(aDelegateMethodName, defaultReturnValue, optionalEvent) {
528
+ // REFACT: consider to trigger equivalent callbacks automatically via a mapping table?
529
+ if ( ! this.settings.delegate
530
+ || ! $.isFunction(this.settings.delegate[aDelegateMethodName]))
531
+ return defaultReturnValue;
532
+
533
+ var delegateReturnValue = this.settings.delegate[aDelegateMethodName](this.dom, this.settings, optionalEvent);
534
+ return (undefined === delegateReturnValue)
535
+ ? defaultReturnValue
536
+ : delegateReturnValue;
537
+ },
538
+
539
+ reportError: function(anErrorString) {
540
+ this.triggerCallback(this.settings.error_sink, /* DEPRECATED in 2.1.0 */ this.id(), anErrorString);
541
+ },
542
+
543
+ // REFACT: this method should go, callbacks should get the dom node itself as an argument
544
+ id: function() {
545
+ return this.dom.attr('id');
546
+ },
547
+
548
+ markEditorAsActive: function() {
549
+ this.dom.addClass('editInPlace-active');
550
+ },
551
+
552
+ markEditorAsInactive: function() {
553
+ this.dom.removeClass('editInPlace-active');
554
+ },
555
+
556
+ // REFACT: consider rename, doesn't deal with animation directly
557
+ savingAnimationCallbacks: function() {
558
+ var that = this;
559
+ return {
560
+ didStartSaving: function() { that.didStartSaving(); },
561
+ didEndSaving: function() { that.didEndSaving(); }
562
+ };
563
+ },
564
+
565
+ enableOrDisableAnimationCallbacks: function(shouldEnableStart, shouldEnableEnd) {
566
+ this.didStartSaving.enabled = shouldEnableStart;
567
+ this.didEndSaving.enabled = shouldEnableEnd;
568
+ },
569
+
570
+ didCallNoCallbacks: function() {
571
+ return this.didStartSaving.enabled && ! this.didEndSaving.enabled;
572
+ },
573
+
574
+ assertCanCall: function(methodName) {
575
+ if ( ! this[methodName].enabled)
576
+ throw new Error('Cannot call ' + methodName + ' now. See documentation for details.');
577
+ },
578
+
579
+ didStartSaving: function() {
580
+ this.assertCanCall('didStartSaving');
581
+ this.shouldDelayReinit = true;
582
+ this.enableOrDisableAnimationCallbacks(false, true);
583
+
584
+ this.startSavingAnimation();
585
+ },
586
+
587
+ didEndSaving: function() {
588
+ this.assertCanCall('didEndSaving');
589
+ this.shouldDelayReinit = false;
590
+ this.enableOrDisableAnimationCallbacks(false, false);
591
+ this.reinit();
592
+
593
+ this.stopSavingAnimation();
594
+ },
595
+
596
+ startSavingAnimation: function() {
597
+ var that = this;
598
+ this.dom
599
+ .animate({ backgroundColor: this.settings.saving_animation_color }, 400)
600
+ .animate({ backgroundColor: 'transparent'}, 400, 'swing', function(){
601
+ // In the tests animations are turned off - i.e they happen instantaneously.
602
+ // Hence we need to prevent this from becomming an unbounded recursion.
603
+ setTimeout(function(){ that.startSavingAnimation(); }, 10);
604
+ });
605
+ },
606
+
607
+ stopSavingAnimation: function() {
608
+ this.dom
609
+ .stop(true)
610
+ .css({backgroundColor: ''});
611
+ },
612
+
613
+ missingCommaErrorPreventer:''
614
+ });
615
+
616
+
617
+
618
+ // Private helpers .......................................................
619
+
620
+ function assertMandatorySettingsArePresent(options) {
621
+ // one of these needs to be non falsy
622
+ if (options.url || options.callback)
623
+ return;
624
+
625
+ throw new Error("Need to set either url: or callback: option for the inline editor to work.");
626
+ }
627
+
628
+ /* preload the loading icon if it is configured */
629
+ function preloadImage(anImageURL) {
630
+ if ('' === anImageURL)
631
+ return;
632
+
633
+ var loading_image = new Image();
634
+ loading_image.src = anImageURL;
635
+ }
636
+
637
+ function trim(aString) {
638
+ return aString
639
+ .replace(/^\s+/, '')
640
+ .replace(/\s+$/, '');
641
+ }
642
+
643
+ function hasContent(something) {
644
+ if (undefined === something || null === something)
645
+ return false;
646
+
647
+ if (0 === something.length)
648
+ return false;
649
+
650
+ return true;
651
+ }
652
+
653
+ })(jQuery);
languages/formidable-js-strings.php CHANGED
@@ -7,13 +7,13 @@ $generated_i18n_strings = array(
7
  // Reference: js/src/common/components/itemselect.js:47
8
  __( 'Currently, there are no %s', 'formidable' ),
9
 
10
- // Reference: js/src/form/block.js:18
11
  __( 'Display a Form', 'formidable' ),
12
 
13
- // Reference: js/src/form/block.js:22
14
  __( 'contact forms', 'formidable' ),
15
 
16
- // Reference: js/src/form/block.js:34
17
  __( 'This site does not have any forms.', 'formidable' ),
18
 
19
  // Reference: js/src/form/formselect.js:23
7
  // Reference: js/src/common/components/itemselect.js:47
8
  __( 'Currently, there are no %s', 'formidable' ),
9
 
10
+ // Reference: js/src/form/block.js:19
11
  __( 'Display a Form', 'formidable' ),
12
 
13
+ // Reference: js/src/form/block.js:23
14
  __( 'contact forms', 'formidable' ),
15
 
16
+ // Reference: js/src/form/block.js:35
17
  __( 'This site does not have any forms.', 'formidable' ),
18
 
19
  // Reference: js/src/form/formselect.js:23
languages/formidable-js.pot ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Content-Type: text/plain; charset=utf-8\n"
4
+ "X-Generator: babel-plugin-makepot\n"
5
+
6
+ #: js/src/common/components/itemselect.js:26
7
+ msgid "Select a %s"
8
+ msgstr ""
9
+
10
+ #: js/src/common/components/itemselect.js:47
11
+ msgid "Currently, there are no %s"
12
+ msgstr ""
13
+
14
+ #: js/src/form/block.js:19
15
+ msgid "Display a Form"
16
+ msgstr ""
17
+
18
+ #: js/src/form/block.js:23
19
+ msgid "contact forms"
20
+ msgstr ""
21
+
22
+ #: js/src/form/block.js:35
23
+ msgid "This site does not have any forms."
24
+ msgstr ""
25
+
26
+ #: js/src/form/formselect.js:23
27
+ msgid "form"
28
+ msgstr ""
29
+
30
+ #: js/src/form/formselect.js:24
31
+ msgid "forms"
32
+ msgstr ""
33
+
34
+ #: js/src/form/inspector.js:43
35
+ msgid "Select Form"
36
+ msgstr ""
37
+
38
+ #: js/src/form/inspector.js:57
39
+ msgid "Go to form"
40
+ msgstr ""
41
+
42
+ #: js/src/form/inspector.js:62
43
+ msgid "Options"
44
+ msgstr ""
45
+
46
+ #: js/src/form/inspector.js:66
47
+ msgid "Show Form Title"
48
+ msgstr ""
49
+
50
+ #: js/src/form/inspector.js:73
51
+ msgid "Show Form Description"
52
+ msgstr ""
53
+
54
+ #: js/src/form/inspector.js:80
55
+ msgid "Minimize HTML"
56
+ msgstr ""
57
+
58
+ #: js/src/form/inspector.js:88
59
+ msgid "Shortcode"
60
+ msgstr ""
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 3.05\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-01-04T21:52:21+01: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"
@@ -24,17 +24,17 @@ msgstr ""
24
  msgid "Currently, there are no %s"
25
  msgstr ""
26
 
27
- #: js/src/form/block.js:18
28
  #: languages/formidable-js-strings.php:11
29
  msgid "Display a Form"
30
  msgstr ""
31
 
32
- #: js/src/form/block.js:22
33
  #: languages/formidable-js-strings.php:14
34
  msgid "contact forms"
35
  msgstr ""
36
 
37
- #: js/src/form/block.js:34
38
  #: languages/formidable-js-strings.php:17
39
  msgid "This site does not have any forms."
40
  msgstr ""
@@ -112,25 +112,25 @@ msgstr ""
112
  msgid "Upgrade to Pro"
113
  msgstr ""
114
 
115
- #: classes/controllers/FrmAddonsController.php:35
116
  msgid "There are no plugins on your site that require a license"
117
  msgstr ""
118
 
119
- #: classes/controllers/FrmAddonsController.php:518
120
  msgid "Installed"
121
  msgstr ""
122
 
123
- #: classes/controllers/FrmAddonsController.php:523
124
- #: classes/helpers/FrmAppHelper.php:1732
125
  #: classes/views/styles/_field-colors.php:10
126
  msgid "Active"
127
  msgstr ""
128
 
129
- #: classes/controllers/FrmAddonsController.php:528
130
  msgid "Not Installed"
131
  msgstr ""
132
 
133
- #: classes/controllers/FrmAddonsController.php:612
134
  msgid "Sorry, you're site requires FTP authentication. Please install plugins manaully."
135
  msgstr ""
136
 
@@ -139,7 +139,7 @@ msgid "Build"
139
  msgstr ""
140
 
141
  #: classes/controllers/FrmAppController.php:104
142
- #: classes/helpers/FrmFormsListHelper.php:336
143
  #: classes/views/frm-forms/settings.php:10
144
  msgid "Settings"
145
  msgstr ""
@@ -147,8 +147,8 @@ msgstr ""
147
  #: classes/controllers/FrmAppController.php:111
148
  #: classes/controllers/FrmEntriesController.php:8
149
  #: classes/controllers/FrmEntriesController.php:126
150
- #: classes/controllers/FrmFormsController.php:643
151
- #: classes/controllers/FrmXMLController.php:57
152
  #: classes/views/frm-entries/list.php:5
153
  msgid "Entries"
154
  msgstr ""
@@ -190,14 +190,14 @@ msgid "Support"
190
  msgstr ""
191
 
192
  #: classes/controllers/FrmEntriesController.php:105
193
- #: classes/controllers/FrmFormsController.php:881
194
  #: classes/views/frm-entries/form.php:43
195
  #: classes/views/frm-entries/sidebar-shared.php:38
196
  msgid "Entry Key"
197
  msgstr ""
198
 
199
  #: classes/controllers/FrmEntriesController.php:110
200
- #: classes/controllers/FrmFormsController.php:543
201
  #: classes/widgets/FrmShowForm.php:53
202
  msgid "Form"
203
  msgstr ""
@@ -263,250 +263,263 @@ msgid "You do not have permission to do that"
263
  msgstr ""
264
 
265
  #: classes/controllers/FrmFormsController.php:6
266
- #: classes/controllers/FrmFormsController.php:653
267
- #: classes/controllers/FrmXMLController.php:56
268
  #: classes/views/frm-forms/list.php:5
269
  msgid "Forms"
270
  msgstr ""
271
 
272
- #: classes/controllers/FrmFormsController.php:173
273
  msgid "Settings Successfully Updated"
274
  msgstr ""
275
 
276
- #: classes/controllers/FrmFormsController.php:199
277
- #: classes/controllers/FrmFormsController.php:724
278
  msgid "Form was Successfully Updated"
279
  msgstr ""
280
 
281
- #: classes/controllers/FrmFormsController.php:233
282
- #: deprecated/FrmDeprecated.php:286
283
  msgid "Form template was Successfully Created"
284
  msgstr ""
285
 
286
- #: classes/controllers/FrmFormsController.php:233
287
  msgid "Form was Successfully Copied"
288
  msgstr ""
289
 
290
- #: classes/controllers/FrmFormsController.php:237
291
  msgid "There was a problem creating the new template."
292
  msgstr ""
293
 
294
- #: classes/controllers/FrmFormsController.php:344
295
  msgid "Form Preview"
296
  msgstr ""
297
 
298
- #: classes/controllers/FrmFormsController.php:387
299
- #: classes/controllers/FrmFormsController.php:435
300
  msgid "%1$s form restored from the Trash."
301
  msgid_plural "%1$s forms restored from the Trash."
302
  msgstr[0] ""
303
 
304
- #: classes/controllers/FrmFormsController.php:436
305
- #: classes/controllers/FrmFormsController.php:460
306
  msgid "%1$s form moved to the Trash. %2$sUndo%3$s"
307
  msgid_plural "%1$s forms moved to the Trash. %2$sUndo%3$s"
308
  msgstr[0] ""
309
 
310
- #: classes/controllers/FrmFormsController.php:482
311
- #: classes/controllers/FrmFormsController.php:498
312
- #: classes/controllers/FrmFormsController.php:512
313
  msgid "%1$s form permanently deleted."
314
  msgid_plural "%1$s forms permanently deleted."
315
  msgstr[0] ""
316
 
317
- #: classes/controllers/FrmFormsController.php:527
 
 
 
 
318
  msgid "Add forms and content"
319
  msgstr ""
320
 
321
- #: classes/controllers/FrmFormsController.php:544
322
  #: classes/views/frm-forms/insert_form_popup.php:24
323
  msgid "Insert a Form"
324
  msgstr ""
325
 
326
- #: classes/controllers/FrmFormsController.php:574
327
  msgid "Display form title"
328
  msgstr ""
329
 
330
- #: classes/controllers/FrmFormsController.php:578
331
  msgid "Display form description"
332
  msgstr ""
333
 
334
- #: classes/controllers/FrmFormsController.php:582
335
  msgid "Minimize form HTML"
336
  msgstr ""
337
 
338
- #: classes/controllers/FrmFormsController.php:638
 
339
  msgid "Template Name"
340
  msgstr ""
341
 
342
- #: classes/controllers/FrmFormsController.php:639
343
  msgid "Type"
344
  msgstr ""
345
 
346
- #: classes/controllers/FrmFormsController.php:640
347
- #: classes/controllers/FrmFormsController.php:644
348
  #: classes/helpers/FrmCSVExportHelper.php:151
349
  msgid "Key"
350
  msgstr ""
351
 
352
- #: classes/controllers/FrmFormsController.php:642
353
  #: classes/controllers/FrmStylesController.php:376
354
  #: classes/views/styles/_sample_form.php:17
355
  #: classes/views/styles/manage.php:16
356
  msgid "Form Title"
357
  msgstr ""
358
 
359
- #: classes/controllers/FrmFormsController.php:645
360
  msgid "Shortcodes"
361
  msgstr ""
362
 
363
- #: classes/controllers/FrmFormsController.php:648
364
  #: classes/models/FrmField.php:81
365
  msgid "Date"
366
  msgstr ""
367
 
368
- #: classes/controllers/FrmFormsController.php:700
369
  msgid "You are trying to edit a form that does not exist."
370
  msgstr ""
371
 
372
- #: classes/controllers/FrmFormsController.php:704
373
  msgid "You are trying to edit a child form. Please edit from %1$shere%2$s"
374
  msgstr ""
375
 
376
- #: classes/controllers/FrmFormsController.php:726
377
  msgid "Template was Successfully Updated"
378
  msgstr ""
379
 
380
- #: classes/controllers/FrmFormsController.php:732
381
- #: classes/controllers/FrmFormsController.php:753
382
- msgid "That template cannot be edited"
383
- msgstr ""
384
-
385
- #: classes/controllers/FrmFormsController.php:803
386
  msgid "Customize the field values with the following parameters. Click to see a sample."
387
  msgstr ""
388
 
389
- #: classes/controllers/FrmFormsController.php:817
390
  msgid "Insert user information"
391
  msgstr ""
392
 
393
- #: classes/controllers/FrmFormsController.php:840
394
  msgid "Separator"
395
  msgstr ""
396
 
397
- #: classes/controllers/FrmFormsController.php:841
398
  msgid "Use a different separator for checkbox fields"
399
  msgstr ""
400
 
401
- #: classes/controllers/FrmFormsController.php:843
402
  msgid "Date Format"
403
  msgstr ""
404
 
405
- #: classes/controllers/FrmFormsController.php:844
406
  msgid "Field Label"
407
  msgstr ""
408
 
409
- #: classes/controllers/FrmFormsController.php:846
410
  msgid "No Auto P"
411
  msgstr ""
412
 
413
- #: classes/controllers/FrmFormsController.php:847
414
  msgid "Do not automatically add any paragraphs or line breaks"
415
  msgstr ""
416
 
417
- #: classes/controllers/FrmFormsController.php:861
418
  #: classes/models/FrmField.php:58
419
  msgid "User ID"
420
  msgstr ""
421
 
422
- #: classes/controllers/FrmFormsController.php:862
423
  msgid "First Name"
424
  msgstr ""
425
 
426
- #: classes/controllers/FrmFormsController.php:863
427
  msgid "Last Name"
428
  msgstr ""
429
 
430
- #: classes/controllers/FrmFormsController.php:864
431
  msgid "Display Name"
432
  msgstr ""
433
 
434
- #: classes/controllers/FrmFormsController.php:865
435
  msgid "User Login"
436
  msgstr ""
437
 
438
- #: classes/controllers/FrmFormsController.php:866
439
  #: classes/models/FrmField.php:34
440
  msgid "Email"
441
  msgstr ""
442
 
443
- #: classes/controllers/FrmFormsController.php:867
444
  msgid "Avatar"
445
  msgstr ""
446
 
447
- #: classes/controllers/FrmFormsController.php:868
448
  msgid "Author Link"
449
  msgstr ""
450
 
451
- #: classes/controllers/FrmFormsController.php:880
452
  #: classes/views/frm-entries/sidebar-shared.php:32
453
  msgid "Entry ID"
454
  msgstr ""
455
 
456
- #: classes/controllers/FrmFormsController.php:882
457
  msgid "Post ID"
458
  msgstr ""
459
 
460
- #: classes/controllers/FrmFormsController.php:883
461
  msgid "User IP"
462
  msgstr ""
463
 
464
- #: classes/controllers/FrmFormsController.php:884
465
  msgid "Entry created"
466
  msgstr ""
467
 
468
- #: classes/controllers/FrmFormsController.php:885
469
  msgid "Entry updated"
470
  msgstr ""
471
 
472
- #: classes/controllers/FrmFormsController.php:887
473
  msgid "Site URL"
474
  msgstr ""
475
 
476
- #: classes/controllers/FrmFormsController.php:888
477
  msgid "Site Name"
478
  msgstr ""
479
 
480
- #: classes/controllers/FrmFormsController.php:896
481
  msgid "Default Msg"
482
  msgstr ""
483
 
484
- #: classes/controllers/FrmFormsController.php:897
485
  msgid "Default HTML"
486
  msgstr ""
487
 
488
- #: classes/controllers/FrmFormsController.php:898
489
  msgid "Default Plain"
490
  msgstr ""
491
 
492
- #: classes/controllers/FrmFormsController.php:987
493
  msgid "No forms were specified"
494
  msgstr ""
495
 
496
- #: classes/controllers/FrmFormsController.php:1088
497
  msgid "Abnormal HTML characters prevented your form from saving correctly"
498
  msgstr ""
499
 
500
- #: classes/controllers/FrmFormsController.php:1203
501
- #: classes/controllers/FrmFormsController.php:1217
 
 
 
 
 
 
 
 
 
 
 
 
 
502
  msgid "Please select a valid form"
503
  msgstr ""
504
 
505
- #: classes/controllers/FrmFormsController.php:1448
506
  msgid "Please wait while you are redirected."
507
  msgstr ""
508
 
509
- #: classes/controllers/FrmFormsController.php:1482
510
  msgid "%1$sClick here%2$s if you are not automatically redirected."
511
  msgstr ""
512
 
@@ -599,6 +612,12 @@ msgstr ""
599
  msgid "Style"
600
  msgstr ""
601
 
 
 
 
 
 
 
602
  #: classes/controllers/FrmStylesController.php:39
603
  msgid "Create a New Style"
604
  msgstr ""
@@ -625,6 +644,8 @@ msgstr ""
625
  #: classes/controllers/FrmStylesController.php:377
626
  #: classes/views/frm-forms/mb_html_tab.php:49
627
  #: classes/views/frm-forms/settings.php:248
 
 
628
  msgid "Form Description"
629
  msgstr ""
630
 
@@ -664,589 +685,619 @@ msgid "Click to toggle"
664
  msgstr ""
665
 
666
  #: classes/controllers/FrmXMLController.php:6
667
- #: classes/views/xml/import_form.php:2
668
  msgid "Import/Export"
669
  msgstr ""
670
 
671
- #: classes/controllers/FrmXMLController.php:90
 
 
 
 
 
 
 
 
672
  msgid "Oops, you didn't select a file."
673
  msgstr ""
674
 
675
- #: classes/controllers/FrmXMLController.php:99
676
  msgid "The file does not exist, please try again."
677
  msgstr ""
678
 
679
- #: classes/controllers/FrmXMLController.php:124
680
  msgid "XML import is not enabled on your server with the libxml_disable_entity_loader function."
681
  msgstr ""
682
 
683
- #: classes/controllers/FrmXMLController.php:301
684
  msgid "Please select a form"
685
  msgstr ""
686
 
687
- #: classes/controllers/FrmXMLController.php:358
688
  msgid "There are no entries for that form."
689
  msgstr ""
690
 
691
  #: classes/helpers/FrmAppHelper.php:616
692
- #: classes/helpers/FrmFormsListHelper.php:108
693
  msgid "Add New"
694
  msgstr ""
695
 
696
- #: classes/helpers/FrmAppHelper.php:733
 
 
 
 
 
 
 
697
  msgid "View Forms and Templates"
698
  msgstr ""
699
 
700
- #: classes/helpers/FrmAppHelper.php:734
701
  msgid "Add/Edit Forms and Templates"
702
  msgstr ""
703
 
704
- #: classes/helpers/FrmAppHelper.php:735
705
  msgid "Delete Forms and Templates"
706
  msgstr ""
707
 
708
- #: classes/helpers/FrmAppHelper.php:736
709
  msgid "Access this Settings Page"
710
  msgstr ""
711
 
712
- #: classes/helpers/FrmAppHelper.php:737
713
  msgid "View Entries from Admin Area"
714
  msgstr ""
715
 
716
- #: classes/helpers/FrmAppHelper.php:738
717
  msgid "Delete Entries from Admin Area"
718
  msgstr ""
719
 
720
- #: classes/helpers/FrmAppHelper.php:745
721
  msgid "Add Entries from Admin Area"
722
  msgstr ""
723
 
724
- #: classes/helpers/FrmAppHelper.php:746
725
  msgid "Edit Entries from Admin Area"
726
  msgstr ""
727
 
728
- #: classes/helpers/FrmAppHelper.php:747
729
  msgid "View Reports"
730
  msgstr ""
731
 
732
- #: classes/helpers/FrmAppHelper.php:748
733
  msgid "Add/Edit Views"
734
  msgstr ""
735
 
736
- #: classes/helpers/FrmAppHelper.php:1352
737
  msgid "at"
738
  msgstr ""
739
 
740
- #: classes/helpers/FrmAppHelper.php:1401
741
- #: classes/helpers/FrmAppHelper.php:1420
742
  msgid "seconds"
743
  msgstr ""
744
 
745
- #: classes/helpers/FrmAppHelper.php:1414
746
  msgid "year"
747
  msgstr ""
748
 
749
- #: classes/helpers/FrmAppHelper.php:1414
750
  msgid "years"
751
  msgstr ""
752
 
753
- #: classes/helpers/FrmAppHelper.php:1415
754
  msgid "month"
755
  msgstr ""
756
 
757
- #: classes/helpers/FrmAppHelper.php:1415
758
  msgid "months"
759
  msgstr ""
760
 
761
- #: classes/helpers/FrmAppHelper.php:1416
762
  msgid "week"
763
  msgstr ""
764
 
765
- #: classes/helpers/FrmAppHelper.php:1416
766
  msgid "weeks"
767
  msgstr ""
768
 
769
- #: classes/helpers/FrmAppHelper.php:1417
770
  msgid "day"
771
  msgstr ""
772
 
773
- #: classes/helpers/FrmAppHelper.php:1417
774
  msgid "days"
775
  msgstr ""
776
 
777
- #: classes/helpers/FrmAppHelper.php:1418
778
  msgid "hour"
779
  msgstr ""
780
 
781
- #: classes/helpers/FrmAppHelper.php:1418
782
  msgid "hours"
783
  msgstr ""
784
 
785
- #: classes/helpers/FrmAppHelper.php:1419
786
  msgid "minute"
787
  msgstr ""
788
 
789
- #: classes/helpers/FrmAppHelper.php:1419
790
  msgid "minutes"
791
  msgstr ""
792
 
793
- #: classes/helpers/FrmAppHelper.php:1420
794
  msgid "second"
795
  msgstr ""
796
 
797
- #: classes/helpers/FrmAppHelper.php:1512
798
  msgid "Give this action a label for easy reference."
799
  msgstr ""
800
 
801
- #: classes/helpers/FrmAppHelper.php:1513
802
  msgid "Add one or more recipient addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com. [admin_email] is the address set in WP General Settings."
803
  msgstr ""
804
 
805
- #: classes/helpers/FrmAppHelper.php:1514
806
  msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
807
  msgstr ""
808
 
809
- #: classes/helpers/FrmAppHelper.php:1515
810
  msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
811
  msgstr ""
812
 
813
- #: classes/helpers/FrmAppHelper.php:1516
814
  msgid "If you would like a different reply to address than the \"from\" address, add a single address here. FORMAT: Name <name@email.com> or name@email.com."
815
  msgstr ""
816
 
817
- #: classes/helpers/FrmAppHelper.php:1517
818
  msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
819
  msgstr ""
820
 
821
- #: classes/helpers/FrmAppHelper.php:1518
822
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
823
  msgstr ""
824
 
825
- #: classes/helpers/FrmAppHelper.php:1650
826
- #: classes/helpers/FrmAppHelper.php:1720
827
  msgid "Please wait while your site updates."
828
  msgstr ""
829
 
830
- #: classes/helpers/FrmAppHelper.php:1651
831
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
832
  msgstr ""
833
 
834
- #: classes/helpers/FrmAppHelper.php:1681
 
 
 
 
 
835
  msgid "Remove"
836
  msgstr ""
837
 
838
- #: classes/helpers/FrmAppHelper.php:1684
839
  #: classes/helpers/FrmCSVExportHelper.php:150
840
  msgid "ID"
841
  msgstr ""
842
 
843
- #: classes/helpers/FrmAppHelper.php:1685
844
  msgid "No results match"
845
  msgstr ""
846
 
847
- #: classes/helpers/FrmAppHelper.php:1686
848
  msgid "That file looks like Spam."
849
  msgstr ""
850
 
851
- #: classes/helpers/FrmAppHelper.php:1687
852
  msgid "There is an error in the calculation in the field with key"
853
  msgstr ""
854
 
855
- #: classes/helpers/FrmAppHelper.php:1688
856
  msgid "Please complete the preceding required fields before uploading a file."
857
  msgstr ""
858
 
859
- #: classes/helpers/FrmAppHelper.php:1695
860
  msgid "Are you sure you want to do this? Clicking OK will delete all forms, form data, and all other Formidable data. There is no Undo."
861
  msgstr ""
862
 
863
- #: classes/helpers/FrmAppHelper.php:1696
864
  #: classes/views/frm-forms/add_field.php:37
865
  #: classes/views/frm-forms/add_field.php:50
866
  msgid "(Click to add description)"
867
  msgstr ""
868
 
869
- #: classes/helpers/FrmAppHelper.php:1697
870
  #: classes/views/frm-fields/single-option.php:8
871
  #: classes/views/frm-fields/single-option.php:14
872
  msgid "(Blank)"
873
  msgstr ""
874
 
875
- #: classes/helpers/FrmAppHelper.php:1698
876
  #: classes/views/frm-forms/add_field.php:17
877
  msgid "(no label)"
878
  msgstr ""
879
 
880
- #: classes/helpers/FrmAppHelper.php:1699
881
  msgid "Saving"
882
  msgstr ""
883
 
884
- #: classes/helpers/FrmAppHelper.php:1700
885
  msgid "Saved"
886
  msgstr ""
887
 
888
- #: classes/helpers/FrmAppHelper.php:1702
 
 
 
 
 
 
889
  msgid "Cancel"
890
  msgstr ""
891
 
892
- #: classes/helpers/FrmAppHelper.php:1703
893
- #: classes/helpers/FrmFormsListHelper.php:300
894
  #: classes/views/frm-forms/add_field.php:197
895
  #: classes/views/styles/_buttons.php:12
896
  #: classes/views/styles/_field-colors.php:5
897
  msgid "Default"
898
  msgstr ""
899
 
900
- #: classes/helpers/FrmAppHelper.php:1704
901
  #: classes/helpers/FrmFieldsHelper.php:1120
902
  msgid "Clear default value when typing"
903
  msgstr ""
904
 
905
- #: classes/helpers/FrmAppHelper.php:1705
906
  #: classes/helpers/FrmFieldsHelper.php:1120
907
  msgid "Do not clear default value when typing"
908
  msgstr ""
909
 
910
- #: classes/helpers/FrmAppHelper.php:1706
911
  #: classes/helpers/FrmFieldsHelper.php:1130
912
  msgid "Default value will pass form validation"
913
  msgstr ""
914
 
915
- #: classes/helpers/FrmAppHelper.php:1707
916
  #: classes/helpers/FrmFieldsHelper.php:1130
917
  msgid "Default value will NOT pass form validation"
918
  msgstr ""
919
 
920
- #: classes/helpers/FrmAppHelper.php:1708
921
  #: classes/helpers/FrmEntriesListHelper.php:257
922
- #: classes/helpers/FrmFormsHelper.php:852
 
923
  #: classes/views/styles/show.php:64
924
  msgid "Are you sure?"
925
  msgstr ""
926
 
927
- #: classes/helpers/FrmAppHelper.php:1709
928
  msgid "Are you sure you want to delete this field and all data associated with it?"
929
  msgstr ""
930
 
931
- #: classes/helpers/FrmAppHelper.php:1710
932
  msgid "WARNING: This will delete all fields inside of the section as well."
933
  msgstr ""
934
 
935
- #: classes/helpers/FrmAppHelper.php:1711
936
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
937
  msgstr ""
938
 
939
- #: classes/helpers/FrmAppHelper.php:1713
940
  #: classes/helpers/FrmFieldsHelper.php:271
941
  msgid "The entered values do not match"
942
  msgstr ""
943
 
944
- #: classes/helpers/FrmAppHelper.php:1714
945
  msgid "Enter Email"
946
  msgstr ""
947
 
948
- #: classes/helpers/FrmAppHelper.php:1715
949
  msgid "Confirm Email"
950
  msgstr ""
951
 
952
- #: classes/helpers/FrmAppHelper.php:1716
953
  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."
954
  msgstr ""
955
 
956
- #: classes/helpers/FrmAppHelper.php:1717
957
  msgid "Enter Password"
958
  msgstr ""
959
 
960
- #: classes/helpers/FrmAppHelper.php:1718
961
  msgid "Confirm Password"
962
  msgstr ""
963
 
964
- #: classes/helpers/FrmAppHelper.php:1719
965
  msgid "Import Complete"
966
  msgstr ""
967
 
968
- #: classes/helpers/FrmAppHelper.php:1721
969
  msgid "Warning: There is no way to retrieve unsaved entries."
970
  msgstr ""
971
 
972
- #: classes/helpers/FrmAppHelper.php:1725
 
 
 
 
973
  msgid "No new licenses were found"
974
  msgstr ""
975
 
976
- #: classes/helpers/FrmAppHelper.php:1726
977
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
978
  msgstr ""
979
 
980
- #: classes/helpers/FrmAppHelper.php:1727
981
  msgid "This calculation may have shortcodes that work in Views but not forms."
982
  msgstr ""
983
 
984
- #: classes/helpers/FrmAppHelper.php:1728
985
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
986
  msgstr ""
987
 
988
- #: classes/helpers/FrmAppHelper.php:1729
989
  msgid "Please enter a Repeat Limit that is greater than 1."
990
  msgstr ""
991
 
992
- #: classes/helpers/FrmAppHelper.php:1730
993
  msgid "Installing"
994
  msgstr ""
995
 
996
- #: classes/helpers/FrmAppHelper.php:1731
997
  #: classes/views/addons/list.php:40
998
  #: classes/views/addons/list.php:41
999
  msgid "Install"
1000
  msgstr ""
1001
 
1002
- #: classes/helpers/FrmAppHelper.php:1755
1003
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
1004
  msgstr ""
1005
 
1006
- #: classes/helpers/FrmAppHelper.php:1761
1007
  msgid "English"
1008
  msgstr ""
1009
 
1010
- #: classes/helpers/FrmAppHelper.php:1762
1011
  msgid "English/Western"
1012
  msgstr ""
1013
 
1014
- #: classes/helpers/FrmAppHelper.php:1763
1015
  msgid "Afrikaans"
1016
  msgstr ""
1017
 
1018
- #: classes/helpers/FrmAppHelper.php:1764
1019
  msgid "Albanian"
1020
  msgstr ""
1021
 
1022
- #: classes/helpers/FrmAppHelper.php:1765
1023
  msgid "Arabic"
1024
  msgstr ""
1025
 
1026
- #: classes/helpers/FrmAppHelper.php:1766
1027
  msgid "Armenian"
1028
  msgstr ""
1029
 
1030
- #: classes/helpers/FrmAppHelper.php:1767
1031
  msgid "Azerbaijani"
1032
  msgstr ""
1033
 
1034
- #: classes/helpers/FrmAppHelper.php:1768
1035
  msgid "Basque"
1036
  msgstr ""
1037
 
1038
- #: classes/helpers/FrmAppHelper.php:1769
1039
  msgid "Bosnian"
1040
  msgstr ""
1041
 
1042
- #: classes/helpers/FrmAppHelper.php:1770
1043
  msgid "Bulgarian"
1044
  msgstr ""
1045
 
1046
- #: classes/helpers/FrmAppHelper.php:1771
1047
  msgid "Catalan"
1048
  msgstr ""
1049
 
1050
- #: classes/helpers/FrmAppHelper.php:1772
1051
  msgid "Chinese Hong Kong"
1052
  msgstr ""
1053
 
1054
- #: classes/helpers/FrmAppHelper.php:1773
1055
  msgid "Chinese Simplified"
1056
  msgstr ""
1057
 
1058
- #: classes/helpers/FrmAppHelper.php:1774
1059
  msgid "Chinese Traditional"
1060
  msgstr ""
1061
 
1062
- #: classes/helpers/FrmAppHelper.php:1775
1063
  msgid "Croatian"
1064
  msgstr ""
1065
 
1066
- #: classes/helpers/FrmAppHelper.php:1776
1067
  msgid "Czech"
1068
  msgstr ""
1069
 
1070
- #: classes/helpers/FrmAppHelper.php:1777
1071
  msgid "Danish"
1072
  msgstr ""
1073
 
1074
- #: classes/helpers/FrmAppHelper.php:1778
1075
  msgid "Dutch"
1076
  msgstr ""
1077
 
1078
- #: classes/helpers/FrmAppHelper.php:1779
1079
  msgid "English/UK"
1080
  msgstr ""
1081
 
1082
- #: classes/helpers/FrmAppHelper.php:1780
1083
  msgid "Esperanto"
1084
  msgstr ""
1085
 
1086
- #: classes/helpers/FrmAppHelper.php:1781
1087
  msgid "Estonian"
1088
  msgstr ""
1089
 
1090
- #: classes/helpers/FrmAppHelper.php:1782
1091
  msgid "Faroese"
1092
  msgstr ""
1093
 
1094
- #: classes/helpers/FrmAppHelper.php:1783
1095
  msgid "Farsi/Persian"
1096
  msgstr ""
1097
 
1098
- #: classes/helpers/FrmAppHelper.php:1784
1099
  msgid "Filipino"
1100
  msgstr ""
1101
 
1102
- #: classes/helpers/FrmAppHelper.php:1785
1103
  msgid "Finnish"
1104
  msgstr ""
1105
 
1106
- #: classes/helpers/FrmAppHelper.php:1786
1107
  msgid "French"
1108
  msgstr ""
1109
 
1110
- #: classes/helpers/FrmAppHelper.php:1787
1111
  msgid "French/Canadian"
1112
  msgstr ""
1113
 
1114
- #: classes/helpers/FrmAppHelper.php:1788
1115
  msgid "French/Swiss"
1116
  msgstr ""
1117
 
1118
- #: classes/helpers/FrmAppHelper.php:1789
1119
  msgid "German"
1120
  msgstr ""
1121
 
1122
- #: classes/helpers/FrmAppHelper.php:1790
1123
  msgid "German/Austria"
1124
  msgstr ""
1125
 
1126
- #: classes/helpers/FrmAppHelper.php:1791
1127
  msgid "German/Switzerland"
1128
  msgstr ""
1129
 
1130
- #: classes/helpers/FrmAppHelper.php:1792
1131
  msgid "Greek"
1132
  msgstr ""
1133
 
1134
- #: classes/helpers/FrmAppHelper.php:1793
1135
- #: classes/helpers/FrmAppHelper.php:1794
1136
  msgid "Hebrew"
1137
  msgstr ""
1138
 
1139
- #: classes/helpers/FrmAppHelper.php:1795
1140
  msgid "Hindi"
1141
  msgstr ""
1142
 
1143
- #: classes/helpers/FrmAppHelper.php:1796
1144
  msgid "Hungarian"
1145
  msgstr ""
1146
 
1147
- #: classes/helpers/FrmAppHelper.php:1797
1148
  msgid "Icelandic"
1149
  msgstr ""
1150
 
1151
- #: classes/helpers/FrmAppHelper.php:1798
1152
  msgid "Indonesian"
1153
  msgstr ""
1154
 
1155
- #: classes/helpers/FrmAppHelper.php:1799
1156
  msgid "Italian"
1157
  msgstr ""
1158
 
1159
- #: classes/helpers/FrmAppHelper.php:1800
1160
  msgid "Japanese"
1161
  msgstr ""
1162
 
1163
- #: classes/helpers/FrmAppHelper.php:1801
1164
  msgid "Korean"
1165
  msgstr ""
1166
 
1167
- #: classes/helpers/FrmAppHelper.php:1802
1168
  msgid "Latvian"
1169
  msgstr ""
1170
 
1171
- #: classes/helpers/FrmAppHelper.php:1803
1172
  msgid "Lithuanian"
1173
  msgstr ""
1174
 
1175
- #: classes/helpers/FrmAppHelper.php:1804
1176
  msgid "Malaysian"
1177
  msgstr ""
1178
 
1179
- #: classes/helpers/FrmAppHelper.php:1805
1180
  msgid "Norwegian"
1181
  msgstr ""
1182
 
1183
- #: classes/helpers/FrmAppHelper.php:1806
1184
  msgid "Polish"
1185
  msgstr ""
1186
 
1187
- #: classes/helpers/FrmAppHelper.php:1807
1188
  msgid "Portuguese"
1189
  msgstr ""
1190
 
1191
- #: classes/helpers/FrmAppHelper.php:1808
1192
  msgid "Portuguese/Brazilian"
1193
  msgstr ""
1194
 
1195
- #: classes/helpers/FrmAppHelper.php:1809
1196
  msgid "Portuguese/Portugal"
1197
  msgstr ""
1198
 
1199
- #: classes/helpers/FrmAppHelper.php:1810
1200
  msgid "Romanian"
1201
  msgstr ""
1202
 
1203
- #: classes/helpers/FrmAppHelper.php:1811
1204
  msgid "Russian"
1205
  msgstr ""
1206
 
1207
- #: classes/helpers/FrmAppHelper.php:1812
1208
- #: classes/helpers/FrmAppHelper.php:1813
1209
  msgid "Serbian"
1210
  msgstr ""
1211
 
1212
- #: classes/helpers/FrmAppHelper.php:1814
1213
  msgid "Slovak"
1214
  msgstr ""
1215
 
1216
- #: classes/helpers/FrmAppHelper.php:1815
1217
  msgid "Slovenian"
1218
  msgstr ""
1219
 
1220
- #: classes/helpers/FrmAppHelper.php:1816
1221
  msgid "Spanish"
1222
  msgstr ""
1223
 
1224
- #: classes/helpers/FrmAppHelper.php:1817
1225
  msgid "Spanish/Latin America"
1226
  msgstr ""
1227
 
1228
- #: classes/helpers/FrmAppHelper.php:1818
1229
  msgid "Swedish"
1230
  msgstr ""
1231
 
1232
- #: classes/helpers/FrmAppHelper.php:1819
1233
  msgid "Tamil"
1234
  msgstr ""
1235
 
1236
- #: classes/helpers/FrmAppHelper.php:1820
1237
  msgid "Thai"
1238
  msgstr ""
1239
 
1240
- #: classes/helpers/FrmAppHelper.php:1821
1241
- #: classes/helpers/FrmAppHelper.php:1822
1242
  msgid "Turkish"
1243
  msgstr ""
1244
 
1245
- #: classes/helpers/FrmAppHelper.php:1823
1246
  msgid "Ukranian"
1247
  msgstr ""
1248
 
1249
- #: classes/helpers/FrmAppHelper.php:1824
1250
  msgid "Vietnamese"
1251
  msgstr ""
1252
 
@@ -1279,8 +1330,8 @@ msgid "Updated By"
1279
  msgstr ""
1280
 
1281
  #: classes/helpers/FrmCSVExportHelper.php:148
1282
- #: classes/helpers/FrmFormsHelper.php:966
1283
- #: classes/helpers/FrmFormsListHelper.php:377
1284
  msgid "Draft"
1285
  msgstr ""
1286
 
@@ -1297,6 +1348,16 @@ msgstr ""
1297
  msgid "Unknown"
1298
  msgstr ""
1299
 
 
 
 
 
 
 
 
 
 
 
1300
  #: classes/helpers/FrmEntriesHelper.php:543
1301
  msgid "Really delete?"
1302
  msgstr ""
@@ -1309,6 +1370,18 @@ msgstr ""
1309
  msgid "View all forms"
1310
  msgstr ""
1311
 
 
 
 
 
 
 
 
 
 
 
 
 
1312
  #: classes/helpers/FrmEntriesListHelper.php:253
1313
  #: classes/views/frm-entries/sidebar-shared.php:24
1314
  msgid "View"
@@ -1316,6 +1389,7 @@ msgstr ""
1316
 
1317
  #: classes/helpers/FrmFieldsHelper.php:163
1318
  #: classes/helpers/FrmFieldsHelper.php:279
 
1319
  #: classes/models/fields/FrmFieldType.php:327
1320
  msgid "%s is invalid"
1321
  msgstr ""
@@ -1333,6 +1407,10 @@ msgstr ""
1333
  msgid "Please add options from the WordPress \"%1$s\" page"
1334
  msgstr ""
1335
 
 
 
 
 
1336
  #: classes/helpers/FrmFieldsHelper.php:1236
1337
  msgid "Afghanistan"
1338
  msgstr ""
@@ -2301,10 +2379,6 @@ msgstr ""
2301
  msgid "Strongly Disagree"
2302
  msgstr ""
2303
 
2304
- #: classes/helpers/FrmFormsHelper.php:55
2305
- msgid "(no title)"
2306
- msgstr ""
2307
-
2308
  #: classes/helpers/FrmFormsHelper.php:55
2309
  msgid " (child)"
2310
  msgstr ""
@@ -2315,8 +2389,8 @@ msgstr ""
2315
 
2316
  #: classes/helpers/FrmFormsHelper.php:129
2317
  #: classes/models/FrmFormAction.php:742
2318
- #: classes/views/frm-forms/_publish_box.php:34
2319
- #: classes/views/frm-forms/_publish_box.php:38
2320
  #: classes/views/frm-forms/add_field_links.php:7
2321
  #: classes/views/frm-forms/edit.php:25
2322
  #: classes/views/frm-forms/settings.php:368
@@ -2326,173 +2400,220 @@ msgstr ""
2326
  #: classes/helpers/FrmFormsHelper.php:129
2327
  #: classes/models/FrmFormAction.php:741
2328
  #: classes/views/frm-forms/add_field_links.php:7
 
2329
  msgid "Create"
2330
  msgstr ""
2331
 
2332
- #: classes/helpers/FrmFormsHelper.php:752
2333
  msgid "Create Form from Template"
2334
  msgstr ""
2335
 
2336
- #: classes/helpers/FrmFormsHelper.php:758
2337
  msgid "Duplicate Form"
2338
  msgstr ""
2339
 
2340
- #: classes/helpers/FrmFormsHelper.php:843
2341
  msgid "Restore from Trash"
2342
  msgstr ""
2343
 
2344
- #: classes/helpers/FrmFormsHelper.php:844
2345
- #: classes/helpers/FrmFormsListHelper.php:118
2346
  msgid "Restore"
2347
  msgstr ""
2348
 
2349
- #: classes/helpers/FrmFormsHelper.php:848
2350
  msgid "Move Form to Trash"
2351
  msgstr ""
2352
 
2353
- #: classes/helpers/FrmFormsHelper.php:849
2354
- #: classes/helpers/FrmFormsHelper.php:967
2355
- #: classes/helpers/FrmFormsListHelper.php:192
2356
  msgid "Trash"
2357
  msgstr ""
2358
 
2359
- #: classes/helpers/FrmFormsHelper.php:855
2360
- #: classes/helpers/FrmFormsListHelper.php:122
2361
  msgid "Delete Permanently"
2362
  msgstr ""
2363
 
2364
  #: classes/helpers/FrmFormsHelper.php:856
2365
- #: classes/models/FrmFormAction.php:743
2366
- #: classes/views/frm-form-actions/form_action.php:19
2367
- msgid "Delete"
2368
- msgstr ""
2369
-
2370
- #: classes/helpers/FrmFormsHelper.php:858
2371
  msgid "Are you sure you want to delete this form and all its entries?"
2372
  msgstr ""
2373
 
2374
- #: classes/helpers/FrmFormsHelper.php:860
2375
  msgid "Delete form & entries?"
2376
  msgstr ""
2377
 
2378
- #: classes/helpers/FrmFormsHelper.php:871
2379
  msgid "First"
2380
  msgstr ""
2381
 
2382
- #: classes/helpers/FrmFormsHelper.php:872
2383
  msgid "Add this to the first field in each row along with a width. ie frm_first frm4"
2384
  msgstr ""
2385
 
2386
- #: classes/helpers/FrmFormsHelper.php:874
2387
  #: classes/helpers/FrmStylesHelper.php:40
2388
  msgid "Right"
2389
  msgstr ""
2390
 
2391
- #: classes/helpers/FrmFormsHelper.php:876
2392
  msgid "Total"
2393
  msgstr ""
2394
 
2395
- #: classes/helpers/FrmFormsHelper.php:877
2396
  msgid "Add this to a read-only field to display the text in bold without a border or background."
2397
  msgstr ""
2398
 
2399
- #: classes/helpers/FrmFormsHelper.php:879
2400
  msgid "First Grid Row"
2401
  msgstr ""
2402
 
2403
- #: classes/helpers/FrmFormsHelper.php:880
2404
  msgid "Even Grid Row"
2405
  msgstr ""
2406
 
2407
- #: classes/helpers/FrmFormsHelper.php:881
2408
  msgid "Odd Grid Row"
2409
  msgstr ""
2410
 
2411
- #: classes/helpers/FrmFormsHelper.php:883
2412
  msgid "2 Col Options"
2413
  msgstr ""
2414
 
2415
- #: classes/helpers/FrmFormsHelper.php:884
2416
  msgid "Put your radio button or checkbox options into two columns."
2417
  msgstr ""
2418
 
2419
- #: classes/helpers/FrmFormsHelper.php:887
2420
  msgid "3 Col Options"
2421
  msgstr ""
2422
 
2423
- #: classes/helpers/FrmFormsHelper.php:888
2424
  msgid "Put your radio button or checkbox options into three columns."
2425
  msgstr ""
2426
 
2427
- #: classes/helpers/FrmFormsHelper.php:891
2428
  msgid "4 Col Options"
2429
  msgstr ""
2430
 
2431
- #: classes/helpers/FrmFormsHelper.php:892
2432
  msgid "Put your radio button or checkbox options into four columns."
2433
  msgstr ""
2434
 
2435
- #: classes/helpers/FrmFormsHelper.php:895
2436
  msgid "Scroll Box"
2437
  msgstr ""
2438
 
2439
- #: classes/helpers/FrmFormsHelper.php:896
2440
  msgid "If you have many checkbox or radio button options, you may add this class to allow your user to easily scroll through the options."
2441
  msgstr ""
2442
 
2443
- #: classes/helpers/FrmFormsHelper.php:899
2444
  msgid "Capitalize"
2445
  msgstr ""
2446
 
2447
- #: classes/helpers/FrmFormsHelper.php:900
2448
  msgid "Automatically capitalize the first letter in each word."
2449
  msgstr ""
2450
 
2451
- #: classes/helpers/FrmFormsHelper.php:968
2452
  msgid "Published"
2453
  msgstr ""
2454
 
2455
- #: classes/helpers/FrmFormsListHelper.php:104
2456
- msgid "No Templates Found."
2457
- msgstr ""
2458
-
2459
- #: classes/helpers/FrmFormsListHelper.php:106
2460
  msgid "No Forms Found."
2461
  msgstr ""
2462
 
2463
- #: classes/helpers/FrmFormsListHelper.php:125
2464
  msgid "Move to Trash"
2465
  msgstr ""
2466
 
2467
- #: classes/helpers/FrmFormsListHelper.php:163
2468
- msgid "Create New Template"
2469
  msgstr ""
2470
 
2471
- #: classes/helpers/FrmFormsListHelper.php:168
2472
- msgid "You have not created any forms yet. You must create a form before you can make a template."
2473
  msgstr ""
2474
 
2475
- #: classes/helpers/FrmFormsListHelper.php:189
2476
- msgid "My Forms"
2477
  msgstr ""
2478
 
2479
- #: classes/helpers/FrmFormsListHelper.php:190
2480
- #: classes/views/frm-forms/edit.php:10
2481
- #: classes/views/frm-forms/list.php:5
2482
- #: classes/views/frm-forms/new.php:10
2483
- msgid "Templates"
2484
  msgstr ""
2485
 
2486
- #: classes/helpers/FrmFormsListHelper.php:191
2487
- msgid "Drafts"
 
 
2488
  msgstr ""
2489
 
2490
- #: classes/helpers/FrmFormsListHelper.php:213
2491
- msgid "%1$s <span class=\"count\">(%2$s)</span>"
 
 
 
 
2492
  msgstr ""
2493
 
2494
- #: classes/helpers/FrmFormsListHelper.php:300
2495
- msgid "Custom"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2496
  msgstr ""
2497
 
2498
  #: classes/helpers/FrmStylesHelper.php:16
@@ -2753,78 +2874,78 @@ msgstr ""
2753
  msgid "Collect instant payments, and send leads to MailChimp."
2754
  msgstr ""
2755
 
2756
- #: classes/helpers/FrmXMLHelper.php:50
2757
  msgid "Your server does not have XML enabled"
2758
  msgstr ""
2759
 
2760
- #: classes/helpers/FrmXMLHelper.php:56
2761
- #: classes/helpers/FrmXMLHelper.php:68
2762
  msgid "There was an error when reading this XML file"
2763
  msgstr ""
2764
 
2765
- #: classes/helpers/FrmXMLHelper.php:60
2766
  msgid "Your server is missing the simplexml_import_dom function"
2767
  msgstr ""
2768
 
2769
- #: classes/helpers/FrmXMLHelper.php:815
2770
  msgid "Imported"
2771
  msgstr ""
2772
 
2773
- #: classes/helpers/FrmXMLHelper.php:816
2774
  msgid "Updated"
2775
  msgstr ""
2776
 
2777
- #: classes/helpers/FrmXMLHelper.php:841
2778
  msgid "Nothing was imported or updated"
2779
  msgstr ""
2780
 
2781
- #: classes/helpers/FrmXMLHelper.php:853
2782
  msgid "%1$s Form"
2783
  msgid_plural "%1$s Forms"
2784
  msgstr[0] ""
2785
 
2786
  #. translators: %1$s - field type
2787
- #: classes/helpers/FrmXMLHelper.php:854
2788
  #: classes/models/FrmFormMigrator.php:389
2789
  msgid "%1$s Field"
2790
  msgid_plural "%1$s Fields"
2791
  msgstr[0] ""
2792
 
2793
- #: classes/helpers/FrmXMLHelper.php:855
2794
  msgid "%1$s Entry"
2795
  msgid_plural "%1$s Entries"
2796
  msgstr[0] ""
2797
 
2798
- #: classes/helpers/FrmXMLHelper.php:856
2799
  msgid "%1$s View"
2800
  msgid_plural "%1$s Views"
2801
  msgstr[0] ""
2802
 
2803
- #: classes/helpers/FrmXMLHelper.php:857
2804
  msgid "%1$s Post"
2805
  msgid_plural "%1$s Posts"
2806
  msgstr[0] ""
2807
 
2808
- #: classes/helpers/FrmXMLHelper.php:858
2809
  msgid "%1$s Style"
2810
  msgid_plural "%1$s Styles"
2811
  msgstr[0] ""
2812
 
2813
- #: classes/helpers/FrmXMLHelper.php:859
2814
  msgid "%1$s Term"
2815
  msgid_plural "%1$s Terms"
2816
  msgstr[0] ""
2817
 
2818
- #: classes/helpers/FrmXMLHelper.php:860
2819
  msgid "%1$s Form Action"
2820
  msgid_plural "%1$s Form Actions"
2821
  msgstr[0] ""
2822
 
2823
- #: classes/helpers/FrmXMLHelper.php:954
2824
  msgid "Create Posts"
2825
  msgstr ""
2826
 
2827
- #: classes/helpers/FrmXMLHelper.php:1061
2828
  #: classes/views/frm-form-actions/email_action.php:16
2829
  msgid "Email Notification"
2830
  msgstr ""
@@ -2870,62 +2991,62 @@ msgid "Website"
2870
  msgstr ""
2871
 
2872
  #. translators: %1$s: Plugin name, %2$s: Start link HTML, %3$s: end link HTML
2873
- #: classes/models/FrmAddon.php:261
2874
  msgid "Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s."
2875
  msgstr ""
2876
 
2877
- #: classes/models/FrmAddon.php:448
2878
  msgid "Oops! You forgot to enter your license number."
2879
  msgstr ""
2880
 
2881
- #: classes/models/FrmAddon.php:524
2882
  msgid "Your license has been activated. Enjoy!"
2883
  msgstr ""
2884
 
2885
- #: classes/models/FrmAddon.php:525
2886
- #: classes/models/FrmAddon.php:530
2887
  msgid "That license key is invalid"
2888
  msgstr ""
2889
 
2890
- #: classes/models/FrmAddon.php:526
2891
  msgid "That license is expired"
2892
  msgstr ""
2893
 
2894
- #: classes/models/FrmAddon.php:527
2895
  msgid "That license has been refunded"
2896
  msgstr ""
2897
 
2898
- #: classes/models/FrmAddon.php:528
2899
  msgid "That license has been used on too many sites"
2900
  msgstr ""
2901
 
2902
- #: classes/models/FrmAddon.php:529
2903
  msgid "Oops! That is the wrong license key for this plugin."
2904
  msgstr ""
2905
 
2906
- #: classes/models/FrmAddon.php:552
2907
  msgid "That license was removed successfully"
2908
  msgstr ""
2909
 
2910
- #: classes/models/FrmAddon.php:554
2911
  msgid "There was an error deactivating your license."
2912
  msgstr ""
2913
 
2914
- #: classes/models/FrmAddon.php:587
2915
  msgid "Your License Key was invalid"
2916
  msgstr ""
2917
 
2918
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
2919
- #: classes/models/FrmAddon.php:591
2920
  msgid "You had an error communicating with the Formidable API. %1$sClick here%2$s for more information."
2921
  msgstr ""
2922
 
2923
- #: classes/models/FrmAddon.php:594
2924
  msgid "You had an HTTP error connecting to the Formidable API"
2925
  msgstr ""
2926
 
2927
  #. translators: %1$s: Error code, %2$s: Error message
2928
- #: classes/models/FrmAddon.php:605
2929
  msgid "There was a %1$s error: %2$s"
2930
  msgstr ""
2931
 
@@ -3107,12 +3228,12 @@ msgid "There are no options for this action."
3107
  msgstr ""
3108
 
3109
  #: classes/models/FrmFormAction.php:740
3110
- #: classes/views/frm-forms/_publish_box.php:30
3111
  msgid "Save Draft"
3112
  msgstr ""
3113
 
3114
  #: classes/models/FrmFormAction.php:744
3115
- #: classes/views/xml/import_form.php:9
3116
  msgid "Import"
3117
  msgstr ""
3118
 
@@ -3128,7 +3249,7 @@ msgstr ""
3128
  msgid "Default Form"
3129
  msgstr ""
3130
 
3131
- #: classes/models/FrmMigrate.php:488
3132
  msgid "Sending"
3133
  msgstr ""
3134
 
@@ -3136,6 +3257,10 @@ msgstr ""
3136
  msgid "Formidable Forms Exporter"
3137
  msgstr ""
3138
 
 
 
 
 
3139
  #: classes/models/FrmPersonalData.php:61
3140
  msgid "Form Submissions"
3141
  msgstr ""
@@ -3214,6 +3339,8 @@ msgstr ""
3214
 
3215
  #: classes/views/addons/list.php:45
3216
  #: classes/views/addons/list.php:46
 
 
3217
  msgid "Upgrade Now"
3218
  msgstr ""
3219
 
@@ -3229,6 +3356,14 @@ msgstr ""
3229
  msgid "Get Started"
3230
  msgstr ""
3231
 
 
 
 
 
 
 
 
 
3232
  #: classes/views/frm-entries/_sidebar-shared-pub.php:17
3233
  msgid "Print"
3234
  msgstr ""
@@ -3249,12 +3384,6 @@ msgstr ""
3249
  msgid "If you are human, leave this field blank."
3250
  msgstr ""
3251
 
3252
- #: classes/views/frm-entries/list.php:19
3253
- #: classes/views/frm-forms/list.php:21
3254
- #: classes/views/shared/mb_adv_info.php:21
3255
- msgid "Search"
3256
- msgstr ""
3257
-
3258
  #: classes/views/frm-entries/no_entries.php:3
3259
  msgid "This form is not set to save any entries."
3260
  msgstr ""
@@ -3272,6 +3401,7 @@ msgid "See the %1$sform documentation%2$s for instructions on publishing your fo
3272
  msgstr ""
3273
 
3274
  #: classes/views/frm-entries/no_entries.php:9
 
3275
  msgid "You have not created any forms yet."
3276
  msgstr ""
3277
 
@@ -3300,10 +3430,6 @@ msgstr ""
3300
  msgid "Post"
3301
  msgstr ""
3302
 
3303
- #: classes/views/frm-entries/sidebar-shared.php:21
3304
- msgid "Edit"
3305
- msgstr ""
3306
-
3307
  #: classes/views/frm-entries/sidebar-shared.php:48
3308
  msgid "Created by: %1$s"
3309
  msgstr ""
@@ -3362,7 +3488,7 @@ msgid "Number Range"
3362
  msgstr ""
3363
 
3364
  #: classes/views/frm-fields/back-end/number-range.php:4
3365
- msgid "Browsers that support the HTML5 number field require a number range to determine the numbers seen when clicking the arrows next to the field."
3366
  msgstr ""
3367
 
3368
  #: classes/views/frm-fields/back-end/number-range.php:9
@@ -3382,7 +3508,7 @@ msgid "pixels wide"
3382
  msgstr ""
3383
 
3384
  #: classes/views/frm-fields/back-end/value-format.php:2
3385
- #: classes/views/xml/import_form.php:56
3386
  msgid "Format"
3387
  msgstr ""
3388
 
@@ -3492,15 +3618,11 @@ msgstr ""
3492
  msgid "Duplicate"
3493
  msgstr ""
3494
 
3495
- #: classes/views/frm-forms/_publish_box.php:44
3496
- msgid "Preview"
3497
- msgstr ""
3498
-
3499
- #: classes/views/frm-forms/_publish_box.php:49
3500
  msgid "On Blank Page"
3501
  msgstr ""
3502
 
3503
- #: classes/views/frm-forms/_publish_box.php:54
3504
  msgid "In Theme"
3505
  msgstr ""
3506
 
@@ -3508,6 +3630,50 @@ msgstr ""
3508
  msgid "Show options"
3509
  msgstr ""
3510
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3511
  #: classes/views/frm-forms/add_field.php:6
3512
  msgid "Move Field"
3513
  msgstr ""
@@ -3670,11 +3836,21 @@ msgstr ""
3670
  msgid "Click on any box below to set the width for your selected field."
3671
  msgstr ""
3672
 
 
 
 
 
 
 
3673
  #: classes/views/frm-forms/edit.php:10
3674
  #: classes/views/frm-forms/new.php:10
3675
  msgid "Build Form"
3676
  msgstr ""
3677
 
 
 
 
 
3678
  #: classes/views/frm-forms/form.php:17
3679
  msgid "1. Name your form"
3680
  msgstr ""
@@ -3688,14 +3864,6 @@ msgid "Add Fields Here"
3688
  msgstr ""
3689
 
3690
  #: classes/views/frm-forms/form.php:30
3691
- msgid "Or load fields from a template"
3692
- msgstr ""
3693
-
3694
- #: classes/views/frm-forms/form.php:36
3695
- msgid "Load Template"
3696
- msgstr ""
3697
-
3698
- #: classes/views/frm-forms/form.php:41
3699
  msgid "3. Save your form"
3700
  msgstr ""
3701
 
@@ -3707,6 +3875,61 @@ msgstr ""
3707
  msgid "Insert into Post"
3708
  msgstr ""
3709
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3710
  #: classes/views/frm-forms/mb_html_tab.php:3
3711
  msgid "Use the buttons below to help customize your form HTML."
3712
  msgstr ""
@@ -3756,6 +3979,8 @@ msgid "Add class name if field has an error on form submit"
3756
  msgstr ""
3757
 
3758
  #: classes/views/frm-forms/mb_html_tab.php:48
 
 
3759
  msgid "Form Name"
3760
  msgstr ""
3761
 
@@ -3956,10 +4181,18 @@ msgstr ""
3956
  msgid "Select a form:"
3957
  msgstr ""
3958
 
 
 
 
 
3959
  #: classes/views/frm-settings/form.php:9
3960
  msgid "License"
3961
  msgstr ""
3962
 
 
 
 
 
3963
  #: classes/views/frm-settings/form.php:48
3964
  #: classes/views/frm-settings/form.php:235
3965
  msgid "Update Options"
@@ -4618,67 +4851,67 @@ msgstr ""
4618
  msgid "Reset to Default"
4619
  msgstr ""
4620
 
4621
- #: classes/views/xml/import_form.php:11
4622
  msgid "Upload your Formidable XML file to import forms into this site. If your imported form key and creation date match a form on your site, that form will be updated."
4623
  msgstr ""
4624
 
4625
- #: classes/views/xml/import_form.php:18
4626
  msgid "Choose a Formidable XML file"
4627
  msgstr ""
4628
 
4629
- #: classes/views/xml/import_form.php:19
4630
  msgid "Maximum size: %s"
4631
  msgstr ""
4632
 
4633
- #: classes/views/xml/import_form.php:27
4634
  msgid "Upload file and import"
4635
  msgstr ""
4636
 
4637
- #: classes/views/xml/import_form.php:36
4638
  msgid "Export"
4639
  msgstr ""
4640
 
4641
- #: classes/views/xml/import_form.php:44
 
 
 
 
4642
  msgid "Export Format"
4643
  msgstr ""
4644
 
4645
- #: classes/views/xml/import_form.php:57
4646
  msgid "If your CSV special characters are not working correctly, try a different formatting option."
4647
  msgstr ""
4648
 
4649
- #: classes/views/xml/import_form.php:66
4650
  msgid "Column separation"
4651
  msgstr ""
4652
 
4653
- #: classes/views/xml/import_form.php:74
4654
  msgid "Data to Export"
4655
  msgstr ""
4656
 
4657
- #: classes/views/xml/import_form.php:76
4658
  msgid "Include the following in the export file"
4659
  msgstr ""
4660
 
4661
- #: classes/views/xml/import_form.php:88
4662
  msgid "Select Form(s)"
4663
  msgstr ""
4664
 
4665
- #: classes/views/xml/import_form.php:98
4666
- msgid "(default template)"
4667
- msgstr ""
4668
-
4669
- #: classes/views/xml/import_form.php:100
4670
  msgid "(template)"
4671
  msgstr ""
4672
 
4673
- #: classes/views/xml/import_form.php:102
4674
  msgid "(child)"
4675
  msgstr ""
4676
 
4677
- #: classes/views/xml/import_form.php:108
4678
  msgid "Hold down the CTRL/Command button to select multiple forms"
4679
  msgstr ""
4680
 
4681
- #: classes/views/xml/import_form.php:113
4682
  msgid "Export Selection"
4683
  msgstr ""
4684
 
2
  # This file is distributed under the same license as the Formidable Forms plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Formidable Forms 3.06\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-01-30T01:01:21+01: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"
24
  msgid "Currently, there are no %s"
25
  msgstr ""
26
 
27
+ #: js/src/form/block.js:19
28
  #: languages/formidable-js-strings.php:11
29
  msgid "Display a Form"
30
  msgstr ""
31
 
32
+ #: js/src/form/block.js:23
33
  #: languages/formidable-js-strings.php:14
34
  msgid "contact forms"
35
  msgstr ""
36
 
37
+ #: js/src/form/block.js:35
38
  #: languages/formidable-js-strings.php:17
39
  msgid "This site does not have any forms."
40
  msgstr ""
112
  msgid "Upgrade to Pro"
113
  msgstr ""
114
 
115
+ #: classes/controllers/FrmAddonsController.php:37
116
  msgid "There are no plugins on your site that require a license"
117
  msgstr ""
118
 
119
+ #: classes/controllers/FrmAddonsController.php:397
120
  msgid "Installed"
121
  msgstr ""
122
 
123
+ #: classes/controllers/FrmAddonsController.php:402
124
+ #: classes/helpers/FrmAppHelper.php:1762
125
  #: classes/views/styles/_field-colors.php:10
126
  msgid "Active"
127
  msgstr ""
128
 
129
+ #: classes/controllers/FrmAddonsController.php:407
130
  msgid "Not Installed"
131
  msgstr ""
132
 
133
+ #: classes/controllers/FrmAddonsController.php:491
134
  msgid "Sorry, you're site requires FTP authentication. Please install plugins manaully."
135
  msgstr ""
136
 
139
  msgstr ""
140
 
141
  #: classes/controllers/FrmAppController.php:104
142
+ #: classes/helpers/FrmFormsListHelper.php:282
143
  #: classes/views/frm-forms/settings.php:10
144
  msgid "Settings"
145
  msgstr ""
147
  #: classes/controllers/FrmAppController.php:111
148
  #: classes/controllers/FrmEntriesController.php:8
149
  #: classes/controllers/FrmEntriesController.php:126
150
+ #: classes/controllers/FrmFormsController.php:711
151
+ #: classes/controllers/FrmXMLController.php:131
152
  #: classes/views/frm-entries/list.php:5
153
  msgid "Entries"
154
  msgstr ""
190
  msgstr ""
191
 
192
  #: classes/controllers/FrmEntriesController.php:105
193
+ #: classes/controllers/FrmFormsController.php:986
194
  #: classes/views/frm-entries/form.php:43
195
  #: classes/views/frm-entries/sidebar-shared.php:38
196
  msgid "Entry Key"
197
  msgstr ""
198
 
199
  #: classes/controllers/FrmEntriesController.php:110
200
+ #: classes/controllers/FrmFormsController.php:611
201
  #: classes/widgets/FrmShowForm.php:53
202
  msgid "Form"
203
  msgstr ""
263
  msgstr ""
264
 
265
  #: classes/controllers/FrmFormsController.php:6
266
+ #: classes/controllers/FrmFormsController.php:721
267
+ #: classes/controllers/FrmXMLController.php:130
268
  #: classes/views/frm-forms/list.php:5
269
  msgid "Forms"
270
  msgstr ""
271
 
272
+ #: classes/controllers/FrmFormsController.php:187
273
  msgid "Settings Successfully Updated"
274
  msgstr ""
275
 
276
+ #: classes/controllers/FrmFormsController.php:213
277
+ #: classes/controllers/FrmFormsController.php:835
278
  msgid "Form was Successfully Updated"
279
  msgstr ""
280
 
281
+ #: classes/controllers/FrmFormsController.php:250
282
+ #: deprecated/FrmDeprecated.php:342
283
  msgid "Form template was Successfully Created"
284
  msgstr ""
285
 
286
+ #: classes/controllers/FrmFormsController.php:250
287
  msgid "Form was Successfully Copied"
288
  msgstr ""
289
 
290
+ #: classes/controllers/FrmFormsController.php:254
291
  msgid "There was a problem creating the new template."
292
  msgstr ""
293
 
294
+ #: classes/controllers/FrmFormsController.php:361
295
  msgid "Form Preview"
296
  msgstr ""
297
 
298
+ #: classes/controllers/FrmFormsController.php:404
299
+ #: classes/controllers/FrmFormsController.php:463
300
  msgid "%1$s form restored from the Trash."
301
  msgid_plural "%1$s forms restored from the Trash."
302
  msgstr[0] ""
303
 
304
+ #: classes/controllers/FrmFormsController.php:464
305
+ #: classes/controllers/FrmFormsController.php:488
306
  msgid "%1$s form moved to the Trash. %2$sUndo%3$s"
307
  msgid_plural "%1$s forms moved to the Trash. %2$sUndo%3$s"
308
  msgstr[0] ""
309
 
310
+ #: classes/controllers/FrmFormsController.php:510
311
+ #: classes/controllers/FrmFormsController.php:526
312
+ #: classes/controllers/FrmFormsController.php:540
313
  msgid "%1$s form permanently deleted."
314
  msgid_plural "%1$s forms permanently deleted."
315
  msgstr[0] ""
316
 
317
+ #: classes/controllers/FrmFormsController.php:560
318
+ msgid "There was an error creating a template."
319
+ msgstr ""
320
+
321
+ #: classes/controllers/FrmFormsController.php:595
322
  msgid "Add forms and content"
323
  msgstr ""
324
 
325
+ #: classes/controllers/FrmFormsController.php:612
326
  #: classes/views/frm-forms/insert_form_popup.php:24
327
  msgid "Insert a Form"
328
  msgstr ""
329
 
330
+ #: classes/controllers/FrmFormsController.php:642
331
  msgid "Display form title"
332
  msgstr ""
333
 
334
+ #: classes/controllers/FrmFormsController.php:646
335
  msgid "Display form description"
336
  msgstr ""
337
 
338
+ #: classes/controllers/FrmFormsController.php:650
339
  msgid "Minimize form HTML"
340
  msgstr ""
341
 
342
+ #: classes/controllers/FrmFormsController.php:706
343
+ #: classes/views/frm-forms/template-name-overlay.php:9
344
  msgid "Template Name"
345
  msgstr ""
346
 
347
+ #: classes/controllers/FrmFormsController.php:707
348
  msgid "Type"
349
  msgstr ""
350
 
351
+ #: classes/controllers/FrmFormsController.php:708
352
+ #: classes/controllers/FrmFormsController.php:712
353
  #: classes/helpers/FrmCSVExportHelper.php:151
354
  msgid "Key"
355
  msgstr ""
356
 
357
+ #: classes/controllers/FrmFormsController.php:710
358
  #: classes/controllers/FrmStylesController.php:376
359
  #: classes/views/styles/_sample_form.php:17
360
  #: classes/views/styles/manage.php:16
361
  msgid "Form Title"
362
  msgstr ""
363
 
364
+ #: classes/controllers/FrmFormsController.php:713
365
  msgid "Shortcodes"
366
  msgstr ""
367
 
368
+ #: classes/controllers/FrmFormsController.php:716
369
  #: classes/models/FrmField.php:81
370
  msgid "Date"
371
  msgstr ""
372
 
373
+ #: classes/controllers/FrmFormsController.php:811
374
  msgid "You are trying to edit a form that does not exist."
375
  msgstr ""
376
 
377
+ #: classes/controllers/FrmFormsController.php:815
378
  msgid "You are trying to edit a child form. Please edit from %1$shere%2$s"
379
  msgstr ""
380
 
381
+ #: classes/controllers/FrmFormsController.php:837
382
  msgid "Template was Successfully Updated"
383
  msgstr ""
384
 
385
+ #: classes/controllers/FrmFormsController.php:908
 
 
 
 
 
386
  msgid "Customize the field values with the following parameters. Click to see a sample."
387
  msgstr ""
388
 
389
+ #: classes/controllers/FrmFormsController.php:922
390
  msgid "Insert user information"
391
  msgstr ""
392
 
393
+ #: classes/controllers/FrmFormsController.php:945
394
  msgid "Separator"
395
  msgstr ""
396
 
397
+ #: classes/controllers/FrmFormsController.php:946
398
  msgid "Use a different separator for checkbox fields"
399
  msgstr ""
400
 
401
+ #: classes/controllers/FrmFormsController.php:948
402
  msgid "Date Format"
403
  msgstr ""
404
 
405
+ #: classes/controllers/FrmFormsController.php:949
406
  msgid "Field Label"
407
  msgstr ""
408
 
409
+ #: classes/controllers/FrmFormsController.php:951
410
  msgid "No Auto P"
411
  msgstr ""
412
 
413
+ #: classes/controllers/FrmFormsController.php:952
414
  msgid "Do not automatically add any paragraphs or line breaks"
415
  msgstr ""
416
 
417
+ #: classes/controllers/FrmFormsController.php:966
418
  #: classes/models/FrmField.php:58
419
  msgid "User ID"
420
  msgstr ""
421
 
422
+ #: classes/controllers/FrmFormsController.php:967
423
  msgid "First Name"
424
  msgstr ""
425
 
426
+ #: classes/controllers/FrmFormsController.php:968
427
  msgid "Last Name"
428
  msgstr ""
429
 
430
+ #: classes/controllers/FrmFormsController.php:969
431
  msgid "Display Name"
432
  msgstr ""
433
 
434
+ #: classes/controllers/FrmFormsController.php:970
435
  msgid "User Login"
436
  msgstr ""
437
 
438
+ #: classes/controllers/FrmFormsController.php:971
439
  #: classes/models/FrmField.php:34
440
  msgid "Email"
441
  msgstr ""
442
 
443
+ #: classes/controllers/FrmFormsController.php:972
444
  msgid "Avatar"
445
  msgstr ""
446
 
447
+ #: classes/controllers/FrmFormsController.php:973
448
  msgid "Author Link"
449
  msgstr ""
450
 
451
+ #: classes/controllers/FrmFormsController.php:985
452
  #: classes/views/frm-entries/sidebar-shared.php:32
453
  msgid "Entry ID"
454
  msgstr ""
455
 
456
+ #: classes/controllers/FrmFormsController.php:987
457
  msgid "Post ID"
458
  msgstr ""
459
 
460
+ #: classes/controllers/FrmFormsController.php:988
461
  msgid "User IP"
462
  msgstr ""
463
 
464
+ #: classes/controllers/FrmFormsController.php:989
465
  msgid "Entry created"
466
  msgstr ""
467
 
468
+ #: classes/controllers/FrmFormsController.php:990
469
  msgid "Entry updated"
470
  msgstr ""
471
 
472
+ #: classes/controllers/FrmFormsController.php:992
473
  msgid "Site URL"
474
  msgstr ""
475
 
476
+ #: classes/controllers/FrmFormsController.php:993
477
  msgid "Site Name"
478
  msgstr ""
479
 
480
+ #: classes/controllers/FrmFormsController.php:1001
481
  msgid "Default Msg"
482
  msgstr ""
483
 
484
+ #: classes/controllers/FrmFormsController.php:1002
485
  msgid "Default HTML"
486
  msgstr ""
487
 
488
+ #: classes/controllers/FrmFormsController.php:1003
489
  msgid "Default Plain"
490
  msgstr ""
491
 
492
+ #: classes/controllers/FrmFormsController.php:1092
493
  msgid "No forms were specified"
494
  msgstr ""
495
 
496
+ #: classes/controllers/FrmFormsController.php:1195
497
  msgid "Abnormal HTML characters prevented your form from saving correctly"
498
  msgstr ""
499
 
500
+ #: classes/controllers/FrmFormsController.php:1264
501
+ #: classes/helpers/FrmFormsHelper.php:55
502
+ #: classes/helpers/FrmFormsHelper.php:113
503
+ #: classes/helpers/FrmFormsHelper.php:777
504
+ #: classes/helpers/FrmFormsListHelper.php:295
505
+ #: classes/views/frm-forms/list-templates.php:56
506
+ #: classes/views/shared/admin-header.php:29
507
+ #: classes/views/shared/form-nav.php:20
508
+ #: classes/views/styles/manage.php:36
509
+ #: classes/views/xml/import_form.php:96
510
+ msgid "(no title)"
511
+ msgstr ""
512
+
513
+ #: classes/controllers/FrmFormsController.php:1310
514
+ #: classes/controllers/FrmFormsController.php:1324
515
  msgid "Please select a valid form"
516
  msgstr ""
517
 
518
+ #: classes/controllers/FrmFormsController.php:1555
519
  msgid "Please wait while you are redirected."
520
  msgstr ""
521
 
522
+ #: classes/controllers/FrmFormsController.php:1589
523
  msgid "%1$sClick here%2$s if you are not automatically redirected."
524
  msgstr ""
525
 
612
  msgid "Style"
613
  msgstr ""
614
 
615
+ #: classes/controllers/FrmStylesController.php:38
616
+ #: classes/helpers/FrmFormsListHelper.php:281
617
+ #: classes/views/frm-entries/sidebar-shared.php:21
618
+ msgid "Edit"
619
+ msgstr ""
620
+
621
  #: classes/controllers/FrmStylesController.php:39
622
  msgid "Create a New Style"
623
  msgstr ""
644
  #: classes/controllers/FrmStylesController.php:377
645
  #: classes/views/frm-forms/mb_html_tab.php:49
646
  #: classes/views/frm-forms/settings.php:248
647
+ #: classes/views/frm-forms/template-name-overlay.php:16
648
+ #: classes/views/frm-forms/template-name-overlay.php:17
649
  msgid "Form Description"
650
  msgstr ""
651
 
685
  msgstr ""
686
 
687
  #: classes/controllers/FrmXMLController.php:6
688
+ #: classes/views/xml/import_form.php:5
689
  msgid "Import/Export"
690
  msgstr ""
691
 
692
+ #: classes/controllers/FrmXMLController.php:49
693
+ msgid "There was an error reading the form template"
694
+ msgstr ""
695
+
696
+ #: classes/controllers/FrmXMLController.php:69
697
+ msgid "There was an error importing form"
698
+ msgstr ""
699
+
700
+ #: classes/controllers/FrmXMLController.php:164
701
  msgid "Oops, you didn't select a file."
702
  msgstr ""
703
 
704
+ #: classes/controllers/FrmXMLController.php:173
705
  msgid "The file does not exist, please try again."
706
  msgstr ""
707
 
708
+ #: classes/controllers/FrmXMLController.php:198
709
  msgid "XML import is not enabled on your server with the libxml_disable_entity_loader function."
710
  msgstr ""
711
 
712
+ #: classes/controllers/FrmXMLController.php:402
713
  msgid "Please select a form"
714
  msgstr ""
715
 
716
+ #: classes/controllers/FrmXMLController.php:459
717
  msgid "There are no entries for that form."
718
  msgstr ""
719
 
720
  #: classes/helpers/FrmAppHelper.php:616
721
+ #: classes/helpers/FrmFormsListHelper.php:102
722
  msgid "Add New"
723
  msgstr ""
724
 
725
+ #: classes/helpers/FrmAppHelper.php:635
726
+ #: classes/views/frm-entries/list.php:19
727
+ #: classes/views/frm-forms/list.php:21
728
+ #: classes/views/shared/mb_adv_info.php:21
729
+ msgid "Search"
730
+ msgstr ""
731
+
732
+ #: classes/helpers/FrmAppHelper.php:763
733
  msgid "View Forms and Templates"
734
  msgstr ""
735
 
736
+ #: classes/helpers/FrmAppHelper.php:764
737
  msgid "Add/Edit Forms and Templates"
738
  msgstr ""
739
 
740
+ #: classes/helpers/FrmAppHelper.php:765
741
  msgid "Delete Forms and Templates"
742
  msgstr ""
743
 
744
+ #: classes/helpers/FrmAppHelper.php:766
745
  msgid "Access this Settings Page"
746
  msgstr ""
747
 
748
+ #: classes/helpers/FrmAppHelper.php:767
749
  msgid "View Entries from Admin Area"
750
  msgstr ""
751
 
752
+ #: classes/helpers/FrmAppHelper.php:768
753
  msgid "Delete Entries from Admin Area"
754
  msgstr ""
755
 
756
+ #: classes/helpers/FrmAppHelper.php:775
757
  msgid "Add Entries from Admin Area"
758
  msgstr ""
759
 
760
+ #: classes/helpers/FrmAppHelper.php:776
761
  msgid "Edit Entries from Admin Area"
762
  msgstr ""
763
 
764
+ #: classes/helpers/FrmAppHelper.php:777
765
  msgid "View Reports"
766
  msgstr ""
767
 
768
+ #: classes/helpers/FrmAppHelper.php:778
769
  msgid "Add/Edit Views"
770
  msgstr ""
771
 
772
+ #: classes/helpers/FrmAppHelper.php:1382
773
  msgid "at"
774
  msgstr ""
775
 
776
+ #: classes/helpers/FrmAppHelper.php:1431
777
+ #: classes/helpers/FrmAppHelper.php:1450
778
  msgid "seconds"
779
  msgstr ""
780
 
781
+ #: classes/helpers/FrmAppHelper.php:1444
782
  msgid "year"
783
  msgstr ""
784
 
785
+ #: classes/helpers/FrmAppHelper.php:1444
786
  msgid "years"
787
  msgstr ""
788
 
789
+ #: classes/helpers/FrmAppHelper.php:1445
790
  msgid "month"
791
  msgstr ""
792
 
793
+ #: classes/helpers/FrmAppHelper.php:1445
794
  msgid "months"
795
  msgstr ""
796
 
797
+ #: classes/helpers/FrmAppHelper.php:1446
798
  msgid "week"
799
  msgstr ""
800
 
801
+ #: classes/helpers/FrmAppHelper.php:1446
802
  msgid "weeks"
803
  msgstr ""
804
 
805
+ #: classes/helpers/FrmAppHelper.php:1447
806
  msgid "day"
807
  msgstr ""
808
 
809
+ #: classes/helpers/FrmAppHelper.php:1447
810
  msgid "days"
811
  msgstr ""
812
 
813
+ #: classes/helpers/FrmAppHelper.php:1448
814
  msgid "hour"
815
  msgstr ""
816
 
817
+ #: classes/helpers/FrmAppHelper.php:1448
818
  msgid "hours"
819
  msgstr ""
820
 
821
+ #: classes/helpers/FrmAppHelper.php:1449
822
  msgid "minute"
823
  msgstr ""
824
 
825
+ #: classes/helpers/FrmAppHelper.php:1449
826
  msgid "minutes"
827
  msgstr ""
828
 
829
+ #: classes/helpers/FrmAppHelper.php:1450
830
  msgid "second"
831
  msgstr ""
832
 
833
+ #: classes/helpers/FrmAppHelper.php:1542
834
  msgid "Give this action a label for easy reference."
835
  msgstr ""
836
 
837
+ #: classes/helpers/FrmAppHelper.php:1543
838
  msgid "Add one or more recipient addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com. [admin_email] is the address set in WP General Settings."
839
  msgstr ""
840
 
841
+ #: classes/helpers/FrmAppHelper.php:1544
842
  msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
843
  msgstr ""
844
 
845
+ #: classes/helpers/FrmAppHelper.php:1545
846
  msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
847
  msgstr ""
848
 
849
+ #: classes/helpers/FrmAppHelper.php:1546
850
  msgid "If you would like a different reply to address than the \"from\" address, add a single address here. FORMAT: Name <name@email.com> or name@email.com."
851
  msgstr ""
852
 
853
+ #: classes/helpers/FrmAppHelper.php:1547
854
  msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
855
  msgstr ""
856
 
857
+ #: classes/helpers/FrmAppHelper.php:1548
858
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
859
  msgstr ""
860
 
861
+ #: classes/helpers/FrmAppHelper.php:1680
862
+ #: classes/helpers/FrmAppHelper.php:1750
863
  msgid "Please wait while your site updates."
864
  msgstr ""
865
 
866
+ #: classes/helpers/FrmAppHelper.php:1681
867
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
868
  msgstr ""
869
 
870
+ #: classes/helpers/FrmAppHelper.php:1683
871
+ #: classes/helpers/FrmAppHelper.php:1710
872
+ msgid "Loading&hellip;"
873
+ msgstr ""
874
+
875
+ #: classes/helpers/FrmAppHelper.php:1711
876
  msgid "Remove"
877
  msgstr ""
878
 
879
+ #: classes/helpers/FrmAppHelper.php:1714
880
  #: classes/helpers/FrmCSVExportHelper.php:150
881
  msgid "ID"
882
  msgstr ""
883
 
884
+ #: classes/helpers/FrmAppHelper.php:1715
885
  msgid "No results match"
886
  msgstr ""
887
 
888
+ #: classes/helpers/FrmAppHelper.php:1716
889
  msgid "That file looks like Spam."
890
  msgstr ""
891
 
892
+ #: classes/helpers/FrmAppHelper.php:1717
893
  msgid "There is an error in the calculation in the field with key"
894
  msgstr ""
895
 
896
+ #: classes/helpers/FrmAppHelper.php:1718
897
  msgid "Please complete the preceding required fields before uploading a file."
898
  msgstr ""
899
 
900
+ #: classes/helpers/FrmAppHelper.php:1725
901
  msgid "Are you sure you want to do this? Clicking OK will delete all forms, form data, and all other Formidable data. There is no Undo."
902
  msgstr ""
903
 
904
+ #: classes/helpers/FrmAppHelper.php:1726
905
  #: classes/views/frm-forms/add_field.php:37
906
  #: classes/views/frm-forms/add_field.php:50
907
  msgid "(Click to add description)"
908
  msgstr ""
909
 
910
+ #: classes/helpers/FrmAppHelper.php:1727
911
  #: classes/views/frm-fields/single-option.php:8
912
  #: classes/views/frm-fields/single-option.php:14
913
  msgid "(Blank)"
914
  msgstr ""
915
 
916
+ #: classes/helpers/FrmAppHelper.php:1728
917
  #: classes/views/frm-forms/add_field.php:17
918
  msgid "(no label)"
919
  msgstr ""
920
 
921
+ #: classes/helpers/FrmAppHelper.php:1729
922
  msgid "Saving"
923
  msgstr ""
924
 
925
+ #: classes/helpers/FrmAppHelper.php:1730
926
  msgid "Saved"
927
  msgstr ""
928
 
929
+ #: classes/helpers/FrmAppHelper.php:1731
930
+ msgid "OK"
931
+ msgstr ""
932
+
933
+ #: classes/helpers/FrmAppHelper.php:1732
934
+ #: classes/views/frm-forms/template-name-overlay.php:29
935
+ #: classes/views/shared/admin-header.php:15
936
  msgid "Cancel"
937
  msgstr ""
938
 
939
+ #: classes/helpers/FrmAppHelper.php:1733
 
940
  #: classes/views/frm-forms/add_field.php:197
941
  #: classes/views/styles/_buttons.php:12
942
  #: classes/views/styles/_field-colors.php:5
943
  msgid "Default"
944
  msgstr ""
945
 
946
+ #: classes/helpers/FrmAppHelper.php:1734
947
  #: classes/helpers/FrmFieldsHelper.php:1120
948
  msgid "Clear default value when typing"
949
  msgstr ""
950
 
951
+ #: classes/helpers/FrmAppHelper.php:1735
952
  #: classes/helpers/FrmFieldsHelper.php:1120
953
  msgid "Do not clear default value when typing"
954
  msgstr ""
955
 
956
+ #: classes/helpers/FrmAppHelper.php:1736
957
  #: classes/helpers/FrmFieldsHelper.php:1130
958
  msgid "Default value will pass form validation"
959
  msgstr ""
960
 
961
+ #: classes/helpers/FrmAppHelper.php:1737
962
  #: classes/helpers/FrmFieldsHelper.php:1130
963
  msgid "Default value will NOT pass form validation"
964
  msgstr ""
965
 
966
+ #: classes/helpers/FrmAppHelper.php:1738
967
  #: classes/helpers/FrmEntriesListHelper.php:257
968
+ #: classes/helpers/FrmFormsHelper.php:850
969
+ #: classes/views/frm-forms/list-templates.php:123
970
  #: classes/views/styles/show.php:64
971
  msgid "Are you sure?"
972
  msgstr ""
973
 
974
+ #: classes/helpers/FrmAppHelper.php:1739
975
  msgid "Are you sure you want to delete this field and all data associated with it?"
976
  msgstr ""
977
 
978
+ #: classes/helpers/FrmAppHelper.php:1740
979
  msgid "WARNING: This will delete all fields inside of the section as well."
980
  msgstr ""
981
 
982
+ #: classes/helpers/FrmAppHelper.php:1741
983
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
984
  msgstr ""
985
 
986
+ #: classes/helpers/FrmAppHelper.php:1743
987
  #: classes/helpers/FrmFieldsHelper.php:271
988
  msgid "The entered values do not match"
989
  msgstr ""
990
 
991
+ #: classes/helpers/FrmAppHelper.php:1744
992
  msgid "Enter Email"
993
  msgstr ""
994
 
995
+ #: classes/helpers/FrmAppHelper.php:1745
996
  msgid "Confirm Email"
997
  msgstr ""
998
 
999
+ #: classes/helpers/FrmAppHelper.php:1746
1000
  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."
1001
  msgstr ""
1002
 
1003
+ #: classes/helpers/FrmAppHelper.php:1747
1004
  msgid "Enter Password"
1005
  msgstr ""
1006
 
1007
+ #: classes/helpers/FrmAppHelper.php:1748
1008
  msgid "Confirm Password"
1009
  msgstr ""
1010
 
1011
+ #: classes/helpers/FrmAppHelper.php:1749
1012
  msgid "Import Complete"
1013
  msgstr ""
1014
 
1015
+ #: classes/helpers/FrmAppHelper.php:1751
1016
  msgid "Warning: There is no way to retrieve unsaved entries."
1017
  msgstr ""
1018
 
1019
+ #: classes/helpers/FrmAppHelper.php:1752
1020
+ msgid "Private"
1021
+ msgstr ""
1022
+
1023
+ #: classes/helpers/FrmAppHelper.php:1755
1024
  msgid "No new licenses were found"
1025
  msgstr ""
1026
 
1027
+ #: classes/helpers/FrmAppHelper.php:1756
1028
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
1029
  msgstr ""
1030
 
1031
+ #: classes/helpers/FrmAppHelper.php:1757
1032
  msgid "This calculation may have shortcodes that work in Views but not forms."
1033
  msgstr ""
1034
 
1035
+ #: classes/helpers/FrmAppHelper.php:1758
1036
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
1037
  msgstr ""
1038
 
1039
+ #: classes/helpers/FrmAppHelper.php:1759
1040
  msgid "Please enter a Repeat Limit that is greater than 1."
1041
  msgstr ""
1042
 
1043
+ #: classes/helpers/FrmAppHelper.php:1760
1044
  msgid "Installing"
1045
  msgstr ""
1046
 
1047
+ #: classes/helpers/FrmAppHelper.php:1761
1048
  #: classes/views/addons/list.php:40
1049
  #: classes/views/addons/list.php:41
1050
  msgid "Install"
1051
  msgstr ""
1052
 
1053
+ #: classes/helpers/FrmAppHelper.php:1785
1054
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
1055
  msgstr ""
1056
 
1057
+ #: classes/helpers/FrmAppHelper.php:1791
1058
  msgid "English"
1059
  msgstr ""
1060
 
1061
+ #: classes/helpers/FrmAppHelper.php:1792
1062
  msgid "English/Western"
1063
  msgstr ""
1064
 
1065
+ #: classes/helpers/FrmAppHelper.php:1793
1066
  msgid "Afrikaans"
1067
  msgstr ""
1068
 
1069
+ #: classes/helpers/FrmAppHelper.php:1794
1070
  msgid "Albanian"
1071
  msgstr ""
1072
 
1073
+ #: classes/helpers/FrmAppHelper.php:1795
1074
  msgid "Arabic"
1075
  msgstr ""
1076
 
1077
+ #: classes/helpers/FrmAppHelper.php:1796
1078
  msgid "Armenian"
1079
  msgstr ""
1080
 
1081
+ #: classes/helpers/FrmAppHelper.php:1797
1082
  msgid "Azerbaijani"
1083
  msgstr ""
1084
 
1085
+ #: classes/helpers/FrmAppHelper.php:1798
1086
  msgid "Basque"
1087
  msgstr ""
1088
 
1089
+ #: classes/helpers/FrmAppHelper.php:1799
1090
  msgid "Bosnian"
1091
  msgstr ""
1092
 
1093
+ #: classes/helpers/FrmAppHelper.php:1800
1094
  msgid "Bulgarian"
1095
  msgstr ""
1096
 
1097
+ #: classes/helpers/FrmAppHelper.php:1801
1098
  msgid "Catalan"
1099
  msgstr ""
1100
 
1101
+ #: classes/helpers/FrmAppHelper.php:1802
1102
  msgid "Chinese Hong Kong"
1103
  msgstr ""
1104
 
1105
+ #: classes/helpers/FrmAppHelper.php:1803
1106
  msgid "Chinese Simplified"
1107
  msgstr ""
1108
 
1109
+ #: classes/helpers/FrmAppHelper.php:1804
1110
  msgid "Chinese Traditional"
1111
  msgstr ""
1112
 
1113
+ #: classes/helpers/FrmAppHelper.php:1805
1114
  msgid "Croatian"
1115
  msgstr ""
1116
 
1117
+ #: classes/helpers/FrmAppHelper.php:1806
1118
  msgid "Czech"
1119
  msgstr ""
1120
 
1121
+ #: classes/helpers/FrmAppHelper.php:1807
1122
  msgid "Danish"
1123
  msgstr ""
1124
 
1125
+ #: classes/helpers/FrmAppHelper.php:1808
1126
  msgid "Dutch"
1127
  msgstr ""
1128
 
1129
+ #: classes/helpers/FrmAppHelper.php:1809
1130
  msgid "English/UK"
1131
  msgstr ""
1132
 
1133
+ #: classes/helpers/FrmAppHelper.php:1810
1134
  msgid "Esperanto"
1135
  msgstr ""
1136
 
1137
+ #: classes/helpers/FrmAppHelper.php:1811
1138
  msgid "Estonian"
1139
  msgstr ""
1140
 
1141
+ #: classes/helpers/FrmAppHelper.php:1812
1142
  msgid "Faroese"
1143
  msgstr ""
1144
 
1145
+ #: classes/helpers/FrmAppHelper.php:1813
1146
  msgid "Farsi/Persian"
1147
  msgstr ""
1148
 
1149
+ #: classes/helpers/FrmAppHelper.php:1814
1150
  msgid "Filipino"
1151
  msgstr ""
1152
 
1153
+ #: classes/helpers/FrmAppHelper.php:1815
1154
  msgid "Finnish"
1155
  msgstr ""
1156
 
1157
+ #: classes/helpers/FrmAppHelper.php:1816
1158
  msgid "French"
1159
  msgstr ""
1160
 
1161
+ #: classes/helpers/FrmAppHelper.php:1817
1162
  msgid "French/Canadian"
1163
  msgstr ""
1164
 
1165
+ #: classes/helpers/FrmAppHelper.php:1818
1166
  msgid "French/Swiss"
1167
  msgstr ""
1168
 
1169
+ #: classes/helpers/FrmAppHelper.php:1819
1170
  msgid "German"
1171
  msgstr ""
1172
 
1173
+ #: classes/helpers/FrmAppHelper.php:1820
1174
  msgid "German/Austria"
1175
  msgstr ""
1176
 
1177
+ #: classes/helpers/FrmAppHelper.php:1821
1178
  msgid "German/Switzerland"
1179
  msgstr ""
1180
 
1181
+ #: classes/helpers/FrmAppHelper.php:1822
1182
  msgid "Greek"
1183
  msgstr ""
1184
 
1185
+ #: classes/helpers/FrmAppHelper.php:1823
1186
+ #: classes/helpers/FrmAppHelper.php:1824
1187
  msgid "Hebrew"
1188
  msgstr ""
1189
 
1190
+ #: classes/helpers/FrmAppHelper.php:1825
1191
  msgid "Hindi"
1192
  msgstr ""
1193
 
1194
+ #: classes/helpers/FrmAppHelper.php:1826
1195
  msgid "Hungarian"
1196
  msgstr ""
1197
 
1198
+ #: classes/helpers/FrmAppHelper.php:1827
1199
  msgid "Icelandic"
1200
  msgstr ""
1201
 
1202
+ #: classes/helpers/FrmAppHelper.php:1828
1203
  msgid "Indonesian"
1204
  msgstr ""
1205
 
1206
+ #: classes/helpers/FrmAppHelper.php:1829
1207
  msgid "Italian"
1208
  msgstr ""
1209
 
1210
+ #: classes/helpers/FrmAppHelper.php:1830
1211
  msgid "Japanese"
1212
  msgstr ""
1213
 
1214
+ #: classes/helpers/FrmAppHelper.php:1831
1215
  msgid "Korean"
1216
  msgstr ""
1217
 
1218
+ #: classes/helpers/FrmAppHelper.php:1832
1219
  msgid "Latvian"
1220
  msgstr ""
1221
 
1222
+ #: classes/helpers/FrmAppHelper.php:1833
1223
  msgid "Lithuanian"
1224
  msgstr ""
1225
 
1226
+ #: classes/helpers/FrmAppHelper.php:1834
1227
  msgid "Malaysian"
1228
  msgstr ""
1229
 
1230
+ #: classes/helpers/FrmAppHelper.php:1835
1231
  msgid "Norwegian"
1232
  msgstr ""
1233
 
1234
+ #: classes/helpers/FrmAppHelper.php:1836
1235
  msgid "Polish"
1236
  msgstr ""
1237
 
1238
+ #: classes/helpers/FrmAppHelper.php:1837
1239
  msgid "Portuguese"
1240
  msgstr ""
1241
 
1242
+ #: classes/helpers/FrmAppHelper.php:1838
1243
  msgid "Portuguese/Brazilian"
1244
  msgstr ""
1245
 
1246
+ #: classes/helpers/FrmAppHelper.php:1839
1247
  msgid "Portuguese/Portugal"
1248
  msgstr ""
1249
 
1250
+ #: classes/helpers/FrmAppHelper.php:1840
1251
  msgid "Romanian"
1252
  msgstr ""
1253
 
1254
+ #: classes/helpers/FrmAppHelper.php:1841
1255
  msgid "Russian"
1256
  msgstr ""
1257
 
1258
+ #: classes/helpers/FrmAppHelper.php:1842
1259
+ #: classes/helpers/FrmAppHelper.php:1843
1260
  msgid "Serbian"
1261
  msgstr ""
1262
 
1263
+ #: classes/helpers/FrmAppHelper.php:1844
1264
  msgid "Slovak"
1265
  msgstr ""
1266
 
1267
+ #: classes/helpers/FrmAppHelper.php:1845
1268
  msgid "Slovenian"
1269
  msgstr ""
1270
 
1271
+ #: classes/helpers/FrmAppHelper.php:1846
1272
  msgid "Spanish"
1273
  msgstr ""
1274
 
1275
+ #: classes/helpers/FrmAppHelper.php:1847
1276
  msgid "Spanish/Latin America"
1277
  msgstr ""
1278
 
1279
+ #: classes/helpers/FrmAppHelper.php:1848
1280
  msgid "Swedish"
1281
  msgstr ""
1282
 
1283
+ #: classes/helpers/FrmAppHelper.php:1849
1284
  msgid "Tamil"
1285
  msgstr ""
1286
 
1287
+ #: classes/helpers/FrmAppHelper.php:1850
1288
  msgid "Thai"
1289
  msgstr ""
1290
 
1291
+ #: classes/helpers/FrmAppHelper.php:1851
1292
+ #: classes/helpers/FrmAppHelper.php:1852
1293
  msgid "Turkish"
1294
  msgstr ""
1295
 
1296
+ #: classes/helpers/FrmAppHelper.php:1853
1297
  msgid "Ukranian"
1298
  msgstr ""
1299
 
1300
+ #: classes/helpers/FrmAppHelper.php:1854
1301
  msgid "Vietnamese"
1302
  msgstr ""
1303
 
1330
  msgstr ""
1331
 
1332
  #: classes/helpers/FrmCSVExportHelper.php:148
1333
+ #: classes/helpers/FrmFormsHelper.php:964
1334
+ #: classes/helpers/FrmFormsListHelper.php:322
1335
  msgid "Draft"
1336
  msgstr ""
1337
 
1348
  msgid "Unknown"
1349
  msgstr ""
1350
 
1351
+ #: classes/helpers/FrmEntriesHelper.php:541
1352
+ #: classes/helpers/FrmEntriesListHelper.php:257
1353
+ #: classes/helpers/FrmFormsHelper.php:854
1354
+ #: classes/helpers/FrmFormsListHelper.php:121
1355
+ #: classes/models/FrmFormAction.php:743
1356
+ #: classes/views/frm-form-actions/form_action.php:19
1357
+ #: classes/views/frm-forms/list-templates.php:124
1358
+ msgid "Delete"
1359
+ msgstr ""
1360
+
1361
  #: classes/helpers/FrmEntriesHelper.php:543
1362
  msgid "Really delete?"
1363
  msgstr ""
1370
  msgid "View all forms"
1371
  msgstr ""
1372
 
1373
+ #: classes/helpers/FrmEntriesListHelper.php:114
1374
+ msgid "Filter"
1375
+ msgstr ""
1376
+
1377
+ #: classes/helpers/FrmEntriesListHelper.php:224
1378
+ msgid "No"
1379
+ msgstr ""
1380
+
1381
+ #: classes/helpers/FrmEntriesListHelper.php:224
1382
+ msgid "Yes"
1383
+ msgstr ""
1384
+
1385
  #: classes/helpers/FrmEntriesListHelper.php:253
1386
  #: classes/views/frm-entries/sidebar-shared.php:24
1387
  msgid "View"
1389
 
1390
  #: classes/helpers/FrmFieldsHelper.php:163
1391
  #: classes/helpers/FrmFieldsHelper.php:279
1392
+ #: classes/helpers/FrmXMLHelper.php:954
1393
  #: classes/models/fields/FrmFieldType.php:327
1394
  msgid "%s is invalid"
1395
  msgstr ""
1407
  msgid "Please add options from the WordPress \"%1$s\" page"
1408
  msgstr ""
1409
 
1410
+ #: classes/helpers/FrmFieldsHelper.php:441
1411
+ msgid "Categories"
1412
+ msgstr ""
1413
+
1414
  #: classes/helpers/FrmFieldsHelper.php:1236
1415
  msgid "Afghanistan"
1416
  msgstr ""
2379
  msgid "Strongly Disagree"
2380
  msgstr ""
2381
 
 
 
 
 
2382
  #: classes/helpers/FrmFormsHelper.php:55
2383
  msgid " (child)"
2384
  msgstr ""
2389
 
2390
  #: classes/helpers/FrmFormsHelper.php:129
2391
  #: classes/models/FrmFormAction.php:742
2392
+ #: classes/views/frm-forms/_publish_box.php:16
2393
+ #: classes/views/frm-forms/_publish_box.php:20
2394
  #: classes/views/frm-forms/add_field_links.php:7
2395
  #: classes/views/frm-forms/edit.php:25
2396
  #: classes/views/frm-forms/settings.php:368
2400
  #: classes/helpers/FrmFormsHelper.php:129
2401
  #: classes/models/FrmFormAction.php:741
2402
  #: classes/views/frm-forms/add_field_links.php:7
2403
+ #: classes/views/frm-forms/template-name-overlay.php:25
2404
  msgid "Create"
2405
  msgstr ""
2406
 
2407
+ #: classes/helpers/FrmFormsHelper.php:750
2408
  msgid "Create Form from Template"
2409
  msgstr ""
2410
 
2411
+ #: classes/helpers/FrmFormsHelper.php:756
2412
  msgid "Duplicate Form"
2413
  msgstr ""
2414
 
2415
+ #: classes/helpers/FrmFormsHelper.php:841
2416
  msgid "Restore from Trash"
2417
  msgstr ""
2418
 
2419
+ #: classes/helpers/FrmFormsHelper.php:842
2420
+ #: classes/helpers/FrmFormsListHelper.php:112
2421
  msgid "Restore"
2422
  msgstr ""
2423
 
2424
+ #: classes/helpers/FrmFormsHelper.php:846
2425
  msgid "Move Form to Trash"
2426
  msgstr ""
2427
 
2428
+ #: classes/helpers/FrmFormsHelper.php:847
2429
+ #: classes/helpers/FrmFormsHelper.php:965
2430
+ #: classes/helpers/FrmFormsListHelper.php:146
2431
  msgid "Trash"
2432
  msgstr ""
2433
 
2434
+ #: classes/helpers/FrmFormsHelper.php:853
2435
+ #: classes/helpers/FrmFormsListHelper.php:116
2436
  msgid "Delete Permanently"
2437
  msgstr ""
2438
 
2439
  #: classes/helpers/FrmFormsHelper.php:856
 
 
 
 
 
 
2440
  msgid "Are you sure you want to delete this form and all its entries?"
2441
  msgstr ""
2442
 
2443
+ #: classes/helpers/FrmFormsHelper.php:858
2444
  msgid "Delete form & entries?"
2445
  msgstr ""
2446
 
2447
+ #: classes/helpers/FrmFormsHelper.php:869
2448
  msgid "First"
2449
  msgstr ""
2450
 
2451
+ #: classes/helpers/FrmFormsHelper.php:870
2452
  msgid "Add this to the first field in each row along with a width. ie frm_first frm4"
2453
  msgstr ""
2454
 
2455
+ #: classes/helpers/FrmFormsHelper.php:872
2456
  #: classes/helpers/FrmStylesHelper.php:40
2457
  msgid "Right"
2458
  msgstr ""
2459
 
2460
+ #: classes/helpers/FrmFormsHelper.php:874
2461
  msgid "Total"
2462
  msgstr ""
2463
 
2464
+ #: classes/helpers/FrmFormsHelper.php:875
2465
  msgid "Add this to a read-only field to display the text in bold without a border or background."
2466
  msgstr ""
2467
 
2468
+ #: classes/helpers/FrmFormsHelper.php:877
2469
  msgid "First Grid Row"
2470
  msgstr ""
2471
 
2472
+ #: classes/helpers/FrmFormsHelper.php:878
2473
  msgid "Even Grid Row"
2474
  msgstr ""
2475
 
2476
+ #: classes/helpers/FrmFormsHelper.php:879
2477
  msgid "Odd Grid Row"
2478
  msgstr ""
2479
 
2480
+ #: classes/helpers/FrmFormsHelper.php:881
2481
  msgid "2 Col Options"
2482
  msgstr ""
2483
 
2484
+ #: classes/helpers/FrmFormsHelper.php:882
2485
  msgid "Put your radio button or checkbox options into two columns."
2486
  msgstr ""
2487
 
2488
+ #: classes/helpers/FrmFormsHelper.php:885
2489
  msgid "3 Col Options"
2490
  msgstr ""
2491
 
2492
+ #: classes/helpers/FrmFormsHelper.php:886
2493
  msgid "Put your radio button or checkbox options into three columns."
2494
  msgstr ""
2495
 
2496
+ #: classes/helpers/FrmFormsHelper.php:889
2497
  msgid "4 Col Options"
2498
  msgstr ""
2499
 
2500
+ #: classes/helpers/FrmFormsHelper.php:890
2501
  msgid "Put your radio button or checkbox options into four columns."
2502
  msgstr ""
2503
 
2504
+ #: classes/helpers/FrmFormsHelper.php:893
2505
  msgid "Scroll Box"
2506
  msgstr ""
2507
 
2508
+ #: classes/helpers/FrmFormsHelper.php:894
2509
  msgid "If you have many checkbox or radio button options, you may add this class to allow your user to easily scroll through the options."
2510
  msgstr ""
2511
 
2512
+ #: classes/helpers/FrmFormsHelper.php:897
2513
  msgid "Capitalize"
2514
  msgstr ""
2515
 
2516
+ #: classes/helpers/FrmFormsHelper.php:898
2517
  msgid "Automatically capitalize the first letter in each word."
2518
  msgstr ""
2519
 
2520
+ #: classes/helpers/FrmFormsHelper.php:966
2521
  msgid "Published"
2522
  msgstr ""
2523
 
2524
+ #: classes/helpers/FrmFormsListHelper.php:99
 
 
 
 
2525
  msgid "No Forms Found."
2526
  msgstr ""
2527
 
2528
+ #: classes/helpers/FrmFormsListHelper.php:119
2529
  msgid "Move to Trash"
2530
  msgstr ""
2531
 
2532
+ #: classes/helpers/FrmFormsListHelper.php:135
2533
+ msgid "Empty Trash"
2534
  msgstr ""
2535
 
2536
+ #: classes/helpers/FrmFormsListHelper.php:144
2537
+ msgid "My Forms"
2538
  msgstr ""
2539
 
2540
+ #: classes/helpers/FrmFormsListHelper.php:145
2541
+ msgid "Drafts"
2542
  msgstr ""
2543
 
2544
+ #: classes/helpers/FrmFormsListHelper.php:167
2545
+ msgid "%1$s <span class=\"count\">(%2$s)</span>"
 
 
 
2546
  msgstr ""
2547
 
2548
+ #: classes/helpers/FrmFormsListHelper.php:286
2549
+ #: classes/views/frm-forms/_publish_box.php:26
2550
+ #: classes/views/frm-forms/list-templates.php:119
2551
+ msgid "Preview"
2552
  msgstr ""
2553
 
2554
+ #: classes/helpers/FrmListHelper.php:123
2555
+ msgid "List View"
2556
+ msgstr ""
2557
+
2558
+ #: classes/helpers/FrmListHelper.php:124
2559
+ msgid "Excerpt View"
2560
  msgstr ""
2561
 
2562
+ #: classes/helpers/FrmListHelper.php:240
2563
+ msgid "No items found."
2564
+ msgstr ""
2565
+
2566
+ #: classes/helpers/FrmListHelper.php:365
2567
+ msgid "Select bulk action"
2568
+ msgstr ""
2569
+
2570
+ #: classes/helpers/FrmListHelper.php:367
2571
+ msgid "Bulk Actions"
2572
+ msgstr ""
2573
+
2574
+ #: classes/helpers/FrmListHelper.php:377
2575
+ msgid "Apply"
2576
+ msgstr ""
2577
+
2578
+ #: classes/helpers/FrmListHelper.php:442
2579
+ #: classes/helpers/FrmListHelper.php:1095
2580
+ msgid "Show more details"
2581
+ msgstr ""
2582
+
2583
+ #: classes/helpers/FrmListHelper.php:548
2584
+ #: classes/helpers/FrmListHelper.php:1120
2585
+ msgid "%s item"
2586
+ msgid_plural "%s items"
2587
+ msgstr[0] ""
2588
+
2589
+ #: classes/helpers/FrmListHelper.php:579
2590
+ #: classes/helpers/FrmListHelper.php:583
2591
+ msgid "Current Page"
2592
+ msgstr ""
2593
+
2594
+ #: classes/helpers/FrmListHelper.php:589
2595
+ msgctxt "paging"
2596
+ msgid "%1$s of %2$s"
2597
+ msgstr ""
2598
+
2599
+ #: classes/helpers/FrmListHelper.php:653
2600
+ msgid "First page"
2601
+ msgstr ""
2602
+
2603
+ #: classes/helpers/FrmListHelper.php:654
2604
+ msgid "Last page"
2605
+ msgstr ""
2606
+
2607
+ #: classes/helpers/FrmListHelper.php:655
2608
+ msgid "Previous page"
2609
+ msgstr ""
2610
+
2611
+ #: classes/helpers/FrmListHelper.php:656
2612
+ msgid "Next page"
2613
+ msgstr ""
2614
+
2615
+ #: classes/helpers/FrmListHelper.php:871
2616
+ msgid "Select All"
2617
  msgstr ""
2618
 
2619
  #: classes/helpers/FrmStylesHelper.php:16
2874
  msgid "Collect instant payments, and send leads to MailChimp."
2875
  msgstr ""
2876
 
2877
+ #: classes/helpers/FrmXMLHelper.php:31
2878
  msgid "Your server does not have XML enabled"
2879
  msgstr ""
2880
 
2881
+ #: classes/helpers/FrmXMLHelper.php:37
2882
+ #: classes/helpers/FrmXMLHelper.php:49
2883
  msgid "There was an error when reading this XML file"
2884
  msgstr ""
2885
 
2886
+ #: classes/helpers/FrmXMLHelper.php:41
2887
  msgid "Your server is missing the simplexml_import_dom function"
2888
  msgstr ""
2889
 
2890
+ #: classes/helpers/FrmXMLHelper.php:827
2891
  msgid "Imported"
2892
  msgstr ""
2893
 
2894
+ #: classes/helpers/FrmXMLHelper.php:828
2895
  msgid "Updated"
2896
  msgstr ""
2897
 
2898
+ #: classes/helpers/FrmXMLHelper.php:853
2899
  msgid "Nothing was imported or updated"
2900
  msgstr ""
2901
 
2902
+ #: classes/helpers/FrmXMLHelper.php:865
2903
  msgid "%1$s Form"
2904
  msgid_plural "%1$s Forms"
2905
  msgstr[0] ""
2906
 
2907
  #. translators: %1$s - field type
2908
+ #: classes/helpers/FrmXMLHelper.php:866
2909
  #: classes/models/FrmFormMigrator.php:389
2910
  msgid "%1$s Field"
2911
  msgid_plural "%1$s Fields"
2912
  msgstr[0] ""
2913
 
2914
+ #: classes/helpers/FrmXMLHelper.php:867
2915
  msgid "%1$s Entry"
2916
  msgid_plural "%1$s Entries"
2917
  msgstr[0] ""
2918
 
2919
+ #: classes/helpers/FrmXMLHelper.php:868
2920
  msgid "%1$s View"
2921
  msgid_plural "%1$s Views"
2922
  msgstr[0] ""
2923
 
2924
+ #: classes/helpers/FrmXMLHelper.php:869
2925
  msgid "%1$s Post"
2926
  msgid_plural "%1$s Posts"
2927
  msgstr[0] ""
2928
 
2929
+ #: classes/helpers/FrmXMLHelper.php:870
2930
  msgid "%1$s Style"
2931
  msgid_plural "%1$s Styles"
2932
  msgstr[0] ""
2933
 
2934
+ #: classes/helpers/FrmXMLHelper.php:871
2935
  msgid "%1$s Term"
2936
  msgid_plural "%1$s Terms"
2937
  msgstr[0] ""
2938
 
2939
+ #: classes/helpers/FrmXMLHelper.php:872
2940
  msgid "%1$s Form Action"
2941
  msgid_plural "%1$s Form Actions"
2942
  msgstr[0] ""
2943
 
2944
+ #: classes/helpers/FrmXMLHelper.php:1064
2945
  msgid "Create Posts"
2946
  msgstr ""
2947
 
2948
+ #: classes/helpers/FrmXMLHelper.php:1171
2949
  #: classes/views/frm-form-actions/email_action.php:16
2950
  msgid "Email Notification"
2951
  msgstr ""
2991
  msgstr ""
2992
 
2993
  #. translators: %1$s: Plugin name, %2$s: Start link HTML, %3$s: end link HTML
2994
+ #: classes/models/FrmAddon.php:265
2995
  msgid "Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s."
2996
  msgstr ""
2997
 
2998
+ #: classes/models/FrmAddon.php:454
2999
  msgid "Oops! You forgot to enter your license number."
3000
  msgstr ""
3001
 
3002
+ #: classes/models/FrmAddon.php:530
3003
  msgid "Your license has been activated. Enjoy!"
3004
  msgstr ""
3005
 
3006
+ #: classes/models/FrmAddon.php:531
3007
+ #: classes/models/FrmAddon.php:536
3008
  msgid "That license key is invalid"
3009
  msgstr ""
3010
 
3011
+ #: classes/models/FrmAddon.php:532
3012
  msgid "That license is expired"
3013
  msgstr ""
3014
 
3015
+ #: classes/models/FrmAddon.php:533
3016
  msgid "That license has been refunded"
3017
  msgstr ""
3018
 
3019
+ #: classes/models/FrmAddon.php:534
3020
  msgid "That license has been used on too many sites"
3021
  msgstr ""
3022
 
3023
+ #: classes/models/FrmAddon.php:535
3024
  msgid "Oops! That is the wrong license key for this plugin."
3025
  msgstr ""
3026
 
3027
+ #: classes/models/FrmAddon.php:558
3028
  msgid "That license was removed successfully"
3029
  msgstr ""
3030
 
3031
+ #: classes/models/FrmAddon.php:560
3032
  msgid "There was an error deactivating your license."
3033
  msgstr ""
3034
 
3035
+ #: classes/models/FrmAddon.php:593
3036
  msgid "Your License Key was invalid"
3037
  msgstr ""
3038
 
3039
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
3040
+ #: classes/models/FrmAddon.php:597
3041
  msgid "You had an error communicating with the Formidable API. %1$sClick here%2$s for more information."
3042
  msgstr ""
3043
 
3044
+ #: classes/models/FrmAddon.php:600
3045
  msgid "You had an HTTP error connecting to the Formidable API"
3046
  msgstr ""
3047
 
3048
  #. translators: %1$s: Error code, %2$s: Error message
3049
+ #: classes/models/FrmAddon.php:611
3050
  msgid "There was a %1$s error: %2$s"
3051
  msgstr ""
3052
 
3228
  msgstr ""
3229
 
3230
  #: classes/models/FrmFormAction.php:740
3231
+ #: classes/views/frm-forms/_publish_box.php:12
3232
  msgid "Save Draft"
3233
  msgstr ""
3234
 
3235
  #: classes/models/FrmFormAction.php:744
3236
+ #: classes/views/xml/import_form.php:12
3237
  msgid "Import"
3238
  msgstr ""
3239
 
3249
  msgid "Default Form"
3250
  msgstr ""
3251
 
3252
+ #: classes/models/FrmMigrate.php:506
3253
  msgid "Sending"
3254
  msgstr ""
3255
 
3257
  msgid "Formidable Forms Exporter"
3258
  msgstr ""
3259
 
3260
+ #: classes/models/FrmPersonalData.php:38
3261
+ msgid "Formidable Forms entries"
3262
+ msgstr ""
3263
+
3264
  #: classes/models/FrmPersonalData.php:61
3265
  msgid "Form Submissions"
3266
  msgstr ""
3339
 
3340
  #: classes/views/addons/list.php:45
3341
  #: classes/views/addons/list.php:46
3342
+ #: classes/views/frm-forms/list-templates.php:137
3343
+ #: classes/views/frm-forms/list-templates.php:138
3344
  msgid "Upgrade Now"
3345
  msgstr ""
3346
 
3356
  msgid "Get Started"
3357
  msgstr ""
3358
 
3359
+ #: classes/views/frm-entries/_sidebar-shared-pub.php:9
3360
+ msgid "M j, Y @ G:i"
3361
+ msgstr ""
3362
+
3363
+ #: classes/views/frm-entries/_sidebar-shared-pub.php:10
3364
+ msgid "Published on: %1$s"
3365
+ msgstr ""
3366
+
3367
  #: classes/views/frm-entries/_sidebar-shared-pub.php:17
3368
  msgid "Print"
3369
  msgstr ""
3384
  msgid "If you are human, leave this field blank."
3385
  msgstr ""
3386
 
 
 
 
 
 
 
3387
  #: classes/views/frm-entries/no_entries.php:3
3388
  msgid "This form is not set to save any entries."
3389
  msgstr ""
3401
  msgstr ""
3402
 
3403
  #: classes/views/frm-entries/no_entries.php:9
3404
+ #: classes/views/frm-forms/list-templates.php:48
3405
  msgid "You have not created any forms yet."
3406
  msgstr ""
3407
 
3430
  msgid "Post"
3431
  msgstr ""
3432
 
 
 
 
 
3433
  #: classes/views/frm-entries/sidebar-shared.php:48
3434
  msgid "Created by: %1$s"
3435
  msgstr ""
3488
  msgstr ""
3489
 
3490
  #: classes/views/frm-fields/back-end/number-range.php:4
3491
+ msgid "Set the number range the field validation should allow. Browsers that support the HTML5 number field require a number range to determine the numbers seen when clicking the arrows next to the field."
3492
  msgstr ""
3493
 
3494
  #: classes/views/frm-fields/back-end/number-range.php:9
3508
  msgstr ""
3509
 
3510
  #: classes/views/frm-fields/back-end/value-format.php:2
3511
+ #: classes/views/xml/import_form.php:57
3512
  msgid "Format"
3513
  msgstr ""
3514
 
3618
  msgid "Duplicate"
3619
  msgstr ""
3620
 
3621
+ #: classes/views/frm-forms/_publish_box.php:31
 
 
 
 
3622
  msgid "On Blank Page"
3623
  msgstr ""
3624
 
3625
+ #: classes/views/frm-forms/_publish_box.php:36
3626
  msgid "In Theme"
3627
  msgstr ""
3628
 
3630
  msgid "Show options"
3631
  msgstr ""
3632
 
3633
+ #: classes/views/frm-forms/add-new.php:5
3634
+ #: classes/views/frm-forms/list-templates.php:5
3635
+ msgid "Add new form"
3636
+ msgstr ""
3637
+
3638
+ #: classes/views/frm-forms/add-new.php:15
3639
+ #: classes/views/frm-forms/add-new.php:22
3640
+ msgid "Create Blank Form"
3641
+ msgstr ""
3642
+
3643
+ #: classes/views/frm-forms/add-new.php:17
3644
+ msgid "Start with a blank form"
3645
+ msgstr ""
3646
+
3647
+ #: classes/views/frm-forms/add-new.php:18
3648
+ msgid "Build anything you can imagine."
3649
+ msgstr ""
3650
+
3651
+ #: classes/views/frm-forms/add-new.php:30
3652
+ #: classes/views/frm-forms/add-new.php:37
3653
+ msgid "Choose Template"
3654
+ msgstr ""
3655
+
3656
+ #: classes/views/frm-forms/add-new.php:32
3657
+ msgid "Start with a template"
3658
+ msgstr ""
3659
+
3660
+ #: classes/views/frm-forms/add-new.php:33
3661
+ msgid "We've done the heavy lifting."
3662
+ msgstr ""
3663
+
3664
+ #: classes/views/frm-forms/add-new.php:45
3665
+ #: classes/views/frm-forms/add-new.php:52
3666
+ msgid "Import Form"
3667
+ msgstr ""
3668
+
3669
+ #: classes/views/frm-forms/add-new.php:47
3670
+ msgid "Import your form"
3671
+ msgstr ""
3672
+
3673
+ #: classes/views/frm-forms/add-new.php:48
3674
+ msgid "Import a form from an XML file."
3675
+ msgstr ""
3676
+
3677
  #: classes/views/frm-forms/add_field.php:6
3678
  msgid "Move Field"
3679
  msgstr ""
3836
  msgid "Click on any box below to set the width for your selected field."
3837
  msgstr ""
3838
 
3839
+ #: classes/views/frm-forms/edit.php:10
3840
+ #: classes/views/frm-forms/list.php:5
3841
+ #: classes/views/frm-forms/new.php:10
3842
+ msgid "Templates"
3843
+ msgstr ""
3844
+
3845
  #: classes/views/frm-forms/edit.php:10
3846
  #: classes/views/frm-forms/new.php:10
3847
  msgid "Build Form"
3848
  msgstr ""
3849
 
3850
+ #: classes/views/frm-forms/form.php:9
3851
+ msgid "Enter title here"
3852
+ msgstr ""
3853
+
3854
  #: classes/views/frm-forms/form.php:17
3855
  msgid "1. Name your form"
3856
  msgstr ""
3864
  msgstr ""
3865
 
3866
  #: classes/views/frm-forms/form.php:30
 
 
 
 
 
 
 
 
3867
  msgid "3. Save your form"
3868
  msgstr ""
3869
 
3875
  msgid "Insert into Post"
3876
  msgstr ""
3877
 
3878
+ #: classes/views/frm-forms/list-templates.php:11
3879
+ msgid "Form templates"
3880
+ msgstr ""
3881
+
3882
+ #: classes/views/frm-forms/list-templates.php:16
3883
+ msgid "Save time by starting from one of our pre-made templates. They are expertly designed and configured to work right out of the box. If you don't find a template you like, you can always start with a %1$sblank form%2$s."
3884
+ msgstr ""
3885
+
3886
+ #: classes/views/frm-forms/list-templates.php:23
3887
+ msgid "Search Templates"
3888
+ msgstr ""
3889
+
3890
+ #: classes/views/frm-forms/list-templates.php:29
3891
+ msgid "Create a Custom Template"
3892
+ msgstr ""
3893
+
3894
+ #: classes/views/frm-forms/list-templates.php:31
3895
+ msgid "Build a form and setup form actions."
3896
+ msgstr ""
3897
+
3898
+ #: classes/views/frm-forms/list-templates.php:32
3899
+ msgid "Select your form in the dropdown below."
3900
+ msgstr ""
3901
+
3902
+ #: classes/views/frm-forms/list-templates.php:33
3903
+ msgid "Give your template a name and description."
3904
+ msgstr ""
3905
+
3906
+ #: classes/views/frm-forms/list-templates.php:34
3907
+ msgid "Delete the original form. (optional)"
3908
+ msgstr ""
3909
+
3910
+ #: classes/views/frm-forms/list-templates.php:40
3911
+ msgid "Select form for new template"
3912
+ msgstr ""
3913
+
3914
+ #: classes/views/frm-forms/list-templates.php:71
3915
+ msgid "Blank Form"
3916
+ msgstr ""
3917
+
3918
+ #: classes/views/frm-forms/list-templates.php:72
3919
+ msgid "Start from scratch and build exactly what you want. This option will not pre-load any fields."
3920
+ msgstr ""
3921
+
3922
+ #: classes/views/frm-forms/list-templates.php:76
3923
+ #: classes/views/frm-forms/list-templates.php:130
3924
+ #: classes/views/frm-forms/list-templates.php:132
3925
+ #: classes/views/frm-forms/list-templates.php:134
3926
+ msgid "Create Form"
3927
+ msgstr ""
3928
+
3929
+ #: classes/views/frm-forms/list-templates.php:102
3930
+ msgid "License plan required: %s"
3931
+ msgstr ""
3932
+
3933
  #: classes/views/frm-forms/mb_html_tab.php:3
3934
  msgid "Use the buttons below to help customize your form HTML."
3935
  msgstr ""
3979
  msgstr ""
3980
 
3981
  #: classes/views/frm-forms/mb_html_tab.php:48
3982
+ #: classes/views/frm-forms/template-name-overlay.php:9
3983
+ #: classes/views/frm-forms/template-name-overlay.php:10
3984
  msgid "Form Name"
3985
  msgstr ""
3986
 
4181
  msgid "Select a form:"
4182
  msgstr ""
4183
 
4184
+ #: classes/views/frm-forms/template-name-overlay.php:16
4185
+ msgid "Template Description"
4186
+ msgstr ""
4187
+
4188
  #: classes/views/frm-settings/form.php:9
4189
  msgid "License"
4190
  msgstr ""
4191
 
4192
+ #: classes/views/frm-settings/form.php:11
4193
+ msgid "Your license key provides access to automatic updates."
4194
+ msgstr ""
4195
+
4196
  #: classes/views/frm-settings/form.php:48
4197
  #: classes/views/frm-settings/form.php:235
4198
  msgid "Update Options"
4851
  msgid "Reset to Default"
4852
  msgstr ""
4853
 
4854
+ #: classes/views/xml/import_form.php:13
4855
  msgid "Upload your Formidable XML file to import forms into this site. If your imported form key and creation date match a form on your site, that form will be updated."
4856
  msgstr ""
4857
 
4858
+ #: classes/views/xml/import_form.php:20
4859
  msgid "Choose a Formidable XML file"
4860
  msgstr ""
4861
 
4862
+ #: classes/views/xml/import_form.php:21
4863
  msgid "Maximum size: %s"
4864
  msgstr ""
4865
 
4866
+ #: classes/views/xml/import_form.php:29
4867
  msgid "Upload file and import"
4868
  msgstr ""
4869
 
4870
+ #: classes/views/xml/import_form.php:35
4871
  msgid "Export"
4872
  msgstr ""
4873
 
4874
+ #: classes/views/xml/import_form.php:37
4875
+ msgid "Export your forms, entries, views, and styles so you can easily import them on another site."
4876
+ msgstr ""
4877
+
4878
+ #: classes/views/xml/import_form.php:45
4879
  msgid "Export Format"
4880
  msgstr ""
4881
 
4882
+ #: classes/views/xml/import_form.php:58
4883
  msgid "If your CSV special characters are not working correctly, try a different formatting option."
4884
  msgstr ""
4885
 
4886
+ #: classes/views/xml/import_form.php:67
4887
  msgid "Column separation"
4888
  msgstr ""
4889
 
4890
+ #: classes/views/xml/import_form.php:75
4891
  msgid "Data to Export"
4892
  msgstr ""
4893
 
4894
+ #: classes/views/xml/import_form.php:77
4895
  msgid "Include the following in the export file"
4896
  msgstr ""
4897
 
4898
+ #: classes/views/xml/import_form.php:89
4899
  msgid "Select Form(s)"
4900
  msgstr ""
4901
 
4902
+ #: classes/views/xml/import_form.php:99
 
 
 
 
4903
  msgid "(template)"
4904
  msgstr ""
4905
 
4906
+ #: classes/views/xml/import_form.php:101
4907
  msgid "(child)"
4908
  msgstr ""
4909
 
4910
+ #: classes/views/xml/import_form.php:107
4911
  msgid "Hold down the CTRL/Command button to select multiple forms"
4912
  msgstr ""
4913
 
4914
+ #: classes/views/xml/import_form.php:112
4915
  msgid "Export Selection"
4916
  msgstr ""
4917
 
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: formidableforms, sswells, srwells, jamie.wahlin
3
  Tags: forms, contact form, form builder, survey, form maker, form, form creator
4
  Requires at least: 4.5
5
- Tested up to: 5.0.2
6
  Requires PHP: 5.3
7
- Stable tag: 3.05
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
 
@@ -374,15 +374,18 @@ Formidable Forms drag & drop form builder combined with our add-ons is the most
374
  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!
375
 
376
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
377
  = 3.05 =
378
  * New: Add a new Forms block for use with the new WP editor
379
  * Fix: A false number was showing for number of plugin updates available when add-ons were not installed
380
 
381
- = 3.04.03 =
382
- * New: Improved autoupdating and installation for form add-ons
383
- * Tweak: Only show the form add-ons page to those who can activate plugins
384
- * Fix: Radio button shadows had a box around them in some browsers
385
- * Fix: Don't mark an entry as a duplicate when the second entry includes more fields than the first
386
- * Code: Move deprecated code to its own folder
387
-
388
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
2
  Contributors: formidableforms, sswells, srwells, jamie.wahlin
3
  Tags: forms, contact form, form builder, survey, form maker, form, form creator
4
  Requires at least: 4.5
5
+ Tested up to: 5.0
6
  Requires PHP: 5.3
7
+ Stable tag: 3.06
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
 
374
  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!
375
 
376
  == Changelog ==
377
+ = 3.06 =
378
+ * New: Add one-click form creation from a form template and adjust the way a new form is created
379
+ * New: Add a new process for creating a custom form template
380
+ * Tweak: Create smaller XML fiels when exporting forms
381
+ * Tweak: Use the name of the form for XML exports when a single form is exported
382
+ * Tweak: Don't limit the width of the color picker in the form styler to avoid conflicts with some color picker plugins
383
+ * Fix: Prevent the 'Advanced' section from hiding on non-Formidable blocks
384
+ * Fix: Some users were seeing PHP error messages in PHP 5.2
385
+ * Fix: XML form exports set to use the default style were not correctly setting the style on import
386
+
387
  = 3.05 =
388
  * New: Add a new Forms block for use with the new WP editor
389
  * Fix: A false number was showing for number of plugin updates available when add-ons were not installed
390
 
 
 
 
 
 
 
 
391
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>