Formidable Forms – Form Builder for WordPress - Version 4.0.02

Version Description

  • Include the WordPress admin bar in full screen mode.
  • Replace field icons in builder with svg sprite to prevent browser caching issues.
  • Update the field ids in more of the form action settings when a form is duplicated.
  • Live update for default values.
  • Click on a field description on the form builder page to be taken directly to the setting.
  • Allow apostrophes in an email address.
  • Save a few clicks. Move the layout classes out of the advanced section and auto open the fields class list on click. Also select the search box when the form switcher is selected.
  • Fix: The WordPress menu was collapsed when editing a post. Oops!
  • Fix: Trim whitespace from radio/checkbox/dropdown options when they are changed.
  • Fix: Automatically hide and show the field box more accurately when clicking in and out of settings that use it.
  • Fix: Include field selection box on the redirect url setting.
  • Fix: Adjust the show entry page for small screens.
  • Fix: After an entry was deleted from the entry listing page, the page no longer scrolled.
  • Fix: Backslashes were removed in the Custom CSS on save.
  • Fix: In some cases, the default value was showing as a placeholder.
  • Fix: Fix a PHP 5.4 error. If you are running a version less than 5.6, you'll see a reminder message to get up to date.
  • Code: Added a trigger for use after an ajax call. The frmElementAdded trigger allows add-ons to add the field box menu to newly added settings.
  • Show a message if Internet Explorer is being used. This browser is no longer supported in the form builder.
Download this release

Release Info

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

Code changes from version 4.0.01 to 4.0.02

Files changed (69) hide show
  1. classes/controllers/FrmAddonsController.php +2 -0
  2. classes/controllers/FrmAppController.php +4 -21
  3. classes/controllers/FrmEntriesController.php +2 -1
  4. classes/controllers/FrmFormActionsController.php +8 -0
  5. classes/controllers/FrmFormsController.php +5 -7
  6. classes/controllers/FrmHooksController.php +0 -1
  7. classes/controllers/FrmSettingsController.php +14 -1
  8. classes/controllers/FrmStylesController.php +1 -0
  9. classes/controllers/FrmXMLController.php +4 -2
  10. classes/helpers/FrmAppHelper.php +106 -2
  11. classes/helpers/FrmEntriesHelper.php +5 -5
  12. classes/helpers/FrmEntriesListHelper.php +7 -0
  13. classes/helpers/FrmFieldsHelper.php +14 -10
  14. classes/helpers/FrmFormsHelper.php +4 -4
  15. classes/helpers/FrmFormsListHelper.php +7 -1
  16. classes/helpers/FrmStylesHelper.php +4 -4
  17. classes/helpers/FrmTipsHelper.php +1 -1
  18. classes/models/FrmEntry.php +6 -6
  19. classes/models/FrmEntryMeta.php +4 -4
  20. classes/models/FrmField.php +4 -4
  21. classes/models/FrmForm.php +3 -3
  22. classes/models/FrmFormAction.php +2 -0
  23. classes/models/FrmFormMigrator.php +1 -1
  24. classes/models/FrmStyle.php +5 -2
  25. classes/models/FrmUsage.php +7 -3
  26. classes/models/fields/FrmFieldCaptcha.php +1 -1
  27. classes/models/fields/FrmFieldType.php +4 -6
  28. classes/views/addons/upgrade_to_pro.php +6 -2
  29. classes/views/frm-entries/_sidebar-shared-pub.php +2 -2
  30. classes/views/frm-entries/list.php +2 -2
  31. classes/views/frm-entries/no_entries.php +7 -3
  32. classes/views/frm-entries/show.php +3 -0
  33. classes/views/frm-entries/sidebar-shared.php +12 -10
  34. classes/views/frm-fields/back-end/bulk-options-overlay.php +1 -1
  35. classes/views/frm-fields/back-end/field-user-id.php +1 -1
  36. classes/views/frm-fields/back-end/html-content.php +9 -1
  37. classes/views/frm-fields/back-end/inline-modal.php +1 -1
  38. classes/views/frm-fields/back-end/settings.php +50 -25
  39. classes/views/frm-fields/back-end/value-format.php +9 -1
  40. classes/views/frm-fields/single-option.php +4 -5
  41. classes/views/frm-form-actions/_action_icon.php +8 -12
  42. classes/views/frm-form-actions/_action_inside.php +1 -1
  43. classes/views/frm-form-actions/form_action.php +10 -3
  44. classes/views/frm-form-actions/settings.php +14 -5
  45. classes/views/frm-forms/_publish_box.php +1 -1
  46. classes/views/frm-forms/add_field.php +12 -6
  47. classes/views/frm-forms/add_field_links.php +5 -6
  48. classes/views/frm-forms/form.php +5 -3
  49. classes/views/frm-forms/settings-advanced.php +9 -9
  50. classes/views/frm-settings/form.php +17 -27
  51. classes/views/frm-settings/general.php +1 -1
  52. classes/views/frm-settings/settings_cta.php +6 -3
  53. classes/views/frm-settings/tabs.php +1 -1
  54. classes/views/shared/admin-header.php +2 -2
  55. classes/views/shared/confirm-overlay.php +1 -1
  56. classes/views/shared/errors.php +1 -1
  57. classes/views/shared/form-nav.php +1 -3
  58. classes/views/shared/mb_adv_info.php +9 -7
  59. classes/views/shared/upgrade_overlay.php +2 -2
  60. classes/views/styles/header-buttons.php +1 -1
  61. css/font_icons.css +4 -4
  62. css/formidableforms.css +1 -1
  63. css/frm_admin.css +250 -84
  64. css/frm_fonts.css +3 -3
  65. formidable.php +1 -1
  66. images/icons.svg +1069 -0
  67. js/formidable_admin.js +178 -54
  68. languages/formidable.pot +652 -636
  69. readme.txt +21 -1
classes/controllers/FrmAddonsController.php CHANGED
@@ -22,6 +22,7 @@ class FrmAddonsController {
22
  }
23
 
24
  public static function list_addons() {
 
25
  $installed_addons = apply_filters( 'frm_installed_addons', array() );
26
  $license_type = '';
27
 
@@ -484,6 +485,7 @@ class FrmAddonsController {
484
  }
485
 
486
  public static function upgrade_to_pro() {
 
487
  $pro_pricing = self::prepare_pro_info();
488
 
489
  $link_parts = array(
22
  }
23
 
24
  public static function list_addons() {
25
+ FrmAppHelper::include_svg();
26
  $installed_addons = apply_filters( 'frm_installed_addons', array() );
27
  $license_type = '';
28
 
485
  }
486
 
487
  public static function upgrade_to_pro() {
488
+ FrmAppHelper::include_svg();
489
  $pro_pricing = self::prepare_pro_info();
490
 
491
  $link_parts = array(
classes/controllers/FrmAppController.php CHANGED
@@ -39,7 +39,10 @@ class FrmAppController {
39
  $classes .= ' frm-white-body ';
40
  $classes .= self::get_os();
41
 
42
- $page = FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' );
 
 
 
43
  if ( ! empty( $page ) ) {
44
  $classes .= ' frm-admin-page-' . $page;
45
  }
@@ -396,26 +399,6 @@ class FrmAppController {
396
  return $needs_upgrade;
397
  }
398
 
399
- /**
400
- * Remove the admin toolbar on full screen pages.
401
- *
402
- * @since 4.0.01
403
- */
404
- public static function no_admin_bar() {
405
- if ( FrmAppHelper::is_full_screen() ) {
406
- add_filter( 'wp_admin_bar_class', 'FrmAppController::fake_admin_bar_class' );
407
- }
408
- }
409
-
410
- /*
411
- * A class that doesn't exist will hide the admin bar.
412
- *
413
- * @since 4.0.01
414
- */
415
- public static function fake_admin_bar_class() {
416
- return 'Nope';
417
- }
418
-
419
  /**
420
  * Check for database update and trigger js loading
421
  *
39
  $classes .= ' frm-white-body ';
40
  $classes .= self::get_os();
41
 
42
+ $page = str_replace( 'formidable-', '', FrmAppHelper::simple_get( 'page', 'sanitize_title' ) );
43
+ if ( empty( $page ) ) {
44
+ $page = FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' );
45
+ }
46
  if ( ! empty( $page ) ) {
47
  $classes .= ' frm-admin-page-' . $page;
48
  }
399
  return $needs_upgrade;
400
  }
401
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
402
  /**
403
  * Check for database update and trigger js loading
404
  *
classes/controllers/FrmEntriesController.php CHANGED
@@ -29,6 +29,7 @@ class FrmEntriesController {
29
  /* Display in Back End */
30
  public static function route() {
31
  $action = FrmAppHelper::get_param( 'frm_action', '', 'get', 'sanitize_title' );
 
32
 
33
  switch ( $action ) {
34
  case 'show':
@@ -552,7 +553,7 @@ class FrmEntriesController {
552
  }
553
 
554
  if ( $errors == '' && ! $ajax ) {
555
- $errors = FrmEntryValidate::validate( $_POST );
556
  }
557
 
558
  /**
29
  /* Display in Back End */
30
  public static function route() {
31
  $action = FrmAppHelper::get_param( 'frm_action', '', 'get', 'sanitize_title' );
32
+ FrmAppHelper::include_svg();
33
 
34
  switch ( $action ) {
35
  case 'show':
553
  }
554
 
555
  if ( $errors == '' && ! $ajax ) {
556
+ $errors = FrmEntryValidate::validate( wp_unslash( $_POST ) );
557
  }
558
 
559
  /**
classes/controllers/FrmFormActionsController.php CHANGED
@@ -222,6 +222,14 @@ class FrmFormActionsController {
222
  }
223
  }
224
 
 
 
 
 
 
 
 
 
225
  include( FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/_action_icon.php' );
226
  }
227
 
222
  }
223
  }
224
 
225
+ // HTML to include on the icon.
226
+ $icon_atts = array();
227
+ if ( $action_control->action_options['color'] !== 'var(--primary-hover)' ) {
228
+ $icon_atts = array(
229
+ 'style' => '--primary-hover:' . $action_control->action_options['color'],
230
+ );
231
+ }
232
+
233
  include( FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/_action_icon.php' );
234
  }
235
 
classes/controllers/FrmFormsController.php CHANGED
@@ -865,6 +865,7 @@ class FrmFormsController {
865
  }
866
 
867
  $all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
 
868
 
869
  if ( defined( 'DOING_AJAX' ) ) {
870
  wp_die();
@@ -1278,10 +1279,12 @@ class FrmFormsController {
1278
  public static function route() {
1279
  $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action';
1280
  $vars = array();
 
 
1281
  if ( isset( $_POST['frm_compact_fields'] ) ) {
1282
  FrmAppHelper::permission_check( 'frm_edit_forms' );
1283
 
1284
- $json_vars = htmlspecialchars_decode( nl2br( wp_unslash( str_replace( '"', '\\\"', $_POST['frm_compact_fields'] ) ) ) );
1285
  $json_vars = json_decode( $json_vars, true );
1286
  if ( empty( $json_vars ) ) {
1287
  // json decoding failed so we should return an error message.
@@ -1433,12 +1436,7 @@ class FrmFormsController {
1433
  global $frm_vars;
1434
  if ( isset( $frm_vars['skip_shortcode'] ) && $frm_vars['skip_shortcode'] ) {
1435
  $sc = '[formidable';
1436
- if ( ! empty( $atts ) ) {
1437
- foreach ( $atts as $k => $v ) {
1438
- $sc .= ' ' . $k . '="' . esc_attr( $v ) . '"';
1439
- }
1440
- }
1441
-
1442
  return $sc . ']';
1443
  }
1444
 
865
  }
866
 
867
  $all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' );
868
+ $has_fields = isset( $values['fields'] ) && ! empty( $values['fields'] );
869
 
870
  if ( defined( 'DOING_AJAX' ) ) {
871
  wp_die();
1279
  public static function route() {
1280
  $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action';
1281
  $vars = array();
1282
+ FrmAppHelper::include_svg();
1283
+
1284
  if ( isset( $_POST['frm_compact_fields'] ) ) {
1285
  FrmAppHelper::permission_check( 'frm_edit_forms' );
1286
 
1287
+ $json_vars = htmlspecialchars_decode( nl2br( str_replace( '"', '"', wp_unslash( $_POST['frm_compact_fields'] ) ) ) );
1288
  $json_vars = json_decode( $json_vars, true );
1289
  if ( empty( $json_vars ) ) {
1290
  // json decoding failed so we should return an error message.
1436
  global $frm_vars;
1437
  if ( isset( $frm_vars['skip_shortcode'] ) && $frm_vars['skip_shortcode'] ) {
1438
  $sc = '[formidable';
1439
+ $sc .= FrmAppHelper::array_to_html_params( $atts );
 
 
 
 
 
1440
  return $sc . ']';
1441
  }
1442
 
classes/controllers/FrmHooksController.php CHANGED
@@ -88,7 +88,6 @@ class FrmHooksController {
88
  add_filter( 'admin_body_class', 'FrmAppController::add_admin_class', 999 );
89
  add_action( 'admin_enqueue_scripts', 'FrmAppController::load_wp_admin_style' );
90
  add_action( 'admin_notices', 'FrmAppController::pro_get_started_headline' );
91
- add_action( 'admin_init', 'FrmAppController::no_admin_bar', 0 );
92
  add_action( 'admin_init', 'FrmAppController::admin_init', 11 );
93
  add_filter( 'plugin_action_links_' . FrmAppHelper::plugin_folder() . '/formidable.php', 'FrmAppController::settings_link' );
94
  add_filter( 'admin_footer_text', 'FrmAppController::set_footer_text' );
88
  add_filter( 'admin_body_class', 'FrmAppController::add_admin_class', 999 );
89
  add_action( 'admin_enqueue_scripts', 'FrmAppController::load_wp_admin_style' );
90
  add_action( 'admin_notices', 'FrmAppController::pro_get_started_headline' );
 
91
  add_action( 'admin_init', 'FrmAppController::admin_init', 11 );
92
  add_filter( 'plugin_action_links_' . FrmAppHelper::plugin_folder() . '/formidable.php', 'FrmAppController::settings_link' );
93
  add_filter( 'admin_footer_text', 'FrmAppController::set_footer_text' );
classes/controllers/FrmSettingsController.php CHANGED
@@ -23,6 +23,7 @@ class FrmSettingsController {
23
  $target_path = $uploads['basedir'] . '/formidable/css';
24
 
25
  $sections = self::get_settings_tabs();
 
26
 
27
  require( FrmAppHelper::plugin_path() . '/classes/views/frm-settings/form.php' );
28
  }
@@ -207,7 +208,7 @@ class FrmSettingsController {
207
  if ( ! isset( $frm_vars['settings_routed'] ) || ! $frm_vars['settings_routed'] ) {
208
  $errors = $frm_settings->validate( $_POST, array() );
209
 
210
- $frm_settings->update( stripslashes_deep( $_POST ) );
211
 
212
  if ( empty( $errors ) ) {
213
  $frm_settings->store();
@@ -226,9 +227,21 @@ class FrmSettingsController {
226
  self::display_form( $errors, $message );
227
  }
228
 
 
 
 
 
 
 
 
 
 
 
229
  public static function route( $stop_load = false ) {
230
  $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action';
231
  $action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' );
 
 
232
  if ( $action == 'process-form' ) {
233
  self::process_form( $stop_load );
234
  } elseif ( $stop_load != 'stop_load' ) {
23
  $target_path = $uploads['basedir'] . '/formidable/css';
24
 
25
  $sections = self::get_settings_tabs();
26
+ $current = FrmAppHelper::simple_get( 't', 'sanitize_title', 'general_settings' );
27
 
28
  require( FrmAppHelper::plugin_path() . '/classes/views/frm-settings/form.php' );
29
  }
208
  if ( ! isset( $frm_vars['settings_routed'] ) || ! $frm_vars['settings_routed'] ) {
209
  $errors = $frm_settings->validate( $_POST, array() );
210
 
211
+ $frm_settings->update( wp_unslash( $_POST ) );
212
 
213
  if ( empty( $errors ) ) {
214
  $frm_settings->store();
227
  self::display_form( $errors, $message );
228
  }
229
 
230
+ /**
231
+ * Include the Update button on the global settings page.
232
+ *
233
+ * @since 4.0.02
234
+ */
235
+ public static function save_button() {
236
+ echo '<input class="button-primary frm-button-primary" type="submit"
237
+ value="' . esc_attr__( 'Update', 'formidable' ) . '"/>';
238
+ }
239
+
240
  public static function route( $stop_load = false ) {
241
  $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action';
242
  $action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' );
243
+ FrmAppHelper::include_svg();
244
+
245
  if ( $action == 'process-form' ) {
246
  self::process_form( $stop_load );
247
  } elseif ( $stop_load != 'stop_load' ) {
classes/controllers/FrmStylesController.php CHANGED
@@ -333,6 +333,7 @@ class FrmStylesController {
333
 
334
  public static function route() {
335
  $action = FrmAppHelper::get_param( 'frm_action', '', 'get', 'sanitize_title' );
 
336
 
337
  switch ( $action ) {
338
  case 'edit':
333
 
334
  public static function route() {
335
  $action = FrmAppHelper::get_param( 'frm_action', '', 'get', 'sanitize_title' );
336
+ FrmAppHelper::include_svg();
337
 
338
  switch ( $action ) {
339
  case 'edit':
classes/controllers/FrmXMLController.php CHANGED
@@ -111,6 +111,8 @@ class FrmXMLController {
111
  public static function route() {
112
  $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action';
113
  $action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' );
 
 
114
  if ( 'import_xml' === $action ) {
115
  return self::import_xml();
116
  } elseif ( 'export_xml' === $action ) {
@@ -169,7 +171,7 @@ class FrmXMLController {
169
  return;
170
  }
171
 
172
- $file = isset( $_FILES['frm_import_file']['tmp_name'] ) ? $_FILES['frm_import_file']['tmp_name'] : '';
173
 
174
  if ( ! is_uploaded_file( $file ) ) {
175
  unset( $file );
@@ -190,7 +192,7 @@ class FrmXMLController {
190
  );
191
  $export_format = apply_filters( 'frm_export_formats', $export_format );
192
 
193
- $file_type = strtolower( pathinfo( $_FILES['frm_import_file']['name'], PATHINFO_EXTENSION ) );
194
  if ( 'xml' !== $file_type && isset( $export_format[ $file_type ] ) ) {
195
  // allow other file types to be imported
196
  do_action( 'frm_before_import_' . $file_type );
111
  public static function route() {
112
  $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action';
113
  $action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' );
114
+ FrmAppHelper::include_svg();
115
+
116
  if ( 'import_xml' === $action ) {
117
  return self::import_xml();
118
  } elseif ( 'export_xml' === $action ) {
171
  return;
172
  }
173
 
174
+ $file = isset( $_FILES['frm_import_file']['tmp_name'] ) ? wp_unslash( $_FILES['frm_import_file']['tmp_name'] ) : '';
175
 
176
  if ( ! is_uploaded_file( $file ) ) {
177
  unset( $file );
192
  );
193
  $export_format = apply_filters( 'frm_export_formats', $export_format );
194
 
195
+ $file_type = strtolower( pathinfo( wp_unslash( $_FILES['frm_import_file']['name'], PATHINFO_EXTENSION ) ) );
196
  if ( 'xml' !== $file_type && isset( $export_format[ $file_type ] ) ) {
197
  // allow other file types to be imported
198
  do_action( 'frm_before_import_' . $file_type );
classes/helpers/FrmAppHelper.php CHANGED
@@ -6,12 +6,12 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  class FrmAppHelper {
7
  public static $db_version = 97; //version of the database we are moving to
8
  public static $pro_db_version = 37; //deprecated
9
- public static $font_version = 4;
10
 
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '4.0.01';
15
 
16
  /**
17
  * @since 1.07.02
@@ -611,6 +611,7 @@ class FrmAppHelper {
611
  'class' => true,
612
  'id' => true,
613
  'icon' => true,
 
614
  ),
615
  'img' => array(
616
  'alt' => true,
@@ -649,11 +650,23 @@ class FrmAppHelper {
649
  ),
650
  'strike' => array(),
651
  'strong' => array(),
 
 
 
 
 
652
  'svg' => array(
 
 
653
  'xmlns' => true,
654
  'viewbox' => true,
655
  'width' => true,
656
  'height' => true,
 
 
 
 
 
657
  ),
658
  'ul' => $allow_class,
659
  );
@@ -699,6 +712,68 @@ class FrmAppHelper {
699
  return $value;
700
  }
701
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
702
  /**
703
  * @since 3.0
704
  */
@@ -717,6 +792,7 @@ class FrmAppHelper {
717
  public static function add_new_item_link( $atts ) {
718
  if ( isset( $atts['new_link'] ) && ! empty( $atts['new_link'] ) ) { ?>
719
  <a href="<?php echo esc_url( $atts['new_link'] ); ?>" class="button button-primary frm-button-primary frm-with-plus">
 
720
  <?php esc_html_e( 'Add New', 'formidable' ); ?>
721
  </a>
722
  <?php
@@ -1993,6 +2069,8 @@ class FrmAppHelper {
1993
  return;
1994
  }
1995
 
 
 
1996
  $is_pro = self::pro_is_installed() && class_exists( 'FrmProDb' );
1997
  if ( ! $is_pro || self::meets_min_pro_version( $min_version ) ) {
1998
  return;
@@ -2023,6 +2101,32 @@ class FrmAppHelper {
2023
  return ! class_exists( 'FrmProDb' ) || version_compare( FrmProDb::$plug_version, $min_version, '>=' );
2024
  }
2025
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2026
  public static function locales( $type = 'date' ) {
2027
  $locales = array(
2028
  'en' => __( 'English', 'formidable' ),
6
  class FrmAppHelper {
7
  public static $db_version = 97; //version of the database we are moving to
8
  public static $pro_db_version = 37; //deprecated
9
+ public static $font_version = 7;
10
 
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '4.0.02';
15
 
16
  /**
17
  * @since 1.07.02
611
  'class' => true,
612
  'id' => true,
613
  'icon' => true,
614
+ 'style' => true,
615
  ),
616
  'img' => array(
617
  'alt' => true,
650
  ),
651
  'strike' => array(),
652
  'strong' => array(),
653
+ 'symbol' => array(
654
+ 'class' => true,
655
+ 'id' => true,
656
+ 'viewbox' => true,
657
+ ),
658
  'svg' => array(
659
+ 'class' => true,
660
+ 'id' => true,
661
  'xmlns' => true,
662
  'viewbox' => true,
663
  'width' => true,
664
  'height' => true,
665
+ 'style' => true,
666
+ ),
667
+ 'use' => array(
668
+ 'href' => true,
669
+ 'xlink:href' => true,
670
  ),
671
  'ul' => $allow_class,
672
  );
712
  return $value;
713
  }
714
 
715
+ /**
716
+ * Try to show the SVG if possible. Otherwise, use the font icon.
717
+ *
718
+ * @since 4.0.02
719
+ * @param string $class
720
+ * @param array $atts
721
+ */
722
+ public static function icon_by_class( $class, $atts = array() ) {
723
+ $echo = ! isset( $atts['echo'] ) || $atts['echo'];
724
+ if ( isset( $atts['echo'] ) ) {
725
+ unset( $atts['echo'] );
726
+ }
727
+
728
+ $html_atts = self::array_to_html_params( $atts );
729
+
730
+ $icon = trim( str_replace( array( 'frm_icon_font', 'frmfont ' ), '', $class ) );
731
+ if ( $icon === $class ) {
732
+ $icon = '<i class="' . esc_attr( $class ) . '"' . $html_atts . '></i>';
733
+ } else {
734
+ $class = strpos( $icon, ' ' ) === false ? '' : ' ' . $icon;
735
+ if ( strpos( $icon, ' ' ) ) {
736
+ $icon = explode( ' ', $icon );
737
+ $icon = reset( $icon );
738
+ }
739
+ $icon = '<svg class="frmsvg' . esc_attr( $class ) . '"' . $html_atts . '>
740
+ <use xlink:href="#' . esc_attr( $icon ) . '" />
741
+ </svg>';
742
+ }
743
+
744
+ if ( $echo ) {
745
+ echo $icon; // WPCS: XSS ok.
746
+ } else {
747
+ return $icon;
748
+ }
749
+ }
750
+
751
+ /**
752
+ * Include svg images.
753
+ *
754
+ * @since 4.0.02
755
+ */
756
+ public static function include_svg() {
757
+ include_once( self::plugin_path() . '/images/icons.svg' );
758
+ }
759
+
760
+ /**
761
+ * Convert an associative array to HTML values.
762
+ *
763
+ * @since 4.0.02
764
+ * @param array $atts
765
+ * @return string
766
+ */
767
+ public static function array_to_html_params( $atts ) {
768
+ $html = '';
769
+ if ( ! empty( $atts ) ) {
770
+ foreach ( $atts as $key => $value ) {
771
+ $html .= ' ' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"';
772
+ }
773
+ }
774
+ return $html;
775
+ }
776
+
777
  /**
778
  * @since 3.0
779
  */
792
  public static function add_new_item_link( $atts ) {
793
  if ( isset( $atts['new_link'] ) && ! empty( $atts['new_link'] ) ) { ?>
794
  <a href="<?php echo esc_url( $atts['new_link'] ); ?>" class="button button-primary frm-button-primary frm-with-plus">
795
+ <?php self::icon_by_class( 'frmfont frm_plus_icon frm_svg15' ); ?>
796
  <?php esc_html_e( 'Add New', 'formidable' ); ?>
797
  </a>
798
  <?php
2069
  return;
2070
  }
2071
 
2072
+ self::php_version_notice();
2073
+
2074
  $is_pro = self::pro_is_installed() && class_exists( 'FrmProDb' );
2075
  if ( ! $is_pro || self::meets_min_pro_version( $min_version ) ) {
2076
  return;
2101
  return ! class_exists( 'FrmProDb' ) || version_compare( FrmProDb::$plug_version, $min_version, '>=' );
2102
  }
2103
 
2104
+ /**
2105
+ * Show a message if the browser or PHP version is below the recommendations.
2106
+ *
2107
+ * @since 4.0.02
2108
+ */
2109
+ private static function php_version_notice() {
2110
+ $message = array();
2111
+ if ( version_compare( phpversion(), '5.6', '<' ) ) {
2112
+ $message[] = __( 'The version of PHP on your server is too low. If this is not corrected, you may see issues with Formidable Forms. Please contact your web host and ask to be updated to PHP 7.0+.', 'formidable' );
2113
+ }
2114
+
2115
+ $browser = self::get_server_value( 'HTTP_USER_AGENT' );
2116
+ $is_ie = strpos( $browser, 'MSIE' ) !== false;
2117
+ if ( $is_ie ) {
2118
+ $message[] = __( 'You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome).', 'formidable' );
2119
+ }
2120
+
2121
+ foreach ( $message as $m ) {
2122
+ ?>
2123
+ <div class="error frm_previous_install">
2124
+ <?php echo esc_html( $m ); ?>
2125
+ </div>
2126
+ <?php
2127
+ }
2128
+ }
2129
+
2130
  public static function locales( $type = 'date' ) {
2131
  $locales = array(
2132
  'en' => __( 'English', 'formidable' ),
classes/helpers/FrmEntriesHelper.php CHANGED
@@ -72,7 +72,7 @@ class FrmEntriesHelper {
72
  $field->default_value = apply_filters( 'frm_get_default_value', $field->default_value, $field, true, $return_array );
73
 
74
  if ( isset( $field->field_options['placeholder'] ) ) {
75
- $field->field_options['placeholder'] = apply_filters( 'frm_filter_default_value', $field->field_options['placeholder'], $field, true, $return_array );
76
  }
77
  }
78
 
@@ -308,11 +308,11 @@ class FrmEntriesHelper {
308
  $field_id = is_object( $field ) ? $field->id : $field;
309
 
310
  if ( empty( $args['parent_field_id'] ) ) {
311
- $value = isset( $_POST['item_meta'][ $field_id ] ) ? $_POST['item_meta'][ $field_id ] : '';
312
  } else {
313
- $value = isset( $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ][ $field_id ] ) ? $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ][ $field_id ] : '';
314
  }
315
- $value = wp_unslash( $value );
316
  FrmAppHelper::sanitize_value( 'wp_kses_post', $value );
317
  }
318
 
@@ -553,7 +553,7 @@ class FrmEntriesHelper {
553
  }
554
  ?>
555
  >
556
- <i class="<?php echo esc_attr( $link['icon'] ); ?>" aria-hidden="true"></i>
557
  <span class="frm_link_label"><?php echo esc_html( $link['label'] ); ?></span>
558
  </a>
559
  </div>
72
  $field->default_value = apply_filters( 'frm_get_default_value', $field->default_value, $field, true, $return_array );
73
 
74
  if ( isset( $field->field_options['placeholder'] ) ) {
75
+ $field->field_options['placeholder'] = apply_filters( 'frm_get_default_value', $field->field_options['placeholder'], $field, false, false );
76
  }
77
  }
78
 
308
  $field_id = is_object( $field ) ? $field->id : $field;
309
 
310
  if ( empty( $args['parent_field_id'] ) ) {
311
+ $value = isset( $_POST['item_meta'][ $field_id ] ) ? wp_unslash( $_POST['item_meta'][ $field_id ] ) : '';
312
  } else {
313
+ $value = isset( $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ][ $field_id ] ) ? wp_unslash( $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ][ $field_id ] ) : '';
314
  }
315
+
316
  FrmAppHelper::sanitize_value( 'wp_kses_post', $value );
317
  }
318
 
553
  }
554
  ?>
555
  >
556
+ <?php FrmAppHelper::icon_by_class( $link['icon'], array( 'aria-hidden' => 'true' ) ); ?>
557
  <span class="frm_link_label"><?php echo esc_html( $link['label'] ); ?></span>
558
  </a>
559
  </div>
classes/helpers/FrmEntriesListHelper.php CHANGED
@@ -98,6 +98,13 @@ class FrmEntriesListHelper extends FrmListHelper {
98
  if ( $form_id ) {
99
  $form = FrmForm::getOne( $form_id );
100
  }
 
 
 
 
 
 
 
101
  $colspan = $this->get_column_count();
102
 
103
  include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/no_entries.php' );
98
  if ( $form_id ) {
99
  $form = FrmForm::getOne( $form_id );
100
  }
101
+ $has_form = ! empty( $form );
102
+
103
+ if ( ! $has_form ) {
104
+ $has_form = FrmForm::getAll( array(), '', 1 );
105
+ $has_form = ! empty( $has_form );
106
+ }
107
+
108
  $colspan = $this->get_column_count();
109
 
110
  include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/no_entries.php' );
classes/helpers/FrmFieldsHelper.php CHANGED
@@ -180,12 +180,16 @@ class FrmFieldsHelper {
180
  * @param mixed $value
181
  */
182
  private static function get_posted_field_setting( $setting, &$value ) {
183
- if ( isset( $_POST['field_options'][ $setting ] ) ) {
184
- $value = maybe_unserialize( $_POST['field_options'][ $setting ] );
185
- if ( strpos( $setting, 'html' ) !== false ) {
186
- // strip slashes from HTML but not regex
187
- $value = stripslashes_deep( $value );
188
- }
 
 
 
 
189
  }
190
  }
191
 
@@ -1048,9 +1052,9 @@ class FrmFieldsHelper {
1048
  // For fields inside repeating sections - note, don't check if $pointer is true because it will often be zero
1049
  if ( $parent && isset( $_POST['item_meta'][ $parent ][ $pointer ]['other'][ $field['id'] ] ) ) {
1050
  if ( FrmField::is_field_with_multiple_values( $field ) ) {
1051
- $other_val = isset( $_POST['item_meta'][ $parent ][ $pointer ]['other'][ $field['id'] ][ $opt_key ] ) ? sanitize_text_field( $_POST['item_meta'][ $parent ][ $pointer ]['other'][ $field['id'] ][ $opt_key ] ) : '';
1052
  } else {
1053
- $other_val = sanitize_text_field( $_POST['item_meta'][ $parent ][ $pointer ]['other'][ $field['id'] ] );
1054
  }
1055
 
1056
  return $other_val;
@@ -1059,9 +1063,9 @@ class FrmFieldsHelper {
1059
  // For normal fields
1060
 
1061
  if ( FrmField::is_field_with_multiple_values( $field ) ) {
1062
- $other_val = isset( $_POST['item_meta']['other'][ $field['id'] ][ $opt_key ] ) ? sanitize_text_field( $_POST['item_meta']['other'][ $field['id'] ][ $opt_key ] ) : '';
1063
  } else {
1064
- $other_val = sanitize_text_field( $_POST['item_meta']['other'][ $field['id'] ] );
1065
  }
1066
 
1067
  return $other_val;
180
  * @param mixed $value
181
  */
182
  private static function get_posted_field_setting( $setting, &$value ) {
183
+ if ( ! isset( $_POST['field_options'][ $setting ] ) ) {
184
+ return;
185
+ }
186
+
187
+ if ( strpos( $setting, 'html' ) !== false ) {
188
+ // Strip slashes from HTML but not regex.
189
+ $value = maybe_unserialize( wp_unslash( $_POST['field_options'][ $setting ] ) );
190
+ } else {
191
+ // TODO: Remove stripslashes on output, and use on input only.
192
+ $value = maybe_unserialize( $_POST['field_options'][ $setting ] ); // WPCS: sanitization ok.
193
  }
194
  }
195
 
1052
  // For fields inside repeating sections - note, don't check if $pointer is true because it will often be zero
1053
  if ( $parent && isset( $_POST['item_meta'][ $parent ][ $pointer ]['other'][ $field['id'] ] ) ) {
1054
  if ( FrmField::is_field_with_multiple_values( $field ) ) {
1055
+ $other_val = isset( $_POST['item_meta'][ $parent ][ $pointer ]['other'][ $field['id'] ][ $opt_key ] ) ? sanitize_text_field( wp_unslash( $_POST['item_meta'][ $parent ][ $pointer ]['other'][ $field['id'] ][ $opt_key ] ) ) : '';
1056
  } else {
1057
+ $other_val = sanitize_text_field( wp_unslash( $_POST['item_meta'][ $parent ][ $pointer ]['other'][ $field['id'] ] ) );
1058
  }
1059
 
1060
  return $other_val;
1063
  // For normal fields
1064
 
1065
  if ( FrmField::is_field_with_multiple_values( $field ) ) {
1066
+ $other_val = isset( $_POST['item_meta']['other'][ $field['id'] ][ $opt_key ] ) ? sanitize_text_field( wp_unslash( $_POST['item_meta']['other'][ $field['id'] ][ $opt_key ] ) ) : '';
1067
  } else {
1068
+ $other_val = sanitize_text_field( wp_unslash( $_POST['item_meta']['other'][ $field['id'] ] ) );
1069
  }
1070
 
1071
  return $other_val;
classes/helpers/FrmFormsHelper.php CHANGED
@@ -108,7 +108,7 @@ class FrmFormsHelper {
108
  <a href="#" id="frm-navbarDrop" class="frm-dropdown-toggle" data-toggle="dropdown">
109
  <h1 title="<?php echo esc_attr( $truncated_name === $name ? '' : $name ); ?>">
110
  <?php echo esc_html( $truncated_name ); ?>
111
- <b class="frm_icon_font frm_arrowdown4_icon"></b>
112
  </h1>
113
  </a>
114
  <ul class="frm-dropdown-menu frm-on-top frm-inline-modal frm_code_list frm-full-hover" role="menu" aria-labelledby="frm-navbarDrop">
@@ -273,7 +273,7 @@ class FrmFormsHelper {
273
  */
274
  public static function setup_edit_vars( $values, $record, $post_values = array() ) {
275
  if ( empty( $post_values ) ) {
276
- $post_values = stripslashes_deep( $_POST );
277
  }
278
 
279
  $values['form_key'] = isset( $post_values['form_key'] ) ? $post_values['form_key'] : $record->form_key;
@@ -518,14 +518,14 @@ BEFORE_HTML;
518
  <a href="javascript:void(0)" class="frmids frm_insert_code"
519
  data-code="<?php echo esc_attr( $args['id'] ); ?>">
520
  <span>[<?php echo esc_attr( isset( $args['id_label'] ) ? $args['id_label'] : $args['id'] ); ?>]</span>
521
- <i class="<?php echo esc_attr( $field['icon'] ); ?>" aria-hidden="true"></i>
522
  <?php echo esc_attr( FrmAppHelper::truncate( $args['name'], 60 ) ); ?>
523
  </a>
524
  <a href="javascript:void(0)" class="frmkeys frm_insert_code frm_hidden"
525
  data-code="<?php echo esc_attr( $args['key'] ); ?>">
526
  <span>[<?php echo esc_attr( FrmAppHelper::truncate( isset( $args['key_label'] ) ? $args['key_label'] : $args['key'], 7 ) ); ?>]</span>
527
  <?php if ( isset( $field['icon'] ) ) { ?>
528
- <i class="<?php echo esc_attr( $field['icon'] ); ?>" aria-hidden="true"></i>
529
  <?php } ?>
530
  <?php echo esc_attr( FrmAppHelper::truncate( $args['name'], 60 ) ); ?>
531
  </a>
108
  <a href="#" id="frm-navbarDrop" class="frm-dropdown-toggle" data-toggle="dropdown">
109
  <h1 title="<?php echo esc_attr( $truncated_name === $name ? '' : $name ); ?>">
110
  <?php echo esc_html( $truncated_name ); ?>
111
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_arrowdown4_icon', array( 'aria-hidden' => 'true' ) ); ?>
112
  </h1>
113
  </a>
114
  <ul class="frm-dropdown-menu frm-on-top frm-inline-modal frm_code_list frm-full-hover" role="menu" aria-labelledby="frm-navbarDrop">
273
  */
274
  public static function setup_edit_vars( $values, $record, $post_values = array() ) {
275
  if ( empty( $post_values ) ) {
276
+ $post_values = wp_unslash( $_POST );
277
  }
278
 
279
  $values['form_key'] = isset( $post_values['form_key'] ) ? $post_values['form_key'] : $record->form_key;
518
  <a href="javascript:void(0)" class="frmids frm_insert_code"
519
  data-code="<?php echo esc_attr( $args['id'] ); ?>">
520
  <span>[<?php echo esc_attr( isset( $args['id_label'] ) ? $args['id_label'] : $args['id'] ); ?>]</span>
521
+ <?php FrmAppHelper::icon_by_class( $field['icon'], array( 'aria-hidden' => 'true' ) ); ?>
522
  <?php echo esc_attr( FrmAppHelper::truncate( $args['name'], 60 ) ); ?>
523
  </a>
524
  <a href="javascript:void(0)" class="frmkeys frm_insert_code frm_hidden"
525
  data-code="<?php echo esc_attr( $args['key'] ); ?>">
526
  <span>[<?php echo esc_attr( FrmAppHelper::truncate( isset( $args['key_label'] ) ? $args['key_label'] : $args['key'], 7 ) ); ?>]</span>
527
  <?php if ( isset( $field['icon'] ) ) { ?>
528
+ <?php FrmAppHelper::icon_by_class( $field['icon'], array( 'aria-hidden' => 'true' ) ); ?>
529
  <?php } ?>
530
  <?php echo esc_attr( FrmAppHelper::truncate( $args['name'], 60 ) ); ?>
531
  </a>
classes/helpers/FrmFormsListHelper.php CHANGED
@@ -256,7 +256,13 @@ class FrmFormsListHelper extends FrmListHelper {
256
  break;
257
  case 'entries':
258
  if ( isset( $item->options['no_save'] ) && $item->options['no_save'] ) {
259
- $val = '<i class="frm_icon_font frm_forbid_icon frm_bstooltip" title="' . esc_attr( 'Saving entries is disabled for this form', 'formidable' ) . '"></i>';
 
 
 
 
 
 
260
  } else {
261
  $text = FrmEntry::getRecordCount( $item->id );
262
  $val = current_user_can( 'frm_view_entries' ) ? '<a href="' . esc_url( admin_url( 'admin.php?page=formidable-entries&form=' . $item->id ) ) . '">' . $text . '</a>' : $text;
256
  break;
257
  case 'entries':
258
  if ( isset( $item->options['no_save'] ) && $item->options['no_save'] ) {
259
+ $val = FrmAppHelper::icon_by_class(
260
+ 'frmfont frm_forbid_icon frm_bstooltip',
261
+ array(
262
+ 'title' => __( 'Saving entries is disabled for this form', 'formidable' ),
263
+ 'echo' => false,
264
+ )
265
+ );
266
  } else {
267
  $text = FrmEntry::getRecordCount( $item->id );
268
  $val = current_user_can( 'frm_view_entries' ) ? '<a href="' . esc_url( admin_url( 'admin.php?page=formidable-entries&form=' . $item->id ) ) . '">' . $text . '</a>' : $text;
classes/helpers/FrmStylesHelper.php CHANGED
@@ -228,8 +228,8 @@ class FrmStylesHelper {
228
 
229
  <div class="btn-group hide-if-no-js" id="frm_<?php echo esc_attr( $name ); ?>_select">
230
  <button class="multiselect dropdown-toggle btn btn-default" data-toggle="dropdown" type="button">
231
- <i class="frm_icon_font <?php echo esc_attr( self::icon_key_to_class( $style->post_content[ $name ], '+', $type ) ); ?>"></i>
232
- <i class="frm_icon_font <?php echo esc_attr( self::icon_key_to_class( $style->post_content[ $name ], '-', $type ) ); ?>"></i>
233
  <b class="caret"></b>
234
  </button>
235
  <ul class="multiselect-container frm-dropdown-menu">
@@ -239,8 +239,8 @@ class FrmStylesHelper {
239
  <label>
240
  <input type="radio" value="<?php echo esc_attr( $key ); ?>"/>
241
  <span>
242
- <i class="frm_icon_font <?php echo esc_attr( self::icon_key_to_class( $key, '+', $type ) ); ?>"></i>
243
- <i class="frm_icon_font <?php echo esc_attr( self::icon_key_to_class( $key, '-', $type ) ); ?>"></i>
244
  </span>
245
  </label>
246
  </a>
228
 
229
  <div class="btn-group hide-if-no-js" id="frm_<?php echo esc_attr( $name ); ?>_select">
230
  <button class="multiselect dropdown-toggle btn btn-default" data-toggle="dropdown" type="button">
231
+ <?php FrmAppHelper::icon_by_class( 'frmfont ' . self::icon_key_to_class( $style->post_content[ $name ], '+', $type ) ); ?>
232
+ <?php FrmAppHelper::icon_by_class( 'frmfont ' . self::icon_key_to_class( $style->post_content[ $name ], '-', $type ) ); ?>
233
  <b class="caret"></b>
234
  </button>
235
  <ul class="multiselect-container frm-dropdown-menu">
239
  <label>
240
  <input type="radio" value="<?php echo esc_attr( $key ); ?>"/>
241
  <span>
242
+ <?php FrmAppHelper::icon_by_class( 'frmfont ' . self::icon_key_to_class( $key, '+', $type ) ); ?>
243
+ <?php FrmAppHelper::icon_by_class( 'frmfont ' . self::icon_key_to_class( $key, '-', $type ) ); ?>
244
  </span>
245
  </label>
246
  </a>
classes/helpers/FrmTipsHelper.php CHANGED
@@ -24,7 +24,7 @@ class FrmTipsHelper {
24
  $link = FrmAppHelper::make_affiliate_url( FrmAppHelper::admin_upgrade_link( $tip['link'], $tip['page'] ) );
25
  ?>
26
  <a href="<?php echo esc_url( $link ); ?>" target="_blank" class="frm_pro_tip">
27
- <i class="frm_icon_font frm_star_full_icon"></i>
28
  <span class="pro-tip">
29
  <?php esc_html_e( 'Pro Tip:', 'formidable' ); ?>
30
  </span>
24
  $link = FrmAppHelper::make_affiliate_url( FrmAppHelper::admin_upgrade_link( $tip['link'], $tip['page'] ) );
25
  ?>
26
  <a href="<?php echo esc_url( $link ); ?>" target="_blank" class="frm_pro_tip">
27
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_star_full_icon', array( 'aria-hidden' => 'true' ) ); ?>
28
  <span class="pro-tip">
29
  <?php esc_html_e( 'Pro Tip:', 'formidable' ); ?>
30
  </span>
classes/models/FrmEntry.php CHANGED
@@ -310,18 +310,18 @@ class FrmEntry {
310
  if ( ! $meta ) {
311
  $entry = FrmDb::check_cache( $id . '_nometa', 'frm_entry', $query, 'get_row' );
312
 
313
- return stripslashes_deep( $entry );
314
  }
315
 
316
  $entry = FrmDb::check_cache( $id, 'frm_entry' );
317
  if ( $entry !== false ) {
318
- return stripslashes_deep( $entry );
319
  }
320
 
321
  $entry = $wpdb->get_row( $query ); // WPCS: unprepared SQL ok.
322
  $entry = self::get_meta( $entry );
323
 
324
- return stripslashes_deep( $entry );
325
  }
326
 
327
  public static function get_meta( $entry ) {
@@ -423,7 +423,7 @@ class FrmEntry {
423
  }
424
 
425
  if ( ! $meta || ! $entries ) {
426
- return stripslashes_deep( $entries );
427
  }
428
  unset( $meta );
429
 
@@ -443,7 +443,7 @@ class FrmEntry {
443
  unset( $meta_where );
444
 
445
  if ( ! $metas ) {
446
- return stripslashes_deep( $entries );
447
  }
448
 
449
  foreach ( $metas as $m_key => $meta_val ) {
@@ -467,7 +467,7 @@ class FrmEntry {
467
  }
468
  }
469
 
470
- return stripslashes_deep( $entries );
471
  }
472
 
473
  // Pagination Methods
310
  if ( ! $meta ) {
311
  $entry = FrmDb::check_cache( $id . '_nometa', 'frm_entry', $query, 'get_row' );
312
 
313
+ return wp_unslash( $entry );
314
  }
315
 
316
  $entry = FrmDb::check_cache( $id, 'frm_entry' );
317
  if ( $entry !== false ) {
318
+ return wp_unslash( $entry );
319
  }
320
 
321
  $entry = $wpdb->get_row( $query ); // WPCS: unprepared SQL ok.
322
  $entry = self::get_meta( $entry );
323
 
324
+ return wp_unslash( $entry );
325
  }
326
 
327
  public static function get_meta( $entry ) {
423
  }
424
 
425
  if ( ! $meta || ! $entries ) {
426
+ return wp_unslash( $entries );
427
  }
428
  unset( $meta );
429
 
443
  unset( $meta_where );
444
 
445
  if ( ! $metas ) {
446
+ return wp_unslash( $entries );
447
  }
448
 
449
  foreach ( $metas as $m_key => $meta_val ) {
467
  }
468
  }
469
 
470
+ return wp_unslash( $entries );
471
  }
472
 
473
  // Pagination Methods
classes/models/FrmEntryMeta.php CHANGED
@@ -214,7 +214,7 @@ class FrmEntryMeta {
214
  if ( $cached && isset( $cached->metas ) && isset( $cached->metas[ $field_id ] ) ) {
215
  $result = $cached->metas[ $field_id ];
216
 
217
- return stripslashes_deep( $result );
218
  }
219
 
220
  $get_table = $wpdb->prefix . 'frm_item_metas';
@@ -228,7 +228,7 @@ class FrmEntryMeta {
228
 
229
  $result = FrmDb::get_var( $get_table, $query, 'meta_value' );
230
  $result = maybe_unserialize( $result );
231
- $result = stripslashes_deep( $result );
232
 
233
  return $result;
234
  }
@@ -258,7 +258,7 @@ class FrmEntryMeta {
258
  unset( $k, $v );
259
  }
260
 
261
- return stripslashes_deep( $values );
262
  }
263
 
264
  /**
@@ -310,7 +310,7 @@ class FrmEntryMeta {
310
  }
311
 
312
  foreach ( $results as $k => $result ) {
313
- $results[ $k ]->meta_value = stripslashes_deep( maybe_unserialize( $result->meta_value ) );
314
  unset( $k, $result );
315
  }
316
 
214
  if ( $cached && isset( $cached->metas ) && isset( $cached->metas[ $field_id ] ) ) {
215
  $result = $cached->metas[ $field_id ];
216
 
217
+ return wp_unslash( $result );
218
  }
219
 
220
  $get_table = $wpdb->prefix . 'frm_item_metas';
228
 
229
  $result = FrmDb::get_var( $get_table, $query, 'meta_value' );
230
  $result = maybe_unserialize( $result );
231
+ $result = wp_unslash( $result );
232
 
233
  return $result;
234
  }
258
  unset( $k, $v );
259
  }
260
 
261
+ return wp_unslash( $values );
262
  }
263
 
264
  /**
310
  }
311
 
312
  foreach ( $results as $k => $result ) {
313
+ $results[ $k ]->meta_value = wp_unslash( maybe_unserialize( $result->meta_value ) );
314
  unset( $k, $result );
315
  }
316
 
classes/models/FrmField.php CHANGED
@@ -431,7 +431,7 @@ class FrmField {
431
  self::prepare_options( $results );
432
  self::filter_field( $filter, $results );
433
 
434
- return stripslashes_deep( $results );
435
  }
436
 
437
  /**
@@ -504,7 +504,7 @@ class FrmField {
504
  unset( $result );
505
  }
506
 
507
- return stripslashes_deep( $fields );
508
  }
509
 
510
  self::$use_cache = false;
@@ -613,7 +613,7 @@ class FrmField {
613
  // make sure old cache doesn't get saved as a transient
614
  $results = wp_cache_get( $cache_key, 'frm_field' );
615
  if ( false !== $results ) {
616
- return stripslashes_deep( $results );
617
  }
618
  }
619
 
@@ -662,7 +662,7 @@ class FrmField {
662
 
663
  FrmDb::set_cache( $cache_key, $results, 'frm_field' );
664
 
665
- return stripslashes_deep( $results );
666
  }
667
 
668
  /**
431
  self::prepare_options( $results );
432
  self::filter_field( $filter, $results );
433
 
434
+ return wp_unslash( $results );
435
  }
436
 
437
  /**
504
  unset( $result );
505
  }
506
 
507
+ return wp_unslash( $fields );
508
  }
509
 
510
  self::$use_cache = false;
613
  // make sure old cache doesn't get saved as a transient
614
  $results = wp_cache_get( $cache_key, 'frm_field' );
615
  if ( false !== $results ) {
616
+ return wp_unslash( $results );
617
  }
618
  }
619
 
662
 
663
  FrmDb::set_cache( $cache_key, $results, 'frm_field' );
664
 
665
+ return wp_unslash( $results );
666
  }
667
 
668
  /**
classes/models/FrmForm.php CHANGED
@@ -570,7 +570,7 @@ class FrmForm {
570
  $cache->options = maybe_unserialize( $cache->options );
571
  }
572
 
573
- return stripslashes_deep( $cache );
574
  }
575
  }
576
 
@@ -587,7 +587,7 @@ class FrmForm {
587
  $results->options = maybe_unserialize( $results->options );
588
  }
589
 
590
- return stripslashes_deep( $results );
591
  }
592
 
593
  /**
@@ -621,7 +621,7 @@ class FrmForm {
621
  $results = reset( $results );
622
  }
623
 
624
- return stripslashes_deep( $results );
625
  }
626
 
627
  /**
570
  $cache->options = maybe_unserialize( $cache->options );
571
  }
572
 
573
+ return wp_unslash( $cache );
574
  }
575
  }
576
 
587
  $results->options = maybe_unserialize( $results->options );
588
  }
589
 
590
+ return wp_unslash( $results );
591
  }
592
 
593
  /**
621
  $results = reset( $results );
622
  }
623
 
624
+ return wp_unslash( $results );
625
  }
626
 
627
  /**
classes/models/FrmFormAction.php CHANGED
@@ -309,6 +309,8 @@ class FrmFormAction {
309
  $action[ $ck ] = $this->duplicate_array_walk( $action[ $ck ], $subkey, $cv );
310
  } elseif ( $ck == $subkey && isset( $frm_duplicate_ids[ $cv ] ) ) {
311
  $action[ $ck ] = $frm_duplicate_ids[ $cv ];
 
 
312
  }
313
  }
314
  }
309
  $action[ $ck ] = $this->duplicate_array_walk( $action[ $ck ], $subkey, $cv );
310
  } elseif ( $ck == $subkey && isset( $frm_duplicate_ids[ $cv ] ) ) {
311
  $action[ $ck ] = $frm_duplicate_ids[ $cv ];
312
+ } elseif ( $ck == $subkey ) {
313
+ $action[ $ck ] = FrmFieldsHelper::switch_field_ids( $action[ $ck ] );
314
  }
315
  }
316
  }
classes/models/FrmFormMigrator.php CHANGED
@@ -76,7 +76,7 @@ abstract class FrmFormMigrator {
76
  <div id="frm-importer-process" class="frm_hidden">
77
 
78
  <p class="process-count">
79
- <i class="fa fa-spinner fa-spin" aria-hidden="true"></i>
80
  Importing <span class="form-current">1</span> of <span class="form-total">0</span> forms
81
  from <?php echo esc_html( $this->name ); ?>.
82
  </p>
76
  <div id="frm-importer-process" class="frm_hidden">
77
 
78
  <p class="process-count">
79
+ <span class="frm-wait" aria-hidden="true"></span>
80
  Importing <span class="form-current">1</span> of <span class="form-total">0</span> forms
81
  from <?php echo esc_html( $this->name ); ?>.
82
  </p>
classes/models/FrmStyle.php CHANGED
@@ -50,7 +50,7 @@ class FrmStyle {
50
  $action_ids = array();
51
 
52
  foreach ( $all_instances as $number => $new_instance ) {
53
- $new_instance = stripslashes_deep( (array) $new_instance );
54
  $this->id = $new_instance['ID'];
55
  if ( $id != $this->id || ! $_POST || ! isset( $_POST['frm_style_setting'] ) ) {
56
  $all_instances[ $number ] = $new_instance;
@@ -66,7 +66,10 @@ class FrmStyle {
66
  }
67
 
68
  $new_instance['post_title'] = isset( $_POST['frm_style_setting']['post_title'] ) ? sanitize_text_field( wp_unslash( $_POST['frm_style_setting']['post_title'] ) ) : '';
69
- $new_instance['post_content'] = isset( $_POST['frm_style_setting']['post_content'] ) ? wp_unslash( $_POST['frm_style_setting']['post_content'] ) : '';
 
 
 
70
  $new_instance['post_type'] = FrmStylesController::$post_type;
71
  $new_instance['post_status'] = 'publish';
72
  $new_instance['menu_order'] = isset( $_POST['frm_style_setting']['menu_order'] ) ? absint( $_POST['frm_style_setting']['menu_order'] ) : 0;
50
  $action_ids = array();
51
 
52
  foreach ( $all_instances as $number => $new_instance ) {
53
+ $new_instance = (array) $new_instance;
54
  $this->id = $new_instance['ID'];
55
  if ( $id != $this->id || ! $_POST || ! isset( $_POST['frm_style_setting'] ) ) {
56
  $all_instances[ $number ] = $new_instance;
66
  }
67
 
68
  $new_instance['post_title'] = isset( $_POST['frm_style_setting']['post_title'] ) ? sanitize_text_field( wp_unslash( $_POST['frm_style_setting']['post_title'] ) ) : '';
69
+
70
+ // Don't wp_unslash yet since it removes backslashes.
71
+ $new_instance['post_content'] = isset( $_POST['frm_style_setting']['post_content'] ) ? $_POST['frm_style_setting']['post_content'] : ''; // WPCS: sanitization ok.
72
+ FrmAppHelper::sanitize_value( 'wp_kses_post', $new_instance['post_content'] );
73
  $new_instance['post_type'] = FrmStylesController::$post_type;
74
  $new_instance['post_status'] = 'publish';
75
  $new_instance['menu_order'] = isset( $_POST['frm_style_setting']['menu_order'] ) ? absint( $_POST['frm_style_setting']['menu_order'] ) : 0;
classes/models/FrmUsage.php CHANGED
@@ -76,7 +76,7 @@ class FrmUsage {
76
  'entry_count' => FrmEntry::getRecordCount(),
77
  'timestamp' => gmdate( 'c' ),
78
 
79
- 'theme_name' => $theme_data->Name, // phpcs:ignore WordPress.NamingConventions
80
  'plugins' => $this->plugins(),
81
  'settings' => array(
82
  $this->settings(),
@@ -280,7 +280,7 @@ class FrmUsage {
280
  $field_query = array(
281
  'or' => 1,
282
  'fi.form_id' => $form_id,
283
- 'fi.parent_form_id' => $form_id,
284
  );
285
 
286
  return FrmDb::get_count( $join, $field_query );
@@ -313,7 +313,11 @@ class FrmUsage {
313
  'order_by' => 'id DESC',
314
  );
315
 
316
- return FrmDb::get_results( 'frm_fields', array(), 'form_id, name, type', $args );
 
 
 
 
317
  }
318
 
319
  /**
76
  'entry_count' => FrmEntry::getRecordCount(),
77
  'timestamp' => gmdate( 'c' ),
78
 
79
+ 'theme_name' => is_object( $theme_data ) ? $theme_data->Name : '', // phpcs:ignore WordPress.NamingConventions
80
  'plugins' => $this->plugins(),
81
  'settings' => array(
82
  $this->settings(),
280
  $field_query = array(
281
  'or' => 1,
282
  'fi.form_id' => $form_id,
283
+ 'parent_form_id' => $form_id,
284
  );
285
 
286
  return FrmDb::get_count( $join, $field_query );
313
  'order_by' => 'id DESC',
314
  );
315
 
316
+ $fields = FrmDb::get_results( 'frm_fields', array(), 'form_id, name, type, field_options', $args );
317
+ foreach ( $fields as $k => $field ) {
318
+ $fields[ $k ]->field_options = json_encode( maybe_unserialize( $field->field_options ) );
319
+ }
320
+ return $fields;
321
  }
322
 
323
  /**
classes/models/fields/FrmFieldCaptcha.php CHANGED
@@ -174,7 +174,7 @@ class FrmFieldCaptcha extends FrmFieldType {
174
  }
175
 
176
  protected function should_validate() {
177
- $is_hidden_field = apply_filters( 'frm_is_field_hidden', false, $this->field, stripslashes_deep( $_POST ) ); // WPCS: CSRF ok.
178
  if ( FrmAppHelper::is_admin() || $is_hidden_field ) {
179
  return false;
180
  }
174
  }
175
 
176
  protected function should_validate() {
177
+ $is_hidden_field = apply_filters( 'frm_is_field_hidden', false, $this->field, wp_unslash( $_POST ) ); // WPCS: CSRF ok.
178
  if ( FrmAppHelper::is_admin() || $is_hidden_field ) {
179
  return false;
180
  }
classes/models/fields/FrmFieldType.php CHANGED
@@ -360,7 +360,8 @@ DEFAULT_HTML;
360
  return;
361
  }
362
 
363
- if ( empty( array_filter( $default_value ) ) ) {
 
364
  $default_value = '';
365
  } else {
366
  $default_value = implode( $default_value, ',' );
@@ -814,12 +815,9 @@ DEFAULT_HTML;
814
  $field = isset( $values['field'] ) ? $values['field'] : $this->field;
815
  $input_html = $this->get_field_input_html_hook( $field );
816
  $select_atts = $this->get_select_atributes( $values );
817
- $select = '';
818
- foreach ( $select_atts as $name => $value ) {
819
- $select .= $name . '="' . esc_attr( $value ) . '" ';
820
- }
821
 
822
- return '<select ' . $select . $input_html . '>';
823
  }
824
 
825
  /**
360
  return;
361
  }
362
 
363
+ $is_empty = array_filter( $default_value );
364
+ if ( empty( $is_empty ) ) {
365
  $default_value = '';
366
  } else {
367
  $default_value = implode( $default_value, ',' );
815
  $field = isset( $values['field'] ) ? $values['field'] : $this->field;
816
  $input_html = $this->get_field_input_html_hook( $field );
817
  $select_atts = $this->get_select_atributes( $values );
818
+ $select = FrmAppHelper::array_to_html_params( $select_atts ) . ' ';
 
 
 
819
 
820
+ return '<select' . $select . $input_html . '>';
821
  }
822
 
823
  /**
classes/views/addons/upgrade_to_pro.php CHANGED
@@ -82,8 +82,12 @@
82
  }
83
  ?>
84
  </th>
85
- <td><i class="frm_icon_font <?php echo esc_attr( $feature['lite'] ? 'frm_checkmark_icon' : 'frm_close_icon' ); ?>"></i></td>
86
- <td><i class="frm_icon_font frm_checkmark_icon"></i></td>
 
 
 
 
87
  </tr>
88
  <?php } ?>
89
  <?php } ?>
82
  }
83
  ?>
84
  </th>
85
+ <td class="<?php echo esc_attr( $feature['lite'] ? 'frm-checked' : '' ); ?>">
86
+ <?php FrmAppHelper::icon_by_class( 'frmfont ' . ( $feature['lite'] ? 'frm_checkmark_icon' : 'frm_close_icon' ) ); ?>
87
+ </td>
88
+ <td class="<?php echo esc_attr( 'frm-checked' ); ?>">
89
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_checkmark_icon' ); ?>
90
+ </td>
91
  </tr>
92
  <?php } ?>
93
  <?php } ?>
classes/views/frm-entries/_sidebar-shared-pub.php CHANGED
@@ -4,7 +4,7 @@ if ( ! isset( $entry ) ) {
4
  } ?>
5
 
6
  <div class="misc-pub-section">
7
- <i class="frm_icon_font frm_calendar_icon"></i>
8
  <span id="timestamp">
9
  <?php
10
  $date_format = __( 'M j, Y @ G:i', 'formidable' );
@@ -19,7 +19,7 @@ if ( ! isset( $entry ) ) {
19
 
20
  <?php if ( $entry->updated_at && $entry->updated_at != $entry->created_at ) { ?>
21
  <div class="misc-pub-section">
22
- <i class="frm_icon_font frm_calendar_icon"></i>
23
  <span id="timestamp">
24
  <?php
25
  printf(
4
  } ?>
5
 
6
  <div class="misc-pub-section">
7
+ <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_calendar_icon', array( 'aria-hidden' => 'true' ) ); ?>
8
  <span id="timestamp">
9
  <?php
10
  $date_format = __( 'M j, Y @ G:i', 'formidable' );
19
 
20
  <?php if ( $entry->updated_at && $entry->updated_at != $entry->created_at ) { ?>
21
  <div class="misc-pub-section">
22
+ <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_calendar_icon', array( 'aria-hidden' => 'true' ) ); ?>
23
  <span id="timestamp">
24
  <?php
25
  printf(
classes/views/frm-entries/list.php CHANGED
@@ -30,8 +30,6 @@
30
  <?php } ?>
31
  <?php } ?>
32
 
33
- <?php require( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' ); ?>
34
-
35
  <form id="posts-filter" method="get">
36
  <input type="hidden" name="page" value="formidable-entries" />
37
  <input type="hidden" name="form" value="<?php echo esc_attr( $form ? $form->id : '' ); ?>" />
@@ -41,6 +39,8 @@
41
 
42
  <?php FrmTipsHelper::pro_tip( 'get_entries_tip', 'p' ); ?>
43
 
 
 
44
  <?php $wp_list_table->display(); ?>
45
  </form>
46
  </div>
30
  <?php } ?>
31
  <?php } ?>
32
 
 
 
33
  <form id="posts-filter" method="get">
34
  <input type="hidden" name="page" value="formidable-entries" />
35
  <input type="hidden" name="form" value="<?php echo esc_attr( $form ? $form->id : '' ); ?>" />
39
 
40
  <?php FrmTipsHelper::pro_tip( 'get_entries_tip', 'p' ); ?>
41
 
42
+ <div class="clear"></div>
43
+ <?php require( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' ); ?>
44
  <?php $wp_list_table->display(); ?>
45
  </form>
46
  </div>
classes/views/frm-entries/no_entries.php CHANGED
@@ -12,11 +12,15 @@
12
  );
13
  ?>
14
  </p>
15
- <?php } elseif ( $form ) { ?>
16
  <div class="frm_no_entries_header">
17
  <?php
18
- /* translators: %s: The form name */
19
- printf( esc_html__( 'No Entries for form: %s', 'formidable' ), esc_html( $form->name ) );
 
 
 
 
20
  ?>
21
  </div>
22
  <p class="frm_no_entries_text">
12
  );
13
  ?>
14
  </p>
15
+ <?php } elseif ( $form || $has_form ) { ?>
16
  <div class="frm_no_entries_header">
17
  <?php
18
+ if ( $form ) {
19
+ /* translators: %s: The form name */
20
+ printf( esc_html__( 'No Entries for form: %s', 'formidable' ), esc_html( $form->name ) );
21
+ } else {
22
+ esc_html_e( 'No Entries found.', 'formidable' );
23
+ }
24
  ?>
25
  </div>
26
  <p class="frm_no_entries_text">
classes/views/frm-entries/show.php CHANGED
@@ -42,6 +42,9 @@
42
  'include_extras' => 'page, section',
43
  'inline_style' => 0,
44
  'class' => 'frm-alt-table',
 
 
 
45
  )
46
  );
47
  ?>
42
  'include_extras' => 'page, section',
43
  'inline_style' => 0,
44
  'class' => 'frm-alt-table',
45
+ 'show_filename' => true,
46
+ 'show_image' => true,
47
+ 'add_link' => true,
48
  )
49
  );
50
  ?>
classes/views/frm-entries/sidebar-shared.php CHANGED
@@ -27,7 +27,7 @@
27
 
28
  <?php if ( $entry->post_id ) { ?>
29
  <div class="misc-pub-section frm_no_print">
30
- <i aria-hidden="true" class="frm_icon_font frm_calendar_icon"></i>
31
  <?php esc_html_e( 'Post', 'formidable' ); ?>:
32
  <b><?php echo esc_html( get_the_title( $entry->post_id ) ); ?></b>
33
  <span>
@@ -42,20 +42,20 @@
42
  <?php } ?>
43
 
44
  <div class="misc-pub-section">
45
- <i class="frm_icon_font frm_fingerprint_icon" aria-hidden="true"></i>
46
  <?php esc_html_e( 'Entry ID', 'formidable' ); ?>:
47
  <b><?php echo absint( $entry->id ); ?></b>
48
  </div>
49
 
50
  <div class="misc-pub-section">
51
- <i class="frm_icon_font frm_keyalt_icon" aria-hidden="true"></i>
52
  <?php esc_html_e( 'Entry Key', 'formidable' ); ?>:
53
  <b><?php echo esc_html( $entry->item_key ); ?></b>
54
  </div>
55
 
56
  <?php if ( $entry->parent_item_id ) { ?>
57
  <div class="misc-pub-section">
58
- <i class="frm_icon_font frm_sitemap_icon" aria-hidden="true"></i>
59
  <?php esc_html_e( 'Parent Entry ID', 'formidable' ); ?>:
60
  <b><?php echo esc_html( $entry->parent_item_id ); ?></b>
61
  </div>
@@ -68,8 +68,9 @@
68
  <div class="inside">
69
  <?php if ( $entry->user_id ) { ?>
70
  <div class="misc-pub-section">
71
- <i class="frm_icon_font frm_user_icon" aria-hidden="true"></i>
72
  <?php
 
 
73
  printf(
74
  /* translators: %1$s: User display name. */
75
  esc_html__( 'Created by: %1$s', 'formidable' ),
@@ -81,8 +82,9 @@
81
 
82
  <?php if ( $entry->updated_by && $entry->updated_by != $entry->user_id ) { ?>
83
  <div class="misc-pub-section">
84
- <i class="frm_icon_font frm_user_icon" aria-hidden="true"></i>
85
  <?php
 
 
86
  printf(
87
  /* translators: %1$s: User display name. */
88
  esc_html__( 'Updated by: %1$s', 'formidable' ),
@@ -94,7 +96,7 @@
94
 
95
  <?php if ( ! empty( $entry->ip ) ) { ?>
96
  <div class="misc-pub-section">
97
- <i class="frm_icon_font frm_location_icon" aria-hidden="true"></i>
98
  <?php esc_html_e( 'IP Address:', 'formidable' ); ?>
99
  <b><?php echo esc_html( $entry->ip ); ?></b>
100
  </div>
@@ -102,7 +104,7 @@
102
 
103
  <?php if ( isset( $browser ) ) { ?>
104
  <div class="misc-pub-section">
105
- <i class="frm_icon_font frm_browser_icon" aria-hidden="true"></i>
106
  <?php esc_html_e( 'Browser/OS:', 'formidable' ); ?>
107
  <b><?php echo wp_kses_post( $browser ); ?></b>
108
  </div>
@@ -110,7 +112,7 @@
110
 
111
  <?php if ( isset( $data['referrer'] ) ) { ?>
112
  <div class="misc-pub-section frm_force_wrap">
113
- <i class="frm_icon_font frm_history_icon" aria-hidden="true"></i>
114
  <?php esc_html_e( 'Referrer:', 'formidable' ); ?>
115
  <?php echo wp_kses_post( str_replace( "\r\n", '<br/>', $data['referrer'] ) ); ?>
116
  </div>
@@ -123,7 +125,7 @@
123
  }
124
  ?>
125
  <div class="misc-pub-section">
126
- <i class="frm_icon_font frm_attach_file_icon" aria-hidden="true"></i>
127
  <?php echo esc_html( ucfirst( str_replace( '-', ' ', $k ) ) ); ?>:
128
  <b><?php echo wp_kses_post( implode( ', ', (array) $d ) ); ?></b>
129
  </div>
27
 
28
  <?php if ( $entry->post_id ) { ?>
29
  <div class="misc-pub-section frm_no_print">
30
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_calendar_icon', array( 'aria-hidden' => 'true' ) ); ?>
31
  <?php esc_html_e( 'Post', 'formidable' ); ?>:
32
  <b><?php echo esc_html( get_the_title( $entry->post_id ) ); ?></b>
33
  <span>
42
  <?php } ?>
43
 
44
  <div class="misc-pub-section">
45
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_fingerprint_icon', array( 'aria-hidden' => 'true' ) ); ?>
46
  <?php esc_html_e( 'Entry ID', 'formidable' ); ?>:
47
  <b><?php echo absint( $entry->id ); ?></b>
48
  </div>
49
 
50
  <div class="misc-pub-section">
51
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_keyalt_icon', array( 'aria-hidden' => 'true' ) ); ?>
52
  <?php esc_html_e( 'Entry Key', 'formidable' ); ?>:
53
  <b><?php echo esc_html( $entry->item_key ); ?></b>
54
  </div>
55
 
56
  <?php if ( $entry->parent_item_id ) { ?>
57
  <div class="misc-pub-section">
58
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_sitemap_icon', array( 'aria-hidden' => 'true' ) ); ?>
59
  <?php esc_html_e( 'Parent Entry ID', 'formidable' ); ?>:
60
  <b><?php echo esc_html( $entry->parent_item_id ); ?></b>
61
  </div>
68
  <div class="inside">
69
  <?php if ( $entry->user_id ) { ?>
70
  <div class="misc-pub-section">
 
71
  <?php
72
+ FrmAppHelper::icon_by_class( 'frmfont frm_user_icon', array( 'aria-hidden' => 'true' ) );
73
+
74
  printf(
75
  /* translators: %1$s: User display name. */
76
  esc_html__( 'Created by: %1$s', 'formidable' ),
82
 
83
  <?php if ( $entry->updated_by && $entry->updated_by != $entry->user_id ) { ?>
84
  <div class="misc-pub-section">
 
85
  <?php
86
+ FrmAppHelper::icon_by_class( 'frmfont frm_user_icon', array( 'aria-hidden' => 'true' ) );
87
+
88
  printf(
89
  /* translators: %1$s: User display name. */
90
  esc_html__( 'Updated by: %1$s', 'formidable' ),
96
 
97
  <?php if ( ! empty( $entry->ip ) ) { ?>
98
  <div class="misc-pub-section">
99
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_location_icon', array( 'aria-hidden' => 'true' ) ); ?>
100
  <?php esc_html_e( 'IP Address:', 'formidable' ); ?>
101
  <b><?php echo esc_html( $entry->ip ); ?></b>
102
  </div>
104
 
105
  <?php if ( isset( $browser ) ) { ?>
106
  <div class="misc-pub-section">
107
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_browser_icon', array( 'aria-hidden' => 'true' ) ); ?>
108
  <?php esc_html_e( 'Browser/OS:', 'formidable' ); ?>
109
  <b><?php echo wp_kses_post( $browser ); ?></b>
110
  </div>
112
 
113
  <?php if ( isset( $data['referrer'] ) ) { ?>
114
  <div class="misc-pub-section frm_force_wrap">
115
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_history_icon', array( 'aria-hidden' => 'true' ) ); ?>
116
  <?php esc_html_e( 'Referrer:', 'formidable' ); ?>
117
  <?php echo wp_kses_post( str_replace( "\r\n", '<br/>', $data['referrer'] ) ); ?>
118
  </div>
125
  }
126
  ?>
127
  <div class="misc-pub-section">
128
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_attach_file_icon', array( 'aria-hidden' => 'true' ) ); ?>
129
  <?php echo esc_html( ucfirst( str_replace( '-', ' ', $k ) ) ); ?>:
130
  <b><?php echo wp_kses_post( implode( ', ', (array) $d ) ); ?></b>
131
  </div>
classes/views/frm-fields/back-end/bulk-options-overlay.php CHANGED
@@ -1,6 +1,6 @@
1
  <div id="frm-bulk-modal" class="frm_hidden settings-lite-cta">
2
  <a href="#" class="dismiss alignright" title="<?php esc_attr_e( 'Close', 'formidable' ); ?>">
3
- <i class="frm_icon_font frm_close_icon" aria-label="<?php esc_attr_e( 'Close', 'formidable' ); ?>" aria-hidden="true"></i>
4
  </a>
5
  <h2>
6
  <?php esc_html_e( 'Bulk Edit Options', 'formidable' ); ?>
1
  <div id="frm-bulk-modal" class="frm_hidden settings-lite-cta">
2
  <a href="#" class="dismiss alignright" title="<?php esc_attr_e( 'Close', 'formidable' ); ?>">
3
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon', array( 'aria-label' => __( 'Close', 'formidable' ) ) ); ?>
4
  </a>
5
  <h2>
6
  <?php esc_html_e( 'Bulk Edit Options', 'formidable' ); ?>
classes/views/frm-fields/back-end/field-user-id.php CHANGED
@@ -1,4 +1,4 @@
1
  <span class="frm-with-left-icon">
2
- <i class="frm_icon_font frm_user_icon"></i>
3
  <input type="text" value="<?php esc_attr_e( 'User ID fields will not show in your form.', 'formidable' ); ?>" disabled />
4
  </span>
1
  <span class="frm-with-left-icon">
2
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_user_icon', array( 'aria-hidden' => 'true' ) ); ?>
3
  <input type="text" value="<?php esc_attr_e( 'User ID fields will not show in your form.', 'formidable' ); ?>" disabled />
4
  </span>
classes/views/frm-fields/back-end/html-content.php CHANGED
@@ -3,7 +3,15 @@
3
  <?php esc_html_e( 'Content', 'formidable' ); ?>
4
  </label>
5
  <span class="frm-with-right-icon">
6
- <i class="frm-show-inline-modal frm_icon_font frm_more_horiz_solid_icon" data-open="frm-smart-values-box" title="<?php esc_attr_e( 'Toggle Options', 'formidable' ); ?>"></i>
 
 
 
 
 
 
 
 
7
  <textarea name="field_options[description_<?php echo absint( $field['id'] ); ?>]" id="frm_description_<?php echo esc_attr( $field['id'] ); ?>" rows="8"><?php
8
  echo FrmAppHelper::esc_textarea( $field['description'] ); // WPCS: XSS ok.
9
  ?></textarea>
3
  <?php esc_html_e( 'Content', 'formidable' ); ?>
4
  </label>
5
  <span class="frm-with-right-icon">
6
+ <?php
7
+ FrmAppHelper::icon_by_class(
8
+ 'frm_icon_font frm_more_horiz_solid_icon frm-show-inline-modal',
9
+ array(
10
+ 'data-open' => 'frm-smart-values-box',
11
+ 'title' => esc_attr__( 'Toggle Options', 'formidable' ),
12
+ )
13
+ );
14
+ ?>
15
  <textarea name="field_options[description_<?php echo absint( $field['id'] ); ?>]" id="frm_description_<?php echo esc_attr( $field['id'] ); ?>" rows="8"><?php
16
  echo FrmAppHelper::esc_textarea( $field['description'] ); // WPCS: XSS ok.
17
  ?></textarea>
classes/views/frm-fields/back-end/inline-modal.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="frm-inline-modal postbox <?php echo esc_attr( $args['class'] . ( $args['show'] ? '' : ' frm_hidden' ) ); ?>" id="<?php echo esc_attr( $args['id'] ); ?>">
2
  <a href="#" class="dismiss alignright" title="<?php esc_attr_e( 'Close', 'formidable' ); ?>">
3
- <i class="frm_icon_font frm_close_icon" aria-label="<?php esc_attr_e( 'Close', 'formidable' ); ?>" aria-hidden="true"></i>
4
  </a>
5
  <ul class="frm-nav-tabs">
6
  <li class="frm-tabs">
1
  <div class="frm-inline-modal postbox <?php echo esc_attr( $args['class'] . ( $args['show'] ? '' : ' frm_hidden' ) ); ?>" id="<?php echo esc_attr( $args['id'] ); ?>">
2
  <a href="#" class="dismiss alignright" title="<?php esc_attr_e( 'Close', 'formidable' ); ?>">
3
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon', array( 'aria-label' => __( 'Close', 'formidable' ) ) ); ?>
4
  </a>
5
  <ul class="frm-nav-tabs">
6
  <li class="frm-tabs">
classes/views/frm-fields/back-end/settings.php CHANGED
@@ -65,6 +65,26 @@
65
  $field_obj->show_primary_options( compact( 'field', 'display', 'values' ) );
66
 
67
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  </div>
69
 
70
  <?php if ( ! empty( $display_type ) ) { ?>
@@ -132,20 +152,6 @@ do_action( 'frm_before_field_options', $field );
132
  <i class="frm_icon_font frm_arrowdown6_icon"></i>
133
  </h3>
134
  <div class="frm_grid_container frm-collapse-me">
135
- <?php
136
- if ( $display['description'] ) {
137
- include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/field-description.php' );
138
- }
139
- ?>
140
-
141
- <?php if ( $display['clear_on_focus'] ) { ?>
142
- <p>
143
- <label for="frm_placeholder_<?php echo esc_attr( $field['id'] ); ?>">
144
- <?php esc_html_e( 'Placeholder Text', 'formidable' ); ?>
145
- </label>
146
- <input type="text" name="field_options[placeholder_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['placeholder'] ); ?>" id="frm_placeholder_<?php echo esc_attr( $field['id'] ); ?>" data-changeme="field_<?php echo esc_attr( $field['field_key'] ); ?>" data-changeatt="placeholder" />
147
- </p>
148
- <?php } ?>
149
 
150
  <?php if ( $display['default'] ) { ?>
151
  <div class="frm-has-modal">
@@ -160,7 +166,7 @@ do_action( 'frm_before_field_options', $field );
160
  data-frmhide=".frm-inline-modal,.default-value-section-<?php echo esc_attr( $field['id'] ); ?>"
161
  <?php } ?>
162
  >
163
- <i class="<?php echo esc_attr( $link['icon'] ); ?>"></i>
164
  </a>
165
  <?php } ?>
166
  </span>
@@ -171,8 +177,15 @@ do_action( 'frm_before_field_options', $field );
171
  <?php esc_html_e( 'Default Value', 'formidable' ); ?>
172
  </label>
173
  <span class="frm-with-right-icon">
174
- <i class="frm-show-inline-modal frm_icon_font frm_more_horiz_solid_icon" data-open="frm-smart-values-box" title="<?php esc_attr_e( 'Toggle Options', 'formidable' ); ?>"></i>
175
  <?php
 
 
 
 
 
 
 
 
176
  if ( isset( $display['default_value'] ) && $display['default_value'] ) {
177
  $default_name = 'field_options[dyn_default_value_' . $field['id'] . ']';
178
  $default_value = isset( $field['dyn_default_value'] ) ? $field['dyn_default_value'] : '';
@@ -181,8 +194,19 @@ do_action( 'frm_before_field_options', $field );
181
  $default_value = $field['default_value'];
182
  }
183
  $field_obj->default_value_to_string( $default_value );
 
 
 
 
 
 
 
 
 
 
 
 
184
  ?>
185
- <input type="text" name="<?php echo esc_attr( $default_name ); ?>" value="<?php echo esc_attr( $default_value ); ?>" id="frm_default_value_<?php echo esc_attr( $field['id'] ); ?>" class="default-value-field" />
186
  </span>
187
  </p>
188
  <?php do_action( 'frm_default_value_setting', compact( 'field', 'display', 'default_value_types' ) ); ?>
@@ -191,19 +215,20 @@ do_action( 'frm_before_field_options', $field );
191
 
192
  <?php $field_obj->show_after_default( compact( 'field', 'display' ) ); ?>
193
 
194
- <?php if ( $display['css'] ) { ?>
195
- <p class="frm-has-modal">
196
- <label for="frm_classes_<?php echo esc_attr( $field['id'] ); ?>" class="frm_help" title="<?php esc_attr_e( 'Add a CSS class to the field container. Use our predefined classes to align multiple fields in single row.', 'formidable' ); ?>">
197
- <?php esc_html_e( 'CSS Layout Classes', 'formidable' ); ?>
198
  </label>
199
- <span class="frm-with-right-icon">
200
- <i class="frm-show-inline-modal frm_icon_font frm_more_horiz_solid_icon" data-open="frm-layout-classes-box" title="<?php esc_attr_e( 'Toggle Options', 'formidable' ); ?>"></i>
201
- <input type="text" name="field_options[classes_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['classes'] ); ?>" class="frm_classes" id="frm_classes_<?php echo esc_attr( $field['id'] ); ?>" data-changeme="frm_field_id_<?php echo esc_attr( $field['id'] ); ?>" data-changeatt="class" />
202
- </span>
203
  </p>
204
  <?php } ?>
205
 
206
  <?php
 
 
 
 
207
  // Field Size
208
  if ( $display['size'] && ! in_array( $field['type'], array( 'select', 'data', 'time' ) ) ) {
209
  $display_max = $display['max'];
65
  $field_obj->show_primary_options( compact( 'field', 'display', 'values' ) );
66
 
67
  ?>
68
+
69
+ <?php if ( $display['css'] ) { ?>
70
+ <p class="frm-has-modal">
71
+ <label for="frm_classes_<?php echo esc_attr( $field['id'] ); ?>" class="frm_help" title="<?php esc_attr_e( 'Add a CSS class to the field container. Use our predefined classes to align multiple fields in single row.', 'formidable' ); ?>">
72
+ <?php esc_html_e( 'CSS Layout Classes', 'formidable' ); ?>
73
+ </label>
74
+ <span class="frm-with-right-icon">
75
+ <?php
76
+ FrmAppHelper::icon_by_class(
77
+ 'frm_icon_font frm_more_horiz_solid_icon frm-show-inline-modal',
78
+ array(
79
+ 'data-open' => 'frm-layout-classes-box',
80
+ 'title' => esc_attr__( 'Toggle Options', 'formidable' ),
81
+ )
82
+ );
83
+ ?>
84
+ <input type="text" name="field_options[classes_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['classes'] ); ?>" class="frm_classes" id="frm_classes_<?php echo esc_attr( $field['id'] ); ?>" data-changeme="frm_field_id_<?php echo esc_attr( $field['id'] ); ?>" data-changeatt="class" />
85
+ </span>
86
+ </p>
87
+ <?php } ?>
88
  </div>
89
 
90
  <?php if ( ! empty( $display_type ) ) { ?>
152
  <i class="frm_icon_font frm_arrowdown6_icon"></i>
153
  </h3>
154
  <div class="frm_grid_container frm-collapse-me">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
 
156
  <?php if ( $display['default'] ) { ?>
157
  <div class="frm-has-modal">
166
  data-frmhide=".frm-inline-modal,.default-value-section-<?php echo esc_attr( $field['id'] ); ?>"
167
  <?php } ?>
168
  >
169
+ <?php FrmAppHelper::icon_by_class( $link['icon'] ); ?>
170
  </a>
171
  <?php } ?>
172
  </span>
177
  <?php esc_html_e( 'Default Value', 'formidable' ); ?>
178
  </label>
179
  <span class="frm-with-right-icon">
 
180
  <?php
181
+ FrmAppHelper::icon_by_class(
182
+ 'frm_icon_font frm_more_horiz_solid_icon frm-show-inline-modal',
183
+ array(
184
+ 'data-open' => 'frm-smart-values-box',
185
+ 'title' => esc_attr__( 'Toggle Options', 'formidable' ),
186
+ )
187
+ );
188
+
189
  if ( isset( $display['default_value'] ) && $display['default_value'] ) {
190
  $default_name = 'field_options[dyn_default_value_' . $field['id'] . ']';
191
  $default_value = isset( $field['dyn_default_value'] ) ? $field['dyn_default_value'] : '';
194
  $default_value = $field['default_value'];
195
  }
196
  $field_obj->default_value_to_string( $default_value );
197
+
198
+ if ( $display['type'] === 'textarea' || $display['type'] === 'rte' ) {
199
+ ?>
200
+ <textarea name="<?php echo esc_attr( $default_name ); ?>" class="default-value-field" id="frm_default_value_<?php echo esc_attr( $field['id'] ); ?>" rows="3" data-changeme="field_<?php echo esc_attr( $field['field_key'] ); ?>"><?php
201
+ echo FrmAppHelper::esc_textarea( $default_value ); // WPCS: XSS ok.
202
+ ?></textarea>
203
+ <?php
204
+ } else {
205
+ ?>
206
+ <input type="text" name="<?php echo esc_attr( $default_name ); ?>" value="<?php echo esc_attr( $default_value ); ?>" id="frm_default_value_<?php echo esc_attr( $field['id'] ); ?>" class="default-value-field" data-changeme="field_<?php echo esc_attr( $field['field_key'] ); ?>" data-changeatt="value" />
207
+ <?php
208
+ }
209
  ?>
 
210
  </span>
211
  </p>
212
  <?php do_action( 'frm_default_value_setting', compact( 'field', 'display', 'default_value_types' ) ); ?>
215
 
216
  <?php $field_obj->show_after_default( compact( 'field', 'display' ) ); ?>
217
 
218
+ <?php if ( $display['clear_on_focus'] ) { ?>
219
+ <p>
220
+ <label for="frm_placeholder_<?php echo esc_attr( $field['id'] ); ?>">
221
+ <?php esc_html_e( 'Placeholder Text', 'formidable' ); ?>
222
  </label>
223
+ <input type="text" name="field_options[placeholder_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['placeholder'] ); ?>" id="frm_placeholder_<?php echo esc_attr( $field['id'] ); ?>" data-changeme="field_<?php echo esc_attr( $field['field_key'] ); ?>" data-changeatt="placeholder" />
 
 
 
224
  </p>
225
  <?php } ?>
226
 
227
  <?php
228
+ if ( $display['description'] ) {
229
+ include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/field-description.php' );
230
+ }
231
+
232
  // Field Size
233
  if ( $display['size'] && ! in_array( $field['type'], array( 'select', 'data', 'time' ) ) ) {
234
  $display_max = $display['max'];
classes/views/frm-fields/back-end/value-format.php CHANGED
@@ -3,7 +3,15 @@
3
  <?php esc_html_e( 'Format', 'formidable' ); ?>
4
  </label>
5
  <span class="frm-with-right-icon">
6
- <i class="frm-show-inline-modal frm_icon_font frm_more_horiz_solid_icon" data-open="frm-input-mask-box" title="<?php esc_attr_e( 'Toggle Options', 'formidable' ); ?>"></i>
 
 
 
 
 
 
 
 
7
  <input type="text" class="frm_long_input frm_format_opt" value="<?php echo esc_attr( $field['format'] ); ?>" name="field_options[format_<?php echo absint( $field['id'] ); ?>]" id="frm_format_<?php echo absint( $field['id'] ); ?>" />
8
  </span>
9
  </p>
3
  <?php esc_html_e( 'Format', 'formidable' ); ?>
4
  </label>
5
  <span class="frm-with-right-icon">
6
+ <?php
7
+ FrmAppHelper::icon_by_class(
8
+ 'frm_icon_font frm_more_horiz_solid_icon frm-show-inline-modal',
9
+ array(
10
+ 'data-open' => 'frm-input-mask-box',
11
+ 'title' => esc_attr__( 'Toggle Options', 'formidable' ),
12
+ )
13
+ );
14
+ ?>
15
  <input type="text" class="frm_long_input frm_format_opt" value="<?php echo esc_attr( $field['format'] ); ?>" name="field_options[format_<?php echo absint( $field['id'] ); ?>]" id="frm_format_<?php echo absint( $field['id'] ); ?>" />
16
  </span>
17
  </p>
classes/views/frm-fields/single-option.php CHANGED
@@ -1,15 +1,14 @@
1
  <li id="frm_delete_field_<?php echo esc_attr( $field['id'] . '-' . $opt_key ); ?>_container" data-optkey="<?php echo esc_attr( $opt_key ); ?>" class="frm_single_option <?php echo $opt_key === '000' ? 'frm_hidden frm_option_template' : ''; ?>">
2
- <i class="frm_icon_font frm_drag_icon frm-drag"></i>
3
-
4
  <input type="<?php echo esc_attr( $default_type ); ?>" name="<?php echo esc_attr( $field_name ); ?>" <?php echo ( isset( $checked ) && $checked ? 'checked="checked"' : '' ); ?> value="<?php echo esc_attr( $field_val ); ?>"/>
5
 
6
- <input type="text" name="field_options[options_<?php echo esc_attr( $field['id'] ); ?>][<?php echo esc_attr( $opt_key ); ?>][label]" value="<?php echo esc_attr( $opt ); ?>" class="field_<?php echo esc_attr( $field['id'] ); ?>_option <?php echo esc_attr( $field['separate_value'] ? 'frm_with_key' : '' ); ?>" id="<?php echo esc_attr( $html_id . '-' . $opt_key ); ?>" />
7
 
8
  <a href="javascript:void(0)" class="frm_icon_font frm_remove_tag" data-fid="<?php echo esc_attr( $field['id'] ); ?>" data-removeid="frm_delete_field_<?php echo esc_attr( $field['id'] . '-' . $opt_key ); ?>_container" data-removemore="#frm_<?php echo esc_attr( $default_type . '_' . $field['id'] . '-' . $opt_key ); ?>" data-showlast="#frm_add_opt_<?php echo esc_attr( $field['id'] ); ?>"></a>
9
 
10
  <span class="frm_option_key frm-with-right-icon field_<?php echo esc_attr( $field['id'] ); ?>_option_key<?php echo esc_attr( $field['separate_value'] ? '' : ' frm_hidden' ); ?>">
11
  <input type="<?php echo esc_attr( $default_type ); ?>" class="frm_invisible" />
12
- <input type="text" name="field_options[options_<?php echo esc_attr( $field['id'] ); ?>][<?php echo esc_attr( $opt_key ); ?>][value]" id="field_key_<?php echo esc_attr( $field['id'] . '-' . $opt_key ); ?>" value="<?php echo esc_attr( $field_val ); ?>" placeholder="<?php esc_attr_e( 'Saved Value', 'formidable' ); ?>"/>
13
- <i class="frm_icon_font frm_save_icon"></i>
14
  </span>
15
  </li>
1
  <li id="frm_delete_field_<?php echo esc_attr( $field['id'] . '-' . $opt_key ); ?>_container" data-optkey="<?php echo esc_attr( $opt_key ); ?>" class="frm_single_option <?php echo $opt_key === '000' ? 'frm_hidden frm_option_template' : ''; ?>">
2
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_drag_icon frm-drag' ); ?>
 
3
  <input type="<?php echo esc_attr( $default_type ); ?>" name="<?php echo esc_attr( $field_name ); ?>" <?php echo ( isset( $checked ) && $checked ? 'checked="checked"' : '' ); ?> value="<?php echo esc_attr( $field_val ); ?>"/>
4
 
5
+ <input type="text" name="field_options[options_<?php echo esc_attr( $field['id'] ); ?>][<?php echo esc_attr( $opt_key ); ?>][label]" value="<?php echo esc_attr( $opt ); ?>" class="field_<?php echo esc_attr( $field['id'] ); ?>_option <?php echo esc_attr( $field['separate_value'] ? 'frm_with_key' : '' ); ?>" id="<?php echo esc_attr( $html_id . '-' . $opt_key ); ?>" data-frmchange="trim" />
6
 
7
  <a href="javascript:void(0)" class="frm_icon_font frm_remove_tag" data-fid="<?php echo esc_attr( $field['id'] ); ?>" data-removeid="frm_delete_field_<?php echo esc_attr( $field['id'] . '-' . $opt_key ); ?>_container" data-removemore="#frm_<?php echo esc_attr( $default_type . '_' . $field['id'] . '-' . $opt_key ); ?>" data-showlast="#frm_add_opt_<?php echo esc_attr( $field['id'] ); ?>"></a>
8
 
9
  <span class="frm_option_key frm-with-right-icon field_<?php echo esc_attr( $field['id'] ); ?>_option_key<?php echo esc_attr( $field['separate_value'] ? '' : ' frm_hidden' ); ?>">
10
  <input type="<?php echo esc_attr( $default_type ); ?>" class="frm_invisible" />
11
+ <input type="text" name="field_options[options_<?php echo esc_attr( $field['id'] ); ?>][<?php echo esc_attr( $opt_key ); ?>][value]" id="field_key_<?php echo esc_attr( $field['id'] . '-' . $opt_key ); ?>" value="<?php echo esc_attr( $field_val ); ?>" placeholder="<?php esc_attr_e( 'Saved Value', 'formidable' ); ?>" data-frmchange="trim" />
12
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_save_icon' ); ?>
13
  </span>
14
  </li>
classes/views/frm-form-actions/_action_icon.php CHANGED
@@ -3,20 +3,16 @@
3
  data-limit="<?php echo esc_attr( $action_control->action_options['limit'] ); ?>"
4
  data-actiontype="<?php echo esc_attr( $action_control->id_base ); ?>"
5
  <?php
6
- foreach ( $data as $name => $value ) {
7
- echo esc_attr( $name ) . '="' . esc_attr( $value ) . '" ';
8
- }
9
  ?>
10
  >
11
- <span><i class="<?php echo esc_attr( $action_control->action_options['classes'] ); ?>"
12
- <?php
13
- if ( $action_control->action_options['color'] !== 'var(--primary-hover)' ) {
14
- ?>
15
- style="--primary-hover:<?php echo esc_attr( $action_control->action_options['color'] ); ?>"
16
- <?php
17
- }
18
- ?>
19
- ></i></span>
20
  <?php echo esc_html( str_replace( 'Add to ', '', $action_control->name ) ); ?>
21
  </a>
22
  </li>
3
  data-limit="<?php echo esc_attr( $action_control->action_options['limit'] ); ?>"
4
  data-actiontype="<?php echo esc_attr( $action_control->id_base ); ?>"
5
  <?php
6
+ echo FrmAppHelper::array_to_html_params( $data ); // WPCS: XSS ok.
 
 
7
  ?>
8
  >
9
+ <span class="frm-outer-circle">
10
+ <span class="frm-inner-circle<?php echo esc_attr( strpos( $action_control->action_options['classes'], 'frm-inverse' ) === false ? '' : ' frm-inverse' ); ?>" <?php
11
+ echo FrmAppHelper::array_to_html_params( $icon_atts ); // WPCS: XSS ok.
12
+ ?>>
13
+ <?php FrmAppHelper::icon_by_class( $action_control->action_options['classes'], $icon_atts ); ?>
14
+ </span>
15
+ </span>
 
 
16
  <?php echo esc_html( str_replace( 'Add to ', '', $action_control->name ) ); ?>
17
  </a>
18
  </li>
classes/views/frm-form-actions/_action_inside.php CHANGED
@@ -93,7 +93,7 @@ if ( $use_logging ) {
93
  ?>
94
  <p>
95
  <a href="javascript:void(0)" class="frm_show_upgrade" data-upgrade="<?php esc_attr_e( 'Form action logs', 'formidable' ); ?>" data-medium="action-logs" data-oneclick="<?php echo esc_attr( json_encode( $upgrading ) ); ?>">
96
- <i class="frm_icon_font frm_tooltip_solid_icon"></i>
97
  <?php esc_html_e( 'Install logging to get more information on API requests.', 'formidable' ); ?>
98
  </a>
99
  </p>
93
  ?>
94
  <p>
95
  <a href="javascript:void(0)" class="frm_show_upgrade" data-upgrade="<?php esc_attr_e( 'Form action logs', 'formidable' ); ?>" data-medium="action-logs" data-oneclick="<?php echo esc_attr( json_encode( $upgrading ) ); ?>">
96
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_tooltip_solid_icon frm_svg15', array( 'aria-hidden' => 'true' ) ); ?>
97
  <?php esc_html_e( 'Install logging to get more information on API requests.', 'formidable' ); ?>
98
  </a>
99
  </p>
classes/views/frm-form-actions/form_action.php CHANGED
@@ -14,9 +14,13 @@ $form_action = apply_filters( 'frm_form_' . $form_action->post_excerpt . '_actio
14
  </div>
15
  <span class="frm_email_icons alignright">
16
  <?php if ( $action_control->action_options['limit'] > 2 ) { ?>
17
- <a href="javascript:void(0)" class="frm_icon_font frm_clone_solid_icon frm_duplicate_form_action" title="<?php esc_attr_e( 'Duplicate', 'formidable' ); ?>"> </a>
 
 
18
  <?php } ?>
19
- <a href="javascript:void(0)" data-removeid="frm_form_action_<?php echo esc_attr( $action_key ); ?>" class="frm_icon_font frm_delete_icon frm_remove_form_action" data-frmverify="<?php echo esc_attr( 'Delete this form action?', 'formidable' ); ?>" title="<?php esc_attr_e( 'Delete', 'formidable' ); ?>"> </a>
 
 
20
 
21
  <label class="frm_toggle">
22
  <input type="checkbox" value="publish" name="<?php echo esc_attr( $action_control->get_field_name( 'post_status', '' ) ); ?>" <?php checked( $form_action->post_status, 'publish' ); ?> />
@@ -26,7 +30,10 @@ $form_action = apply_filters( 'frm_form_' . $form_action->post_excerpt . '_actio
26
  </label>
27
  </span>
28
  <div class="widget-title">
29
- <h4><span class="frm_form_action_icon <?php echo esc_attr( $action_control->action_options['classes'] ); ?>"></span>
 
 
 
30
  <?php echo esc_html( $form_action->post_title ); ?>
31
  </h4>
32
  </div>
14
  </div>
15
  <span class="frm_email_icons alignright">
16
  <?php if ( $action_control->action_options['limit'] > 2 ) { ?>
17
+ <a href="javascript:void(0)" class="frm_duplicate_form_action" title="<?php esc_attr_e( 'Duplicate', 'formidable' ); ?>">
18
+ <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_clone_solid_icon' ); ?>
19
+ </a>
20
  <?php } ?>
21
+ <a href="javascript:void(0)" data-removeid="frm_form_action_<?php echo esc_attr( $action_key ); ?>" class="frm_remove_form_action" data-frmverify="<?php echo esc_attr( 'Delete this form action?', 'formidable' ); ?>" title="<?php esc_attr_e( 'Delete', 'formidable' ); ?>">
22
+ <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_delete_icon ' ); ?>
23
+ </a>
24
 
25
  <label class="frm_toggle">
26
  <input type="checkbox" value="publish" name="<?php echo esc_attr( $action_control->get_field_name( 'post_status', '' ) ); ?>" <?php checked( $form_action->post_status, 'publish' ); ?> />
30
  </label>
31
  </span>
32
  <div class="widget-title">
33
+ <h4>
34
+ <span class="frm_form_action_icon frm-outer-circle <?php echo esc_attr( strpos( $action_control->action_options['classes'], 'frm-inverse' ) === false ? '' : ' frm-inverse' ); ?>">
35
+ <?php FrmAppHelper::icon_by_class( $action_control->action_options['classes'] ); ?>
36
+ </span>
37
  <?php echo esc_html( $form_action->post_title ); ?>
38
  </h4>
39
  </div>
classes/views/frm-form-actions/settings.php CHANGED
@@ -50,11 +50,20 @@
50
  ?>
51
  <li class="frm-action frm-not-installed">
52
  <a href="javascript:void(0)" class="frm-single-action frm_show_upgrade">
53
- <span>
54
- <i class="frm_icon_font frm_plus_icon"
55
- <?php if ( isset( $group['color'] ) ) { ?>
56
- style="--primary-hover:<?php echo esc_attr( $group['color'] ); ?>"
57
- <?php } ?>></i>
 
 
 
 
 
 
 
 
 
58
  </span>
59
  <?php echo esc_html( $action ); ?>
60
  </a>
50
  ?>
51
  <li class="frm-action frm-not-installed">
52
  <a href="javascript:void(0)" class="frm-single-action frm_show_upgrade">
53
+ <span class="frm-outer-circle">
54
+ <span class="frm-inner-circle" <?php
55
+ echo FrmAppHelper::array_to_html_params( $icon_atts ); // WPCS: XSS ok.
56
+ ?>>
57
+ <?php
58
+ $icon_atts = array();
59
+ if ( isset( $group['color'] ) ) {
60
+ $icon_atts = array(
61
+ 'style' => '--primary-hover:' . $group['color'],
62
+ );
63
+ }
64
+ FrmAppHelper::icon_by_class( 'frmfont frm_plus_icon', $icon_atts );
65
+ ?>
66
+ </span>
67
  </span>
68
  <?php echo esc_html( $action ); ?>
69
  </a>
classes/views/frm-forms/_publish_box.php CHANGED
@@ -14,7 +14,7 @@ if ( 'settings' == FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' ) )
14
  <div class="preview dropdown">
15
  <a href="#" id="frm-previewDrop" class="frm-dropdown-toggle button frm-button-secondary" data-toggle="dropdown">
16
  <?php esc_html_e( 'Preview', 'formidable' ); ?>
17
- <i class="frmfont frm_arrowdown4_icon"></i>
18
  </a>
19
 
20
  <ul class="frm-dropdown-menu <?php echo esc_attr( is_rtl() ? 'pull-left' : 'pull-right' ); ?>" role="menu" aria-labelledby="frm-previewDrop">
14
  <div class="preview dropdown">
15
  <a href="#" id="frm-previewDrop" class="frm-dropdown-toggle button frm-button-secondary" data-toggle="dropdown">
16
  <?php esc_html_e( 'Preview', 'formidable' ); ?>
17
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_arrowdown4_icon frm_svg13', array( 'aria-hidden' => 'true' ) ); ?>
18
  </a>
19
 
20
  <ul class="frm-dropdown-menu <?php echo esc_attr( is_rtl() ? 'pull-left' : 'pull-right' ); ?>" role="menu" aria-labelledby="frm-previewDrop">
classes/views/frm-forms/add_field.php CHANGED
@@ -12,9 +12,15 @@
12
  <a href="#" class="frm-collapse-section frm-hover-icon frm_icon_font frm_arrowdown6_icon" title="<?php esc_attr_e( 'Expand/Collapse Section', 'formidable' ); ?>"></a>
13
  <?php } ?>
14
 
15
- <a href="#" class="frm_bstooltip frm-move frm-hover-icon frm_icon_font frm_move_icon" title="<?php esc_attr_e( 'Move Field', 'formidable' ); ?>"> </a>
16
- <a href="#" class="frm_bstooltip frm-hover-icon frm_icon_font frm_delete_icon frm_delete_field" title="<?php esc_attr_e( 'Delete Field', 'formidable' ); ?>"> </a>
17
- <a href="#" class="frm_bstooltip frm-hover-icon frm_icon_font frm_clone_icon" title="<?php ( $field['type'] === 'divider' ) ? esc_attr_e( 'Duplicate Section', 'formidable' ) : esc_attr_e( 'Duplicate Field', 'formidable' ); ?>"> </a>
 
 
 
 
 
 
18
 
19
  <div class="frm-sub-label alignright">
20
  (ID <?php echo esc_html( $field['id'] ); ?>)
@@ -36,7 +42,7 @@
36
  <div class="clear"></div>
37
  </div>
38
  <?php if ( $display['description'] || in_array( $field['type'], array( 'address', 'credit_card' ) ) ) { ?>
39
- <div class="description" id="field_description_<?php echo esc_attr( $field['id'] ); ?>">
40
  <?php echo FrmAppHelper::kses( force_balance_tags( $field['description'] ), 'all' ); // WPCS: XSS ok. ?>
41
  </div>
42
  <?php } ?>
@@ -48,7 +54,7 @@
48
  <div class="frm_form_fields">
49
  <input type="text" id="conf_field_<?php echo esc_attr( $field['field_key'] ); ?>" name="field_options[conf_input_<?php echo esc_attr( $field['id'] ); ?>]" placeholder="<?php echo esc_attr( $field['conf_input'] ); ?>" class="dyn_default_value" />
50
  </div>
51
- <div id="conf_field_description_<?php echo esc_attr( $field['id'] ); ?>" class="description"><?php
52
  echo FrmAppHelper::kses( force_balance_tags( $field['conf_desc'] ), 'all' ); // WPCS: XSS ok.
53
  ?></div>
54
  </div>
@@ -63,7 +69,7 @@ if ( 'divider' === $field['type'] ) {
63
  ?>
64
  </div>
65
  <div class="frm_no_section_fields">
66
- <i class="frm-large-plus frm_icon_font frm_plus2_icon"></i>
67
  <p class="howto"><?php esc_html_e( 'Your section has no fields. Drag fields here to add them to this section.', 'formidable' ); ?></p>
68
  </div>
69
  <ul class="start_divider frm_sorting">
12
  <a href="#" class="frm-collapse-section frm-hover-icon frm_icon_font frm_arrowdown6_icon" title="<?php esc_attr_e( 'Expand/Collapse Section', 'formidable' ); ?>"></a>
13
  <?php } ?>
14
 
15
+ <a href="#" class="frm_bstooltip frm-move frm-hover-icon" title="<?php esc_attr_e( 'Move Field', 'formidable' ); ?>">
16
+ <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_move_icon' ); ?>
17
+ </a>
18
+ <a href="#" class="frm_bstooltip frm-hover-icon frm_delete_field" title="<?php esc_attr_e( 'Delete Field', 'formidable' ); ?>">
19
+ <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_delete_icon' ); ?>
20
+ </a>
21
+ <a href="#" class="frm_bstooltip frm-hover-icon frm_clone_field" title="<?php ( $field['type'] === 'divider' ) ? esc_attr_e( 'Duplicate Section', 'formidable' ) : esc_attr_e( 'Duplicate Field', 'formidable' ); ?>">
22
+ <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_clone_icon' ); ?>
23
+ </a>
24
 
25
  <div class="frm-sub-label alignright">
26
  (ID <?php echo esc_html( $field['id'] ); ?>)
42
  <div class="clear"></div>
43
  </div>
44
  <?php if ( $display['description'] || in_array( $field['type'], array( 'address', 'credit_card' ) ) ) { ?>
45
+ <div class="description frm_description" id="field_description_<?php echo esc_attr( $field['id'] ); ?>">
46
  <?php echo FrmAppHelper::kses( force_balance_tags( $field['description'] ), 'all' ); // WPCS: XSS ok. ?>
47
  </div>
48
  <?php } ?>
54
  <div class="frm_form_fields">
55
  <input type="text" id="conf_field_<?php echo esc_attr( $field['field_key'] ); ?>" name="field_options[conf_input_<?php echo esc_attr( $field['id'] ); ?>]" placeholder="<?php echo esc_attr( $field['conf_input'] ); ?>" class="dyn_default_value" />
56
  </div>
57
+ <div id="conf_field_description_<?php echo esc_attr( $field['id'] ); ?>" class="description frm_description"><?php
58
  echo FrmAppHelper::kses( force_balance_tags( $field['conf_desc'] ), 'all' ); // WPCS: XSS ok.
59
  ?></div>
60
  </div>
69
  ?>
70
  </div>
71
  <div class="frm_no_section_fields">
72
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_plus2_icon frm-large-plus', array( 'aria-hidden' => 'true' ) ); ?>
73
  <p class="howto"><?php esc_html_e( 'Your section has no fields. Drag fields here to add them to this section.', 'formidable' ); ?></p>
74
  </div>
75
  <ul class="start_divider frm_sorting">
classes/views/frm-forms/add_field_links.php CHANGED
@@ -22,7 +22,7 @@
22
  ?>
23
  <li class="frmbutton <?php echo esc_attr( ' frm_t' . $field_key ); ?>" id="<?php echo esc_attr( $field_key ); ?>">
24
  <a href="#" class="frm_add_field frm_animate_bg" title="<?php echo esc_html( $field_label ); ?>">
25
- <i class="<?php echo esc_attr( FrmFormsHelper::get_field_link_icon( $field_type ) ); ?> frm_animate_bg"></i>
26
  <span><?php echo esc_html( $field_label ); ?></span>
27
  </a>
28
  </li>
@@ -57,7 +57,7 @@ foreach ( FrmField::pro_field_selection() as $field_key => $field_type ) {
57
  ?>
58
  <li class="frmbutton <?php echo esc_attr( $no_allow_class . ' frm_t' . $field_key ); ?> dropdown" id="<?php echo esc_attr( $field_key ); ?>">
59
  <a href="#" id="frm-<?php echo esc_attr( $field_key ); ?>Drop" class="frm-dropdown-toggle" data-toggle="dropdown" title="<?php echo esc_html( $field_label ); ?>">
60
- <i class="<?php echo esc_attr( FrmFormsHelper::get_field_link_icon( $field_type ) ); ?> frm_animate_bg"></i>
61
  <span><?php echo esc_html( $field_label ); ?> <b class="caret"></b></span>
62
  </a>
63
 
@@ -74,7 +74,7 @@ foreach ( FrmField::pro_field_selection() as $field_key => $field_type ) {
74
  </li>
75
  <?php
76
  } else {
77
- $field_label = '<i class="' . esc_attr( FrmFormsHelper::get_field_link_icon( $field_type ) ) . ' frm_animate_bg"></i>';
78
  $field_name = FrmFormsHelper::get_field_link_name( $field_type );
79
  $field_label .= ' <span>' . $field_name . '</span>';
80
 
@@ -102,10 +102,9 @@ foreach ( FrmField::pro_field_selection() as $field_key => $field_type ) {
102
  <li class="frmbutton <?php echo esc_attr( $no_allow_class . $single_no_allow . ' frm_t' . str_replace( '|', '-', $field_key ) ); ?>" id="<?php echo esc_attr( $field_key ); ?>" data-upgrade="<?php echo esc_attr( $upgrade_label ); ?>" data-medium="builder" data-oneclick="<?php echo esc_attr( $install_data ); ?>" data-content="<?php echo esc_attr( $field_key ); ?>" data-requires="<?php echo esc_attr( $requires ); ?>">
103
  <?php
104
  if ( $run_filter ) {
105
- echo FrmAppHelper::kses( apply_filters( 'frmpro_field_links', $field_label, $id, $field_key ), array( 'a', 'i', 'span' ) ); // WPCS: XSS ok.
106
- } else {
107
- echo FrmAppHelper::kses( $field_label, array( 'i', 'span' ) ); // WPCS: XSS ok.
108
  }
 
109
  ?>
110
  </li>
111
  <?php
22
  ?>
23
  <li class="frmbutton <?php echo esc_attr( ' frm_t' . $field_key ); ?>" id="<?php echo esc_attr( $field_key ); ?>">
24
  <a href="#" class="frm_add_field frm_animate_bg" title="<?php echo esc_html( $field_label ); ?>">
25
+ <?php FrmAppHelper::icon_by_class( FrmFormsHelper::get_field_link_icon( $field_type ) ); ?>
26
  <span><?php echo esc_html( $field_label ); ?></span>
27
  </a>
28
  </li>
57
  ?>
58
  <li class="frmbutton <?php echo esc_attr( $no_allow_class . ' frm_t' . $field_key ); ?> dropdown" id="<?php echo esc_attr( $field_key ); ?>">
59
  <a href="#" id="frm-<?php echo esc_attr( $field_key ); ?>Drop" class="frm-dropdown-toggle" data-toggle="dropdown" title="<?php echo esc_html( $field_label ); ?>">
60
+ <?php FrmAppHelper::icon_by_class( FrmFormsHelper::get_field_link_icon( $field_type ) ); ?>
61
  <span><?php echo esc_html( $field_label ); ?> <b class="caret"></b></span>
62
  </a>
63
 
74
  </li>
75
  <?php
76
  } else {
77
+ $field_label = FrmAppHelper::icon_by_class( FrmFormsHelper::get_field_link_icon( $field_type ), array( 'echo' => false ) );
78
  $field_name = FrmFormsHelper::get_field_link_name( $field_type );
79
  $field_label .= ' <span>' . $field_name . '</span>';
80
 
102
  <li class="frmbutton <?php echo esc_attr( $no_allow_class . $single_no_allow . ' frm_t' . str_replace( '|', '-', $field_key ) ); ?>" id="<?php echo esc_attr( $field_key ); ?>" data-upgrade="<?php echo esc_attr( $upgrade_label ); ?>" data-medium="builder" data-oneclick="<?php echo esc_attr( $install_data ); ?>" data-content="<?php echo esc_attr( $field_key ); ?>" data-requires="<?php echo esc_attr( $requires ); ?>">
103
  <?php
104
  if ( $run_filter ) {
105
+ $field_label = apply_filters( 'frmpro_field_links', $field_label, $id, $field_key );
 
 
106
  }
107
+ echo FrmAppHelper::kses( $field_label, array( 'a', 'i', 'span', 'use', 'svg' ) ); // WPCS: XSS ok.
108
  ?>
109
  </li>
110
  <?php
classes/views/frm-forms/form.php CHANGED
@@ -1,8 +1,10 @@
1
- <div id="frm_form_editor_container" class="<?php echo ( isset( $values['fields'] ) && ! empty( $values['fields'] ) ) ? 'frm-has-fields' : ''; ?>">
2
 
3
  <?php
4
- // Add form messages.
5
- require( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' );
 
 
6
  ?>
7
 
8
  <div id="frm-fake-page" class="frm_hidden">
1
+ <div id="frm_form_editor_container" class="<?php echo ( $has_fields ? 'frm-has-fields' : '' ); ?>">
2
 
3
  <?php
4
+ if ( $has_fields ) {
5
+ // Add form messages.
6
+ require( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' );
7
+ }
8
  ?>
9
 
10
  <div id="frm-fake-page" class="frm_hidden">
classes/views/frm-forms/settings-advanced.php CHANGED
@@ -79,7 +79,7 @@
79
  </select>
80
  </p>
81
  <p class="frm8 frm_form_field">
82
- <span class="success_action_redirect_box success_action_box<?php echo ( $values['success_action'] == 'redirect' ) ? '' : ' frm_hidden'; ?>">
83
  <input type="text" name="options[success_url]" id="success_url" value="<?php echo esc_attr( isset( $values['success_url'] ) ? $values['success_url'] : '' ); ?>" placeholder="http://example.com" />
84
  </span>
85
 
@@ -88,7 +88,7 @@
88
  FrmAppHelper::wp_pages_dropdown(
89
  array(
90
  'field_name' => 'options[success_page_id]',
91
- 'page_id' => $values['success_page_id'],
92
  'placeholder' => __( 'Select a Page', 'formidable' ),
93
  )
94
  );
@@ -97,16 +97,16 @@
97
  </p>
98
 
99
  <p class="frm_show_form_opt success_action_message_box success_action_box<?php echo esc_attr( $values['success_action'] == 'message' ? '' : ' frm_hidden' ); ?>">
100
- <label for="show_form">
101
- <input type="checkbox" name="options[show_form]" id="show_form" value="1" <?php checked( $values['show_form'], 1 ); ?> />
102
- <?php esc_html_e( 'Show the form with the confirmation message', 'formidable' ); ?>
103
- </label>
104
  </p>
105
 
106
  <table class="form-table">
107
  <tr>
108
  <td colspan="2">
109
- <label for="no_save">
110
  <input type="checkbox" name="options[no_save]" id="no_save" value="1" <?php checked( $values['no_save'], 1 ); ?> />
111
  <?php esc_html_e( 'Do not store entries submitted from this form', 'formidable' ); ?>
112
  </label>
@@ -139,7 +139,7 @@
139
  <table class="form-table">
140
  <tr>
141
  <td>
142
- <label for="ajax_load">
143
  <input type="checkbox" name="options[ajax_load]" id="ajax_load" value="1"<?php echo ( $values['ajax_load'] ) ? ' checked="checked"' : ''; ?> /> <?php esc_html_e( 'Load and save form builder page with AJAX', 'formidable' ); ?>
144
  <span class="frm_help frm_icon_font frm_tooltip_icon" title="<?php esc_attr_e( 'Recommended for long forms.', 'formidable' ); ?>"></span>
145
  </label>
@@ -148,7 +148,7 @@
148
  <?php do_action( 'frm_add_form_ajax_options', $values ); ?>
149
  <tr>
150
  <td>
151
- <label for="js_validate">
152
  <input type="checkbox" name="options[js_validate]" id="js_validate" value="1" <?php checked( $values['js_validate'], 1 ); ?> />
153
  <?php esc_html_e( 'Validate this form with javascript', 'formidable' ); ?>
154
  <span class="frm_help frm_icon_font frm_tooltip_icon" title="<?php esc_attr_e( 'Required fields, email format, and number format can be checked instantly in your browser. You may want to turn this option off if you have any customizations to remove validation messages on certain fields.', 'formidable' ); ?>"></span>
79
  </select>
80
  </p>
81
  <p class="frm8 frm_form_field">
82
+ <span class="frm_has_shortcodes success_action_redirect_box success_action_box<?php echo ( $values['success_action'] == 'redirect' ) ? '' : ' frm_hidden'; ?>">
83
  <input type="text" name="options[success_url]" id="success_url" value="<?php echo esc_attr( isset( $values['success_url'] ) ? $values['success_url'] : '' ); ?>" placeholder="http://example.com" />
84
  </span>
85
 
88
  FrmAppHelper::wp_pages_dropdown(
89
  array(
90
  'field_name' => 'options[success_page_id]',
91
+ 'page_id' => isset( $values['success_page_id'] ) ? $values['success_page_id'] : '',
92
  'placeholder' => __( 'Select a Page', 'formidable' ),
93
  )
94
  );
97
  </p>
98
 
99
  <p class="frm_show_form_opt success_action_message_box success_action_box<?php echo esc_attr( $values['success_action'] == 'message' ? '' : ' frm_hidden' ); ?>">
100
+ <label for="show_form" class="frm_inline_block">
101
+ <input type="checkbox" name="options[show_form]" id="show_form" value="1" <?php checked( $values['show_form'], 1 ); ?> />
102
+ <?php esc_html_e( 'Show the form with the confirmation message', 'formidable' ); ?>
103
+ </label>
104
  </p>
105
 
106
  <table class="form-table">
107
  <tr>
108
  <td colspan="2">
109
+ <label for="no_save" class="frm_inline_block">
110
  <input type="checkbox" name="options[no_save]" id="no_save" value="1" <?php checked( $values['no_save'], 1 ); ?> />
111
  <?php esc_html_e( 'Do not store entries submitted from this form', 'formidable' ); ?>
112
  </label>
139
  <table class="form-table">
140
  <tr>
141
  <td>
142
+ <label for="ajax_load" class="frm_inline_block">
143
  <input type="checkbox" name="options[ajax_load]" id="ajax_load" value="1"<?php echo ( $values['ajax_load'] ) ? ' checked="checked"' : ''; ?> /> <?php esc_html_e( 'Load and save form builder page with AJAX', 'formidable' ); ?>
144
  <span class="frm_help frm_icon_font frm_tooltip_icon" title="<?php esc_attr_e( 'Recommended for long forms.', 'formidable' ); ?>"></span>
145
  </label>
148
  <?php do_action( 'frm_add_form_ajax_options', $values ); ?>
149
  <tr>
150
  <td>
151
+ <label for="js_validate" class="frm_inline_block">
152
  <input type="checkbox" name="options[js_validate]" id="js_validate" value="1" <?php checked( $values['js_validate'], 1 ); ?> />
153
  <?php esc_html_e( 'Validate this form with javascript', 'formidable' ); ?>
154
  <span class="frm_help frm_icon_font frm_tooltip_icon" title="<?php esc_attr_e( 'Required fields, email format, and number format can be checked instantly in your browser. You may want to turn this option off if you have any customizations to remove validation messages on certain fields.', 'formidable' ); ?>"></span>
classes/views/frm-settings/form.php CHANGED
@@ -1,26 +1,24 @@
1
  <div id="form_global_settings" class="frm_wrap">
2
- <div class="frm_page_container">
 
 
3
 
4
- <?php
5
- FrmAppHelper::get_admin_header(
6
- array(
7
- 'label' => __( 'Settings', 'formidable' ),
8
- )
9
- );
10
- ?>
11
-
12
- <div class="columns-2">
13
- <div class="frm-right-panel">
14
  <?php
15
- $current = FrmAppHelper::simple_get( 't', 'sanitize_title', 'general_settings' );
16
- include( FrmAppHelper::plugin_path() . '/classes/views/frm-settings/tabs.php' );
 
 
 
 
17
  ?>
18
- </div>
19
 
20
- <div id="post-body-content" class="frm-fields">
 
 
 
 
 
21
 
22
- <form name="frm_settings_form" method="post" class="frm_settings_form"
23
- action="?page=formidable-settings<?php echo esc_html( $current ? '&amp;t=' . $current : '' ); ?>">
24
  <?php require( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' ); ?>
25
  <input type="hidden" name="frm_action" value="process-form"/>
26
  <input type="hidden" name="action" value="process-form"/>
@@ -55,17 +53,9 @@
55
  ?>
56
  </div>
57
  <?php } ?>
58
-
59
- <div class="submit">
60
- <input class="button-primary frm-button-primary" type="submit"
61
- value="<?php esc_attr_e( 'Update Options', 'formidable' ); ?>"/>
62
- </div>
63
-
64
- </form>
65
  </div>
66
  </div>
67
-
68
- </div>
69
-
70
  <?php do_action( 'frm_after_settings' ); ?>
71
  </div>
1
  <div id="form_global_settings" class="frm_wrap">
2
+ <form name="frm_settings_form" method="post" class="frm_settings_form"
3
+ action="?page=formidable-settings<?php echo esc_html( $current ? '&amp;t=' . $current : '' ); ?>">
4
+ <div class="frm_page_container">
5
 
 
 
 
 
 
 
 
 
 
 
6
  <?php
7
+ FrmAppHelper::get_admin_header(
8
+ array(
9
+ 'label' => __( 'Settings', 'formidable' ),
10
+ 'publish' => array( 'FrmSettingsController::save_button', array() ),
11
+ )
12
+ );
13
  ?>
 
14
 
15
+ <div class="columns-2">
16
+ <div class="frm-right-panel">
17
+ <?php include( FrmAppHelper::plugin_path() . '/classes/views/frm-settings/tabs.php' ); ?>
18
+ </div>
19
+
20
+ <div id="post-body-content" class="frm-fields">
21
 
 
 
22
  <?php require( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' ); ?>
23
  <input type="hidden" name="frm_action" value="process-form"/>
24
  <input type="hidden" name="action" value="process-form"/>
53
  ?>
54
  </div>
55
  <?php } ?>
56
+ </div>
 
 
 
 
 
 
57
  </div>
58
  </div>
59
+ </form>
 
 
60
  <?php do_action( 'frm_after_settings' ); ?>
61
  </div>
classes/views/frm-settings/general.php CHANGED
@@ -49,7 +49,7 @@
49
  <p>
50
  <label for="frm_no_ips">
51
  <input type="checkbox" name="frm_no_ips" id="frm_no_ips" value="1" <?php checked( $frm_settings->no_ips, 1 ); ?> />
52
- <?php esc_html_e( 'Do not store IPs with form submissions. Check this box for to assist with GDRP compliance.', 'formidable' ); ?>
53
  </label>
54
 
55
  </p>
49
  <p>
50
  <label for="frm_no_ips">
51
  <input type="checkbox" name="frm_no_ips" id="frm_no_ips" value="1" <?php checked( $frm_settings->no_ips, 1 ); ?> />
52
+ <?php esc_html_e( 'Do not store IPs with form submissions. Check this box for to assist with GDPR compliance.', 'formidable' ); ?>
53
  </label>
54
 
55
  </p>
classes/views/frm-settings/settings_cta.php CHANGED
@@ -2,7 +2,9 @@
2
  <div class="postbox" style="border:none;">
3
  <div class="inside">
4
 
5
- <a href="#" class="dismiss alignright" title="<?php esc_attr_e( 'Dismiss this message', 'formidable' ); ?>"><i class="frm_icon_font frm_close_icon" aria-label="Dismiss" aria-hidden="true"></i></a>
 
 
6
  <h2><?php esc_html_e( 'Get Formidable Forms Pro and Unlock all the Powerful Features', 'formidable' ); ?></h2>
7
  <div class="cta-inside">
8
  <p><?php esc_html_e( 'Thanks for being a loyal Formidable Forms user. Upgrade to Formidable Forms Pro to unlock all the awesome features and learn how others are defying the limits by taking on big projects without big resources.', 'formidable' ); ?></p>
@@ -11,10 +13,11 @@
11
  </p>
12
  <br/>
13
  <h3><?php esc_html_e( 'Pro Features', 'formidable' ); ?></h3>
14
- <ul class="frm_two_col">
15
  <?php foreach ( $features as $feature ) { ?>
16
  <li>
17
- <i class="dashicons dashicons-yes" aria-hidden="true"></i> <?php echo esc_html( $feature ); ?>
 
18
  </li>
19
  <?php } ?>
20
  </ul>
2
  <div class="postbox" style="border:none;">
3
  <div class="inside">
4
 
5
+ <a href="#" class="dismiss alignright" title="<?php esc_attr_e( 'Dismiss this message', 'formidable' ); ?>">
6
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon', array( 'aria-label' => 'Dismiss' ) ); ?>
7
+ </a>
8
  <h2><?php esc_html_e( 'Get Formidable Forms Pro and Unlock all the Powerful Features', 'formidable' ); ?></h2>
9
  <div class="cta-inside">
10
  <p><?php esc_html_e( 'Thanks for being a loyal Formidable Forms user. Upgrade to Formidable Forms Pro to unlock all the awesome features and learn how others are defying the limits by taking on big projects without big resources.', 'formidable' ); ?></p>
13
  </p>
14
  <br/>
15
  <h3><?php esc_html_e( 'Pro Features', 'formidable' ); ?></h3>
16
+ <ul class="frm_two_col frm-green-icons">
17
  <?php foreach ( $features as $feature ) { ?>
18
  <li>
19
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_checkmark_icon', array( 'aria-hidden' => 'true' ) ); ?>
20
+ <?php echo esc_html( $feature ); ?>
21
  </li>
22
  <?php } ?>
23
  </ul>
classes/views/frm-settings/tabs.php CHANGED
@@ -12,7 +12,7 @@
12
  }
13
  ?>
14
  >
15
- <span class="<?php echo esc_attr( $section['icon'] ); ?>" aria-hidden="true"></span>
16
  <?php echo esc_html( $section['name'] ); ?>
17
  </a>
18
  </li>
12
  }
13
  ?>
14
  >
15
+ <?php FrmAppHelper::icon_by_class( $section['icon'], array( 'aria-hidden' => 'true' ) ); ?>
16
  <?php echo esc_html( $section['name'] ); ?>
17
  </a>
18
  </li>
classes/views/shared/admin-header.php CHANGED
@@ -2,7 +2,7 @@
2
  <?php if ( FrmAppHelper::is_full_screen() ) { ?>
3
  <div class="frm-full-close">
4
  <a href="<?php echo esc_attr( $atts['close'] ); ?>" aria-label="<?php esc_attr_e( 'Close', 'formidable' ); ?>">
5
- <span class="frm_icon_font frm_close_icon" aria-hidden="true"></span>
6
  </a>
7
  </div>
8
  <?php } ?>
@@ -53,5 +53,5 @@
53
  echo FrmAppHelper::kses( $atts['nav'], 'all' ); // WPCS: XSS ok.
54
  }
55
  ?>
56
- <div class="clear"></div>
57
  </div>
2
  <?php if ( FrmAppHelper::is_full_screen() ) { ?>
3
  <div class="frm-full-close">
4
  <a href="<?php echo esc_attr( $atts['close'] ); ?>" aria-label="<?php esc_attr_e( 'Close', 'formidable' ); ?>">
5
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon', array( 'aria-label' => 'Dismiss' ) ); ?>
6
  </a>
7
  </div>
8
  <?php } ?>
53
  echo FrmAppHelper::kses( $atts['nav'], 'all' ); // WPCS: XSS ok.
54
  }
55
  ?>
56
+ <div style="clear:right;"></div>
57
  </div>
classes/views/shared/confirm-overlay.php CHANGED
@@ -2,7 +2,7 @@
2
  <div class="metabox-holder">
3
  <div class="postbox">
4
  <a href="#" class="dismiss alignright" title="<?php esc_attr_e( 'Dismiss this message', 'formidable' ); ?>">
5
- <i class="frm_icon_font frm_close_icon" aria-label="Dismiss" aria-hidden="true"></i>
6
  </a>
7
  <div class="inside">
8
  <div class="cta-inside frmcenter">
2
  <div class="metabox-holder">
3
  <div class="postbox">
4
  <a href="#" class="dismiss alignright" title="<?php esc_attr_e( 'Dismiss this message', 'formidable' ); ?>">
5
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon', array( 'aria-label' => 'Dismiss' ) ); ?>
6
  </a>
7
  <div class="inside">
8
  <div class="cta-inside frmcenter">
classes/views/shared/errors.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  if ( isset( $message ) && '' !== $message ) {
3
  if ( FrmAppHelper::is_admin() ) {
4
- echo '<div id="message" class="frm_updated_message">';
5
  echo FrmAppHelper::kses( $message, 'all' ); // WPCS: XSS ok.
6
  echo '</div>';
7
  } else {
1
  <?php
2
  if ( isset( $message ) && '' !== $message ) {
3
  if ( FrmAppHelper::is_admin() ) {
4
+ echo '<div class="frm_updated_message">';
5
  echo FrmAppHelper::kses( $message, 'all' ); // WPCS: XSS ok.
6
  echo '</div>';
7
  } else {
classes/views/shared/form-nav.php CHANGED
@@ -11,9 +11,7 @@ foreach ( $nav_items as $nav_item ) {
11
  <?php FrmAppHelper::select_current_page( $nav_item['page'], $current_page, $nav_item['current'] ); ?>
12
  <?php
13
  if ( isset( $nav_item['atts'] ) ) {
14
- foreach ( $nav_item['atts'] as $att => $value ) {
15
- echo esc_attr( $att ) . '="' . esc_attr( $value ) . '" ';
16
- }
17
  }
18
  ?>>
19
  <?php echo esc_html( $nav_item['label'] ); ?>
11
  <?php FrmAppHelper::select_current_page( $nav_item['page'], $current_page, $nav_item['current'] ); ?>
12
  <?php
13
  if ( isset( $nav_item['atts'] ) ) {
14
+ echo FrmAppHelper::array_to_html_params( $nav_item['atts'] ); // WPCS: XSS ok.
 
 
15
  }
16
  ?>>
17
  <?php echo esc_html( $nav_item['label'] ); ?>
classes/views/shared/mb_adv_info.php CHANGED
@@ -28,13 +28,15 @@
28
 
29
  <div id="frm-insert-fields-box" class="tabs-panel">
30
  <?php
31
- FrmAppHelper::show_search_box(
32
- array(
33
- 'input_id' => 'field',
34
- 'placeholder' => __( 'Search', 'formidable' ),
35
- 'tosearch' => 'frm-customize-list',
36
- )
37
- );
 
 
38
  ?>
39
 
40
  <ul class="subsubsub">
28
 
29
  <div id="frm-insert-fields-box" class="tabs-panel">
30
  <?php
31
+ if ( count( $fields ) > 8 ) {
32
+ FrmAppHelper::show_search_box(
33
+ array(
34
+ 'input_id' => 'field',
35
+ 'placeholder' => __( 'Search', 'formidable' ),
36
+ 'tosearch' => 'frm-customize-list',
37
+ )
38
+ );
39
+ }
40
  ?>
41
 
42
  <ul class="subsubsub">
classes/views/shared/upgrade_overlay.php CHANGED
@@ -2,11 +2,11 @@
2
  <div class="metabox-holder">
3
  <div class="postbox">
4
  <a href="#" class="dismiss alignright" title="<?php esc_attr_e( 'Dismiss this message', 'formidable' ); ?>">
5
- <i class="frm_icon_font frm_close_icon" aria-label="Dismiss" aria-hidden="true"></i>
6
  </a>
7
  <div class="inside">
8
 
9
- <i class="frm_icon_font frm_lock_icon"></i>
10
  <h2>
11
  <?php
12
  printf(
2
  <div class="metabox-holder">
3
  <div class="postbox">
4
  <a href="#" class="dismiss alignright" title="<?php esc_attr_e( 'Dismiss this message', 'formidable' ); ?>">
5
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon', array( 'aria-label' => 'Dismiss' ) ); ?>
6
  </a>
7
  <div class="inside">
8
 
9
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_lock_icon frm_locked', array( 'aria-hidden' => 'true' ) ); ?>
10
  <h2>
11
  <?php
12
  printf(
classes/views/styles/header-buttons.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php if ( isset( $delete_link ) ) { ?>
2
  <a href="<?php echo esc_url( $delete_link ); ?>" id="frm_delete_style" class="submitdelete deletion alignright" data-frmverify="<?php esc_attr_e( 'Permanently delete this style?', 'formidable' ); ?>">
3
- <i class="frm_icon_font frm_delete_icon"></i>
4
  </a>
5
  <?php } ?>
6
 
1
  <?php if ( isset( $delete_link ) ) { ?>
2
  <a href="<?php echo esc_url( $delete_link ); ?>" id="frm_delete_style" class="submitdelete deletion alignright" data-frmverify="<?php esc_attr_e( 'Permanently delete this style?', 'formidable' ); ?>">
3
+ <?php FrmAppHelper::icon_by_class( 'frmfont frm_delete_icon', array( 'aria-hidden' => 'true' ) ); ?>
4
  </a>
5
  <?php } ?>
6
 
css/font_icons.css CHANGED
@@ -9,9 +9,9 @@
9
  -moz-osx-font-smoothing: grayscale;
10
  text-rendering: auto;
11
  line-height: 1;
12
- -moz-transition: all .1s ease-in-out;
13
- -webkit-transition: all .1s ease-in-out;
14
- transition: all .1s ease-in-out;
15
  font-size: 18px;
16
  }
17
 
@@ -620,7 +620,7 @@ a.frm_icon_font:hover{
620
  content: "\e99e";
621
  }
622
  .frm_white_label_icon:before {
623
- content: "\e91d";
624
  }
625
  .frm_zoom_out_icon:before {
626
  content: "\e99f";
9
  -moz-osx-font-smoothing: grayscale;
10
  text-rendering: auto;
11
  line-height: 1;
12
+ -moz-transition: color .1s ease-in-out, opacity .1s ease-in-out;
13
+ -webkit-transition: color .1s ease-in-out, opacity .1s ease-in-out;
14
+ transition: color .1s ease-in-out, opacity .1s ease-in-out;
15
  font-size: 18px;
16
  }
17
 
620
  content: "\e99e";
621
  }
622
  .frm_white_label_icon:before {
623
+ content: "\e91d" !important;
624
  }
625
  .frm_zoom_out_icon:before {
626
  content: "\e99f";
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 .frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container .frm_primary_label,.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container .frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container .frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_none_container .frm_primary_label,.with_frm_style .frm_pos_none,.frm_pos_none,.frm_none_container .frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container .frm_primary_label{visibility:hidden;white-space:nowrap;}.with_frm_style .frm_inside_container .frm_primary_label{opacity:0;transition: opacity 0.1s linear;}.with_frm_style .frm_inside_container label.frm_visible,.frm_visible{opacity:1;}.with_frm_style .frm_description{clear:both;}.with_frm_style input[type=number][readonly]{-moz-appearance: textfield;}.with_frm_style select[multiple="multiple"]{height:auto;line-height:normal;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style textarea{height:auto;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none;border:1px solid #eee;padding:5px;display:inline;}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field,.frm_inline_form .frm_submit{grid-column: span 1 / span 1;}.frm_inline_form .frm_submit{margin:0;}.frm_submit.frm_inline_submit input[type=submit],.frm_submit.frm_inline_submit button,.frm_inline_form .frm_submit input[type=submit],.frm_inline_form .frm_submit button{margin-top:0;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style.frm_center_submit .frm_submit input[type=submit],.with_frm_style.frm_center_submit .frm_submit input[type=button],.with_frm_style.frm_center_submit .frm_submit button{margin-bottom:8px !important;}.with_frm_style .frm_submit input[type=submit],.with_frm_style .frm_submit input[type=button],.with_frm_style .frm_submit button{-webkit-appearance: none;cursor: pointer;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.with_frm_style .frm_loading_form .frm_ajax_loading{visibility:visible !important;}.with_frm_style .frm_loading_form .frm_button_submit {position: relative;opacity: .8;color: transparent !important;text-shadow: none !important;}.with_frm_style .frm_loading_form .frm_button_submit:hover,.with_frm_style .frm_loading_form .frm_button_submit:active,.with_frm_style .frm_loading_form .frm_button_submit:focus {cursor: not-allowed;color: transparent;outline: none !important;box-shadow: none;}.with_frm_style .frm_loading_form .frm_button_submit:before {content: '';display: inline-block;position: absolute;background: transparent;border: 1px solid #fff;border-top-color: transparent;border-left-color: transparent;border-radius: 50%;box-sizing: border-box;top: 50%;left: 50%;margin-top: -10px;margin-left: -10px;width: 20px;height: 20px;-webkit-animation: spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation: spin 2s linear infinite;animation: spin 2s linear infinite;}.frm_forms.frm_style_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:2px;border-style:solid;border-color:#5f6062;margin:0;padding:15px 15px 15px 15px;background-color:#008ec2;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,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:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style-2.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#ffffff;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 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:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font{color:#ffffff;}.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:#444444;vertical-align:middle;}.frm_style_formidable-style-2.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .form-field{margin-bottom: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:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#ffffff;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style-2.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style-2.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style-2.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style-2.with_frm_style .frm_none_container .frm_primary_label,.frm_style_formidable-style-2.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style-2.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;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:"Lucida Grande","Lucida Sans Unicode",Tahoma,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:0px 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=radio],.frm_style_formidable-style-2.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style-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:"Lucida Grande","Lucida Sans Unicode",Tahoma,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:auto;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:#e9f6f6;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:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#8DC63F;border-width:2px;border-color: #ffffff;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-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: #f47b20;border-color: #cccccc;color: #ffffff;}.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: #a7f561;border-color: #cccccc;color: #ffffff;}.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: #8DC63F;}.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.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:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#ffffff;font-weight:bold;margin:0;padding:0 0 3px 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:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#ffffff;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:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;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: 13px;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 #a7f561;background-color:#e3fcd9;color:#666666;border-radius:4px;}.frm_style_formidable-style-2.with_frm_style .frm_message p{color:#666666;}.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:#e9f6f6;}.frm_style_formidable-style-2.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:0px 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: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: #8DC63F;border-width:2px;border-color: #ffffff;height:auto;}.frm_style_formidable-style-2.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.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: #444444;}.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: #8DC63F;}.frm_style_formidable-style-2.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:0px 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:6px ;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single div{top:0px;}.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: #8DC63F;}.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: #8DC63F;}.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: #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 {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: #8DC63F;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #8DC63F;}.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: #8DC63F;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #8DC63F;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: #8DC63F;}.frm_style_formidable-style-2.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #79b22b;background-color: #8DC63F;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(141,198,63,0.6);color:#ffffff;background-color: #8DC63F;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(141,198,63,0.6);color:#ffffff;background-color: #8DC63F;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(141,198,63,0.6);color:#ffffff;background-color: #8DC63F;}.frm_style_formidable-style-2.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_on_label{color:#8DC63F;}.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:#8DC63F;}.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:#666666;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 15px 15px 15px;margin:0;font-size:30px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#ffffff;border:none;border:2px solid #ffffff;background-color:#f47b20}.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;border-bottom:2px solid #ffffff;}@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_candy-cane.with_frm_style{max-width:80% !important;direction:ltr !important;margin:0 auto;}.frm_style_candy-cane.with_frm_style,.frm_style_candy-cane.with_frm_style form,.frm_style_candy-cane.with_frm_style .frm-show-form div.frm_description p {text-align:left !important;}.frm_inline_form.frm_style_candy-cane.with_frm_style form{text-align:center;}.frm_style_candy-cane.with_frm_style .frm_form_fields > fieldset{border-width:6px !important;border-style:solid;border-color:#fb32e4 !important;margin:0;padding:10px 25px 5px 25px !important;background-color:#fccff7;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_candy-cane.with_frm_style legend + h3,.frm_style_candy-cane.with_frm_style h3.frm_form_title{font-size:20px !important;color:#000 !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px !important;margin-bottom:10px !important;}.frm_style_candy-cane.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#555 !important;font-weight:bold !important;text-align:left !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_container,.frm_style_candy-cane.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;color:#000 !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_container{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .frm_form_field .frm_show_it{font-size:14px !important;font-weight:normal;}.frm_style_candy-cane.with_frm_style .frm_icon_font{color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e633";}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e632";}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#000 !important;vertical-align:middle;}.frm_style_candy-cane.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e635";color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e634";color:#555 !important;}.frm_style_candy-cane.with_frm_style .form-field{margin-bottom:20px !important;}.frm_style_candy-cane.with_frm_style .frm_grid,.frm_style_candy-cane.with_frm_style .frm_grid_first,.frm_style_candy-cane.with_frm_style .frm_grid_odd {margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style .form-field.frm_section_heading{margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style p.description,.frm_style_candy-cane.with_frm_style div.description,.frm_style_candy-cane.with_frm_style div.frm_description,.frm_style_candy-cane.with_frm_style .frm-show-form > div.frm_description,.frm_style_candy-cane.with_frm_style .frm_error{margin:0 !important;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:12px !important;color:#777 !important;font-weight:normal !important;text-align:left !important;font-style:normal !important;max-width:100%;}.frm_style_candy-cane.with_frm_style .frm-show-form div.frm_description p{font-size:14px !important;color:#000 !important;margin-top:10px !important;margin-bottom:25px !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_candy-cane.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_candy-cane.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.frm_style_candy-cane.with_frm_style .frm_pos_right{display:inline !important;width:150px !important;}.frm_style_candy-cane.with_frm_style .frm_none_container .frm_primary_label,.frm_style_candy-cane.with_frm_style .frm_pos_none{display:none !important;}.frm_style_candy-cane.with_frm_style .frm_scale label{font-weight:normal !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_required{color:#555 !important;font-weight:bold !important;}.frm_style_candy-cane.with_frm_style input[type=text],.frm_style_candy-cane.with_frm_style input[type=password],.frm_style_candy-cane.with_frm_style input[type=email],.frm_style_candy-cane.with_frm_style input[type=number],.frm_style_candy-cane.with_frm_style input[type=url],.frm_style_candy-cane.with_frm_style input[type=tel],.frm_style_candy-cane.with_frm_style input[type=search],.frm_style_candy-cane.with_frm_style select,.frm_style_candy-cane.with_frm_style textarea,.frm_style_candy-cane.with_frm_style .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=radio],.frm_style_candy-cane.with_frm_style input[type=checkbox]{border-color: #fb32e4 !important;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset !important;}.frm_style_candy-cane.with_frm_style input[type=text],.frm_style_candy-cane.with_frm_style input[type=password],.frm_style_candy-cane.with_frm_style input[type=email],.frm_style_candy-cane.with_frm_style input[type=number],.frm_style_candy-cane.with_frm_style input[type=url],.frm_style_candy-cane.with_frm_style input[type=tel],.frm_style_candy-cane.with_frm_style input[type=file],.frm_style_candy-cane.with_frm_style input[type=search],.frm_style_candy-cane.with_frm_style select{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_html_container.frm_scroll_box,.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff !important;border-color: #fb32e4 !important;border-width:4px !important;border-style:dashed !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;font-size:14px !important;padding:6px 10px !important;outline:none !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_total input,.frm_style_candy-cane.with_frm_style .frm_form_field.frm_total textarea{color: #555 !important;background-color:transparent !important;border:none !important;display:inline !important;width:auto !important;padding:0 !important;}.frm_style_candy-cane.with_frm_style .frm_button{padding:6px 11px !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;font-size:14px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-weight:bold !important;color:#000 !important;background: #fccff7 !important;border-width:4px;border-color: #fb32e4 !important;height:auto !important;}.frm_style_candy-cane.with_frm_style .frm_button .frm_icon_font:before{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone{border-color: #fb32e4 !important;border-radius:5px !important;color: #555 !important;background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-remove{color: #555 !important;}.frm_style_candy-cane.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #000 !important;}.frm_style_candy-cane.with_frm_style .frm_blank_field .frm_dropzone{border-color:#ff1914 !important;color:#555 !important;background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2 !important;}.frm_style_candy-cane.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555 !important;background-color:#ffffff !important;padding:6px 10px !important;border-radius:5px !important;border-color: #fb32e4 !important;border-width:4px !important;border-style:dashed !important;}.frm_style_candy-cane.with_frm_style .chosen-container{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .chosen-container .chosen-results li,.frm_style_candy-cane.with_frm_style .chosen-container .chosen-results li span{color:#555 !important;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px !important;line-height:32px !important;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single div{top:3px !important;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_candy-cane.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px !important;}.frm_style_candy-cane.with_frm_style .frm_page_bar input,.frm_style_candy-cane.with_frm_style .frm_page_bar input:disabled{color: #ffffff !important;background-color: #dddddd !important;border-color: #dfdfdf !important;border-width: 2px !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd !important;border-color: #dfdfdf !important;opacity:1 !important;}.frm_style_candy-cane.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_rootline_title,.frm_style_candy-cane.with_frm_style .frm_pages_complete,.frm_style_candy-cane.with_frm_style .frm_percent_complete{color: #777 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input,.frm_style_candy-cane.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff !important;border-right-color: #ffffff !important;border-left-width: 1px !important;border-right-width: 1px !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2 !important;border-right-color: #ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf !important;border-top-width: 2px !important;top: 15px;}.frm_style_candy-cane.with_frm_style .frm_rootline input,.frm_style_candy-cane.with_frm_style .frm_rootline input:hover {width: 30px !important;height: 30px !important;border-radius: 30px !important;padding: 0 !important;}.frm_style_candy-cane.with_frm_style .frm_rootline input:focus {border-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae !important;background-color: #008ec2 !important;color: #ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input,.frm_style_candy-cane.with_frm_style .frm_progress_line input:disabled,.frm_style_candy-cane.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_candy-cane.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_candy-cane.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_candy-cane.with_frm_style .frm_range_value{font-size:14px;}.frm_style_candy-cane.with_frm_style .form-field input[type=range],.frm_style_candy-cane.with_frm_style .form-field input[type=range]:focus {padding:0 !important;background:transparent !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc !important;border-radius:5px !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff !important;background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff !important;background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff !important;background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_switch_opt{font-size:14px !important;font-weight:normal !important;}.frm_style_candy-cane.with_frm_style .frm_on_label{color:#008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_off_label{color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_slider {background-color:#cccccc !important;}.frm_style_candy-cane.with_frm_style input:checked + .frm_slider {background-color:#008ec2 !important;}.frm_style_candy-cane.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto !important;}.frm_style_candy-cane.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_candy-cane.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_candy-cane.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block !important;}.frm_style_candy-cane.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 !important;margin-top:8px;}.frm_style_candy-cane.with_frm_style span.frm-pass-verified::before {color:#555 !important;}.frm_style_candy-cane.with_frm_style span.frm-pass-req::before {color:#fff !important;}.frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0 !important;margin:0 !important;font-size:18px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold !important;color:#555 !important;border:none !important;border-top:2px solid #e8e8e8 !important;background-color:transparent !important}.frm_style_candy-cane.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_candy-cane.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_candy-cane.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_candy-cane.with_frm_style .frm_section_heading{margin-top:15px !important;}.frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px !important;}.frm_style_candy-cane.with_frm_style .frm_repeat_sec{margin-bottom:20px !important;margin-top:20px !important;border-bottom:2px solid #e8e8e8 !important;}@media only screen and (max-width: 600px){.frm_style_candy-cane.with_frm_style .frm_repeat_inline,.frm_style_candy-cane.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_formidable-style.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style.with_frm_style,.frm_style_formidable-style.with_frm_style form,.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_formidable-style.with_frm_style legend + h3,.frm_style_formidable-style.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_style_formidable-style.with_frm_style .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=radio],.frm_style_formidable-style.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=file],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select{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:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style .frm_submit button:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_formidable-style.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_radio label,.frm_style_formidable-style.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style.with_frm_style .frm_blank_field label,.frm_style_formidable-style.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_formidable-style.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_formidable-style.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_formidable-style.with_frm_style .frm_page_bar input,.frm_style_formidable-style.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline_title,.frm_style_formidable-style.with_frm_style .frm_pages_complete,.frm_style_formidable-style.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style.with_frm_style .frm_rootline input,.frm_style_formidable-style.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_formidable-style.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style.with_frm_style .form-field input[type=range],.frm_style_formidable-style.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_formidable-style.with_frm_style .frm_repeat_inline,.frm_style_formidable-style.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_left-labels.with_frm_style{max-width:100%;direction:ltr;}.frm_style_left-labels.with_frm_style,.frm_style_left-labels.with_frm_style form,.frm_style_left-labels.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_left-labels.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_left-labels.with_frm_style legend + h3,.frm_style_left-labels.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_left-labels.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_container,.frm_style_left-labels.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_left-labels.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_left-labels.with_frm_style .frm_icon_font{color:#444444;}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_left-labels.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_left-labels.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_left-labels.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_left-labels.with_frm_style .form-field{margin-bottom:20px;}.frm_style_left-labels.with_frm_style .frm_grid,.frm_style_left-labels.with_frm_style .frm_grid_first,.frm_style_left-labels.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_left-labels.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_left-labels.with_frm_style p.description,.frm_style_left-labels.with_frm_style div.description,.frm_style_left-labels.with_frm_style div.frm_description,.frm_style_left-labels.with_frm_style .frm-show-form > div.frm_description,.frm_style_left-labels.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_left-labels.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_left-labels.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_left-labels.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_left-labels.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_left-labels.with_frm_style .frm_none_container .frm_primary_label,.frm_style_left-labels.with_frm_style .frm_pos_none{display:none;}.frm_style_left-labels.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_left-labels.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_left-labels.with_frm_style input[type=text],.frm_style_left-labels.with_frm_style input[type=password],.frm_style_left-labels.with_frm_style input[type=email],.frm_style_left-labels.with_frm_style input[type=number],.frm_style_left-labels.with_frm_style input[type=url],.frm_style_left-labels.with_frm_style input[type=tel],.frm_style_left-labels.with_frm_style input[type=search],.frm_style_left-labels.with_frm_style select,.frm_style_left-labels.with_frm_style textarea,.frm_style_left-labels.with_frm_style .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=radio],.frm_style_left-labels.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_left-labels.with_frm_style input[type=text],.frm_style_left-labels.with_frm_style input[type=password],.frm_style_left-labels.with_frm_style input[type=email],.frm_style_left-labels.with_frm_style input[type=number],.frm_style_left-labels.with_frm_style input[type=url],.frm_style_left-labels.with_frm_style input[type=tel],.frm_style_left-labels.with_frm_style input[type=file],.frm_style_left-labels.with_frm_style input[type=search],.frm_style_left-labels.with_frm_style select{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_html_container.frm_scroll_box,.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_total input,.frm_style_left-labels.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_left-labels.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_left-labels.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_left-labels.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_left-labels.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_left-labels.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_left-labels.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_left-labels.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_left-labels.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_left-labels.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_left-labels.with_frm_style .chosen-container{font-size:14px;}.frm_style_left-labels.with_frm_style .chosen-container .chosen-results li,.frm_style_left-labels.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_left-labels.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_left-labels.with_frm_style .frm_page_bar input,.frm_style_left-labels.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_left-labels.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_left-labels.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_rootline_title,.frm_style_left-labels.with_frm_style .frm_pages_complete,.frm_style_left-labels.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_left-labels.with_frm_style .frm_progress_line input,.frm_style_left-labels.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_left-labels.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_left-labels.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_left-labels.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_left-labels.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_left-labels.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_left-labels.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_left-labels.with_frm_style .frm_rootline input,.frm_style_left-labels.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_left-labels.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_left-labels.with_frm_style .frm_progress_line input,.frm_style_left-labels.with_frm_style .frm_progress_line input:disabled,.frm_style_left-labels.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_left-labels.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_left-labels.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_left-labels.with_frm_style .frm_range_value{font-size:14px;}.frm_style_left-labels.with_frm_style .form-field input[type=range],.frm_style_left-labels.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_left-labels.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_left-labels.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_left-labels.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_left-labels.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_left-labels.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_left-labels.with_frm_style .frm_off_label{color:#444444;}.frm_style_left-labels.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_left-labels.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_left-labels.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_left-labels.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_left-labels.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_left-labels.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_left-labels.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_left-labels.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_left-labels.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_left-labels.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_left-labels.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_left-labels.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_left-labels.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_left-labels.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_left-labels.with_frm_style .frm_repeat_inline,.frm_style_left-labels.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_lines.with_frm_style{max-width:100%;direction:ltr;}.frm_style_lines.with_frm_style,.frm_style_lines.with_frm_style form,.frm_style_lines.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_lines.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_lines.with_frm_style legend + h3,.frm_style_lines.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_lines.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#444444;font-weight:normal;text-align:left;margin:0;padding:0;width:auto;display:block;}.frm_style_lines.with_frm_style .frm_form_field.frm_html_container,.frm_style_lines.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_lines.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_lines.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_lines.with_frm_style .frm_icon_font{color:#444444;}.frm_style_lines.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_lines.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_lines.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_lines.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_lines.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_lines.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_lines.with_frm_style .form-field{margin-bottom:20px;}.frm_style_lines.with_frm_style .frm_grid,.frm_style_lines.with_frm_style .frm_grid_first,.frm_style_lines.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_lines.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_lines.with_frm_style p.description,.frm_style_lines.with_frm_style div.description,.frm_style_lines.with_frm_style div.frm_description,.frm_style_lines.with_frm_style .frm-show-form > div.frm_description,.frm_style_lines.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_lines.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_lines.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_lines.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_lines.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_lines.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_lines.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_lines.with_frm_style .frm_none_container .frm_primary_label,.frm_style_lines.with_frm_style .frm_pos_none{display:none;}.frm_style_lines.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_lines.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_lines.with_frm_style input[type=text],.frm_style_lines.with_frm_style input[type=password],.frm_style_lines.with_frm_style input[type=email],.frm_style_lines.with_frm_style input[type=number],.frm_style_lines.with_frm_style input[type=url],.frm_style_lines.with_frm_style input[type=tel],.frm_style_lines.with_frm_style input[type=search],.frm_style_lines.with_frm_style select,.frm_style_lines.with_frm_style textarea,.frm_style_lines.with_frm_style .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=radio],.frm_style_lines.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:none;}.frm_style_lines.with_frm_style input[type=text],.frm_style_lines.with_frm_style input[type=password],.frm_style_lines.with_frm_style input[type=email],.frm_style_lines.with_frm_style input[type=number],.frm_style_lines.with_frm_style input[type=url],.frm_style_lines.with_frm_style input[type=tel],.frm_style_lines.with_frm_style input[type=file],.frm_style_lines.with_frm_style input[type=search],.frm_style_lines.with_frm_style select{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_html_container.frm_scroll_box,.frm_style_lines.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:0 0 1px;border-style:solid;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;width:100%;font-size:14px;padding:3px 0px;outline:none;}.frm_style_lines.with_frm_style .frm_form_field.frm_total input,.frm_style_lines.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_lines.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_lines.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_lines.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:0;color: #555555;background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_lines.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_lines.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_lines.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_lines.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_lines.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_lines.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:3px 0px;border-radius:0;border-color: #cccccc;border-width:0 0 1px;border-style:solid;}.frm_style_lines.with_frm_style .chosen-container{font-size:14px;}.frm_style_lines.with_frm_style .chosen-container .chosen-results li,.frm_style_lines.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-single abbr{top:7px ;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-single div{top:1.5px;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_lines.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_lines.with_frm_style .frm_page_bar input,.frm_style_lines.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_lines.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_lines.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_lines.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_lines.with_frm_style .frm_rootline_title,.frm_style_lines.with_frm_style .frm_pages_complete,.frm_style_lines.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_lines.with_frm_style .frm_progress_line input,.frm_style_lines.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_lines.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_lines.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_lines.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_lines.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_lines.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_lines.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_lines.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_lines.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_lines.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_lines.with_frm_style .frm_rootline input,.frm_style_lines.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_lines.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_lines.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_lines.with_frm_style .frm_progress_line input,.frm_style_lines.with_frm_style .frm_progress_line input:disabled,.frm_style_lines.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_lines.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_lines.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_lines.with_frm_style .frm_range_value{font-size:14px;}.frm_style_lines.with_frm_style .form-field input[type=range],.frm_style_lines.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_lines.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:0;}.frm_style_lines.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_lines.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_lines.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_lines.with_frm_style .frm_switch_opt{font-size:12px;font-weight:normal;}.frm_style_lines.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_lines.with_frm_style .frm_off_label{color:#444444;}.frm_style_lines.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_lines.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_lines.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_lines.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_lines.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_lines.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_lines.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_lines.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_lines.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_lines.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_lines.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_lines.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_lines.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_lines.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_lines.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_lines.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_lines.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_lines.with_frm_style .frm_repeat_inline,.frm_style_lines.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_rtl.with_frm_style{max-width:100%;direction:rtl;unicode-bidi:embed;}.frm_style_rtl.with_frm_style,.frm_style_rtl.with_frm_style form,.frm_style_rtl.with_frm_style .frm-show-form div.frm_description p {text-align:right;}.frm_style_rtl.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_rtl.with_frm_style legend + h3,.frm_style_rtl.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_rtl.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:right;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_rtl.with_frm_style .frm_form_field.frm_html_container,.frm_style_rtl.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_rtl.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_rtl.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_rtl.with_frm_style .frm_icon_font{color:#444444;}.frm_style_rtl.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_rtl.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_rtl.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_rtl.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_rtl.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_rtl.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_rtl.with_frm_style .form-field{margin-bottom:20px;}.frm_style_rtl.with_frm_style .frm_grid,.frm_style_rtl.with_frm_style .frm_grid_first,.frm_style_rtl.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_rtl.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_rtl.with_frm_style p.description,.frm_style_rtl.with_frm_style div.description,.frm_style_rtl.with_frm_style div.frm_description,.frm_style_rtl.with_frm_style .frm-show-form > div.frm_description,.frm_style_rtl.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_rtl.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_rtl.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_rtl.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_rtl.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_rtl.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_rtl.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_rtl.with_frm_style .frm_none_container .frm_primary_label,.frm_style_rtl.with_frm_style .frm_pos_none{display:none;}.frm_style_rtl.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_rtl.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_rtl.with_frm_style input[type=text],.frm_style_rtl.with_frm_style input[type=password],.frm_style_rtl.with_frm_style input[type=email],.frm_style_rtl.with_frm_style input[type=number],.frm_style_rtl.with_frm_style input[type=url],.frm_style_rtl.with_frm_style input[type=tel],.frm_style_rtl.with_frm_style input[type=search],.frm_style_rtl.with_frm_style select,.frm_style_rtl.with_frm_style textarea,.frm_style_rtl.with_frm_style .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=radio],.frm_style_rtl.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_rtl.with_frm_style input[type=text],.frm_style_rtl.with_frm_style input[type=password],.frm_style_rtl.with_frm_style input[type=email],.frm_style_rtl.with_frm_style input[type=number],.frm_style_rtl.with_frm_style input[type=url],.frm_style_rtl.with_frm_style input[type=tel],.frm_style_rtl.with_frm_style input[type=file],.frm_style_rtl.with_frm_style input[type=search],.frm_style_rtl.with_frm_style select{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_html_container.frm_scroll_box,.frm_style_rtl.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_rtl.with_frm_style .frm_form_field.frm_total input,.frm_style_rtl.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_rtl.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_rtl.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_rtl.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_rtl.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_rtl.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_rtl.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_rtl.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_rtl.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_rtl.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_rtl.with_frm_style .chosen-container{font-size:14px;}.frm_style_rtl.with_frm_style .chosen-container .chosen-results li,.frm_style_rtl.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_rtl.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_rtl.with_frm_style .frm_page_bar input,.frm_style_rtl.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_rtl.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_rtl.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_rtl.with_frm_style .frm_rootline_title,.frm_style_rtl.with_frm_style .frm_pages_complete,.frm_style_rtl.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_rtl.with_frm_style .frm_progress_line input,.frm_style_rtl.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_rtl.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_rtl.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_rtl.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_rtl.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_rtl.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_rtl.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_rtl.with_frm_style .frm_rootline input,.frm_style_rtl.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_rtl.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_rtl.with_frm_style .frm_progress_line input,.frm_style_rtl.with_frm_style .frm_progress_line input:disabled,.frm_style_rtl.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_rtl.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_rtl.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_rtl.with_frm_style .frm_range_value{font-size:14px;}.frm_style_rtl.with_frm_style .form-field input[type=range],.frm_style_rtl.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_rtl.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_rtl.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_rtl.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_rtl.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_rtl.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_rtl.with_frm_style .frm_off_label{color:#444444;}.frm_style_rtl.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_rtl.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_rtl.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_rtl.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_rtl.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_rtl.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_rtl.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_rtl.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_rtl.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_rtl.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_rtl.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_rtl.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_rtl.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_rtl.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_rtl.with_frm_style .frm_repeat_inline,.frm_style_rtl.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_true-blue.with_frm_style{max-width:80% !important;direction:ltr !important;margin:0 auto;}.frm_style_true-blue.with_frm_style,.frm_style_true-blue.with_frm_style form,.frm_style_true-blue.with_frm_style .frm-show-form div.frm_description p {text-align:left !important;}.frm_inline_form.frm_style_true-blue.with_frm_style form{text-align:center;}.frm_style_true-blue.with_frm_style .frm_form_fields > fieldset{border-width:9px !important;border-style:solid;border-color:#14568a !important;margin:0;padding:10px 25px 5px 25px !important;background-color:#6fa3e7;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_true-blue.with_frm_style legend + h3,.frm_style_true-blue.with_frm_style h3.frm_form_title{font-size:20px !important;color:#fff !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px !important;margin-bottom:10px !important;}.frm_style_true-blue.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#fff !important;font-weight:bold !important;text-align:left !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_container,.frm_style_true-blue.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_container{font-size:14px !important;}.frm_style_true-blue.with_frm_style .frm_form_field .frm_show_it{font-size:14px !important;font-weight:normal;}.frm_style_true-blue.with_frm_style .frm_icon_font{color:#fff !important;}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e633";}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e632";}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_true-blue.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff !important;vertical-align:middle;}.frm_style_true-blue.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e60e";color:#fff !important;}.frm_style_true-blue.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e60c";color:#fff !important;}.frm_style_true-blue.with_frm_style .form-field{margin-bottom:20px !important;}.frm_style_true-blue.with_frm_style .frm_grid,.frm_style_true-blue.with_frm_style .frm_grid_first,.frm_style_true-blue.with_frm_style .frm_grid_odd {margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style .form-field.frm_section_heading{margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style p.description,.frm_style_true-blue.with_frm_style div.description,.frm_style_true-blue.with_frm_style div.frm_description,.frm_style_true-blue.with_frm_style .frm-show-form > div.frm_description,.frm_style_true-blue.with_frm_style .frm_error{margin:0 !important;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:12px !important;color:#ffffff !important;font-weight:normal !important;text-align:left !important;font-style:normal !important;max-width:100%;}.frm_style_true-blue.with_frm_style .frm-show-form div.frm_description p{font-size:14px !important;color:#ffffff !important;margin-top:10px !important;margin-bottom:25px !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_true-blue.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_true-blue.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.frm_style_true-blue.with_frm_style .frm_pos_right{display:inline !important;width:150px !important;}.frm_style_true-blue.with_frm_style .frm_none_container .frm_primary_label,.frm_style_true-blue.with_frm_style .frm_pos_none{display:none !important;}.frm_style_true-blue.with_frm_style .frm_scale label{font-weight:normal !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_required{color:#fff !important;font-weight:bold !important;}.frm_style_true-blue.with_frm_style input[type=text],.frm_style_true-blue.with_frm_style input[type=password],.frm_style_true-blue.with_frm_style input[type=email],.frm_style_true-blue.with_frm_style input[type=number],.frm_style_true-blue.with_frm_style input[type=url],.frm_style_true-blue.with_frm_style input[type=tel],.frm_style_true-blue.with_frm_style input[type=search],.frm_style_true-blue.with_frm_style select,.frm_style_true-blue.with_frm_style textarea,.frm_style_true-blue.with_frm_style .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=radio],.frm_style_true-blue.with_frm_style input[type=checkbox]{border-color: #093b63 !important;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset !important;}.frm_style_true-blue.with_frm_style input[type=text],.frm_style_true-blue.with_frm_style input[type=password],.frm_style_true-blue.with_frm_style input[type=email],.frm_style_true-blue.with_frm_style input[type=number],.frm_style_true-blue.with_frm_style input[type=url],.frm_style_true-blue.with_frm_style input[type=tel],.frm_style_true-blue.with_frm_style input[type=file],.frm_style_true-blue.with_frm_style input[type=search],.frm_style_true-blue.with_frm_style select{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_html_container.frm_scroll_box,.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff !important;border-color: #093b63 !important;border-width:2px !important;border-style:solid !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;font-size:14px !important;padding:6px 10px !important;outline:none !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_total input,.frm_style_true-blue.with_frm_style .frm_form_field.frm_total textarea{color: #14568a !important;background-color:transparent !important;border:none !important;display:inline !important;width:auto !important;padding:0 !important;}.frm_style_true-blue.with_frm_style .frm_button{padding:6px 11px !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;font-size:14px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-weight:normal !important;color:#ffffff !important;background: #14568a !important;border-width:2px;border-color: #093b63 !important;height:auto !important;}.frm_style_true-blue.with_frm_style .frm_button .frm_icon_font:before{font-size:14px !important;}.frm_style_true-blue.with_frm_style .frm_dropzone{border-color: #093b63 !important;border-radius:5px !important;color: #14568a !important;background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_true-blue.with_frm_style .frm_dropzone .dz-remove{color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48 !important;color:#14568a !important;background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_true-blue.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #14568a !important;}.frm_style_true-blue.with_frm_style input[type=file]::-webkit-file-upload-button{color:#14568a !important;background-color:#ffffff !important;padding:6px 10px !important;border-radius:5px !important;border-color: #093b63 !important;border-width:2px !important;border-style:solid !important;}.frm_style_true-blue.with_frm_style .chosen-container{font-size:14px !important;}.frm_style_true-blue.with_frm_style .chosen-container .chosen-results li,.frm_style_true-blue.with_frm_style .chosen-container .chosen-results li span{color:#14568a !important;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px !important;line-height:32px !important;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single div{top:3px !important;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_true-blue.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px !important;}.frm_style_true-blue.with_frm_style .frm_page_bar input,.frm_style_true-blue.with_frm_style .frm_page_bar input:disabled{color: #dfdfdf !important;background-color: #ffffff !important;border-color: #dfdfdf !important;border-width: 2px !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input.frm_page_back{background-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #ffffff !important;border-color: #dfdfdf !important;opacity:1 !important;}.frm_style_true-blue.with_frm_style .frm_current_page .frm_rootline_title{color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_rootline_title,.frm_style_true-blue.with_frm_style .frm_pages_complete,.frm_style_true-blue.with_frm_style .frm_percent_complete{color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input,.frm_style_true-blue.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #dfdfdf !important;border-right-color: #dfdfdf !important;border-left-width: 1px !important;border-right-width: 1px !important;}.frm_style_true-blue.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input.frm_page_back {border-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #14568a !important;border-right-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf !important;border-top-width: 2px !important;top: 20px;}.frm_style_true-blue.with_frm_style .frm_rootline input,.frm_style_true-blue.with_frm_style .frm_rootline input:hover {width: 40px !important;height: 40px !important;border-radius: 40px !important;padding: 0 !important;}.frm_style_true-blue.with_frm_style .frm_rootline input:focus {border-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #004276 !important;background-color: #14568a !important;color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input,.frm_style_true-blue.with_frm_style .frm_progress_line input:disabled,.frm_style_true-blue.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_true-blue.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_true-blue.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_true-blue.with_frm_style .frm_range_value{font-size:14px;}.frm_style_true-blue.with_frm_style .form-field input[type=range],.frm_style_true-blue.with_frm_style .form-field input[type=range]:focus {padding:0 !important;background:transparent !important;}.frm_style_true-blue.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#093b63 !important;border-radius:5px !important;}.frm_style_true-blue.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(20,86,138,0.6);color:#ffffff !important;background-color: #14568a !important;}.frm_style_true-blue.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(20,86,138,0.6);color:#ffffff !important;background-color: #14568a !important;}.frm_style_true-blue.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(20,86,138,0.6);color:#ffffff !important;background-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_switch_opt{font-size:14px !important;font-weight:normal !important;}.frm_style_true-blue.with_frm_style .frm_on_label{color:#14568a !important;}.frm_style_true-blue.with_frm_style .frm_off_label{color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_slider {background-color:#093b63 !important;}.frm_style_true-blue.with_frm_style input:checked + .frm_slider {background-color:#14568a !important;}.frm_style_true-blue.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto !important;}.frm_style_true-blue.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_true-blue.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_true-blue.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block !important;}.frm_style_true-blue.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 !important;margin-top:8px;}.frm_style_true-blue.with_frm_style span.frm-pass-verified::before {color:#fff !important;}.frm_style_true-blue.with_frm_style span.frm-pass-req::before {color:#fff !important;}.frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0 !important;margin:0 !important;font-size:18px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold !important;color:#fff !important;border:none !important;border-top:2px solid #e8e8e8 !important;background-color:transparent !important}.frm_style_true-blue.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_true-blue.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_true-blue.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_true-blue.with_frm_style .frm_section_heading{margin-top:15px !important;}.frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px !important;}.frm_style_true-blue.with_frm_style .frm_repeat_sec{margin-bottom:20px !important;margin-top:20px !important;border-bottom:2px solid #e8e8e8 !important;}@media only screen and (max-width: 600px){.frm_style_true-blue.with_frm_style .frm_repeat_inline,.frm_style_true-blue.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_ajax_loading{visibility:hidden;width:auto;}.frm_form_submit_style{height:auto;}a.frm_save_draft{cursor:pointer;}.horizontal_radio .frm_radio{margin:0 5px 0 0;}.horizontal_radio .frm_checkbox{margin:0;margin-right:5px;}.vertical_radio .frm_checkbox,.vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.horizontal_radio .frm_checkbox,.horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.with_frm_style .frm_checkbox label,.with_frm_style .frm_radio label{display: inline;white-space:normal;}.with_frm_style .vertical_radio .frm_checkbox label,.with_frm_style .vertical_radio .frm_radio label{display: block;padding-left: 20px;text-indent: -20px;}.frm_file_container .frm_file_link,.with_frm_style .frm_radio label .frm_file_container,.with_frm_style .frm_checkbox label .frm_file_container{display:inline-block;margin:5px;vertical-align:middle;}.with_frm_style .frm_radio input[type=radio]{-webkit-appearance:radio;border-radius:50%;}.with_frm_style .frm_checkbox input[type=checkbox]{-webkit-appearance:checkbox;border-radius:0;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{flex: none;display:inline-block;margin:4px 5px 0 0;width:auto;border:none;vertical-align:baseline;position: initial; }.with_frm_style :invalid,.with_frm_style :-moz-submit-invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:15px;}.with_frm_style .frm_message p{margin-bottom:5px;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-top:none;border-left:none;border-right:none;}.frm-alt-table {width:100%;border-collapse:collapse;margin-top:0.5em;font-size:15px;}.frm-alt-table th {width:200px;}.frm-alt-table tr {background-color:transparent;}.frm-alt-table th,.frm-alt-table td {background-color:transparent;vertical-align:top;text-align:left;padding:20px;}.frm-alt-table tr:nth-child(even) {background-color:#f9f9f9;}table.form_results.with_frm_style{border:1px solid #ccc;}table.form_results.with_frm_style tr td{text-align:left;color:#555555;padding:7px 9px;border-top:1px solid #cccccc;}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd{background-color:#f9f9f9;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar{background-color:#ffffff;box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;float:left;height:100%;line-height:20px;text-align:center;transition:width 0.6s ease 0s;width:100%;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(../images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}select.frm_loading_lookup{background-image: url(../images/ajax_loader.gif) !important;background-position: 10px;background-repeat: no-repeat;color: transparent !important;}.frm_screen_reader {border: 0;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;word-wrap: normal !important; }.frm_screen_reader.frm_hidden{display:initial;}.frm_clear_none{clear:none;}.frm_clear{clear:both;}.frm_form_field.frm_alignright{float:right !important;}.with_frm_style .frm_form_field{clear:both;}.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container{display:grid;grid-template-columns: repeat(12, 6.5%);grid-auto-rows: max-content;grid-gap: 0 2%;}.frm_combo_inputs_container > *,.frm_grid_container > *,.frm_section_heading > *,.frm_fields_container .frm_form_field,.frm_fields_container > *{grid-column: span 12 / span 12;}.frm_inline,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;grid-column: span 2 / span 2;}.frm6,.frm_half,.frm_form_field.frm_three_fifths, .frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{grid-column:span 6 / span 6;}.frm4,.frm_third,.frm_form_field.frm_two_fifths, .frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{grid-column:span 4 / span 4;}.frm8,.frm_two_thirds,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{grid-column: span 8/span 8;}.frm3,.frm_fourth,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{grid-column: span 3/span 3;}.frm9,.frm_three_fourths,.frm_form_field.frm_four_fifths, .frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm_three_fourths{grid-column: span 9/span 9;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{grid-column: span 2/span 2;}.frm2,.frm_sixth,.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{grid-column: span 2/span 2;}.frm10,.frm_form_field.frm10,.frm_submit.frm10{grid-column: span 10/span 10;}.frm1,.frm_form_field.frm1,.frm_submit.frm1,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{grid-column: span 1/span 1;}.frm5,.frm_form_field.frm5,.frm_submit.frm5{grid-column: span 5/span 5;}.frm7,.frm_form_field.frm7,.frm_submit.frm7{grid-column: span 7/span 7;}.frm11,.frm_form_field.frm11,.frm_submit.frm11{grid-column: span 11/span 11;}.frm12,.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type='checkbox']):not([type='radio']):not([type='button']),.frm_full select,.frm_full textarea{width:100% !important;grid-column: span 12/span 12;box-sizing: border-box;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_first,.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{grid-column-start:1;}.frm_last,.frm_form_field.frm_last,.frm_form_field.frm_alignright{grid-column-end:-1;grid-row-start: span 100;justify-content: end;}.with_frm_style.frm_rtl .frm_form_fields .star-rating{float:right;}.with_frm_style.frm_rtl .frm_grid .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_first .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_odd .frm_primary_label,.with_frm_style.frm_rtl .frm_grid .frm_radio,.with_frm_style.frm_rtl .frm_grid_first .frm_radio,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio,.with_frm_style.frm_rtl .frm_grid .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox{float:right !important;margin-right:0 !important;}.with_frm_style.frm_rtl .frm_grid_first .frm_radio label input,.with_frm_style.frm_rtl .frm_grid .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox label input{float:left;}.with_frm_style.frm_rtl .frm_catlevel_2,.with_frm_style.frm_rtl .frm_catlevel_3,.with_frm_style.frm_rtl .frm_catlevel_4,.with_frm_style.frm_rtl .frm_catlevel_5{margin-right:18px;}.with_frm_style.frm_rtl div > .frm_time_select{margin-right:5px;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display: grid;grid-template-columns: 25% auto;width:100%;grid-auto-rows: min-content;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_form_field.frm_inline_container{grid-template-columns: repeat(2, minmax(auto, max-content) );}.frm_form_field.frm_inline_container .frm_primary_label,.frm_form_field.frm_right_container .frm_primary_label,.frm_form_field.frm_left_container .frm_primary_label{margin-right:10px;grid-row:span 2/span 2;padding-top:4px;}.frm_form_field.frm_left_container .frm_primary_label{grid-column:1;grid-row:span 2/span 2; }.frm_form_field.frm_right_container .frm_primary_label{grid-column:2;grid-row:1;margin-right:0;margin-left:10px;}.frm_form_field.frm_inline_container .frm_description,.frm_form_field.frm_left_container .frm_description{grid-column:2;}.frm_form_field.frm_right_container .frm_description{grid-column:1;}.frm_conf_field.frm_left_container{grid-template-columns: 67%;}.frm_conf_field.frm_left_container .frm_description{grid-column:1;}.frm-fade-in {-webkit-animation-name: fadeIn;animation-name: fadeIn;-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}@keyframes spin {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}@keyframes fadeIn { 0% {opacity: 0;} 100% {opacity: 1;}}@media only screen and (max-width: 600px) {.frm_section_heading > .frm_form_field,.frm_fields_container > .frm_submit,.frm_grid_container > .frm_form_field,.frm_fields_container > .frm_form_field{grid-column: 1 / span 12 !important;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display:block;}}.frm_conf_field.frm_left_container .frm_primary_label{display:none;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd{background-color:#ffffff;}.frm_grid{background-color:#ffffff;}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{visibility:hidden;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 .frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 .frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 .frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 .frm_primary_label,.frm_grid_7 .frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 .frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 .frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 .frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 .frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 .frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_left_container .frm_opt_container{padding-top:4px;}.with_frm_style .frm_inline_container.frm_grid_first .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display: grid;grid-template-columns: repeat(2, 1fr);grid-auto-rows: max-content;grid-gap: 0 2.5%;}.frm_form_field.frm_three_col .frm_opt_container{grid-template-columns: repeat(3, 1fr);}.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(4, 1fr);}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{grid-column-end: span 1;}.frm_form_field .frm_checkbox,.frm_form_field .frm_checkbox + .frm_checkbox,.frm_form_field .frm_radio,.frm_form_field .frm_radio + .frm_radio{margin-top: 0;margin-bottom: 0;}.frm_form_field.frm_scroll_box .frm_opt_container{height:100px;overflow:auto;}.frm_html_container.frm_scroll_box,.frm_form_field.frm_html_scroll_box{height:100px;overflow:auto;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;-moz-box-shadow:none;-webkit-box-shadow:none;width:auto !important;box-shadow:none !important;display:inline;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.frm_form_field.frm_label_justify .frm_primary_label{text-align:justify !important;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:block;}@font-face {font-family:'s11-fp';src:local('☺'), url('../fonts/s11-fp.woff?v=4') format('woff'), url('../fonts/s11-fp.ttf?v=4') format('truetype'), url('../fonts/s11-fp.svg?v=4') format('svg');font-weight:normal;font-style:normal;}.frmfont,.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;display:inline-block;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-rendering: auto;line-height: 1;-moz-transition: all .1s ease-in-out;-webkit-transition: all .1s ease-in-out;transition: all .1s ease-in-out;font-size: 18px;}i.frmfont,i.frm_icon_font{font-style:normal;font-variant: normal;speak: none;}.frmfont:before,select.frmfont,.frm_icon_font:before,select.frm_icon_font{font-family: 's11-fp' !important;text-align:center;}.frmfont,a.frmfont,.frmfont:hover,a.frmfont:hover.frm_icon_font,a.frm_icon_font,.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;box-shadow:none;}.frmfont:focus,.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frmfont:active,.frm_icon_font:active{outline:none;}.frm_trigger .frm_icon_font{padding:0 5px;}.frm_logo_icon:before {content: "\e601";}.frm_required_icon:before {content: "\e612";}.frm_delete_icon:before {content: "\e610" !important;}.frm_delete_solid_icon:before {content: "\e900";}.frm_move_icon:before {content: "\e61a";}.frm_drag_icon:before {content: "\e93b";}.frm_clear_icon:before {content: "\e60a";}.frm_noclear_icon:before {content: "\e60b";}.frm_duplicate_icon:before {content: "\e61b";}.frm_copy_icon:before {content: "\f0c5";}.frm_clone_solid_icon:before {content: "\f24e";}.frm_clone_icon:before {content: "\f24d";}.frm_tooltip_icon:before {content: "\e611";}.frm_tooltip_solid_icon:before {content: "\e907";}.frm_forbid_icon:before {content: "\e636";}.frm_checkmark_icon:before {content: "\e90a";}.frm_check_icon:before {content: "\e605";}.frm_check1_icon:before {content: "\e606";}.frm_plus_icon:before {content: "\e62f";}.frm_plus1_icon:before {content: "\e602";}.frm_plus2_icon:before {content: "\e603";}.frm_plus3_icon:before {content: "\e632";}.frm_plus4_icon:before {content: "\e60f";}.frm_minus_icon:before {content: "\e62e";}.frm_minus1_icon:before {content: "\e600";}.frm_minus2_icon:before {content: "\e604";}.frm_minus3_icon:before {content: "\e633";}.frm_minus4_icon:before {content: "\e613";}.frm_cancel_icon:before {content: "\e607";}.frm_cancel1_icon:before {content: "\e608";}.frm_close_icon:before {content: "\e928";}.frm_report_problem_solid_icon:before {content: "\e914";}.frm_report_problem_icon:before {content: "\e915";}.frm_arrowup_icon:before {content: "\e60d";}.frm_arrowup1_icon:before {content: "\e60e";}.frm_arrowup2_icon:before {content: "\e630";}.frm_arrowup3_icon:before {content: "\e62b";}.frm_arrowup4_icon:before {content: "\e62c";}.frm_arrowup5_icon:before {content: "\e635";}.frm_arrowup5_solid_icon:before {content: "\e9d";}.frm_arrowup7_icon:before {content: "\e908";}.frm_arrowup6_icon:before {content: "\e62d";}.frm_arrowdown_icon:before {content: "\e609";}.frm_arrowdown1_icon:before {content: "\e60c";}.frm_arrowdown2_icon:before {content: "\e631";}.frm_arrowdown3_icon:before {content: "\e628";}.frm_arrowdown4_icon:before {content: "\e629";}.frm_arrowdown5_icon:before {content: "\e634";}.frm_arrowdown5_solid_icon:before {content: "\e905";}.frm_arrowdown7_icon:before {content: "\e90b";}.frm_arrowdown6_icon:before {content: "\e62a";}.frm_arrow_left_icon:before {content: "\e912";}.frm_arrow_right_icon:before {content: "\e913";}.frm_filter_icon:before {content: "\e90c";}.frm_download_icon:before {content: "\e615";}.frm_upload2_icon:before {content: "\f093";}.frm_upload_icon:before {content: "\e616";}.frm_download2_icon:before {content: "\f019";}.frm_hard_drive_icon:before {content: "\e916";}.frm_pencil_solid_icon:before {content: "\e901";}.frm_pencil_icon:before {content: "\e61d";}.frm_signature_icon:before {content: "\e919";}.frm_user_icon:before {content: "\e7ff";}.frm_register_icon:before {content: "\e637";}.frm_account_circle_solid_icon:before {content: "\e853";}.frm_account_circle_icon:before {content: "\e921";}.frm_address_card_icon:before {content: "\e996";}.frm_paragraph_icon:before {content: "\f1dd";}.frm_checkbox_unchecked_icon:before {content: "\e91e";}.frm_checkbox_icon:before {content: "\e922";}.frm_checkbox_solid_icon:before {content: "\e91f";}.frm_dropdown_icon:before {content: "\e909";}.frm_caret_square_down_icon:before {content: "\f150";}.frm_check_square_icon:before {content: "\f14a";}.frm_radio_unchecked_icon:before {content: "\e971";}.frm_radio_checked_icon:before {content: "\ea54";}.frm_scrubber_icon:before {content: "\f2f8";}.frm_location_solid_icon:before {content: "\e955";}.frm_location_icon:before {content: "\e947";}.frm_toggle_on_icon:before {content: "\f205";}.frm_toggle_off_icon:before {content: "\f204";}.frm_shield_check_icon:before {content: "\f2f7";}.frm_shield_check_solid_icon:before {content: "\e97d";}.frm_clock_icon:before {content: "\e929";}.frm_clock_solid_icon:before {content: "\e985";}.frm_link_icon:before {content: "\f0c1";}.frm_email_icon:before {content: "\e626";}.frm_email_solid_icon:before {content: "\f0e0";}.frm_mail_bulk_icon:before {content: "\e95c";}.frm_phone_icon:before {content: "\e942";}.frm_calendar_icon:before {content: "\f073";}.frm_code_icon:before {content: "\e90d";}.frm_tag_icon:before {content: "\e98b";}.frm_tag_solid_icon:before {content: "\e989";}.frm_price_tags_icon:before {content: "\e936";}.frm_search_icon:before {content: "\e978";}.frm_sitemap_icon:before {content: "\f0e8";}.frm_file_icon:before {content: "\f15b";}.frm_file_text_solid_icon:before {content: "\f15c";}.frm_file_text_icon:before {content: "\e923";}.frm-option-icon:before, .frm_option_icon:before {content: "\e904";}.frm_option_solid_icon:before {content: "\e906";}.frm_more_horiz_icon:before {content: "\e5d3";}.frm_more_vert_icon:before {content: "\e5d4";}.frm_more_horiz_solid_icon {font-size: 28px !important;font-weight: bold;line-height: 18px;}.frm_more_horiz_solid_icon:before {content: "\00B7\00B7\00B7";}.frm_more_vert_solid_icon:before {content: "\f142";}.frm_calculator_icon:before {content: "\f1ec";}.frm_key_icon:before {content: "\f084";}.frm_keyalt_solid_icon:before {content: "\e986";}.frm_keyalt_icon:before {content: "\e987";}.frm_keyboard_icon:before {content: "\e924";}.frm_eye_icon:before {content: "\f06e";}.frm_eye_solid_icon:before {content: "\e945";}.frm_eye_slash_icon:before {content: "\f070";}.frm_eye_slash_solid_icon:before {content: "\e949";}.frm_page_break_icon:before {content: "\e8e9";}.frm_view_day_icon:before {content: "\e8ed";}.frm_attach_file_icon:before {content: "\e226";}.frm_printer_icon:before {content: "\e926";}.frm_header_icon:before {content: "\f1dc";}.frm_h1_icon:before {content: "\e94c";}.frm_repeat_icon:before {content: "\f363";}.frm_repeater_icon:before {content: "\e974";}.frm_hashtag_icon:before {content: "\e292";}.frm_save_icon:before {content: "\e927";}.frm_sliders_icon:before {content: "\f1de";}.frm_code_commit_icon:before {content: "\f386";}.frm_star_icon:before {content: "\e9d7";}.frm_star_full_icon:before {content: "\e9d9";}.frm_star_half_icon:before {content: "\e9d8";}.frm_linear_scale_icon:before {content: "\e260";}.frm_pie_chart_icon:before {content: "\e99a";}.frm_stats_bars_icon:before {content: "\e99c";}.frm_sms_icon:before {content: "\e61c";}.frm_highrise_icon:before {content: "\e617";}.frm_mailchimp_icon:before {content: "\e622";}.frm_feed_icon:before {content: "\e624";}.frm_align_right_icon:before {content: "\e90f";}.frm_align_left_icon:before {content: "\e910";}.frm_button_icon:before {content: "\e911";}.frm_browser_icon:before {content: "\e925";}.frm_cloud_download_solid_icon:before {content: "\e92a";}.frm_cloud_download_icon:before {content: "\e92b";}.frm_cloud_upload_solid_icon:before {content: "\e92c";}.frm_cloud_upload_icon:before {content: "\e92d";}.frm_cloud_solid_icon:before {content: "\e92e";}.frm_cloud_icon:before {content: "\e92f";}.frm_shuffle_icon:before {content: "\e917";}.frm_swap_icon:before {content: "\e918";}.frm_dropper_solid_icon:before {content: "\e93c";}.frm_tint_icon:before {content: "\e93e";}.frm_pallet_solid_icon:before {content: "\e96c";}.frm_pallet_icon:before {content: "\e96d";}.frm_fingerprint_icon:before {content: "\e94a";}.frm_ghost_icon:before {content: "\e94b";}.frm_heart_solid_icon:before {content: "\e94d";}.frm_heart_icon:before {content: "\e94e";}.frm_history_icon:before {content: "\e94f";}.frm_import_icon:before {content: "\e91a";}.frm_export_icon:before {content: "\e91b";}.frm_label_solid_icon:before {content: "\e952";}.frm_label_icon:before {content: "\e953";}.frm_lock_open_icon:before {content: "\e957";}.frm_lock_solid_icon:before {content: "\e958";}.frm_lock_icon:before {content: "\e959";}.frm_magic_wand_icon:before {content: "\e997";}.frm_dollar_sign_icon:before {content: "\e91c";}.frm_percent_icon:before {content: "\e939";}.frm_notification_solid_icon:before {content: "\e964";}.frm_notification_icon:before {content: "\e965";}.frm_external_link_icon:before {content: "\e966";}.frm_pageview_solid_icon:before {content: "\e96a";}.frm_pageview_icon:before {content: "\e96b";}.frm_settings_solid_icon:before {content: "\e979";}.frm_settings_icon:before {content: "\e97a";}.frm_stamp_icon:before {content: "\e980";}.frm_support_icon:before {content: "\f1cd";}.frm_text_solid_icon:before {content: "\e98c";}.frm_text_icon:before {content: "\e98d";}.frm_text2_icon:before {content: "\f031";}.frm_text3_icon:before {content: "\e98e";}.frm_unfold_less_icon:before {content: "\e993";}.frm_unfold_more_icon:before {content: "\e994";}.frm_work_solid_icon:before {content: "\e999";}.frm_work_icon:before {content: "\e99e";}.frm_white_label_icon:before {content: "\e91d";}.frm_zoom_out_icon:before {content: "\e99f";}.frm_maximize_icon:before {content: "\e920";}.frm_minimize_icon:before {content: "\e93a";}.frm_authorize_icon:before {content: "\e903";}.frm_icon_font.frm_activecampaign_icon {background-image: none;}.frm_activecampaign_icon:before {content: "\e930";}.frm_aweber_icon:before {content: "\e627";}.frm_campaignmonitor_icon:before {content: "\e946";}.frm_constant_contact_icon:before {content: "\e931";}.frm_getresponse_icon:before {content: "\e932";}.frm_googlesheets_icon:before {content: "\e944";}.frm_building_icon:before {content: "\e93f";}.frm_hubspot_icon:before {content: "\e933";}.frm_icontact_icon:before {content: "\e940";}.frm_icon_font.frm_mailpoet_icon:before {content: "\e934";}.frm_paypal_icon:before {content: "\e61f";}.frm_sendinblue_icon:before {content: "\e943";}.frm_sendy_icon:before {content: "\e941";}.frm_salesforce_icon:before {content: "\e935";}.frm_salesforcealt_icon:before {content: "\e937";}.frm_stripe_icon:before {content: "\e902";}.frm_stripealt_icon:before {content: "\e93d";}.frm_twilio_icon:before {content: "\e620";}.frm_woocommerce_icon:before {content: "\e90e";}.frm_wordpress_icon:before {content: "\f19a";}.frm_credit_card_icon:before {content: "\e938";}.frm_credit-card-alt_icon:before, .frm_credit_card_alt_icon:before {content: "\f283";}.frm_cc_amex_icon:before {content: "\f1f3";}.frm_cc_discover_icon:before {content: "\f1f2";}.frm_cc_mastercard_icon:before {content: "\f1f1";}.frm_cc_visa_icon:before {content: "\f1f0";}.frm_cc_paypal_icon:before {content: "\f1f4";}.frm_cc_stripe_icon:before {content: "\f1f5";}.js .frm_logic_form:not(.frm_no_hide) {display:none;}.with_frm_style .frm_conf_field.frm_half label.frm_conf_label {overflow: hidden;white-space: nowrap;}.with_frm_style .frm_time_wrap{white-space:nowrap;}.with_frm_style select.frm_time_select{white-space:pre;display:inline;}.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;padding-bottom:15px;}.with_frm_style .frm_repeat_sec:last-child{border-bottom:none;padding-bottom:none;}.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;}.frm_repeat_sec .frm_button .frm_icon_font:before,.frm_repeat_grid .frm_button .frm_icon_font:before,.frm_repeat_inline .frm_button .frm_icon_font:before{line-height:1;}.frm_form_field .frm_repeat_grid .frm_form_field .frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field .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:15px;text-align:center;float:left;}.with_frm_style .frm_scale input{display:block;margin:0;}.frm-star-group input {display: none !important;}.frm-star-group .star-rating,.frm-star-group input + label {float:left;width:25px;height:25px;font-size:25px;line-height:1;cursor:pointer;display:block;background:transparent;overflow:hidden !important;clear:none;font-style:normal;margin-right:15px;}.frm-star-group input + label:before,.frm-star-group .star-rating:before{font-family:'s11-fp';content:'\e9d7';color:#F0AD4E;display: inline-block;vertical-align: top;}.frm-star-group input[type=radio]:checked + label:before,.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before{color:#F0AD4E;}.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before,.frm-star-group input + label:hover:before,.frm-star-group:hover input + label:hover:before,.frm-star-group .star-rating-on:before,.frm-star-group .star-rating-hover:before{content:'\e9d9';color:#F0AD4E;}.frm-star-group .frm_half_star:before{content:'\e9d8';}.frm-star-group .star-rating-readonly{cursor:default !important;}.with_frm_style .frm_other_input.frm_other_full{margin-top:10px;}.frm_left_container .frm_other_input{grid-column:2;}.frm_inline_container.frm_other_container .frm_other_input,.frm_left_container.frm_other_container .frm_other_input{margin-left:5px;}.frm_right_container.frm_other_container .frm_other_input{margin-right:5px;}.frm_inline_container.frm_other_container select ~ .frm_other_input,.frm_right_container.frm_other_container select ~ .frm_other_input,.frm_left_container.frm_other_container select ~ .frm_other_input{margin:0;}.frm_pagination_cont ul.frm_pagination{display:inline-block;list-style:none;margin-left:0 !important;}.frm_pagination_cont ul.frm_pagination > li{display:inline;list-style:none;margin:2px;background-image:none;}ul.frm_pagination > li.active a{text-decoration:none;}.frm_pagination_cont ul.frm_pagination > li:first-child{margin-left:0;}.archive-pagination.frm_pagination_cont ul.frm_pagination > li{margin:0;}.frmcal{padding-top:30px;}.frmcal-title{font-size:116%;}.frmcal table.frmcal-calendar{border-collapse:collapse;margin-top:20px;color:#555555;}.frmcal table.frmcal-calendar,.frmcal table.frmcal-calendar tbody tr td{border:1px solid #cccccc;}.frmcal table.frmcal-calendar,.frmcal,.frmcal-header{width:100%;}.frmcal-header{text-align:center;}.frmcal-prev{margin-right:10px;}.frmcal-prev,.frmcal-dropdown{float:left;}.frmcal-dropdown{margin-left:5px;}.frmcal-next{float:right;}.frmcal table.frmcal-calendar thead tr th{text-align:center;padding:2px 4px;}.frmcal table.frmcal-calendar tbody tr td{height:110px;width:14.28%;vertical-align:top;padding:0 !important;color:#555555;font-size:12px;}table.frmcal-calendar .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #cccccc;-webkit-box-shadow:0 2px 5px #cccccc;box-shadow:0 2px 5px #cccccc;}table.frmcal-calendar .frmcal-today .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #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: #3177c7;padding:0 0 0 8px;}.frm_switch {position: relative;display: inline-block;width: 40px;height: 25px;vertical-align: middle;}.frm_switch input {display:none !important;}.frm_slider {position: absolute;cursor: pointer;top: 0;left: 0;right: 0;bottom: 0;background-color: #ccc;transition: .4s;border-radius: 30px;}.frm_slider:before {border-radius: 50%;position: absolute;content: "";height: 23px;width: 23px;left: 1px;bottom: 1px;background-color: white;transition: .4s;box-shadow:0 2px 5px #999;}input:checked + .frm_slider {background-color: #3177c7;}input:focus + .frm_slider {box-shadow: 0 0 1px #3177c7;}input:checked + .frm_slider:before {transform: translateX(15px);}.with_frm_style .frm_range_value{display:inline-block;}.with_frm_style input[type=range] {-webkit-appearance: none;box-shadow:none !important;border:none !important;cursor: pointer;padding:0 ;background:transparent !important;display: block;width: 100%;margin: 7px 0 15px;font-size:14px;}.with_frm_style input[type=range]:active,.with_frm_style input[type=range]:focus {outline: none;box-shadow:none !important;background:transparent !important;}.with_frm_style .frm_range_container{text-align:center;}.with_frm_style input[type=range]::-webkit-slider-runnable-track {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-moz-range-track {border-radius: 25px;border: none;height: 10px;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: 25px;border: none;height: 10px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-ms-fill-upper {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-webkit-slider-thumb {-webkit-appearance: none;-webkit-border-radius: 20px;height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;margin-top: -10px;}.with_frm_style input[type=range]::-moz-range-thumb {height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;-moz-border-radius: 20px;}.with_frm_style input[type=range]::-ms-thumb {height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;}@media screen and (max-width: 768px) {.frm-pass-req, .frm-pass-verified {width: 50% !important;white-space: nowrap;}}.frm-pass-req, .frm-pass-verified {float: left;width: 20%;line-height: 20px;font-size: 12px;padding-top: 4px;min-width: 175px;}.frm-pass-req:before, .frm-pass-verified:before {padding-right: 4px;font-size: 12px !important;vertical-align: middle !important;}span.frm-pass-verified::before {content: '\e606';}span.frm-pass-req::before {content: '\e608';}div.frm-password-strength {width: 100%;float: left;}.with_frm_style .chosen-container{font-size:14px;position:relative;display:inline-block;zoom:1;vertical-align:middle;width:100% !important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.with_frm_style .chosen-container * { -webkit-box-sizing: border-box; box-sizing: border-box;}.with_frm_style .chosen-container .chosen-drop{background:#fff;border:1px solid #aaa;border-top:0;position:absolute;top:100%;z-index:1010;width:100%;clip: rect(0, 0, 0, 0);-webkit-clip-path: inset(100% 100%);clip-path: inset(100% 100%);}.with_frm_style .chosen-container.chosen-with-drop .chosen-drop{clip: auto;-webkit-clip-path: none;clip-path: none;}.with_frm_style .chosen-container a{cursor:pointer;}.with_frm_style .chosen-container .search-choice .group-name,.with_frm_style .chosen-container .chosen-single .group-name {margin-right: 4px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-weight: normal;color: #999999;}.with_frm_style .chosen-container .search-choice .group-name:after,.with_frm_style .chosen-container .chosen-single .group-name:after {content: ":";padding-left: 2px;vertical-align: top;}.with_frm_style .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;text-decoration:none;white-space:nowrap;line-height:24px;}.with_frm_style .chosen-container-single .chosen-default {color: #999;}.with_frm_style .chosen-container-single .chosen-single span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.with_frm_style .chosen-container-single .chosen-single-with-deselect span{margin-right:38px;}.with_frm_style .chosen-container-single .chosen-single abbr{display:block;position:absolute;right:26px;top:6px;width:12px;height:12px;font-size:1px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') -42px 1px no-repeat;}.with_frm_style .chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single .chosen-single div{position:absolute;right:0;top:0;display:block;height:100%;width:18px;}.with_frm_style .chosen-container-single .chosen-single div b{background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat 0 2px;display:block;width:100%;height:100%;}.with_frm_style .chosen-container-single .chosen-search{padding:3px 4px;position:relative;margin:0;white-space:nowrap;z-index:1010;}.with_frm_style .chosen-container-single .chosen-search input[type="text"]{width:100% !important;max-width:100% !important;height:auto;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box;}.with_frm_style .chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;clip: rect(0, 0, 0, 0);-webkit-clip-path: inset(100% 100%);clip-path: inset(100% 100%);}.with_frm_style .chosen-container .chosen-results{cursor:text;overflow-x:hidden;overflow-y:auto;position:relative;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch;}.with_frm_style .chosen-container .chosen-results li:before{background:none;}.with_frm_style .chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none;}.with_frm_style .chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer;}.with_frm_style .chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container .chosen-results li.highlighted{background-color: #3875d7;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);color: #fff;}.with_frm_style .chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4;}.with_frm_style .chosen-container .chosen-results li.group-result{display:list-item;font-weight:bold;cursor:default;}.with_frm_style .chosen-container .chosen-results li.group-option{padding-left:15px;}.with_frm_style .chosen-container .chosen-results li em{font-style:normal;text-decoration:underline;}.with_frm_style .chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto;border: 1px solid #aaa;background-color: #fff;cursor:text;}.with_frm_style .chosen-container-multi .chosen-choices li{float:left;list-style:none;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{margin:1px 0;padding:0 !important;height:25px;outline:0;border:0 !important;background:transparent !important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;width: 25px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:1px 5px 1px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);color:#333;line-height:13px;cursor:default;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice span {word-wrap: break-word;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') -42px 1px no-repeat;font-size:1px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);color:#666;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-results{margin:0;padding:0;}.with_frm_style .chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container-single.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;border-bottom-right-radius:0;border-bottom-left-radius:0;box-shadow:0 1px 0 #fff inset;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px;}.with_frm_style .chosen-container-active .chosen-choices {border: 1px solid #5897fb;-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#111 !important;}.with_frm_style .chosen-disabled{opacity:0.5 !important;cursor:default;}.with_frm_style .chosen-disabled .chosen-single{cursor:default;}.with_frm_style .chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default;}.with_frm_style .chosen-rtl{text-align:right;}.with_frm_style .chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0;}.with_frm_style .chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl;}.with_frm_style .chosen-rtl .chosen-single-with-deselect span{margin-left:38px;}.with_frm_style .chosen-rtl .chosen-single div{right:auto;left:3px;}.with_frm_style .chosen-rtl .chosen-single abbr{right:auto;left:26px;}.with_frm_style .chosen-rtl .chosen-choices li{float:right;}.with_frm_style .chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice{margin:1px 5px 1px 0;padding:3px 5px 3px 19px;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0;}.with_frm_style .chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0;}.with_frm_style .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none;}.with_frm_style .chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat -30px -20px;direction:rtl;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px;}.with_frm_style .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px;}.with_frm_style .frm_repeat_sec,.with_frm_style .frm_repeat_inline,.with_frm_style .frm_repeat_grid {position: relative;}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi){.with_frm_style .chosen-rtl .chosen-search input[type="text"],.with_frm_style .chosen-container-single .chosen-single abbr,.with_frm_style .chosen-container-single .chosen-single div b,.with_frm_style .chosen-container-single .chosen-search input[type="text"],.with_frm_style .chosen-container-multi .chosen-choices .search-choice .search-choice-close,.with_frm_style .chosen-container .chosen-results-scroll-down span,.with_frm_style .chosen-container .chosen-results-scroll-up span{background-image:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite2x.png') !important;background-size:52px 37px !important;background-repeat:no-repeat !important;}}@-webkit-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-moz-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-webkit-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@-moz-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}.frm_dropzone, .frm_dropzone * {box-sizing: border-box;}.frm_dropzone.dz-clickable {min-height: 150px;margin-top:5px;line-height:1.42857143;}.frm_dropzone.dz-clickable * {cursor: default;}.frm_dropzone.dz-clickable.frm_single_upload{max-width: 200px;}.frm_dropzone.dz-clickable.frm_single_upload.dz-started {max-width: 300px;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: .5em 0 1em;}.frm_dropzone .dz-message{border: 2px dashed #dfdfdf;background:#ffffff;padding: 20px;border-radius:5px;cursor: pointer;display:none;font-size:20px;text-align: center;margin: .5em 0 1em;}.frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: 0 0 .5em 0;}.frm_dropzone.frm_single_upload.dz-started .dz-message{display: none;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone .frm_upload_icon{display:block;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone.dz-clickable .dz-message * {cursor: pointer;}#frm_form_editor_container .frm_dropzone.dz-clickable,#frm_form_editor_container .frm_dropzone.dz-clickable *{cursor: default;}.frm_dropzone.dz-drag-hover .dz-message {opacity: 0.5;}.frm_dropzone .frm_upload_icon:before{font-size:40px;}.frm_dropzone .frm_small_text {font-size:14px;}.frm_dropzone.dz-drag-hover {border-style: solid;}.frm_dropzone .dz-preview {padding: 15px 0;border-bottom: 1px solid #dfdfdf;}.frm_dropzone .dz-preview:last-child {border-bottom: none;}.frm_dropzone .dz-preview:hover {z-index: 1000;}.frm_dropzone .dz-preview.dz-file-preview .dz-details {opacity: 1;}.frm_dropzone .dz-preview.dz-image-preview .dz-details {-webkit-transition: opacity 0.2s linear;-moz-transition: opacity 0.2s linear;-ms-transition: opacity 0.2s linear;-o-transition: opacity 0.2s linear;transition: opacity 0.2s linear;}.frm_dropzone .dz-preview .dz-remove {cursor: pointer;border: none;float: right;}.frm_dropzone .dz-preview:hover .dz-details {opacity: 1;}.frm_dropzone .dz-preview .dz-details {font-size: 14px;margin: 5px 0 10px;}.frm_dropzone .dz-preview .dz-details .dz-size,.frm_dropzone .dz-preview .dz-details .dz-filename {display: inline-block;overflow: hidden;white-space: nowrap;}.frm_dropzone .dz-preview .dz-details .dz-size strong {font-weight: normal;}.frm_dropzone .dz-preview .dz-details .dz-filename {max-width: 75%;text-overflow: ellipsis;padding-right: 5px;}.frm_dropzone .dz-preview .dz-details .dz-filename a{cursor:pointer;}.frm_dropzone .dz-preview .dz-column {float: right;width: 68%;}.frm_dropzone .dz-preview .dz-image {overflow: hidden;width: 30%;height: 60px;display: block;float: left;margin-right: 2%;}.frm_dropzone .dz-preview .dz-image img {display: block;margin:0 auto;max-height: 60px;}.frm_dropzone .dz-preview.dz-success .dz-success-mark {-webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);}.frm_dropzone .dz-preview.dz-processing .dz-progress {-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;-ms-transition: all 0.2s linear;-o-transition: all 0.2s linear;transition: all 0.2s linear;}.frm_dropzone .dz-preview .dz-progress {pointer-events: none;position: relative;height: 10px;width: 100%;background: rgba(221, 221, 221, 1);-webkit-transform: scale(1);border-radius: 8px;overflow: hidden;}.frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_dropzone .dz-preview.dz-complete .dz-progress{background: #333;background: linear-gradient(to bottom, #666, #444);}.frm_dropzone .dz-preview .dz-progress .dz-upload {position: absolute;top: 0;left: 0;bottom: 0;width: 0;-webkit-transition: width 300ms ease-in-out;-moz-transition: width 300ms ease-in-out;-ms-transition: width 300ms ease-in-out;-o-transition: width 300ms ease-in-out;transition: width 300ms ease-in-out;}.frm_dropzone .dz-preview.dz-error .dz-error-message {display: block;opacity: 1;pointer-events: auto;}.frm_dropzone .dz-preview .dz-error-message {pointer-events: none;display: none;opacity: 0;-webkit-transition: opacity 0.3s ease;-moz-transition: opacity 0.3s ease;-ms-transition: opacity 0.3s ease;-o-transition: opacity 0.3s ease;transition: opacity 0.3s ease;color: #B94A48;padding: 0.5em;}.frm_dropzone .fallback input[type=file]{display:block;}.frm_compact_text{display:none;}.frm_compact .frm_dropzone.dz-clickable{min-height:60px;padding:0;border:none;background-color:transparent;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_compact .frm_compact_text{display:inline;}.frm_compact .frm_dropzone.frm_single_upload.dz-started .dz-message,.frm_compact .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_compact .frm_dropzone.dz-clickable .dz-message{font-size:14px;border:1px solid #dfdfdf;background:#fff;display: inline-block;border-radius: 4px;padding: 6px 11px;box-sizing: border-box;box-shadow: 0 1px 1px #eeeeee;vertical-align: middle;margin: 0 0 1em;}.frm_compact .frm_dropzone .frm_upload_icon:before{font-size:22px;padding-right:7px;vertical-align: middle;}.frm_compact .frm_dropzone .frm_upload_icon{display:inline;}.frm_compact .frm_dropzone .dz-preview{min-height:20px;max-width:200px;margin: 0 5px;padding: 0;display: inline-block;border-bottom: none;}.frm_compact .frm_dropzone .dz-preview.frm_clearfix:after {content:'';}.frm_compact .frm_dropzone .frm_upload_text,.frm_compact .frm_dropzone .frm_small_text,.frm_compact .frm_dropzone .dz-preview .dz-image,.frm_compact .frm_dropzone .dz-preview .dz-details .dz-size{display:none;}.frm_compact .frm_dropzone .dz-preview .dz-details {margin: 0;}.frm_compact .frm_dropzone .dz-preview .dz-column {float: none;width: 100%;}.frm_compact .frm_dropzone .dz-preview .dz-details .dz-filename {overflow: hidden;text-overflow: ellipsis;}.frm-show-form .dz-hidden-input{display:none;}.frm_rootline_group{margin: 20px 0 30px;}ul.frm_page_bar{list-style-type: none;margin: 0 !important;padding: 0;width: 100%;float: left;display: table;display: -webkit-flex;display: flex;flex-wrap: wrap;box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;}ul.frm_page_bar li{display: inline-block;-ms-flex: 1;flex: 1;}.frm_forms .frm_page_bar input,.frm_forms .frm_page_bar input:disabled{transition: background-color 0.1s ease;color: #ffffff;background-color: #dddddd;font-size: 18px;border-width: 2px;border-style: solid;border-color: #dfdfdf;}.frm_forms .frm_page_bar input:focus{outline: none;}.frm_forms .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_forms .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;}.frm_rootline_single{text-align: center;margin: 0;padding: 0;}.frm_current_page .frm_rootline_title{color: #008ec2;}.frm_rootline_title,.frm_pages_complete,.frm_percent_complete {font-size:14px;padding:4px;}.frm_pages_complete {float: right;margin-right:13px;}.frm_percent_complete {float: left;margin-left:13px;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled {width: 100%;border: none;border-top: 1px solid #dfdfdf;border-bottom: 1px solid #dfdfdf;box-shadow: inset 0 10px 20px -15px #aaa;margin: 5px 0;padding: 6px 0;border-radius:0;font-size:0;line-height:15px;}.frm_forms .frm_progress_line.frm_show_lines input {border-left: 1px solid #ffffff;border-right: 1px solid #ffffff;}.frm_progress_line .frm_rootline_single {display: flex;flex-direction: column;justify-content: flex-end;}.frm_forms .frm_progress_line li:first-of-type input {border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-left: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-right: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-right: 1px solid #dfdfdf;}.frm_forms .frm_progress_line .frm_current_page input[type="button"] {border-left: 1px solid #dfdfdf;}.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right: 1px solid #ffffff;}.frm_forms .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_forms .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_rtl.frm_forms .frm_progress_line li:first-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-top-left-radius:0px;border-bottom-left-radius:0px;border-right: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input{border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-left: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-left: 1px solid #dfdfdf;border-right:none;}.frm_rtl.frm_forms .frm_progress_line .frm_current_page input[type="button"] {border-right: 1px solid #dfdfdf;border-left:none;}.frm_rtl.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-left: 1px solid #ffffff;border-right:none;}.frm_rootline.frm_show_lines:before {border-top-width: 2px;border-top-style: solid;border-top-color: #dfdfdf;content: "";margin: 0 auto;position: absolute;top: 15px;left: 0;right: 0;bottom: 0;width: 100%;z-index: -1;}.frm_rootline.frm_show_lines{position: relative;z-index: 1;}.frm_rootline.frm_show_lines span{display:block;}.frm_forms .frm_rootline input {width: 30px;height: 30px;min-height:auto;border-radius: 30px;padding:0;}.frm_forms .frm_rootline input:focus {border-color: #008ec2;}.frm_forms .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled,.frm_forms .frm_progress_line .frm_current_page input[type="button"],.frm_forms .frm_rootline.frm_no_numbers input,.frm_forms .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}@media only screen and (max-width: 700px) {.frm_progress span.frm_rootline_title,.frm_rootline.frm_rootline_10 span.frm_rootline_title,.frm_rootline.frm_rootline_9 span.frm_rootline_title,.frm_rootline.frm_rootline_8 span.frm_rootline_title,.frm_rootline.frm_rootline_7 span.frm_rootline_title,.frm_rootline.frm_rootline_6 span.frm_rootline_title,.frm_rootline.frm_rootline_5 span.frm_rootline_title{display:none;}}@media only screen and (max-width: 500px) {.frm_rootline.frm_rootline_4 span.frm_rootline_title,.frm_rootline.frm_rootline_3 span.frm_rootline_title{display:none;}}.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 .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth .frm_primary_label{display: block !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(2, 1fr);}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style .frm-g-recaptcha > div > div,.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);-moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe,.with_frm_style .frm-g-recaptcha iframe{width:100%;}}.with_frm_style .frm_form_field{clear:both;}.frm_form_field,.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{width:auto;}.frm_inline_form .frm_form_field.form-field{margin-right:2.5%;display:inline-block;}.frm_inline_form .frm_submit{display:inline-block;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm10,.frm_submit.frm10,.frm_form_field.frm_right_half,.frm_form_field.frm_right_third,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_right_fourth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_half,.frm_form_field.frm_last_third,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_last_fourth,.frm_form_field.frm_last_fifth,.frm_form_field.frm_last_sixth,.frm_form_field.frm_last_seventh,.frm_form_field.frm_last_eighth,.frm_form_field.frm_last_inline,.frm_form_field.frm_last,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_two_thirds,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_inline,.frm_submit.frm_inline{clear:none;float:left;margin-left:2.5%;}.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{clear:left;float:left;margin-left:0;}.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{width:48.75%;}.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{width:31.66%;}.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{width:65.82%;}.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{width:23.12%;}.frm_form_field.frm9,.frm_form_field.frm_three_fourths{width:74.36%;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{width:18%;}.frm_form_field.frm_two_fifths {width:38.5%;}.frm_form_field.frm_three_fifths {width:59%;}.frm_form_field.frm_four_fifths {width:79.5%;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{width:14.58%;}.frm_form_field.frm10,.frm_submit.frm10{width:83.42%;}.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh{width:12.14%;}.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{width:10.31%;}.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;}.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type='checkbox']):not([type='radio']):not([type='button']),.frm_full select,.frm_full textarea{width:100% !important;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container,.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container,.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display:block;}.frm_form_field.frm_left_container .frm_primary_label{float:left;display:inline;max-width:33%;margin-right:5%;}.with_frm_style .frm_conf_field.frm_left_container .frm_primary_label{display:inline;visibility:hidden;}.frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_left_container textarea,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_left_container .chosen-container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_right_container textarea,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_right_container .chosen-container,.frm_form_field.frm_right_container .frm_combo_inputs_container{max-width:62%;}.frm_form_field.frm_left_container .frm_combo_inputs_container input,.frm_form_field.frm_left_container .frm_combo_inputs_container select,.frm_form_field.frm_right_container .frm_combo_inputs_container input,.frm_form_field.frm_right_container .frm_combo_inputs_container select{max-width:100%;}.frm_form_field.frm_left_container .frm_data_container,.frm_form_field.frm_right_container .frm_data_container,.frm_form_field.frm_inline_container .frm_data_container,.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container .frm_combo_inputs_container,.frm_form_field.frm_inline_container .frm_combo_inputs_container,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_inline_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_inline_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_inline_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_inline_container .g-recaptcha{display:inline-block;}.frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_left_container .frm_primary_label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;max-width:33%;}.with_frm_style .frm_left_container .frm_primary_label{float:left;display:inline !important;width:150px;max-width:33% !important;margin-right:10px !important;}.with_frm_style .frm_right_container .frm_primary_label{display:inline !important;width:150px;max-width:33% !important;margin-left:10px !important;}.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_left_container textarea,.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_right_container textarea,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:62% !important;}.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field input,.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field select,.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field input,.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field select{max-width:100% !important;}.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha{display:inline-block !important;}.with_frm_style .frm_left_container > p.description::before,.with_frm_style .frm_left_container > div.description::before,.with_frm_style .frm_left_container > div.frm_description::before,.with_frm_style .frm_left_container > .frm_error::before,.with_frm_style .frm_right_container > p.description::after,.with_frm_style .frm_right_container > div.description::after,.with_frm_style .frm_right_container > div.frm_description::after,.with_frm_style .frm_right_container > .frm_error::after{content:'' !important;display:inline-block !important;width:150px;max-width:33% !important;margin-right:10px !important;}.with_frm_style .frm_left_container.frm_inline .frm_primary_label{max-width:90% !important;}.with_frm_style .form-field.frm_col_field{clear:none;float:left;margin-right:20px;}.with_frm_style .form-field.frm_col_field div.frm_description{width:auto;max-width:100%;}.with_frm_style .frm_inline_container .frm_primary_label,.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.with_frm_style .frm_inline_container .frm_primary_label{margin-right:10px !important;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_checkbox{float:left;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width:30%;margin-right:5%;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:22%;margin-right:4%;}.frm_form_field.frm_two_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_two_col .frm_checkbox:nth-child(2n+2),.frm_form_field.frm_three_col .frm_radio:nth-child(3n+3),.frm_form_field.frm_three_col .frm_checkbox:nth-child(3n+3),.frm_form_field.frm_four_col .frm_radio:nth-child(4n+4),.frm_form_field.frm_four_col .frm_checkbox:nth-child(4n+4){margin-right:0;}.with_frm_style.frm_rtl .frm_form_field.frm2,.with_frm_style.frm_rtl .frm_form_field.frm3,.with_frm_style.frm_rtl .frm_form_field.frm4,.with_frm_style.frm_rtl .frm_form_field.frm6,.with_frm_style.frm_rtl .frm_form_field.frm8,.with_frm_style.frm_rtl .frm_form_field.frm9,.with_frm_style.frm_rtl .frm_form_field.frm10,.with_frm_style.frm_rtl .frm_form_field.frm_half,.with_frm_style.frm_rtl .frm_form_field.frm_third,.with_frm_style.frm_rtl .frm_form_field.frm_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_sixth,.with_frm_style.frm_rtl .frm_form_field.frm_seventh,.with_frm_style.frm_rtl .frm_form_field.frm_eighth,.with_frm_style.frm_rtl .frm_form_field.frm_inline,.with_frm_style.frm_rtl .frm_form_field.frm_left_half,.with_frm_style.frm_rtl .frm_form_field.frm_left_third,.with_frm_style.frm_rtl .frm_form_field.frm_left_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_left_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_left_inline,.with_frm_style.frm_rtl .frm_form_field.frm_first_half,.with_frm_style.frm_rtl .frm_form_field.frm_first_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_first_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_first_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_first_inline,.with_frm_style.frm_rtl .frm_form_field.frm_right_half,.with_frm_style.frm_rtl .frm_form_field.frm_right_third,.with_frm_style.frm_rtl .frm_form_field.frm_right_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_right_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_right_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_right_inline,.with_frm_style.frm_rtl .frm_form_field.frm_last_half,.with_frm_style.frm_rtl .frm_form_field.frm_last_third,.with_frm_style.frm_rtl .frm_form_field.frm_last_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_last_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_last_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_last_inline{float:right;margin-right:2.5%;margin-left:0;clear:none;}.with_frm_style.frm_rtl .frm_form_field.frm_left_half,.with_frm_style.frm_rtl .frm_form_field.frm_first_half,.with_frm_style.frm_rtl .frm_form_field.frm_first,.with_frm_style.frm_rtl .frm_form_field.frm_left_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_left_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_first_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_first_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_left_inline,.with_frm_style.frm_rtl .frm_form_field.frm_first_inline{clear:right;margin-right:0;}.with_frm_style.frm_rtl .frm_form_field.frm_two_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_three_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_four_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_two_col .frm_checkbox,.with_frm_style.frm_rtl .frm_form_field.frm_three_col .frm_checkbox,.with_frm_style.frm_rtl .frm_form_field.frm_four_col .frm_checkbox{float:right;}@media only screen and (max-width: 500px) {.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_left_container textarea,.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_right_container textarea,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:100% !important;}.with_frm_style .frm_left_container > p.description::before,.with_frm_style .frm_left_container > div.description::before,.with_frm_style .frm_left_container > div.frm_description::before,.with_frm_style .frm_left_container > .frm_error::before,.with_frm_style .frm_right_container > p.description::after,.with_frm_style .frm_right_container > div.description::after,.with_frm_style .frm_right_container > div.frm_description::after,.with_frm_style .frm_right_container > .frm_error::after{display:none !important;}.with_frm_style .frm_left_container .frm_primary_label,.with_frm_style .frm_right_container .frm_primary_label{width:100% !important;max-width:100% !important;margin-right:0 !important;margin-left:0 !important;padding-right:0 !important;padding-left:0 !important;}}@media only screen and (max-width: 600px){.with_frm_style .frm_form_field.frm_half.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_half.frm_left_container select,.with_frm_style .frm_form_field.frm_half.frm_left_container textarea,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_half.frm_left_container.frm-g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_left_container.g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_half.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_half.frm_right_container select,.with_frm_style .frm_form_field.frm_half.frm_right_container textarea,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_half.frm_right_container.frm-g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_right_container.g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_right_container .chosen-container{max-width:100% !important;}.with_frm_style .frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_primary_label{max-width:100% !important;margin-right:0;margin-left:0;padding-right:0;padding-left:0;width:100% !important;}.with_frm_style .frm_repeat_inline,.with_frm_style .frm_repeat_grid{margin: 20px 0;}.with_frm_style .frm_form_field.frm_first_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_first_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_error{margin-right:0;margin-left:0;padding-right:0;padding-left:0;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm10,.frm_submit.frm10,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_first_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_last_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_last_inline{width:100%;margin-left:0;margin-right:0;clear:both;float:none;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:48%;}.frm_form_field.frm_four_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_four_col .frm_checkbox:nth-child(2n+2){margin-right:0;}}.color > .red,.red{color:red;}#frm_field_271_container input ,#frm_field_278_container input ,#frm_field_281_container input ,#frm_field_283_container input ,#frm_field_285_container input{ display: none;}#frm_field_271_container img ,#frm_field_278_container img ,#frm_field_281_container img ,#frm_field_283_container img ,#frm_field_285_container img { -webkit-filter: none; -moz-filter: none; filter: none;}#frm_field_271_container img:hover,#frm_field_271_container input:checked + img ,#frm_field_278_container img:hover,#frm_field_278_container input:checked + img ,#frm_field_281_container img:hover,#frm_field_281_container input:checked + img ,#frm_field_283_container img:hover,#frm_field_283_container input:checked + img ,#frm_field_285_container img:hover,#frm_field_285_container input:checked + img { -webkit-transition: all 100ms ease-in; -moz-transition: all 100ms ease-in; transition: all 100ms ease-in; -webkit-filter: drop-shadow(16px 16px 10px rgba(0,0,0,0.9)) sepia(1) saturate(200%); -moz-filter: drop-shadow(16px 16px 10px rgba(0,0,0,0.9)) sepia(1) saturate(200%); filter: drop-shadow(16px 16px 10px rgba(0,0,0,0.9)) sepia(1) saturate(200%);}.bumarg {margin-bottom: 30px;}.ffcaption {text-align: center; margin-top: 20px;}.ffimg {display: block;margin: 0 auto;}.with_frm_style input[type="submit"] {background:#289dcc;border-radius:50px;float:right;padding-top:0;margin-top: 0;}
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 .frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container .frm_primary_label,.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container .frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container .frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_none_container .frm_primary_label,.with_frm_style .frm_pos_none,.frm_pos_none,.frm_none_container .frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container .frm_primary_label{visibility:hidden;white-space:nowrap;}.with_frm_style .frm_inside_container .frm_primary_label{opacity:0;transition: opacity 0.1s linear;}.with_frm_style .frm_inside_container label.frm_visible,.frm_visible{opacity:1;}.with_frm_style .frm_description{clear:both;}.with_frm_style input[type=number][readonly]{-moz-appearance: textfield;}.with_frm_style select[multiple="multiple"]{height:auto;line-height:normal;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style textarea{height:auto;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none;border:1px solid #eee;padding:5px;display:inline;}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field,.frm_inline_form .frm_submit{grid-column: span 1 / span 1;}.frm_inline_form .frm_submit{margin:0;}.frm_submit.frm_inline_submit input[type=submit],.frm_submit.frm_inline_submit button,.frm_inline_form .frm_submit input[type=submit],.frm_inline_form .frm_submit button{margin-top:0;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style.frm_center_submit .frm_submit input[type=submit],.with_frm_style.frm_center_submit .frm_submit input[type=button],.with_frm_style.frm_center_submit .frm_submit button{margin-bottom:8px !important;}.with_frm_style .frm_submit input[type=submit],.with_frm_style .frm_submit input[type=button],.with_frm_style .frm_submit button{-webkit-appearance: none;cursor: pointer;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.with_frm_style .frm_loading_form .frm_ajax_loading{visibility:visible !important;}.with_frm_style .frm_loading_form .frm_button_submit {position: relative;opacity: .8;color: transparent !important;text-shadow: none !important;}.with_frm_style .frm_loading_form .frm_button_submit:hover,.with_frm_style .frm_loading_form .frm_button_submit:active,.with_frm_style .frm_loading_form .frm_button_submit:focus {cursor: not-allowed;color: transparent;outline: none !important;box-shadow: none;}.with_frm_style .frm_loading_form .frm_button_submit:before {content: '';display: inline-block;position: absolute;background: transparent;border: 1px solid #fff;border-top-color: transparent;border-left-color: transparent;border-radius: 50%;box-sizing: border-box;top: 50%;left: 50%;margin-top: -10px;margin-left: -10px;width: 20px;height: 20px;-webkit-animation: spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation: spin 2s linear infinite;animation: spin 2s linear infinite;}.frm_forms.frm_style_candy-cane.with_frm_style{max-width:80% !important;direction:ltr !important;margin:0 auto;}.frm_style_candy-cane.with_frm_style,.frm_style_candy-cane.with_frm_style form,.frm_style_candy-cane.with_frm_style .frm-show-form div.frm_description p {text-align:left !important;}.frm_inline_form.frm_style_candy-cane.with_frm_style form{text-align:center;}.frm_style_candy-cane.with_frm_style .frm_form_fields > fieldset{border-width:6px !important;border-style:solid;border-color:#fb32e4 !important;margin:0;padding:10px 25px 5px 25px !important;background-color:#fccff7;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_candy-cane.with_frm_style legend + h3,.frm_style_candy-cane.with_frm_style h3.frm_form_title{font-size:20px !important;color:#000 !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px !important;margin-bottom:10px !important;}.frm_style_candy-cane.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#555 !important;font-weight:bold !important;text-align:left !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_container,.frm_style_candy-cane.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;color:#000 !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_container{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .frm_form_field .frm_show_it{font-size:14px !important;font-weight:normal;}.frm_style_candy-cane.with_frm_style .frm_icon_font{color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e633";}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e632";}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#000 !important;vertical-align:middle;}.frm_style_candy-cane.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e635";color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e634";color:#555 !important;}.frm_style_candy-cane.with_frm_style .form-field{margin-bottom:20px !important;}.frm_style_candy-cane.with_frm_style .frm_grid,.frm_style_candy-cane.with_frm_style .frm_grid_first,.frm_style_candy-cane.with_frm_style .frm_grid_odd {margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style .form-field.frm_section_heading{margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style p.description,.frm_style_candy-cane.with_frm_style div.description,.frm_style_candy-cane.with_frm_style div.frm_description,.frm_style_candy-cane.with_frm_style .frm-show-form > div.frm_description,.frm_style_candy-cane.with_frm_style .frm_error{margin:0 !important;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:12px !important;color:#777 !important;font-weight:normal !important;text-align:left !important;font-style:normal !important;max-width:100%;}.frm_style_candy-cane.with_frm_style .frm-show-form div.frm_description p{font-size:14px !important;color:#000 !important;margin-top:10px !important;margin-bottom:25px !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_candy-cane.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_candy-cane.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.frm_style_candy-cane.with_frm_style .frm_pos_right{display:inline !important;width:150px !important;}.frm_style_candy-cane.with_frm_style .frm_none_container .frm_primary_label,.frm_style_candy-cane.with_frm_style .frm_pos_none{display:none !important;}.frm_style_candy-cane.with_frm_style .frm_scale label{font-weight:normal !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_required{color:#555 !important;font-weight:bold !important;}.frm_style_candy-cane.with_frm_style input[type=text],.frm_style_candy-cane.with_frm_style input[type=password],.frm_style_candy-cane.with_frm_style input[type=email],.frm_style_candy-cane.with_frm_style input[type=number],.frm_style_candy-cane.with_frm_style input[type=url],.frm_style_candy-cane.with_frm_style input[type=tel],.frm_style_candy-cane.with_frm_style input[type=search],.frm_style_candy-cane.with_frm_style select,.frm_style_candy-cane.with_frm_style textarea,.frm_style_candy-cane.with_frm_style .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=radio],.frm_style_candy-cane.with_frm_style input[type=checkbox]{border-color: #fb32e4 !important;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset !important;}.frm_style_candy-cane.with_frm_style input[type=text],.frm_style_candy-cane.with_frm_style input[type=password],.frm_style_candy-cane.with_frm_style input[type=email],.frm_style_candy-cane.with_frm_style input[type=number],.frm_style_candy-cane.with_frm_style input[type=url],.frm_style_candy-cane.with_frm_style input[type=tel],.frm_style_candy-cane.with_frm_style input[type=file],.frm_style_candy-cane.with_frm_style input[type=search],.frm_style_candy-cane.with_frm_style select{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_html_container.frm_scroll_box,.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff !important;border-color: #fb32e4 !important;border-width:4px !important;border-style:dashed !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;font-size:14px !important;padding:6px 10px !important;outline:none !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_total input,.frm_style_candy-cane.with_frm_style .frm_form_field.frm_total textarea{color: #555 !important;background-color:transparent !important;border:none !important;display:inline !important;width:auto !important;padding:0 !important;}.frm_style_candy-cane.with_frm_style .frm_button{padding:6px 11px !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;font-size:14px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-weight:bold !important;color:#000 !important;background: #fccff7 !important;border-width:4px;border-color: #fb32e4 !important;height:auto !important;}.frm_style_candy-cane.with_frm_style .frm_button .frm_icon_font:before{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone{border-color: #fb32e4 !important;border-radius:5px !important;color: #555 !important;background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-remove{color: #555 !important;}.frm_style_candy-cane.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #000 !important;}.frm_style_candy-cane.with_frm_style .frm_blank_field .frm_dropzone{border-color:#ff1914 !important;color:#555 !important;background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2 !important;}.frm_style_candy-cane.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555 !important;background-color:#ffffff !important;padding:6px 10px !important;border-radius:5px !important;border-color: #fb32e4 !important;border-width:4px !important;border-style:dashed !important;}.frm_style_candy-cane.with_frm_style .chosen-container{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .chosen-container .chosen-results li,.frm_style_candy-cane.with_frm_style .chosen-container .chosen-results li span{color:#555 !important;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px !important;line-height:32px !important;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single div{top:3px !important;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_candy-cane.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px !important;}.frm_style_candy-cane.with_frm_style .frm_page_bar input,.frm_style_candy-cane.with_frm_style .frm_page_bar input:disabled{color: #ffffff !important;background-color: #dddddd !important;border-color: #dfdfdf !important;border-width: 2px !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd !important;border-color: #dfdfdf !important;opacity:1 !important;}.frm_style_candy-cane.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_rootline_title,.frm_style_candy-cane.with_frm_style .frm_pages_complete,.frm_style_candy-cane.with_frm_style .frm_percent_complete{color: #777 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input,.frm_style_candy-cane.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff !important;border-right-color: #ffffff !important;border-left-width: 1px !important;border-right-width: 1px !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2 !important;border-right-color: #ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf !important;border-top-width: 2px !important;top: 15px;}.frm_style_candy-cane.with_frm_style .frm_rootline input,.frm_style_candy-cane.with_frm_style .frm_rootline input:hover {width: 30px !important;height: 30px !important;border-radius: 30px !important;padding: 0 !important;}.frm_style_candy-cane.with_frm_style .frm_rootline input:focus {border-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae !important;background-color: #008ec2 !important;color: #ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input,.frm_style_candy-cane.with_frm_style .frm_progress_line input:disabled,.frm_style_candy-cane.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_candy-cane.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_candy-cane.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_candy-cane.with_frm_style .frm_range_value{font-size:14px;}.frm_style_candy-cane.with_frm_style .form-field input[type=range],.frm_style_candy-cane.with_frm_style .form-field input[type=range]:focus {padding:0 !important;background:transparent !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc !important;border-radius:5px !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff !important;background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff !important;background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff !important;background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_switch_opt{font-size:14px !important;font-weight:normal !important;}.frm_style_candy-cane.with_frm_style .frm_on_label{color:#008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_off_label{color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_slider {background-color:#cccccc !important;}.frm_style_candy-cane.with_frm_style input:checked + .frm_slider {background-color:#008ec2 !important;}.frm_style_candy-cane.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto !important;}.frm_style_candy-cane.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_candy-cane.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_candy-cane.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block !important;}.frm_style_candy-cane.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 !important;margin-top:8px;}.frm_style_candy-cane.with_frm_style span.frm-pass-verified::before {color:#555 !important;}.frm_style_candy-cane.with_frm_style span.frm-pass-req::before {color:#fff !important;}.frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0 !important;margin:0 !important;font-size:18px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold !important;color:#555 !important;border:none !important;border-top:2px solid #e8e8e8 !important;background-color:transparent !important}.frm_style_candy-cane.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_candy-cane.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_candy-cane.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_candy-cane.with_frm_style .frm_section_heading{margin-top:15px !important;}.frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px !important;}.frm_style_candy-cane.with_frm_style .frm_repeat_sec{margin-bottom:20px !important;margin-top:20px !important;border-bottom:2px solid #e8e8e8 !important;}@media only screen and (max-width: 600px){.frm_style_candy-cane.with_frm_style .frm_repeat_inline,.frm_style_candy-cane.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_formidable-style.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style.with_frm_style,.frm_style_formidable-style.with_frm_style form,.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_formidable-style.with_frm_style legend + h3,.frm_style_formidable-style.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_style_formidable-style.with_frm_style .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=radio],.frm_style_formidable-style.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=file],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select{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:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style .frm_submit button:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_formidable-style.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_radio label,.frm_style_formidable-style.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style.with_frm_style .frm_blank_field label,.frm_style_formidable-style.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_html_container.frm_scroll_box,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_formidable-style.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_formidable-style.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_formidable-style.with_frm_style .frm_page_bar input,.frm_style_formidable-style.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline_title,.frm_style_formidable-style.with_frm_style .frm_pages_complete,.frm_style_formidable-style.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style.with_frm_style .frm_rootline input,.frm_style_formidable-style.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_formidable-style.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style.with_frm_style .form-field input[type=range],.frm_style_formidable-style.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_formidable-style.with_frm_style .frm_repeat_inline,.frm_style_formidable-style.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_left-labels.with_frm_style{max-width:100%;direction:ltr;}.frm_style_left-labels.with_frm_style,.frm_style_left-labels.with_frm_style form,.frm_style_left-labels.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_left-labels.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_left-labels.with_frm_style legend + h3,.frm_style_left-labels.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_left-labels.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_container,.frm_style_left-labels.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_left-labels.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_left-labels.with_frm_style .frm_icon_font{color:#444444;}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_left-labels.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_left-labels.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_left-labels.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_left-labels.with_frm_style .form-field{margin-bottom:20px;}.frm_style_left-labels.with_frm_style .frm_grid,.frm_style_left-labels.with_frm_style .frm_grid_first,.frm_style_left-labels.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_left-labels.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_left-labels.with_frm_style p.description,.frm_style_left-labels.with_frm_style div.description,.frm_style_left-labels.with_frm_style div.frm_description,.frm_style_left-labels.with_frm_style .frm-show-form > div.frm_description,.frm_style_left-labels.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_left-labels.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_left-labels.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_left-labels.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_left-labels.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_left-labels.with_frm_style .frm_none_container .frm_primary_label,.frm_style_left-labels.with_frm_style .frm_pos_none{display:none;}.frm_style_left-labels.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_left-labels.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_left-labels.with_frm_style input[type=text],.frm_style_left-labels.with_frm_style input[type=password],.frm_style_left-labels.with_frm_style input[type=email],.frm_style_left-labels.with_frm_style input[type=number],.frm_style_left-labels.with_frm_style input[type=url],.frm_style_left-labels.with_frm_style input[type=tel],.frm_style_left-labels.with_frm_style input[type=search],.frm_style_left-labels.with_frm_style select,.frm_style_left-labels.with_frm_style textarea,.frm_style_left-labels.with_frm_style .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=radio],.frm_style_left-labels.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_left-labels.with_frm_style input[type=text],.frm_style_left-labels.with_frm_style input[type=password],.frm_style_left-labels.with_frm_style input[type=email],.frm_style_left-labels.with_frm_style input[type=number],.frm_style_left-labels.with_frm_style input[type=url],.frm_style_left-labels.with_frm_style input[type=tel],.frm_style_left-labels.with_frm_style input[type=file],.frm_style_left-labels.with_frm_style input[type=search],.frm_style_left-labels.with_frm_style select{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_html_container.frm_scroll_box,.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_total input,.frm_style_left-labels.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_left-labels.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_left-labels.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_left-labels.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_left-labels.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_left-labels.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_left-labels.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_left-labels.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_left-labels.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_left-labels.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_left-labels.with_frm_style .chosen-container{font-size:14px;}.frm_style_left-labels.with_frm_style .chosen-container .chosen-results li,.frm_style_left-labels.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_left-labels.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_left-labels.with_frm_style .frm_page_bar input,.frm_style_left-labels.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_left-labels.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_left-labels.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_rootline_title,.frm_style_left-labels.with_frm_style .frm_pages_complete,.frm_style_left-labels.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_left-labels.with_frm_style .frm_progress_line input,.frm_style_left-labels.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_left-labels.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_left-labels.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_left-labels.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_left-labels.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_left-labels.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_left-labels.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_left-labels.with_frm_style .frm_rootline input,.frm_style_left-labels.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_left-labels.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_left-labels.with_frm_style .frm_progress_line input,.frm_style_left-labels.with_frm_style .frm_progress_line input:disabled,.frm_style_left-labels.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_left-labels.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_left-labels.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_left-labels.with_frm_style .frm_range_value{font-size:14px;}.frm_style_left-labels.with_frm_style .form-field input[type=range],.frm_style_left-labels.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_left-labels.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_left-labels.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_left-labels.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_left-labels.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_left-labels.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_left-labels.with_frm_style .frm_off_label{color:#444444;}.frm_style_left-labels.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_left-labels.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_left-labels.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_left-labels.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_left-labels.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_left-labels.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_left-labels.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_left-labels.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_left-labels.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_left-labels.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_left-labels.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_left-labels.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_left-labels.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_left-labels.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_left-labels.with_frm_style .frm_repeat_inline,.frm_style_left-labels.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_lines.with_frm_style{max-width:100%;direction:ltr;}.frm_style_lines.with_frm_style,.frm_style_lines.with_frm_style form,.frm_style_lines.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_lines.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_lines.with_frm_style legend + h3,.frm_style_lines.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_lines.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#444444;font-weight:normal;text-align:left;margin:0;padding:0;width:auto;display:block;}.frm_style_lines.with_frm_style .frm_form_field.frm_html_container,.frm_style_lines.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_lines.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_lines.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_lines.with_frm_style .frm_icon_font{color:#444444;}.frm_style_lines.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_lines.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_lines.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_lines.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_lines.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_lines.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_lines.with_frm_style .form-field{margin-bottom:20px;}.frm_style_lines.with_frm_style .frm_grid,.frm_style_lines.with_frm_style .frm_grid_first,.frm_style_lines.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_lines.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_lines.with_frm_style p.description,.frm_style_lines.with_frm_style div.description,.frm_style_lines.with_frm_style div.frm_description,.frm_style_lines.with_frm_style .frm-show-form > div.frm_description,.frm_style_lines.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_lines.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_lines.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_lines.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_lines.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_lines.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_lines.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_lines.with_frm_style .frm_none_container .frm_primary_label,.frm_style_lines.with_frm_style .frm_pos_none{display:none;}.frm_style_lines.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_lines.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_lines.with_frm_style input[type=text],.frm_style_lines.with_frm_style input[type=password],.frm_style_lines.with_frm_style input[type=email],.frm_style_lines.with_frm_style input[type=number],.frm_style_lines.with_frm_style input[type=url],.frm_style_lines.with_frm_style input[type=tel],.frm_style_lines.with_frm_style input[type=search],.frm_style_lines.with_frm_style select,.frm_style_lines.with_frm_style textarea,.frm_style_lines.with_frm_style .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=radio],.frm_style_lines.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:none;}.frm_style_lines.with_frm_style input[type=text],.frm_style_lines.with_frm_style input[type=password],.frm_style_lines.with_frm_style input[type=email],.frm_style_lines.with_frm_style input[type=number],.frm_style_lines.with_frm_style input[type=url],.frm_style_lines.with_frm_style input[type=tel],.frm_style_lines.with_frm_style input[type=file],.frm_style_lines.with_frm_style input[type=search],.frm_style_lines.with_frm_style select{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_html_container.frm_scroll_box,.frm_style_lines.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:0 0 1px;border-style:solid;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;width:100%;font-size:14px;padding:3px 0px;outline:none;}.frm_style_lines.with_frm_style .frm_form_field.frm_total input,.frm_style_lines.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_lines.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_lines.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_lines.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:0;color: #555555;background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_lines.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_lines.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_lines.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_lines.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_lines.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_lines.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:3px 0px;border-radius:0;border-color: #cccccc;border-width:0 0 1px;border-style:solid;}.frm_style_lines.with_frm_style .chosen-container{font-size:14px;}.frm_style_lines.with_frm_style .chosen-container .chosen-results li,.frm_style_lines.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-single abbr{top:7px ;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-single div{top:1.5px;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_lines.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_lines.with_frm_style .frm_page_bar input,.frm_style_lines.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_lines.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_lines.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_lines.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_lines.with_frm_style .frm_rootline_title,.frm_style_lines.with_frm_style .frm_pages_complete,.frm_style_lines.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_lines.with_frm_style .frm_progress_line input,.frm_style_lines.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_lines.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_lines.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_lines.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_lines.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_lines.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_lines.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_lines.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_lines.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_lines.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_lines.with_frm_style .frm_rootline input,.frm_style_lines.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_lines.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_lines.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_lines.with_frm_style .frm_progress_line input,.frm_style_lines.with_frm_style .frm_progress_line input:disabled,.frm_style_lines.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_lines.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_lines.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_lines.with_frm_style .frm_range_value{font-size:14px;}.frm_style_lines.with_frm_style .form-field input[type=range],.frm_style_lines.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_lines.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:0;}.frm_style_lines.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_lines.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_lines.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_lines.with_frm_style .frm_switch_opt{font-size:12px;font-weight:normal;}.frm_style_lines.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_lines.with_frm_style .frm_off_label{color:#444444;}.frm_style_lines.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_lines.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_lines.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_lines.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_lines.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_lines.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_lines.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_lines.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_lines.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_lines.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_lines.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_lines.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_lines.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_lines.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_lines.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_lines.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_lines.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_lines.with_frm_style .frm_repeat_inline,.frm_style_lines.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_rtl.with_frm_style{max-width:100%;direction:rtl;unicode-bidi:embed;}.frm_style_rtl.with_frm_style,.frm_style_rtl.with_frm_style form,.frm_style_rtl.with_frm_style .frm-show-form div.frm_description p {text-align:right;}.frm_style_rtl.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_rtl.with_frm_style legend + h3,.frm_style_rtl.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_rtl.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:right;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_rtl.with_frm_style .frm_form_field.frm_html_container,.frm_style_rtl.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_rtl.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_rtl.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_rtl.with_frm_style .frm_icon_font{color:#444444;}.frm_style_rtl.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_rtl.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_rtl.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_rtl.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_rtl.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_rtl.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_rtl.with_frm_style .form-field{margin-bottom:20px;}.frm_style_rtl.with_frm_style .frm_grid,.frm_style_rtl.with_frm_style .frm_grid_first,.frm_style_rtl.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_rtl.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_rtl.with_frm_style p.description,.frm_style_rtl.with_frm_style div.description,.frm_style_rtl.with_frm_style div.frm_description,.frm_style_rtl.with_frm_style .frm-show-form > div.frm_description,.frm_style_rtl.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_rtl.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_rtl.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_rtl.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_rtl.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_rtl.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_rtl.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_rtl.with_frm_style .frm_none_container .frm_primary_label,.frm_style_rtl.with_frm_style .frm_pos_none{display:none;}.frm_style_rtl.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_rtl.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_rtl.with_frm_style input[type=text],.frm_style_rtl.with_frm_style input[type=password],.frm_style_rtl.with_frm_style input[type=email],.frm_style_rtl.with_frm_style input[type=number],.frm_style_rtl.with_frm_style input[type=url],.frm_style_rtl.with_frm_style input[type=tel],.frm_style_rtl.with_frm_style input[type=search],.frm_style_rtl.with_frm_style select,.frm_style_rtl.with_frm_style textarea,.frm_style_rtl.with_frm_style .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=radio],.frm_style_rtl.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_rtl.with_frm_style input[type=text],.frm_style_rtl.with_frm_style input[type=password],.frm_style_rtl.with_frm_style input[type=email],.frm_style_rtl.with_frm_style input[type=number],.frm_style_rtl.with_frm_style input[type=url],.frm_style_rtl.with_frm_style input[type=tel],.frm_style_rtl.with_frm_style input[type=file],.frm_style_rtl.with_frm_style input[type=search],.frm_style_rtl.with_frm_style select{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_html_container.frm_scroll_box,.frm_style_rtl.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_rtl.with_frm_style .frm_form_field.frm_total input,.frm_style_rtl.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_rtl.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_rtl.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_rtl.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_rtl.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_rtl.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_rtl.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_rtl.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_rtl.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_rtl.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_rtl.with_frm_style .chosen-container{font-size:14px;}.frm_style_rtl.with_frm_style .chosen-container .chosen-results li,.frm_style_rtl.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_rtl.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_rtl.with_frm_style .frm_page_bar input,.frm_style_rtl.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_rtl.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_rtl.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_rtl.with_frm_style .frm_rootline_title,.frm_style_rtl.with_frm_style .frm_pages_complete,.frm_style_rtl.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_rtl.with_frm_style .frm_progress_line input,.frm_style_rtl.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_rtl.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_rtl.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_rtl.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_rtl.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_rtl.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_rtl.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_rtl.with_frm_style .frm_rootline input,.frm_style_rtl.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_rtl.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_rtl.with_frm_style .frm_progress_line input,.frm_style_rtl.with_frm_style .frm_progress_line input:disabled,.frm_style_rtl.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_rtl.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_rtl.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_rtl.with_frm_style .frm_range_value{font-size:14px;}.frm_style_rtl.with_frm_style .form-field input[type=range],.frm_style_rtl.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_rtl.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_rtl.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_rtl.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_rtl.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_rtl.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_rtl.with_frm_style .frm_off_label{color:#444444;}.frm_style_rtl.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_rtl.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_rtl.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_rtl.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_rtl.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_rtl.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_rtl.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_rtl.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_rtl.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_rtl.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_rtl.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_rtl.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_rtl.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_rtl.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_rtl.with_frm_style .frm_repeat_inline,.frm_style_rtl.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_true-blue.with_frm_style{max-width:80% !important;direction:ltr !important;margin:0 auto;}.frm_style_true-blue.with_frm_style,.frm_style_true-blue.with_frm_style form,.frm_style_true-blue.with_frm_style .frm-show-form div.frm_description p {text-align:left !important;}.frm_inline_form.frm_style_true-blue.with_frm_style form{text-align:center;}.frm_style_true-blue.with_frm_style .frm_form_fields > fieldset{border-width:9px !important;border-style:solid;border-color:#14568a !important;margin:0;padding:10px 25px 5px 25px !important;background-color:#6fa3e7;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_true-blue.with_frm_style legend + h3,.frm_style_true-blue.with_frm_style h3.frm_form_title{font-size:20px !important;color:#fff !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px !important;margin-bottom:10px !important;}.frm_style_true-blue.with_frm_style .frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#fff !important;font-weight:bold !important;text-align:left !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_container,.frm_style_true-blue.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_container{font-size:14px !important;}.frm_style_true-blue.with_frm_style .frm_form_field .frm_show_it{font-size:14px !important;font-weight:normal;}.frm_style_true-blue.with_frm_style .frm_icon_font{color:#fff !important;}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e633";}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e632";}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_true-blue.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff !important;vertical-align:middle;}.frm_style_true-blue.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e60e";color:#fff !important;}.frm_style_true-blue.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e60c";color:#fff !important;}.frm_style_true-blue.with_frm_style .form-field{margin-bottom:20px !important;}.frm_style_true-blue.with_frm_style .frm_grid,.frm_style_true-blue.with_frm_style .frm_grid_first,.frm_style_true-blue.with_frm_style .frm_grid_odd {margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style .form-field.frm_section_heading{margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style p.description,.frm_style_true-blue.with_frm_style div.description,.frm_style_true-blue.with_frm_style div.frm_description,.frm_style_true-blue.with_frm_style .frm-show-form > div.frm_description,.frm_style_true-blue.with_frm_style .frm_error{margin:0 !important;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:12px !important;color:#ffffff !important;font-weight:normal !important;text-align:left !important;font-style:normal !important;max-width:100%;}.frm_style_true-blue.with_frm_style .frm-show-form div.frm_description p{font-size:14px !important;color:#ffffff !important;margin-top:10px !important;margin-bottom:25px !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_true-blue.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_true-blue.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.frm_style_true-blue.with_frm_style .frm_pos_right{display:inline !important;width:150px !important;}.frm_style_true-blue.with_frm_style .frm_none_container .frm_primary_label,.frm_style_true-blue.with_frm_style .frm_pos_none{display:none !important;}.frm_style_true-blue.with_frm_style .frm_scale label{font-weight:normal !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_required{color:#fff !important;font-weight:bold !important;}.frm_style_true-blue.with_frm_style input[type=text],.frm_style_true-blue.with_frm_style input[type=password],.frm_style_true-blue.with_frm_style input[type=email],.frm_style_true-blue.with_frm_style input[type=number],.frm_style_true-blue.with_frm_style input[type=url],.frm_style_true-blue.with_frm_style input[type=tel],.frm_style_true-blue.with_frm_style input[type=search],.frm_style_true-blue.with_frm_style select,.frm_style_true-blue.with_frm_style textarea,.frm_style_true-blue.with_frm_style .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=radio],.frm_style_true-blue.with_frm_style input[type=checkbox]{border-color: #093b63 !important;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset !important;}.frm_style_true-blue.with_frm_style input[type=text],.frm_style_true-blue.with_frm_style input[type=password],.frm_style_true-blue.with_frm_style input[type=email],.frm_style_true-blue.with_frm_style input[type=number],.frm_style_true-blue.with_frm_style input[type=url],.frm_style_true-blue.with_frm_style input[type=tel],.frm_style_true-blue.with_frm_style input[type=file],.frm_style_true-blue.with_frm_style input[type=search],.frm_style_true-blue.with_frm_style select{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_html_container.frm_scroll_box,.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff !important;border-color: #093b63 !important;border-width:2px !important;border-style:solid !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;font-size:14px !important;padding:6px 10px !important;outline:none !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_total input,.frm_style_true-blue.with_frm_style .frm_form_field.frm_total textarea{color: #14568a !important;background-color:transparent !important;border:none !important;display:inline !important;width:auto !important;padding:0 !important;}.frm_style_true-blue.with_frm_style .frm_button{padding:6px 11px !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;font-size:14px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-weight:normal !important;color:#ffffff !important;background: #14568a !important;border-width:2px;border-color: #093b63 !important;height:auto !important;}.frm_style_true-blue.with_frm_style .frm_button .frm_icon_font:before{font-size:14px !important;}.frm_style_true-blue.with_frm_style .frm_dropzone{border-color: #093b63 !important;border-radius:5px !important;color: #14568a !important;background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_true-blue.with_frm_style .frm_dropzone .dz-remove{color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48 !important;color:#14568a !important;background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_true-blue.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #14568a !important;}.frm_style_true-blue.with_frm_style input[type=file]::-webkit-file-upload-button{color:#14568a !important;background-color:#ffffff !important;padding:6px 10px !important;border-radius:5px !important;border-color: #093b63 !important;border-width:2px !important;border-style:solid !important;}.frm_style_true-blue.with_frm_style .chosen-container{font-size:14px !important;}.frm_style_true-blue.with_frm_style .chosen-container .chosen-results li,.frm_style_true-blue.with_frm_style .chosen-container .chosen-results li span{color:#14568a !important;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px !important;line-height:32px !important;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single div{top:3px !important;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_true-blue.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px !important;}.frm_style_true-blue.with_frm_style .frm_page_bar input,.frm_style_true-blue.with_frm_style .frm_page_bar input:disabled{color: #dfdfdf !important;background-color: #ffffff !important;border-color: #dfdfdf !important;border-width: 2px !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input.frm_page_back{background-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #ffffff !important;border-color: #dfdfdf !important;opacity:1 !important;}.frm_style_true-blue.with_frm_style .frm_current_page .frm_rootline_title{color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_rootline_title,.frm_style_true-blue.with_frm_style .frm_pages_complete,.frm_style_true-blue.with_frm_style .frm_percent_complete{color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input,.frm_style_true-blue.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #dfdfdf !important;border-right-color: #dfdfdf !important;border-left-width: 1px !important;border-right-width: 1px !important;}.frm_style_true-blue.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input.frm_page_back {border-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #14568a !important;border-right-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf !important;border-top-width: 2px !important;top: 20px;}.frm_style_true-blue.with_frm_style .frm_rootline input,.frm_style_true-blue.with_frm_style .frm_rootline input:hover {width: 40px !important;height: 40px !important;border-radius: 40px !important;padding: 0 !important;}.frm_style_true-blue.with_frm_style .frm_rootline input:focus {border-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #004276 !important;background-color: #14568a !important;color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input,.frm_style_true-blue.with_frm_style .frm_progress_line input:disabled,.frm_style_true-blue.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_true-blue.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_true-blue.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_true-blue.with_frm_style .frm_range_value{font-size:14px;}.frm_style_true-blue.with_frm_style .form-field input[type=range],.frm_style_true-blue.with_frm_style .form-field input[type=range]:focus {padding:0 !important;background:transparent !important;}.frm_style_true-blue.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#093b63 !important;border-radius:5px !important;}.frm_style_true-blue.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(20,86,138,0.6);color:#ffffff !important;background-color: #14568a !important;}.frm_style_true-blue.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(20,86,138,0.6);color:#ffffff !important;background-color: #14568a !important;}.frm_style_true-blue.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(20,86,138,0.6);color:#ffffff !important;background-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_switch_opt{font-size:14px !important;font-weight:normal !important;}.frm_style_true-blue.with_frm_style .frm_on_label{color:#14568a !important;}.frm_style_true-blue.with_frm_style .frm_off_label{color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_slider {background-color:#093b63 !important;}.frm_style_true-blue.with_frm_style input:checked + .frm_slider {background-color:#14568a !important;}.frm_style_true-blue.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto !important;}.frm_style_true-blue.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_true-blue.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_true-blue.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block !important;}.frm_style_true-blue.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 !important;margin-top:8px;}.frm_style_true-blue.with_frm_style span.frm-pass-verified::before {color:#fff !important;}.frm_style_true-blue.with_frm_style span.frm-pass-req::before {color:#fff !important;}.frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0 !important;margin:0 !important;font-size:18px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold !important;color:#fff !important;border:none !important;border-top:2px solid #e8e8e8 !important;background-color:transparent !important}.frm_style_true-blue.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_true-blue.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_true-blue.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_true-blue.with_frm_style .frm_section_heading{margin-top:15px !important;}.frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px !important;}.frm_style_true-blue.with_frm_style .frm_repeat_sec{margin-bottom:20px !important;margin-top:20px !important;border-bottom:2px solid #e8e8e8 !important;}@media only screen and (max-width: 600px){.frm_style_true-blue.with_frm_style .frm_repeat_inline,.frm_style_true-blue.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_ajax_loading{visibility:hidden;width:auto;}.frm_form_submit_style{height:auto;}a.frm_save_draft{cursor:pointer;}.horizontal_radio .frm_radio{margin:0 5px 0 0;}.horizontal_radio .frm_checkbox{margin:0;margin-right:5px;}.vertical_radio .frm_checkbox,.vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.horizontal_radio .frm_checkbox,.horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.with_frm_style .frm_checkbox label,.with_frm_style .frm_radio label{display: inline;white-space:normal;}.with_frm_style .vertical_radio .frm_checkbox label,.with_frm_style .vertical_radio .frm_radio label{display: block;padding-left: 20px;text-indent: -20px;}.frm_file_container .frm_file_link,.with_frm_style .frm_radio label .frm_file_container,.with_frm_style .frm_checkbox label .frm_file_container{display:inline-block;margin:5px;vertical-align:middle;}.with_frm_style .frm_radio input[type=radio]{-webkit-appearance:radio;border-radius:50%;}.with_frm_style .frm_checkbox input[type=checkbox]{-webkit-appearance:checkbox;border-radius:0;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{flex: none;display:inline-block;margin:4px 5px 0 0;width:auto;border:none;vertical-align:baseline;position: initial; }.with_frm_style :invalid,.with_frm_style :-moz-submit-invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:15px;}.with_frm_style .frm_message p{margin-bottom:5px;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-top:none;border-left:none;border-right:none;}.frm-alt-table {width:100%;border-collapse:collapse;margin-top:0.5em;font-size:15px;}.frm-alt-table th {width:200px;}.frm-alt-table tr {background-color:transparent;}.frm-alt-table th,.frm-alt-table td {background-color:transparent;vertical-align:top;text-align:left;padding:20px;}.frm-alt-table tr:nth-child(even) {background-color:#f9f9f9;}table.form_results.with_frm_style{border:1px solid #ccc;}table.form_results.with_frm_style tr td{text-align:left;color:#555555;padding:7px 9px;border-top:1px solid #cccccc;}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd{background-color:#f9f9f9;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar{background-color:#ffffff;box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;float:left;height:100%;line-height:20px;text-align:center;transition:width 0.6s ease 0s;width:100%;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(../images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}select.frm_loading_lookup{background-image: url(../images/ajax_loader.gif) !important;background-position: 10px;background-repeat: no-repeat;color: transparent !important;}.frm_screen_reader {border: 0;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;word-wrap: normal !important; }.frm_screen_reader.frm_hidden{display:initial;}.frm_clear_none{clear:none;}.frm_clear{clear:both;}.frm_form_field.frm_alignright{float:right !important;}.with_frm_style .frm_form_field{clear:both;}.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container{display:grid;grid-template-columns: repeat(12, 6.5%);grid-auto-rows: max-content;grid-gap: 0 2%;}.frm_combo_inputs_container > *,.frm_grid_container > *,.frm_section_heading > *,.frm_fields_container .frm_form_field,.frm_fields_container > *{grid-column: span 12 / span 12;}.frm_inline,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;grid-column: span 2 / span 2;}.frm6,.frm_half,.frm_form_field.frm_three_fifths, .frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{grid-column:span 6 / span 6;}.frm4,.frm_third,.frm_form_field.frm_two_fifths, .frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{grid-column:span 4 / span 4;}.frm8,.frm_two_thirds,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{grid-column: span 8/span 8;}.frm3,.frm_fourth,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{grid-column: span 3/span 3;}.frm9,.frm_three_fourths,.frm_form_field.frm_four_fifths, .frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm_three_fourths{grid-column: span 9/span 9;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{grid-column: span 2/span 2;}.frm2,.frm_sixth,.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{grid-column: span 2/span 2;}.frm10,.frm_form_field.frm10,.frm_submit.frm10{grid-column: span 10/span 10;}.frm1,.frm_form_field.frm1,.frm_submit.frm1,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{grid-column: span 1/span 1;}.frm5,.frm_form_field.frm5,.frm_submit.frm5{grid-column: span 5/span 5;}.frm7,.frm_form_field.frm7,.frm_submit.frm7{grid-column: span 7/span 7;}.frm11,.frm_form_field.frm11,.frm_submit.frm11{grid-column: span 11/span 11;}.frm12,.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type='checkbox']):not([type='radio']):not([type='button']),.frm_full select,.frm_full textarea{width:100% !important;grid-column: span 12/span 12;box-sizing: border-box;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_first,.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{grid-column-start:1;}.frm_last,.frm_form_field.frm_last,.frm_form_field.frm_alignright{grid-column-end:-1;grid-row-start: span 100;justify-content: end;}.with_frm_style.frm_rtl .frm_form_fields .star-rating{float:right;}.with_frm_style.frm_rtl .frm_grid .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_first .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_odd .frm_primary_label,.with_frm_style.frm_rtl .frm_grid .frm_radio,.with_frm_style.frm_rtl .frm_grid_first .frm_radio,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio,.with_frm_style.frm_rtl .frm_grid .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox{float:right !important;margin-right:0 !important;}.with_frm_style.frm_rtl .frm_grid_first .frm_radio label input,.with_frm_style.frm_rtl .frm_grid .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox label input{float:left;}.with_frm_style.frm_rtl .frm_catlevel_2,.with_frm_style.frm_rtl .frm_catlevel_3,.with_frm_style.frm_rtl .frm_catlevel_4,.with_frm_style.frm_rtl .frm_catlevel_5{margin-right:18px;}.with_frm_style.frm_rtl div > .frm_time_select{margin-right:5px;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display: grid;grid-template-columns: 25% auto;width:100%;grid-auto-rows: min-content;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_form_field.frm_inline_container{grid-template-columns: repeat(2, minmax(auto, max-content) );}.frm_form_field.frm_inline_container .frm_primary_label,.frm_form_field.frm_right_container .frm_primary_label,.frm_form_field.frm_left_container .frm_primary_label{margin-right:10px;grid-row:span 2/span 2;padding-top:4px;}.frm_form_field.frm_left_container .frm_primary_label{grid-column:1;grid-row:span 2/span 2; }.frm_form_field.frm_right_container .frm_primary_label{grid-column:2;grid-row:1;margin-right:0;margin-left:10px;}.frm_form_field.frm_inline_container .frm_description,.frm_form_field.frm_left_container .frm_description{grid-column:2;}.frm_form_field.frm_right_container .frm_description{grid-column:1;}.frm_conf_field.frm_left_container{grid-template-columns: 67%;}.frm_conf_field.frm_left_container .frm_description{grid-column:1;}.frm-fade-in {-webkit-animation-name: fadeIn;animation-name: fadeIn;-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}@keyframes spin {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}@keyframes fadeIn { 0% {opacity: 0;} 100% {opacity: 1;}}@media only screen and (max-width: 600px) {.frm_section_heading > .frm_form_field,.frm_fields_container > .frm_submit,.frm_grid_container > .frm_form_field,.frm_fields_container > .frm_form_field{grid-column: 1 / span 12 !important;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display:block;}}.frm_conf_field.frm_left_container .frm_primary_label{display:none;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd{background-color:#ffffff;}.frm_grid{background-color:#ffffff;}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{visibility:hidden;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 .frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 .frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 .frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 .frm_primary_label,.frm_grid_7 .frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 .frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 .frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 .frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 .frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 .frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_left_container .frm_opt_container{padding-top:4px;}.with_frm_style .frm_inline_container.frm_grid_first .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display: grid;grid-template-columns: repeat(2, 1fr);grid-auto-rows: max-content;grid-gap: 0 2.5%;}.frm_form_field.frm_three_col .frm_opt_container{grid-template-columns: repeat(3, 1fr);}.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(4, 1fr);}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{grid-column-end: span 1;}.frm_form_field .frm_checkbox,.frm_form_field .frm_checkbox + .frm_checkbox,.frm_form_field .frm_radio,.frm_form_field .frm_radio + .frm_radio{margin-top: 0;margin-bottom: 0;}.frm_form_field.frm_scroll_box .frm_opt_container{height:100px;overflow:auto;}.frm_html_container.frm_scroll_box,.frm_form_field.frm_html_scroll_box{height:100px;overflow:auto;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;-moz-box-shadow:none;-webkit-box-shadow:none;width:auto !important;box-shadow:none !important;display:inline;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.frm_form_field.frm_label_justify .frm_primary_label{text-align:justify !important;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:block;}@font-face {font-family:'s11-fp';src:local('☺'), url('../fonts/s11-fp.woff?v=7') format('woff'), url('../fonts/s11-fp.ttf?v=7') format('truetype'), url('../fonts/s11-fp.svg?v=7') format('svg');font-weight:normal;font-style:normal;}.frmfont,.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;display:inline-block;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-rendering: auto;line-height: 1;-moz-transition: color .1s ease-in-out, opacity .1s ease-in-out;-webkit-transition: color .1s ease-in-out, opacity .1s ease-in-out;transition: color .1s ease-in-out, opacity .1s ease-in-out;font-size: 18px;}i.frmfont,i.frm_icon_font{font-style:normal;font-variant: normal;speak: none;}.frmfont:before,select.frmfont,.frm_icon_font:before,select.frm_icon_font{font-family: 's11-fp' !important;text-align:center;}.frmfont,a.frmfont,.frmfont:hover,a.frmfont:hover.frm_icon_font,a.frm_icon_font,.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;box-shadow:none;}.frmfont:focus,.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frmfont:active,.frm_icon_font:active{outline:none;}.frm_trigger .frm_icon_font{padding:0 5px;}.frm_logo_icon:before {content: "\e601";}.frm_required_icon:before {content: "\e612";}.frm_delete_icon:before {content: "\e610" !important;}.frm_delete_solid_icon:before {content: "\e900";}.frm_move_icon:before {content: "\e61a";}.frm_drag_icon:before {content: "\e93b";}.frm_clear_icon:before {content: "\e60a";}.frm_noclear_icon:before {content: "\e60b";}.frm_duplicate_icon:before {content: "\e61b";}.frm_copy_icon:before {content: "\f0c5";}.frm_clone_solid_icon:before {content: "\f24e";}.frm_clone_icon:before {content: "\f24d";}.frm_tooltip_icon:before {content: "\e611";}.frm_tooltip_solid_icon:before {content: "\e907";}.frm_forbid_icon:before {content: "\e636";}.frm_checkmark_icon:before {content: "\e90a";}.frm_check_icon:before {content: "\e605";}.frm_check1_icon:before {content: "\e606";}.frm_plus_icon:before {content: "\e62f";}.frm_plus1_icon:before {content: "\e602";}.frm_plus2_icon:before {content: "\e603";}.frm_plus3_icon:before {content: "\e632";}.frm_plus4_icon:before {content: "\e60f";}.frm_minus_icon:before {content: "\e62e";}.frm_minus1_icon:before {content: "\e600";}.frm_minus2_icon:before {content: "\e604";}.frm_minus3_icon:before {content: "\e633";}.frm_minus4_icon:before {content: "\e613";}.frm_cancel_icon:before {content: "\e607";}.frm_cancel1_icon:before {content: "\e608";}.frm_close_icon:before {content: "\e928";}.frm_report_problem_solid_icon:before {content: "\e914";}.frm_report_problem_icon:before {content: "\e915";}.frm_arrowup_icon:before {content: "\e60d";}.frm_arrowup1_icon:before {content: "\e60e";}.frm_arrowup2_icon:before {content: "\e630";}.frm_arrowup3_icon:before {content: "\e62b";}.frm_arrowup4_icon:before {content: "\e62c";}.frm_arrowup5_icon:before {content: "\e635";}.frm_arrowup5_solid_icon:before {content: "\e9d";}.frm_arrowup7_icon:before {content: "\e908";}.frm_arrowup6_icon:before {content: "\e62d";}.frm_arrowdown_icon:before {content: "\e609";}.frm_arrowdown1_icon:before {content: "\e60c";}.frm_arrowdown2_icon:before {content: "\e631";}.frm_arrowdown3_icon:before {content: "\e628";}.frm_arrowdown4_icon:before {content: "\e629";}.frm_arrowdown5_icon:before {content: "\e634";}.frm_arrowdown5_solid_icon:before {content: "\e905";}.frm_arrowdown7_icon:before {content: "\e90b";}.frm_arrowdown6_icon:before {content: "\e62a";}.frm_arrow_left_icon:before {content: "\e912";}.frm_arrow_right_icon:before {content: "\e913";}.frm_filter_icon:before {content: "\e90c";}.frm_download_icon:before {content: "\e615";}.frm_upload2_icon:before {content: "\f093";}.frm_upload_icon:before {content: "\e616";}.frm_download2_icon:before {content: "\f019";}.frm_hard_drive_icon:before {content: "\e916";}.frm_pencil_solid_icon:before {content: "\e901";}.frm_pencil_icon:before {content: "\e61d";}.frm_signature_icon:before {content: "\e919";}.frm_user_icon:before {content: "\e7ff";}.frm_register_icon:before {content: "\e637";}.frm_account_circle_solid_icon:before {content: "\e853";}.frm_account_circle_icon:before {content: "\e921";}.frm_address_card_icon:before {content: "\e996";}.frm_paragraph_icon:before {content: "\f1dd";}.frm_checkbox_unchecked_icon:before {content: "\e91e";}.frm_checkbox_icon:before {content: "\e922";}.frm_checkbox_solid_icon:before {content: "\e91f";}.frm_dropdown_icon:before {content: "\e909";}.frm_caret_square_down_icon:before {content: "\f150";}.frm_check_square_icon:before {content: "\f14a";}.frm_radio_unchecked_icon:before {content: "\e971";}.frm_radio_checked_icon:before {content: "\ea54";}.frm_scrubber_icon:before {content: "\f2f8";}.frm_location_solid_icon:before {content: "\e955";}.frm_location_icon:before {content: "\e947";}.frm_toggle_on_icon:before {content: "\f205";}.frm_toggle_off_icon:before {content: "\f204";}.frm_shield_check_icon:before {content: "\f2f7";}.frm_shield_check_solid_icon:before {content: "\e97d";}.frm_clock_icon:before {content: "\e929";}.frm_clock_solid_icon:before {content: "\e985";}.frm_link_icon:before {content: "\f0c1";}.frm_email_icon:before {content: "\e626";}.frm_email_solid_icon:before {content: "\f0e0";}.frm_mail_bulk_icon:before {content: "\e95c";}.frm_phone_icon:before {content: "\e942";}.frm_calendar_icon:before {content: "\f073";}.frm_code_icon:before {content: "\e90d";}.frm_tag_icon:before {content: "\e98b";}.frm_tag_solid_icon:before {content: "\e989";}.frm_price_tags_icon:before {content: "\e936";}.frm_search_icon:before {content: "\e978";}.frm_sitemap_icon:before {content: "\f0e8";}.frm_file_icon:before {content: "\f15b";}.frm_file_text_solid_icon:before {content: "\f15c";}.frm_file_text_icon:before {content: "\e923";}.frm-option-icon:before, .frm_option_icon:before {content: "\e904";}.frm_option_solid_icon:before {content: "\e906";}.frm_more_horiz_icon:before {content: "\e5d3";}.frm_more_vert_icon:before {content: "\e5d4";}.frm_more_horiz_solid_icon {font-size: 28px !important;font-weight: bold;line-height: 18px;}.frm_more_horiz_solid_icon:before {content: "\00B7\00B7\00B7";}.frm_more_vert_solid_icon:before {content: "\f142";}.frm_calculator_icon:before {content: "\f1ec";}.frm_key_icon:before {content: "\f084";}.frm_keyalt_solid_icon:before {content: "\e986";}.frm_keyalt_icon:before {content: "\e987";}.frm_keyboard_icon:before {content: "\e924";}.frm_eye_icon:before {content: "\f06e";}.frm_eye_solid_icon:before {content: "\e945";}.frm_eye_slash_icon:before {content: "\f070";}.frm_eye_slash_solid_icon:before {content: "\e949";}.frm_page_break_icon:before {content: "\e8e9";}.frm_view_day_icon:before {content: "\e8ed";}.frm_attach_file_icon:before {content: "\e226";}.frm_printer_icon:before {content: "\e926";}.frm_header_icon:before {content: "\f1dc";}.frm_h1_icon:before {content: "\e94c";}.frm_repeat_icon:before {content: "\f363";}.frm_repeater_icon:before {content: "\e974";}.frm_hashtag_icon:before {content: "\e292";}.frm_save_icon:before {content: "\e927";}.frm_sliders_icon:before {content: "\f1de";}.frm_code_commit_icon:before {content: "\f386";}.frm_star_icon:before {content: "\e9d7";}.frm_star_full_icon:before {content: "\e9d9";}.frm_star_half_icon:before {content: "\e9d8";}.frm_linear_scale_icon:before {content: "\e260";}.frm_pie_chart_icon:before {content: "\e99a";}.frm_stats_bars_icon:before {content: "\e99c";}.frm_sms_icon:before {content: "\e61c";}.frm_highrise_icon:before {content: "\e617";}.frm_mailchimp_icon:before {content: "\e622";}.frm_feed_icon:before {content: "\e624";}.frm_align_right_icon:before {content: "\e90f";}.frm_align_left_icon:before {content: "\e910";}.frm_button_icon:before {content: "\e911";}.frm_browser_icon:before {content: "\e925";}.frm_cloud_download_solid_icon:before {content: "\e92a";}.frm_cloud_download_icon:before {content: "\e92b";}.frm_cloud_upload_solid_icon:before {content: "\e92c";}.frm_cloud_upload_icon:before {content: "\e92d";}.frm_cloud_solid_icon:before {content: "\e92e";}.frm_cloud_icon:before {content: "\e92f";}.frm_shuffle_icon:before {content: "\e917";}.frm_swap_icon:before {content: "\e918";}.frm_dropper_solid_icon:before {content: "\e93c";}.frm_tint_icon:before {content: "\e93e";}.frm_pallet_solid_icon:before {content: "\e96c";}.frm_pallet_icon:before {content: "\e96d";}.frm_fingerprint_icon:before {content: "\e94a";}.frm_ghost_icon:before {content: "\e94b";}.frm_heart_solid_icon:before {content: "\e94d";}.frm_heart_icon:before {content: "\e94e";}.frm_history_icon:before {content: "\e94f";}.frm_import_icon:before {content: "\e91a";}.frm_export_icon:before {content: "\e91b";}.frm_label_solid_icon:before {content: "\e952";}.frm_label_icon:before {content: "\e953";}.frm_lock_open_icon:before {content: "\e957";}.frm_lock_solid_icon:before {content: "\e958";}.frm_lock_icon:before {content: "\e959";}.frm_magic_wand_icon:before {content: "\e997";}.frm_dollar_sign_icon:before {content: "\e91c";}.frm_percent_icon:before {content: "\e939";}.frm_notification_solid_icon:before {content: "\e964";}.frm_notification_icon:before {content: "\e965";}.frm_external_link_icon:before {content: "\e966";}.frm_pageview_solid_icon:before {content: "\e96a";}.frm_pageview_icon:before {content: "\e96b";}.frm_settings_solid_icon:before {content: "\e979";}.frm_settings_icon:before {content: "\e97a";}.frm_stamp_icon:before {content: "\e980";}.frm_support_icon:before {content: "\f1cd";}.frm_text_solid_icon:before {content: "\e98c";}.frm_text_icon:before {content: "\e98d";}.frm_text2_icon:before {content: "\f031";}.frm_text3_icon:before {content: "\e98e";}.frm_unfold_less_icon:before {content: "\e993";}.frm_unfold_more_icon:before {content: "\e994";}.frm_work_solid_icon:before {content: "\e999";}.frm_work_icon:before {content: "\e99e";}.frm_white_label_icon:before {content: "\e91d" !important;}.frm_zoom_out_icon:before {content: "\e99f";}.frm_maximize_icon:before {content: "\e920";}.frm_minimize_icon:before {content: "\e93a";}.frm_authorize_icon:before {content: "\e903";}.frm_icon_font.frm_activecampaign_icon {background-image: none;}.frm_activecampaign_icon:before {content: "\e930";}.frm_aweber_icon:before {content: "\e627";}.frm_campaignmonitor_icon:before {content: "\e946";}.frm_constant_contact_icon:before {content: "\e931";}.frm_getresponse_icon:before {content: "\e932";}.frm_googlesheets_icon:before {content: "\e944";}.frm_building_icon:before {content: "\e93f";}.frm_hubspot_icon:before {content: "\e933";}.frm_icontact_icon:before {content: "\e940";}.frm_icon_font.frm_mailpoet_icon:before {content: "\e934";}.frm_paypal_icon:before {content: "\e61f";}.frm_sendinblue_icon:before {content: "\e943";}.frm_sendy_icon:before {content: "\e941";}.frm_salesforce_icon:before {content: "\e935";}.frm_salesforcealt_icon:before {content: "\e937";}.frm_stripe_icon:before {content: "\e902";}.frm_stripealt_icon:before {content: "\e93d";}.frm_twilio_icon:before {content: "\e620";}.frm_woocommerce_icon:before {content: "\e90e";}.frm_wordpress_icon:before {content: "\f19a";}.frm_credit_card_icon:before {content: "\e938";}.frm_credit-card-alt_icon:before, .frm_credit_card_alt_icon:before {content: "\f283";}.frm_cc_amex_icon:before {content: "\f1f3";}.frm_cc_discover_icon:before {content: "\f1f2";}.frm_cc_mastercard_icon:before {content: "\f1f1";}.frm_cc_visa_icon:before {content: "\f1f0";}.frm_cc_paypal_icon:before {content: "\f1f4";}.frm_cc_stripe_icon:before {content: "\f1f5";}.js .frm_logic_form:not(.frm_no_hide) {display:none;}.with_frm_style .frm_conf_field.frm_half label.frm_conf_label {overflow: hidden;white-space: nowrap;}.with_frm_style .frm_time_wrap{white-space:nowrap;}.with_frm_style select.frm_time_select{white-space:pre;display:inline;}.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;padding-bottom:15px;}.with_frm_style .frm_repeat_sec:last-child{border-bottom:none;padding-bottom:none;}.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;}.frm_repeat_sec .frm_button .frm_icon_font:before,.frm_repeat_grid .frm_button .frm_icon_font:before,.frm_repeat_inline .frm_button .frm_icon_font:before{line-height:1;}.frm_form_field .frm_repeat_grid .frm_form_field .frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field .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:15px;text-align:center;float:left;}.with_frm_style .frm_scale input{display:block;margin:0;}.frm-star-group input {display: none !important;}.frm-star-group .star-rating,.frm-star-group input + label {float:left;width:25px;height:25px;font-size:25px;line-height:1;cursor:pointer;display:block;background:transparent;overflow:hidden !important;clear:none;font-style:normal;margin-right:15px;}.frm-star-group input + label:before,.frm-star-group .star-rating:before{font-family:'s11-fp';content:'\e9d7';color:#F0AD4E;display: inline-block;vertical-align: top;}.frm-star-group input[type=radio]:checked + label:before,.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before{color:#F0AD4E;}.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before,.frm-star-group input + label:hover:before,.frm-star-group:hover input + label:hover:before,.frm-star-group .star-rating-on:before,.frm-star-group .star-rating-hover:before{content:'\e9d9';color:#F0AD4E;}.frm-star-group .frm_half_star:before{content:'\e9d8';}.frm-star-group .star-rating-readonly{cursor:default !important;}.with_frm_style .frm_other_input.frm_other_full{margin-top:10px;}.frm_left_container .frm_other_input{grid-column:2;}.frm_inline_container.frm_other_container .frm_other_input,.frm_left_container.frm_other_container .frm_other_input{margin-left:5px;}.frm_right_container.frm_other_container .frm_other_input{margin-right:5px;}.frm_inline_container.frm_other_container select ~ .frm_other_input,.frm_right_container.frm_other_container select ~ .frm_other_input,.frm_left_container.frm_other_container select ~ .frm_other_input{margin:0;}.frm_pagination_cont ul.frm_pagination{display:inline-block;list-style:none;margin-left:0 !important;}.frm_pagination_cont ul.frm_pagination > li{display:inline;list-style:none;margin:2px;background-image:none;}ul.frm_pagination > li.active a{text-decoration:none;}.frm_pagination_cont ul.frm_pagination > li:first-child{margin-left:0;}.archive-pagination.frm_pagination_cont ul.frm_pagination > li{margin:0;}.frmcal{padding-top:30px;}.frmcal-title{font-size:116%;}.frmcal table.frmcal-calendar{border-collapse:collapse;margin-top:20px;color:#555555;}.frmcal table.frmcal-calendar,.frmcal table.frmcal-calendar tbody tr td{border:1px solid #cccccc;}.frmcal table.frmcal-calendar,.frmcal,.frmcal-header{width:100%;}.frmcal-header{text-align:center;}.frmcal-prev{margin-right:10px;}.frmcal-prev,.frmcal-dropdown{float:left;}.frmcal-dropdown{margin-left:5px;}.frmcal-next{float:right;}.frmcal table.frmcal-calendar thead tr th{text-align:center;padding:2px 4px;}.frmcal table.frmcal-calendar tbody tr td{height:110px;width:14.28%;vertical-align:top;padding:0 !important;color:#555555;font-size:12px;}table.frmcal-calendar .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #cccccc;-webkit-box-shadow:0 2px 5px #cccccc;box-shadow:0 2px 5px #cccccc;}table.frmcal-calendar .frmcal-today .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #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: #3177c7;padding:0 0 0 8px;}.frm_switch {position: relative;display: inline-block;width: 40px;height: 25px;vertical-align: middle;}.frm_switch input {display:none !important;}.frm_slider {position: absolute;cursor: pointer;top: 0;left: 0;right: 0;bottom: 0;background-color: #ccc;transition: .4s;border-radius: 30px;}.frm_slider:before {border-radius: 50%;position: absolute;content: "";height: 23px;width: 23px;left: 1px;bottom: 1px;background-color: white;transition: .4s;box-shadow:0 2px 5px #999;}input:checked + .frm_slider {background-color: #3177c7;}input:focus + .frm_slider {box-shadow: 0 0 1px #3177c7;}input:checked + .frm_slider:before {transform: translateX(15px);}.with_frm_style .frm_range_value{display:inline-block;}.with_frm_style input[type=range] {-webkit-appearance: none;box-shadow:none !important;border:none !important;cursor: pointer;padding:0 ;background:transparent !important;display: block;width: 100%;margin: 7px 0 15px;font-size:14px;}.with_frm_style input[type=range]:active,.with_frm_style input[type=range]:focus {outline: none;box-shadow:none !important;background:transparent !important;}.with_frm_style .frm_range_container{text-align:center;}.with_frm_style input[type=range]::-webkit-slider-runnable-track {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-moz-range-track {border-radius: 25px;border: none;height: 10px;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: 25px;border: none;height: 10px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-ms-fill-upper {border-radius: 25px;border: none;height: 10px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-webkit-slider-thumb {-webkit-appearance: none;-webkit-border-radius: 20px;height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;margin-top: -10px;}.with_frm_style input[type=range]::-moz-range-thumb {height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;-moz-border-radius: 20px;}.with_frm_style input[type=range]::-ms-thumb {height: 28px;width: 28px;border-radius: 20px;border: 1px solid rgba(49,119,199,0.6);color:#ffffff;background-color: #3177c7;cursor: pointer;}@media screen and (max-width: 768px) {.frm-pass-req, .frm-pass-verified {width: 50% !important;white-space: nowrap;}}.frm-pass-req, .frm-pass-verified {float: left;width: 20%;line-height: 20px;font-size: 12px;padding-top: 4px;min-width: 175px;}.frm-pass-req:before, .frm-pass-verified:before {padding-right: 4px;font-size: 12px !important;vertical-align: middle !important;}span.frm-pass-verified::before {content: '\e606';}span.frm-pass-req::before {content: '\e608';}div.frm-password-strength {width: 100%;float: left;}.with_frm_style .chosen-container{font-size:14px;position:relative;display:inline-block;zoom:1;vertical-align:middle;width:100% !important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.with_frm_style .chosen-container * { -webkit-box-sizing: border-box; box-sizing: border-box;}.with_frm_style .chosen-container .chosen-drop{background:#fff;border:1px solid #aaa;border-top:0;position:absolute;top:100%;z-index:1010;width:100%;clip: rect(0, 0, 0, 0);-webkit-clip-path: inset(100% 100%);clip-path: inset(100% 100%);}.with_frm_style .chosen-container.chosen-with-drop .chosen-drop{clip: auto;-webkit-clip-path: none;clip-path: none;}.with_frm_style .chosen-container a{cursor:pointer;}.with_frm_style .chosen-container .search-choice .group-name,.with_frm_style .chosen-container .chosen-single .group-name {margin-right: 4px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-weight: normal;color: #999999;}.with_frm_style .chosen-container .search-choice .group-name:after,.with_frm_style .chosen-container .chosen-single .group-name:after {content: ":";padding-left: 2px;vertical-align: top;}.with_frm_style .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;text-decoration:none;white-space:nowrap;line-height:24px;}.with_frm_style .chosen-container-single .chosen-default {color: #999;}.with_frm_style .chosen-container-single .chosen-single span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.with_frm_style .chosen-container-single .chosen-single-with-deselect span{margin-right:38px;}.with_frm_style .chosen-container-single .chosen-single abbr{display:block;position:absolute;right:26px;top:6px;width:12px;height:12px;font-size:1px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') -42px 1px no-repeat;}.with_frm_style .chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single .chosen-single div{position:absolute;right:0;top:0;display:block;height:100%;width:18px;}.with_frm_style .chosen-container-single .chosen-single div b{background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat 0 2px;display:block;width:100%;height:100%;}.with_frm_style .chosen-container-single .chosen-search{padding:3px 4px;position:relative;margin:0;white-space:nowrap;z-index:1010;}.with_frm_style .chosen-container-single .chosen-search input[type="text"]{width:100% !important;max-width:100% !important;height:auto;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box;}.with_frm_style .chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;clip: rect(0, 0, 0, 0);-webkit-clip-path: inset(100% 100%);clip-path: inset(100% 100%);}.with_frm_style .chosen-container .chosen-results{cursor:text;overflow-x:hidden;overflow-y:auto;position:relative;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch;}.with_frm_style .chosen-container .chosen-results li:before{background:none;}.with_frm_style .chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none;}.with_frm_style .chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer;}.with_frm_style .chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container .chosen-results li.highlighted{background-color: #3875d7;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);color: #fff;}.with_frm_style .chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4;}.with_frm_style .chosen-container .chosen-results li.group-result{display:list-item;font-weight:bold;cursor:default;}.with_frm_style .chosen-container .chosen-results li.group-option{padding-left:15px;}.with_frm_style .chosen-container .chosen-results li em{font-style:normal;text-decoration:underline;}.with_frm_style .chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto;border: 1px solid #aaa;background-color: #fff;cursor:text;}.with_frm_style .chosen-container-multi .chosen-choices li{float:left;list-style:none;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{margin:1px 0;padding:0 !important;height:25px;outline:0;border:0 !important;background:transparent !important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;width: 25px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:1px 5px 1px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);color:#333;line-height:13px;cursor:default;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice span {word-wrap: break-word;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') -42px 1px no-repeat;font-size:1px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);color:#666;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-results{margin:0;padding:0;}.with_frm_style .chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container-single.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;border-bottom-right-radius:0;border-bottom-left-radius:0;box-shadow:0 1px 0 #fff inset;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px;}.with_frm_style .chosen-container-active .chosen-choices {border: 1px solid #5897fb;-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#111 !important;}.with_frm_style .chosen-disabled{opacity:0.5 !important;cursor:default;}.with_frm_style .chosen-disabled .chosen-single{cursor:default;}.with_frm_style .chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default;}.with_frm_style .chosen-rtl{text-align:right;}.with_frm_style .chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0;}.with_frm_style .chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl;}.with_frm_style .chosen-rtl .chosen-single-with-deselect span{margin-left:38px;}.with_frm_style .chosen-rtl .chosen-single div{right:auto;left:3px;}.with_frm_style .chosen-rtl .chosen-single abbr{right:auto;left:26px;}.with_frm_style .chosen-rtl .chosen-choices li{float:right;}.with_frm_style .chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice{margin:1px 5px 1px 0;padding:3px 5px 3px 19px;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0;}.with_frm_style .chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0;}.with_frm_style .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none;}.with_frm_style .chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat -30px -20px;direction:rtl;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px;}.with_frm_style .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px;}.with_frm_style .frm_repeat_sec,.with_frm_style .frm_repeat_inline,.with_frm_style .frm_repeat_grid {position: relative;}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi){.with_frm_style .chosen-rtl .chosen-search input[type="text"],.with_frm_style .chosen-container-single .chosen-single abbr,.with_frm_style .chosen-container-single .chosen-single div b,.with_frm_style .chosen-container-single .chosen-search input[type="text"],.with_frm_style .chosen-container-multi .chosen-choices .search-choice .search-choice-close,.with_frm_style .chosen-container .chosen-results-scroll-down span,.with_frm_style .chosen-container .chosen-results-scroll-up span{background-image:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite2x.png') !important;background-size:52px 37px !important;background-repeat:no-repeat !important;}}@-webkit-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-moz-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-webkit-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@-moz-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}.frm_dropzone, .frm_dropzone * {box-sizing: border-box;}.frm_dropzone.dz-clickable {min-height: 150px;margin-top:5px;line-height:1.42857143;}.frm_dropzone.dz-clickable * {cursor: default;}.frm_dropzone.dz-clickable.frm_single_upload{max-width: 200px;}.frm_dropzone.dz-clickable.frm_single_upload.dz-started {max-width: 300px;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: .5em 0 1em;}.frm_dropzone .dz-message{border: 2px dashed #dfdfdf;background:#ffffff;padding: 20px;border-radius:5px;cursor: pointer;display:none;font-size:20px;text-align: center;margin: .5em 0 1em;}.frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: 0 0 .5em 0;}.frm_dropzone.frm_single_upload.dz-started .dz-message{display: none;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone .frm_upload_icon{display:block;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone.dz-clickable .dz-message * {cursor: pointer;}#frm_form_editor_container .frm_dropzone.dz-clickable,#frm_form_editor_container .frm_dropzone.dz-clickable *{cursor: default;}.frm_dropzone.dz-drag-hover .dz-message {opacity: 0.5;}.frm_dropzone .frm_upload_icon:before{font-size:40px;}.frm_dropzone .frm_small_text {font-size:14px;}.frm_dropzone.dz-drag-hover {border-style: solid;}.frm_dropzone .dz-preview {padding: 15px 0;border-bottom: 1px solid #dfdfdf;}.frm_dropzone .dz-preview:last-child {border-bottom: none;}.frm_dropzone .dz-preview:hover {z-index: 1000;}.frm_dropzone .dz-preview.dz-file-preview .dz-details {opacity: 1;}.frm_dropzone .dz-preview.dz-image-preview .dz-details {-webkit-transition: opacity 0.2s linear;-moz-transition: opacity 0.2s linear;-ms-transition: opacity 0.2s linear;-o-transition: opacity 0.2s linear;transition: opacity 0.2s linear;}.frm_dropzone .dz-preview .dz-remove {cursor: pointer;border: none;float: right;}.frm_dropzone .dz-preview:hover .dz-details {opacity: 1;}.frm_dropzone .dz-preview .dz-details {font-size: 14px;margin: 5px 0 10px;}.frm_dropzone .dz-preview .dz-details .dz-size,.frm_dropzone .dz-preview .dz-details .dz-filename {display: inline-block;overflow: hidden;white-space: nowrap;}.frm_dropzone .dz-preview .dz-details .dz-size strong {font-weight: normal;}.frm_dropzone .dz-preview .dz-details .dz-filename {max-width: 75%;text-overflow: ellipsis;padding-right: 5px;}.frm_dropzone .dz-preview .dz-details .dz-filename a{cursor:pointer;}.frm_dropzone .dz-preview .dz-column {float: right;width: 68%;}.frm_dropzone .dz-preview .dz-image {overflow: hidden;width: 30%;height: 60px;display: block;float: left;margin-right: 2%;}.frm_dropzone .dz-preview .dz-image img {display: block;margin:0 auto;max-height: 60px;}.frm_dropzone .dz-preview.dz-success .dz-success-mark {-webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);}.frm_dropzone .dz-preview.dz-processing .dz-progress {-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;-ms-transition: all 0.2s linear;-o-transition: all 0.2s linear;transition: all 0.2s linear;}.frm_dropzone .dz-preview .dz-progress {pointer-events: none;position: relative;height: 10px;width: 100%;background: rgba(221, 221, 221, 1);-webkit-transform: scale(1);border-radius: 8px;overflow: hidden;}.frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_dropzone .dz-preview.dz-complete .dz-progress{background: #333;background: linear-gradient(to bottom, #666, #444);}.frm_dropzone .dz-preview .dz-progress .dz-upload {position: absolute;top: 0;left: 0;bottom: 0;width: 0;-webkit-transition: width 300ms ease-in-out;-moz-transition: width 300ms ease-in-out;-ms-transition: width 300ms ease-in-out;-o-transition: width 300ms ease-in-out;transition: width 300ms ease-in-out;}.frm_dropzone .dz-preview.dz-error .dz-error-message {display: block;opacity: 1;pointer-events: auto;}.frm_dropzone .dz-preview .dz-error-message {pointer-events: none;display: none;opacity: 0;-webkit-transition: opacity 0.3s ease;-moz-transition: opacity 0.3s ease;-ms-transition: opacity 0.3s ease;-o-transition: opacity 0.3s ease;transition: opacity 0.3s ease;color: #B94A48;padding: 0.5em;}.frm_dropzone .fallback input[type=file]{display:block;}.frm_compact_text{display:none;}.frm_compact .frm_dropzone.dz-clickable{min-height:60px;padding:0;border:none;background-color:transparent;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_compact .frm_compact_text{display:inline;}.frm_compact .frm_dropzone.frm_single_upload.dz-started .dz-message,.frm_compact .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_compact .frm_dropzone.dz-clickable .dz-message{font-size:14px;border:1px solid #dfdfdf;background:#fff;display: inline-block;border-radius: 4px;padding: 6px 11px;box-sizing: border-box;box-shadow: 0 1px 1px #eeeeee;vertical-align: middle;margin: 0 0 1em;}.frm_compact .frm_dropzone .frm_upload_icon:before{font-size:22px;padding-right:7px;vertical-align: middle;}.frm_compact .frm_dropzone .frm_upload_icon{display:inline;}.frm_compact .frm_dropzone .dz-preview{min-height:20px;max-width:200px;margin: 0 5px;padding: 0;display: inline-block;border-bottom: none;}.frm_compact .frm_dropzone .dz-preview.frm_clearfix:after {content:'';}.frm_compact .frm_dropzone .frm_upload_text,.frm_compact .frm_dropzone .frm_small_text,.frm_compact .frm_dropzone .dz-preview .dz-image,.frm_compact .frm_dropzone .dz-preview .dz-details .dz-size{display:none;}.frm_compact .frm_dropzone .dz-preview .dz-details {margin: 0;}.frm_compact .frm_dropzone .dz-preview .dz-column {float: none;width: 100%;}.frm_compact .frm_dropzone .dz-preview .dz-details .dz-filename {overflow: hidden;text-overflow: ellipsis;}.frm-show-form .dz-hidden-input{display:none;}.frm_rootline_group{margin: 20px 0 30px;}ul.frm_page_bar{list-style-type: none;margin: 0 !important;padding: 0;width: 100%;float: left;display: table;display: -webkit-flex;display: flex;flex-wrap: wrap;box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;}ul.frm_page_bar li{display: inline-block;-ms-flex: 1;flex: 1;}.frm_forms .frm_page_bar input,.frm_forms .frm_page_bar input:disabled{transition: background-color 0.1s ease;color: #ffffff;background-color: #dddddd;font-size: 18px;border-width: 2px;border-style: solid;border-color: #dfdfdf;}.frm_forms .frm_page_bar input:focus{outline: none;}.frm_forms .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_forms .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;}.frm_rootline_single{text-align: center;margin: 0;padding: 0;}.frm_current_page .frm_rootline_title{color: #008ec2;}.frm_rootline_title,.frm_pages_complete,.frm_percent_complete {font-size:14px;padding:4px;}.frm_pages_complete {float: right;margin-right:13px;}.frm_percent_complete {float: left;margin-left:13px;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled {width: 100%;border: none;border-top: 1px solid #dfdfdf;border-bottom: 1px solid #dfdfdf;box-shadow: inset 0 10px 20px -15px #aaa;margin: 5px 0;padding: 6px 0;border-radius:0;font-size:0;line-height:15px;}.frm_forms .frm_progress_line.frm_show_lines input {border-left: 1px solid #ffffff;border-right: 1px solid #ffffff;}.frm_progress_line .frm_rootline_single {display: flex;flex-direction: column;justify-content: flex-end;}.frm_forms .frm_progress_line li:first-of-type input {border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-left: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-right: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-right: 1px solid #dfdfdf;}.frm_forms .frm_progress_line .frm_current_page input[type="button"] {border-left: 1px solid #dfdfdf;}.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right: 1px solid #ffffff;}.frm_forms .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_forms .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_rtl.frm_forms .frm_progress_line li:first-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-top-left-radius:0px;border-bottom-left-radius:0px;border-right: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input{border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-left: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-left: 1px solid #dfdfdf;border-right:none;}.frm_rtl.frm_forms .frm_progress_line .frm_current_page input[type="button"] {border-right: 1px solid #dfdfdf;border-left:none;}.frm_rtl.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-left: 1px solid #ffffff;border-right:none;}.frm_rootline.frm_show_lines:before {border-top-width: 2px;border-top-style: solid;border-top-color: #dfdfdf;content: "";margin: 0 auto;position: absolute;top: 15px;left: 0;right: 0;bottom: 0;width: 100%;z-index: -1;}.frm_rootline.frm_show_lines{position: relative;z-index: 1;}.frm_rootline.frm_show_lines span{display:block;}.frm_forms .frm_rootline input {width: 30px;height: 30px;min-height:auto;border-radius: 30px;padding:0;}.frm_forms .frm_rootline input:focus {border-color: #008ec2;}.frm_forms .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled,.frm_forms .frm_progress_line .frm_current_page input[type="button"],.frm_forms .frm_rootline.frm_no_numbers input,.frm_forms .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}@media only screen and (max-width: 700px) {.frm_progress span.frm_rootline_title,.frm_rootline.frm_rootline_10 span.frm_rootline_title,.frm_rootline.frm_rootline_9 span.frm_rootline_title,.frm_rootline.frm_rootline_8 span.frm_rootline_title,.frm_rootline.frm_rootline_7 span.frm_rootline_title,.frm_rootline.frm_rootline_6 span.frm_rootline_title,.frm_rootline.frm_rootline_5 span.frm_rootline_title{display:none;}}@media only screen and (max-width: 500px) {.frm_rootline.frm_rootline_4 span.frm_rootline_title,.frm_rootline.frm_rootline_3 span.frm_rootline_title{display:none;}}.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 .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth .frm_primary_label{display: block !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(2, 1fr);}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style .frm-g-recaptcha > div > div,.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);-moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe,.with_frm_style .frm-g-recaptcha iframe{width:100%;}}.with_frm_style .frm_form_field{clear:both;}.frm_form_field,.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{width:auto;}.frm_inline_form .frm_form_field.form-field{margin-right:2.5%;display:inline-block;}.frm_inline_form .frm_submit{display:inline-block;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm10,.frm_submit.frm10,.frm_form_field.frm_right_half,.frm_form_field.frm_right_third,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_right_fourth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_half,.frm_form_field.frm_last_third,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_last_fourth,.frm_form_field.frm_last_fifth,.frm_form_field.frm_last_sixth,.frm_form_field.frm_last_seventh,.frm_form_field.frm_last_eighth,.frm_form_field.frm_last_inline,.frm_form_field.frm_last,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_two_thirds,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_inline,.frm_submit.frm_inline{clear:none;float:left;margin-left:2.5%;}.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{clear:left;float:left;margin-left:0;}.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{width:48.75%;}.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{width:31.66%;}.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{width:65.82%;}.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{width:23.12%;}.frm_form_field.frm9,.frm_form_field.frm_three_fourths{width:74.36%;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{width:18%;}.frm_form_field.frm_two_fifths {width:38.5%;}.frm_form_field.frm_three_fifths {width:59%;}.frm_form_field.frm_four_fifths {width:79.5%;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{width:14.58%;}.frm_form_field.frm10,.frm_submit.frm10{width:83.42%;}.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh{width:12.14%;}.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{width:10.31%;}.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;}.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type='checkbox']):not([type='radio']):not([type='button']),.frm_full select,.frm_full textarea{width:100% !important;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container,.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container,.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display:block;}.frm_form_field.frm_left_container .frm_primary_label{float:left;display:inline;max-width:33%;margin-right:5%;}.with_frm_style .frm_conf_field.frm_left_container .frm_primary_label{display:inline;visibility:hidden;}.frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_left_container textarea,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_left_container .chosen-container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_right_container textarea,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_right_container .chosen-container,.frm_form_field.frm_right_container .frm_combo_inputs_container{max-width:62%;}.frm_form_field.frm_left_container .frm_combo_inputs_container input,.frm_form_field.frm_left_container .frm_combo_inputs_container select,.frm_form_field.frm_right_container .frm_combo_inputs_container input,.frm_form_field.frm_right_container .frm_combo_inputs_container select{max-width:100%;}.frm_form_field.frm_left_container .frm_data_container,.frm_form_field.frm_right_container .frm_data_container,.frm_form_field.frm_inline_container .frm_data_container,.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container .frm_combo_inputs_container,.frm_form_field.frm_inline_container .frm_combo_inputs_container,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_inline_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_inline_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_inline_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_inline_container .g-recaptcha{display:inline-block;}.frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_left_container .frm_primary_label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;max-width:33%;}.with_frm_style .frm_left_container .frm_primary_label{float:left;display:inline !important;width:150px;max-width:33% !important;margin-right:10px !important;}.with_frm_style .frm_right_container .frm_primary_label{display:inline !important;width:150px;max-width:33% !important;margin-left:10px !important;}.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_left_container textarea,.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_right_container textarea,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:62% !important;}.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field input,.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field select,.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field input,.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field select{max-width:100% !important;}.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha{display:inline-block !important;}.with_frm_style .frm_left_container > p.description::before,.with_frm_style .frm_left_container > div.description::before,.with_frm_style .frm_left_container > div.frm_description::before,.with_frm_style .frm_left_container > .frm_error::before,.with_frm_style .frm_right_container > p.description::after,.with_frm_style .frm_right_container > div.description::after,.with_frm_style .frm_right_container > div.frm_description::after,.with_frm_style .frm_right_container > .frm_error::after{content:'' !important;display:inline-block !important;width:150px;max-width:33% !important;margin-right:10px !important;}.with_frm_style .frm_left_container.frm_inline .frm_primary_label{max-width:90% !important;}.with_frm_style .form-field.frm_col_field{clear:none;float:left;margin-right:20px;}.with_frm_style .form-field.frm_col_field div.frm_description{width:auto;max-width:100%;}.with_frm_style .frm_inline_container .frm_primary_label,.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.with_frm_style .frm_inline_container .frm_primary_label{margin-right:10px !important;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_checkbox{float:left;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width:30%;margin-right:5%;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:22%;margin-right:4%;}.frm_form_field.frm_two_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_two_col .frm_checkbox:nth-child(2n+2),.frm_form_field.frm_three_col .frm_radio:nth-child(3n+3),.frm_form_field.frm_three_col .frm_checkbox:nth-child(3n+3),.frm_form_field.frm_four_col .frm_radio:nth-child(4n+4),.frm_form_field.frm_four_col .frm_checkbox:nth-child(4n+4){margin-right:0;}.with_frm_style.frm_rtl .frm_form_field.frm2,.with_frm_style.frm_rtl .frm_form_field.frm3,.with_frm_style.frm_rtl .frm_form_field.frm4,.with_frm_style.frm_rtl .frm_form_field.frm6,.with_frm_style.frm_rtl .frm_form_field.frm8,.with_frm_style.frm_rtl .frm_form_field.frm9,.with_frm_style.frm_rtl .frm_form_field.frm10,.with_frm_style.frm_rtl .frm_form_field.frm_half,.with_frm_style.frm_rtl .frm_form_field.frm_third,.with_frm_style.frm_rtl .frm_form_field.frm_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_sixth,.with_frm_style.frm_rtl .frm_form_field.frm_seventh,.with_frm_style.frm_rtl .frm_form_field.frm_eighth,.with_frm_style.frm_rtl .frm_form_field.frm_inline,.with_frm_style.frm_rtl .frm_form_field.frm_left_half,.with_frm_style.frm_rtl .frm_form_field.frm_left_third,.with_frm_style.frm_rtl .frm_form_field.frm_left_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_left_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_left_inline,.with_frm_style.frm_rtl .frm_form_field.frm_first_half,.with_frm_style.frm_rtl .frm_form_field.frm_first_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_first_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_first_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_first_inline,.with_frm_style.frm_rtl .frm_form_field.frm_right_half,.with_frm_style.frm_rtl .frm_form_field.frm_right_third,.with_frm_style.frm_rtl .frm_form_field.frm_right_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_right_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_right_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_right_inline,.with_frm_style.frm_rtl .frm_form_field.frm_last_half,.with_frm_style.frm_rtl .frm_form_field.frm_last_third,.with_frm_style.frm_rtl .frm_form_field.frm_last_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_last_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_last_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_last_inline{float:right;margin-right:2.5%;margin-left:0;clear:none;}.with_frm_style.frm_rtl .frm_form_field.frm_left_half,.with_frm_style.frm_rtl .frm_form_field.frm_first_half,.with_frm_style.frm_rtl .frm_form_field.frm_first,.with_frm_style.frm_rtl .frm_form_field.frm_left_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_third,.with_frm_style.frm_rtl .frm_form_field.frm_first_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_left_two_thirds,.with_frm_style.frm_rtl .frm_form_field.frm_first_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fourth,.with_frm_style.frm_rtl .frm_form_field.frm_left_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_first_fifth,.with_frm_style.frm_rtl .frm_form_field.frm_left_inline,.with_frm_style.frm_rtl .frm_form_field.frm_first_inline{clear:right;margin-right:0;}.with_frm_style.frm_rtl .frm_form_field.frm_two_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_three_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_four_col .frm_radio,.with_frm_style.frm_rtl .frm_form_field.frm_two_col .frm_checkbox,.with_frm_style.frm_rtl .frm_form_field.frm_three_col .frm_checkbox,.with_frm_style.frm_rtl .frm_form_field.frm_four_col .frm_checkbox{float:right;}@media only screen and (max-width: 500px) {.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_left_container textarea,.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.with_frm_style .frm_form_field.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.with_frm_style .frm_form_field.frm_right_container textarea,.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:100% !important;}.with_frm_style .frm_left_container > p.description::before,.with_frm_style .frm_left_container > div.description::before,.with_frm_style .frm_left_container > div.frm_description::before,.with_frm_style .frm_left_container > .frm_error::before,.with_frm_style .frm_right_container > p.description::after,.with_frm_style .frm_right_container > div.description::after,.with_frm_style .frm_right_container > div.frm_description::after,.with_frm_style .frm_right_container > .frm_error::after{display:none !important;}.with_frm_style .frm_left_container .frm_primary_label,.with_frm_style .frm_right_container .frm_primary_label{width:100% !important;max-width:100% !important;margin-right:0 !important;margin-left:0 !important;padding-right:0 !important;padding-left:0 !important;}}@media only screen and (max-width: 600px){.with_frm_style .frm_form_field.frm_half.frm_left_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_half.frm_left_container select,.with_frm_style .frm_form_field.frm_half.frm_left_container textarea,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_opt_container,.with_frm_style .frm_form_field.frm_half.frm_left_container.frm-g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_left_container.g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_left_container .chosen-container,.with_frm_style .frm_form_field.frm_half.frm_right_container input:not([type=radio]):not([type=checkbox]),.with_frm_style .frm_form_field.frm_half.frm_right_container select,.with_frm_style .frm_form_field.frm_half.frm_right_container textarea,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_opt_container,.with_frm_style .frm_form_field.frm_half.frm_right_container.frm-g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_right_container.g-recaptcha,.with_frm_style .frm_form_field.frm_half.frm_right_container .chosen-container{max-width:100% !important;}.with_frm_style .frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_primary_label,.with_frm_style .frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_primary_label{max-width:100% !important;margin-right:0;margin-left:0;padding-right:0;padding-left:0;width:100% !important;}.with_frm_style .frm_repeat_inline,.with_frm_style .frm_repeat_grid{margin: 20px 0;}.with_frm_style .frm_form_field.frm_first_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_first_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_error{margin-right:0;margin-left:0;padding-right:0;padding-left:0;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm10,.frm_submit.frm10,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_first_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_last_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_last_inline{width:100%;margin-left:0;margin-right:0;clear:both;float:none;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:48%;}.frm_form_field.frm_four_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_four_col .frm_checkbox:nth-child(2n+2){margin-right:0;}}.color &gt; .red,.red{color:red;content: '\dde23';}#frm_field_271_container input ,#frm_field_278_container input ,#frm_field_281_container input ,#frm_field_283_container input ,#frm_field_285_container input{ display: none;}#frm_field_271_container img ,#frm_field_278_container img ,#frm_field_281_container img ,#frm_field_283_container img ,#frm_field_285_container img { -webkit-filter: none; -moz-filter: none; filter: none;}#frm_field_271_container img:hover,#frm_field_271_container input:checked + img ,#frm_field_278_container img:hover,#frm_field_278_container input:checked + img ,#frm_field_281_container img:hover,#frm_field_281_container input:checked + img ,#frm_field_283_container img:hover,#frm_field_283_container input:checked + img ,#frm_field_285_container img:hover,#frm_field_285_container input:checked + img { -webkit-transition: all 100ms ease-in; -moz-transition: all 100ms ease-in; transition: all 100ms ease-in; -webkit-filter: drop-shadow(16px 16px 10px rgba(0,0,0,0.9)) sepia(1) saturate(200%); -moz-filter: drop-shadow(16px 16px 10px rgba(0,0,0,0.9)) sepia(1) saturate(200%); filter: drop-shadow(16px 16px 10px rgba(0,0,0,0.9)) sepia(1) saturate(200%);}.bumarg {margin-bottom: 30px;}.ffcaption {text-align: center; margin-top: 20px;}.ffimg {display: block;margin: 0 auto;}.with_frm_style input[type="submit"] {background:#289dcc;border-radius:50px;float:right;padding-top:0;margin-top: 0;}
css/frm_admin.css CHANGED
@@ -65,7 +65,7 @@ a, .widget .widget-top, .stuffbox h3, .frm-collapsed {
65
  }
66
 
67
  .frm-full-screen.frm-admin-page-reports,
68
- .frm-full-screen.frm-admin-page-list,
69
  .frm-full-screen.post-type-frm_display {
70
  overflow: auto;
71
  }
@@ -77,15 +77,11 @@ a, .widget .widget-top, .stuffbox h3, .frm-collapsed {
77
  .frm-full-screen #wpbody-content,
78
  .frm-full-screen #wpbody,
79
  .frm-full-screen #wpcontent {
80
- margin-right: 0;
81
  padding-bottom: 0;
82
- float: none;
83
  }
84
 
85
- .new-php.post-type-frm_display #screen-meta-links,
86
  .post-php.post-type-frm_display #screen-meta-links,
87
- .new-php.post-type-frm_display #wpfooter,
88
- .post-php.post-type-frm_display #wpfooter,
89
  .frm-full-screen #wpfooter {
90
  display: none;
91
  }
@@ -118,10 +114,6 @@ a, .widget .widget-top, .stuffbox h3, .frm-collapsed {
118
  border: none;
119
  }
120
 
121
- html.wp-toolbar .frm-full-screen {
122
- margin-top: -32px;
123
- }
124
-
125
  body.formidable_page_formidable-pro-upgrade,
126
  body.post-type-frm_display.edit-php,
127
  body.frm-white-body {
@@ -191,7 +183,7 @@ body.frm-white-body ul#adminmenu > li.current > a.current:after {
191
 
192
  .frm-short-list {
193
  overflow: auto;
194
- max-height: 200px;
195
  }
196
 
197
  .frm-white-body table.frm-border td {
@@ -243,7 +235,13 @@ td.column-title .frm_actions_dropdown {
243
  display: inline-block;
244
  }
245
 
 
 
 
 
 
246
  .frm_wrap .view-switch a.current:before,
 
247
  .frm_wrap a i,
248
  .frm_wrap a {
249
  color: var(--primary-color);
@@ -343,7 +341,7 @@ ul.frm_form_nav > li {
343
  .frm-full-close {
344
  display: none;
345
  float: right;
346
- padding: 15px 0 15px 15px;
347
  border-left: 1px solid var(--grey-border);
348
  height: 100%;
349
  box-sizing: border-box;
@@ -357,11 +355,12 @@ ul.frm_form_nav > li {
357
  display: block;
358
  }
359
 
360
- .frm-full-close span {
361
  font-size: 20px;
362
  width: 20px;
363
  height: 20px;
364
  padding: 5px;
 
365
  }
366
 
367
  .frm-full-screen.post-type-frm_display #frm_top_bar h1,
@@ -443,7 +442,7 @@ ul.frm_form_nav > li {
443
  }
444
 
445
  .frm_wrap .frm_page_container {
446
- height: 100vh;
447
  display: flex;
448
  flex-direction: column;
449
  overflow: hidden;
@@ -516,15 +515,20 @@ ul.frm_form_nav > li {
516
 
517
  .frm-default-switcher a {
518
  padding: 0 2px;
519
- font-size: 15px;
 
 
 
520
  }
521
 
522
  .frm-default-switcher a,
 
523
  .frm-default-switcher a i {
524
  color: var(--grey);
525
  }
526
 
527
  .frm-default-switcher a.current,
 
528
  .frm-default-switcher a.current i {
529
  color: var( --primary-color);
530
  }
@@ -540,6 +544,10 @@ p.frm_has_shortcodes {
540
  background: #fff;
541
  }
542
 
 
 
 
 
543
  #frm_upgrade_modal .dismiss i,
544
  .frm-inline-modal i,
545
  #frm-bulk-modal i,
@@ -555,6 +563,10 @@ p.frm_has_shortcodes {
555
  font-weight: bold;
556
  }
557
 
 
 
 
 
558
  #frm_upgrade_modal .dismiss i,
559
  .frm-inline-modal i,
560
  #frm-bulk-modal i,
@@ -567,17 +579,21 @@ p.frm_has_shortcodes {
567
  text-align: center;
568
  }
569
 
 
 
570
  #frm_confirm_modal .dismiss i,
571
  #frm_upgrade_modal .dismiss i {
572
  top: 7px;
573
  right: 7px;
574
  }
575
 
 
576
  #frm-bulk-modal i {
577
  top: 15px;
578
  right: 7px;
579
  }
580
 
 
581
  .frm-inline-modal i {
582
  top: 18px;
583
  right: 7px;
@@ -586,12 +602,18 @@ p.frm_has_shortcodes {
586
  width: 11px;
587
  }
588
 
 
 
 
589
  #frm_upgrade_modal .dismiss i:hover,
590
  .frm-inline-modal i:hover,
591
  #frm-bulk-modal i:hover {
592
  background: var(--sidebar-color);
593
  }
594
 
 
 
 
595
  #frm_upgrade_modal .dismiss .frm_close_icon,
596
  .frm-inline-modal .frm_close_icon,
597
  #frm-bulk-modal .frm_close_icon {
@@ -640,11 +662,8 @@ p.frm_has_shortcodes {
640
  font-weight: 600;
641
  }
642
 
643
- .frm_settings_form {
644
- padding: 0 25px 35px;
645
- }
646
-
647
  #form_settings_page .frm-inner-content {
 
648
  padding-bottom: 150px;
649
  position: relative;
650
  }
@@ -1035,22 +1054,19 @@ h2 .frm-button-primary {
1035
  }
1036
 
1037
  .frm-with-plus {
1038
- position: relative;
1039
- padding-left: 24px !important;
1040
  }
1041
 
1042
- .frm-with-plus:before {
1043
- content: "\e62f";
1044
- font-family: "s11-fp";
1045
- position: absolute;
1046
- left: 8px;
1047
- font-size: 15px;
1048
  }
1049
 
1050
  .frm_wrap .preview i {
1051
  font-size: inherit;
1052
  }
1053
 
 
 
1054
  .wp-core-ui.frm-white-body .frm-button-secondary:hover i,
1055
  .frm_wrap .preview > .button:hover i {
1056
  color: #fff;
@@ -1173,6 +1189,10 @@ input.frm_insert_in_template {
1173
  display: inline;
1174
  }
1175
 
 
 
 
 
1176
  .frm-lookup-modal .dismiss,
1177
  .frm-right-panel .inside a.frm_hidden,
1178
  ul.frm_form_nav > li.frm_hidden,
@@ -1191,6 +1211,7 @@ a.frm_hidden,
1191
  margin-top: 0 !important;
1192
  }
1193
 
 
1194
  .frm_no_bottom_margin {
1195
  margin-bottom: 0 !important;
1196
  }
@@ -1243,7 +1264,7 @@ a.frm_hidden,
1243
  }
1244
 
1245
  .frm-entry-container {
1246
- margin: 40px;
1247
  padding: 0;
1248
  }
1249
 
@@ -1255,6 +1276,10 @@ a.frm_hidden,
1255
  padding: 20px;
1256
  }
1257
 
 
 
 
 
1258
  .frm_inner_field_container > .frm_form_fields {
1259
  clear: both;
1260
  }
@@ -1274,7 +1299,7 @@ a.frm_hidden,
1274
 
1275
  #frm_form_editor_container {
1276
  position: relative;
1277
- margin: 25px 65px 50px;
1278
  }
1279
 
1280
  .form-field label.frm_primary_label {
@@ -1401,11 +1426,14 @@ form .frm_blank_field label {
1401
  font-size: 15px;
1402
  }
1403
 
1404
- .frm-license-input i {
1405
- font-size: 20px;
 
1406
  margin-left: 5px;
 
1407
  }
1408
 
 
1409
  .frm-license-input span,
1410
  .frm-license-input i {
1411
  color: rgb(0, 131, 26);
@@ -1450,6 +1478,10 @@ div.frm_updated_message {
1450
  margin: 5px 65px;
1451
  }
1452
 
 
 
 
 
1453
  .frm_error_style {
1454
  color: #B94A48;
1455
  border-color: #EBCCD1;
@@ -1548,12 +1580,13 @@ div.frm_updated_message {
1548
  }
1549
 
1550
  .upgrade_to_pro a,
1551
- .upgrade_to_pro .frm_checkmark_icon {
1552
  color: var(--orange);
1553
  }
1554
 
1555
- .upgrade_to_pro table i {
1556
- font-size: 20px;
 
1557
  }
1558
 
1559
  .widefat.frm_pricing thead th,
@@ -1758,7 +1791,7 @@ h2.frm-h2 + .howto {
1758
 
1759
  a.frm_pro_tip {
1760
  font-size: 14px;
1761
- border: 1px solid var(--blue-border);
1762
  display: inline-block;
1763
  color: var(--dark-grey);
1764
  background: var(--light-blue);
@@ -1779,12 +1812,13 @@ a.frm_pro_tip:hover {
1779
  position: relative;
1780
  }
1781
 
 
1782
  a.frm_pro_tip i {
1783
- color: var(--primary-hover);
1784
  margin-right: 5px;
1785
  }
1786
 
1787
- .frm_field_list a.frm_pro_tip i {
1788
  position: absolute;
1789
  left: 15px;
1790
  top: calc(50% - 11px);
@@ -1796,7 +1830,7 @@ a.frm_pro_tip i {
1796
  }
1797
 
1798
  .frm-tip-cta {
1799
- color: var(--primary-hover);
1800
  }
1801
 
1802
  .nav-tab-wrapper .frm_pro_tip {
@@ -3059,6 +3093,7 @@ li.ui-state-default.edit_field_type_divider .frm-show-hover {
3059
  .frm_single_option .frm-drag {
3060
  font-size: 23px;
3061
  width: 22px;
 
3062
  margin-left: -6px;
3063
  color: var(--grey);
3064
  }
@@ -3166,7 +3201,9 @@ li.ui-state-default.selected .frm-show-click.frm_import_options select {
3166
  }
3167
 
3168
  .frm-right-panel .inside i,
3169
- .frm-form-setting-tabs a span {
 
 
3170
  margin: 0 5px;
3171
  display: inline-block;
3172
  width: 20px;
@@ -3175,10 +3212,16 @@ li.ui-state-default.selected .frm-show-click.frm_import_options select {
3175
  }
3176
 
3177
  .frm-right-panel .inside a:hover i,
 
 
3178
  .frm-form-setting-tabs a:hover span {
3179
  color: var(--dark-grey);
3180
  }
3181
 
 
 
 
 
3182
  #form_settings_page .tabs-panel,
3183
  .frm_settings_form .tabs-panel {
3184
  max-height: initial !important;
@@ -3356,9 +3399,11 @@ label.frm-example-icon {
3356
  display: inline-block !important;
3357
  }
3358
 
 
3359
  .frm-example-icon i {
 
 
3360
  font-size: 20px;
3361
- vertical-align: bottom;
3362
  color: var(--dark-grey);
3363
  }
3364
 
@@ -3388,7 +3433,10 @@ label.frm-example-icon {
3388
 
3389
  #frm_styling_form #frm_delete_style {
3390
  padding-right: 10px;
3391
- line-height: 30px;
 
 
 
3392
  }
3393
 
3394
  .frm_pro_form .frm_form_field.frm_lite_style,
@@ -3717,7 +3765,7 @@ label.frm_action_events {
3717
  word-break: break-word;
3718
  }
3719
 
3720
- .frm_actions_list span {
3721
  /* 50px total with 30px content */
3722
  background-color: var(--sidebar-color);
3723
  padding: 10px;
@@ -3737,31 +3785,45 @@ label.frm_action_events {
3737
  color: var(--grey);
3738
  }
3739
 
3740
- .frm_actions_list a i,
3741
- .frm_email_settings .widget-title .frm_form_action_icon {
3742
  height: 18px;
3743
  width: 18px;
3744
- font-size: 15px;
3745
- padding: 4px;
3746
- background-color: var(--grey-border);
3747
  color: var(--lightest-grey);
 
 
 
 
 
3748
  border-radius: 50%;
3749
  display: inline-block;
3750
  text-align: center;
3751
- text-decoration: none;
3752
  }
3753
 
3754
- .frm_actions_list a i {
3755
  background-color: var(--primary-hover);
3756
  height: 22px;
3757
  width: 22px;
3758
- font-size: 18px;
3759
  }
3760
 
 
 
 
 
 
 
 
 
 
3761
  .frm_actions_list i:before,
3762
- .frm_email_settings .widget-title .frm_form_action_icon:before {
 
3763
  height: 15px;
3764
  width: 15px;
 
3765
  }
3766
 
3767
  .frm_actions_list i:before {
@@ -3772,7 +3834,7 @@ label.frm_action_events {
3772
  background-color: var(--grey);
3773
  }
3774
 
3775
- .frm_actions_list .frm-inverse {
3776
  background-color: transparent;
3777
  color: var(--primary-hover);
3778
  padding: 0;
@@ -3780,7 +3842,16 @@ label.frm_action_events {
3780
  width: 100%;
3781
  }
3782
 
3783
- .frm_actions_list .frm-inverse:before {
 
 
 
 
 
 
 
 
 
3784
  height: 30px;
3785
  width: 100%;
3786
  font-size: 30px;
@@ -3789,19 +3860,21 @@ label.frm_action_events {
3789
  .frm_email_settings .widget-title .frm_form_action_icon.frm-inverse {
3790
  background: transparent;
3791
  padding: 0;
3792
- height: 22px;
3793
- width: 22px;
3794
  }
3795
 
3796
- .frm_email_settings .widget-title .frm_form_action_icon.frm-inverse:before {
 
3797
  color: var(--grey-border);
3798
- height: 22px;
3799
- width: 22px;
3800
- font-size: 22px;
3801
  line-height: 1em;
3802
  }
3803
 
3804
- .frm_email_settings .widget-title:hover .frm_form_action_icon.frm-inverse:before {
 
3805
  color: var(--grey);
3806
  }
3807
 
@@ -3818,6 +3891,10 @@ label.frm_action_events {
3818
  vertical-align: middle;
3819
  }
3820
 
 
 
 
 
3821
  .frm_email_icons a:hover,
3822
  .widget-top:hover .frm_email_icons a {
3823
  opacity: 1;
@@ -3827,6 +3904,7 @@ label.frm_action_events {
3827
  color: var(--grey);
3828
  }
3829
 
 
3830
  .frm_actions_list .frm_inactive_action i {
3831
  opacity: .4;
3832
  }
@@ -4040,6 +4118,7 @@ a.frm_add_logic_link.frm_hidden {
4040
  display: none;
4041
  }
4042
 
 
4043
  .frm_add_logic_link i {
4044
  margin-right: 5px;
4045
  }
@@ -4127,9 +4206,15 @@ a.frm_action_icon:hover {
4127
  .frm-field-action-icons a {
4128
  margin-left: 15px;
4129
  float: right;
 
 
 
 
 
4130
  color: var(--primary-hover) !important;
4131
  font-size: 17px;
4132
  width: 17px;
 
4133
  }
4134
 
4135
  .edit_field_type_end_divider .frm-field-action-icons {
@@ -4412,6 +4497,7 @@ span.howto {
4412
  }
4413
 
4414
  .repeat_format .frm_repeat_label,
 
4415
  .repeat_formattext i {
4416
  display: none;
4417
  }
@@ -4435,6 +4521,11 @@ a.frm_button:hover {
4435
  vertical-align: middle;
4436
  }
4437
 
 
 
 
 
 
4438
  .frm-right-panel .ui-state-default,
4439
  #postbox-container-1 .ui-state-default {
4440
  padding: 0;
@@ -4453,6 +4544,10 @@ ul.start_divider {
4453
  min-height: 0 !important;
4454
  }
4455
 
 
 
 
 
4456
  .frm-section-collapsed .frm_no_section_fields {
4457
  overflow: hidden;
4458
  padding: 0;
@@ -4557,7 +4652,9 @@ li.selected .divider_section_only:before {
4557
  color: var(--primary-color);
4558
  }
4559
 
 
4560
  .frm_remove_form_row i:before,
 
4561
  .frm_add_form_row i:before {
4562
  color: var(--primary-hover);
4563
  }
@@ -4790,9 +4887,10 @@ tr.frm_options_heading td {
4790
  display: block;
4791
  }
4792
 
4793
- .frm-large-plus {
4794
  color: var(--primary-hover);
4795
- font-size: 45px;
 
4796
  }
4797
 
4798
  .frm_drag_inst {
@@ -4875,6 +4973,8 @@ ul.frm-category-tabs {
4875
  box-shadow: none;
4876
  }
4877
 
 
 
4878
  .frm-category-tabs > li.active span,
4879
  .frm-category-tabs > li.active a {
4880
  color: var(--primary-color);
@@ -5059,6 +5159,10 @@ i.frm-show-box,
5059
  i.frm-show-inline-modal,
5060
  .frm-with-left-icon i,
5061
  .frm-with-right-icon i,
 
 
 
 
5062
  .frm-search span {
5063
  position: absolute;
5064
  padding: 7px 10px;
@@ -5069,6 +5173,7 @@ i.frm-show-inline-modal,
5069
  font-size: 18px;
5070
  }
5071
 
 
5072
  .frm-with-right-icon i {
5073
  right: 0;
5074
  top: -3px;
@@ -5076,6 +5181,8 @@ i.frm-show-inline-modal,
5076
  padding: 0 10px 0 5px;
5077
  }
5078
 
 
 
5079
  i.frm-show-box,
5080
  i.frm-show-inline-modal {
5081
  color: var(--primary-color);
@@ -5088,6 +5195,7 @@ i.frm-show-inline-modal {
5088
  padding: 7px 10px;
5089
  }
5090
 
 
5091
  .frm-open i.frm-show-inline-modal {
5092
  opacity: .5;
5093
  }
@@ -5109,9 +5217,10 @@ i.frm-show-inline-modal {
5109
  .frm_wrap .frm-with-right-icon textarea,
5110
  .frm_wrap .frm-with-right-icon input,
5111
  .frm_wrap .frm-with-right-icon input[type=text] {
5112
- padding-right: 27px;
5113
  }
5114
 
 
5115
  #frm-show-fields .frm-with-left-icon i {
5116
  padding-top: 10px;
5117
  }
@@ -5130,7 +5239,7 @@ i.frm-show-inline-modal {
5130
 
5131
  .frm-search input.frm-search-input {
5132
  border-radius: var(--border-radius);
5133
- padding-left: 33px;
5134
  }
5135
 
5136
  .frm-search input[name="s"] {
@@ -5168,6 +5277,7 @@ i.frm-show-inline-modal {
5168
  font-size: 13px;
5169
  }
5170
 
 
5171
  .frm-not-set i {
5172
  color: var(--primary-hover);
5173
  opacity: 1;
@@ -5279,6 +5389,7 @@ select[name="m"] {
5279
  padding: 15px 20px 10px;
5280
  }
5281
 
 
5282
  .post-type-frm_display #post-body .misc-pub-post-status:before,
5283
  .post-type-frm_display #post-body #visibility:before,
5284
  .post-type-frm_display .curtime #timestamp:before,
@@ -5348,7 +5459,7 @@ select.texture {
5348
  position: fixed;
5349
  z-index: 9999;
5350
  width: calc( var(--big-sidebar) - 40px );
5351
- height: 100vh;
5352
  overflow: hidden;
5353
  }
5354
 
@@ -5394,8 +5505,8 @@ ul .frm_col_two {
5394
  font-size: 17px !important;
5395
  }
5396
 
5397
- .settings-lite-cta .dashicons-yes {
5398
- color: #468847;
5399
  }
5400
 
5401
  .settings-lite-cta .postbox .inside {
@@ -5553,6 +5664,40 @@ ul .frm_col_two {
5553
  display: none;
5554
  }
5555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5556
  .frm_code_list a i,
5557
  .frmbutton.ui-sortable-helper i,
5558
  .field_type_list li.frmbutton i {
@@ -5560,14 +5705,17 @@ ul .frm_col_two {
5560
  color: var(--grey);
5561
  display: inline-block;
5562
  vertical-align: middle;
5563
- width: 38px;
5564
  height: 20px;
 
5565
  text-align: left;
5566
  font-size: 18px;
5567
  }
5568
 
 
5569
  .frm_code_list a i {
5570
  margin: 0 5px 0 0;
 
5571
  width: 15px;
5572
  font-size: 15px;
5573
  }
@@ -5576,6 +5724,7 @@ ul .frm_col_two {
5576
  font-size: inherit;
5577
  }
5578
 
 
5579
  #frm-insert-fields li a:hover i {
5580
  color: var(--dark-grey);
5581
  }
@@ -5723,7 +5872,8 @@ h2 .frm-sub-label {
5723
  #frm_upgrade_modal .frm_lock_icon {
5724
  display: block;
5725
  margin: 0 auto;
5726
- font-size: 35px;
 
5727
  color: #c4c4c4;
5728
  padding-bottom: 20px;
5729
  }
@@ -6314,7 +6464,7 @@ Responsive Design
6314
  padding: 15px 0 10px 10px;
6315
  }
6316
 
6317
- .frm-full-close span {
6318
  padding: 0;
6319
  }
6320
  }
@@ -6413,10 +6563,6 @@ Responsive Design
6413
  width: auto !important;
6414
  }
6415
 
6416
- html.wp-toolbar .frm-full-screen {
6417
- margin-top: -46px;
6418
- }
6419
-
6420
  .frm-white-body #publishing-action,
6421
  .frm_wrap #publishing-action {
6422
  line-height: normal;
@@ -6440,7 +6586,8 @@ Responsive Design
6440
  padding: 10px 5px 10px 40px;
6441
  }
6442
 
6443
- .frm-form-setting-tabs a span {
 
6444
  position: absolute;
6445
  left: 13px;
6446
  top: calc(50% - 10px);
@@ -6465,6 +6612,7 @@ Responsive Design
6465
  box-sizing: border-box;
6466
  }
6467
 
 
6468
  a.frm_add_logic_link i {
6469
  display: none;
6470
  }
@@ -6530,6 +6678,31 @@ Responsive Design
6530
  .frm-addons {
6531
  grid-template-columns: 1fr;
6532
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6533
  }
6534
 
6535
  @media only screen and (max-width: 700px) {
@@ -6543,21 +6716,14 @@ Responsive Design
6543
  --small-sidebar: 45px;
6544
  }
6545
 
6546
- html.wp-toolbar .frm-full-screen {
6547
- margin-top: 0;
6548
- }
6549
-
6550
- .frm-full-screen #wpbody {
6551
- padding-top: 0;
6552
- }
6553
-
6554
  .frm-form-setting-tabs a {
6555
  visibility: collapse;
6556
  font-size: 0;
6557
  padding: 0 15px;
6558
  }
6559
 
6560
- .frm-form-setting-tabs a span {
 
6561
  visibility: visible;
6562
  position: initial;
6563
  font-size: 18px;
65
  }
66
 
67
  .frm-full-screen.frm-admin-page-reports,
68
+ .frm-full-screen.frm-admin-page-entries,
69
  .frm-full-screen.post-type-frm_display {
70
  overflow: auto;
71
  }
77
  .frm-full-screen #wpbody-content,
78
  .frm-full-screen #wpbody,
79
  .frm-full-screen #wpcontent {
 
80
  padding-bottom: 0;
 
81
  }
82
 
83
+ .post-new-php.post-type-frm_display #screen-meta-links,
84
  .post-php.post-type-frm_display #screen-meta-links,
 
 
85
  .frm-full-screen #wpfooter {
86
  display: none;
87
  }
114
  border: none;
115
  }
116
 
 
 
 
 
117
  body.formidable_page_formidable-pro-upgrade,
118
  body.post-type-frm_display.edit-php,
119
  body.frm-white-body {
183
 
184
  .frm-short-list {
185
  overflow: auto;
186
+ max-height: 190px;
187
  }
188
 
189
  .frm-white-body table.frm-border td {
235
  display: inline-block;
236
  }
237
 
238
+ a h1 .frmsvg {
239
+ color: var(--medium-grey);
240
+ vertical-align: middle;
241
+ }
242
+
243
  .frm_wrap .view-switch a.current:before,
244
+ a .frmsvg,
245
  .frm_wrap a i,
246
  .frm_wrap a {
247
  color: var(--primary-color);
341
  .frm-full-close {
342
  display: none;
343
  float: right;
344
+ padding: 15px 0 14px 12px;
345
  border-left: 1px solid var(--grey-border);
346
  height: 100%;
347
  box-sizing: border-box;
355
  display: block;
356
  }
357
 
358
+ .frm-full-close .frmsvg {
359
  font-size: 20px;
360
  width: 20px;
361
  height: 20px;
362
  padding: 5px;
363
+ color: var(--grey);
364
  }
365
 
366
  .frm-full-screen.post-type-frm_display #frm_top_bar h1,
442
  }
443
 
444
  .frm_wrap .frm_page_container {
445
+ height: calc( 100vh - 32px );
446
  display: flex;
447
  flex-direction: column;
448
  overflow: hidden;
515
 
516
  .frm-default-switcher a {
517
  padding: 0 2px;
518
+ }
519
+
520
+ .frm-default-switcher a .frmsvg {
521
+ vertical-align: initial;
522
  }
523
 
524
  .frm-default-switcher a,
525
+ .frm-default-switcher a .frmsvg,
526
  .frm-default-switcher a i {
527
  color: var(--grey);
528
  }
529
 
530
  .frm-default-switcher a.current,
531
+ .frm-default-switcher a.current .frmsvg,
532
  .frm-default-switcher a.current i {
533
  color: var( --primary-color);
534
  }
544
  background: #fff;
545
  }
546
 
547
+ #frm_upgrade_modal .dismiss .frmsvg,
548
+ .frm-inline-modal .frmsvg,
549
+ #frm-bulk-modal .frmsvg,
550
+ .frm_has_shortcodes > .frmsvg,
551
  #frm_upgrade_modal .dismiss i,
552
  .frm-inline-modal i,
553
  #frm-bulk-modal i,
563
  font-weight: bold;
564
  }
565
 
566
+ #frm_upgrade_modal .dismiss .frmsvg,
567
+ .frm-inline-modal .frmsvg,
568
+ #frm-bulk-modal .frmsvg,
569
+ .frm_has_shortcodes .frmsvg,
570
  #frm_upgrade_modal .dismiss i,
571
  .frm-inline-modal i,
572
  #frm-bulk-modal i,
579
  text-align: center;
580
  }
581
 
582
+ #frm_confirm_modal .dismiss .frmsvg,
583
+ #frm_upgrade_modal .dismiss .frmsvg,
584
  #frm_confirm_modal .dismiss i,
585
  #frm_upgrade_modal .dismiss i {
586
  top: 7px;
587
  right: 7px;
588
  }
589
 
590
+ #frm-bulk-modal .frmsvg,
591
  #frm-bulk-modal i {
592
  top: 15px;
593
  right: 7px;
594
  }
595
 
596
+ .frm-inline-modal .frmsvg,
597
  .frm-inline-modal i {
598
  top: 18px;
599
  right: 7px;
602
  width: 11px;
603
  }
604
 
605
+ #frm_upgrade_modal .dismiss:hover .frmsvg,
606
+ .frm-inline-modal .dismiss:hover .frmsvg,
607
+ #frm-bulk-modal .dismiss:hover .frmsvg,
608
  #frm_upgrade_modal .dismiss i:hover,
609
  .frm-inline-modal i:hover,
610
  #frm-bulk-modal i:hover {
611
  background: var(--sidebar-color);
612
  }
613
 
614
+ #frm_upgrade_modal .dismiss .frmsvg,
615
+ .frm-inline-modal .dismiss .frmsvg,
616
+ #frm-bulk-modal .dismiss .frmsvg,
617
  #frm_upgrade_modal .dismiss .frm_close_icon,
618
  .frm-inline-modal .frm_close_icon,
619
  #frm-bulk-modal .frm_close_icon {
662
  font-weight: 600;
663
  }
664
 
 
 
 
 
665
  #form_settings_page .frm-inner-content {
666
+ padding-top: 0;
667
  padding-bottom: 150px;
668
  position: relative;
669
  }
1054
  }
1055
 
1056
  .frm-with-plus {
1057
+ padding-left: 10px !important;
 
1058
  }
1059
 
1060
+ .frm-button-primary .frmsvg {
1061
+ color: #fff;
 
 
 
 
1062
  }
1063
 
1064
  .frm_wrap .preview i {
1065
  font-size: inherit;
1066
  }
1067
 
1068
+ .wp-core-ui.frm-white-body .frm-button-secondary:hover .frmsvg,
1069
+ .frm_wrap .preview > .button:hover .frmsvg,
1070
  .wp-core-ui.frm-white-body .frm-button-secondary:hover i,
1071
  .frm_wrap .preview > .button:hover i {
1072
  color: #fff;
1189
  display: inline;
1190
  }
1191
 
1192
+ .frm_inline_block {
1193
+ display: inline-block !important;
1194
+ }
1195
+
1196
  .frm-lookup-modal .dismiss,
1197
  .frm-right-panel .inside a.frm_hidden,
1198
  ul.frm_form_nav > li.frm_hidden,
1211
  margin-top: 0 !important;
1212
  }
1213
 
1214
+ .postbox .inside > p.frm_no_bottom_margin:last-child,
1215
  .frm_no_bottom_margin {
1216
  margin-bottom: 0 !important;
1217
  }
1264
  }
1265
 
1266
  .frm-entry-container {
1267
+ margin: 20px 40px 40px;
1268
  padding: 0;
1269
  }
1270
 
1276
  padding: 20px;
1277
  }
1278
 
1279
+ .frm-new-entry {
1280
+ padding-top: 0;
1281
+ }
1282
+
1283
  .frm_inner_field_container > .frm_form_fields {
1284
  clear: both;
1285
  }
1299
 
1300
  #frm_form_editor_container {
1301
  position: relative;
1302
+ margin: 25px 50px 50px;
1303
  }
1304
 
1305
  .form-field label.frm_primary_label {
1426
  font-size: 15px;
1427
  }
1428
 
1429
+ .frm-license-input .frmsvg {
1430
+ width: 20px;
1431
+ height: 20px;
1432
  margin-left: 5px;
1433
+ vertical-align: text-top;
1434
  }
1435
 
1436
+ .frm-license-input .frmsvg,
1437
  .frm-license-input span,
1438
  .frm-license-input i {
1439
  color: rgb(0, 131, 26);
1478
  margin: 5px 65px;
1479
  }
1480
 
1481
+ #form_global_settings .frm_updated_message {
1482
+ margin: 5px 25px;
1483
+ }
1484
+
1485
  .frm_error_style {
1486
  color: #B94A48;
1487
  border-color: #EBCCD1;
1580
  }
1581
 
1582
  .upgrade_to_pro a,
1583
+ .upgrade_to_pro .frm-checked {
1584
  color: var(--orange);
1585
  }
1586
 
1587
+ .upgrade_to_pro table .frmsvg {
1588
+ height: 20px;
1589
+ width: 20px;
1590
  }
1591
 
1592
  .widefat.frm_pricing thead th,
1791
 
1792
  a.frm_pro_tip {
1793
  font-size: 14px;
1794
+ border: 1px solid var(--orange);
1795
  display: inline-block;
1796
  color: var(--dark-grey);
1797
  background: var(--light-blue);
1812
  position: relative;
1813
  }
1814
 
1815
+ a.frm_pro_tip .frmsvg,
1816
  a.frm_pro_tip i {
1817
+ color: var(--orange);
1818
  margin-right: 5px;
1819
  }
1820
 
1821
+ .frm_field_list a.frm_pro_tip .frmsvg {
1822
  position: absolute;
1823
  left: 15px;
1824
  top: calc(50% - 11px);
1830
  }
1831
 
1832
  .frm-tip-cta {
1833
+ color: var(--orange);
1834
  }
1835
 
1836
  .nav-tab-wrapper .frm_pro_tip {
3093
  .frm_single_option .frm-drag {
3094
  font-size: 23px;
3095
  width: 22px;
3096
+ height: 22px;
3097
  margin-left: -6px;
3098
  color: var(--grey);
3099
  }
3201
  }
3202
 
3203
  .frm-right-panel .inside i,
3204
+ .frm-right-panel .inside .frmsvg,
3205
+ .frm-form-setting-tabs a i,
3206
+ .frm-form-setting-tabs a .frmsvg {
3207
  margin: 0 5px;
3208
  display: inline-block;
3209
  width: 20px;
3212
  }
3213
 
3214
  .frm-right-panel .inside a:hover i,
3215
+ .frm-right-panel .inside a:hover .frmsvg,
3216
+ .frm-form-setting-tabs a:hover .frmsvg,
3217
  .frm-form-setting-tabs a:hover span {
3218
  color: var(--dark-grey);
3219
  }
3220
 
3221
+ .frm_settings_form .tabs-panel {
3222
+ padding: 0 25px;
3223
+ }
3224
+
3225
  #form_settings_page .tabs-panel,
3226
  .frm_settings_form .tabs-panel {
3227
  max-height: initial !important;
3399
  display: inline-block !important;
3400
  }
3401
 
3402
+ .frm-example-icon .frmsvg,
3403
  .frm-example-icon i {
3404
+ height: 20px;
3405
+ width: 20px;
3406
  font-size: 20px;
 
3407
  color: var(--dark-grey);
3408
  }
3409
 
3433
 
3434
  #frm_styling_form #frm_delete_style {
3435
  padding-right: 10px;
3436
+ }
3437
+
3438
+ #frm_styling_form #frm_delete_style .frmsvg {
3439
+ vertical-align: -webkit-baseline-middle;
3440
  }
3441
 
3442
  .frm_pro_form .frm_form_field.frm_lite_style,
3765
  word-break: break-word;
3766
  }
3767
 
3768
+ .frm_actions_list span.frm-outer-circle {
3769
  /* 50px total with 30px content */
3770
  background-color: var(--sidebar-color);
3771
  padding: 10px;
3785
  color: var(--grey);
3786
  }
3787
 
3788
+ .frm_actions_list a .frmsvg,
3789
+ .frm_actions_list a i {
3790
  height: 18px;
3791
  width: 18px;
3792
+ font-size: 18px;
3793
+ padding: 2px;
 
3794
  color: var(--lightest-grey);
3795
+ }
3796
+
3797
+ .frm_actions_list span.frm-inner-circle,
3798
+ .frm_email_settings .widget-title .frm_form_action_icon {
3799
+ background-color: var(--grey-border);
3800
  border-radius: 50%;
3801
  display: inline-block;
3802
  text-align: center;
 
3803
  }
3804
 
3805
+ .frm_actions_list span.frm-inner-circle {
3806
  background-color: var(--primary-hover);
3807
  height: 22px;
3808
  width: 22px;
3809
+ padding: 4px;
3810
  }
3811
 
3812
+ .frm_email_settings .widget-title .frm_form_action_icon {
3813
+ height: 15px;
3814
+ width: 15px;
3815
+ padding: 5px;
3816
+ color: var(--lightest-grey);
3817
+ vertical-align: middle;
3818
+ }
3819
+
3820
+ .frm_actions_list .frmsvg,
3821
  .frm_actions_list i:before,
3822
+ .frm_email_settings .widget-title .frm_form_action_icon i,
3823
+ .frm_email_settings .widget-title .frm_form_action_icon .frmsvg {
3824
  height: 15px;
3825
  width: 15px;
3826
+ vertical-align: text-top;
3827
  }
3828
 
3829
  .frm_actions_list i:before {
3834
  background-color: var(--grey);
3835
  }
3836
 
3837
+ .frm_actions_list span.frm-inner-circle.frm-inverse {
3838
  background-color: transparent;
3839
  color: var(--primary-hover);
3840
  padding: 0;
3842
  width: 100%;
3843
  }
3844
 
3845
+ .frm_actions_list span.frm-inverse i,
3846
+ .frm_actions_list span.frm-inverse .frmsvg {
3847
+ color: var(--primary-hover);
3848
+ height: 30px;
3849
+ width: 30px;
3850
+ font-size: 30px;
3851
+ padding: 0;
3852
+ }
3853
+
3854
+ .frm_actions_list i.frm-inverse:before {
3855
  height: 30px;
3856
  width: 100%;
3857
  font-size: 30px;
3860
  .frm_email_settings .widget-title .frm_form_action_icon.frm-inverse {
3861
  background: transparent;
3862
  padding: 0;
3863
+ height: 24px;
3864
+ width: 24px;
3865
  }
3866
 
3867
+ .frm_email_settings .widget-title .frm_form_action_icon.frm-inverse .frmsvg,
3868
+ .frm_email_settings .widget-title .frm_form_action_icon.frm-inverse i:before {
3869
  color: var(--grey-border);
3870
+ height: 24px;
3871
+ width: 24px;
3872
+ font-size: 24px;
3873
  line-height: 1em;
3874
  }
3875
 
3876
+ .frm_email_settings .widget-title:hover .frm_form_action_icon.frm-inverse .frmsvg,
3877
+ .frm_email_settings .widget-title:hover .frm_form_action_icon.frm-inverse i:before {
3878
  color: var(--grey);
3879
  }
3880
 
3891
  vertical-align: middle;
3892
  }
3893
 
3894
+ .frm_email_icons a .frmsvg {
3895
+ color: var(--grey);
3896
+ }
3897
+
3898
  .frm_email_icons a:hover,
3899
  .widget-top:hover .frm_email_icons a {
3900
  opacity: 1;
3904
  color: var(--grey);
3905
  }
3906
 
3907
+ .frm_actions_list .frm_inactive_action .frm-inner-circle,
3908
  .frm_actions_list .frm_inactive_action i {
3909
  opacity: .4;
3910
  }
4118
  display: none;
4119
  }
4120
 
4121
+ .frm_add_logic_link .frmsvg,
4122
  .frm_add_logic_link i {
4123
  margin-right: 5px;
4124
  }
4206
  .frm-field-action-icons a {
4207
  margin-left: 15px;
4208
  float: right;
4209
+ font-size: 17px;
4210
+ width: 17px;
4211
+ }
4212
+
4213
+ .frm-field-action-icons a .frmsvg {
4214
  color: var(--primary-hover) !important;
4215
  font-size: 17px;
4216
  width: 17px;
4217
+ height: 17px;
4218
  }
4219
 
4220
  .edit_field_type_end_divider .frm-field-action-icons {
4497
  }
4498
 
4499
  .repeat_format .frm_repeat_label,
4500
+ .repeat_formattext .frmsvg,
4501
  .repeat_formattext i {
4502
  display: none;
4503
  }
4521
  vertical-align: middle;
4522
  }
4523
 
4524
+ .frm_button .frmsvg {
4525
+ width: 13px;
4526
+ height: 13px;
4527
+ }
4528
+
4529
  .frm-right-panel .ui-state-default,
4530
  #postbox-container-1 .ui-state-default {
4531
  padding: 0;
4544
  min-height: 0 !important;
4545
  }
4546
 
4547
+ .frm-section-collapsed ul.start_divider {
4548
+ overflow: hidden;
4549
+ }
4550
+
4551
  .frm-section-collapsed .frm_no_section_fields {
4552
  overflow: hidden;
4553
  padding: 0;
4652
  color: var(--primary-color);
4653
  }
4654
 
4655
+ .frm_wrap .frm_remove_form_row .frmsvg,
4656
  .frm_remove_form_row i:before,
4657
+ .frm_wrap .frm_add_form_row .frmsvg,
4658
  .frm_add_form_row i:before {
4659
  color: var(--primary-hover);
4660
  }
4887
  display: block;
4888
  }
4889
 
4890
+ .frm-large-plus.frmsvg {
4891
  color: var(--primary-hover);
4892
+ height: 45px;
4893
+ width: 45px;
4894
  }
4895
 
4896
  .frm_drag_inst {
4973
  box-shadow: none;
4974
  }
4975
 
4976
+ .frm-category-tabs > li.active .frmsvg,
4977
+ .frm-category-tabs > li.active i,
4978
  .frm-category-tabs > li.active span,
4979
  .frm-category-tabs > li.active a {
4980
  color: var(--primary-color);
5159
  i.frm-show-inline-modal,
5160
  .frm-with-left-icon i,
5161
  .frm-with-right-icon i,
5162
+ .frmsvg.frm-show-box,
5163
+ .frmsvg.frm-show-inline-modal,
5164
+ .frm-with-left-icon .frmsvg,
5165
+ .frm-with-right-icon .frmsvg,
5166
  .frm-search span {
5167
  position: absolute;
5168
  padding: 7px 10px;
5173
  font-size: 18px;
5174
  }
5175
 
5176
+ .frm-with-right-icon .frmsvg,
5177
  .frm-with-right-icon i {
5178
  right: 0;
5179
  top: -3px;
5181
  padding: 0 10px 0 5px;
5182
  }
5183
 
5184
+ .frmsvg.frm-show-box,
5185
+ .frmsvg.frm-show-inline-modal,
5186
  i.frm-show-box,
5187
  i.frm-show-inline-modal {
5188
  color: var(--primary-color);
5195
  padding: 7px 10px;
5196
  }
5197
 
5198
+ .frm-open .frmsvg.frm-show-inline-modal,
5199
  .frm-open i.frm-show-inline-modal {
5200
  opacity: .5;
5201
  }
5217
  .frm_wrap .frm-with-right-icon textarea,
5218
  .frm_wrap .frm-with-right-icon input,
5219
  .frm_wrap .frm-with-right-icon input[type=text] {
5220
+ padding-right: 35px;
5221
  }
5222
 
5223
+ #frm-show-fields .frm-with-left-icon .frmsvg,
5224
  #frm-show-fields .frm-with-left-icon i {
5225
  padding-top: 10px;
5226
  }
5239
 
5240
  .frm-search input.frm-search-input {
5241
  border-radius: var(--border-radius);
5242
+ padding-left: 33px !important;
5243
  }
5244
 
5245
  .frm-search input[name="s"] {
5277
  font-size: 13px;
5278
  }
5279
 
5280
+ .frm-not-set .frmsvg,
5281
  .frm-not-set i {
5282
  color: var(--primary-hover);
5283
  opacity: 1;
5389
  padding: 15px 20px 10px;
5390
  }
5391
 
5392
+ .post-type-frm_display .misc-pub-section .frmsvg,
5393
  .post-type-frm_display #post-body .misc-pub-post-status:before,
5394
  .post-type-frm_display #post-body #visibility:before,
5395
  .post-type-frm_display .curtime #timestamp:before,
5459
  position: fixed;
5460
  z-index: 9999;
5461
  width: calc( var(--big-sidebar) - 40px );
5462
+ height: calc( 100vh - 32px );
5463
  overflow: hidden;
5464
  }
5465
 
5505
  font-size: 17px !important;
5506
  }
5507
 
5508
+ .frm-green-icons .frmsvg {
5509
+ color: var(--green);
5510
  }
5511
 
5512
  .settings-lite-cta .postbox .inside {
5664
  display: none;
5665
  }
5666
 
5667
+ .frmsvg {
5668
+ fill: currentColor;
5669
+ width: 18px;
5670
+ height: 18px;
5671
+ vertical-align: text-bottom;
5672
+ }
5673
+
5674
+ .frmsvg svg {
5675
+ pointer-events: none;
5676
+ }
5677
+
5678
+ .frmsvg.frm_svg20 {
5679
+ width: 20px;
5680
+ height: 20px;
5681
+ }
5682
+
5683
+ .frmsvg.frm_svg15 {
5684
+ width: 15px;
5685
+ height: 15px;
5686
+ }
5687
+
5688
+ .frmsvg.frm_svg14 {
5689
+ width: 14px;
5690
+ height: 14px;
5691
+ }
5692
+
5693
+ .frmsvg.frm_svg13 {
5694
+ width: 13px;
5695
+ height: 13px;
5696
+ }
5697
+
5698
+ .frm_code_list a .frmsvg,
5699
+ .frmbutton.ui-sortable-helper .frmsvg,
5700
+ .field_type_list li.frmbutton .frmsvg,
5701
  .frm_code_list a i,
5702
  .frmbutton.ui-sortable-helper i,
5703
  .field_type_list li.frmbutton i {
5705
  color: var(--grey);
5706
  display: inline-block;
5707
  vertical-align: middle;
5708
+ width: 20px;
5709
  height: 20px;
5710
+ padding-right: 15px;
5711
  text-align: left;
5712
  font-size: 18px;
5713
  }
5714
 
5715
+ .frm_code_list a .frmsvg,
5716
  .frm_code_list a i {
5717
  margin: 0 5px 0 0;
5718
+ padding: 0;
5719
  width: 15px;
5720
  font-size: 15px;
5721
  }
5724
  font-size: inherit;
5725
  }
5726
 
5727
+ #frm-insert-fields li a:hover .frmsvg,
5728
  #frm-insert-fields li a:hover i {
5729
  color: var(--dark-grey);
5730
  }
5872
  #frm_upgrade_modal .frm_lock_icon {
5873
  display: block;
5874
  margin: 0 auto;
5875
+ height: 35px;
5876
+ width: 35px;
5877
  color: #c4c4c4;
5878
  padding-bottom: 20px;
5879
  }
6464
  padding: 15px 0 10px 10px;
6465
  }
6466
 
6467
+ .frm-full-close .frmsvg {
6468
  padding: 0;
6469
  }
6470
  }
6563
  width: auto !important;
6564
  }
6565
 
 
 
 
 
6566
  .frm-white-body #publishing-action,
6567
  .frm_wrap #publishing-action {
6568
  line-height: normal;
6586
  padding: 10px 5px 10px 40px;
6587
  }
6588
 
6589
+ .frm-form-setting-tabs a .frmsvg,
6590
+ .frm-form-setting-tabs a i {
6591
  position: absolute;
6592
  left: 13px;
6593
  top: calc(50% - 10px);
6612
  box-sizing: border-box;
6613
  }
6614
 
6615
+ a.frm_add_logic_link .frmsvg,
6616
  a.frm_add_logic_link i {
6617
  display: none;
6618
  }
6678
  .frm-addons {
6679
  grid-template-columns: 1fr;
6680
  }
6681
+
6682
+ .frm_single_entry_page.frm_wrap .frm_page_container {
6683
+ height: auto;
6684
+ display: block;
6685
+ }
6686
+
6687
+ .frm_single_entry_page.frm_wrap .columns-2 {
6688
+ display: block;
6689
+ border-bottom: none;
6690
+ }
6691
+
6692
+ .frm_single_entry_page .wrap.frm-with-margin {
6693
+ margin: 10px 20px;
6694
+ }
6695
+
6696
+ .frm_single_entry_page #post-body-content + .frm-right-panel {
6697
+ width: auto;
6698
+ margin: 0 20px;
6699
+ border: 1px solid var(--sidebar-hover);
6700
+ border-radius: 6px;
6701
+ }
6702
+
6703
+ #wp-content-media-buttons a.frm_insert_form {
6704
+ padding: 0 15px;
6705
+ }
6706
  }
6707
 
6708
  @media only screen and (max-width: 700px) {
6716
  --small-sidebar: 45px;
6717
  }
6718
 
 
 
 
 
 
 
 
 
6719
  .frm-form-setting-tabs a {
6720
  visibility: collapse;
6721
  font-size: 0;
6722
  padding: 0 15px;
6723
  }
6724
 
6725
+ .frm-form-setting-tabs a .frmsvg,
6726
+ .frm-form-setting-tabs a i {
6727
  visibility: visible;
6728
  position: initial;
6729
  font-size: 18px;
css/frm_fonts.css CHANGED
@@ -1,8 +1,8 @@
1
  @font-face {
2
  font-family: 's11-fp';
3
- src: url('../fonts/s11-fp.ttf?v=6') format('truetype'),
4
- url('../fonts/s11-fp.woff?v=6') format('woff'),
5
- url('../fonts/s11-fp.svg?v=6#s11-fp') format('svg');
6
  font-weight: normal;
7
  font-style: normal;
8
  }
1
  @font-face {
2
  font-family: 's11-fp';
3
+ src: url('../fonts/s11-fp.ttf?v=7') format('truetype'),
4
+ url('../fonts/s11-fp.woff?v=7') format('woff'),
5
+ url('../fonts/s11-fp.svg?v=7#s11-fp') format('svg');
6
  font-weight: normal;
7
  font-style: normal;
8
  }
formidable.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Formidable Forms
4
  Description: Quickly and easily create drag-and-drop forms
5
- Version: 4.0.01
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
2
  /*
3
  Plugin Name: Formidable Forms
4
  Description: Quickly and easily create drag-and-drop forms
5
+ Version: 4.0.02
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
images/icons.svg ADDED
@@ -0,0 +1,1069 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg aria-hidden="true" style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <defs>
3
+ <symbol id="frm_logo_icon" viewBox="0 0 20 20">
4
+ <title>logo</title>
5
+ <path d="M9.626 12.809h4.743v2.497h-4.743v-2.497z"></path>
6
+ <path d="M13.385 4.82h-6.692c-0.569 0-1.062 0.462-1.062 1.031v1.465h8.738v-2.497h-0.984z"></path>
7
+ <path d="M13.307 8.814h-7.676v6.491h2.497v-3.994h5.179c0.456 0 0.863-0.305 1.007-0.718 0.036-0.094 0.055-0.196 0.055-0.295v-1.484h-1.062z"></path>
8
+ <path d="M10 20c-1.35 0-2.659-0.264-3.893-0.786-1.191-0.504-2.26-1.225-3.178-2.143s-1.639-1.988-2.143-3.178c-0.522-1.233-0.786-2.543-0.786-3.893s0.264-2.659 0.786-3.893c0.504-1.191 1.225-2.26 2.143-3.178s1.988-1.639 3.178-2.143c1.233-0.522 2.543-0.786 3.893-0.786s2.659 0.264 3.893 0.786c1.191 0.504 2.26 1.225 3.178 2.143s1.639 1.988 2.143 3.178c0.522 1.233 0.786 2.543 0.786 3.893s-0.264 2.659-0.786 3.893c-0.504 1.191-1.225 2.26-2.143 3.178s-1.988 1.639-3.178 2.143c-1.233 0.522-2.543 0.786-3.893 0.786zM10 1.276c-2.33 0-4.521 0.907-6.169 2.555s-2.555 3.839-2.555 6.169c0 2.33 0.907 4.521 2.555 6.169s3.839 2.555 6.169 2.555c2.33 0 4.521-0.907 6.169-2.555s2.555-3.839 2.555-6.169c0-2.33-0.907-4.521-2.555-6.169s-3.839-2.555-6.169-2.555z"></path>
9
+ </symbol>
10
+ <symbol id="frm_required_icon" viewBox="0 0 20 20">
11
+ <title>required</title>
12
+ <path d="M17.716 12.712l-4.938-2.712 4.938-2.712c0.41-0.225 0.554-0.743 0.321-1.147l-0.676-1.172c-0.234-0.405-0.754-0.538-1.154-0.296l-4.817 2.921 0.121-5.632c0.010-0.467-0.366-0.851-0.833-0.851h-1.353c-0.467 0-0.843 0.384-0.833 0.851l0.121 5.632-4.817-2.921c-0.4-0.242-0.92-0.109-1.154 0.296l-0.676 1.172c-0.234 0.405-0.089 0.922 0.321 1.147l4.938 2.712-4.938 2.712c-0.41 0.225-0.554 0.742-0.321 1.147l0.676 1.172c0.234 0.405 0.754 0.538 1.154 0.296l4.817-2.921-0.121 5.632c-0.010 0.467 0.366 0.851 0.833 0.851h1.353c0.467 0 0.843-0.384 0.833-0.851l-0.121-5.632 4.817 2.921c0.4 0.242 0.92 0.109 1.154-0.296l0.676-1.172c0.234-0.405 0.089-0.922-0.321-1.147z"></path>
13
+ </symbol>
14
+ <symbol id="frm_delete_icon" viewBox="0 0 20 20">
15
+ <title>delete</title>
16
+ <path d="M7.5 7.917v7.5c0 0.234-0.182 0.417-0.417 0.417h-0.833c-0.234 0-0.417-0.182-0.417-0.417v-7.5c0-0.234 0.182-0.417 0.417-0.417h0.833c0.234 0 0.417 0.182 0.417 0.417zM10.833 7.917v7.5c0 0.234-0.182 0.417-0.417 0.417h-0.833c-0.234 0-0.417-0.182-0.417-0.417v-7.5c0-0.234 0.182-0.417 0.417-0.417h0.833c0.234 0 0.417 0.182 0.417 0.417zM14.167 7.917v7.5c0 0.234-0.182 0.417-0.417 0.417h-0.833c-0.234 0-0.417-0.182-0.417-0.417v-7.5c0-0.234 0.182-0.417 0.417-0.417h0.833c0.234 0 0.417 0.182 0.417 0.417zM15.833 17.344v-12.344h-11.667v12.344c0 0.625 0.352 0.99 0.417 0.99h10.833c0.065 0 0.417-0.365 0.417-0.99zM7.083 3.333h5.833l-0.625-1.523c-0.039-0.052-0.156-0.13-0.221-0.143h-4.128c-0.078 0.013-0.182 0.091-0.221 0.143zM19.167 3.75v0.833c0 0.234-0.182 0.417-0.417 0.417h-1.25v12.344c0 1.432-0.938 2.656-2.083 2.656h-10.833c-1.146 0-2.083-1.172-2.083-2.604v-12.396h-1.25c-0.234 0-0.417-0.182-0.417-0.417v-0.833c0-0.234 0.182-0.417 0.417-0.417h4.023l0.911-2.174c0.26-0.638 1.042-1.159 1.732-1.159h4.167c0.69 0 1.471 0.521 1.732 1.159l0.911 2.174h4.023c0.234 0 0.417 0.182 0.417 0.417z"></path>
17
+ </symbol>
18
+ <symbol id="frm_delete_solid_icon" viewBox="0 0 20 20">
19
+ <title>delete_solid</title>
20
+ <path d="M18.663 3.36h-4.128l-0.93-2.198c-0.333-0.655-0.98-1.108-1.737-1.162l-0.007-0h-4.070c-0.78 0.005-1.448 0.477-1.739 1.15l-0.005 0.012-0.884 2.198h-3.826c-0.182 0.002-0.346 0.077-0.465 0.198l-0 0c-0.104 0.052-0.174 0.157-0.174 0.279v0.814c0.017 0.25 0.216 0.448 0.464 0.465l0.002 0h1.279v12.326c-0.008 0.073-0.013 0.157-0.013 0.243 0 1.207 0.919 2.199 2.096 2.314l0.010 0.001h10.814c1.195-0.153 2.11-1.164 2.11-2.389 0-0.101-0.006-0.2-0.018-0.298l0.001 0.012v-12.209h1.279c0.129-0.006 0.243-0.063 0.325-0.151l0-0c0.151-0.112 0.25-0.288 0.256-0.487l0-0.001v-0.477c0-0.353-0.286-0.64-0.64-0.64v0zM7.558 1.977c0.061-0.061 0.141-0.103 0.23-0.116l0.002-0h4.070c0.092 0.013 0.172 0.055 0.233 0.116l0 0 0.535 1.384h-5.709zM7.326 15.465c-0.017 0.25-0.216 0.448-0.464 0.465l-0.002 0h-0.814c-0.25-0.017-0.448-0.216-0.465-0.464l-0-0.002v-7.442c0.017-0.25 0.216-0.448 0.464-0.465l0.002-0h0.814c0.25 0.017 0.448 0.216 0.465 0.464l0 0.002zM10.698 15.465c-0.017 0.25-0.216 0.448-0.464 0.465l-0.002 0h-0.814c-0.25-0.017-0.448-0.216-0.465-0.464l-0-0.002v-7.442c0.017-0.25 0.216-0.448 0.464-0.465l0.002-0h0.814c0.25 0.017 0.448 0.216 0.465 0.464l0 0.002zM13.953 15.465c-0.017 0.25-0.216 0.448-0.464 0.465l-0.002 0h-0.814c-0.25-0.017-0.448-0.216-0.465-0.464l-0-0.002v-7.442c0.017-0.25 0.216-0.448 0.464-0.465l0.002-0h0.814c0.25 0.017 0.448 0.216 0.465 0.464l0 0.002z"></path>
21
+ </symbol>
22
+ <symbol id="frm_move_icon" viewBox="0 0 20 20">
23
+ <title>move</title>
24
+ <path d="M9.338 4.186h1.267v12.883h-1.267v-12.883z"></path>
25
+ <path d="M9.972 0.5l3.167 3.8h-6.333z"></path>
26
+ <path d="M19.472 10l-3.8 3.167v-6.333z"></path>
27
+ <path d="M6.805 15.7h6.333l-3.167 3.8-3.167-3.8z"></path>
28
+ <path d="M0.528 10.238l3.8-3.167v6.333z"></path>
29
+ <path d="M4.272 9.367h11.4v1.267h-11.4v-1.267z"></path>
30
+ </symbol>
31
+ <symbol id="frm_drag_icon" viewBox="0 0 20 20">
32
+ <title>drag</title>
33
+ <path d="M9.167 15c0 0.917-0.75 1.667-1.667 1.667s-1.667-0.75-1.667-1.667 0.75-1.667 1.667-1.667 1.667 0.75 1.667 1.667zM7.5 8.333c-0.917 0-1.667 0.75-1.667 1.667s0.75 1.667 1.667 1.667 1.667-0.75 1.667-1.667-0.75-1.667-1.667-1.667zM7.5 3.333c-0.917 0-1.667 0.75-1.667 1.667s0.75 1.667 1.667 1.667 1.667-0.75 1.667-1.667-0.75-1.667-1.667-1.667zM12.5 6.667c0.917 0 1.667-0.75 1.667-1.667s-0.75-1.667-1.667-1.667-1.667 0.75-1.667 1.667 0.75 1.667 1.667 1.667zM12.5 8.333c-0.917 0-1.667 0.75-1.667 1.667s0.75 1.667 1.667 1.667 1.667-0.75 1.667-1.667-0.75-1.667-1.667-1.667zM12.5 13.333c-0.917 0-1.667 0.75-1.667 1.667s0.75 1.667 1.667 1.667 1.667-0.75 1.667-1.667-0.75-1.667-1.667-1.667z"></path>
34
+ </symbol>
35
+ <symbol id="frm_clear_icon" viewBox="0 0 20 20">
36
+ <title>clear</title>
37
+ <path d="M20 20h-20v-20h20v20zM1.333 18.667h17.333v-17.333h-17.333v17.333z"></path>
38
+ <path d="M4.667 4.667h1.333v10.667h-1.333v-10.667z"></path>
39
+ </symbol>
40
+ <symbol id="frm_noclear_icon" viewBox="0 0 20 20">
41
+ <title>noclear</title>
42
+ <path d="M20 20h-20v-20h20v20zM1.333 18.667h17.333v-17.333h-17.333v17.333z"></path>
43
+ <path d="M4.667 4.667h6.667v10.667h-6.667v-10.667z"></path>
44
+ <path d="M14 4.667h1.333v10.667h-1.333v-10.667z"></path>
45
+ </symbol>
46
+ <symbol id="frm_duplicate_icon" viewBox="0 0 20 20">
47
+ <title>duplicate</title>
48
+ <path d="M1.25 0h13.75v1.25h-13.75v-1.25z"></path>
49
+ <path d="M13.75 0h1.25v5h-1.25v-5z"></path>
50
+ <path d="M1.25 0h13.75v1.25h-13.75v-1.25z"></path>
51
+ <path d="M5 3.75h13.75v1.25h-13.75v-1.25z"></path>
52
+ <path d="M17.5 3.75h1.25v12.5h-1.25v-12.5z"></path>
53
+ <path d="M1.25 0h1.25v16.25h-1.25v-16.25z"></path>
54
+ <path d="M1.25 15h5v1.25h-5v-1.25z"></path>
55
+ <path d="M5 3.75h1.25v16.25h-1.25v-16.25z"></path>
56
+ <path d="M5 18.75h10v1.25h-10v-1.25z"></path>
57
+ <path d="M13.75 15h1.25v5h-1.25v-5z"></path>
58
+ <path d="M13.75 15h5v1.25h-5v-1.25z"></path>
59
+ <path d="M8.75 7.5h6.25v1.25h-6.25v-1.25z"></path>
60
+ <path d="M8.75 10h6.25v1.25h-6.25v-1.25z"></path>
61
+ <path d="M8.75 12.5h3.75v1.25h-3.75v-1.25z"></path>
62
+ <path d="M14.941 20l-0.931-0.799 3.809-3.752 0.931 0.799z"></path>
63
+ </symbol>
64
+ <symbol id="frm_copy_icon" viewBox="0 0 20 20">
65
+ <title>copy</title>
66
+ <path d="M13.333 16.667v1.389c0 0.46-0.373 0.833-0.833 0.833h-9.444c-0.46 0-0.833-0.373-0.833-0.833v-12.778c0-0.46 0.373-0.833 0.833-0.833h2.5v10.278c0 1.072 0.872 1.944 1.944 1.944h5.833zM13.333 4.722v-3.611h-5.833c-0.46 0-0.833 0.373-0.833 0.833v12.778c0 0.46 0.373 0.833 0.833 0.833h9.444c0.46 0 0.833-0.373 0.833-0.833v-9.167h-3.611c-0.458 0-0.833-0.375-0.833-0.833zM17.534 3.645l-2.29-2.29c-0.151-0.151-0.359-0.244-0.589-0.244h-0.21v3.333h3.333v-0.21c0-0.23-0.093-0.438-0.244-0.589v0z"></path>
67
+ </symbol>
68
+ <symbol id="frm_clone_solid_icon" viewBox="0 0 20 20">
69
+ <title>clone_solid</title>
70
+ <path d="M18.125-0c1.036 0 1.875 0.839 1.875 1.875v11.25c0 1.036-0.839 1.875-1.875 1.875h-11.25c-1.036 0-1.875-0.839-1.875-1.875v-11.25c0-1.036 0.839-1.875 1.875-1.875h11.25M6.875 16.25c-1.723 0-3.125-1.402-3.125-3.125v-8.125h-1.875c-1.036 0-1.875 0.839-1.875 1.875v11.25c0 1.036 0.839 1.875 1.875 1.875h11.25c1.036 0 1.875-0.839 1.875-1.875v-1.875h-8.125z"></path>
71
+ </symbol>
72
+ <symbol id="frm_clone_icon" viewBox="0 0 20 20">
73
+ <title>clone</title>
74
+ <path d="M18.125 0h-12.5c-1.036 0-1.875 0.839-1.875 1.875v1.875h-1.875c-1.036 0-1.875 0.839-1.875 1.875v12.5c0 1.036 0.839 1.875 1.875 1.875h12.5c1.036 0 1.875-0.839 1.875-1.875v-1.875h1.875c1.036 0 1.875-0.839 1.875-1.875v-12.5c0-1.036-0.839-1.875-1.875-1.875zM14.141 18.125h-12.031c-0.129 0-0.234-0.105-0.234-0.234v0-12.031c0-0.129 0.105-0.234 0.234-0.234v0h1.641v8.75c0 1.036 0.839 1.875 1.875 1.875h8.75v1.641c0 0.129-0.105 0.234-0.234 0.234v0zM17.891 14.375h-12.031c-0.129 0-0.234-0.105-0.234-0.234v0-12.031c0-0.129 0.105-0.234 0.234-0.234v0h12.031c0.129 0 0.234 0.105 0.234 0.234v0 12.031c0 0.129-0.105 0.234-0.234 0.234v0z"></path>
75
+ </symbol>
76
+ <symbol id="frm_tooltip_icon" viewBox="0 0 20 20">
77
+ <title>tooltip</title>
78
+ <path d="M3.053 17.193c-1.884-1.821-3.053-4.37-3.053-7.193 0-5.523 4.477-10 10-10 2.823 0 5.372 1.169 7.19 3.050l0.003 0.003c1.737 1.796 2.807 4.247 2.807 6.947 0 5.523-4.477 10-10 10-2.7 0-5.151-1.070-6.95-2.81l0.003 0.003zM15.783 15.783c1.449-1.449 2.344-3.45 2.344-5.66 0-4.421-3.584-8.004-8.004-8.004-2.21 0-4.211 0.896-5.66 2.344v0c-1.449 1.449-2.344 3.45-2.344 5.66 0 4.421 3.584 8.004 8.004 8.004 2.21 0 4.211-0.896 5.66-2.344v0zM9.123 11.123v-2h2v6h-2v-4zM9.123 5.123h2v2h-2v-2z"></path>
79
+ </symbol>
80
+ <symbol id="frm_tooltip_solid_icon" viewBox="0 0 20 20">
81
+ <title>tooltip_solid</title>
82
+ <path d="M3.053 17.193c-1.884-1.821-3.053-4.37-3.053-7.193 0-5.523 4.477-10 10-10 2.823 0 5.372 1.169 7.19 3.050l0.003 0.003c1.737 1.796 2.807 4.247 2.807 6.947 0 5.523-4.477 10-10 10-2.7 0-5.151-1.070-6.95-2.81l0.003 0.003zM9.123 11.123v4h2v-6h-2v2zM9.123 5.123v2h2v-2h-2z"></path>
83
+ </symbol>
84
+ <symbol id="frm_forbid_icon" viewBox="0 0 20 20">
85
+ <title>forbid</title>
86
+ <path d="M10 20c-5.522 0-10-4.478-10-10s4.478-10 10-10 10 4.477 10 10c0 5.522-4.478 10-10 10zM2.5 10c0 1.614 0.52 3.098 1.388 4.322l10.435-10.435c-1.223-0.867-2.709-1.387-4.322-1.387-4.142 0-7.5 3.358-7.5 7.5zM16.112 5.678l-10.435 10.436c1.223 0.867 2.709 1.387 4.322 1.387 4.142 0 7.5-3.358 7.5-7.5 0-1.614-0.52-3.099-1.388-4.322z"></path>
87
+ </symbol>
88
+ <symbol id="frm_checkmark_icon" viewBox="0 0 20 20">
89
+ <title>checkmark</title>
90
+ <path d="M17.025 3.26l-10.275 10.275-3.775-3.775c-0.183-0.183-0.48-0.183-0.663 0l-1.105 1.105c-0.183 0.183-0.183 0.48 0 0.663l5.212 5.212c0.183 0.183 0.48 0.183 0.663 0l11.711-11.711c0.183-0.183 0.183-0.48 0-0.663l-1.105-1.105c-0.183-0.183-0.48-0.183-0.663 0z"></path>
91
+ </symbol>
92
+ <symbol id="frm_check_icon" viewBox="0 0 20 20">
93
+ <title>check</title>
94
+ <path d="M19.688 10c0 5.35-4.337 9.688-9.688 9.688s-9.688-4.337-9.688-9.688 4.337-9.688 9.688-9.688 9.688 4.337 9.688 9.688zM8.879 15.129l7.187-7.188c0.244-0.244 0.244-0.64 0-0.884l-0.884-0.884c-0.244-0.244-0.64-0.244-0.884 0l-5.862 5.862-2.737-2.737c-0.244-0.244-0.64-0.244-0.884 0l-0.884 0.884c-0.244 0.244-0.244 0.64 0 0.884l4.063 4.063c0.244 0.244 0.64 0.244 0.884 0z"></path>
95
+ </symbol>
96
+ <symbol id="frm_check1_icon" viewBox="0 0 20 20">
97
+ <title>check1</title>
98
+ <path d="M10 0.313c-5.35 0-9.688 4.337-9.688 9.688s4.337 9.688 9.688 9.688 9.688-4.337 9.688-9.688-4.337-9.688-9.688-9.688zM10 2.188c4.318 0 7.813 3.494 7.813 7.813s-3.494 7.813-7.813 7.813c-4.318 0-7.813-3.494-7.813-7.813s3.494-7.813 7.813-7.813zM15.477 7.276l-0.88-0.887c-0.182-0.184-0.479-0.185-0.663-0.003l-5.522 5.477-2.336-2.355c-0.182-0.184-0.479-0.185-0.663-0.003l-0.887 0.88c-0.184 0.182-0.185 0.479-0.003 0.663l3.546 3.575c0.182 0.184 0.479 0.185 0.663 0.003l6.742-6.688c0.184-0.182 0.185-0.479 0.003-0.663z"></path>
99
+ </symbol>
100
+ <symbol id="frm_plus_icon" viewBox="0 0 20 20">
101
+ <title>plus</title>
102
+ <path d="M15.199 9h-4.2v-4.2c0-0.552-0.447-0.6-1-0.6-0.552 0-1 0.047-1 0.6v4.2h-4.199c-0.553 0-0.6 0.448-0.6 1s0.047 1 0.6 1h4.199v4.2c0 0.552 0.448 0.6 1 0.6 0.553 0 1-0.048 1-0.6v-4.2h4.2c0.553 0 0.601-0.448 0.601-1s-0.048-1-0.601-1z"></path>
103
+ </symbol>
104
+ <symbol id="frm_plus1_icon" viewBox="0 0 20 20">
105
+ <title>plus1</title>
106
+ <path d="M11 5h-2v4h-4v2h4v4h2v-4h4v-2h-4v-4zM10 0c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM10 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"></path>
107
+ </symbol>
108
+ <symbol id="frm_plus2_icon" viewBox="0 0 20 20">
109
+ <title>plus2</title>
110
+ <path d="M10 0c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM15 11h-4v4h-2v-4h-4v-2h4v-4h2v4h4v2z"></path>
111
+ </symbol>
112
+ <symbol id="frm_plus3_icon" viewBox="0 0 20 20">
113
+ <title>plus3</title>
114
+ <path d="M15.556 0h-11.111c-2.444 0-4.444 2.001-4.444 4.444v11.111c0 2.444 2.001 4.445 4.444 4.445h11.111c2.444 0 4.445-2.001 4.445-4.444v-11.111c0-2.444-2.001-4.444-4.444-4.444zM15.556 11.111h-4.445v4.444h-2.222v-4.444h-4.444v-2.222h4.444v-4.444h2.222v4.444h4.444v2.222z"></path>
115
+ </symbol>
116
+ <symbol id="frm_plus4_icon" viewBox="0 0 20 20">
117
+ <title>plus4</title>
118
+ <path d="M19.375 7.5h-6.875v-6.875c0-0.345-0.28-0.625-0.625-0.625h-3.75c-0.345 0-0.625 0.28-0.625 0.625v6.875h-6.875c-0.345 0-0.625 0.28-0.625 0.625v3.75c0 0.345 0.28 0.625 0.625 0.625h6.875v6.875c0 0.345 0.28 0.625 0.625 0.625h3.75c0.345 0 0.625-0.28 0.625-0.625v-6.875h6.875c0.345 0 0.625-0.28 0.625-0.625v-3.75c0-0.345-0.28-0.625-0.625-0.625z"></path>
119
+ </symbol>
120
+ <symbol id="frm_minus_icon" viewBox="0 0 20 20">
121
+ <title>minus</title>
122
+ <path d="M15.199 9h-10.399c-0.553 0-0.6 0.448-0.6 1s0.047 1 0.6 1h10.399c0.553 0 0.601-0.448 0.601-1s-0.048-1-0.601-1z"></path>
123
+ </symbol>
124
+ <symbol id="frm_minus1_icon" viewBox="0 0 20 20">
125
+ <title>minus1</title>
126
+ <path d="M5 9v2h10v-2h-10zM10 0c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM10 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"></path>
127
+ </symbol>
128
+ <symbol id="frm_minus2_icon" viewBox="0 0 20 20">
129
+ <title>minus2</title>
130
+ <path d="M10 0c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM15 11h-10v-2h10v2z"></path>
131
+ </symbol>
132
+ <symbol id="frm_minus3_icon" viewBox="0 0 20 20">
133
+ <title>minus3</title>
134
+ <path d="M15.556 0h-11.111c-2.444 0-4.444 2.001-4.444 4.444v11.111c0 2.444 2.001 4.445 4.444 4.445h11.111c2.444 0 4.445-2.001 4.445-4.444v-11.111c0-2.444-2.001-4.444-4.444-4.444zM15.556 11.111h-11.111v-2.222h11.111v2.222z"></path>
135
+ </symbol>
136
+ <symbol id="frm_minus4_icon" viewBox="0 0 20 20">
137
+ <title>minus4</title>
138
+ <path d="M0 8.125v3.75c0 0.345 0.28 0.625 0.625 0.625h18.75c0.345 0 0.625-0.28 0.625-0.625v-3.75c0-0.345-0.28-0.625-0.625-0.625h-18.75c-0.345 0-0.625 0.28-0.625 0.625z"></path>
139
+ </symbol>
140
+ <symbol id="frm_cancel_icon" viewBox="0 0 20 20">
141
+ <title>cancel</title>
142
+ <path d="M10 0c-5.53 0-10 4.47-10 10s4.47 10 10 10 10-4.47 10-10-4.47-10-10-10zM15 13.59l-1.41 1.41-3.59-3.59-3.59 3.59-1.41-1.41 3.59-3.59-3.59-3.59 1.41-1.41 3.59 3.59 3.59-3.59 1.41 1.41-3.59 3.59 3.59 3.59z"></path>
143
+ </symbol>
144
+ <symbol id="frm_cancel1_icon" viewBox="0 0 20 20">
145
+ <title>cancel1</title>
146
+ <path d="M10 0c-5.53 0-10 4.47-10 10s4.47 10 10 10 10-4.47 10-10-4.47-10-10-10zM10 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM13.59 5l-3.59 3.59-3.59-3.59-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59z"></path>
147
+ </symbol>
148
+ <symbol id="frm_close_icon" viewBox="0 0 20 20">
149
+ <title>close</title>
150
+ <path d="M16.833 4.543l-1.376-1.376-5.457 5.457-5.457-5.457-1.376 1.376 5.457 5.457-5.457 5.457 1.376 1.376 5.457-5.457 5.457 5.457 1.376-1.376-5.457-5.457 5.457-5.457z"></path>
151
+ </symbol>
152
+ <symbol id="frm_report_problem_solid_icon" viewBox="0 0 20 20">
153
+ <title>report_problem_solid</title>
154
+ <path d="M19.775 16.389c0.641 1.111-0.164 2.5-1.444 2.5h-16.663c-1.283 0-2.083-1.391-1.444-2.5l8.331-14.445c0.641-1.111 2.247-1.109 2.887 0l8.331 14.445zM10 13.403c-0.882 0-1.597 0.715-1.597 1.597s0.715 1.597 1.597 1.597 1.597-0.715 1.597-1.597-0.715-1.597-1.597-1.597zM8.484 7.662l0.258 4.722c0.012 0.221 0.195 0.394 0.416 0.394h1.686c0.221 0 0.404-0.173 0.416-0.394l0.258-4.722c0.013-0.239-0.177-0.439-0.416-0.439h-2.201c-0.239 0-0.429 0.201-0.416 0.439z"></path>
155
+ </symbol>
156
+ <symbol id="frm_report_problem_icon" viewBox="0 0 20 20">
157
+ <title>report_problem</title>
158
+ <path d="M8.637 8.219l0.229 3.889c0.013 0.22 0.195 0.392 0.416 0.392h1.436c0.222 0 0.403-0.173 0.416-0.391l0-0.001 0.229-3.889c0.014-0.239-0.176-0.441-0.416-0.441h-1.894c-0.24 0-0.43 0.202-0.416 0.441zM11.458 14.444c0 0.805-0.653 1.458-1.458 1.458s-1.458-0.653-1.458-1.458 0.653-1.458 1.458-1.458 1.458 0.653 1.458 1.458zM11.444 1.944c-0.64-1.109-2.246-1.111-2.887 0l-8.331 14.445c-0.64 1.109 0.161 2.5 1.444 2.5h16.663c1.28 0 2.085-1.389 1.444-2.5l-8.331-14.445zM1.847 16.91l7.973-13.819c0.080-0.139 0.281-0.139 0.361 0l7.973 13.819c0.080 0.139-0.020 0.312-0.18 0.312h-15.945c-0.16 0-0.261-0.174-0.18-0.312z"></path>
159
+ </symbol>
160
+ <symbol id="frm_arrowup_icon" viewBox="0 0 20 20">
161
+ <title>arrowup</title>
162
+ <path d="M10 19.688c5.352 0 9.688-4.336 9.688-9.688s-4.336-9.688-9.688-9.688-9.688 4.336-9.688 9.688 4.336 9.688 9.688 9.688zM10 2.188c4.316 0 7.813 3.496 7.813 7.813s-3.496 7.813-7.813 7.813-7.813-3.496-7.813-7.813 3.496-7.813 7.813-7.813zM4.926 9.574l4.742-4.742c0.184-0.184 0.48-0.184 0.664 0l4.742 4.742c0.184 0.184 0.184 0.48 0 0.664l-0.766 0.766c-0.188 0.188-0.488 0.184-0.672-0.008l-2.621-2.746v6.281c0 0.258-0.211 0.469-0.469 0.469h-1.094c-0.258 0-0.469-0.211-0.469-0.469v-6.281l-2.621 2.746c-0.184 0.191-0.484 0.195-0.672 0.008l-0.766-0.766c-0.184-0.184-0.184-0.48 0-0.664z"></path>
163
+ </symbol>
164
+ <symbol id="frm_arrowup1_icon" viewBox="0 0 20 20">
165
+ <title>arrowup1</title>
166
+ <path d="M0.313 10c0-5.352 4.336-9.688 9.688-9.688s9.688 4.336 9.688 9.688-4.336 9.688-9.688 9.688-9.688-4.336-9.688-9.688zM5.922 11.129l2.828-2.949v7.133c0 0.52 0.418 0.938 0.938 0.938h0.625c0.52 0 0.938-0.418 0.938-0.938v-7.133l2.828 2.949c0.363 0.379 0.969 0.387 1.34 0.016l0.426-0.43c0.367-0.367 0.367-0.961 0-1.324l-5.18-5.184c-0.367-0.367-0.961-0.367-1.324 0l-5.188 5.184c-0.367 0.367-0.367 0.961 0 1.324l0.426 0.43c0.375 0.371 0.98 0.363 1.344-0.016z"></path>
167
+ </symbol>
168
+ <symbol id="frm_arrowup2_icon" viewBox="0 0 20 20">
169
+ <title>arrowup2</title>
170
+ <path d="M10.332 6.387l4.797 4.797c0.184 0.184 0.184 0.48 0 0.664l-0.883 0.883c-0.184 0.184-0.48 0.184-0.664 0l-3.582-3.582-3.582 3.582c-0.184 0.184-0.48 0.184-0.664 0l-0.883-0.883c-0.184-0.184-0.184-0.48 0-0.664l4.797-4.797c0.184-0.184 0.48-0.184 0.664 0zM18.75 3.125v13.75c0 1.035-0.84 1.875-1.875 1.875h-13.75c-1.035 0-1.875-0.84-1.875-1.875v-13.75c0-1.035 0.84-1.875 1.875-1.875h13.75c1.035 0 1.875 0.84 1.875 1.875zM16.875 16.641v-13.281c0-0.129-0.105-0.234-0.234-0.234h-13.281c-0.129 0-0.234 0.105-0.234 0.234v13.281c0 0.129 0.105 0.234 0.234 0.234h13.281c0.129 0 0.234-0.105 0.234-0.234z"></path>
171
+ </symbol>
172
+ <symbol id="frm_arrowup3_icon" viewBox="0 0 20 20">
173
+ <title>arrowup3</title>
174
+ <path d="M10.001 20c5.523 0 9.999-4.477 9.999-10s-4.476-10-9.999-10c-5.524 0-10.001 4.477-10.001 10s4.477 10 10.001 10zM10.001 2.174c4.323 0 7.825 3.504 7.825 7.826s-3.503 7.826-7.825 7.826c-4.324 0-7.827-3.503-7.827-7.826s3.503-7.826 7.827-7.826zM8.043 14.185h3.914v-4.446h2.446l-4.402-4.141-4.404 4.141h2.446v4.446z"></path>
175
+ </symbol>
176
+ <symbol id="frm_arrowup4_icon" viewBox="0 0 20 20">
177
+ <title>arrowup4</title>
178
+ <path d="M15.026 13.294h-10.052c-0.696 0-1.045-0.842-0.552-1.334l5.026-5.026c0.305-0.305 0.8-0.305 1.105 0l5.026 5.026c0.492 0.492 0.144 1.334-0.552 1.334z"></path>
179
+ </symbol>
180
+ <symbol id="frm_arrowup5_icon" viewBox="0 0 20 20">
181
+ <title>arrowup5</title>
182
+ <path d="M13.863 11.563h-7.727c-0.418 0-0.629-0.508-0.332-0.801l3.863-3.84c0.184-0.184 0.477-0.184 0.66 0l3.863 3.84c0.301 0.293 0.090 0.801-0.328 0.801zM0.313 10c0-5.352 4.336-9.688 9.688-9.688s9.688 4.336 9.688 9.688-4.336 9.688-9.688 9.688-9.688-4.336-9.688-9.688zM2.188 10c0 4.316 3.496 7.813 7.813 7.813s7.813-3.496 7.813-7.813-3.496-7.813-7.813-7.813-7.813 3.496-7.813 7.813z"></path>
183
+ </symbol>
184
+ <symbol id="frm_arrowup5_solid_icon" viewBox="0 0 20 20">
185
+ <title>arrowup5_solid</title>
186
+ <path d="M0.313 10c0-5.352 4.336-9.688 9.688-9.688s9.688 4.336 9.688 9.688-4.336 9.688-9.688 9.688-9.688-4.336-9.688-9.688zM15.137 11.074l-4.805-4.805c-0.184-0.184-0.48-0.184-0.664 0l-4.805 4.805c-0.297 0.297-0.086 0.801 0.332 0.801h9.609c0.418 0 0.629-0.504 0.332-0.801z"></path>
187
+ </symbol>
188
+ <symbol id="frm_arrowup7_icon" viewBox="0 0 20 20">
189
+ <title>arrowup7</title>
190
+ <path d="M0 10c0-5.523 4.477-10 10-10s10 4.477 10 10v0c0 5.523-4.477 10-10 10s-10-4.477-10-10v0zM10 18c4.418 0 8-3.582 8-8s-3.582-8-8-8v0c-4.418 0-8 3.582-8 8s3.582 8 8 8v0zM10.7 7.46l3.55 3.54-1.41 1.41-2.84-2.81-2.83 2.8-1.41-1.4 4.24-4.24 0.7 0.7z"></path>
191
+ </symbol>
192
+ <symbol id="frm_arrowup6_icon" viewBox="0 0 20 20">
193
+ <title>arrowup6</title>
194
+ <path d="M15.483 11.437c-0.407-0.418-4.695-4.502-4.695-4.502-0.218-0.223-0.503-0.335-0.788-0.335-0.286 0-0.571 0.112-0.788 0.335 0 0-4.288 4.084-4.696 4.502-0.407 0.418-0.435 1.17 0 1.616 0.436 0.445 1.043 0.481 1.576 0l3.908-3.747 3.907 3.747c0.534 0.481 1.142 0.445 1.576 0 0.436-0.447 0.409-1.199 0-1.616z"></path>
195
+ </symbol>
196
+ <symbol id="frm_arrowdown_icon" viewBox="0 0 20 20">
197
+ <title>arrowdown</title>
198
+ <path d="M10 0.313c-5.352 0-9.688 4.336-9.688 9.688s4.336 9.688 9.688 9.688 9.688-4.336 9.688-9.688-4.336-9.688-9.688-9.688zM10 17.813c-4.316 0-7.813-3.496-7.813-7.813s3.496-7.813 7.813-7.813 7.813 3.496 7.813 7.813-3.496 7.813-7.813 7.813zM15.074 9.762l-0.766-0.766c-0.188-0.188-0.488-0.184-0.672 0.008l-2.621 2.746v-6.281c0-0.258-0.211-0.469-0.469-0.469h-1.094c-0.258 0-0.469 0.211-0.469 0.469v6.281l-2.621-2.746c-0.184-0.191-0.484-0.195-0.672-0.008l-0.766 0.766c-0.184 0.184-0.184 0.48 0 0.664l4.742 4.742c0.184 0.184 0.48 0.184 0.664 0l4.742-4.742c0.184-0.184 0.184-0.48 0-0.664z"></path>
199
+ </symbol>
200
+ <symbol id="frm_arrowdown1_icon" viewBox="0 0 20 20">
201
+ <title>arrowdown1</title>
202
+ <path d="M19.688 10c0 5.352-4.336 9.688-9.688 9.688s-9.688-4.336-9.688-9.688 4.336-9.688 9.688-9.688 9.688 4.336 9.688 9.688zM14.078 8.871l-2.828 2.949v-7.133c0-0.52-0.418-0.938-0.938-0.938h-0.625c-0.52 0-0.938 0.418-0.938 0.938v7.133l-2.828-2.949c-0.363-0.379-0.969-0.387-1.34-0.016l-0.426 0.43c-0.367 0.367-0.367 0.961 0 1.324l5.18 5.184c0.367 0.367 0.961 0.367 1.324 0l5.184-5.184c0.367-0.367 0.367-0.961 0-1.324l-0.426-0.43c-0.371-0.371-0.977-0.363-1.34 0.016z"></path>
203
+ </symbol>
204
+ <symbol id="frm_arrowdown2_icon" viewBox="0 0 20 20">
205
+ <title>arrowdown2</title>
206
+ <path d="M9.668 13.613l-4.797-4.797c-0.184-0.184-0.184-0.48 0-0.664l0.883-0.883c0.184-0.184 0.48-0.184 0.664 0l3.582 3.582 3.582-3.582c0.184-0.184 0.48-0.184 0.664 0l0.883 0.883c0.184 0.184 0.184 0.48 0 0.664l-4.797 4.797c-0.184 0.184-0.48 0.184-0.664 0zM18.75 3.125v13.75c0 1.035-0.84 1.875-1.875 1.875h-13.75c-1.035 0-1.875-0.84-1.875-1.875v-13.75c0-1.035 0.84-1.875 1.875-1.875h13.75c1.035 0 1.875 0.84 1.875 1.875zM16.875 16.641v-13.281c0-0.129-0.105-0.234-0.234-0.234h-13.281c-0.129 0-0.234 0.105-0.234 0.234v13.281c0 0.129 0.105 0.234 0.234 0.234h13.281c0.129 0 0.234-0.105 0.234-0.234z"></path>
207
+ </symbol>
208
+ <symbol id="frm_arrowdown3_icon" viewBox="0 0 20 20">
209
+ <title>arrowdown3</title>
210
+ <path d="M10 0.8c-5.081 0-9.2 4.119-9.2 9.2s4.119 9.2 9.2 9.2 9.2-4.119 9.2-9.2-4.119-9.2-9.2-9.2zM10 17.2c-3.977 0-7.2-3.224-7.2-7.2s3.223-7.2 7.2-7.2 7.2 3.224 7.2 7.2-3.223 7.2-7.2 7.2zM11.8 6.15h-3.6v4.090h-2.25l4.050 3.81 4.050-3.81h-2.25v-4.090z"></path>
211
+ </symbol>
212
+ <symbol id="frm_arrowdown4_icon" viewBox="0 0 13 20">
213
+ <title>arrowdown4</title>
214
+ <path d="M1.223 7.5h10.051c0.695 0 1.043 0.84 0.551 1.332l-5.023 5.027c-0.305 0.305-0.801 0.305-1.105 0l-5.023-5.027c-0.492-0.492-0.145-1.332 0.551-1.332z"></path>
215
+ </symbol>
216
+ <symbol id="frm_arrowdown5_icon" viewBox="0 0 20 20">
217
+ <title>arrowdown5</title>
218
+ <path d="M6.137 8.438h7.727c0.418 0 0.629 0.508 0.332 0.801l-3.863 3.84c-0.184 0.184-0.477 0.184-0.66 0l-3.863-3.84c-0.301-0.293-0.090-0.801 0.328-0.801zM19.688 10c0 5.352-4.336 9.688-9.688 9.688s-9.688-4.336-9.688-9.688 4.336-9.688 9.688-9.688 9.688 4.336 9.688 9.688zM17.813 10c0-4.316-3.496-7.813-7.813-7.813s-7.813 3.496-7.813 7.813 3.496 7.813 7.813 7.813 7.813-3.496 7.813-7.813z"></path>
219
+ </symbol>
220
+ <symbol id="frm_arrowdown5_solid_icon" viewBox="0 0 20 20">
221
+ <title>arrowdown5_solid</title>
222
+ <path d="M19.688 10c0 5.352-4.336 9.688-9.688 9.688s-9.688-4.336-9.688-9.688 4.336-9.688 9.688-9.688 9.688 4.336 9.688 9.688zM4.863 8.926l4.805 4.805c0.184 0.184 0.48 0.184 0.664 0l4.805-4.805c0.297-0.297 0.086-0.801-0.332-0.801h-9.609c-0.418 0-0.629 0.504-0.332 0.801z"></path>
223
+ </symbol>
224
+ <symbol id="frm_arrowdown7_icon" viewBox="0 0 20 20">
225
+ <title>arrowdown7</title>
226
+ <path d="M20 10c0 5.523-4.477 10-10 10s-10-4.477-10-10v0c0-5.523 4.477-10 10-10s10 4.477 10 10v0zM10 2c-4.418 0-8 3.582-8 8s3.582 8 8 8v0c4.418 0 8-3.582 8-8s-3.582-8-8-8v0zM9.3 12.54l-3.55-3.54 1.41-1.41 2.84 2.81 2.83-2.82 1.41 1.42-4.24 4.24-0.7-0.7z"></path>
227
+ </symbol>
228
+ <symbol id="frm_arrowdown6_icon" viewBox="0 0 20 20">
229
+ <title>arrowdown6</title>
230
+ <path d="M15.483 8.563c-0.407 0.418-4.695 4.503-4.695 4.503-0.218 0.223-0.503 0.334-0.788 0.334-0.286 0-0.571-0.111-0.788-0.334 0 0-4.288-4.085-4.696-4.503-0.407-0.418-0.435-1.169 0-1.616 0.436-0.446 1.043-0.481 1.576 0l3.908 3.748 3.907-3.747c0.534-0.481 1.142-0.446 1.576 0 0.436 0.446 0.409 1.198 0 1.615z"></path>
231
+ </symbol>
232
+ <symbol id="frm_arrow_left_icon" viewBox="0 0 20 20">
233
+ <title>arrow_left</title>
234
+ <path d="M11.437 15.483c-0.418-0.407-4.503-4.695-4.503-4.695-0.223-0.218-0.334-0.503-0.334-0.788 0-0.286 0.111-0.571 0.334-0.788 0 0 4.085-4.288 4.503-4.696 0.418-0.407 1.169-0.435 1.616 0 0.446 0.436 0.481 1.043 0 1.576l-3.748 3.908 3.747 3.907c0.481 0.534 0.446 1.142 0 1.576-0.446 0.436-1.198 0.409-1.615 0z"></path>
235
+ </symbol>
236
+ <symbol id="frm_arrow_right_icon" viewBox="0 0 20 20">
237
+ <title>arrow_right</title>
238
+ <path d="M8.563 4.517c0.418 0.407 4.503 4.695 4.503 4.695 0.223 0.218 0.334 0.503 0.334 0.788 0 0.286-0.111 0.571-0.334 0.788 0 0-4.085 4.288-4.503 4.696-0.418 0.407-1.169 0.435-1.616 0-0.446-0.436-0.481-1.043 0-1.576l3.748-3.908-3.747-3.907c-0.481-0.534-0.446-1.142 0-1.576 0.446-0.436 1.198-0.409 1.615 0z"></path>
239
+ </symbol>
240
+ <symbol id="frm_filter_icon" viewBox="0 0 20 20">
241
+ <title>filter</title>
242
+ <path d="M16.538 3.333l-5.508 6.512c-0.123 0.144-0.197 0.332-0.197 0.538v5.768l-1.667-0.833v-4.935c0.001-0.189-0.064-0.381-0.197-0.538l-5.507-6.512zM18.333 1.667h-16.667c-0.46 0-0.833 0.373-0.833 0.833 0 0.206 0.074 0.394 0.197 0.538l6.47 7.65v5.145c0 0.324 0.185 0.606 0.461 0.745l3.333 1.667c0.412 0.206 0.912 0.039 1.118-0.372 0.060-0.122 0.088-0.251 0.088-0.373v-6.812l6.47-7.65c0.297-0.352 0.253-0.877-0.098-1.174-0.157-0.133-0.349-0.198-0.538-0.197z"></path>
243
+ </symbol>
244
+ <symbol id="frm_download_icon" viewBox="0 0 20 20">
245
+ <title>download</title>
246
+ <path d="M18 13v4c0 0.137-0.027 0.266-0.075 0.382-0.050 0.122-0.125 0.232-0.218 0.325s-0.203 0.167-0.325 0.218c-0.116 0.048-0.245 0.075-0.382 0.075h-14c-0.137 0-0.266-0.027-0.382-0.075-0.122-0.050-0.232-0.125-0.325-0.218s-0.167-0.203-0.218-0.325c-0.048-0.116-0.075-0.245-0.075-0.382v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.405 0.081 0.793 0.228 1.148 0.152 0.368 0.375 0.698 0.651 0.974s0.606 0.499 0.974 0.651c0.354 0.146 0.742 0.227 1.147 0.227h14c0.405 0 0.793-0.081 1.148-0.228 0.368-0.152 0.698-0.375 0.974-0.651s0.499-0.606 0.651-0.974c0.146-0.354 0.227-0.742 0.227-1.147v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM11 10.586v-9.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v9.586l-3.293-3.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5 5c0.002 0.002 0.004 0.004 0.006 0.006 0.095 0.093 0.203 0.163 0.318 0.211 0.12 0.050 0.249 0.075 0.377 0.076 0.004 0 0.008 0 0.011 0 0.128-0.001 0.257-0.026 0.377-0.076 0.118-0.049 0.228-0.121 0.324-0.217l5-5c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z"></path>
247
+ </symbol>
248
+ <symbol id="frm_upload2_icon" viewBox="0 0 20 20">
249
+ <title>upload2</title>
250
+ <path d="M15 16.786c0-0.391-0.324-0.714-0.714-0.714s-0.714 0.324-0.714 0.714 0.324 0.714 0.714 0.714 0.714-0.324 0.714-0.714zM17.857 16.786c0-0.391-0.324-0.714-0.714-0.714s-0.714 0.324-0.714 0.714 0.324 0.714 0.714 0.714 0.714-0.324 0.714-0.714zM19.286 14.286v3.571c0 0.592-0.48 1.071-1.071 1.071h-16.429c-0.592 0-1.071-0.48-1.071-1.071v-3.571c0-0.592 0.48-1.071 1.071-1.071h4.766c0.301 0.826 1.094 1.429 2.020 1.429h2.857c0.926 0 1.719-0.603 2.020-1.429h4.766c0.592 0 1.071 0.48 1.071 1.071zM15.658 7.054c-0.112 0.268-0.368 0.446-0.658 0.446h-2.857v5c0 0.391-0.324 0.714-0.714 0.714h-2.857c-0.391 0-0.714-0.324-0.714-0.714v-5h-2.857c-0.29 0-0.547-0.179-0.658-0.446-0.112-0.257-0.056-0.569 0.156-0.77l5-5c0.134-0.145 0.324-0.212 0.502-0.212s0.368 0.067 0.502 0.212l5 5c0.212 0.201 0.268 0.513 0.156 0.77z"></path>
251
+ </symbol>
252
+ <symbol id="frm_upload_icon" viewBox="0 0 20 20">
253
+ <title>upload</title>
254
+ <path d="M18 13v4c0 0.137-0.027 0.266-0.075 0.382-0.050 0.122-0.125 0.232-0.218 0.325s-0.203 0.167-0.325 0.218c-0.116 0.048-0.245 0.075-0.382 0.075h-14c-0.137 0-0.266-0.027-0.382-0.075-0.122-0.050-0.232-0.125-0.325-0.218s-0.167-0.203-0.218-0.325c-0.048-0.116-0.075-0.245-0.075-0.382v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.405 0.081 0.793 0.228 1.148 0.152 0.368 0.375 0.698 0.651 0.974s0.606 0.499 0.974 0.651c0.354 0.146 0.742 0.227 1.147 0.227h14c0.405 0 0.793-0.081 1.148-0.228 0.368-0.152 0.698-0.375 0.974-0.651s0.499-0.606 0.651-0.974c0.146-0.354 0.227-0.742 0.227-1.147v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM9 3.414v9.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-9.586l3.293 3.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5-5c-0.001-0.001-0.003-0.002-0.004-0.004-0.095-0.094-0.204-0.165-0.32-0.213-0.245-0.101-0.521-0.101-0.766 0-0.116 0.048-0.225 0.119-0.32 0.213-0.001 0.001-0.003 0.002-0.004 0.004l-5 5c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z"></path>
255
+ </symbol>
256
+ <symbol id="frm_download2_icon" viewBox="0 0 20 20">
257
+ <title>download2</title>
258
+ <path d="M8.611 1.111h2.778c0.462 0 0.833 0.372 0.833 0.833v5.833h3.045c0.618 0 0.927 0.747 0.49 1.184l-5.281 5.285c-0.26 0.26-0.688 0.26-0.948 0l-5.288-5.285c-0.438-0.438-0.128-1.184 0.49-1.184h3.049v-5.833c0-0.462 0.372-0.833 0.833-0.833zM18.889 14.167v3.889c0 0.462-0.372 0.833-0.833 0.833h-16.111c-0.462 0-0.833-0.372-0.833-0.833v-3.889c0-0.462 0.372-0.833 0.833-0.833h5.094l1.701 1.701c0.698 0.698 1.823 0.698 2.521 0l1.701-1.701h5.094c0.462 0 0.833 0.372 0.833 0.833zM14.583 17.222c0-0.382-0.313-0.694-0.694-0.694s-0.694 0.313-0.694 0.694 0.313 0.694 0.694 0.694 0.694-0.313 0.694-0.694zM16.806 17.222c0-0.382-0.313-0.694-0.694-0.694s-0.694 0.313-0.694 0.694 0.313 0.694 0.694 0.694 0.694-0.313 0.694-0.694z"></path>
259
+ </symbol>
260
+ <symbol id="frm_hard_drive_icon" viewBox="0 0 20 20">
261
+ <title>hard_drive</title>
262
+ <path d="M18.182 10.909v4.545c0 0.125-0.025 0.242-0.068 0.347-0.045 0.111-0.114 0.211-0.198 0.295s-0.185 0.152-0.295 0.198c-0.105 0.044-0.223 0.068-0.347 0.068h-14.545c-0.125 0-0.242-0.025-0.347-0.068-0.111-0.045-0.211-0.114-0.295-0.198s-0.152-0.185-0.198-0.295c-0.044-0.105-0.068-0.223-0.068-0.347v-4.545zM4.858 4.144c0.060-0.119 0.145-0.224 0.247-0.306 0.080-0.065 0.17-0.115 0.266-0.15 0.093-0.033 0.194-0.051 0.301-0.051h8.648c0.136 0.001 0.268 0.031 0.387 0.085 0.094 0.043 0.179 0.101 0.253 0.172 0.071 0.069 0.132 0.151 0.181 0.25l2.477 4.947h-15.238zM3.233 3.329l-3.136 6.264c-0.025 0.050-0.045 0.102-0.060 0.154-0.025 0.085-0.037 0.171-0.036 0.254v5.455c0 0.368 0.074 0.721 0.207 1.044 0.138 0.335 0.341 0.635 0.592 0.885s0.551 0.454 0.885 0.592c0.322 0.133 0.675 0.206 1.043 0.206h14.545c0.368 0 0.721-0.074 1.044-0.207 0.335-0.138 0.635-0.341 0.885-0.592s0.454-0.551 0.592-0.885c0.133-0.322 0.206-0.675 0.206-1.043v-5.455c0 0 0 0 0 0 0-0.137-0.030-0.266-0.083-0.379-0.005-0.009-0.009-0.019-0.014-0.028l-0.008-0.016-3.128-6.247c-0.14-0.281-0.325-0.531-0.542-0.742-0.225-0.217-0.483-0.392-0.76-0.519-0.354-0.161-0.739-0.247-1.132-0.25h-8.661c-0.317 0-0.623 0.055-0.908 0.155-0.295 0.105-0.565 0.258-0.804 0.451-0.301 0.244-0.55 0.551-0.728 0.905zM5.455 13.636c0-0.502-0.407-0.909-0.909-0.909s-0.909 0.407-0.909 0.909 0.407 0.909 0.909 0.909 0.909-0.407 0.909-0.909zM9.091 13.636c0-0.502-0.407-0.909-0.909-0.909s-0.909 0.407-0.909 0.909 0.407 0.909 0.909 0.909 0.909-0.407 0.909-0.909z"></path>
263
+ </symbol>
264
+ <symbol id="frm_pencil_solid_icon" viewBox="0 0 20 20">
265
+ <title>pencil_solid</title>
266
+ <path d="M1.66 13.406c-0.109 0.109-0.191 0.245-0.234 0.398l-0.002 0.006-1.368 5.013c-0.021 0.072-0.033 0.154-0.033 0.24s0.012 0.168 0.034 0.246l-0.002-0.006c0.109 0.39 0.461 0.672 0.879 0.672 0.085 0 0.168-0.012 0.246-0.034l-0.006 0.002 5.013-1.368c0.159-0.044 0.295-0.126 0.404-0.235l0.191-0.191-4.933-4.933zM2.237 17.76l0.003 0.003h-0.004z"></path>
267
+ <path d="M19.656 2.232c-0.186-0.44-0.441-0.815-0.757-1.131v0c-0.63-0.631-1.502-1.022-2.464-1.022-0.001 0-0.002 0-0.004 0h0c-0.001 0-0.002 0-0.003 0-0.963 0-1.834 0.391-2.464 1.022l-1.3 1.299 4.935 4.935 1.299-1.299c0.631-0.632 1.022-1.505 1.022-2.469 0-0.482-0.097-0.941-0.274-1.358l0.009 0.023z"></path>
268
+ <path d="M2.928 12.138l8.661-8.661 4.935 4.935-8.661 8.661-4.935-4.935z"></path>
269
+ </symbol>
270
+ <symbol id="frm_pencil_icon" viewBox="0 0 20 20">
271
+ <title>pencil</title>
272
+ <path d="M19.656 2.232c-0.186-0.44-0.441-0.816-0.757-1.131v0c-0.631-0.632-1.502-1.022-2.465-1.022-0.001 0-0.002 0-0.004 0h0c-0.001 0-0.002 0-0.003 0-0.963 0-1.834 0.391-2.465 1.022l-12.309 12.309c-0.109 0.109-0.191 0.245-0.234 0.398l-0.002 0.006-1.368 5.015c-0.021 0.072-0.033 0.154-0.033 0.24s0.012 0.168 0.034 0.246l-0.002-0.006c0.109 0.39 0.461 0.672 0.879 0.672 0.085 0 0.168-0.012 0.246-0.034l-0.006 0.002 5.015-1.368c0.159-0.044 0.296-0.126 0.404-0.235l12.31-12.308c0.632-0.632 1.022-1.505 1.022-2.469 0-0.482-0.098-0.941-0.274-1.358l0.009 0.023zM12.875 4.767l2.358 2.358-8.663 8.664-2.357-2.358zM2.23 17.77l0.883-3.241 0.020-0.020 2.358 2.358-0.020 0.019zM17.971 4.208c-0.089 0.21-0.211 0.389-0.362 0.54l-1.299 1.299-2.358-2.358 1.3-1.3c0.302-0.301 0.718-0.487 1.178-0.487 0.921 0 1.668 0.747 1.668 1.668 0 0.23-0.047 0.449-0.131 0.648l0.004-0.011z"></path>
273
+ </symbol>
274
+ <symbol id="frm_signature_icon" viewBox="0 0 20 20">
275
+ <title>signature</title>
276
+ <path d="M19.658 2.232c-0.539-1.275-1.779-2.153-3.225-2.153-0.964 0-1.837 0.391-2.468 1.022l-12.309 12.309c-0.109 0.109-0.191 0.245-0.234 0.398l-0.002 0.006-1.368 5.015c-0.021 0.072-0.033 0.154-0.033 0.24s0.012 0.168 0.034 0.246l-0.002-0.006c0.109 0.391 0.461 0.672 0.88 0.672 0.085 0 0.168-0.012 0.246-0.034l-0.006 0.002 5.015-1.368c0.159-0.044 0.296-0.126 0.404-0.235l12.311-12.308c0.632-0.632 1.022-1.505 1.022-2.469 0-0.482-0.098-0.941-0.274-1.358l0.009 0.023zM12.876 4.767l2.358 2.358-8.663 8.664-2.357-2.358zM2.231 17.77l0.883-3.241 0.020-0.020 2.358 2.358-0.018 0.020zM17.973 4.208c-0.089 0.21-0.211 0.389-0.362 0.54l-1.299 1.299-2.358-2.358 1.3-1.3c0.302-0.301 0.718-0.487 1.178-0.487 0.921 0 1.668 0.747 1.668 1.668 0 0.23-0.047 0.449-0.131 0.648l0.004-0.011z"></path>
277
+ <path d="M9.055 17.865h10.868v1.043h-10.868v-1.043z"></path>
278
+ </symbol>
279
+ <symbol id="frm_user_icon" viewBox="0 0 20 20">
280
+ <title>user</title>
281
+ <path d="M19 19v-2c0-0.675-0.134-1.322-0.379-1.912-0.254-0.613-0.625-1.163-1.085-1.623s-1.011-0.832-1.623-1.085c-0.591-0.246-1.238-0.38-1.913-0.38h-8c-0.675 0-1.322 0.134-1.912 0.379-0.613 0.254-1.163 0.625-1.623 1.085s-0.832 1.011-1.085 1.623c-0.246 0.591-0.38 1.238-0.38 1.913v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2c0-0.408 0.081-0.795 0.227-1.147 0.152-0.366 0.375-0.697 0.652-0.974s0.608-0.5 0.974-0.652c0.352-0.146 0.739-0.227 1.147-0.227h8c0.408 0 0.795 0.081 1.147 0.227 0.366 0.152 0.697 0.375 0.974 0.652s0.5 0.608 0.652 0.974c0.146 0.352 0.227 0.739 0.227 1.147v2c0 0.552 0.448 1 1 1s1-0.448 1-1zM15 5c0-0.675-0.134-1.322-0.379-1.912-0.254-0.613-0.625-1.163-1.085-1.623s-1.011-0.832-1.623-1.085c-0.591-0.246-1.238-0.38-1.913-0.38s-1.322 0.134-1.912 0.379c-0.613 0.254-1.163 0.625-1.624 1.085s-0.831 1.011-1.085 1.624c-0.245 0.59-0.379 1.237-0.379 1.912s0.134 1.322 0.379 1.912c0.254 0.613 0.625 1.163 1.085 1.623s1.011 0.832 1.623 1.085c0.591 0.246 1.238 0.38 1.913 0.38s1.322-0.134 1.912-0.379c0.613-0.254 1.163-0.625 1.623-1.085s0.832-1.011 1.085-1.623c0.246-0.591 0.38-1.238 0.38-1.913zM13 5c0 0.408-0.081 0.795-0.227 1.147-0.152 0.366-0.375 0.697-0.652 0.974s-0.608 0.5-0.974 0.652c-0.352 0.146-0.739 0.227-1.147 0.227s-0.795-0.081-1.147-0.227c-0.366-0.152-0.697-0.375-0.974-0.652s-0.5-0.608-0.652-0.974c-0.146-0.352-0.227-0.739-0.227-1.147s0.081-0.795 0.227-1.147c0.152-0.366 0.375-0.697 0.652-0.974s0.608-0.5 0.974-0.652c0.352-0.146 0.739-0.227 1.147-0.227s0.795 0.081 1.147 0.227c0.366 0.152 0.697 0.375 0.974 0.652s0.5 0.608 0.652 0.974c0.146 0.352 0.227 0.739 0.227 1.147z"></path>
282
+ </symbol>
283
+ <symbol id="frm_register_icon" viewBox="0 0 23 20">
284
+ <title>register</title>
285
+ <path d="M16.646 18.813v-1.958c0-0.661-0.131-1.294-0.371-1.872-0.249-0.6-0.612-1.139-1.062-1.589s-0.99-0.815-1.589-1.062c-0.579-0.241-1.212-0.372-1.873-0.372h-6.854c-0.661 0-1.294 0.131-1.872 0.371-0.6 0.249-1.139 0.612-1.589 1.062s-0.815 0.99-1.062 1.589c-0.241 0.579-0.372 1.212-0.372 1.873v1.958c0 0.541 0.439 0.979 0.979 0.979s0.979-0.439 0.979-0.979v-1.958c0-0.4 0.079-0.778 0.222-1.123 0.149-0.358 0.367-0.682 0.638-0.954s0.595-0.49 0.954-0.638c0.345-0.143 0.724-0.222 1.123-0.222h6.854c0.4 0 0.778 0.079 1.123 0.222 0.358 0.149 0.682 0.367 0.954 0.638s0.49 0.595 0.638 0.954c0.143 0.345 0.222 0.724 0.222 1.123v1.958c0 0.541 0.439 0.979 0.979 0.979s0.979-0.439 0.979-0.979zM13.219 5.104c0-0.661-0.131-1.294-0.371-1.872-0.249-0.6-0.612-1.139-1.062-1.589s-0.99-0.815-1.589-1.062c-0.579-0.241-1.212-0.372-1.873-0.372s-1.294 0.131-1.872 0.371c-0.6 0.249-1.139 0.612-1.59 1.062s-0.814 0.99-1.062 1.59c-0.24 0.578-0.371 1.211-0.371 1.872s0.131 1.294 0.371 1.872c0.249 0.6 0.612 1.139 1.062 1.589s0.99 0.815 1.589 1.062c0.579 0.241 1.212 0.372 1.873 0.372s1.294-0.131 1.872-0.371c0.6-0.249 1.139-0.612 1.589-1.062s0.815-0.99 1.062-1.589c0.241-0.579 0.372-1.212 0.372-1.873zM11.26 5.104c0 0.4-0.079 0.778-0.222 1.123-0.149 0.358-0.367 0.683-0.638 0.954s-0.595 0.49-0.954 0.638c-0.345 0.143-0.724 0.222-1.123 0.222s-0.778-0.079-1.123-0.222c-0.358-0.149-0.683-0.366-0.954-0.638s-0.49-0.595-0.638-0.954c-0.143-0.345-0.222-0.724-0.222-1.123s0.079-0.778 0.222-1.123c0.149-0.358 0.367-0.682 0.638-0.954s0.595-0.49 0.954-0.638c0.345-0.143 0.724-0.222 1.123-0.222s0.778 0.079 1.123 0.222c0.358 0.149 0.682 0.367 0.954 0.638s0.49 0.595 0.638 0.954c0.143 0.345 0.222 0.724 0.222 1.123zM22.521 8.042h-1.958v-1.958c0-0.541-0.439-0.979-0.979-0.979s-0.979 0.439-0.979 0.979v1.958h-1.958c-0.541 0-0.979 0.439-0.979 0.979s0.439 0.979 0.979 0.979h1.958v1.958c0 0.541 0.439 0.979 0.979 0.979s0.979-0.439 0.979-0.979v-1.958h1.958c0.541 0 0.979-0.439 0.979-0.979s-0.439-0.979-0.979-0.979z"></path>
286
+ </symbol>
287
+ <symbol id="frm_account_circle_solid_icon" viewBox="0 0 20 20">
288
+ <title>account_circle_solid</title>
289
+ <path d="M10 17.23c2.488 0 4.695-1.315 6.009-3.239-0.047-1.972-4.038-3.099-6.009-3.099-2.019 0-5.962 1.127-6.009 3.099 1.315 1.925 3.521 3.239 6.009 3.239zM10 3.005c-1.643 0-3.005 1.362-3.005 3.005s1.362 3.005 3.005 3.005 3.005-1.362 3.005-3.005-1.362-3.005-3.005-3.005zM10 0c5.54 0 10 4.46 10 10s-4.46 10-10 10-10-4.46-10-10 4.46-10 10-10z"></path>
290
+ </symbol>
291
+ <symbol id="frm_account_circle_icon" viewBox="0 0 20 20">
292
+ <title>account_circle</title>
293
+ <path d="M10 0c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.070 16.28c0.43-0.9 3.050-1.78 4.93-1.78s4.51 0.88 4.93 1.78c-1.36 1.080-3.070 1.72-4.93 1.72s-3.57-0.64-4.93-1.72zM16.36 14.83c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93 0.59-6.36 2.33c-1.020-1.34-1.64-3.010-1.64-4.83 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-0.62 3.49-1.64 4.83zM10 4c-1.94 0-3.5 1.56-3.5 3.5s1.56 3.5 3.5 3.5 3.5-1.56 3.5-3.5-1.56-3.5-3.5-3.5zM10 9c-0.83 0-1.5-0.67-1.5-1.5s0.67-1.5 1.5-1.5 1.5 0.67 1.5 1.5-0.67 1.5-1.5 1.5z"></path>
294
+ </symbol>
295
+ <symbol id="frm_address_card_icon" viewBox="0 0 23 20">
296
+ <title>address_card</title>
297
+ <path d="M20.625 1.25h-18.75c-1.035 0-1.875 0.84-1.875 1.875v13.75c0 1.035 0.84 1.875 1.875 1.875h18.75c1.035 0 1.875-0.84 1.875-1.875v-13.75c0-1.035-0.84-1.875-1.875-1.875zM20.625 16.875h-18.75v-13.75h18.75v13.75zM8.125 10c1.379 0 2.5-1.121 2.5-2.5s-1.121-2.5-2.5-2.5-2.5 1.121-2.5 2.5 1.121 2.5 2.5 2.5zM4.625 15h7c0.484 0 0.875-0.336 0.875-0.75v-0.75c0-1.242-1.176-2.25-2.625-2.25-0.422 0-0.73 0.313-1.75 0.313-1.051 0-1.305-0.313-1.75-0.313-1.449 0-2.625 1.008-2.625 2.25v0.75c0 0.414 0.391 0.75 0.875 0.75zM14.063 12.5h4.375c0.172 0 0.313-0.141 0.313-0.313v-0.625c0-0.172-0.141-0.313-0.313-0.313h-4.375c-0.172 0-0.313 0.141-0.313 0.313v0.625c0 0.172 0.141 0.313 0.313 0.313zM14.063 10h4.375c0.172 0 0.313-0.141 0.313-0.313v-0.625c0-0.172-0.141-0.313-0.313-0.313h-4.375c-0.172 0-0.313 0.141-0.313 0.313v0.625c0 0.172 0.141 0.313 0.313 0.313zM14.063 7.5h4.375c0.172 0 0.313-0.141 0.313-0.313v-0.625c0-0.172-0.141-0.313-0.313-0.313h-4.375c-0.172 0-0.313 0.141-0.313 0.313v0.625c0 0.172 0.141 0.313 0.313 0.313z"></path>
298
+ </symbol>
299
+ <symbol id="frm_paragraph_icon" viewBox="0 0 15 20">
300
+ <title>paragraph</title>
301
+ <path d="M14.531 1.25h-8.063c-3.541 0-6.458 2.847-6.468 6.388s2.868 6.424 6.406 6.424v4.219c0 0.259 0.21 0.469 0.469 0.469h1.25c0.259 0 0.469-0.21 0.469-0.469v-14.844h1.563v14.844c0 0.259 0.21 0.469 0.469 0.469h1.25c0.259 0 0.469-0.21 0.469-0.469v-14.844h2.188c0.259 0 0.469-0.21 0.469-0.469v-1.25c0-0.259-0.21-0.469-0.469-0.469zM6.406 11.875c-2.326 0-4.219-1.893-4.219-4.219s1.892-4.219 4.219-4.219v8.437z"></path>
302
+ </symbol>
303
+ <symbol id="frm_checkbox_unchecked_icon" viewBox="0 0 20 20">
304
+ <title>checkbox_unchecked</title>
305
+ <path d="M17.778 2.222v15.556h-15.556v-15.556h15.556zM17.778-0h-15.556c-1.222 0-2.222 1-2.222 2.222v15.556c0 1.222 1 2.222 2.222 2.222h15.556c1.222 0 2.222-1 2.222-2.222v-15.556c0-1.222-1-2.222-2.222-2.222z"></path>
306
+ </symbol>
307
+ <symbol id="frm_checkbox_icon" viewBox="0 0 20 20">
308
+ <title>checkbox</title>
309
+ <path d="M17.778 0h-15.556c-1.222 0-2.222 1-2.222 2.222v15.556c0 1.222 1 2.222 2.222 2.222h15.556c1.222 0 2.222-1 2.222-2.222v-15.556c0-1.222-1-2.222-2.222-2.222zM17.778 17.778h-15.556v-15.556h15.556v15.556zM16.656 6.667l-1.567-1.578-7.322 7.322-2.867-2.856-1.578 1.567 4.444 4.433z"></path>
310
+ </symbol>
311
+ <symbol id="frm_checkbox_solid_icon" viewBox="0 0 20 20">
312
+ <title>checkbox_solid</title>
313
+ <path d="M17.778-0h-15.556c-1.233 0-2.222 1-2.222 2.222v15.556c0 1.222 0.989 2.222 2.222 2.222h15.556c1.233 0 2.222-1 2.222-2.222v-15.556c0-1.222-0.989-2.222-2.222-2.222zM7.778 15.556l-5.556-5.556 1.567-1.567 3.989 3.978 8.433-8.433 1.567 1.578-10 10z"></path>
314
+ </symbol>
315
+ <symbol id="frm_dropdown_icon" viewBox="0 0 20 20">
316
+ <title>dropdown</title>
317
+ <path d="M5.585 7.857h8.83c0.478 0 0.719 0.58 0.379 0.915l-4.415 4.388c-0.21 0.21-0.545 0.21-0.754 0l-4.415-4.388c-0.344-0.335-0.103-0.915 0.375-0.915zM20 2.143v15.714c0 1.183-0.96 2.143-2.143 2.143h-15.714c-1.183 0-2.143-0.96-2.143-2.143v-15.714c0-1.183 0.96-2.143 2.143-2.143h15.714c1.183 0 2.143 0.96 2.143 2.143zM17.857 17.589v-15.179c0-0.147-0.121-0.268-0.268-0.268h-15.179c-0.147 0-0.268 0.121-0.268 0.268v15.179c0 0.147 0.121 0.268 0.268 0.268h15.179c0.147 0 0.268-0.121 0.268-0.268z"></path>
318
+ </symbol>
319
+ <symbol id="frm_caret_square_down_icon" viewBox="0 0 18 20">
320
+ <title>caret_square_down</title>
321
+ <path d="M4.887 8.125h7.727c0.418 0 0.629 0.508 0.332 0.801l-3.863 3.84c-0.184 0.184-0.477 0.184-0.66 0l-3.863-3.84c-0.301-0.293-0.090-0.801 0.328-0.801zM17.5 3.125v13.75c0 1.035-0.84 1.875-1.875 1.875h-13.75c-1.035 0-1.875-0.84-1.875-1.875v-13.75c0-1.035 0.84-1.875 1.875-1.875h13.75c1.035 0 1.875 0.84 1.875 1.875zM15.625 16.641v-13.281c0-0.129-0.105-0.234-0.234-0.234h-13.281c-0.129 0-0.234 0.105-0.234 0.234v13.281c0 0.129 0.105 0.234 0.234 0.234h13.281c0.129 0 0.234-0.105 0.234-0.234z"></path>
322
+ </symbol>
323
+ <symbol id="frm_check_square_icon" viewBox="0 0 17 20">
324
+ <title>check_square</title>
325
+ <path d="M15.556 1.25h-13.611c-1.069 0-1.944 0.875-1.944 1.944v13.611c0 1.069 0.875 1.944 1.944 1.944h13.611c1.069 0 1.944-0.875 1.944-1.944v-13.611c0-1.069-0.875-1.944-1.944-1.944zM15.556 16.806h-13.611v-13.611h13.611v13.611zM14.574 7.083l-1.371-1.381-6.407 6.407-2.508-2.499-1.381 1.371 3.889 3.879z"></path>
326
+ </symbol>
327
+ <symbol id="frm_radio_unchecked_icon" viewBox="0 0 20 20">
328
+ <title>radio_unchecked</title>
329
+ <path d="M10 0c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM10 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path>
330
+ </symbol>
331
+ <symbol id="frm_radio_checked_icon" viewBox="0 0 20 20">
332
+ <title>radio_checked</title>
333
+ <path d="M10 5c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zM10 0c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM10 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path>
334
+ </symbol>
335
+ <symbol id="frm_scrubber_icon" viewBox="0 0 26 20">
336
+ <title>scrubber</title>
337
+ <path d="M12.92 1.389c-4.757 0-8.611 3.854-8.611 8.611s3.854 8.611 8.611 8.611 8.611-3.854 8.611-8.611-3.854-8.611-8.611-8.611zM12.92 12.222c-1.226 0-2.222-0.997-2.222-2.222s0.997-2.222 2.222-2.222 2.222 0.997 2.222 2.222-0.997 2.222-2.222 2.222z"></path>
338
+ </symbol>
339
+ <symbol id="frm_location_solid_icon" viewBox="0 0 20 20">
340
+ <title>location_solid</title>
341
+ <path d="M10 0c-3.87 0-7 3.13-7 7 0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM10 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"></path>
342
+ </symbol>
343
+ <symbol id="frm_location_icon" viewBox="0 0 20 20">
344
+ <title>location</title>
345
+ <path d="M10 0c-3.87 0-7 3.13-7 7 0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM5 7c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88-2.080-2.67-5-7.030-5-9.88z"></path>
346
+ <path d="M12.5 7c0 1.381-1.119 2.5-2.5 2.5s-2.5-1.119-2.5-2.5c0-1.381 1.119-2.5 2.5-2.5s2.5 1.119 2.5 2.5z"></path>
347
+ </symbol>
348
+ <symbol id="frm_toggle_on_icon" viewBox="0 0 23 20">
349
+ <title>toggle_on</title>
350
+ <path d="M0 10c0-3.94 3.203-7.143 7.143-7.143h8.571c3.94 0 7.143 3.203 7.143 7.143s-3.203 7.143-7.143 7.143h-8.571c-3.94 0-7.143-3.203-7.143-7.143zM15.714 15.714c3.147 0 5.714-2.567 5.714-5.714s-2.567-5.714-5.714-5.714-5.714 2.567-5.714 5.714 2.567 5.714 5.714 5.714z"></path>
351
+ </symbol>
352
+ <symbol id="frm_toggle_off_icon" viewBox="0 0 23 20">
353
+ <title>toggle_off</title>
354
+ <path d="M12.857 10c0-3.147-2.567-5.714-5.714-5.714s-5.714 2.567-5.714 5.714 2.567 5.714 5.714 5.714 5.714-2.567 5.714-5.714zM21.429 10c0-3.147-2.567-5.714-5.714-5.714h-4.308c1.741 1.306 2.879 3.382 2.879 5.714s-1.138 4.408-2.879 5.714h4.308c3.147 0 5.714-2.567 5.714-5.714zM22.857 10c0 3.94-3.203 7.143-7.143 7.143h-8.571c-3.94 0-7.143-3.203-7.143-7.143s3.203-7.143 7.143-7.143h8.571c3.94 0 7.143 3.203 7.143 7.143z"></path>
355
+ </symbol>
356
+ <symbol id="frm_shield_check_icon" viewBox="0 0 20 20">
357
+ <title>shield_check</title>
358
+ <path d="M10 0l-8.182 3.636v5.455c0 5.045 3.491 9.764 8.182 10.909 4.691-1.145 8.182-5.864 8.182-10.909v-5.455l-8.182-3.636zM16.364 9.091c0 4.109-2.709 7.9-6.364 9.027-3.655-1.127-6.364-4.918-6.364-9.027v-4.273l6.364-2.827 6.364 2.827v4.273zM5.827 9.627l-1.282 1.282 3.636 3.636 7.273-7.273-1.282-1.291-5.991 5.991z"></path>
359
+ </symbol>
360
+ <symbol id="frm_shield_check_solid_icon" viewBox="0 0 20 20">
361
+ <title>shield_check_solid</title>
362
+ <path d="M10 0l-8.182 3.636v5.455c0 5.045 3.491 9.764 8.182 10.909 4.691-1.145 8.182-5.864 8.182-10.909v-5.455l-8.182-3.636zM8.182 14.545l-3.636-3.636 1.282-1.282 2.355 2.345 5.991-5.991 1.282 1.291-7.273 7.273z"></path>
363
+ </symbol>
364
+ <symbol id="frm_clock_icon" viewBox="0 0 20 20">
365
+ <title>clock</title>
366
+ <path d="M9.99 0c-5.52 0-9.99 4.48-9.99 10s4.47 10 9.99 10c5.53 0 10.010-4.48 10.010-10s-4.48-10-10.010-10zM10 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path>
367
+ <path d="M10.5 5h-1.5v6l5.25 3.15 0.75-1.23-4.5-2.67z"></path>
368
+ </symbol>
369
+ <symbol id="frm_clock_solid_icon" viewBox="0 0 20 20">
370
+ <title>clock_solid</title>
371
+ <path d="M10 0c-5.5 0-10 4.5-10 10s4.5 10 10 10 10-4.5 10-10-4.5-10-10-10zM14.2 14.2l-5.2-3.2v-6h1.5v5.2l4.5 2.7-0.8 1.3z"></path>
372
+ </symbol>
373
+ <symbol id="frm_link_icon" viewBox="0 0 20 20">
374
+ <title>link</title>
375
+ <path d="M7.632 11.541c0.457 0.542 1.005 0.972 1.6 1.281 0.618 0.319 1.291 0.512 1.971 0.568 0.683 0.059 1.376-0.016 2.040-0.227 0.641-0.204 1.252-0.532 1.794-0.992 0.2-0.168 0.388-0.351 0.545-0.529l2.467-2.769c0.473-0.552 0.808-1.156 1.018-1.797 0.217-0.664 0.299-1.357 0.246-2.037-0.053-0.683-0.237-1.357-0.552-1.978-0.302-0.598-0.726-1.15-1.265-1.613-0.529-0.457-1.127-0.788-1.754-0.999-0.65-0.217-1.33-0.302-2.004-0.26-0.664 0.043-1.317 0.21-1.928 0.499-0.591 0.282-1.137 0.677-1.603 1.183l-1.426 1.59c-0.322 0.361-0.292 0.913 0.069 1.235s0.913 0.292 1.235-0.069l1.409-1.573c0.312-0.338 0.677-0.601 1.071-0.788 0.407-0.194 0.844-0.305 1.288-0.335 0.45-0.030 0.903 0.030 1.337 0.174 0.417 0.138 0.815 0.361 1.169 0.667 0.361 0.312 0.644 0.677 0.844 1.074 0.21 0.414 0.332 0.864 0.368 1.321s-0.020 0.92-0.164 1.36c-0.138 0.424-0.361 0.828-0.664 1.176l-2.474 2.782c-0.095 0.108-0.217 0.23-0.355 0.345-0.365 0.309-0.772 0.526-1.196 0.66-0.443 0.141-0.903 0.191-1.36 0.151s-0.903-0.168-1.314-0.381c-0.394-0.204-0.759-0.489-1.064-0.854-0.312-0.371-0.864-0.417-1.235-0.105s-0.424 0.87-0.115 1.238v0zM12.368 8.459c-0.457-0.542-1.005-0.972-1.6-1.281-0.618-0.319-1.291-0.512-1.971-0.568s-1.376 0.016-2.040 0.227c-0.641 0.204-1.252 0.532-1.794 0.992-0.2 0.168-0.388 0.351-0.545 0.529l-2.467 2.772c-0.473 0.552-0.808 1.156-1.018 1.797-0.217 0.664-0.299 1.357-0.246 2.037 0.053 0.683 0.237 1.357 0.552 1.978 0.302 0.598 0.726 1.15 1.265 1.613 0.529 0.457 1.127 0.788 1.754 0.999 0.65 0.217 1.33 0.302 2.004 0.26 0.664-0.043 1.317-0.21 1.928-0.499 0.591-0.283 1.137-0.677 1.603-1.183l1.419-1.593c0.322-0.361 0.289-0.916-0.072-1.235-0.361-0.322-0.916-0.289-1.235 0.072l-1.396 1.57c-0.312 0.338-0.677 0.601-1.071 0.788-0.407 0.194-0.844 0.305-1.288 0.335-0.45 0.030-0.903-0.030-1.337-0.174-0.417-0.138-0.815-0.361-1.169-0.667-0.361-0.312-0.644-0.677-0.844-1.074-0.21-0.414-0.332-0.864-0.368-1.321s0.020-0.92 0.164-1.36c0.138-0.424 0.361-0.828 0.664-1.176l2.474-2.782c0.095-0.108 0.217-0.23 0.355-0.345 0.365-0.309 0.772-0.526 1.196-0.66 0.443-0.141 0.903-0.191 1.36-0.151s0.903 0.168 1.314 0.381c0.394 0.204 0.759 0.489 1.064 0.854 0.312 0.371 0.864 0.417 1.235 0.105s0.42-0.87 0.112-1.238v0z"></path>
376
+ <path d="M5.923 20.002c-0.585 0-1.163-0.095-1.721-0.279-0.667-0.223-1.278-0.572-1.813-1.031-0.545-0.466-0.985-1.028-1.307-1.669-0.322-0.637-0.516-1.327-0.568-2.046-0.056-0.719 0.030-1.426 0.256-2.109 0.223-0.677 0.578-1.304 1.051-1.856l2.47-2.772c0.161-0.184 0.355-0.374 0.562-0.549 0.552-0.463 1.176-0.808 1.856-1.025 0.683-0.217 1.393-0.296 2.109-0.237 0.716 0.062 1.403 0.26 2.040 0.588 0.634 0.328 1.189 0.772 1.656 1.324l0.489 0.581-0.266-0.112c0.020 0.099 0.026 0.2 0.016 0.302-0.023 0.283-0.158 0.535-0.371 0.719-0.447 0.374-1.114 0.319-1.488-0.128-0.283-0.335-0.624-0.608-1.012-0.808s-0.808-0.322-1.248-0.361c-0.44-0.036-0.874 0.010-1.291 0.145-0.417 0.131-0.798 0.345-1.133 0.627-0.125 0.105-0.243 0.22-0.335 0.325l-2.477 2.782c-0.276 0.319-0.493 0.706-0.624 1.114-0.138 0.414-0.187 0.848-0.154 1.288s0.151 0.861 0.348 1.252c0.197 0.388 0.466 0.733 0.802 1.018 0.328 0.283 0.703 0.496 1.107 0.631 0.411 0.138 0.834 0.191 1.268 0.164 0.427-0.026 0.838-0.135 1.222-0.315 0.384-0.184 0.726-0.434 1.015-0.749l1.396-1.567c0.187-0.21 0.447-0.335 0.726-0.351 0.283-0.016 0.552 0.079 0.765 0.266 0.21 0.187 0.335 0.447 0.351 0.726 0.016 0.283-0.079 0.555-0.266 0.765l-1.422 1.596c-0.473 0.512-1.031 0.923-1.659 1.222-0.631 0.299-1.301 0.473-1.997 0.519-0.122 0.007-0.237 0.010-0.351 0.010zM8.341 6.771c-0.519 0-1.031 0.079-1.531 0.24-0.634 0.2-1.219 0.522-1.731 0.956-0.194 0.164-0.374 0.338-0.526 0.512l-2.467 2.769c-0.443 0.516-0.772 1.1-0.982 1.731-0.21 0.634-0.289 1.298-0.237 1.968s0.23 1.314 0.532 1.909c0.302 0.598 0.713 1.12 1.222 1.557 0.503 0.43 1.074 0.756 1.695 0.962 0.624 0.21 1.275 0.292 1.935 0.253 0.647-0.043 1.275-0.204 1.863-0.483 0.585-0.279 1.104-0.66 1.547-1.14l1.419-1.593c0.125-0.138 0.187-0.319 0.174-0.503-0.010-0.184-0.092-0.355-0.233-0.476-0.286-0.256-0.726-0.23-0.982 0.056l-1.399 1.57c-0.322 0.351-0.7 0.631-1.127 0.831-0.427 0.204-0.884 0.322-1.353 0.351-0.48 0.030-0.949-0.030-1.406-0.181-0.45-0.151-0.864-0.388-1.229-0.7-0.371-0.319-0.667-0.7-0.887-1.13-0.22-0.434-0.348-0.9-0.388-1.386-0.036-0.489 0.023-0.969 0.174-1.429 0.148-0.453 0.388-0.88 0.696-1.238l2.477-2.786c0.105-0.118 0.237-0.25 0.374-0.365 0.371-0.312 0.795-0.549 1.258-0.696s0.943-0.2 1.432-0.158c0.486 0.043 0.953 0.177 1.383 0.401s0.808 0.526 1.12 0.897c0.246 0.292 0.687 0.332 0.979 0.082 0.141-0.118 0.23-0.289 0.246-0.473s-0.043-0.365-0.161-0.509l-0.056-0.066c-0.42-0.483-0.923-0.877-1.488-1.169-0.595-0.309-1.235-0.493-1.905-0.549-0.148-0.010-0.296-0.016-0.44-0.016zM11.659 13.59c-0.158 0-0.312-0.007-0.47-0.020-0.716-0.062-1.403-0.26-2.040-0.588-0.634-0.328-1.189-0.772-1.656-1.324l-0.47-0.555 0.246 0.099c-0.079-0.371 0.043-0.772 0.351-1.031 0.447-0.374 1.114-0.319 1.488 0.128 0.282 0.335 0.624 0.608 1.012 0.808s0.808 0.322 1.248 0.361c0.44 0.036 0.874-0.010 1.291-0.145 0.417-0.131 0.798-0.345 1.133-0.627 0.125-0.105 0.243-0.22 0.335-0.325l2.477-2.782c0.276-0.319 0.493-0.706 0.624-1.114 0.138-0.414 0.187-0.848 0.154-1.288s-0.151-0.861-0.348-1.252c-0.197-0.388-0.466-0.733-0.802-1.018-0.328-0.283-0.703-0.496-1.107-0.631-0.411-0.138-0.834-0.191-1.268-0.164-0.427 0.026-0.838 0.135-1.222 0.315-0.384 0.184-0.726 0.434-1.015 0.749l-1.406 1.57c-0.388 0.434-1.058 0.47-1.491 0.082-0.21-0.187-0.335-0.447-0.351-0.729s0.079-0.552 0.269-0.762l1.426-1.593c0.476-0.516 1.035-0.926 1.659-1.225 0.631-0.299 1.301-0.473 1.997-0.516 0.706-0.046 1.403 0.046 2.073 0.269 0.667 0.223 1.278 0.572 1.813 1.031 0.545 0.466 0.985 1.028 1.307 1.669 0.322 0.637 0.516 1.327 0.568 2.046 0.056 0.719-0.030 1.426-0.256 2.109-0.223 0.677-0.578 1.304-1.051 1.856l-2.464 2.769c-0.161 0.184-0.355 0.374-0.562 0.549-0.552 0.463-1.176 0.808-1.856 1.025-0.532 0.168-1.084 0.253-1.639 0.253zM7.829 11.495c0.42 0.483 0.923 0.874 1.485 1.166 0.595 0.309 1.235 0.493 1.905 0.549s1.33-0.016 1.971-0.22c0.634-0.2 1.219-0.522 1.731-0.956 0.194-0.164 0.374-0.338 0.526-0.512l2.467-2.772c0.443-0.516 0.772-1.1 0.982-1.731 0.21-0.634 0.289-1.298 0.237-1.968s-0.23-1.314-0.532-1.909c-0.302-0.598-0.713-1.12-1.222-1.557-0.503-0.43-1.074-0.756-1.695-0.962-0.624-0.21-1.275-0.292-1.935-0.253-0.647 0.043-1.275 0.204-1.863 0.483-0.585 0.279-1.104 0.664-1.547 1.14l-1.422 1.593c-0.125 0.138-0.187 0.315-0.177 0.503 0.010 0.184 0.092 0.355 0.23 0.48s0.319 0.187 0.503 0.177c0.184-0.010 0.355-0.092 0.48-0.23l1.409-1.573c0.322-0.348 0.7-0.627 1.127-0.831 0.424-0.204 0.88-0.322 1.353-0.351 0.48-0.030 0.949 0.030 1.406 0.181 0.45 0.151 0.864 0.388 1.229 0.7 0.371 0.319 0.667 0.7 0.887 1.13 0.22 0.434 0.348 0.9 0.388 1.386 0.036 0.489-0.020 0.969-0.174 1.429-0.148 0.453-0.388 0.88-0.696 1.238l-2.477 2.786c-0.105 0.118-0.237 0.25-0.374 0.365-0.371 0.312-0.795 0.549-1.258 0.696s-0.943 0.2-1.432 0.158c-0.486-0.043-0.953-0.177-1.383-0.401s-0.808-0.526-1.12-0.897c-0.246-0.292-0.687-0.332-0.979-0.082-0.292 0.246-0.332 0.687-0.082 0.979l0.056 0.069z"></path>
377
+ </symbol>
378
+ <symbol id="frm_email_icon" viewBox="0 0 20 20">
379
+ <title>email</title>
380
+ <path d="M20 4c0-1.1-0.9-2-2-2h-16c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h16c1.1 0 2-0.9 2-2v-12zM18 4l-8 5-8-5h16zM18 16h-16v-10l8 5 8-5v10z"></path>
381
+ </symbol>
382
+ <symbol id="frm_email_solid_icon" viewBox="0 0 20 20">
383
+ <title>email_solid</title>
384
+ <path d="M18 2h-16c-1.1 0-1.99 0.9-1.99 2l-0.010 12c0 1.1 0.9 2 2 2h16c1.1 0 2-0.9 2-2v-12c0-1.1-0.9-2-2-2zM18 6l-8 5-8-5v-2l8 5 8-5v2z"></path>
385
+ </symbol>
386
+ <symbol id="frm_mail_bulk_icon" viewBox="0 0 23 20">
387
+ <title>mail_bulk</title>
388
+ <path d="M4.375 1.875h11.25v1.875h1.875v-1.875c0-1.036-0.839-1.875-1.875-1.875h-11.25c-1.036 0-1.875 0.839-1.875 1.875v5.625h1.875v-5.625zM13.125 8.75h-11.25c-1.036 0-1.875 0.839-1.875 1.875v7.5c0 1.036 0.839 1.875 1.875 1.875h11.25c1.036 0 1.875-0.839 1.875-1.875v-7.5c0-1.036-0.839-1.875-1.875-1.875zM13.125 18.125h-11.25v-4.689c0.566 0.43 3.125 2.27 3.125 2.27 0.564 0.437 1.509 1.169 2.5 1.169s1.936-0.731 2.5-1.169c0 0 2.559-1.84 3.125-2.27v4.689zM13.125 11.148c-0.093 0.072-4.368 3.201-4.574 3.342-0.332 0.228-0.746 0.51-1.051 0.51-0.368 0-0.886-0.412-1.23-0.685-0.133-0.106-4.302-3.22-4.395-3.292v-0.398h11.25v0.523zM20.625 5h-11.25c-1.036 0-1.875 0.839-1.875 1.875v0.625h1.875v-0.625h11.25v7.5h-4.375v1.875h4.375c1.036 0 1.875-0.839 1.875-1.875v-7.5c0-1.036-0.839-1.875-1.875-1.875zM16.875 8.125v2.5h2.5v-2.5h-2.5z"></path>
389
+ </symbol>
390
+ <symbol id="frm_phone_icon" viewBox="0 0 20 20">
391
+ <title>phone</title>
392
+ <path d="M20.032 14.487c0.007-0.31-0.046-0.631-0.148-0.931-0.106-0.307-0.264-0.592-0.466-0.841-0.213-0.263-0.475-0.486-0.776-0.657-0.291-0.164-0.616-0.277-0.98-0.328-0.73-0.089-1.546-0.286-2.358-0.589-0.395-0.145-0.814-0.199-1.226-0.159-0.306 0.030-0.609 0.111-0.894 0.244-0.276 0.13-0.534 0.307-0.764 0.535l-0.657 0.657c-1.614-1.019-3.064-2.432-4.18-4.185l0.662-0.662c0.294-0.301 0.513-0.662 0.645-1.054 0.098-0.292 0.147-0.602 0.141-0.917-0.005-0.306-0.063-0.613-0.177-0.917-0.264-0.687-0.472-1.499-0.587-2.367-0.047-0.322-0.149-0.625-0.295-0.9-0.151-0.281-0.349-0.534-0.584-0.745-0.25-0.225-0.542-0.405-0.863-0.526-0.31-0.118-0.647-0.181-0.986-0.177h-2.732c-0.080 0-0.166 0.004-0.249 0.011-0.368 0.033-0.713 0.139-1.023 0.301-0.322 0.169-0.603 0.399-0.831 0.671s-0.403 0.592-0.512 0.938c-0.104 0.335-0.146 0.693-0.112 1.067 0.274 2.805 1.245 5.694 2.933 8.301 1.37 2.201 3.327 4.216 5.744 5.751 2.342 1.548 5.184 2.61 8.287 2.947 0.084 0.008 0.174 0.012 0.263 0.012 0.369-0.002 0.722-0.077 1.046-0.212 0.335-0.14 0.635-0.345 0.886-0.597s0.452-0.555 0.59-0.89c0.133-0.324 0.205-0.679 0.203-1.043zM18.208 14.487v2.736c0.001 0.129-0.024 0.246-0.067 0.353-0.046 0.111-0.113 0.213-0.197 0.297s-0.185 0.153-0.295 0.2c-0.106 0.045-0.223 0.069-0.348 0.070-0.033 0-0.062-0.002-0.080-0.004-2.791-0.304-5.356-1.266-7.455-2.653-2.214-1.407-3.976-3.227-5.2-5.193-1.548-2.39-2.421-4.999-2.667-7.513-0.011-0.119 0.004-0.237 0.037-0.347 0.036-0.116 0.094-0.223 0.171-0.315s0.171-0.169 0.277-0.224c0.102-0.053 0.216-0.088 0.341-0.099 0.031-0.003 0.058-0.004 0.077-0.004h2.74c0.128-0.001 0.238 0.020 0.34 0.058 0.106 0.040 0.202 0.099 0.286 0.175 0.078 0.071 0.145 0.156 0.196 0.251 0.049 0.092 0.084 0.194 0.099 0.304 0.129 0.978 0.372 1.932 0.689 2.759 0.036 0.096 0.055 0.197 0.056 0.296 0.002 0.103-0.015 0.205-0.047 0.304-0.045 0.132-0.119 0.256-0.221 0.36l-1.15 1.15c-0.295 0.295-0.346 0.742-0.148 1.095 1.445 2.54 3.501 4.521 5.82 5.817 0.362 0.202 0.804 0.131 1.090-0.151l1.158-1.158c0.074-0.073 0.159-0.131 0.249-0.173 0.093-0.044 0.193-0.071 0.296-0.081 0.139-0.014 0.283 0.005 0.419 0.055 0.932 0.347 1.888 0.58 2.767 0.688 0.101 0.015 0.209 0.052 0.304 0.106 0.098 0.056 0.186 0.13 0.258 0.218 0.068 0.084 0.121 0.18 0.157 0.283 0.035 0.1 0.052 0.208 0.049 0.339z"></path>
393
+ </symbol>
394
+ <symbol id="frm_calendar_icon" viewBox="0 0 20 20">
395
+ <title>calendar</title>
396
+ <path d="M1 4c0-1.1 0.9-2 2-2h14c1.105 0 2 0.895 2 2v0 14c0 1.105-0.895 2-2 2v0h-14c-1.105 0-2-0.895-2-2v0-14zM3 6v12h14v-12h-14zM5 0h2v2h-2v-2zM13 0h2v2h-2v-2zM5 9h2v2h-2v-2zM5 13h2v2h-2v-2zM9 9h2v2h-2v-2zM9 13h2v2h-2v-2zM13 9h2v2h-2v-2zM13 13h2v2h-2v-2z"></path>
397
+ </symbol>
398
+ <symbol id="frm_code_icon" viewBox="0 0 23 20">
399
+ <title>code</title>
400
+ <path d="M9.172 17.991l-1.516-0.353c-0.162-0.037-0.263-0.178-0.216-0.309l5.5-15.147c0.047-0.131 0.222-0.209 0.388-0.172l1.516 0.353c0.163 0.038 0.263 0.178 0.216 0.309l-5.5 15.147c-0.047 0.134-0.219 0.209-0.387 0.172zM5.922 15.256l1.062-1.131c0.122-0.128 0.109-0.331-0.019-0.45l-4.147-3.675 4.144-3.675c0.131-0.119 0.141-0.319 0.019-0.45l-1.063-1.131c-0.119-0.125-0.316-0.131-0.441-0.016l-5.381 5.047c-0.131 0.125-0.131 0.331 0 0.456l5.381 5.044c0.128 0.116 0.322 0.106 0.444-0.019zM17.019 15.275l5.378-5.044c0.131-0.125 0.131-0.331 0-0.456l-5.378-5.050c-0.125-0.119-0.325-0.112-0.441 0.016l-1.062 1.131c-0.122 0.128-0.109 0.331 0.019 0.45l4.147 3.678-4.147 3.675c-0.131 0.119-0.141 0.319-0.019 0.45l1.062 1.131c0.122 0.125 0.316 0.134 0.441 0.019z"></path>
401
+ </symbol>
402
+ <symbol id="frm_tag_icon" viewBox="0 0 20 20">
403
+ <title>tag</title>
404
+ <path d="M19.41 9.58l-9-9c-0.36-0.36-0.86-0.58-1.41-0.58h-7c-1.1 0-2 0.9-2 2v7c0 0.55 0.22 1.050 0.59 1.42l9 9c0.36 0.36 0.86 0.58 1.41 0.58s1.050-0.22 1.41-0.59l7-7c0.37-0.36 0.59-0.86 0.59-1.41s-0.23-1.060-0.59-1.42zM11 18.010l-9-9.010v-7h7v-0.010l9 9-7 7.020z"></path>
405
+ <path d="M6 4.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"></path>
406
+ </symbol>
407
+ <symbol id="frm_tag_solid_icon" viewBox="0 0 20 20">
408
+ <title>tag_solid</title>
409
+ <path d="M19.41 9.58l-9-9c-0.36-0.36-0.86-0.58-1.41-0.58h-7c-1.1 0-2 0.9-2 2v7c0 0.55 0.22 1.050 0.59 1.42l9 9c0.36 0.36 0.86 0.58 1.41 0.58s1.050-0.22 1.41-0.59l7-7c0.37-0.36 0.59-0.86 0.59-1.41s-0.23-1.060-0.59-1.42zM3.5 5c-0.83 0-1.5-0.67-1.5-1.5s0.67-1.5 1.5-1.5 1.5 0.67 1.5 1.5-0.67 1.5-1.5 1.5z"></path>
410
+ </symbol>
411
+ <symbol id="frm_price_tags_icon" viewBox="0 0 25 20">
412
+ <title>price_tags</title>
413
+ <path d="M24.451 11.477l-7.973 7.973c-0.732 0.732-1.919 0.732-2.652 0l-0.014-0.014 9.313-9.285-10.18-10.152h1.903c0.518 0 0.987 0.21 1.326 0.549l8.277 8.277c0.732 0.732 0.732 1.919 0 2.652zM19.451 11.477l-7.973 7.973c-0.366 0.366-0.846 0.549-1.326 0.549s-0.96-0.183-1.326-0.549l-8.277-8.277c-0.339-0.339-0.549-0.808-0.549-1.326v0-7.973c0-1.036 0.839-1.875 1.875-1.875h7.973c0 0 0 0 0 0 0.518 0 0.987 0.21 1.326 0.549l8.277 8.277c0.732 0.732 0.732 1.919 0 2.652zM18.125 10.152l-8.277-8.277h-7.973v7.973l8.277 8.276 7.973-7.973zM5.625 3.75c-1.036 0-1.875 0.839-1.875 1.875s0.839 1.875 1.875 1.875 1.875-0.839 1.875-1.875-0.839-1.875-1.875-1.875z"></path>
414
+ </symbol>
415
+ <symbol id="frm_search_icon" viewBox="0 0 20 20">
416
+ <title>search</title>
417
+ <path d="M14.294 12.579h-0.903l-0.32-0.309c1.121-1.304 1.795-2.996 1.795-4.837 0-4.105-3.328-7.433-7.433-7.433s-7.433 3.328-7.433 7.433 3.328 7.433 7.433 7.433c1.841 0 3.533-0.675 4.837-1.795l0.309 0.32v0.903l5.718 5.706 1.704-1.704-5.706-5.718zM7.433 12.579c-2.847 0-5.146-2.298-5.146-5.146s2.298-5.146 5.146-5.146 5.146 2.298 5.146 5.146-2.298 5.146-5.146 5.146z"></path>
418
+ </symbol>
419
+ <symbol id="frm_sitemap_icon" viewBox="0 0 25 20">
420
+ <title>sitemap</title>
421
+ <path d="M4.063 10.625h7.5v1.875h1.875v-1.875h7.5v1.875h1.875v-2.25c0-0.827-0.673-1.5-1.5-1.5h-7.875v-2.5h1.563c0.69 0 1.25-0.56 1.25-1.25v-3.75c0-0.69-0.56-1.25-1.25-1.25h-5c-0.69 0-1.25 0.56-1.25 1.25v3.75c0 0.345 0.14 0.658 0.366 0.884s0.539 0.366 0.884 0.366h1.563v2.5h-7.875c-0.828 0-1.5 0.673-1.5 1.5v2.25h1.875v-1.875zM10.625 4.375v-2.5h3.75v2.5h-3.75zM23.75 13.75h-3.75c-0.69 0-1.25 0.56-1.25 1.25v3.75c0 0.69 0.56 1.25 1.25 1.25h3.75c0.69 0 1.25-0.56 1.25-1.25v-3.75c0-0.69-0.56-1.25-1.25-1.25zM23.125 18.125h-2.5v-2.5h2.5v2.5zM14.375 13.75h-3.75c-0.69 0-1.25 0.56-1.25 1.25v3.75c0 0.69 0.56 1.25 1.25 1.25h3.75c0.69 0 1.25-0.56 1.25-1.25v-3.75c0-0.69-0.56-1.25-1.25-1.25zM13.75 18.125h-2.5v-2.5h2.5v2.5zM5 13.75h-3.75c-0.69 0-1.25 0.56-1.25 1.25v3.75c0 0.69 0.56 1.25 1.25 1.25h3.75c0.69 0 1.25-0.56 1.25-1.25v-3.75c0-0.69-0.56-1.25-1.25-1.25zM4.375 18.125h-2.5v-2.5h2.5v2.5z"></path>
422
+ </symbol>
423
+ <symbol id="frm_file_icon" viewBox="0 0 20 20">
424
+ <title>file</title>
425
+ <path d="M11.25 5.312v-5.313h-7.812c-0.52 0-0.938 0.418-0.938 0.938v18.125c0 0.52 0.418 0.938 0.938 0.938h13.125c0.52 0 0.938-0.418 0.938-0.938v-12.813h-5.313c-0.516 0-0.938-0.422-0.938-0.938zM17.5 4.762v0.238h-5v-5h0.238c0.25 0 0.488 0.098 0.664 0.273l3.824 3.828c0.176 0.176 0.273 0.414 0.273 0.66z"></path>
426
+ </symbol>
427
+ <symbol id="frm_file_text_solid_icon" viewBox="0 0 20 20">
428
+ <title>file_text_solid</title>
429
+ <path d="M17.813 5.313c0.112 0.112 0.212 0.246 0.313 0.402h-5.268v-5.268c0.156 0.1 0.29 0.201 0.402 0.313zM12.5 7.143h6.071v11.786c0 0.592-0.48 1.071-1.071 1.071h-15c-0.592 0-1.071-0.48-1.071-1.071v-17.857c0-0.592 0.48-1.071 1.071-1.071h8.929v6.071c0 0.592 0.48 1.071 1.071 1.071zM14.286 15.357v-0.714c0-0.201-0.156-0.357-0.357-0.357h-7.857c-0.201 0-0.357 0.156-0.357 0.357v0.714c0 0.201 0.156 0.357 0.357 0.357h7.857c0.201 0 0.357-0.156 0.357-0.357zM14.286 12.5v-0.714c0-0.201-0.156-0.357-0.357-0.357h-7.857c-0.201 0-0.357 0.156-0.357 0.357v0.714c0 0.201 0.156 0.357 0.357 0.357h7.857c0.201 0 0.357-0.156 0.357-0.357zM14.286 9.643v-0.714c0-0.201-0.156-0.357-0.357-0.357h-7.857c-0.201 0-0.357 0.156-0.357 0.357v0.714c0 0.201 0.156 0.357 0.357 0.357h7.857c0.201 0 0.357-0.156 0.357-0.357z"></path>
430
+ </symbol>
431
+ <symbol id="frm_file_text_icon" viewBox="0 0 20 20">
432
+ <title>file_text</title>
433
+ <path d="M15.078 5.455h-2.351v-2.351zM17.912 5.717l-5.451-5.451c-0.001-0.001-0.003-0.002-0.004-0.004-0.086-0.085-0.185-0.15-0.291-0.194-0.111-0.046-0.23-0.069-0.348-0.069h-7.273c-0.368 0-0.721 0.074-1.044 0.207-0.334 0.138-0.634 0.341-0.885 0.592s-0.454 0.551-0.592 0.885c-0.134 0.323-0.207 0.675-0.207 1.044v14.545c0 0.368 0.074 0.721 0.207 1.044 0.138 0.335 0.341 0.635 0.592 0.885s0.551 0.454 0.885 0.592c0.322 0.133 0.675 0.206 1.043 0.206h10.909c0.368 0 0.721-0.074 1.044-0.207 0.335-0.138 0.635-0.341 0.885-0.592s0.454-0.551 0.592-0.885c0.133-0.322 0.206-0.675 0.206-1.043v-10.909c0-0.251-0.102-0.478-0.266-0.643zM10.909 1.818v4.545c0 0.502 0.407 0.909 0.909 0.909h4.545v10c0 0.125-0.025 0.242-0.068 0.347-0.045 0.111-0.114 0.211-0.198 0.295s-0.185 0.152-0.295 0.198c-0.105 0.044-0.223 0.068-0.347 0.068h-10.909c-0.125 0-0.242-0.025-0.347-0.068-0.111-0.045-0.211-0.114-0.295-0.198s-0.152-0.185-0.198-0.295c-0.044-0.105-0.068-0.223-0.068-0.347v-14.545c0-0.125 0.025-0.242 0.068-0.347 0.045-0.111 0.114-0.211 0.198-0.295s0.185-0.152 0.295-0.198c0.105-0.044 0.223-0.068 0.347-0.068zM13.636 10h-7.273c-0.502 0-0.909 0.407-0.909 0.909s0.407 0.909 0.909 0.909h7.273c0.502 0 0.909-0.407 0.909-0.909s-0.407-0.909-0.909-0.909zM13.636 13.636h-7.273c-0.502 0-0.909 0.407-0.909 0.909s0.407 0.909 0.909 0.909h7.273c0.502 0 0.909-0.407 0.909-0.909s-0.407-0.909-0.909-0.909zM8.182 6.364h-1.818c-0.502 0-0.909 0.407-0.909 0.909s0.407 0.909 0.909 0.909h1.818c0.502 0 0.909-0.407 0.909-0.909s-0.407-0.909-0.909-0.909z"></path>
434
+ </symbol>
435
+ <symbol id="frm_option_icon" viewBox="0 0 20 20">
436
+ <title>option</title>
437
+ <path d="M10 1.222c4.848 0 8.777 3.93 8.777 8.778 0 2.424-0.982 4.618-2.571 6.207v0c-1.593 1.615-3.805 2.616-6.251 2.616-4.848 0-8.778-3.93-8.778-8.778 0-2.446 1.001-4.658 2.615-6.25l0.001-0.001c1.579-1.588 3.766-2.571 6.182-2.571 0.009 0 0.017 0 0.026 0h-0.001zM10 0c-5.523 0-10 4.477-10 10s4.477 10 10 10c5.523 0 10-4.477 10-10v0c0-5.523-4.477-10-10-10v0z"></path>
438
+ <path d="M11.501 9.993c0 0.825-0.669 1.493-1.493 1.493s-1.493-0.669-1.493-1.493c0-0.825 0.669-1.493 1.493-1.493s1.493 0.669 1.493 1.493z"></path>
439
+ <path d="M11.514 14.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"></path>
440
+ <path d="M11.514 5.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"></path>
441
+ </symbol>
442
+ <symbol id="frm_option_solid_icon" viewBox="0 0 20 20">
443
+ <title>option_solid</title>
444
+ <path d="M10 0c-5.523 0-10 4.477-10 10s4.477 10 10 10c5.523 0 10-4.477 10-10v0c0-5.523-4.477-10-10-10v0zM10.014 16c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5c0.828 0 1.5 0.672 1.5 1.5v0c0 0.828-0.672 1.5-1.5 1.5v0zM8.514 9.993c0-0 0-0 0-0.001 0-0.825 0.669-1.493 1.493-1.493s1.493 0.669 1.493 1.493c0 0.825-0.669 1.493-1.493 1.493-0 0-0 0-0.001 0h0c-0.824 0-1.493-0.668-1.493-1.493v0zM10.014 7c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5c0.828 0 1.5 0.672 1.5 1.5v0c0 0.828-0.672 1.5-1.5 1.5v0z"></path>
445
+ </symbol>
446
+ <symbol id="frm_more_horiz_icon" viewBox="0 0 20 20">
447
+ <title>more_horiz</title>
448
+ <path d="M10 8.32c0.898 0 1.68 0.781 1.68 1.68s-0.781 1.68-1.68 1.68-1.68-0.781-1.68-1.68 0.781-1.68 1.68-1.68zM15 8.32c0.898 0 1.68 0.781 1.68 1.68s-0.781 1.68-1.68 1.68-1.68-0.781-1.68-1.68 0.781-1.68 1.68-1.68zM5 8.32c0.898 0 1.68 0.781 1.68 1.68s-0.781 1.68-1.68 1.68-1.68-0.781-1.68-1.68 0.781-1.68 1.68-1.68z"></path>
449
+ </symbol>
450
+ <symbol id="frm_more_vert_icon" viewBox="0 0 20 20">
451
+ <title>more_vert</title>
452
+ <path d="M10 13.32c0.898 0 1.68 0.781 1.68 1.68s-0.781 1.68-1.68 1.68-1.68-0.781-1.68-1.68 0.781-1.68 1.68-1.68zM10 8.32c0.898 0 1.68 0.781 1.68 1.68s-0.781 1.68-1.68 1.68-1.68-0.781-1.68-1.68 0.781-1.68 1.68-1.68zM10 6.68c-0.898 0-1.68-0.781-1.68-1.68s0.781-1.68 1.68-1.68 1.68 0.781 1.68 1.68-0.781 1.68-1.68 1.68z"></path>
453
+ </symbol>
454
+ <symbol id="frm_more_horiz_solid_icon" viewBox="0 0 20 20">
455
+ <title>more_horiz_solid</title>
456
+ <path d="M12.5 10c0 1.382-1.118 2.5-2.5 2.5s-2.5-1.118-2.5-2.5 1.118-2.5 2.5-2.5 2.5 1.118 2.5 2.5zM16.111 7.5c-1.382 0-2.5 1.118-2.5 2.5s1.118 2.5 2.5 2.5 2.5-1.118 2.5-2.5-1.118-2.5-2.5-2.5zM3.889 7.5c-1.382 0-2.5 1.118-2.5 2.5s1.118 2.5 2.5 2.5 2.5-1.118 2.5-2.5-1.118-2.5-2.5-2.5z"></path>
457
+ </symbol>
458
+ <symbol id="frm_more_vert_solid_icon" viewBox="0 0 10 20">
459
+ <title>more_vert_solid</title>
460
+ <path d="M5 7.5c1.382 0 2.5 1.118 2.5 2.5s-1.118 2.5-2.5 2.5-2.5-1.118-2.5-2.5 1.118-2.5 2.5-2.5zM2.5 3.889c0 1.382 1.118 2.5 2.5 2.5s2.5-1.118 2.5-2.5-1.118-2.5-2.5-2.5-2.5 1.118-2.5 2.5zM2.5 16.111c0 1.382 1.118 2.5 2.5 2.5s2.5-1.118 2.5-2.5-1.118-2.5-2.5-2.5-2.5 1.118-2.5 2.5z"></path>
461
+ </symbol>
462
+ <symbol id="frm_calculator_icon" viewBox="0 0 20 20">
463
+ <title>calculator</title>
464
+ <path d="M16.875 0h-13.75c-1 0-1.875 0.875-1.875 1.875v16.25c0 1 0.875 1.875 1.875 1.875h13.75c1 0 1.875-0.875 1.875-1.875v-16.25c0-1-0.875-1.875-1.875-1.875zM16.875 18.125h-13.75v-10h13.75v10zM16.875 6.25h-13.75v-4.375h13.75v4.375zM5.5 12.5h1.5c0.25 0 0.5-0.25 0.5-0.5v-1.5c0-0.25-0.25-0.5-0.5-0.5h-1.5c-0.25 0-0.5 0.25-0.5 0.5v1.5c0 0.25 0.25 0.5 0.5 0.5zM13 16.25h1.5c0.25 0 0.5-0.25 0.5-0.5v-5.25c0-0.25-0.25-0.5-0.5-0.5h-1.5c-0.25 0-0.5 0.25-0.5 0.5v5.25c0 0.25 0.25 0.5 0.5 0.5zM5.5 16.25h1.5c0.25 0 0.5-0.25 0.5-0.5v-1.5c0-0.25-0.25-0.5-0.5-0.5h-1.5c-0.25 0-0.5 0.25-0.5 0.5v1.5c0 0.25 0.25 0.5 0.5 0.5zM9.25 12.5h1.5c0.25 0 0.5-0.25 0.5-0.5v-1.5c0-0.25-0.25-0.5-0.5-0.5h-1.5c-0.25 0-0.5 0.25-0.5 0.5v1.5c0 0.25 0.25 0.5 0.5 0.5zM9.25 16.25h1.5c0.25 0 0.5-0.25 0.5-0.5v-1.5c0-0.25-0.25-0.5-0.5-0.5h-1.5c-0.25 0-0.5 0.25-0.5 0.5v1.5c0 0.25 0.25 0.5 0.5 0.5z"></path>
465
+ </symbol>
466
+ <symbol id="frm_key_icon" viewBox="0 0 20 20">
467
+ <title>key</title>
468
+ <path d="M9.894 5.402c0-1.183-0.96-2.143-2.143-2.143s-2.143 0.96-2.143 2.143c0 0.324 0.078 0.636 0.212 0.926-0.29-0.134-0.603-0.212-0.926-0.212-1.183 0-2.143 0.96-2.143 2.143s0.96 2.143 2.143 2.143 2.143-0.96 2.143-2.143c0-0.324-0.078-0.636-0.212-0.926 0.29 0.134 0.603 0.212 0.926 0.212 1.183 0 2.143-0.96 2.143-2.143zM19.392 13.259c0 0.257-1.027 1.283-1.283 1.283-0.29 0-1.194-1.049-1.429-1.283l-1.071 1.071 2.455 2.455c0.201 0.201 0.313 0.48 0.313 0.759 0 0.625-0.714 1.339-1.339 1.339-0.279 0-0.558-0.112-0.759-0.313l-7.489-7.489c-1.172 0.871-2.6 1.462-4.074 1.462-2.433 0-4.107-1.685-4.107-4.107 0-3.661 3.661-7.321 7.321-7.321 2.422 0 4.107 1.674 4.107 4.107 0 1.473-0.592 2.902-1.462 4.074l3.962 3.962 1.071-1.071c-0.234-0.234-1.283-1.138-1.283-1.429 0-0.257 1.027-1.283 1.283-1.283 0.089 0 0.19 0.045 0.257 0.112 0.413 0.413 3.527 3.348 3.527 3.672z"></path>
469
+ </symbol>
470
+ <symbol id="frm_keyalt_solid_icon" viewBox="0 0 20 20">
471
+ <title>keyalt_solid</title>
472
+ <path d="M20 6.875c0 3.797-3.078 6.875-6.875 6.875-0.438 0-0.867-0.042-1.282-0.12l-0.938 1.055c-0.172 0.193-0.422 0.315-0.701 0.315-0 0-0 0-0 0h-1.454v1.563c0 0.518-0.42 0.938-0.938 0.938h-1.563v1.563c0 0.518-0.42 0.938-0.938 0.938h-4.375c-0.518 0-0.938-0.42-0.938-0.938v-3.049c0-0.249 0.099-0.487 0.275-0.663l6.32-6.32c-0.224-0.678-0.345-1.402-0.345-2.155 0-3.797 3.078-6.875 6.875-6.875 3.808-0 6.875 3.067 6.875 6.875zM13.125 5c0 1.036 0.839 1.875 1.875 1.875s1.875-0.839 1.875-1.875-0.839-1.875-1.875-1.875-1.875 0.839-1.875 1.875z"></path>
473
+ </symbol>
474
+ <symbol id="frm_keyalt_icon" viewBox="0 0 20 20">
475
+ <title>keyalt</title>
476
+ <path d="M12.5 1.875c3.107 0 5.625 2.518 5.625 5.625s-2.518 5.625-5.625 5.625c-0.741 0-1.448-0.144-2.096-0.404l-1.654 1.654h-1.25v1.875h-1.875v1.875h-3.75v-3.75l5.241-5.241c-0.153-0.488-0.241-1.048-0.241-1.63 0-0.001 0-0.003 0-0.004v0c0-3.107 2.518-5.625 5.625-5.625zM12.5 0c-4.142 0-7.5 3.358-7.5 7.5 0 0.345 0.024 0.688 0.070 1.028l-4.796 4.796c-0.17 0.17-0.275 0.404-0.275 0.663v0 5.076c0 0.518 0.42 0.938 0.938 0.938h5.625c0.518 0 0.938-0.42 0.938-0.938v-0.938h0.938c0.518 0 0.938-0.42 0.938-0.938v-0.781l1.564-1.569c0.51 0.108 1.032 0.163 1.561 0.163 4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM12.5 5.625c0 1.036 0.839 1.875 1.875 1.875s1.875-0.839 1.875-1.875-0.839-1.875-1.875-1.875-1.875 0.839-1.875 1.875z"></path>
477
+ </symbol>
478
+ <symbol id="frm_keyboard_icon" viewBox="0 0 22 20">
479
+ <title>keyboard</title>
480
+ <path d="M20.625 2.5h-18.75c-1.034 0-1.875 0.841-1.875 1.875v11.25c0 1.034 0.841 1.875 1.875 1.875h18.75c1.034 0 1.875-0.841 1.875-1.875v-11.25c0-1.034-0.841-1.875-1.875-1.875zM20.938 15.625c0 0.172-0.141 0.313-0.313 0.313h-18.75c-0.172 0-0.313-0.141-0.313-0.313v-11.25c0-0.172 0.141-0.313 0.313-0.313h18.75c0.172 0 0.313 0.141 0.313 0.313v11.25zM6.641 10.547v-1.094c0-0.259-0.209-0.469-0.469-0.469h-1.094c-0.259 0-0.469 0.209-0.469 0.469v1.094c0 0.259 0.209 0.469 0.469 0.469h1.094c0.259 0 0.469-0.209 0.469-0.469zM10.391 10.547v-1.094c0-0.259-0.209-0.469-0.469-0.469h-1.094c-0.259 0-0.469 0.209-0.469 0.469v1.094c0 0.259 0.209 0.469 0.469 0.469h1.094c0.259 0 0.469-0.209 0.469-0.469zM14.141 10.547v-1.094c0-0.259-0.209-0.469-0.469-0.469h-1.094c-0.259 0-0.469 0.209-0.469 0.469v1.094c0 0.259 0.209 0.469 0.469 0.469h1.094c0.259 0 0.469-0.209 0.469-0.469zM17.891 10.547v-1.094c0-0.259-0.209-0.469-0.469-0.469h-1.094c-0.259 0-0.469 0.209-0.469 0.469v1.094c0 0.259 0.209 0.469 0.469 0.469h1.094c0.259 0 0.469-0.209 0.469-0.469zM4.766 7.344v-1.094c0-0.259-0.209-0.469-0.469-0.469h-1.094c-0.259 0-0.469 0.209-0.469 0.469v1.094c0 0.259 0.209 0.469 0.469 0.469h1.094c0.259 0 0.469-0.209 0.469-0.469zM8.516 7.344v-1.094c0-0.259-0.209-0.469-0.469-0.469h-1.094c-0.259 0-0.469 0.209-0.469 0.469v1.094c0 0.259 0.209 0.469 0.469 0.469h1.094c0.259 0 0.469-0.209 0.469-0.469zM12.266 7.344v-1.094c0-0.259-0.209-0.469-0.469-0.469h-1.094c-0.259 0-0.469 0.209-0.469 0.469v1.094c0 0.259 0.209 0.469 0.469 0.469h1.094c0.259 0 0.469-0.209 0.469-0.469zM16.016 7.344v-1.094c0-0.259-0.209-0.469-0.469-0.469h-1.094c-0.259 0-0.469 0.209-0.469 0.469v1.094c0 0.259 0.209 0.469 0.469 0.469h1.094c0.259 0 0.469-0.209 0.469-0.469zM19.766 7.344v-1.094c0-0.259-0.209-0.469-0.469-0.469h-1.094c-0.259 0-0.469 0.209-0.469 0.469v1.094c0 0.259 0.209 0.469 0.469 0.469h1.094c0.259 0 0.469-0.209 0.469-0.469zM17.891 13.516v-0.625c0-0.259-0.297-0.469-0.663-0.469h-11.953c-0.366 0-0.663 0.209-0.663 0.469v0.625c0 0.259 0.297 0.469 0.663 0.469h11.953c0.366 0 0.663-0.209 0.663-0.469z"></path>
481
+ </symbol>
482
+ <symbol id="frm_eye_icon" viewBox="0 0 20 20">
483
+ <title>eye</title>
484
+ <path d="M10 4.545c3.445 0 6.518 1.936 8.018 5-1.5 3.064-4.573 5-8.018 5s-6.518-1.936-8.018-5c1.5-3.064 4.573-5 8.018-5zM10 2.727c-4.545 0-8.427 2.827-10 6.818 1.573 3.991 5.455 6.818 10 6.818s8.427-2.827 10-6.818c-1.573-3.991-5.455-6.818-10-6.818zM10 7.273c1.255 0 2.273 1.018 2.273 2.273s-1.018 2.273-2.273 2.273-2.273-1.018-2.273-2.273 1.018-2.273 2.273-2.273zM10 5.455c-2.255 0-4.091 1.836-4.091 4.091s1.836 4.091 4.091 4.091 4.091-1.836 4.091-4.091-1.836-4.091-4.091-4.091z"></path>
485
+ </symbol>
486
+ <symbol id="frm_eye_solid_icon" viewBox="0 0 20 20">
487
+ <title>eye_solid</title>
488
+ <path d="M10 3.182c-4.545 0-8.427 2.827-10 6.818 1.573 3.991 5.455 6.818 10 6.818s8.427-2.827 10-6.818c-1.573-3.991-5.455-6.818-10-6.818zM10 14.545c-2.509 0-4.545-2.036-4.545-4.545s2.036-4.545 4.545-4.545 4.545 2.036 4.545 4.545-2.036 4.545-4.545 4.545zM10 7.273c-1.509 0-2.727 1.218-2.727 2.727s1.218 2.727 2.727 2.727 2.727-1.218 2.727-2.727-1.218-2.727-2.727-2.727z"></path>
489
+ </symbol>
490
+ <symbol id="frm_eye_slash_icon" viewBox="0 0 20 20">
491
+ <title>eye_slash</title>
492
+ <path d="M10 4.545c3.445 0 6.518 1.936 8.018 5-0.536 1.109-1.291 2.064-2.191 2.836l1.282 1.282c1.264-1.118 2.264-2.518 2.891-4.118-1.573-3.991-5.455-6.818-10-6.818-1.155 0-2.264 0.182-3.309 0.518l1.5 1.5c0.591-0.118 1.191-0.2 1.809-0.2zM9.027 5.582l1.882 1.882c0.518 0.227 0.936 0.645 1.164 1.164l1.882 1.882c0.073-0.309 0.127-0.636 0.127-0.973 0.009-2.255-1.827-4.082-4.082-4.082-0.336 0-0.655 0.045-0.973 0.127zM0.918 2.609l2.436 2.436c-1.482 1.164-2.655 2.709-3.355 4.5 1.573 3.991 5.455 6.818 10 6.818 1.382 0 2.709-0.264 3.927-0.745l3.109 3.109 1.282-1.282-16.118-16.127-1.282 1.291zM7.736 9.427l2.373 2.373c-0.036 0.009-0.073 0.018-0.109 0.018-1.255 0-2.273-1.018-2.273-2.273 0-0.045 0.009-0.073 0.009-0.118zM4.645 6.336l1.591 1.591c-0.209 0.5-0.327 1.045-0.327 1.618 0 2.255 1.836 4.091 4.091 4.091 0.573 0 1.118-0.118 1.609-0.327l0.891 0.891c-0.8 0.218-1.636 0.345-2.5 0.345-3.445 0-6.518-1.936-8.018-5 0.636-1.3 1.564-2.373 2.664-3.209z"></path>
493
+ </symbol>
494
+ <symbol id="frm_eye_slash_solid_icon" viewBox="0 0 20 20">
495
+ <title>eye_slash_solid</title>
496
+ <path d="M10 5.452c2.51 0 4.548 2.037 4.548 4.548 0 0.591-0.118 1.146-0.327 1.664l2.656 2.656c1.373-1.146 2.456-2.628 3.12-4.32-1.573-3.993-5.457-6.821-10.005-6.821-1.273 0-2.492 0.227-3.62 0.637l1.965 1.965c0.518-0.209 1.073-0.327 1.664-0.327zM0.905 2.97l2.492 2.492c-1.51 1.173-2.692 2.738-3.402 4.538 1.573 3.993 5.457 6.821 10.005 6.821 1.41 0 2.756-0.273 3.984-0.764l0.382 0.382 2.665 2.656 1.155-1.155-16.126-16.126-1.155 1.155zM5.935 7.999l1.41 1.41c-0.045 0.191-0.073 0.391-0.073 0.591 0 1.51 1.219 2.729 2.729 2.729 0.2 0 0.4-0.027 0.591-0.073l1.41 1.41c-0.609 0.3-1.282 0.482-2.001 0.482-2.51 0-4.548-2.037-4.548-4.548 0-0.719 0.182-1.392 0.482-2.001zM9.854 7.29l2.865 2.865 0.018-0.146c0-1.51-1.219-2.729-2.729-2.729l-0.155 0.009z"></path>
497
+ </symbol>
498
+ <symbol id="frm_page_break_icon" viewBox="0 0 20 20">
499
+ <title>page_break</title>
500
+ <path d="M0.5 0v20z"></path>
501
+ <path d="M1 0v20z"></path>
502
+ <path d="M1.5 0v20z"></path>
503
+ <path d="M2 0v20z"></path>
504
+ <path d="M2.5 0v20z"></path>
505
+ <path d="M3 0v20z"></path>
506
+ <path d="M3.5 0v20z"></path>
507
+ <path d="M4 0v20z"></path>
508
+ <path d="M4.5 0v20z"></path>
509
+ <path d="M5 0v20z"></path>
510
+ <path d="M5.5 0v20z"></path>
511
+ <path d="M6 0v20z"></path>
512
+ <path d="M6.5 0v20z"></path>
513
+ <path d="M7 0v20z"></path>
514
+ <path d="M7.5 0v20z"></path>
515
+ <path d="M8 0v20z"></path>
516
+ <path d="M8.5 0v20z"></path>
517
+ <path d="M9 0v20z"></path>
518
+ <path d="M9.5 0v20z"></path>
519
+ <path d="M10 0v20z"></path>
520
+ <path d="M10.5 0v20z"></path>
521
+ <path d="M11 0v20z"></path>
522
+ <path d="M11.5 0v20z"></path>
523
+ <path d="M12 0v20z"></path>
524
+ <path d="M12.5 0v20z"></path>
525
+ <path d="M13 0v20z"></path>
526
+ <path d="M13.5 0v20z"></path>
527
+ <path d="M14 0v20z"></path>
528
+ <path d="M14.5 0v20z"></path>
529
+ <path d="M15 0v20z"></path>
530
+ <path d="M15.5 0v20z"></path>
531
+ <path d="M16 0v20z"></path>
532
+ <path d="M16.5 0v20z"></path>
533
+ <path d="M17 0v20z"></path>
534
+ <path d="M17.5 0v20z"></path>
535
+ <path d="M18 0v20z"></path>
536
+ <path d="M18.5 0v20z"></path>
537
+ <path d="M19 0v20z"></path>
538
+ <path d="M19.5 0v20z"></path>
539
+ <path d="M0 0.5h20z"></path>
540
+ <path d="M0 1h20z"></path>
541
+ <path d="M0 1.5h20z"></path>
542
+ <path d="M0 2h20z"></path>
543
+ <path d="M0 2.5h20z"></path>
544
+ <path d="M0 3h20z"></path>
545
+ <path d="M0 3.5h20z"></path>
546
+ <path d="M0 4h20z"></path>
547
+ <path d="M0 4.5h20z"></path>
548
+ <path d="M0 5h20z"></path>
549
+ <path d="M0 5.5h20z"></path>
550
+ <path d="M0 6h20z"></path>
551
+ <path d="M0 6.5h20z"></path>
552
+ <path d="M0 7h20z"></path>
553
+ <path d="M0 7.5h20z"></path>
554
+ <path d="M0 8h20z"></path>
555
+ <path d="M0 8.5h20z"></path>
556
+ <path d="M0 9h20z"></path>
557
+ <path d="M0 9.5h20z"></path>
558
+ <path d="M0 10h20z"></path>
559
+ <path d="M0 10.5h20z"></path>
560
+ <path d="M0 11h20z"></path>
561
+ <path d="M0 11.5h20z"></path>
562
+ <path d="M0 12h20z"></path>
563
+ <path d="M0 12.5h20z"></path>
564
+ <path d="M0 13h20z"></path>
565
+ <path d="M0 13.5h20z"></path>
566
+ <path d="M0 14h20z"></path>
567
+ <path d="M0 14.5h20z"></path>
568
+ <path d="M0 15h20z"></path>
569
+ <path d="M0 15.5h20z"></path>
570
+ <path d="M0 16h20z"></path>
571
+ <path d="M0 16.5h20z"></path>
572
+ <path d="M0 17h20z"></path>
573
+ <path d="M0 17.5h20z"></path>
574
+ <path d="M0 18h20z"></path>
575
+ <path d="M0 18.5h20z"></path>
576
+ <path d="M0 19h20z"></path>
577
+ <path d="M0 19.5h20z"></path>
578
+ <path d="M17.969 1.031v6c0 0.518-0.42 0.938-0.938 0.938s-0.938-0.42-0.938-0.938v-6c0-0.518 0.42-0.938 0.938-0.938s0.938 0.42 0.938 0.938z"></path>
579
+ <path d="M3.938 1.031v6c0 0.518-0.42 0.938-0.938 0.938s-0.938-0.42-0.938-0.938v-6c0-0.518 0.42-0.938 0.938-0.938s0.938 0.42 0.938 0.938z"></path>
580
+ <path d="M3 6.094h14.031c0.518 0 0.938 0.42 0.938 0.938s-0.42 0.938-0.938 0.938h-14.031c-0.518 0-0.938-0.42-0.938-0.938s0.42-0.938 0.938-0.938z"></path>
581
+ <path d="M3.938 19v-6c0-0.518-0.42-0.938-0.938-0.938s-0.938 0.42-0.938 0.938v6c0 0.518 0.42 0.938 0.938 0.938s0.938-0.42 0.938-0.938z"></path>
582
+ <path d="M17.969 19v-6c0-0.518-0.42-0.938-0.938-0.938s-0.938 0.42-0.938 0.938v6c0 0.518 0.42 0.938 0.938 0.938s0.938-0.42 0.938-0.938z"></path>
583
+ <path d="M3 13.938h14.031c0.518 0 0.938-0.42 0.938-0.938s-0.42-0.938-0.938-0.938h-14.031c-0.518 0-0.938 0.42-0.938 0.938s0.42 0.938 0.938 0.938z"></path>
584
+ <path d="M0.938 10.953h1c0.518 0 0.938-0.42 0.938-0.938s-0.42-0.938-0.938-0.938h-1c-0.518 0-0.938 0.42-0.938 0.938s0.42 0.938 0.938 0.938z"></path>
585
+ <path d="M9.5 10.953h1c0.518 0 0.938-0.42 0.938-0.938s-0.42-0.938-0.938-0.938h-1c-0.518 0-0.938 0.42-0.938 0.938s0.42 0.938 0.938 0.938z"></path>
586
+ <path d="M18.063 10.953h1c0.518 0 0.938-0.42 0.938-0.938s-0.42-0.938-0.938-0.938h-1c-0.518 0-0.938 0.42-0.938 0.938s0.42 0.938 0.938 0.938z"></path>
587
+ <path d="M4.54 10.938h2.394c0.518 0 0.938-0.42 0.938-0.938s-0.42-0.938-0.938-0.938h-2.394c-0.518 0-0.938 0.42-0.938 0.938s0.42 0.938 0.938 0.938z"></path>
588
+ <path d="M13.102 10.938h2.394c0.518 0 0.938-0.42 0.938-0.938s-0.42-0.938-0.938-0.938h-2.394c-0.518 0-0.938 0.42-0.938 0.938s0.42 0.938 0.938 0.938z"></path>
589
+ </symbol>
590
+ <symbol id="frm_view_day_icon" viewBox="0 0 20 20">
591
+ <title>view_day</title>
592
+ <path d="M2.090 2.5h15.82v2.5h-15.82v-2.5zM17.090 6.68c0.469 0 0.82 0.352 0.82 0.82v5c0 0.469-0.352 0.82-0.82 0.82h-14.18c-0.469 0-0.82-0.352-0.82-0.82v-5c0-0.469 0.352-0.82 0.82-0.82h14.18zM2.090 17.5v-2.5h15.82v2.5h-15.82z"></path>
593
+ </symbol>
594
+ <symbol id="frm_attach_file_icon" viewBox="0 0 20 20">
595
+ <title>attach_file</title>
596
+ <path d="M14.085 4.553h1.362v10.426c0 2.766-2.213 5.021-4.979 5.021s-5.021-2.255-5.021-5.021v-11.319c0-2 1.66-3.66 3.66-3.66s3.617 1.66 3.617 3.66v9.532c0 1.234-1.021 2.255-2.255 2.255s-2.298-1.021-2.298-2.255v-8.638h1.362v8.638c0 0.511 0.426 0.894 0.936 0.894s0.894-0.383 0.894-0.894v-9.532c0-1.234-1.021-2.298-2.255-2.298s-2.298 1.064-2.298 2.298v11.319c0 2 1.66 3.66 3.66 3.66s3.617-1.66 3.617-3.66v-10.426z"></path>
597
+ </symbol>
598
+ <symbol id="frm_printer_icon" viewBox="0 0 20 20">
599
+ <title>printer</title>
600
+ <path d="M14.545 6.364h-9.091v-4.545h9.091zM3.636 16.364v2.727c0 0.502 0.407 0.909 0.909 0.909h10.909c0.502 0 0.909-0.407 0.909-0.909v-2.727h0.909c0.368 0 0.721-0.074 1.044-0.207 0.335-0.138 0.635-0.341 0.885-0.592s0.454-0.551 0.592-0.885c0.133-0.322 0.206-0.675 0.206-1.043v-4.545c0-0.368-0.074-0.721-0.207-1.044-0.138-0.335-0.341-0.635-0.592-0.885s-0.551-0.454-0.885-0.592c-0.322-0.133-0.675-0.206-1.043-0.206h-0.909v-5.455c0-0.502-0.407-0.909-0.909-0.909h-10.909c-0.502 0-0.909 0.407-0.909 0.909v5.455h-0.909c-0.368 0-0.721 0.074-1.044 0.207-0.334 0.138-0.634 0.341-0.885 0.592s-0.454 0.551-0.592 0.885c-0.134 0.323-0.207 0.675-0.207 1.044v4.545c0 0.368 0.074 0.721 0.207 1.044 0.138 0.335 0.341 0.635 0.592 0.885s0.551 0.454 0.885 0.592c0.322 0.133 0.675 0.206 1.043 0.206zM4.545 10.909c-0.502 0-0.909 0.407-0.909 0.909v2.727h-0.909c-0.125 0-0.242-0.025-0.347-0.068-0.111-0.045-0.211-0.114-0.295-0.198s-0.152-0.185-0.198-0.295c-0.044-0.105-0.068-0.223-0.068-0.347v-4.545c0-0.125 0.025-0.242 0.068-0.347 0.045-0.111 0.114-0.211 0.198-0.295s0.185-0.152 0.295-0.198c0.105-0.044 0.223-0.068 0.347-0.068h14.545c0.125 0 0.242 0.025 0.347 0.068 0.111 0.045 0.211 0.114 0.295 0.198s0.152 0.185 0.198 0.295c0.044 0.105 0.068 0.223 0.068 0.347v4.545c0 0.125-0.025 0.242-0.068 0.347-0.045 0.111-0.114 0.211-0.198 0.295s-0.185 0.152-0.295 0.198c-0.105 0.044-0.223 0.068-0.347 0.068h-0.909v-2.727c0-0.502-0.407-0.909-0.909-0.909zM5.455 12.727h9.091v5.455h-9.091z"></path>
601
+ </symbol>
602
+ <symbol id="frm_header_icon" viewBox="0 0 20 20">
603
+ <title>header</title>
604
+ <path d="M17.237 17.071c-0.81 0-1.63-0.064-2.449-0.064-0.81 0-1.621 0.064-2.431 0.064-0.313 0-0.46-0.341-0.46-0.608 0-0.819 0.921-0.47 1.4-0.783 0.304-0.193 0.304-0.967 0.304-1.289l-0.009-3.6c0-0.101 0-0.193-0.009-0.285-0.147-0.046-0.313-0.037-0.46-0.037h-6.215c-0.157 0-0.322-0.009-0.47 0.037-0.009 0.092-0.009 0.184-0.009 0.285l-0.009 3.416c0 0.35 0 1.307 0.341 1.51 0.479 0.295 1.565-0.12 1.565 0.709 0 0.276-0.129 0.645-0.451 0.645-0.856 0-1.713-0.064-2.56-0.064-0.783 0-1.565 0.064-2.348 0.064-0.304 0-0.442-0.35-0.442-0.608 0-0.801 0.847-0.47 1.298-0.783 0.295-0.203 0.304-0.994 0.304-1.317l-0.009-0.525v-7.486c0-0.442 0.064-1.86-0.35-2.109-0.46-0.285-1.446 0.157-1.446-0.672 0-0.267 0.12-0.645 0.442-0.645 0.847 0 1.703 0.064 2.551 0.064 0.773 0 1.556-0.064 2.33-0.064 0.331 0 0.46 0.368 0.46 0.645 0 0.792-0.912 0.405-1.363 0.691-0.322 0.193-0.322 1.142-0.322 1.473l0.009 2.946c0 0.101 0 0.193 0.009 0.295 0.12 0.028 0.239 0.028 0.359 0.028h6.436c0.11 0 0.23 0 0.35-0.028 0.009-0.101 0.009-0.193 0.009-0.295l0.009-2.946c0-0.341 0-1.28-0.322-1.473-0.46-0.276-1.381 0.092-1.381-0.691 0-0.276 0.129-0.645 0.46-0.645 0.81 0 1.621 0.064 2.431 0.064 0.792 0 1.584-0.064 2.376-0.064 0.331 0 0.46 0.368 0.46 0.645 0 0.801-0.948 0.396-1.409 0.681-0.313 0.203-0.322 1.151-0.322 1.482l0.009 8.683c0 0.304 0.018 1.105 0.313 1.289 0.47 0.295 1.464-0.083 1.464 0.718 0 0.267-0.12 0.645-0.442 0.645z"></path>
605
+ </symbol>
606
+ <symbol id="frm_h1_icon" viewBox="0 0 25 20">
607
+ <title>h1</title>
608
+ <path d="M7.183 14.162v0.694c0 0.217-0.176 0.394-0.394 0.394h-3.552c-0.217 0-0.394-0.176-0.394-0.394v-0.694c0-0.217 0.176-0.394 0.394-0.394h0.87v-7.551h-0.87c-0.217 0-0.394-0.176-0.394-0.394v-0.68c0-0.217 0.176-0.394 0.394-0.394h3.552c0.217 0 0.394 0.176 0.394 0.394v0.68c0 0.217-0.176 0.394-0.394 0.394h-0.884v3.013h4.894v-3.013h-0.884c-0.217 0-0.394-0.176-0.394-0.394v-0.68c0-0.217 0.176-0.394 0.394-0.394h3.552c0.217 0 0.394 0.176 0.394 0.394v0.68c0 0.217-0.176 0.394-0.394 0.394h-0.87v7.551h0.87c0.217 0 0.394 0.176 0.394 0.394v0.694c0 0.217-0.176 0.394-0.394 0.394h-3.552c-0.217 0-0.394-0.176-0.394-0.394v-0.694c0-0.217 0.176-0.394 0.394-0.394h0.884v-2.999h-4.894v2.999h0.884c0.217 0 0.394 0.176 0.394 0.394zM19.551 4.75h-0.964c0 0 0 0-0 0-0.107 0-0.203 0.042-0.274 0.111l0-0-2.212 2.147c-0.156 0.151-0.16 0.4-0.009 0.556l0.564 0.583c0.152 0.157 0.403 0.16 0.559 0.007l0.793-0.781c0.068-0.065 0.132-0.131 0.194-0.199l0.003-0.003c-0 0.038-0.001 0.076-0.001 0.114v6.368h-1.846c-0.217 0-0.394 0.176-0.394 0.394v0.809c0 0.217 0.176 0.394 0.394 0.394h5.404c0.217 0 0.394-0.176 0.394-0.394v-0.809c0-0.217-0.176-0.394-0.394-0.394h-1.818v-8.51c0-0.217-0.176-0.394-0.394-0.394z"></path>
609
+ </symbol>
610
+ <symbol id="frm_repeat_icon" viewBox="0 0 20 20">
611
+ <title>repeat</title>
612
+ <path d="M18.795 6.419c0.761 1.003 1.211 2.254 1.205 3.609-0.015 3.278-2.72 5.91-5.999 5.91h-7.126v2.5c-0 0.417-0.506 0.626-0.8 0.331l-3.438-3.437c-0.183-0.183-0.183-0.48 0-0.663l3.438-3.438c0.296-0.296 0.8-0.084 0.8 0.331v2.5h7.135c2.237 0 4.117-1.83 4.115-4.067-0.001-0.874-0.279-1.684-0.751-2.347-0.134-0.188-0.116-0.445 0.048-0.608 0.323-0.322 0.531-0.529 0.669-0.668 0.2-0.201 0.533-0.18 0.705 0.046zM1.875 10.004c-0.002-2.237 1.878-4.067 4.115-4.067h7.135v2.5c0 0.415 0.504 0.628 0.8 0.331l3.438-3.438c0.183-0.183 0.183-0.48 0-0.663l-3.438-3.437c-0.294-0.294-0.8-0.086-0.8 0.331v2.5h-7.126c-3.278 0-5.983 2.631-5.999 5.91-0.006 1.355 0.444 2.606 1.205 3.609 0.172 0.226 0.504 0.248 0.705 0.046 0.138-0.139 0.346-0.346 0.669-0.668 0.163-0.163 0.182-0.42 0.048-0.608-0.472-0.663-0.751-1.473-0.751-2.347z"></path>
613
+ </symbol>
614
+ <symbol id="frm_repeater_icon" viewBox="0 0 20 20">
615
+ <title>repeater</title>
616
+ <path d="M10 5c-5.52 0-10 2.24-10 5 0 2.24 2.94 4.13 7 4.77v3.23l4-4-4-4v2.73c-3.15-0.56-5-1.9-5-2.73 0-1.060 3.040-3 8-3s8 1.94 8 3c0 0.73-1.46 1.89-4 2.53v2.050c3.53-0.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z"></path>
617
+ </symbol>
618
+ <symbol id="frm_hashtag_icon" viewBox="0 0 20 20">
619
+ <title>hashtag</title>
620
+ <path d="M11.994 8.2l-0.4 3.6h-3.589l0.4-3.6zM12.705 1.801l-0.511 4.599h-3.589l0.489-4.401c0.055-0.494-0.301-0.939-0.795-0.994s-0.939 0.301-0.994 0.796l-0.511 4.599h-3.994c-0.497 0-0.9 0.403-0.9 0.9s0.403 0.9 0.9 0.9h3.794l-0.4 3.6h-3.395c-0.497 0-0.9 0.403-0.9 0.9s0.403 0.9 0.9 0.9h3.194l-0.489 4.401c-0.055 0.494 0.301 0.939 0.795 0.994s0.939-0.301 0.994-0.795l0.512-4.6h3.589l-0.489 4.401c-0.055 0.494 0.301 0.939 0.795 0.994s0.939-0.301 0.994-0.795l0.511-4.6h3.994c0.497 0 0.9-0.403 0.9-0.9s-0.403-0.9-0.9-0.9h-3.794l0.4-3.6h3.395c0.497 0 0.9-0.403 0.9-0.9s-0.403-0.9-0.9-0.9h-3.194l0.489-4.401c0.055-0.494-0.301-0.939-0.795-0.994s-0.939 0.301-0.994 0.795z"></path>
621
+ </symbol>
622
+ <symbol id="frm_save_icon" viewBox="0 0 20 20">
623
+ <title>save</title>
624
+ <path d="M18.2 5.075l-3.275-3.275c-0.341-0.341-0.809-0.55-1.328-0.55h-10.472c-1.034 0-1.875 0.841-1.875 1.875v13.75c0 1.034 0.841 1.875 1.875 1.875h13.75c1.034 0 1.875-0.841 1.875-1.875v-10.472c0-0.519-0.209-0.988-0.55-1.328v0 0zM11.875 3.125v3.125h-5v-3.125h5zM16.641 16.875h-13.281c-0.128 0-0.234-0.106-0.234-0.234v0-13.281c0-0.128 0.106-0.234 0.234-0.234v0h1.641v4.063c0 0.519 0.419 0.938 0.938 0.938h6.875c0.519 0 0.938-0.419 0.938-0.938v-3.909l3.056 3.056c0.044 0.044 0.069 0.1 0.069 0.166 0 0 0 0 0 0v0 10.141c0 0.128-0.106 0.234-0.234 0.234v0 0zM10 9.063c-1.897 0-3.438 1.541-3.438 3.438s1.541 3.438 3.438 3.438 3.438-1.541 3.438-3.438-1.541-3.438-3.438-3.438zM10 14.063c-0.862 0-1.563-0.7-1.563-1.563s0.7-1.563 1.563-1.563 1.563 0.7 1.563 1.563-0.7 1.563-1.563 1.563z"></path>
625
+ <path d="M6.875 3.125h2.375v3.125h-2.375v-3.125z"></path>
626
+ </symbol>
627
+ <symbol id="frm_sliders_icon" viewBox="0 0 20 20">
628
+ <title>sliders</title>
629
+ <path d="M5.357 15v1.429h-3.929v-1.429h3.929zM9.286 13.571c0.391 0 0.714 0.324 0.714 0.714v2.857c0 0.391-0.324 0.714-0.714 0.714h-2.857c-0.391 0-0.714-0.324-0.714-0.714v-2.857c0-0.391 0.324-0.714 0.714-0.714h2.857zM11.071 9.286v1.429h-9.643v-1.429h9.643zM3.929 3.571v1.429h-2.5v-1.429h2.5zM18.571 15v1.429h-8.214v-1.429h8.214zM7.857 2.143c0.391 0 0.714 0.324 0.714 0.714v2.857c0 0.391-0.324 0.714-0.714 0.714h-2.857c-0.391 0-0.714-0.324-0.714-0.714v-2.857c0-0.391 0.324-0.714 0.714-0.714h2.857zM15 7.857c0.391 0 0.714 0.324 0.714 0.714v2.857c0 0.391-0.324 0.714-0.714 0.714h-2.857c-0.391 0-0.714-0.324-0.714-0.714v-2.857c0-0.391 0.324-0.714 0.714-0.714h2.857zM18.571 9.286v1.429h-2.5v-1.429h2.5zM18.571 3.571v1.429h-9.643v-1.429h9.643z"></path>
630
+ </symbol>
631
+ <symbol id="frm_code_commit_icon" viewBox="0 0 25 20">
632
+ <title>code_commit</title>
633
+ <path d="M5 10c0 0.422 0.035 0.84 0.102 1.25h-4.633c-0.258 0-0.469-0.211-0.469-0.469v-1.563c0-0.258 0.211-0.469 0.469-0.469h4.633c-0.066 0.41-0.102 0.828-0.102 1.25zM24.531 8.75h-4.633c0.070 0.41 0.102 0.828 0.102 1.25s-0.035 0.84-0.102 1.25h4.633c0.258 0 0.469-0.211 0.469-0.469v-1.563c0-0.258-0.211-0.469-0.469-0.469zM12.5 5.625c-1.168 0-2.266 0.457-3.094 1.281-0.828 0.828-1.281 1.926-1.281 3.094s0.453 2.266 1.281 3.094c0.828 0.824 1.926 1.281 3.094 1.281s2.266-0.457 3.094-1.281c0.828-0.828 1.281-1.926 1.281-3.094s-0.453-2.266-1.281-3.094c-0.828-0.824-1.926-1.281-3.094-1.281zM12.5 3.75c3.453 0 6.25 2.797 6.25 6.25s-2.797 6.25-6.25 6.25-6.25-2.797-6.25-6.25 2.797-6.25 6.25-6.25z"></path>
634
+ </symbol>
635
+ <symbol id="frm_star_icon" viewBox="0 0 20 20">
636
+ <title>star</title>
637
+ <path d="M18.976 6.841l-5.462-0.796-2.441-4.949c-0.438-0.882-1.705-0.893-2.146 0l-2.441 4.949-5.462 0.796c-0.98 0.142-1.372 1.349-0.662 2.041l3.952 3.851-0.935 5.439c-0.168 0.983 0.867 1.72 1.735 1.26l4.886-2.568 4.886 2.568c0.867 0.456 1.903-0.277 1.735-1.26l-0.935-5.439 3.952-3.851c0.71-0.691 0.318-1.899-0.662-2.041zM13.761 12.104l0.886 5.174-4.647-2.441-4.647 2.441 0.886-5.174-3.761-3.664 5.196-0.755 2.325-4.71 2.325 4.71 5.196 0.755z"></path>
638
+ </symbol>
639
+ <symbol id="frm_star_full_icon" viewBox="0 0 20 20">
640
+ <title>star_full</title>
641
+ <path d="M18.976 6.841l-5.462-0.796-2.441-4.949c-0.438-0.882-1.705-0.893-2.146 0l-2.441 4.949-5.462 0.796c-0.98 0.142-1.372 1.349-0.662 2.041l3.952 3.851-0.935 5.439c-0.168 0.983 0.867 1.72 1.735 1.26l4.886-2.568 4.886 2.568c0.867 0.456 1.903-0.277 1.735-1.26l-0.935-5.439 3.952-3.851c0.71-0.691 0.318-1.899-0.662-2.041z"></path>
642
+ </symbol>
643
+ <symbol id="frm_star_half_icon" viewBox="0 0 20 20">
644
+ <title>star_half</title>
645
+ <path d="M18.976 6.841l-5.462-0.796-2.441-4.949c-0.438-0.882-1.705-0.893-2.146 0l-2.441 4.949-5.462 0.796c-0.98 0.142-1.372 1.349-0.662 2.041l3.952 3.851-0.935 5.439c-0.168 0.983 0.867 1.72 1.735 1.26l4.886-2.568 4.886 2.568c0.867 0.456 1.903-0.277 1.735-1.26l-0.935-5.439 3.952-3.851c0.71-0.691 0.318-1.899-0.662-2.041zM13.761 12.104l0.886 5.174-4.647-2.441-0.010 0.005v-11.846l0.010-0.021 2.325 4.71 5.196 0.755z"></path>
646
+ </symbol>
647
+ <symbol id="frm_linear_scale_icon" viewBox="0 0 20 20">
648
+ <title>linear_scale</title>
649
+ <path d="M17.512 7.512c1.362 0 2.488 1.127 2.488 2.488s-1.127 2.488-2.488 2.488c-1.033 0-1.925-0.61-2.3-1.502h-2.911c-0.376 0.892-1.268 1.502-2.3 1.502s-1.925-0.61-2.3-1.502h-2.911c-0.376 0.892-1.268 1.502-2.3 1.502-1.362 0-2.488-1.127-2.488-2.488s1.127-2.488 2.488-2.488c1.033 0 1.925 0.61 2.3 1.502h2.911c0.376-0.892 1.268-1.502 2.3-1.502s1.925 0.61 2.3 1.502h2.911c0.376-0.892 1.268-1.502 2.3-1.502z"></path>
650
+ </symbol>
651
+ <symbol id="frm_pie_chart_icon" viewBox="0 0 20 20">
652
+ <title>pie_chart</title>
653
+ <path d="M9.836 11.25v-8.75c-4.833 0-8.75 3.918-8.75 8.75s3.917 8.75 8.75 8.75 8.75-3.918 8.75-8.75c0-1.407-0.333-2.736-0.923-3.914l-7.827 3.914zM18.914 4.836c-1.437-2.867-4.402-4.836-7.827-4.836v8.75l7.827-3.914z"></path>
654
+ </symbol>
655
+ <symbol id="frm_stats_bars_icon" viewBox="0 0 20 20">
656
+ <title>stats_bars</title>
657
+ <path d="M0 16.25h20v2.5h-20zM2.5 11.25h2.5v3.75h-2.5zM6.25 6.25h2.5v8.75h-2.5zM10 10h2.5v5h-2.5zM13.75 2.5h2.5v12.5h-2.5z"></path>
658
+ </symbol>
659
+ <symbol id="frm_sms_icon" viewBox="0 0 20 20">
660
+ <title>sms</title>
661
+ <path d="M8.475 2.566c1.512 0 3.017-0.001 4.523 0 1.444 0.001 2.21 0.768 2.21 2.216 0.001 4.356 0.002 8.711 0 13.067-0 1.349-0.792 2.143-2.152 2.147-2.037 0.006-4.075 0.006-6.113 0-1.359-0.003-2.15-0.798-2.151-2.149-0.001-4.282-0.001-8.563-0-12.845 0-1.523 0.376-2.034 1.85-2.479 0-0.515-0.001-1.044 0-1.573 0.002-0.774 0.162-0.949 0.872-0.951 0.725-0.002 0.887 0.168 0.89 0.928 0.002 0.502 0.007 1.003 0.012 1.505 0 0.026 0.022 0.052 0.058 0.133zM9.985 10.257c0.797 0 1.594 0.010 2.392-0.003 0.926-0.014 1.514-0.615 1.52-1.54 0.006-0.901 0.005-1.801-0.001-2.702-0.006-0.982-0.591-1.567-1.577-1.57-1.535-0.006-3.071-0.004-4.606-0-1.012 0.003-1.605 0.581-1.616 1.585-0.010 0.886-0.010 1.772-0 2.657 0.010 0.977 0.604 1.563 1.586 1.572 0.768 0.007 1.535 0.002 2.303 0.001zM8.049 15.423c-0.675-0.002-0.683 0.006-0.685 0.689-0.002 0.577 0.029 0.608 0.583 0.611 0.678 0.003 0.704-0.016 0.708-0.531 0.004-0.747-0.012-0.768-0.606-0.769zM11.969 16.723c0.645 0.001 0.672-0.022 0.672-0.568-0-0.72-0.010-0.732-0.644-0.732-0.638-0-0.643 0.006-0.646 0.682-0.003 0.597 0.018 0.617 0.619 0.618zM11.976 14.872c0.65 0.001 0.665-0.012 0.664-0.567-0.001-0.711-0.010-0.722-0.651-0.722-0.63 0-0.638 0.009-0.639 0.687-0.001 0.591 0.009 0.601 0.626 0.602zM11.98 17.276c-0.628 0-0.628 0-0.63 0.688-0.002 0.577 0.016 0.593 0.636 0.593 0.634 0 0.656-0.020 0.655-0.577-0.002-0.705-0.002-0.705-0.661-0.705zM8.006 14.872c0.632 0 0.646-0.012 0.648-0.537 0.002-0.733-0.011-0.75-0.62-0.751-0.663-0.002-0.67 0.005-0.67 0.702-0.001 0.578 0.009 0.586 0.643 0.587zM8.021 17.276c-0.653-0-0.658 0.004-0.658 0.706-0 0.552 0.023 0.574 0.612 0.576 0.661 0.002 0.679-0.013 0.679-0.55 0.001-0.727-0.003-0.731-0.633-0.732zM10.638 16.112c-0.004-0.691-0.004-0.691-0.678-0.688-0.597 0.002-0.6 0.006-0.597 0.77 0.002 0.515 0.028 0.534 0.7 0.53 0.556-0.003 0.578-0.027 0.575-0.612zM8.034 11.759c-0.667-0.001-0.667-0.001-0.671 0.655-0.003 0.599 0.011 0.613 0.621 0.614 0.663 0.001 0.67-0.006 0.669-0.564-0.001-0.703-0.001-0.703-0.62-0.705zM12.64 12.358c-0.008-0.608-0.008-0.609-0.771-0.599-0.513 0.007-0.529 0.029-0.519 0.76 0.007 0.505 0.025 0.517 0.77 0.509 0.513-0.006 0.528-0.025 0.52-0.67zM10.020 13.584c-0.656-0.002-0.656-0.002-0.657 0.717-0.001 0.559 0.009 0.569 0.572 0.571 0.689 0.003 0.7-0.006 0.703-0.529 0.004-0.748-0.004-0.757-0.618-0.759zM10.637 17.94c-0.006-0.672-0.006-0.672-0.748-0.665-0.523 0.005-0.528 0.013-0.526 0.753 0.002 0.522 0.016 0.533 0.702 0.529 0.56-0.003 0.577-0.022 0.572-0.617zM10.014 13.028c0.611-0.001 0.624-0.012 0.624-0.559-0.001-0.71-0.001-0.71-0.654-0.71-0.623 0-0.623 0-0.621 0.739 0.002 0.529 0.003 0.531 0.651 0.53z"></path>
662
+ </symbol>
663
+ <symbol id="frm_highrise_icon" viewBox="0 0 20 20">
664
+ <title>highrise</title>
665
+ <path d="M17.094 13.189c0-1.030-0.749-1.994-2.11-2.716-0.026-0.014-0.052-0.027-0.078-0.040l-0.020-2.389-0.068 0.001-0.009-0.023 0.033-0.087-1.685-0.637-0.024 0.064-0.025-0.063-0.91 0.364 0.051 0.127 0.886-0.354 1.553 0.587-1.507 0.586-0.886-0.354-0.051 0.127 0.868 0.347v5.227l-0.499-0.192-0.049 0.128 0.592 0.228 0.024-0.064 0.026 0.063 1.639-0.683-0.026-0.063 0.114-0.001-0.024-2.784c1.266 0.668 2.050 1.588 2.050 2.603h-0.015l0.009 0.077c0.004 0.035 0.006 0.071 0.006 0.106 0 0.656-0.72 1.279-2.029 1.755-1.33 0.483-3.099 0.749-4.983 0.749s-3.653-0.266-4.983-0.749c-1.308-0.475-2.029-1.098-2.029-1.755 0-0.035 0.002-0.071 0.006-0.106l0.009-0.077h-0.015c0-1.115 0.945-2.115 2.436-2.791v3.019h0.068l-0.026 0.063 1.685 0.683 0.026-0.063 0.001 0.068v-0.067l0.034 0.057 0.546-0.319-0.069-0.118-0.444 0.259v-3.796l0.679-0.279-0.009-0.012 0.050-0.039-0.040-0.098-0.734 0.302-1.56-1.434 1.487-0.637 0.878 0.79 0.091-0.101-0.91-0.82-0.046 0.051-0.027-0.063-1.593 0.683 0.012 0.029-0.031 0.034h-0.068v1.657c-0.159 0.071-0.314 0.146-0.463 0.225-1.361 0.722-2.11 1.686-2.11 2.716 0 0.024 0 0.047 0.001 0.071l0.001 0.040c-0.002 0.024-0.003 0.048-0.003 0.072 0 0.718 0.752 1.387 2.118 1.883 1.344 0.488 3.131 0.758 5.029 0.758s3.685-0.269 5.029-0.758c1.366-0.496 2.118-1.165 2.118-1.883 0-0.024-0.001-0.048-0.003-0.072l0.001-0.039c0.001-0.024 0.001-0.047 0.001-0.071l0.001 0zM14.791 13.308l-1.544 0.643v-5.223l1.503-0.585 0.044 5.171-0.003-0.007zM5.507 8.746l1.548 1.422v3.83l-1.548-0.628v-4.625z"></path>
666
+ <path d="M8.942 13.133l1.063-0.426-2.041-0.799 0.978 1.225z"></path>
667
+ <path d="M7.816 13.682l2.166 0.899-1.069-1.339-1.097 0.439z"></path>
668
+ <path d="M7.974 11.815l1.973 0.772-0.97-1.253-1.003 0.481z"></path>
669
+ <path d="M9.108 7.477l-0.941 0.525 1.817 0.711-0.877-1.236z"></path>
670
+ <path d="M10.015 10.734l-2-0.791 0.989 1.277 1.011-0.486z"></path>
671
+ <path d="M9.030 9.373l-0.976 0.488 1.938 0.767-0.962-1.255z"></path>
672
+ <path d="M9.965 8.803l-1.796-0.703 0.887 1.157 0.909-0.454z"></path>
673
+ <path d="M7.858 11.769l1.062-0.51-1.049-1.355-0.056 0.023-0.102 1.785 0.145 0.057z"></path>
674
+ <path d="M8.034 8.676l-0.091 0.102-0.060-0.054-0.060 1.052 0.048-0.020 0.040 0.098 0.019-0.014-0.008-0.015 1.051-0.525-0.976-1.273 0.037-0.029-0-0.044h0v0.043l0.016-0.040 0.007 0.003 0.998-0.557-0.785-1.107 0.074-0.053 0.791 1.115 0.88-0.491 0.044 0.079-0.871 0.486 0.932 1.314-0.003 0.003 0.010 0.020 0.019 0.007-0.007 0.017 0.010 0.021-0.023 0.011-0.014 0.036-0.032-0.013-0.967 0.483 1.051 1.371-0.035 0.030 0.019 0.039-1.088 0.522 1.052 1.358 0.14 0.055-0.062 0.025 0.039 0.039-0.064 0.064-0.066-0.066-1.097 0.44 1.163 1.455-0.053 0.070-2.485-1.031 0.115-0.088 1.113-0.446-1.142-1.429-0.115 2.005 0.039-0.023 0.069 0.118-0.117 0.068-0.029 0.502 2.547 1.079v0.006l0.008-0.003 0.071 0.030 0.001-0.059 2.472-0.995-0.032-0.555-0.063-0.024 0.049-0.127 0.005 0.002-0.311-5.358-0.063-0.025 0.051-0.127 0.003 0.001-0.027-0.475-0.021 0.009-0.051-0.127 0.064-0.026-0.086-1.476-2.013 0.724-1.884-0.717-0.245-0.088-0.141 2.47 0.141 0.126z"></path>
675
+ <path d="M10.162 5.365l0.33 0.147v-0.099l-0.328-0.146-0.446 0.171v0.097l0.444-0.169z"></path>
676
+ <path d="M10.163 6.885l2.013-0.724-1.455-0.647v0.099l1.213 0.539-1.769 0.636-1.866-0.71 1.193-0.456v-0.097l-1.447 0.553 2.119 0.807z"></path>
677
+ <path d="M10.492 6.041h0.228v-1.047h-0.046v-1.093h-0.137v1.093h-0.046v1.047z"></path>
678
+ <path d="M9.491 6.451h0.228v-1.047h-0.046v-1.093h-0.137v1.093h-0.046v1.047z"></path>
679
+ <path d="M19.080 13.831c-0.549-6.686-4.465-11.729-9.109-11.729-2.239 0-4.393 1.182-6.068 3.328-1.647 2.111-2.719 5.006-3.019 8.153-0.025 0.12-0.037 0.243-0.037 0.365 0 1.081 0.964 2.084 2.714 2.826 1.708 0.724 3.975 1.122 6.385 1.122s4.677-0.399 6.385-1.122c1.722-0.73 2.683-1.714 2.714-2.774h0.049l-0.014-0.169 0 0zM18.742 13.855c0.002 0.030 0.003 0.062 0.003 0.093 0 0.945-0.898 1.847-2.528 2.537-1.673 0.709-3.9 1.099-6.271 1.099s-4.599-0.391-6.271-1.099c-1.63-0.691-2.528-1.592-2.528-2.537 0-0.102 0.011-0.206 0.032-0.307l0.003-0.018c0.293-3.091 1.342-5.93 2.954-7.996 1.616-2.072 3.689-3.213 5.835-3.213 4.448 0 8.208 4.835 8.795 11.274h-0.035l0.011 0.166h0v0z"></path>
680
+ <path d="M9.946 18.246c-2.456 0-4.771-0.408-6.521-1.15-1.888-0.8-2.927-1.918-2.927-3.148 0-0.139 0.014-0.278 0.040-0.416 0.308-3.206 1.405-6.159 3.090-8.317 1.742-2.233 3.995-3.462 6.343-3.462 2.356 0 4.617 1.24 6.366 3.492 1.722 2.218 2.82 5.257 3.091 8.557l0.031 0.378h-0l0.014 0.169h-0.116c-0.202 1.070-1.213 2.036-2.89 2.747-1.75 0.742-4.066 1.15-6.521 1.15zM9.971 2.763c-2.036 0-4.011 1.093-5.56 3.078-1.572 2.014-2.595 4.789-2.882 7.815l-0.008 0.056c-0.016 0.079-0.025 0.158-0.025 0.236 0 0.785 0.844 1.593 2.315 2.216 1.631 0.691 3.81 1.072 6.135 1.072s4.504-0.381 6.135-1.072c1.471-0.624 2.315-1.431 2.315-2.216 0-0.016-0-0.033-0.001-0.050l-0.036-0.559h0.021c-0.326-2.902-1.327-5.549-2.839-7.488-1.552-1.991-3.53-3.088-5.57-3.088z"></path>
681
+ <path d="M9.946 18.13c-2.44 0-4.74-0.405-6.475-1.141-1.842-0.781-2.856-1.86-2.856-3.040 0-0.133 0.013-0.267 0.039-0.399 0.306-3.186 1.394-6.12 3.066-8.262 1.72-2.204 3.94-3.417 6.251-3.417 4.765 0 8.781 5.134 9.34 11.942l0.021 0.251h-0l0.014 0.169h-0.088c-0.15 1.068-1.146 2.040-2.836 2.756-1.736 0.736-4.036 1.141-6.475 1.141zM9.971 2.647c-2.073 0-4.080 1.109-5.652 3.123-1.585 2.032-2.617 4.828-2.906 7.875l-0.006 0.043c-0.018 0.087-0.027 0.174-0.027 0.26 0 0.846 0.847 1.671 2.386 2.324 1.645 0.697 3.84 1.081 6.181 1.081s4.536-0.384 6.181-1.081c1.539-0.652 2.386-1.477 2.386-2.324 0-0.018-0.001-0.038-0.001-0.058l-0.028-0.434h0.027c-0.312-2.974-1.329-5.692-2.877-7.677-1.575-2.020-3.586-3.133-5.662-3.133z"></path>
682
+ <path d="M9.946 18.479c-2.486 0-4.834-0.415-6.612-1.168-1.979-0.839-3.069-2.033-3.069-3.362 0-0.15 0.014-0.3 0.042-0.449 0.314-3.245 1.428-6.237 3.137-8.427 1.787-2.29 4.105-3.552 6.526-3.552 2.415 0 4.731 1.261 6.522 3.552 1.765 2.257 2.89 5.351 3.166 8.71l0.052 0.629h-0l0.014 0.169h-0.183c-0.135 0.5-0.431 0.973-0.881 1.411-0.515 0.501-1.223 0.944-2.103 1.317-1.778 0.753-4.126 1.168-6.612 1.168zM9.971 2.22c-2.202 0-4.324 1.166-5.976 3.283-1.631 2.091-2.694 4.96-2.994 8.081l-0.002 0.017-0.003 0.017c-0.022 0.11-0.033 0.221-0.033 0.331 0 1.031 0.939 1.996 2.643 2.719 1.693 0.718 3.944 1.113 6.339 1.113s4.645-0.395 6.339-1.113c1.562-0.662 2.495-1.544 2.627-2.483l0.042-0.3h0.013l-0.010-0.125c-0.276-3.193-1.345-6.123-3.013-8.255-1.656-2.118-3.777-3.284-5.973-3.284zM9.946 17.702c-2.386 0-4.63-0.394-6.317-1.109-0.806-0.342-1.438-0.732-1.877-1.16-0.479-0.466-0.722-0.966-0.722-1.485 0-0.106 0.011-0.214 0.032-0.321l0.004-0.025c0.296-3.109 1.353-5.967 2.977-8.048 1.639-2.101 3.744-3.258 5.927-3.258 2.187 0 4.295 1.16 5.938 3.267 1.583 2.031 2.63 4.82 2.949 7.855l0.040 0.386h-0.042l0.004 0.068c0.001 0.026 0.002 0.051 0.002 0.075 0 0.519-0.243 1.018-0.722 1.485-0.44 0.428-1.072 0.819-1.877 1.16-1.687 0.715-3.931 1.109-6.317 1.109zM9.971 2.996c-1.963 0-3.873 1.061-5.377 2.989-1.545 1.98-2.551 4.712-2.834 7.694l-0.002 0.018-0.010 0.063c-0.013 0.063-0.020 0.127-0.020 0.189 0 0.687 0.792 1.417 2.173 2.002 1.603 0.679 3.749 1.053 6.044 1.053s4.442-0.374 6.045-1.053c1.381-0.585 2.173-1.315 2.173-2.002 0-0.012-0-0.025-0.001-0.039l-0.052-0.803h0.008c-0.35-2.756-1.323-5.27-2.76-7.113-1.507-1.934-3.42-2.998-5.387-2.998z"></path>
683
+ <path d="M9.946 18.173c-2.443 0-4.746-0.406-6.485-1.143-1.857-0.787-2.88-1.881-2.88-3.082 0-0.135 0.013-0.272 0.040-0.407 0.307-3.194 1.399-6.136 3.076-8.285 1.726-2.212 3.954-3.43 6.274-3.43 4.782 0 8.812 5.151 9.373 11.981l0.025 0.299h-0l0.014 0.169h-0.098c-0.17 1.071-1.17 2.041-2.854 2.754-1.739 0.737-4.042 1.143-6.485 1.143zM9.971 2.69c-2.065 0-4.064 1.105-5.629 3.111-1.58 2.025-2.608 4.812-2.896 7.85l-0.007 0.049c-0.017 0.083-0.026 0.167-0.026 0.249 0 0.814 0.861 1.646 2.363 2.282 1.642 0.696 3.833 1.079 6.171 1.079s4.529-0.383 6.171-1.079c1.501-0.636 2.363-1.468 2.363-2.282 0-0.017-0-0.035-0.001-0.054l-0.031-0.481h0.025c-0.317-2.945-1.329-5.635-2.862-7.603-1.568-2.012-3.571-3.12-5.639-3.12z"></path>
684
+ <path d="M9.946 18.522c-2.489 0-4.841-0.416-6.621-1.171-1.994-0.845-3.092-2.054-3.092-3.403 0-0.152 0.014-0.305 0.043-0.456 0.315-3.253 1.432-6.254 3.146-8.45 1.794-2.299 4.119-3.564 6.549-3.564 2.423 0 4.747 1.265 6.545 3.563 1.772 2.264 2.9 5.368 3.177 8.738l0.056 0.677h-0l0.014 0.169h-0.197c-0.142 0.501-0.443 0.975-0.896 1.413-0.518 0.5-1.225 0.942-2.101 1.313-1.781 0.755-4.133 1.171-6.621 1.171zM9.971 2.176c-2.21 0-4.34 1.17-5.999 3.296-1.636 2.097-2.703 4.975-3.003 8.104l-0.002 0.017-0.003 0.017c-0.022 0.112-0.033 0.227-0.033 0.339 0 1.051 0.947 2.031 2.667 2.76 1.696 0.719 3.951 1.115 6.349 1.115s4.652-0.396 6.349-1.115c1.556-0.659 2.496-1.543 2.645-2.487l0.047-0.294h0.017l-0.014-0.166c-0.276-3.207-1.349-6.148-3.024-8.29-1.662-2.125-3.791-3.295-5.995-3.295zM9.946 17.659c-2.383 0-4.623-0.393-6.307-1.107-0.787-0.334-1.41-0.719-1.851-1.145-0.474-0.458-0.725-0.962-0.725-1.459 0-0.103 0.011-0.207 0.031-0.31l0.005-0.031c0.295-3.099 1.349-5.948 2.968-8.022 1.633-2.093 3.73-3.245 5.904-3.245 2.178 0 4.279 1.156 5.915 3.255 1.568 2.012 2.61 4.774 2.934 7.78l0.042 0.387h-0.041l0.008 0.117c0.001 0.024 0.002 0.048 0.002 0.070 0 0.496-0.251 1.001-0.725 1.459-0.441 0.426-1.064 0.811-1.851 1.145-1.684 0.714-3.924 1.107-6.307 1.107zM9.971 3.039c-1.955 0-3.856 1.057-5.354 2.976-1.539 1.973-2.542 4.696-2.824 7.668l-0.002 0.018-0.011 0.069c-0.012 0.059-0.019 0.119-0.019 0.178 0 0.657 0.804 1.39 2.15 1.961 1.6 0.678 3.743 1.051 6.035 1.051s4.435-0.373 6.035-1.051c1.346-0.57 2.15-1.303 2.15-1.961 0-0.011-0-0.023-0.001-0.036l-0.056-0.849h0.005c-0.354-2.727-1.322-5.214-2.744-7.039-1.501-1.925-3.406-2.986-5.364-2.986z"></path>
685
+ <path d="M9.946 18.405c-2.474 0-4.809-0.412-6.575-1.161-1.948-0.826-3.021-1.996-3.021-3.295 0-0.147 0.014-0.294 0.042-0.44 0.312-3.233 1.421-6.214 3.123-8.395 1.771-2.269 4.064-3.519 6.457-3.519 4.904 0 9.034 5.242 9.605 12.194l0.045 0.551h-0l0.014 0.169h-0.16c-0.126 0.512-0.424 0.998-0.888 1.446-0.507 0.49-1.202 0.924-2.065 1.29-1.767 0.749-4.102 1.161-6.575 1.161zM9.971 2.059c-2.247 0-4.41 1.186-6.091 3.341-1.65 2.114-2.725 5.014-3.027 8.164l-0.003 0.023c-0.023 0.12-0.035 0.241-0.035 0.362 0 1.101 0.972 2.12 2.738 2.868 1.71 0.725 3.981 1.124 6.394 1.124s4.683-0.399 6.394-1.124c1.595-0.676 2.559-1.591 2.715-2.576l0.031-0.196h0.044l-0.014-0.169h0l-0.004-0.048c-0.551-6.709-4.481-11.768-9.142-11.768zM9.946 17.542c-2.368 0-4.592-0.39-6.262-1.097-0.774-0.328-1.384-0.705-1.815-1.121-0.457-0.442-0.689-0.904-0.689-1.375 0-0.096 0.010-0.193 0.030-0.29l0.005-0.037c0.293-3.079 1.338-5.907 2.944-7.964 1.61-2.064 3.674-3.2 5.812-3.2 2.141 0 4.209 1.14 5.822 3.21 1.555 1.995 2.588 4.736 2.91 7.72l0.028 0.257h-0.036l0.015 0.238c0.001 0.023 0.002 0.045 0.002 0.065 0 0.47-0.232 0.933-0.689 1.375-0.431 0.416-1.042 0.793-1.815 1.121-1.67 0.708-3.894 1.097-6.262 1.097zM9.971 2.922c-1.992 0-3.926 1.073-5.446 3.021-1.553 1.99-2.564 4.735-2.848 7.729l-0.002 0.012-0.010 0.063c-0.014 0.067-0.021 0.135-0.021 0.202 0 0.706 0.83 1.479 2.221 2.068 1.614 0.684 3.773 1.060 6.080 1.060s4.467-0.377 6.081-1.060c1.391-0.589 2.221-1.363 2.221-2.068 0-0.013-0-0.027-0.001-0.042l-0.047-0.726h0.012c-0.343-2.799-1.327-5.357-2.785-7.228-1.523-1.954-3.461-3.031-5.456-3.031z"></path>
686
+ <path d="M19.831 15.081c-0.032 0.039-0.068 0.082-0.106 0.127-0.258 0.308-0.635 0.746-0.895 0.998-0.538 0.52-1.269 0.977-2.172 1.36-1.809 0.767-4.193 1.189-6.712 1.189s-4.903-0.422-6.712-1.189c-2.085-0.884-3.234-2.168-3.234-3.617 0-0.163 0.015-0.327 0.045-0.489 0.321-3.292 1.455-6.332 3.193-8.56 1.839-2.356 4.23-3.654 6.732-3.654 2.481 0 4.861 1.287 6.702 3.623 1.554 1.972 2.623 4.571 3.076 7.43 0.076 0.48 0.135 0.968 0.175 1.462l0.076 0.928h-0zM9.971 3.272c-1.882 0-3.718 1.025-5.171 2.887-1.512 1.938-2.498 4.618-2.776 7.547l-0.004 0.033-0.013 0.080c-0.009 0.044-0.014 0.088-0.014 0.13 0 0.544 0.788 1.23 2.008 1.747 1.572 0.666 3.683 1.033 5.944 1.033s4.373-0.367 5.944-1.033c1.22-0.517 2.008-1.203 2.008-1.747 0-0.007-0-0.015-0.001-0.023l-0.059-0.907c-0.357-2.654-1.307-5.080-2.687-6.851-1.456-1.868-3.296-2.896-5.181-2.896z"></path>
687
+ </symbol>
688
+ <symbol id="frm_mailchimp_icon" viewBox="0 0 20 20">
689
+ <title>mailchimp</title>
690
+ <path d="M11.92 1.879c0.001-0.001 0.002-0.001 0.003-0.002l-0.003 0.002c0 0 0 0 0 0z"></path>
691
+ <path d="M18.846 14.519c-0.001-0.033-0.004-0.065-0.008-0.095-0.003-0.020-0.006-0.040-0.011-0.059-0.008-0.044-0.018-0.088-0.033-0.131l-0-0.001c-0.031-0.087-0.078-0.171-0.139-0.241s-0.133-0.126-0.207-0.165l-0.002-0.002c-0.078-0.041-0.154-0.063-0.223-0.077-0.020-0.004-0.039-0.006-0.058-0.008 0.088-0.379-0.022-0.669-0.094-0.804 0.006-0.005 0.012-0.011 0.017-0.016 0.094-0.091 0.175-0.179 0.242-0.266l0.013-0.018c0.054-0.078 0.090-0.158 0.113-0.231 0.019-0.063 0.029-0.12 0.035-0.172h0.001l0.001-0.003 0-0.008 0.002-0.016h-0.001l0.001-0.018h0.001l0-0.011c0-0.011 0.001-0.022 0.001-0.033 0.001-0.022 0.001-0.044-0.001-0.068-0.005-0.117-0.027-0.27-0.103-0.435-0.038-0.082-0.092-0.167-0.163-0.245s-0.158-0.15-0.26-0.206l0.001 0c-0.008-0.004-0.013-0.008-0.020-0.012-0.21-0.309-0.45-0.549-0.662-0.731-0.11-0.094-0.213-0.173-0.301-0.237s-0.16-0.114-0.201-0.144l0.001 0c-0.094-0.069-0.163-0.11-0.196-0.129-0.077-0.047-0.134-0.084-0.168-0.11-0.027-0.020-0.040-0.033-0.045-0.039l-0.003-0.003c-0.001-0.001-0.003-0.007-0.008-0.027s-0.009-0.056-0.011-0.107c-0.003-0.080-0.001-0.198 0.008-0.353 0.014-0.249 0.043-0.594 0.072-1.061 0.010-0.148 0.011-0.288 0.006-0.42-0.009-0.211-0.036-0.403-0.080-0.576l-0-0.001c-0.010-0.039-0.021-0.078-0.033-0.117l-0-0-0-0.001c-0.009-0.028-0.017-0.050-0.022-0.064l0 0.001c-0.009-0.025-0.018-0.051-0.028-0.076l-0-0.001c-0.005-0.013-0.012-0.028-0.020-0.048l-0-0.001-0-0-0-0.001c-0.016-0.037-0.034-0.077-0.057-0.121l-0.006-0.012-0.012-0.021-0.008-0.014c-0.043-0.070-0.088-0.134-0.135-0.193-0.024-0.107-0.065-0.266-0.133-0.447-0.061-0.159-0.142-0.335-0.258-0.509-0.040-0.060-0.086-0.119-0.136-0.177l0.017-0.017c0.023-0.025 0.58-0.607 1.015-1.363 0.812-1.409 0.542-2.271 0.172-2.745l-0.011-0.013-0.011-0.012c-0.356-0.396-0.841-0.635-1.44-0.709-1.242-0.154-2.645 0.455-3.013 0.628l-0.672-0.742c-0.059-0.065-0.125-0.123-0.195-0.174s-0.147-0.095-0.227-0.132c-0.16-0.074-0.335-0.121-0.522-0.144-0.374-0.046-0.795-0.001-1.252 0.116-0.685 0.177-1.455 0.519-2.26 1.002s-1.642 1.107-2.456 1.848c-0.994 0.907-1.815 1.866-2.414 2.776-0.299 0.455-0.542 0.898-0.723 1.318s-0.299 0.817-0.345 1.185c-0.033 0.267-0.028 0.52 0.026 0.752 0.023 0.102 0.057 0.2 0.1 0.292 0.055 0.119 0.127 0.23 0.216 0.327l0.002 0.003 0.778 0.815-0.004 0.008c-0.008 0.015-0.016 0.030-0.025 0.044-0.012 0.022-0.024 0.044-0.036 0.067-0.008 0.015-0.015 0.031-0.022 0.046-0.011 0.023-0.022 0.045-0.033 0.068-0.007 0.015-0.014 0.031-0.021 0.047-0.010 0.023-0.020 0.047-0.030 0.071-0.006 0.016-0.012 0.031-0.018 0.047-0.009 0.024-0.018 0.049-0.026 0.073-0.005 0.016-0.011 0.032-0.016 0.048-0.008 0.025-0.016 0.050-0.023 0.075-0.002 0.007-0.004 0.014-0.007 0.021-0.002 0.009-0.005 0.018-0.007 0.027-0.007 0.026-0.013 0.052-0.020 0.078-0.004 0.016-0.008 0.031-0.012 0.048-0.003 0.012-0.005 0.023-0.007 0.034-0.003 0.016-0.006 0.033-0.010 0.049-0.003 0.015-0.006 0.029-0.008 0.044-0.006 0.033-0.011 0.066-0.015 0.1-0.001 0.010-0.003 0.019-0.004 0.029l-0 0.003-0.001 0.009c-0.002 0.022-0.004 0.044-0.007 0.066-0.003 0.034-0.006 0.069-0.008 0.104-0.001 0.015-0.002 0.031-0.002 0.046-0.001 0.012-0.002 0.024-0.002 0.036-0.001 0.024-0 0.049-0.001 0.073 0 0.015-0 0.029 0 0.044 0 0.009-0 0.018 0 0.026v0.005c0.001 0.016 0.001 0.032 0.002 0.047 0.001 0.018 0.002 0.034 0.003 0.051 0.001 0.013 0.001 0.026 0.002 0.038 0.001 0.011 0.002 0.020 0.003 0.027 0.002 0.016 0.003 0.032 0.005 0.048 0.002 0.018 0.004 0.038 0.007 0.061l0 0.002v-0c0.001 0.009 0.002 0.015 0.003 0.022 0.003 0.018 0.005 0.037 0.008 0.055 0.002 0.016 0.005 0.035 0.009 0.057 0.002 0.009 0.003 0.017 0.005 0.023 0.002 0.011 0.004 0.022 0.007 0.033l0 0.001 0.003 0.016c0.003 0.015 0.007 0.034 0.012 0.060l0 0.001v-0c0.002 0.007 0.003 0.011 0.004 0.017 0.004 0.017 0.007 0.029 0.010 0.037l0.004 0.017c0.002 0.005 0.003 0.011 0.005 0.018l0.004 0.015 0.003 0.013 0.003 0.012 0 0.001v-0c0.002 0.005 0.003 0.009 0.004 0.014l0.004 0.016c0.004 0.012 0.008 0.025 0.012 0.037 0.004 0.014 0.010 0.033 0.018 0.059l-0.002-0.004 0.002 0.005c0.002 0.006 0.003 0.010 0.005 0.015 0.007 0.021 0.013 0.037 0.016 0.046l0.001 0.001v0c0.005 0.014 0.012 0.034 0.022 0.061l0 0 0.001 0.002-0-0.001 0.004 0.011c0.007 0.017 0.012 0.029 0.016 0.039l0.005 0.012 0.001 0.002c0.003 0.006 0.006 0.015 0.010 0.025s0.008 0.020 0.013 0.032v0c0 0 0 0 0 0l0.005 0.011c0.005 0.012 0.010 0.022 0.014 0.031s0.008 0.016 0.010 0.022l0 0.001c0.007 0.014 0.014 0.031 0.025 0.053l0.002 0.003 0.005 0.009c0.005 0.009 0.009 0.018 0.013 0.025 0.006 0.011 0.011 0.020 0.015 0.028l0.001 0.002c0.006 0.011 0.014 0.027 0.026 0.048l0.001 0.001 0.001 0.002 0.005 0.008c0.005 0.008 0.009 0.016 0.013 0.023 0.007 0.012 0.014 0.023 0.019 0.033l0.002 0.002 0 0.001c0.006 0.009 0.014 0.023 0.026 0.042l0.001 0.002 0.003 0.006c0.006 0.009 0.012 0.018 0.017 0.026 0.008 0.012 0.015 0.023 0.022 0.033s0.017 0.025 0.030 0.044l0.001 0.002v0l0.001 0.001 0.001 0.002 0 0c0.006 0.009 0.013 0.018 0.019 0.027 0.009 0.012 0.017 0.023 0.025 0.033l-0.001-0.001c0.007 0.010 0.016 0.022 0.027 0.036l0.002 0.002 0.001 0.001 0.001 0.001-0.002-0.002c0.008 0.011 0.016 0.020 0.023 0.030 0.010 0.012 0.019 0.024 0.028 0.035l0.003 0.004c0.006 0.007 0.013 0.016 0.022 0.027l0.004 0.005 0.004 0.004c0.014 0.017 0.027 0.031 0.039 0.045l0.013 0.015v0l0.001 0.001c0.006 0.007 0.014 0.016 0.023 0.026l0.003 0.003v0l0.001 0 0.001 0.001c0.015 0.017 0.030 0.032 0.045 0.047 0.006 0.006 0.012 0.013 0.018 0.019l0.001 0.001c0.003 0.003 0.011 0.011 0.022 0.023l0.002 0.002 0.007 0.007c0.018 0.018 0.037 0.035 0.056 0.052l0.004 0.004 0.001 0.001 0.001 0.001c0.005 0.004 0.012 0.011 0.023 0.021l0.001 0.001c0.024 0.021 0.048 0.042 0.072 0.062l0.002 0.001 0.013 0.011 0.009 0.008-0-0 0.014 0.011c0.020 0.016 0.040 0.032 0.059 0.047l0.005 0.004 0.002 0.002c0.007 0.005 0.013 0.009 0.016 0.012l0.004 0.003 0.003 0.002c0.006 0.004 0.011 0.008 0.017 0.012 0.017 0.012 0.034 0.024 0.051 0.036l0.014 0.010 0.002 0.001 0.018 0.012 0.001 0 0.009 0.006c0.017 0.012 0.036 0.023 0.054 0.035 0.010 0.006 0.018 0.012 0.028 0.018l0.016 0.009 0.009 0.005 0.006 0.003c0.028 0.017 0.055 0.033 0.080 0.046l0.002 0.001 0.015 0.008 0.001 0.001c0.034 0.018 0.066 0.035 0.097 0.050l0.022 0.011v-0c0.017 0.008 0.032 0.015 0.049 0.022 0.007 0.003 0.015 0.007 0.023 0.011 0.009 0.004 0.019 0.009 0.028 0.013l0.008 0.003 0.002 0.001 0.004 0.002c0.016 0.007 0.032 0.012 0.047 0.019l0.008 0.003c0.017 0.007 0.035 0.015 0.053 0.021l0.004 0.002 0.013 0.005c0.008 0.003 0.017 0.006 0.025 0.008l0.008 0.003c0.025 0.009 0.050 0.018 0.076 0.026l0.006 0.002 0.002 0.001 0.001 0.001c0.039 0.012 0.079 0.023 0.118 0.034l0.008 0.002-0.002-0.001c0.035 0.009 0.069 0.017 0.103 0.025h0.001l0.012 0.003 0.013 0.003c0.032 0.007 0.065 0.013 0.098 0.018l0.009 0.002 0.023 0.003c0.020 0.003 0.040 0.006 0.060 0.008 0.003 0.008 0.006 0.016 0.009 0.023l0 0.001c0.054 0.148 0.113 0.296 0.177 0.443 0.934 2.584 3.515 4.587 6.461 4.954s6.090-1.592 7.371-4.237c0.055-0.101 0.106-0.201 0.152-0.297 0.127-0.131 0.226-0.266 0.291-0.41 0.078-0.169 0.105-0.347 0.097-0.493zM6.063 10.053c-0.002 0.004-0.010 0.017-0.021 0.037-0.021 0.037-0.054 0.097-0.094 0.168-0.019 0.035-0.040 0.072-0.062 0.111-0.014 0.026-0.029 0.053-0.044 0.080l-0.007 0.012-0.003 0.005c-0.005 0.010-0.011 0.020-0.017 0.031l-0.135 0.243c-0.011-0.006-0.022-0.011-0.034-0.017l-0.007-0.003-0.012-0.006c-0.074-0.035-0.152-0.064-0.232-0.085l-0.013-0.003c-0.052-0.013-0.104-0.023-0.158-0.029-0.031-0.003-0.063-0.006-0.094-0.008-0.026-0.001-0.053-0.002-0.079-0.001-0.040 0.001-0.080 0.004-0.118 0.008-0.012 0.002-0.024 0.004-0.036 0.005-0.019 0.003-0.038 0.007-0.057 0.010-0.008 0.002-0.015 0.002-0.022 0.004-0.013 0.003-0.027 0.006-0.040 0.009-0.026 0.006-0.052 0.013-0.077 0.022-0.012 0.004-0.023 0.007-0.035 0.011-0.034 0.012-0.068 0.025-0.101 0.040-0.013 0.006-0.025 0.012-0.038 0.018-0.015 0.008-0.030 0.015-0.045 0.023l-0.015 0.008c-0.016 0.009-0.032 0.019-0.048 0.028s-0.029 0.018-0.043 0.028c-0.018 0.012-0.034 0.023-0.051 0.035-0.010 0.008-0.020 0.016-0.030 0.024-0.027 0.021-0.053 0.044-0.078 0.067-0.013 0.012-0.025 0.024-0.038 0.037-0.022 0.022-0.043 0.044-0.063 0.067l-0.010 0.012c-0.011 0.013-0.021 0.026-0.030 0.039l-0.002 0.002-0.001 0.002c-0.007 0.009-0.014 0.018-0.021 0.026l-0.005 0.007-0.001 0.001c-0.041 0.057-0.076 0.117-0.107 0.18-0.004 0.009-0.008 0.018-0.013 0.027-0.014 0.031-0.027 0.062-0.039 0.094-0.005 0.013-0.010 0.025-0.014 0.038l-0 0v0l-0 0c-0.011 0.032-0.020 0.066-0.028 0.1l-0.003 0.012-0.003 0.016-0 0.002c-0.006 0.025-0.011 0.049-0.015 0.074-0.002 0.012-0.003 0.025-0.005 0.037l-0.001 0.003c-0.002 0.013-0.003 0.027-0.004 0.040-0.001 0.010-0.003 0.020-0.003 0.031-0.003 0.039-0.004 0.079-0.003 0.12 0.001 0.031 0.003 0.062 0.007 0.092l0 0.002 0.001 0.014c0.002 0.017 0.005 0.034 0.007 0.051 0.009 0.061 0.022 0.121 0.039 0.179 0.013 0.044 0.028 0.087 0.046 0.129 0.032 0.077 0.073 0.15 0.119 0.218 0.097 0.144 0.222 0.267 0.368 0.361 0.083 0.053 0.172 0.097 0.267 0.13 0.091 0.032 0.185 0.055 0.284 0.066 0.022 0.002 0.044 0.004 0.067 0.006 0.034 0.002 0.067 0.004 0.102 0.003 0.032-0.001 0.062-0.005 0.093-0.008 0.018-0.002 0.036-0.002 0.053-0.004 0.044-0.006 0.088-0.015 0.131-0.026l0.010-0.002c0.018-0.005 0.035-0.011 0.052-0.017 0.054-0.017 0.107-0.036 0.158-0.060l0.011-0.005c0.014-0.006 0.029-0.012 0.042-0.019 0.002 0.010 0.003 0.019 0.005 0.029 0.006 0.034 0.012 0.069 0.019 0.104 0.060 0.317 0.13 0.629 0.13 0.629-0.107 0.080-0.287 0.158-0.489 0.218-0.068 0.020-0.138 0.037-0.209 0.052-0.046 0.010-0.091 0.017-0.137 0.024-0.052 0.008-0.103 0.014-0.155 0.018-0.037 0.003-0.074 0.005-0.111 0.006-0.027 0-0.054 0-0.081-0.001-0.113-0.002-0.224-0.011-0.333-0.028l-0.002-0.001c-0.035-0.006-0.071-0.012-0.105-0.019-0 0-0.001 0-0.001-0l-0.003-0.001c-0.034-0.008-0.068-0.015-0.102-0.024l-0.005-0.001c-0.017-0.005-0.034-0.010-0.052-0.015-0.016-0.005-0.032-0.009-0.047-0.013l-0.007-0.002c-0.032-0.010-0.063-0.021-0.095-0.033l-0.008-0.003c-0.031-0.012-0.061-0.023-0.091-0.036l-0.010-0.005c-0.029-0.013-0.058-0.026-0.087-0.040l-0.012-0.006c-0.028-0.014-0.055-0.028-0.082-0.043l-0.013-0.008c-0.026-0.015-0.052-0.029-0.078-0.045l-0.016-0.009c-0.025-0.015-0.049-0.031-0.073-0.047l-0.018-0.012c-0.023-0.016-0.046-0.032-0.069-0.049-0.006-0.005-0.012-0.010-0.019-0.014-0.022-0.017-0.044-0.033-0.065-0.051-0.007-0.005-0.013-0.011-0.020-0.017-0.021-0.017-0.041-0.034-0.061-0.052-0.007-0.007-0.014-0.013-0.021-0.019-0.019-0.017-0.038-0.035-0.056-0.053-0.007-0.008-0.015-0.015-0.022-0.023-0.018-0.018-0.035-0.035-0.052-0.054-0.008-0.008-0.015-0.017-0.023-0.025-0.016-0.018-0.032-0.036-0.047-0.054-0.008-0.009-0.016-0.019-0.023-0.028-0.015-0.018-0.029-0.036-0.043-0.054-0.008-0.010-0.016-0.021-0.024-0.032-0.013-0.018-0.027-0.036-0.039-0.054-0.008-0.012-0.016-0.023-0.023-0.035-0.012-0.018-0.024-0.036-0.036-0.054-0.008-0.013-0.015-0.026-0.023-0.038-0.011-0.018-0.022-0.036-0.032-0.054-0.008-0.014-0.015-0.028-0.022-0.042-0.010-0.018-0.019-0.035-0.028-0.053-0.007-0.015-0.015-0.030-0.022-0.045-0.004-0.009-0.008-0.018-0.012-0.027s-0.008-0.018-0.012-0.027c-0.007-0.016-0.013-0.032-0.020-0.048-0.007-0.018-0.015-0.035-0.022-0.053-0.005-0.012-0.009-0.025-0.013-0.037l-0.005-0.014c-0.006-0.018-0.013-0.035-0.018-0.052s-0.011-0.036-0.017-0.054c-0.005-0.017-0.011-0.034-0.015-0.051l-0.004-0.016-0.003-0.013-0.004-0.017-0.003-0.012c-0.004-0.017-0.009-0.033-0.013-0.050-0.005-0.020-0.008-0.041-0.012-0.062-0.003-0.016-0.007-0.032-0.010-0.048-0.004-0.022-0.007-0.044-0.010-0.067-0.002-0.012-0.004-0.025-0.006-0.037v-0.002l-0.001-0.006c-0.003-0.025-0.005-0.050-0.007-0.075-0.001-0.007-0.002-0.015-0.002-0.022l-0.002-0.017c-0.002-0.032-0.004-0.064-0.005-0.096 0-0.007-0.001-0.013-0.001-0.020-0.001-0.041-0.001-0.083 0.001-0.123 0.001-0.033 0.003-0.067 0.005-0.1l0.001-0.016c0.003-0.042 0.008-0.083 0.013-0.124 0.028-0.209 0.086-0.41 0.167-0.597 0.002-0.005 0.004-0.011 0.007-0.017 0.013-0.029 0.027-0.057 0.041-0.085 0.040-0.080 0.084-0.157 0.132-0.232 0.026-0.039 0.053-0.078 0.081-0.115 0.024-0.032 0.048-0.063 0.074-0.093 0.089-0.107 0.187-0.205 0.294-0.294l0.004-0.004c0.124-0.102 0.259-0.193 0.404-0.267 0.016-0.008 0.033-0.016 0.049-0.024 0.013-0.007 0.027-0.013 0.041-0.020 0.048-0.022 0.097-0.042 0.146-0.061 0.146-0.055 0.299-0.095 0.458-0.119l0.016-0.002c0.088-0.013 0.178-0.021 0.269-0.023 0.020-0.001 0.041 0 0.061 0.001 0.042 0.001 0.084 0.003 0.126 0.007 0.015 0.002 0.029 0.003 0.044 0.004s0.030 0.002 0.045 0.005 0.062 0.010 0.092 0.016c0.039 0.007 0.077 0.017 0.114 0.026l0.003 0.001c0.055 0.013 0.109 0.028 0.162 0.045 0.016 0.005 0.033 0.009 0.049 0.015 0.063 0.021 0.123 0.044 0.181 0.067 0.048 0.020 0.094 0.040 0.137 0.060 0.136 0.063 0.248 0.126 0.324 0.172 0.067 0.041 0.108 0.069 0.113 0.072l0.001 0.001 0.001 0h0l-0.001 0.002zM5.777 7.073c0.042-0.050 0.085-0.099 0.128-0.149-0.052 0.052-0.081 0.079-0.084 0.076-0.008-0.005 0.173-0.226 0.505-0.583 0.165-0.178 0.368-0.39 0.603-0.626 0.435-0.458 0.896-0.914 1.38-1.353 0.458-0.415 0.936-0.815 1.431-1.188 0.025-0.018 0.049-0.037 0.073-0.055 0.189-0.141 0.38-0.277 0.574-0.408 0.117-0.080 0.235-0.158 0.354-0.234l-1.379-1.572 0.465-0.139 0.908 0.462-0.026-0.314 0.158-0.35 0.424-0.096 0.995 1.156c0.012-0.006 0.024-0.012 0.036-0.017 0.083-0.039 0.164-0.076 0.245-0.111 0.048-0.021 0.095-0.041 0.142-0.062 0.031-0.013 0.062-0.026 0.092-0.039 0.557-0.221 1.532-0.533 2.388-0.423 0.172 0.022 0.34 0.062 0.499 0.123 0.017 0.010 0.034 0.021 0.051 0.032l-0.013-0.004-0.014-0.004-0.006-0.001-0.002-0.001c-0.008-0.002-0.015-0.003-0.023-0.005-0.141-0.035-0.29-0.054-0.449-0.057-0.056-0.001-0.113-0.001-0.171 0.002-0.379 0.016-0.81 0.104-1.31 0.264-0.26 0.084-0.54 0.189-0.838 0.314-0.053 0.022-0.105 0.044-0.159 0.067-0.059 0.026-0.119 0.052-0.18 0.080-0.015 0.007-0.029 0.013-0.044 0.020-0.008 0.003-0.015 0.007-0.022 0.010-0.014 0.006-0.028 0.013-0.043 0.020-0.052 0.024-0.104 0.048-0.156 0.073-0.015 0.007-0.029 0.013-0.044 0.021-0.008 0.004-0.017 0.008-0.025 0.012-0.045 0.022-0.090 0.044-0.136 0.066l-0.005 0.002c-0.003 0.002-0.006 0.003-0.009 0.004-0.015 0.007-0.029 0.014-0.044 0.021l-0.003 0.002c-0.008 0.004-0.016 0.008-0.024 0.012-0.022 0.011-0.043 0.022-0.065 0.033-0.016 0.008-0.033 0.017-0.049 0.025-0.009 0.004-0.018 0.009-0.026 0.013-0.104 0.053-0.209 0.108-0.313 0.165h-0c-0.033 0.018-0.066 0.036-0.098 0.054-0.055 0.031-0.11 0.061-0.164 0.092-0.023 0.013-0.045 0.026-0.067 0.039-0.043 0.025-0.086 0.050-0.129 0.076s-0.088 0.052-0.131 0.078c-0.023 0.014-0.046 0.028-0.069 0.042-0.041 0.025-0.082 0.049-0.123 0.075-0.082 0.051-0.163 0.102-0.244 0.155-0.253 0.163-0.502 0.334-0.749 0.511v0c-0.562 0.403-1.106 0.837-1.629 1.289-0.861 0.744-1.663 1.533-2.385 2.304zM18.374 14.574l-0 0c-0.002 0.109-0.033 0.23-0.128 0.367-0.006 0.008-0.012 0.017-0.018 0.025-0.043 0.058-0.096 0.119-0.164 0.183l-0.003 0.008c-0.018 0.039-0.037 0.078-0.057 0.118l-0.007 0.014c-0.007 0.015-0.015 0.029-0.022 0.044-0.016 0.032-0.032 0.063-0.049 0.096-0.008 0.016-0.017 0.032-0.026 0.048-0.022 0.041-0.045 0.083-0.069 0.125-0.013 0.023-0.027 0.046-0.041 0.070-0.012 0.021-0.026 0.043-0.038 0.064-0.017 0.028-0.034 0.055-0.052 0.083-0.008 0.012-0.017 0.025-0.025 0.038-0.034 0.053-0.070 0.105-0.107 0.158-0.008 0.012-0.016 0.024-0.025 0.037l-0.008 0.011c-0.026 0.037-0.053 0.073-0.081 0.111l-0.008 0.011c-0.113 0.15-0.239 0.3-0.378 0.447-0.106 0.111-0.219 0.22-0.341 0.327-0.008 0.006-0.015 0.012-0.022 0.018l-0.001 0.001c-0.123 0.102-0.248 0.197-0.375 0.286-0.076 0.053-0.152 0.104-0.23 0.152l-0.002 0.002c-0.103 0.065-0.207 0.126-0.311 0.183l-0.022 0.012c-0.15 0.080-0.301 0.153-0.453 0.219-0.253 0.11-0.509 0.201-0.766 0.274-2.127 0.61-4.285 0.063-4.808-0.362l0.231 0.414c-0.035-0.016-0.081-0.053-0.134-0.104-0.16-0.152-0.385-0.43-0.554-0.647-0.019-0.024-0.037-0.047-0.054-0.070l-0.001-0.001c-0.015-0.019-0.029-0.038-0.042-0.055l-0.014-0.018c-0.027-0.036-0.051-0.068-0.070-0.093-0.010-0.010-0.019-0.020-0.029-0.030s-0.019-0.020-0.029-0.030c-0.006 0.025-0.001 0.065 0.011 0.111 0.040 0.164 0.16 0.413 0.161 0.416-0.103-0.128-0.203-0.275-0.294-0.422-0.076-0.123-0.146-0.246-0.206-0.357-0.015-0.028-0.029-0.055-0.043-0.081-0.041-0.078-0.076-0.148-0.103-0.204-0.024-0.031-0.048-0.061-0.071-0.092-0.008 0.225 0.051 0.427 0.112 0.572 0.008 0.018 0.015 0.036 0.023 0.052l0.002 0.003c0.007 0.015 0.014 0.030 0.021 0.043l0.002 0.004c0.007 0.013 0.013 0.025 0.019 0.036l0.001 0.002c0.032 0.060 0.056 0.094 0.056 0.094v0c-0.041-0.042-0.080-0.085-0.119-0.128-0.012-0.014-0.024-0.027-0.036-0.041-0.026-0.029-0.051-0.058-0.075-0.087-0.013-0.016-0.027-0.032-0.039-0.049-0.022-0.027-0.043-0.053-0.064-0.080-0.013-0.017-0.026-0.034-0.038-0.052-0.020-0.026-0.039-0.052-0.057-0.078-0.012-0.017-0.024-0.035-0.036-0.052-0.018-0.026-0.035-0.053-0.053-0.079-0.011-0.017-0.022-0.034-0.032-0.051-0.017-0.027-0.034-0.055-0.050-0.082-0.010-0.016-0.019-0.032-0.028-0.048-0.017-0.030-0.034-0.061-0.050-0.091-0.007-0.013-0.014-0.026-0.021-0.038-0.045-0.087-0.085-0.173-0.121-0.259-0.006-0.013-0.011-0.027-0.016-0.040-0.012-0.030-0.024-0.059-0.034-0.089-0.006-0.016-0.011-0.032-0.017-0.048-0.009-0.027-0.018-0.053-0.027-0.080-0.005-0.017-0.011-0.034-0.016-0.051-0.008-0.026-0.015-0.052-0.022-0.077-0.005-0.017-0.009-0.034-0.013-0.052-0.007-0.026-0.013-0.051-0.018-0.077-0.004-0.017-0.008-0.034-0.011-0.051-0.006-0.026-0.010-0.052-0.015-0.078-0.003-0.016-0.006-0.032-0.008-0.048-0.005-0.028-0.009-0.057-0.012-0.085-0.002-0.013-0.004-0.026-0.006-0.039-0.005-0.041-0.009-0.082-0.013-0.123l-0.001-0.008-0.001-0.013c-0.002-0.034-0.004-0.067-0.006-0.101s-0.002-0.066-0.002-0.099v-0.006c0-0.043 0.001-0.086 0.002-0.128 0.001-0.013 0.001-0.027 0.002-0.040 0.002-0.029 0.003-0.059 0.006-0.088 0.001-0.015 0.003-0.029 0.004-0.044 0.003-0.029 0.006-0.058 0.010-0.086 0.002-0.013 0.003-0.026 0.005-0.039 0.006-0.040 0.012-0.080 0.019-0.119l0.001-0.004c0.007-0.039 0.015-0.078 0.024-0.117 0.002-0.013 0.006-0.025 0.009-0.038 0.006-0.027 0.013-0.054 0.020-0.080 0.004-0.014 0.007-0.027 0.011-0.041 0.008-0.027 0.015-0.053 0.024-0.079 0.003-0.012 0.007-0.023 0.011-0.035 0.012-0.037 0.025-0.074 0.038-0.11 0.023-0.064 0.049-0.126 0.076-0.187 0.169-0.379 0.405-0.697 0.66-0.921-0.039-0.063-0.077-0.125-0.113-0.187-0.133-0.223-0.25-0.44-0.353-0.652-0.002 0.034-0.003 0.053-0.003 0.053l0.020 0.516 0.003 0.092c-0.017-0.023-0.035-0.059-0.053-0.104-0.138-0.35-0.286-1.278-0.286-1.278-0.085 0.057-0.096 0.558-0.096 0.558-0.058-0.276-0.081-0.599-0.089-0.867-0.002-0.064-0.003-0.124-0.004-0.18s-0.001-0.107 0-0.153c0-0.021 0.001-0.041 0.001-0.059v-0.014l-0.002-0.010c-0.006-0.030-0.012-0.060-0.017-0.089-0.024 0.042-0.043 0.084-0.061 0.126-0.004 0.010-0.008 0.020-0.012 0.030-0.009 0.023-0.017 0.045-0.024 0.068-0.029 0.092-0.047 0.181-0.057 0.262-0.004 0.037-0.008 0.073-0.010 0.105-0.008 0.143 0.005 0.239 0.005 0.239-0.015-0.076-0.027-0.15-0.039-0.223-0.004-0.023-0.007-0.047-0.010-0.070-0.013-0.084-0.024-0.167-0.033-0.249-0.002-0.017-0.004-0.035-0.006-0.052-0.001-0.008-0.001-0.015-0.002-0.023-0.003-0.031-0.006-0.062-0.008-0.092-0.006-0.074-0.011-0.147-0.014-0.218l-0.001-0.012c-0.003-0.072-0.004-0.143-0.005-0.213 0-0.008 0-0.017 0-0.025 0-0.036-0-0.072 0.001-0.107 0.001-0.031 0.002-0.061 0.003-0.092l0.001-0.014c0.003-0.062 0.007-0.123 0.012-0.184 0.005-0.066 0.012-0.132 0.020-0.196 0.003-0.026 0.008-0.051 0.011-0.076 0.018-0.128 0.042-0.253 0.070-0.373l0.004-0.015c0.007-0.030 0.015-0.059 0.023-0.088 0.030-0.11 0.063-0.218 0.101-0.321 0.075-0.207 0.166-0.4 0.27-0.58l0.006-0.010c0.050-0.087 0.103-0.17 0.159-0.251 0.075-0.108 0.157-0.211 0.241-0.309 0.019-0.022 0.036-0.044 0.056-0.066 0.015-0.017 0.032-0.033 0.047-0.049 0.038-0.041 0.076-0.082 0.116-0.122 0.016-0.016 0.033-0.031 0.049-0.046 0.453-0.436 0.993-0.76 1.541-1.005 0.076-0.034 0.152-0.067 0.228-0.098 0.106-0.043 0.213-0.084 0.318-0.122 0.135-0.048 0.269-0.093 0.401-0.133 0.357-0.109 0.696-0.191 0.993-0.255 0.030-0.006 0.059-0.013 0.087-0.018 0.107-0.088 0.233-0.177 0.376-0.256 0.207-0.114 0.449-0.207 0.72-0.236 0.008-0.001 0.017-0.001 0.025-0.002 0.014-0.001 0.028-0.002 0.043-0.003 0.010-0.001 0.019-0.002 0.029-0.002 0.012-0.001 0.023-0.002 0.034-0.003 0 0-0.017 0.003-0.043 0.011-0.012 0.003-0.025 0.008-0.041 0.013-0.006 0.002-0.011 0.004-0.017 0.006-0.017 0.006-0.035 0.014-0.054 0.023-0.109 0.051-0.252 0.147-0.349 0.327l-0 0c0.013-0.002 0.027-0.003 0.040-0.005l0.008-0.003c0.014-0.006 0.031-0.013 0.049-0.021 0.132-0.054 0.368-0.142 0.614-0.194 0.008-0.002 0.017-0.004 0.025-0.005l0.009-0.002c0.010-0.002 0.020-0.004 0.031-0.006 0.016-0.003 0.032-0.005 0.047-0.008 0.049-0.008 0.098-0.015 0.146-0.018 0 0-0.084 0.035-0.167 0.082-0.067 0.038-0.134 0.083-0.159 0.124 0.105-0.021 0.216-0.030 0.326-0.031h0.005c0.086-0.001 0.171 0.005 0.255 0.013 0.007 0.001 0.014 0.001 0.021 0.002 0.017 0.002 0.035 0.003 0.053 0.005 0.037 0.004 0.073 0.010 0.109 0.015 0.107 0.017 0.208 0.039 0.298 0.063 0.007 0.002 0.014 0.003 0.021 0.005 0.109 0.029 0.201 0.060 0.269 0.087 0.013 0.006 0.026 0.011 0.038 0.016 0.033 0.015 0.058 0.028 0.072 0.038l-0.003-0.002 0.007 0.005c0.013 0.009 0.026 0.018 0.039 0.028l0.005 0.004 0.002 0.001c0.015 0.011 0.029 0.022 0.043 0.034l0.006 0.005c0.032 0.027 0.061 0.056 0.089 0.087l0.012 0.012 0.002 0.003c0.022 0.024 0.042 0.049 0.061 0.075 0.008 0.011 0.017 0.020 0.025 0.031 0.009 0.012 0.017 0.025 0.026 0.037 0.017 0.025 0.034 0.050 0.050 0.075 0.009 0.015 0.018 0.030 0.027 0.045 0.014 0.024 0.027 0.047 0.040 0.071 0.008 0.016 0.016 0.032 0.024 0.048 0.012 0.023 0.023 0.047 0.033 0.070 0.007 0.016 0.014 0.031 0.021 0.047 0.010 0.024 0.020 0.047 0.028 0.070 0.006 0.015 0.012 0.029 0.017 0.043 0.009 0.025 0.017 0.049 0.025 0.073 0.004 0.012 0.008 0.023 0.012 0.034 0.011 0.034 0.021 0.067 0.029 0.098l0.001 0.001c0.004 0.013 0.007 0.026 0.010 0.038l0.001 0.004c0.003 0.012 0.006 0.023 0.009 0.034l0.001 0.003c0.011 0.045 0.020 0.084 0.026 0.113l0.001 0.006 0.003 0.016 0.001 0.007 0.002 0.011 0.002 0.014 0.001 0.005 0.001 0.003 0.001 0.003c0.017 0.018 0.033 0.037 0.050 0.057l0.017 0.021c0.013 0.016 0.025 0.032 0.037 0.049l0.009 0.012 0.007 0.010c0.017 0.025 0.034 0.050 0.051 0.078l0.012 0.021c0.015 0.028 0.028 0.058 0.041 0.088v0.001l0.002 0.004 0.008 0.019 0.006 0.015 0.002 0.005c0.006 0.016 0.012 0.033 0.018 0.050l0 0.002 0.008 0.021 0.003 0.007c0.002 0.008 0.005 0.014 0.008 0.022s0.004 0.016 0.007 0.024c0.006 0.022 0.013 0.044 0.019 0.067v0c0.005 0.019 0.009 0.038 0.013 0.058s0.008 0.040 0.012 0.061c0.003 0.018 0.007 0.037 0.010 0.056 0.006 0.037 0.011 0.076 0.015 0.115 0.002 0.016 0.003 0.032 0.005 0.049 0.003 0.037 0.006 0.075 0.008 0.114l0.001 0.015 0.001 0.014c0.002 0.050 0.003 0.102 0.002 0.155 0 0.013-0 0.026-0.001 0.040-0.001 0.056-0.003 0.113-0.007 0.173-0.029 0.463-0.057 0.804-0.072 1.064-0.041 0.721 0.023 0.809 0.459 1.075 0 0 0.061 0.032 0.155 0.102 0.201 0.148 0.706 0.47 1.073 1.025 0.010 0.015 0.020 0.029 0.029 0.044l0.003 0.004c0.021 0.016 0.044 0.031 0.070 0.047 0.018 0.012 0.037 0.023 0.058 0.035s0.039 0.024 0.057 0.037c0.031 0.023 0.059 0.048 0.082 0.074 0.135 0.15 0.149 0.343 0.144 0.449v0.001l-0.006 0.008c-1.412 1.273-2.967 1.644-4.148 1.716-0.65 0.040-1.187-0.011-1.524-0.053-0.012-0.002-0.023-0.003-0.034-0.004-0.101-0.013-0.184-0.025-0.243-0.032-0.029-0.004-0.053-0.006-0.071-0.008-0.088-0.006-0.173 0.005-0.252 0.030-0.161 0.050-0.298 0.159-0.401 0.303-0.127 0.178-0.203 0.408-0.206 0.649 0 0 0 0 0 0s0 0 0 0c0 0.005 0 0.009 0 0.014 0 0.070 0.006 0.14 0.018 0.211 0.022 0.125 0.065 0.249 0.132 0.367 0.004 0.008 0.008 0.015 0.013 0.023 0.012 0.021 0.026 0.041 0.039 0.061 0.019 0.027 0.038 0.054 0.060 0.081 0.248 0.305 0.78 0.532 1.49 0.62 0.481 0.060 1.043 0.055 1.653-0.031 1.797-0.325 2.652-0.906 3.047-1.314 0.029-0.030 0.055-0.059 0.079-0.087 0.142-0.163 0.205-0.288 0.228-0.343l0.003-0.008c0.006-0.014 0.008-0.022 0.008-0.022l-0 0c0 0 0-0.001 0-0.001l-0.010 0.009-0.005 0.005c-0.144 0.137-0.312 0.27-0.497 0.396-0.813 0.555-1.949 0.985-2.754 1.093l-0.006 0.001c-0.605 0.096-1.198 0.113-1.715 0.049-0.297-0.037-0.564-0.101-0.786-0.186-0.213-0.135-0.4-0.391-0.414-0.801 0.241 0.104 0.522 0.167 0.734 0.205 0.452 0.083 0.889 0.093 1.281 0.069 0.098-0.008 0.193-0.015 0.286-0.025 0.093-0.012 0.183-0.024 0.27-0.035 0.17-0.029 0.327-0.056 0.474-0.089 0.073-0.014 0.141-0.034 0.206-0.051 0.064-0.019 0.126-0.033 0.181-0.053 0.112-0.038 0.209-0.070 0.284-0.103 0.151-0.064 0.232-0.108 0.227-0.124s-0.096-0.004-0.257 0.032c-0.080 0.019-0.177 0.035-0.289 0.060-0.056 0.013-0.117 0.021-0.181 0.033-0.064 0.011-0.132 0.025-0.203 0.033-0.14 0.020-0.301 0.038-0.472 0.058-0.084 0.007-0.171 0.014-0.26 0.021-0.090 0.004-0.183 0.009-0.277 0.014-0.379 0.011-0.798-0.006-1.224-0.084-0.225-0.040-0.525-0.142-0.741-0.264l-0.008-0.005c0.127-0.451 0.598-0.515 0.598-0.515l-0.011-0.003c0.779 0.095 1.528 0.084 2.24-0.025 1.034-0.158 1.99-0.527 2.838-1.102 0.045-0.030 0.089-0.061 0.134-0.093v-0c0.008 0.015 0.018 0.032 0.027 0.052 0.061 0.126 0.138 0.348 0.104 0.635-0.004 0.038-0.011 0.077-0.020 0.117-0.007 0.031-0.014 0.062-0.023 0.093 0 0 0.046 0.044 0.102 0.135 0.044 0.070 0.093 0.168 0.131 0.294-0.002-0.008-0.003-0.012-0.003-0.012l0.009-0.001c0.020-0.002 0.039-0.002 0.058-0.003 0.047-0.002 0.090 0 0.127 0.006 0.051 0.008 0.094 0.021 0.131 0.038 0.013 0.006 0.025 0.013 0.037 0.021 0.022 0.014 0.040 0.029 0.055 0.045 0.009 0.009 0.017 0.018 0.024 0.028l0.004 0.006c0.004 0.006 0.008 0.012 0.012 0.018l0.002 0.003c0.064 0.107 0.048 0.228 0.048 0.228z"></path>
692
+ <path d="M16.256 6.937l-0.001-0.001 0 0.001z"></path>
693
+ <path d="M3.258 14.17v-0z"></path>
694
+ <path d="M2.424 13.388v0z"></path>
695
+ <path d="M2.424 13.389v0l-0.001-0.001z"></path>
696
+ <path d="M2.033 12.561l-0-0 0.001 0.001v0z"></path>
697
+ <path d="M2 12.43h0v0.001h-0v-0.001z"></path>
698
+ <path d="M2.5 13.492l-0.001-0.001-0-0.001 0.001 0.001 0.001 0.002z"></path>
699
+ <path d="M14.914 5.535h0l-0.001-0.001z"></path>
700
+ <path d="M2.426 13.391l-0-0.001-0.001-0.001z"></path>
701
+ <path d="M10.804 12.029c-0.081 0.028-0.171 0.060-0.266 0.1-0.252 0.105-0.539 0.253-0.793 0.459-0.032 0.026-0.063 0.052-0.094 0.080-0.052 0.047-0.102 0.097-0.15 0.149-0.005 0.006-0.011 0.012-0.017 0.018-0.007 0.008-0.014 0.016-0.021 0.025-0.018 0.021-0.036 0.043-0.053 0.065-0.007 0.009-0.014 0.017-0.021 0.027-0.023 0.030-0.045 0.061-0.066 0.092s-0.041 0.063-0.059 0.096c-0.15 0.263-0.236 0.577-0.209 0.952l0.001-0.004 0.001-0.003c0.001-0.003 0.002-0.008 0.003-0.014l0.001-0.003c0.001-0.006 0.003-0.012 0.004-0.020l0.001-0.005c0.002-0.008 0.004-0.018 0.007-0.029l0.002-0.007c0.003-0.012 0.007-0.024 0.010-0.037v-0c0.004-0.013 0.008-0.027 0.013-0.042l0.003-0.009c0.005-0.015 0.010-0.030 0.016-0.046l0.003-0.008c0.005-0.015 0.012-0.031 0.018-0.047l0.003-0.008c0.007-0.017 0.015-0.035 0.023-0.053l0.005-0.011c0.009-0.018 0.018-0.037 0.028-0.056v0c0-0.001 0.001-0.002 0.001-0.002 0.015-0.028 0.032-0.057 0.049-0.087 0.007-0.011 0.013-0.022 0.021-0.033l0.006-0.009v-0c0.015-0.023 0.031-0.046 0.048-0.068 0.014-0.018 0.029-0.037 0.044-0.055 0.005-0.006 0.010-0.011 0.015-0.017 0.012-0.014 0.025-0.028 0.038-0.041 0.005-0.005 0.011-0.011 0.016-0.017 0.018-0.018 0.037-0.035 0.057-0.052l0.002-0.002c0 0-0.342 0.772-0.193 1.385 0 0 0-0.002 0-0.005 0-0.001 0-0.002 0-0.004 0-0.003 0-0.007 0-0.012 0-0.001 0-0.002 0-0.003 0-0.006 0-0.014 0-0.022 0-0.001 0-0.002 0-0.003 0-0.009 0.001-0.019 0.001-0.030 0-0.001 0-0.002 0-0.003 0.001-0.012 0.002-0.024 0.002-0.038 0-0.001 0-0.002 0-0.003 0.001-0.014 0.002-0.028 0.004-0.044 0-0.001 0-0.003 0.001-0.004 0.002-0.015 0.004-0.031 0.006-0.048 0-0.002 0.001-0.003 0.001-0.005 0.002-0.018 0.006-0.036 0.009-0.055l0.001-0.005 0.002-0.010v-0c0.004-0.021 0.009-0.043 0.015-0.065 0.001-0.002 0.001-0.003 0.001-0.004 0.006-0.022 0.012-0.043 0.019-0.066 0.002-0.007 0.004-0.013 0.007-0.020l0.005-0.014v-0c0.007-0.018 0.013-0.036 0.021-0.054l0.001-0.003v-0c0.011-0.025 0.023-0.050 0.036-0.074 0.003-0.006 0.007-0.013 0.011-0.019 0.014-0.024 0.029-0.048 0.046-0.070l0.001-0.001c0 0-0.020 0.19-0.015 0.417 0.001 0.036 0.002 0.072 0.005 0.109 0.002 0.025 0.003 0.049 0.005 0.074 0.015-0.243 0.059-0.472 0.124-0.685 0.018-0.059 0.038-0.116 0.059-0.173 0.003-0.008 0.006-0.016 0.009-0.024 0.020-0.053 0.042-0.105 0.064-0.157 0.004-0.010 0.008-0.019 0.013-0.028 0.023-0.051 0.046-0.1 0.071-0.148 0.004-0.008 0.008-0.015 0.012-0.022 0.053-0.101 0.109-0.197 0.167-0.288 0.004-0.007 0.008-0.013 0.013-0.020 0.022-0.034 0.045-0.067 0.068-0.099 0.006-0.009 0.012-0.018 0.018-0.026s0.011-0.015 0.016-0.023c0.029-0.040 0.058-0.079 0.088-0.117 0.005-0.006 0.009-0.012 0.014-0.018 0.031-0.039 0.061-0.077 0.092-0.113l0.002-0.002c0.039-0.046 0.077-0.089 0.116-0.131 0.028-0.030 0.056-0.060 0.083-0.088 0.010-0.011 0.021-0.021 0.032-0.032 0.066-0.067 0.129-0.126 0.188-0.179 0.177-0.159 0.316-0.257 0.364-0.29-0.029 0.007-0.063 0.016-0.101 0.027-0.057 0.016-0.123 0.036-0.195 0.061z"></path>
702
+ <path d="M14.103 10.724c0.025 0.041 0.063 0.080 0.111 0.111 0.102 0.065 0.215 0.070 0.273 0.018 0-0 0-0.001 0.001-0.001 0.006 0.002 0.022 0.008 0.044 0.014 0.128 0.038 0.482 0.112 0.673-0.136 0.009-0.012 0.019-0.023 0.027-0.036-0.038-0.019-0.059-0.075-0.059-0.14-0-0.032 0.004-0.065 0.014-0.099 0.032-0.104 0.103-0.165 0.158-0.137 0 0-0.002-0.020-0.009-0.049-0.028-0.113-0.139-0.379-0.579-0.337-0.459 0.044-0.614 0.415-0.653 0.542-0.008 0.026-0.012 0.043-0.012 0.043l0.012 0.011c0.058-0.049 0.169-0.044 0.27 0.020 0.001 0.001 0.001 0.001 0.002 0.002-0.101-0.064-0.211-0.069-0.269-0.020-0.010 0.008-0.018 0.017-0.025 0.028-0.027 0.046-0.017 0.108 0.019 0.167v0z"></path>
703
+ <path d="M14.998 8.871c-0.152 0.009-0.258 0.298-0.238 0.645 0.003 0.051 0.009 0.099 0.017 0.146 0.236 0.006 0.397 0.081 0.504 0.19 0.026-0.105 0.039-0.231 0.031-0.368-0.009-0.149-0.040-0.284-0.085-0.39-0.016-0.060-0.11-0.232-0.228-0.223z"></path>
704
+ <path d="M15.349 10.321c-0.056-0.028-0.127 0.033-0.158 0.137-0.010 0.034-0.015 0.067-0.014 0.099 0 0.066 0.021 0.121 0.059 0.14 0.057 0.028 0.127-0.033 0.158-0.137 0.003-0.009 0.005-0.018 0.007-0.027v-0c0.020-0.094-0.001-0.186-0.051-0.212z"></path>
705
+ <path d="M10.547 9.312c0.133-0.232 0.277-0.419 0.423-0.569 0.284-0.292 0.574-0.447 0.798-0.528 0.243-0.088 0.408-0.091 0.408-0.091-0.057-0.031-0.118-0.053-0.181-0.068-0.041-0.010-0.083-0.018-0.124-0.023-0.015-0.002-0.031-0.003-0.046-0.005-0.21-0.018-0.393 0.017-0.393 0.017-0.039 0.009-0.077 0.019-0.112 0.030-0.286 0.087-0.485 0.236-0.624 0.407-0.113 0.139-0.186 0.293-0.233 0.442-0.004 0.013-0.008 0.026-0.012 0.039-0.011 0.038-0.021 0.076-0.028 0.113-0.026 0.125-0.037 0.24-0.039 0.331-0.003 0.125 0.006 0.205 0.006 0.205 0.050-0.109 0.102-0.209 0.155-0.303z"></path>
706
+ <path d="M15.494 7.884c0.042 0.029 0.083 0.063 0.125 0.102s0.085 0.083 0.127 0.132c0 0-0.018-0.198-0.131-0.369-0.007-0.011-0.014-0.021-0.022-0.032l-0.010-0.012c-0.032-0.041-0.071-0.078-0.117-0.11-0.108-0.075-0.258-0.113-0.466-0.071 0 0-0.247 0.058-0.391 0.219 0 0 0.43-0.183 0.884 0.14z"></path>
707
+ <path d="M12.050 10.284c0.027 0.232 0.094 0.437 0.179 0.58 0.165-0.051 0.343-0.098 0.534-0.141 0.033-0.149 0.042-0.333 0.018-0.529-0.054-0.461-0.262-0.814-0.464-0.789s-0.322 0.419-0.267 0.88z"></path>
708
+ <path d="M10.957 1.417l-0.089-0.777-0.158 0.35 0.026 0.314 0 0.002z"></path>
709
+ <path d="M11.143 2.306c0.008-0.004 0.015-0.009 0.023-0.013s0.016-0.009 0.024-0.014c0.010-0.006 0.019-0.011 0.029-0.017 0.091-0.053 0.183-0.106 0.275-0.156l-0.943-0.461 0.583 0.667 0.010-0.006z"></path>
710
+ <path d="M11.589 2.053c0.038-0.021 0.077-0.041 0.115-0.062 0.055-0.029 0.11-0.058 0.166-0.086 0.007-0.003 0.013-0.007 0.020-0.010l0.005-0.002c0.009-0.004 0.017-0.008 0.026-0.013l0.003-0.002-0.428-0.495 0.087 0.673 0.006-0.003z"></path>
711
+ </symbol>
712
+ <symbol id="frm_feed_icon" viewBox="0 0 20 20">
713
+ <title>feed</title>
714
+ <path d="M1.111 10c1.206 0 2.353 0.24 3.399 0.672 1.087 0.45 2.066 1.11 2.887 1.931s1.481 1.8 1.931 2.887c0.432 1.046 0.672 2.193 0.672 3.399 0 0.613 0.498 1.111 1.111 1.111s1.111-0.498 1.111-1.111c0-1.503-0.299-2.939-0.842-4.249-0.563-1.36-1.389-2.583-2.412-3.608s-2.247-1.849-3.608-2.412c-1.31-0.543-2.746-0.842-4.249-0.842-0.613 0-1.111 0.498-1.111 1.111s0.498 1.111 1.111 1.111zM1.111 2.222c2.26 0 4.411 0.449 6.373 1.262 2.039 0.844 3.874 2.082 5.412 3.62s2.776 3.373 3.62 5.412c0.812 1.961 1.261 4.112 1.261 6.372 0 0.613 0.498 1.111 1.111 1.111s1.111-0.498 1.111-1.111c0-2.557-0.509-4.997-1.431-7.223-0.958-2.312-2.361-4.392-4.101-6.132s-3.82-3.143-6.132-4.101c-2.228-0.923-4.668-1.432-7.224-1.432-0.613 0-1.111 0.498-1.111 1.111s0.498 1.111 1.111 1.111zM4.444 17.778c0-0.299-0.060-0.587-0.169-0.85-0.113-0.273-0.278-0.517-0.482-0.721s-0.449-0.369-0.721-0.482c-0.263-0.109-0.551-0.169-0.85-0.169s-0.587 0.060-0.85 0.169c-0.273 0.113-0.517 0.278-0.721 0.482s-0.369 0.449-0.482 0.721c-0.109 0.263-0.169 0.551-0.169 0.85s0.060 0.587 0.169 0.85c0.113 0.273 0.278 0.517 0.482 0.721s0.449 0.369 0.721 0.482c0.263 0.109 0.551 0.169 0.85 0.169s0.587-0.060 0.85-0.169c0.273-0.113 0.517-0.278 0.721-0.482s0.369-0.449 0.482-0.721c0.109-0.263 0.169-0.551 0.169-0.85z"></path>
715
+ </symbol>
716
+ <symbol id="frm_align_right_icon" viewBox="0 0 18 20">
717
+ <title>align_right</title>
718
+ <path d="M6.25 3.125v-1.25c0-0.259 0.21-0.469 0.469-0.469h10.313c0.259 0 0.469 0.21 0.469 0.469v1.25c0 0.259-0.21 0.469-0.469 0.469h-10.313c-0.259 0-0.469-0.21-0.469-0.469zM0.469 8.594h16.563c0.259 0 0.469-0.21 0.469-0.469v-1.25c0-0.259-0.21-0.469-0.469-0.469h-16.563c-0.259 0-0.469 0.21-0.469 0.469v1.25c0 0.259 0.21 0.469 0.469 0.469zM0.469 18.594h16.563c0.259 0 0.469-0.21 0.469-0.469v-1.25c0-0.259-0.21-0.469-0.469-0.469h-16.563c-0.259 0-0.469 0.21-0.469 0.469v1.25c0 0.259 0.21 0.469 0.469 0.469zM6.719 13.594h10.313c0.259 0 0.469-0.21 0.469-0.469v-1.25c0-0.259-0.21-0.469-0.469-0.469h-10.313c-0.259 0-0.469 0.21-0.469 0.469v1.25c0 0.259 0.21 0.469 0.469 0.469z"></path>
719
+ </symbol>
720
+ <symbol id="frm_align_left_icon" viewBox="0 0 18 20">
721
+ <title>align_left</title>
722
+ <path d="M11.25 1.875v1.25c0 0.259-0.21 0.469-0.469 0.469h-10.313c-0.259 0-0.469-0.21-0.469-0.469v-1.25c0-0.259 0.21-0.469 0.469-0.469h10.313c0.259 0 0.469 0.21 0.469 0.469zM0.469 8.594h16.563c0.259 0 0.469-0.21 0.469-0.469v-1.25c0-0.259-0.21-0.469-0.469-0.469h-16.563c-0.259 0-0.469 0.21-0.469 0.469v1.25c0 0.259 0.21 0.469 0.469 0.469zM0.469 18.594h16.563c0.259 0 0.469-0.21 0.469-0.469v-1.25c0-0.259-0.21-0.469-0.469-0.469h-16.563c-0.259 0-0.469 0.21-0.469 0.469v1.25c0 0.259 0.21 0.469 0.469 0.469zM10.781 11.406h-10.313c-0.259 0-0.469 0.21-0.469 0.469v1.25c0 0.259 0.21 0.469 0.469 0.469h10.313c0.259 0 0.469-0.21 0.469-0.469v-1.25c0-0.259-0.21-0.469-0.469-0.469z"></path>
723
+ </symbol>
724
+ <symbol id="frm_button_icon" viewBox="0 0 20 20">
725
+ <title>button</title>
726
+ <path d="M17.778 4.444h-15.556c-1.222 0-2.222 1-2.222 2.222v6.667c0 1.222 1 2.222 2.222 2.222h15.556c1.222 0 2.222-1 2.222-2.222v-6.667c0-1.222-1-2.222-2.222-2.222zM17.778 13.333h-15.556v-6.667h15.556v6.667z"></path>
727
+ </symbol>
728
+ <symbol id="frm_browser_icon" viewBox="0 0 20 20">
729
+ <title>browser</title>
730
+ <path d="M18.125 1.25h-16.25c-1.035 0-1.875 0.84-1.875 1.875v13.75c0 1.035 0.84 1.875 1.875 1.875h16.25c1.035 0 1.875-0.84 1.875-1.875v-13.75c0-1.035-0.84-1.875-1.875-1.875zM1.875 3.594c0-0.258 0.211-0.469 0.469-0.469h1.563c0.258 0 0.469 0.211 0.469 0.469v0.938c0 0.258-0.211 0.469-0.469 0.469h-1.563c-0.258 0-0.469-0.211-0.469-0.469v-0.938zM18.125 16.641c0 0.129-0.105 0.234-0.234 0.234h-15.781c-0.129 0-0.234-0.105-0.234-0.234v-10.078h16.25v10.078zM18.125 4.531c0 0.258-0.211 0.469-0.469 0.469h-10.938c-0.258 0-0.469-0.211-0.469-0.469v-0.938c0-0.258 0.211-0.469 0.469-0.469h10.938c0.258 0 0.469 0.211 0.469 0.469v0.938z"></path>
731
+ </symbol>
732
+ <symbol id="frm_cloud_download_solid_icon" viewBox="0 0 22 20">
733
+ <title>cloud_download_solid</title>
734
+ <path d="M18.141 8.162c-0.637-3.234-3.478-5.663-6.891-5.663-2.709 0-5.063 1.538-6.234 3.788-2.822 0.3-5.016 2.691-5.016 5.588 0 3.103 2.522 5.625 5.625 5.625h12.188c2.588 0 4.688-2.1 4.688-4.688 0-2.475-1.922-4.481-4.359-4.65zM15.938 10.938l-4.688 4.688-4.688-4.688h2.813v-3.75h3.75v3.75h2.813z"></path>
735
+ </symbol>
736
+ <symbol id="frm_cloud_download_icon" viewBox="0 0 22 20">
737
+ <title>cloud_download</title>
738
+ <path d="M18.141 8.162c-0.637-3.234-3.478-5.663-6.891-5.663-2.709 0-5.063 1.538-6.234 3.788-2.822 0.3-5.016 2.691-5.016 5.588 0 3.103 2.522 5.625 5.625 5.625h12.188c2.588 0 4.688-2.1 4.688-4.688 0-2.475-1.922-4.481-4.359-4.65zM17.813 15.625h-12.188c-2.072 0-3.75-1.678-3.75-3.75 0-1.922 1.434-3.525 3.338-3.722l1.003-0.103 0.469-0.891c0.891-1.716 2.634-2.784 4.566-2.784 2.456 0 4.575 1.744 5.053 4.153l0.281 1.406 1.434 0.103c1.463 0.094 2.606 1.322 2.606 2.775 0 1.547-1.266 2.813-2.813 2.813zM12.609 8.125h-2.719v2.813h-2.391l3.75 3.75 3.75-3.75h-2.391z"></path>
739
+ </symbol>
740
+ <symbol id="frm_cloud_upload_solid_icon" viewBox="0 0 22 20">
741
+ <title>cloud_upload_solid</title>
742
+ <path d="M18.141 8.162c-0.637-3.234-3.478-5.663-6.891-5.663-2.709 0-5.063 1.538-6.234 3.788-2.822 0.3-5.016 2.691-5.016 5.588 0 3.103 2.522 5.625 5.625 5.625h12.188c2.588 0 4.688-2.1 4.688-4.688 0-2.475-1.922-4.481-4.359-4.65zM13.125 10.938v3.75h-3.75v-3.75h-2.813l4.688-4.688 4.688 4.688h-2.813z"></path>
743
+ </symbol>
744
+ <symbol id="frm_cloud_upload_icon" viewBox="0 0 22 20">
745
+ <title>cloud_upload</title>
746
+ <path d="M18.141 8.162c-0.637-3.234-3.478-5.663-6.891-5.663-2.709 0-5.063 1.538-6.234 3.788-2.822 0.3-5.016 2.691-5.016 5.588 0 3.103 2.522 5.625 5.625 5.625h12.188c2.588 0 4.688-2.1 4.688-4.688 0-2.475-1.922-4.481-4.359-4.65zM17.813 15.625h-12.188c-2.072 0-3.75-1.678-3.75-3.75 0-1.922 1.434-3.525 3.338-3.722l1.003-0.103 0.469-0.891c0.891-1.716 2.634-2.784 4.566-2.784 2.456 0 4.575 1.744 5.053 4.153l0.281 1.406 1.434 0.103c1.463 0.094 2.606 1.322 2.606 2.775 0 1.547-1.266 2.813-2.813 2.813zM7.5 10.938h2.391v2.813h2.719v-2.813h2.391l-3.75-3.75z"></path>
747
+ </symbol>
748
+ <symbol id="frm_cloud_solid_icon" viewBox="0 0 22 20">
749
+ <title>cloud_solid</title>
750
+ <path d="M18.141 8.162c-0.637-3.234-3.478-5.663-6.891-5.663-2.709 0-5.063 1.538-6.234 3.788-2.822 0.3-5.016 2.691-5.016 5.588 0 3.103 2.522 5.625 5.625 5.625h12.188c2.588 0 4.688-2.1 4.688-4.688 0-2.475-1.922-4.481-4.359-4.65z"></path>
751
+ </symbol>
752
+ <symbol id="frm_cloud_icon" viewBox="0 0 22 20">
753
+ <title>cloud</title>
754
+ <path d="M11.25 4.375c2.456 0 4.575 1.744 5.053 4.153l0.281 1.406 1.434 0.103c1.463 0.094 2.606 1.322 2.606 2.775 0 1.547-1.266 2.813-2.813 2.813h-12.188c-2.072 0-3.75-1.678-3.75-3.75 0-1.922 1.434-3.525 3.338-3.722l1.003-0.103 0.469-0.891c0.891-1.716 2.634-2.784 4.566-2.784zM11.25 2.5c-2.709 0-5.063 1.538-6.234 3.788-2.822 0.3-5.016 2.691-5.016 5.588 0 3.103 2.522 5.625 5.625 5.625h12.188c2.588 0 4.688-2.1 4.688-4.688 0-2.475-1.922-4.481-4.359-4.65-0.637-3.234-3.478-5.663-6.891-5.663z"></path>
755
+ </symbol>
756
+ <symbol id="frm_shuffle_icon" viewBox="0 0 20 20">
757
+ <title>shuffle</title>
758
+ <path d="M6.59 12.83l-2.19 2.17c-0.58 0.58-1.59 1-2.4 1h-2v-2h2c0.29 0 0.8-0.2 1-0.41l2.17-2.18 1.42 1.42zM16 4v-3l4 4-4 4v-3h-2c-0.29 0-0.8 0.2-1 0.41l-2.17 2.18-1.43-1.42 2.2-2.17c0.58-0.58 1.59-1 2.41-1h2zM16 14v-3l4 4-4 4v-3h-2c-0.82 0-1.83-0.42-2.41-1l-8.6-8.59c-0.19-0.2-0.69-0.41-0.99-0.41h-2v-2h2c0.82 0 1.83 0.42 2.41 1l8.6 8.59c0.2 0.2 0.7 0.41 0.99 0.41h2z"></path>
759
+ </symbol>
760
+ <symbol id="frm_swap_icon" viewBox="0 0 20 20">
761
+ <title>swap</title>
762
+ <path d="M9 6c0-2.209 1.791-4 4-4s4 1.791 4 4v0 8h3l-4 4-4-4h3v-8c0-1.105-0.895-2-2-2v0c-1.105 0-2 0.895-2 2v0 8c0 2.209-1.791 4-4 4s-4-1.791-4-4v0-8h-3l4-4 4 4h-3v8c0 1.105 0.895 2 2 2v0c1.105 0 2-0.895 2-2v0-8z"></path>
763
+ </symbol>
764
+ <symbol id="frm_dropper_solid_icon" viewBox="0 0 20 20">
765
+ <title>dropper_solid</title>
766
+ <path d="M19.676 2.923l-2.6-2.6c-0.433-0.433-1.133-0.433-1.566 0l-3.466 3.466-2.144-2.122-1.566 1.566 1.578 1.578-9.91 9.91v5.277h5.277l9.91-9.91 1.578 1.578 1.566-1.566-2.133-2.133 3.466-3.466c0.444-0.444 0.444-1.144 0.011-1.578zM4.356 17.777l-2.133-2.133 8.954-8.954 2.133 2.133-8.954 8.954z"></path>
767
+ </symbol>
768
+ <symbol id="frm_tint_icon" viewBox="0 0 14 20">
769
+ <title>tint</title>
770
+ <path d="M8.016 0.863c-0.157-0.569-0.649-0.863-1.143-0.863-0.482 0-0.966 0.281-1.14 0.863-1.827 6.162-5.734 7.837-5.734 12.18 0 3.845 3.075 6.957 6.875 6.957s6.875-3.111 6.875-6.957c0-4.365-3.898-5.99-5.734-12.18zM6.875 18.125c-2.757 0-5-2.28-5-5.082 0-1.693 0.807-2.85 2.030-4.601 0.943-1.352 2.070-2.966 2.97-5.174 0.904 2.22 2.032 3.832 2.977 5.182 1.218 1.741 2.023 2.892 2.023 4.594 0 2.802-2.243 5.081-5 5.081zM7.5 15.625c-1.723 0-3.125-1.402-3.125-3.125 0-0.345-0.28-0.625-0.625-0.625s-0.625 0.28-0.625 0.625c0 2.412 1.963 4.375 4.375 4.375 0.345 0 0.625-0.28 0.625-0.625s-0.28-0.625-0.625-0.625z"></path>
771
+ </symbol>
772
+ <symbol id="frm_pallet_solid_icon" viewBox="0 0 20 20">
773
+ <title>pallet_solid</title>
774
+ <path d="M10 0c-5.522 0-10 4.478-10 10s4.478 10 10 10c0.922 0 1.667-0.744 1.667-1.667 0-0.433-0.167-0.822-0.433-1.122-0.256-0.289-0.422-0.678-0.422-1.1 0-0.922 0.744-1.667 1.667-1.667h1.967c3.067 0 5.556-2.489 5.556-5.556 0-4.911-4.478-8.889-10-8.889zM3.889 10c-0.922 0-1.667-0.744-1.667-1.667s0.744-1.667 1.667-1.667 1.667 0.744 1.667 1.667-0.744 1.667-1.667 1.667zM7.222 5.556c-0.922 0-1.667-0.744-1.667-1.667s0.744-1.667 1.667-1.667 1.667 0.744 1.667 1.667-0.744 1.667-1.667 1.667zM12.778 5.556c-0.922 0-1.667-0.744-1.667-1.667s0.744-1.667 1.667-1.667 1.667 0.744 1.667 1.667-0.744 1.667-1.667 1.667zM16.111 10c-0.922 0-1.667-0.744-1.667-1.667s0.744-1.667 1.667-1.667 1.667 0.744 1.667 1.667-0.744 1.667-1.667 1.667z"></path>
775
+ </symbol>
776
+ <symbol id="frm_pallet_icon" viewBox="0 0 20 20">
777
+ <title>pallet</title>
778
+ <path d="M10 20c-5.51 0-10-4.49-10-10s4.49-10 10-10 10 4.040 10 9c0 3.31-2.69 6-6 6h-1.77c-0.28 0-0.5 0.22-0.5 0.5 0 0.12 0.050 0.23 0.13 0.33 0.41 0.47 0.64 1.060 0.64 1.67 0 1.38-1.12 2.5-2.5 2.5zM10 2c-4.41 0-8 3.59-8 8s3.59 8 8 8c0.28 0 0.5-0.22 0.5-0.5 0-0.16-0.080-0.28-0.14-0.35-0.41-0.46-0.63-1.050-0.63-1.65 0-1.38 1.12-2.5 2.5-2.5h1.77c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z"></path>
779
+ <path d="M6 9.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"></path>
780
+ <path d="M9 5.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"></path>
781
+ <path d="M14 5.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"></path>
782
+ <path d="M17 9.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"></path>
783
+ </symbol>
784
+ <symbol id="frm_fingerprint_icon" viewBox="0 0 20 20">
785
+ <title>fingerprint</title>
786
+ <path d="M15.81 2.47c-0.080 0-0.16-0.020-0.23-0.060-1.92-0.99-3.58-1.41-5.57-1.41-1.98 0-3.86 0.47-5.57 1.41-0.24 0.13-0.54 0.040-0.68-0.2-0.13-0.24-0.040-0.55 0.2-0.68 1.86-1.010 3.9-1.53 6.050-1.53 2.13 0 3.99 0.47 6.030 1.52 0.25 0.13 0.34 0.43 0.21 0.67-0.090 0.18-0.26 0.28-0.44 0.28zM1.5 7.72c-0.1 0-0.2-0.030-0.29-0.090-0.23-0.16-0.28-0.47-0.12-0.7 0.99-1.4 2.25-2.5 3.75-3.27 3.14-1.62 7.16-1.63 10.31-0.010 1.5 0.77 2.76 1.86 3.75 3.25 0.16 0.22 0.11 0.54-0.12 0.7s-0.54 0.11-0.7-0.12c-0.9-1.26-2.040-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4 0.010-1.36 0.7-2.5 1.7-3.4 2.96-0.080 0.14-0.23 0.21-0.39 0.21zM7.75 19.79c-0.13 0-0.26-0.050-0.35-0.15-0.87-0.87-1.34-1.43-2.010-2.64-0.69-1.23-1.050-2.73-1.050-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 0.28-0.22 0.5-0.5 0.5s-0.5-0.22-0.5-0.5c0-2.42-2.090-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44 0.32 2.77 0.93 3.85 0.64 1.15 1.080 1.64 1.85 2.42 0.19 0.2 0.19 0.51 0 0.71-0.11 0.1-0.24 0.15-0.37 0.15zM14.92 17.94c-1.19 0-2.24-0.3-3.1-0.89-1.49-1.010-2.38-2.65-2.38-4.39 0-0.28 0.22-0.5 0.5-0.5s0.5 0.22 0.5 0.5c0 1.41 0.72 2.74 1.94 3.56 0.71 0.48 1.54 0.71 2.54 0.71 0.24 0 0.64-0.030 1.040-0.1 0.27-0.050 0.53 0.13 0.58 0.41 0.050 0.27-0.13 0.53-0.41 0.58-0.57 0.11-1.070 0.12-1.21 0.12zM12.91 20c-0.040 0-0.090-0.010-0.13-0.020-1.59-0.44-2.63-1.030-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.080-2.94s3.080 1.32 3.080 2.94c0 1.070 0.93 1.94 2.080 1.94s2.080-0.87 2.080-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.030-0.39 0.81-0.59 1.76-0.59 2.8 0 0.78 0.070 2.010 0.67 3.61 0.1 0.26-0.030 0.55-0.29 0.64-0.26 0.1-0.55-0.040-0.64-0.29-0.49-1.31-0.73-2.61-0.73-3.96 0-1.2 0.23-2.29 0.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.080 2.94s-3.080-1.32-3.080-2.94c0-1.070-0.93-1.94-2.080-1.94s-2.080 0.87-2.080 1.94c0 1.71 0.66 3.31 1.87 4.51 0.95 0.94 1.86 1.46 3.27 1.85 0.27 0.070 0.42 0.35 0.35 0.61-0.050 0.23-0.26 0.38-0.47 0.38z"></path>
787
+ </symbol>
788
+ <symbol id="frm_ghost_icon" viewBox="0 0 15 20">
789
+ <title>ghost</title>
790
+ <path d="M7.5 0c-0.077 0-0.154 0.001-0.231 0.004-4.105 0.123-7.269 3.704-7.269 7.811v10.309c0 0.377 0.308 0.626 0.63 0.626 0.154 0 0.31-0.057 0.438-0.184l0.973-0.724c0.112-0.083 0.243-0.123 0.373-0.123 0.173 0 0.345 0.071 0.468 0.21l1.678 1.889c0.122 0.122 0.282 0.183 0.442 0.183s0.32-0.061 0.442-0.183l1.591-1.791c0.124-0.14 0.296-0.21 0.467-0.21s0.343 0.070 0.467 0.21l1.591 1.791c0.122 0.122 0.282 0.183 0.442 0.183s0.32-0.061 0.442-0.183l1.678-1.889c0.115-0.129 0.282-0.21 0.467-0.21 0.14 0 0.27 0.046 0.374 0.125l-0.002-0.001 0.973 0.724c0.127 0.127 0.284 0.184 0.438 0.184 0.321 0 0.63-0.25 0.63-0.626v-10.624c0-4.142-3.358-7.5-7.5-7.5zM13.125 15.901c-0.175-0.038-0.355-0.058-0.538-0.058-0.714 0-1.395 0.306-1.869 0.84l-0.718 0.808-0.631-0.71c-0.474-0.534-1.155-0.84-1.869-0.84s-1.395 0.306-1.869 0.84l-0.631 0.71-0.718-0.808c-0.46-0.516-1.127-0.839-1.869-0.839h-0c-0.183 0-0.363 0.020-0.538 0.058v-8.087c0-3.183 2.445-5.846 5.45-5.937l0.175-0.003c3.102 0 5.625 2.523 5.625 5.625v8.401zM5 6.25c-0.69 0-1.25 0.56-1.25 1.25s0.56 1.25 1.25 1.25 1.25-0.56 1.25-1.25-0.56-1.25-1.25-1.25zM10 6.25c-0.69 0-1.25 0.56-1.25 1.25s0.56 1.25 1.25 1.25 1.25-0.56 1.25-1.25-0.56-1.25-1.25-1.25z"></path>
791
+ </symbol>
792
+ <symbol id="frm_heart_solid_icon" viewBox="0 0 20 20">
793
+ <title>heart_solid</title>
794
+ <path d="M10 19.35l-1.45-1.32c-5.15-4.67-8.55-7.75-8.55-11.53 0-3.080 2.42-5.5 5.5-5.5 1.74 0 3.41 0.81 4.5 2.090 1.090-1.28 2.76-2.090 4.5-2.090 3.080 0 5.5 2.42 5.5 5.5 0 3.78-3.4 6.86-8.55 11.54l-1.45 1.31z"></path>
795
+ </symbol>
796
+ <symbol id="frm_heart_icon" viewBox="0 0 20 20">
797
+ <title>heart</title>
798
+ <path d="M14.5 1c-1.74 0-3.41 0.81-4.5 2.090-1.090-1.28-2.76-2.090-4.5-2.090-3.080 0-5.5 2.42-5.5 5.5 0 3.78 3.4 6.86 8.55 11.54l1.45 1.31 1.45-1.32c5.15-4.67 8.55-7.75 8.55-11.53 0-3.080-2.42-5.5-5.5-5.5zM10.1 16.55l-0.1 0.1-0.1-0.1c-4.76-4.31-7.9-7.16-7.9-10.050 0-2 1.5-3.5 3.5-3.5 1.54 0 3.040 0.99 3.57 2.36h1.87c0.52-1.37 2.020-2.36 3.56-2.36 2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.050z"></path>
799
+ </symbol>
800
+ <symbol id="frm_history_icon" viewBox="0 0 20 20">
801
+ <title>history</title>
802
+ <path d="M11.429 1.429c-4.733 0-8.571 3.838-8.571 8.571h-2.857l3.705 3.705 0.067 0.133 3.848-3.838h-2.857c0-3.686 2.981-6.667 6.667-6.667s6.667 2.981 6.667 6.667-2.981 6.667-6.667 6.667c-1.838 0-3.505-0.752-4.705-1.962l-1.352 1.352c1.552 1.552 3.686 2.514 6.057 2.514 4.733 0 8.571-3.838 8.571-8.571s-3.838-8.571-8.571-8.571zM10.476 6.19v4.762l4.048 2.4 0.733-1.219-3.352-1.99v-3.952z"></path>
803
+ </symbol>
804
+ <symbol id="frm_import_icon" viewBox="0 0 20 20">
805
+ <title>import</title>
806
+ <path d="M12.5 3.333h3.333c0.114 0 0.222 0.022 0.318 0.062 0.102 0.042 0.193 0.104 0.271 0.182s0.139 0.169 0.182 0.271c0.040 0.097 0.063 0.204 0.063 0.318v11.667c0 0.114-0.023 0.222-0.063 0.318-0.042 0.102-0.104 0.193-0.182 0.271s-0.169 0.139-0.271 0.182c-0.097 0.040-0.204 0.063-0.318 0.063h-3.333c-0.46 0-0.833 0.373-0.833 0.833s0.373 0.833 0.833 0.833h3.333c0.337 0 0.661-0.068 0.957-0.19 0.307-0.127 0.582-0.313 0.812-0.543s0.416-0.505 0.542-0.812c0.122-0.295 0.189-0.618 0.189-0.956v-11.667c0-0.337-0.068-0.661-0.19-0.957-0.127-0.307-0.313-0.582-0.542-0.812s-0.505-0.416-0.812-0.542c-0.295-0.122-0.618-0.189-0.956-0.189h-3.333c-0.46 0-0.833 0.373-0.833 0.833s0.373 0.833 0.833 0.833zM10.488 9.167h-7.988c-0.46 0-0.833 0.373-0.833 0.833s0.373 0.833 0.833 0.833h7.988l-2.744 2.744c-0.326 0.326-0.326 0.853 0 1.178s0.853 0.326 1.178 0l4.167-4.167c0.002-0.002 0.003-0.003 0.005-0.005 0.077-0.079 0.136-0.169 0.176-0.265 0.042-0.1 0.063-0.208 0.063-0.314 0-0.003 0-0.007 0-0.009-0.001-0.107-0.022-0.214-0.063-0.314-0.040-0.097-0.098-0.187-0.176-0.265-0.002-0.002-0.003-0.003-0.005-0.005l-4.167-4.167c-0.326-0.326-0.853-0.326-1.178 0s-0.326 0.853 0 1.178z"></path>
807
+ </symbol>
808
+ <symbol id="frm_export_icon" viewBox="0 0 20 20">
809
+ <title>export</title>
810
+ <path d="M7.5 16.667h-3.333c-0.114 0-0.222-0.023-0.318-0.063-0.102-0.042-0.193-0.104-0.271-0.182s-0.139-0.169-0.182-0.271c-0.040-0.097-0.062-0.204-0.062-0.318v-11.667c0-0.114 0.022-0.222 0.062-0.318 0.042-0.102 0.104-0.193 0.182-0.271s0.169-0.139 0.271-0.182c0.097-0.040 0.204-0.063 0.318-0.063h3.333c0.46 0 0.833-0.373 0.833-0.833s-0.373-0.833-0.833-0.833h-3.333c-0.337 0-0.661 0.068-0.957 0.19-0.306 0.127-0.581 0.313-0.811 0.542s-0.416 0.505-0.542 0.811c-0.123 0.296-0.19 0.619-0.19 0.957v11.667c0 0.337 0.067 0.661 0.19 0.957 0.127 0.307 0.313 0.582 0.542 0.812s0.505 0.416 0.812 0.543c0.295 0.122 0.618 0.189 0.956 0.189h3.333c0.46 0 0.833-0.373 0.833-0.833s-0.373-0.833-0.833-0.833zM15.488 9.167h-7.988c-0.46 0-0.833 0.373-0.833 0.833s0.373 0.833 0.833 0.833h7.988l-2.744 2.744c-0.326 0.326-0.326 0.853 0 1.178s0.853 0.326 1.178 0l4.167-4.167c0.080-0.080 0.14-0.173 0.181-0.271 0.041-0.1 0.063-0.206 0.063-0.312 0.001-0.111-0.020-0.222-0.063-0.325-0.041-0.098-0.101-0.191-0.181-0.271l-4.167-4.167c-0.326-0.326-0.853-0.326-1.178 0s-0.326 0.853 0 1.178z"></path>
811
+ </symbol>
812
+ <symbol id="frm_label_solid_icon" viewBox="0 0 20 20">
813
+ <title>label_solid</title>
814
+ <path d="M15.4 3.516c-0.379-0.537-1.011-0.884-1.716-0.884l-11.579 0.011c-1.158 0-2.105 0.937-2.105 2.095v10.526c0 1.158 0.947 2.095 2.105 2.095l11.579 0.011c0.705 0 1.337-0.347 1.716-0.884l4.6-6.484-4.6-6.484z"></path>
815
+ </symbol>
816
+ <symbol id="frm_label_icon" viewBox="0 0 20 20">
817
+ <title>label</title>
818
+ <path d="M15.4 3.516c-0.379-0.537-1.011-0.884-1.716-0.884l-11.579 0.011c-1.158 0-2.105 0.937-2.105 2.095v10.526c0 1.158 0.947 2.095 2.105 2.095l11.579 0.011c0.705 0 1.337-0.347 1.716-0.884l4.6-6.484-4.6-6.484zM13.684 15.263h-11.579v-10.526h11.579l3.737 5.263-3.737 5.263z"></path>
819
+ </symbol>
820
+ <symbol id="frm_lock_open_icon" viewBox="0 0 20 20">
821
+ <title>lock_open</title>
822
+ <path d="M10 15.238c1.048 0 1.905-0.857 1.905-1.905s-0.857-1.905-1.905-1.905-1.905 0.857-1.905 1.905 0.857 1.905 1.905 1.905zM15.714 6.667h-0.952v-1.905c0-2.629-2.133-4.762-4.762-4.762s-4.762 2.133-4.762 4.762h1.81c0-1.629 1.324-2.952 2.952-2.952s2.952 1.324 2.952 2.952v1.905h-8.667c-1.048 0-1.905 0.857-1.905 1.905v9.524c0 1.048 0.857 1.905 1.905 1.905h11.429c1.048 0 1.905-0.857 1.905-1.905v-9.524c0-1.048-0.857-1.905-1.905-1.905zM15.714 18.095h-11.429v-9.524h11.429v9.524z"></path>
823
+ </symbol>
824
+ <symbol id="frm_lock_solid_icon" viewBox="0 0 20 20">
825
+ <title>lock_solid</title>
826
+ <path d="M15.714 6.667h-0.952v-1.905c0-2.629-2.133-4.762-4.762-4.762s-4.762 2.133-4.762 4.762v1.905h-0.952c-1.048 0-1.905 0.857-1.905 1.905v9.524c0 1.048 0.857 1.905 1.905 1.905h11.429c1.048 0 1.905-0.857 1.905-1.905v-9.524c0-1.048-0.857-1.905-1.905-1.905zM10 15.238c-1.048 0-1.905-0.857-1.905-1.905s0.857-1.905 1.905-1.905 1.905 0.857 1.905 1.905-0.857 1.905-1.905 1.905zM12.952 6.667h-5.905v-1.905c0-1.629 1.324-2.952 2.952-2.952s2.952 1.324 2.952 2.952v1.905z"></path>
827
+ </symbol>
828
+ <symbol id="frm_lock_icon" viewBox="0 0 20 20">
829
+ <title>lock</title>
830
+ <path d="M15.714 6.667h-0.952v-1.905c0-2.629-2.133-4.762-4.762-4.762s-4.762 2.133-4.762 4.762v1.905h-0.952c-1.048 0-1.905 0.857-1.905 1.905v9.524c0 1.048 0.857 1.905 1.905 1.905h11.429c1.048 0 1.905-0.857 1.905-1.905v-9.524c0-1.048-0.857-1.905-1.905-1.905zM7.143 4.762c0-1.581 1.276-2.857 2.857-2.857s2.857 1.276 2.857 2.857v1.905h-5.714v-1.905zM15.714 18.095h-11.429v-9.524h11.429v9.524zM10 15.238c1.048 0 1.905-0.857 1.905-1.905s-0.857-1.905-1.905-1.905-1.905 0.857-1.905 1.905 0.857 1.905 1.905 1.905z"></path>
831
+ </symbol>
832
+ <symbol id="frm_magic_wand_icon" viewBox="0 0 20 20">
833
+ <title>magic_wand</title>
834
+ <path d="M5 3.75l-2.5-2.5h-1.25v1.25l2.5 2.5zM6.25 0h1.25v2.5h-1.25zM11.25 6.25h2.5v1.25h-2.5zM12.5 2.5v-1.25h-1.25l-2.5 2.5 1.25 1.25zM0 6.25h2.5v1.25h-2.5zM6.25 11.25h1.25v2.5h-1.25zM1.25 11.25v1.25h1.25l2.5-2.5-1.25-1.25zM19.727 17.227l-12.424-12.424c-0.365-0.365-0.961-0.365-1.326 0l-1.174 1.174c-0.365 0.365-0.365 0.961 0 1.326l12.424 12.424c0.365 0.365 0.961 0.365 1.326 0l1.174-1.174c0.365-0.365 0.365-0.961 0-1.326zM9.375 10.625l-3.75-3.75 1.25-1.25 3.75 3.75-1.25 1.25z"></path>
835
+ </symbol>
836
+ <symbol id="frm_dollar_sign_icon" viewBox="0 0 20 20">
837
+ <title>dollar_sign</title>
838
+ <path d="M9.167 9.167h-1.25c-0.283 0-0.553-0.057-0.797-0.157-0.254-0.105-0.484-0.26-0.677-0.453s-0.348-0.423-0.453-0.677c-0.101-0.244-0.158-0.513-0.158-0.797s0.057-0.553 0.158-0.797c0.105-0.254 0.26-0.484 0.453-0.677s0.422-0.348 0.677-0.453c0.244-0.101 0.513-0.158 0.797-0.158h1.25zM10.833 10.833h1.25c0.283 0 0.553 0.057 0.797 0.157 0.254 0.105 0.484 0.26 0.677 0.453s0.348 0.422 0.453 0.677c0.101 0.244 0.157 0.513 0.157 0.797s-0.057 0.553-0.157 0.797c-0.105 0.254-0.26 0.484-0.453 0.677s-0.422 0.348-0.677 0.453c-0.244 0.101-0.513 0.157-0.797 0.157h-1.25zM14.167 3.333h-3.333v-2.5c0-0.46-0.373-0.833-0.833-0.833s-0.833 0.373-0.833 0.833v2.5h-1.25c-0.507 0-0.992 0.101-1.434 0.284-0.46 0.191-0.873 0.469-1.217 0.814s-0.623 0.757-0.814 1.218c-0.183 0.442-0.284 0.927-0.284 1.434s0.101 0.992 0.284 1.434c0.19 0.459 0.469 0.872 0.814 1.217s0.757 0.623 1.217 0.814c0.443 0.183 0.928 0.284 1.434 0.284h1.25v4.167h-4.167c-0.46 0-0.833 0.373-0.833 0.833s0.373 0.833 0.833 0.833h4.167v2.5c0 0.46 0.373 0.833 0.833 0.833s0.833-0.373 0.833-0.833v-2.5h1.25c0.507 0 0.992-0.101 1.434-0.284 0.459-0.19 0.873-0.469 1.218-0.814s0.623-0.758 0.814-1.218c0.183-0.442 0.284-0.928 0.284-1.434s-0.101-0.992-0.284-1.434c-0.19-0.459-0.469-0.873-0.814-1.217s-0.758-0.623-1.217-0.814c-0.442-0.183-0.928-0.284-1.434-0.284h-1.25v-4.167h3.333c0.46 0 0.833-0.373 0.833-0.833s-0.373-0.833-0.833-0.833z"></path>
839
+ </symbol>
840
+ <symbol id="frm_percent_icon" viewBox="0 0 20 20">
841
+ <title>percent</title>
842
+ <path d="M8.334 5.416c0-0.394-0.078-0.772-0.222-1.116-0.147-0.356-0.366-0.678-0.634-0.947s-0.588-0.484-0.947-0.631c-0.344-0.144-0.722-0.222-1.116-0.222s-0.772 0.078-1.116 0.222c-0.356 0.147-0.678 0.366-0.947 0.634s-0.484 0.591-0.634 0.947c-0.144 0.344-0.222 0.722-0.222 1.116s0.078 0.772 0.222 1.116c0.147 0.356 0.366 0.678 0.634 0.947s0.591 0.484 0.947 0.634c0.344 0.144 0.722 0.222 1.116 0.222s0.772-0.078 1.116-0.222c0.356-0.147 0.678-0.366 0.947-0.634s0.484-0.591 0.634-0.947c0.144-0.347 0.222-0.725 0.222-1.119v0zM6.666 5.416c0 0.172-0.034 0.331-0.094 0.478-0.063 0.153-0.156 0.291-0.272 0.406s-0.253 0.209-0.406 0.272c-0.147 0.059-0.306 0.094-0.478 0.094s-0.331-0.034-0.478-0.094c-0.153-0.063-0.291-0.156-0.406-0.272s-0.209-0.253-0.272-0.406c-0.059-0.147-0.094-0.306-0.094-0.478s0.034-0.331 0.094-0.478c0.063-0.153 0.156-0.291 0.272-0.406s0.253-0.209 0.406-0.272c0.147-0.059 0.306-0.094 0.478-0.094s0.331 0.034 0.478 0.094c0.153 0.063 0.291 0.156 0.406 0.272s0.209 0.253 0.272 0.406c0.059 0.147 0.094 0.309 0.094 0.478zM17.5 14.584c0-0.394-0.078-0.772-0.222-1.116-0.147-0.356-0.366-0.678-0.634-0.947s-0.591-0.484-0.947-0.634c-0.344-0.144-0.722-0.222-1.116-0.222s-0.772 0.078-1.116 0.222c-0.356 0.147-0.678 0.366-0.947 0.634s-0.484 0.591-0.634 0.947c-0.144 0.344-0.222 0.722-0.222 1.116s0.078 0.772 0.222 1.116c0.147 0.356 0.366 0.678 0.634 0.947s0.591 0.484 0.947 0.634c0.344 0.144 0.722 0.222 1.116 0.222s0.772-0.078 1.116-0.222c0.356-0.147 0.678-0.366 0.947-0.634s0.484-0.591 0.634-0.947c0.144-0.347 0.222-0.722 0.222-1.116zM15.834 14.584c0 0.172-0.034 0.331-0.094 0.478-0.063 0.153-0.156 0.291-0.272 0.406s-0.253 0.209-0.406 0.272c-0.147 0.059-0.306 0.094-0.478 0.094s-0.331-0.034-0.478-0.094c-0.153-0.063-0.291-0.156-0.406-0.272s-0.209-0.253-0.272-0.406c-0.059-0.147-0.094-0.306-0.094-0.478s0.034-0.331 0.094-0.478c0.063-0.153 0.156-0.291 0.272-0.406s0.253-0.209 0.406-0.272c0.147-0.059 0.306-0.094 0.478-0.094s0.331 0.034 0.478 0.094c0.153 0.063 0.291 0.156 0.406 0.272s0.209 0.253 0.272 0.406c0.059 0.147 0.094 0.306 0.094 0.478zM17.022 4.353l-12.491 12.491c-0.456 0.456-1.194 0.456-1.65 0v0c-0.456-0.456-0.456-1.194 0-1.65l12.491-12.491c0.456-0.456 1.194-0.456 1.65 0v0c0.456 0.456 0.456 1.194 0 1.65z"></path>
843
+ </symbol>
844
+ <symbol id="frm_notification_solid_icon" viewBox="0 0 20 20">
845
+ <title>notification_solid</title>
846
+ <path d="M10 20c1.128 0 2.051-0.923 2.051-2.051h-4.103c0 1.128 0.913 2.051 2.051 2.051zM16.154 13.846v-5.128c0-3.149-1.682-5.785-4.615-6.482v-0.697c0-0.851-0.687-1.538-1.538-1.538s-1.538 0.687-1.538 1.538v0.697c-2.944 0.697-4.615 3.323-4.615 6.482v5.128l-2.051 2.051v1.026h16.41v-1.026l-2.051-2.051z"></path>
847
+ </symbol>
848
+ <symbol id="frm_notification_icon" viewBox="0 0 20 20">
849
+ <title>notification</title>
850
+ <path d="M10 20c1.128 0 2.051-0.923 2.051-2.051h-4.103c0 1.128 0.923 2.051 2.051 2.051zM16.154 13.846v-5.128c0-3.149-1.672-5.785-4.615-6.482v-0.697c0-0.851-0.687-1.538-1.538-1.538s-1.538 0.687-1.538 1.538v0.697c-2.933 0.697-4.615 3.323-4.615 6.482v5.128l-2.051 2.051v1.026h16.41v-1.026l-2.051-2.051zM14.103 14.872h-8.205v-6.154c0-2.544 1.549-4.615 4.103-4.615s4.103 2.072 4.103 4.615v6.154z"></path>
851
+ </symbol>
852
+ <symbol id="frm_external_link_icon" viewBox="0 0 23 20">
853
+ <title>external_link</title>
854
+ <path d="M22.5 0.563l-0.007 6.375c0 0.311-0.252 0.563-0.563 0.563h-1.301c-0.315 0-0.569-0.259-0.562-0.574l0.106-2.876-0.081-0.081-10.893 10.893c-0.183 0.183-0.48 0.183-0.663 0l-0.9-0.9c-0.183-0.183-0.183-0.48 0-0.663l10.893-10.893-0.081-0.081-2.876 0.106c-0.315 0.006-0.574-0.247-0.574-0.562v-1.301c0-0.311 0.252-0.563 0.562-0.563l6.375-0.007c0.311 0 0.562 0.252 0.562 0.563zM16.7 9.13l-0.938 0.938c-0.085 0.085-0.137 0.202-0.137 0.331v0 7.491c0 0.129-0.105 0.234-0.234 0.234v0h-13.281c-0.129 0-0.234-0.105-0.234-0.234v0-13.281c0-0.129 0.105-0.234 0.234-0.234v0h11.796c0.418 0 0.627-0.505 0.331-0.8l-0.938-0.938c-0.085-0.085-0.202-0.137-0.331-0.137h-11.093c-1.036 0-1.875 0.839-1.875 1.875v13.75c0 1.036 0.839 1.875 1.875 1.875h13.75c1.036 0 1.875-0.839 1.875-1.875v-8.663c0-0.418-0.505-0.627-0.8-0.331z"></path>
855
+ </symbol>
856
+ <symbol id="frm_pageview_solid_icon" viewBox="0 0 20 20">
857
+ <title>pageview_solid</title>
858
+ <path d="M9.5 7c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5zM18 2h-16c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h16c1.1 0 2-0.9 2-2v-12c0-1.1-0.9-2-2-2zM14.79 16.21l-2.91-2.91c-0.69 0.44-1.51 0.7-2.39 0.7-2.48 0-4.49-2.010-4.49-4.5s2.010-4.5 4.5-4.5 4.5 2.010 4.5 4.5c0 0.88-0.26 1.69-0.7 2.39l2.91 2.9-1.42 1.42z"></path>
859
+ </symbol>
860
+ <symbol id="frm_pageview_icon" viewBox="0 0 20 20">
861
+ <title>pageview</title>
862
+ <path d="M9.49 14c0.88 0 1.7-0.26 2.39-0.7l2.44 2.44 1.42-1.42-2.44-2.43c0.44-0.7 0.7-1.51 0.7-2.39 0-2.49-2.010-4.5-4.5-4.5s-4.5 2.010-4.5 4.5 2.010 4.5 4.49 4.5zM9.5 7c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5-2.5-1.12-2.5-2.5 1.12-2.5 2.5-2.5zM18 2h-16c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h16c1.1 0 2-0.9 2-2v-12c0-1.1-0.9-2-2-2zM18 16h-16v-12h16v12z"></path>
863
+ </symbol>
864
+ <symbol id="frm_settings_solid_icon" viewBox="0 0 20 20">
865
+ <title>settings_solid</title>
866
+ <path d="M17.438 10.975c0.037-0.313 0.063-0.638 0.063-0.975s-0.025-0.662-0.075-0.975l2.112-1.65c0.188-0.15 0.238-0.425 0.125-0.637l-2-3.463c-0.125-0.225-0.387-0.3-0.613-0.225l-2.487 1c-0.525-0.4-1.075-0.725-1.688-0.975l-0.375-2.65c-0.037-0.25-0.25-0.425-0.5-0.425h-4c-0.25 0-0.45 0.175-0.487 0.425l-0.375 2.65c-0.612 0.25-1.175 0.587-1.688 0.975l-2.488-1c-0.225-0.087-0.488 0-0.612 0.225l-2 3.463c-0.125 0.225-0.075 0.487 0.125 0.637l2.112 1.65c-0.050 0.313-0.087 0.65-0.087 0.975s0.025 0.663 0.075 0.975l-2.112 1.65c-0.188 0.15-0.237 0.425-0.125 0.637l2 3.462c0.125 0.225 0.387 0.3 0.612 0.225l2.488-1c0.525 0.4 1.075 0.725 1.688 0.975l0.375 2.65c0.050 0.25 0.25 0.425 0.5 0.425h4c0.25 0 0.463-0.175 0.488-0.425l0.375-2.65c0.613-0.25 1.175-0.587 1.688-0.975l2.487 1c0.225 0.088 0.488 0 0.613-0.225l2-3.463c0.125-0.225 0.075-0.488-0.125-0.638l-2.087-1.65zM10 13.75c-2.063 0-3.75-1.688-3.75-3.75s1.688-3.75 3.75-3.75 3.75 1.688 3.75 3.75-1.688 3.75-3.75 3.75z"></path>
867
+ </symbol>
868
+ <symbol id="frm_settings_icon" viewBox="0 0 20 20">
869
+ <title>settings</title>
870
+ <path d="M17.43 10.98c0.040-0.32 0.070-0.64 0.070-0.98s-0.030-0.66-0.070-0.98l2.11-1.65c0.19-0.15 0.24-0.42 0.12-0.64l-2-3.46c-0.090-0.16-0.26-0.25-0.44-0.25-0.060 0-0.12 0.010-0.17 0.030l-2.49 1c-0.52-0.4-1.080-0.73-1.69-0.98l-0.38-2.65c-0.030-0.24-0.24-0.42-0.49-0.42h-4c-0.25 0-0.46 0.18-0.49 0.42l-0.38 2.65c-0.61 0.25-1.17 0.59-1.69 0.98l-2.49-1c-0.060-0.020-0.12-0.030-0.18-0.030-0.17 0-0.34 0.090-0.43 0.25l-2 3.46c-0.13 0.22-0.070 0.49 0.12 0.64l2.11 1.65c-0.040 0.32-0.070 0.65-0.070 0.98s0.030 0.66 0.070 0.98l-2.11 1.65c-0.19 0.15-0.24 0.42-0.12 0.64l2 3.46c0.090 0.16 0.26 0.25 0.44 0.25 0.060 0 0.12-0.010 0.17-0.030l2.49-1c0.52 0.4 1.080 0.73 1.69 0.98l0.38 2.65c0.030 0.24 0.24 0.42 0.49 0.42h4c0.25 0 0.46-0.18 0.49-0.42l0.38-2.65c0.61-0.25 1.17-0.59 1.69-0.98l2.49 1c0.060 0.020 0.12 0.030 0.18 0.030 0.17 0 0.34-0.090 0.43-0.25l2-3.46c0.12-0.22 0.070-0.49-0.12-0.64l-2.11-1.65zM15.45 9.27c0.040 0.31 0.050 0.52 0.050 0.73s-0.020 0.43-0.050 0.73l-0.14 1.13 0.89 0.7 1.080 0.84-0.7 1.21-1.27-0.51-1.040-0.42-0.9 0.68c-0.43 0.32-0.84 0.56-1.25 0.73l-1.060 0.43-0.16 1.13-0.2 1.35h-1.4l-0.19-1.35-0.16-1.13-1.060-0.43c-0.43-0.18-0.83-0.41-1.23-0.71l-0.91-0.7-1.060 0.43-1.27 0.51-0.7-1.21 1.080-0.84 0.89-0.7-0.14-1.13c-0.030-0.31-0.050-0.54-0.050-0.74s0.020-0.43 0.050-0.73l0.14-1.13-0.89-0.7-1.080-0.84 0.7-1.21 1.27 0.51 1.040 0.42 0.9-0.68c0.43-0.32 0.84-0.56 1.25-0.73l1.060-0.43 0.16-1.13 0.2-1.35h1.39l0.19 1.35 0.16 1.13 1.060 0.43c0.43 0.18 0.83 0.41 1.23 0.71l0.91 0.7 1.060-0.43 1.27-0.51 0.7 1.21-1.070 0.85-0.89 0.7 0.14 1.13zM10 6c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zM10 12c-1.1 0-2-0.9-2-2s0.9-2 2-2 2 0.9 2 2-0.9 2-2 2z"></path>
871
+ </symbol>
872
+ <symbol id="frm_stamp_icon" viewBox="0 0 20 20">
873
+ <title>stamp</title>
874
+ <path d="M16.25 10h-2.6c-0.635 0-1.15-0.515-1.15-1.15v-0.37c0-1.069 0.347-2.087 0.838-3.036 0.356-0.688 0.504-1.499 0.354-2.36-0.264-1.515-1.503-2.762-3.018-3.025-0.228-0.039-0.453-0.059-0.674-0.059-2.071 0-3.75 1.679-3.75 3.75 0 0.553 0.122 1.076 0.339 1.546 0.521 1.127 0.911 2.31 0.911 3.552v0.002c0 0.635-0.515 1.15-1.15 1.15h-2.6c-2.071 0-3.75 1.679-3.75 3.75v1.875c0 0.345 0.28 0.625 0.625 0.625h0.625v2.5c0 0.69 0.56 1.25 1.25 1.25h15c0.69 0 1.25-0.56 1.25-1.25v-2.5h0.625c0.345 0 0.625-0.28 0.625-0.625v-1.875c0-2.071-1.679-3.75-3.75-3.75zM1.875 13.75c0-1.034 0.841-1.875 1.875-1.875h2.6c1.668 0 3.025-1.357 3.025-3.027 0-1.36-0.345-2.739-1.084-4.338-0.111-0.239-0.166-0.495-0.166-0.759 0-1.034 0.841-1.875 1.875-1.875 0.116 0 0.234 0.011 0.352 0.031 0.735 0.128 1.363 0.759 1.492 1.501 0.073 0.418 0.015 0.814-0.172 1.176-0.705 1.363-1.048 2.638-1.048 3.898v0.37c0 1.668 1.357 3.025 3.025 3.025h2.6c1.034 0 1.875 0.841 1.875 1.875v0.625h-16.25v-0.625zM16.875 18.125h-13.75v-1.875h13.75v1.875z"></path>
875
+ </symbol>
876
+ <symbol id="frm_support_icon" viewBox="0 0 20 20">
877
+ <title>support</title>
878
+ <path d="M10 0c5.525 0 10 4.475 10 10s-4.475 10-10 10-10-4.475-10-10 4.475-10 10-10zM10 1.429c-1.451 0-2.824 0.368-4.029 1.004l2.165 2.165c0.592-0.201 1.217-0.313 1.864-0.313 0.658 0 1.272 0.112 1.864 0.313l2.165-2.165c-1.205-0.636-2.578-1.004-4.029-1.004zM2.433 14.029l2.165-2.165c-0.201-0.592-0.313-1.217-0.313-1.864 0-0.658 0.112-1.272 0.313-1.864l-2.165-2.165c-0.636 1.205-1.004 2.578-1.004 4.029s0.368 2.824 1.004 4.029zM10 18.571c1.451 0 2.824-0.368 4.029-1.004l-2.165-2.165c-0.592 0.201-1.205 0.313-1.864 0.313-0.647 0-1.272-0.112-1.864-0.313l-2.165 2.165c1.205 0.636 2.578 1.004 4.029 1.004zM10 14.286c2.366 0 4.286-1.92 4.286-4.286s-1.92-4.286-4.286-4.286-4.286 1.92-4.286 4.286 1.92 4.286 4.286 4.286zM15.402 11.864l2.165 2.165c0.636-1.205 1.004-2.578 1.004-4.029s-0.368-2.824-1.004-4.029l-2.165 2.165c0.201 0.592 0.313 1.217 0.313 1.864s-0.112 1.272-0.313 1.864z"></path>
879
+ </symbol>
880
+ <symbol id="frm_text_solid_icon" viewBox="0 0 20 20">
881
+ <title>text_solid</title>
882
+ <path d="M7.93 11.5h4.14l-2.070-5.52zM18-0h-16c-1.1 0-2 0.9-2 2v16c0 1.1 0.9 2 2 2h16c1.1 0 2-0.9 2-2v-16c0-1.1-0.9-2-2-2zM13.95 16.5l-1.14-3h-5.64l-1.12 3h-2.090l5.11-13h1.86l5.11 13h-2.090z"></path>
883
+ </symbol>
884
+ <symbol id="frm_text_icon" viewBox="0 0 20 20">
885
+ <title>text</title>
886
+ <path d="M7.17 13.5h5.64l1.14 3h2.090l-5.11-13h-1.86l-5.11 13h2.090l1.12-3zM10 5.98l2.070 5.52h-4.14l2.070-5.52zM18-0h-16c-1.1 0-2 0.9-2 2v16c0 1.1 0.9 2 2 2h16c1.1 0 2-0.9 2-2v-16c0-1.1-0.9-2-2-2zM18 18h-16v-16h16v16z"></path>
887
+ </symbol>
888
+ <symbol id="frm_text2_icon" viewBox="0 0 20 20">
889
+ <title>text2</title>
890
+ <path d="M8.806 6.239l-1.897 5.022c1.105 0.011 2.21 0.045 3.315 0.045 0.212 0 0.424-0.011 0.636-0.022-0.58-1.696-1.261-3.426-2.054-5.045zM0.714 18.572l0.022-0.882c1.049-0.324 2.188-0.1 2.656-1.306l2.645-6.875 3.125-8.080h1.429c0.045 0.078 0.089 0.156 0.123 0.234l2.288 5.357c0.837 1.975 1.607 3.973 2.455 5.938 0.502 1.161 0.893 2.355 1.451 3.493 0.078 0.179 0.234 0.513 0.391 0.636 0.368 0.29 1.395 0.357 1.92 0.558 0.033 0.212 0.067 0.424 0.067 0.636 0 0.1-0.011 0.19-0.011 0.29-1.417 0-2.835-0.179-4.252-0.179-1.462 0-2.924 0.123-4.386 0.167 0-0.29 0.011-0.58 0.045-0.871l1.462-0.313c0.301-0.067 0.893-0.145 0.893-0.558 0-0.402-1.44-3.717-1.618-4.174l-5.022-0.022c-0.29 0.647-1.417 3.571-1.417 3.996 0 0.859 1.641 0.893 2.277 0.982 0.011 0.212 0.011 0.424 0.011 0.647 0 0.1-0.011 0.201-0.022 0.301-1.295 0-2.6-0.223-3.895-0.223-0.156 0-0.38 0.067-0.536 0.089-0.703 0.123-1.395 0.156-2.098 0.156z"></path>
891
+ </symbol>
892
+ <symbol id="frm_text3_icon" viewBox="0 0 20 20">
893
+ <title>text3</title>
894
+ <path d="M2.3 1.75v3.3h6.050v13.2h3.3v-13.2h6.050v-3.3z"></path>
895
+ </symbol>
896
+ <symbol id="frm_unfold_less_icon" viewBox="0 0 20 20">
897
+ <title>unfold_less</title>
898
+ <path d="M5.601 16.315l1.361 1.351 3.038-3.038 3.038 3.038 1.351-1.351-4.389-4.399-4.399 4.399zM14.399 3.685l-1.361-1.351-3.038 3.038-3.038-3.038-1.361 1.351 4.399 4.399 4.399-4.399z"></path>
899
+ </symbol>
900
+ <symbol id="frm_unfold_more_icon" viewBox="0 0 20 20">
901
+ <title>unfold_more</title>
902
+ <path d="M10 4.173l2.994 2.994 1.332-1.332-4.326-4.335-4.335 4.335 1.341 1.332 2.994-2.994zM10 15.827l-2.994-2.994-1.332 1.332 4.326 4.335 4.335-4.335-1.341-1.332-2.994 2.994z"></path>
903
+ </symbol>
904
+ <symbol id="frm_work_solid_icon" viewBox="0 0 20 20">
905
+ <title>work_solid</title>
906
+ <path d="M18 4h-4v-2c0-1.11-0.89-2-2-2h-4c-1.11 0-2 0.89-2 2v2h-4c-1.11 0-1.99 0.89-1.99 2l-0.010 11c0 1.11 0.89 2 2 2h16c1.11 0 2-0.89 2-2v-11c0-1.11-0.89-2-2-2zM12 4h-4v-2h4v2z"></path>
907
+ </symbol>
908
+ <symbol id="frm_work_icon" viewBox="0 0 20 20">
909
+ <title>work</title>
910
+ <path d="M12 4v-2h-4v2h4zM2 6v11h16v-11h-16zM18 4c1.11 0 2 0.89 2 2v11c0 1.11-0.89 2-2 2h-16c-1.11 0-2-0.89-2-2l0.010-11c0-1.11 0.88-2 1.99-2h4v-2c0-1.11 0.89-2 2-2h4c1.11 0 2 0.89 2 2v2h4z"></path>
911
+ </symbol>
912
+ <symbol id="frm_white_label_icon" viewBox="0 0 20 20">
913
+ <title>white_label</title>
914
+ <path d="M18.125 1.25h-16.25c-1.036 0-1.875 0.839-1.875 1.875v13.75c0 1.036 0.839 1.875 1.875 1.875h16.25c1.036 0 1.875-0.839 1.875-1.875v-13.75c0-1.036-0.839-1.875-1.875-1.875zM17.891 16.875h-15.781c-0.129 0-0.234-0.105-0.234-0.234v0-13.281c0-0.129 0.105-0.234 0.234-0.234v0h15.781c0.129 0 0.234 0.105 0.234 0.234v0 13.281c0 0.129-0.105 0.234-0.234 0.234v0zM16.25 13.281v0.938c0 0.259-0.21 0.469-0.469 0.469h-7.813c-0.259 0-0.469-0.21-0.469-0.469v-0.938c0-0.259 0.21-0.469 0.469-0.469h7.813c0.259 0 0.469 0.21 0.469 0.469zM16.25 9.531v0.938c0 0.259-0.21 0.469-0.469 0.469h-7.813c-0.259 0-0.469-0.21-0.469-0.469v-0.938c0-0.259 0.21-0.469 0.469-0.469h7.813c0.259 0 0.469 0.21 0.469 0.469zM16.25 5.781v0.938c0 0.259-0.21 0.469-0.469 0.469h-7.813c-0.259 0-0.469-0.21-0.469-0.469v-0.938c0-0.259 0.21-0.469 0.469-0.469h7.813c0.259 0 0.469 0.21 0.469 0.469zM6.406 6.25c0 0.777-0.63 1.406-1.406 1.406s-1.406-0.63-1.406-1.406 0.63-1.406 1.406-1.406 1.406 0.63 1.406 1.406zM6.406 10c0 0.777-0.63 1.406-1.406 1.406s-1.406-0.63-1.406-1.406 0.63-1.406 1.406-1.406 1.406 0.63 1.406 1.406zM6.406 13.75c0 0.777-0.63 1.406-1.406 1.406s-1.406-0.63-1.406-1.406 0.63-1.406 1.406-1.406 1.406 0.63 1.406 1.406z"></path>
915
+ </symbol>
916
+ <symbol id="frm_zoom_out_icon" viewBox="0 0 20 20">
917
+ <title>zoom_out</title>
918
+ <path d="M12.833 1.5l2.172 2.172-2.729 2.711 1.341 1.341 2.711-2.729 2.172 2.172v-5.667h-5.667zM1.5 7.167l2.172-2.172 2.711 2.729 1.341-1.341-2.729-2.711 2.172-2.172h-5.667v5.667zM7.167 18.5l-2.172-2.172 2.729-2.711-1.341-1.341-2.711 2.729-2.172-2.172v5.667h5.667zM18.5 12.833l-2.172 2.172-2.711-2.729-1.341 1.341 2.729 2.711-2.172 2.172h5.667v-5.667z"></path>
919
+ </symbol>
920
+ <symbol id="frm_maximize_icon" viewBox="0 0 20 20">
921
+ <title>maximize</title>
922
+ <path d="M16.257 2.4l-5.028 5.028c-0.371 0.371-0.371 0.973 0 1.343s0.973 0.371 1.343 0l5.028-5.028v3.407c0 0.524 0.426 0.95 0.95 0.95s0.95-0.426 0.95-0.95v-5.7c0-0.003 0-0.005 0-0.008-0.001-0.125-0.027-0.245-0.071-0.355-0.096-0.233-0.282-0.419-0.516-0.516-0.109-0.045-0.229-0.070-0.354-0.071-0.003 0-0.006 0-0.009 0h-5.7c-0.524 0-0.95 0.426-0.95 0.95s0.426 0.95 0.95 0.95zM3.743 17.6l5.028-5.028c0.371-0.371 0.371-0.973 0-1.343s-0.973-0.371-1.343 0l-5.028 5.028v-3.407c0-0.524-0.426-0.95-0.95-0.95s-0.95 0.426-0.95 0.95v5.7c0 0.003 0 0.006 0 0.009 0.001 0.125 0.027 0.245 0.071 0.354 0.096 0.233 0.282 0.419 0.516 0.516 0.109 0.045 0.23 0.070 0.355 0.071 0.003 0 0.005 0 0.008 0h5.7c0.524 0 0.95-0.426 0.95-0.95s-0.426-0.95-0.95-0.95z"></path>
923
+ </symbol>
924
+ <symbol id="frm_minimize_icon" viewBox="0 0 20 20">
925
+ <title>minimize</title>
926
+ <path d="M14.193 7.15l5.028-5.028c0.371-0.371 0.371-0.973 0-1.343s-0.973-0.371-1.343 0l-5.028 5.028v-3.407c0-0.524-0.426-0.95-0.95-0.95s-0.95 0.426-0.95 0.95v5.7c0 0.129 0.026 0.252 0.072 0.364s0.116 0.216 0.2 0.302c0.004 0.004 0.008 0.008 0.011 0.011 0.086 0.085 0.188 0.153 0.302 0.2 0.112 0.047 0.235 0.072 0.364 0.072h5.7c0.524 0 0.95-0.426 0.95-0.95s-0.426-0.95-0.95-0.95zM2.122 19.221l5.028-5.028v3.407c0 0.524 0.426 0.95 0.95 0.95s0.95-0.426 0.95-0.95v-5.7c0-0.129-0.026-0.252-0.072-0.364s-0.116-0.216-0.2-0.302c-0.004-0.004-0.008-0.008-0.011-0.011-0.086-0.085-0.188-0.153-0.302-0.2-0.112-0.047-0.235-0.072-0.364-0.072h-5.7c-0.524 0-0.95 0.426-0.95 0.95s0.426 0.95 0.95 0.95h3.407l-5.028 5.028c-0.371 0.371-0.371 0.973 0 1.343s0.973 0.371 1.343 0z"></path>
927
+ </symbol>
928
+ <symbol id="frm_authorize_icon" viewBox="0 0 20 20">
929
+ <title>authorize</title>
930
+ <path d="M19.889 17.328c0 1.476-1.196 2.672-2.672 2.672h-14.434c-1.476-0-2.672-1.196-2.672-2.672v-14.656c0-1.476 1.196-2.672 2.672-2.672h14.434c1.476 0 2.672 1.196 2.672 2.672v14.656zM13.296 14.936c0.298 0.709 0.448 1.227 0.448 1.555 0 0.246-0.106 0.455-0.319 0.627s-0.621 0.272-1.225 0.302v0.414h5.986v-0.414c-0.619-0.037-1.102-0.207-1.449-0.509s-0.733-0.96-1.158-1.975l-5.281-12.622h-0.392l-5.337 12.487c-0.463 1.097-0.884 1.824-1.264 2.182-0.187 0.179-0.597 0.325-1.231 0.436v0.414h4.778v-0.414c-0.731-0.052-1.207-0.166-1.427-0.341s-0.33-0.378-0.33-0.61c0-0.291 0.127-0.731 0.38-1.32l1.029-2.395h5.874l0.918 2.182zM6.851 11.926l2.641-6.132 2.574 6.132h-5.214z"></path>
931
+ </symbol>
932
+ <symbol id="frm_activecampaign_icon" viewBox="0 0 15 20">
933
+ <title>activecampaign</title>
934
+ <path d="M13.82 11.317c0.544-0.37 0.725-0.823 0.725-1.235v-0.206c0-0.453-0.272-0.823-0.725-1.111-0.362-0.247-13.82-8.765-13.82-8.765v1.811c0 0.617 0.363 0.823 0.861 1.152 0.68 0.453 11.192 7.078 11.192 7.078s-10.648 6.708-11.283 7.078c-0.68 0.412-0.725 0.658-0.725 1.193v1.687c-0.091 0.041 13.14-8.272 13.774-8.683z"></path>
935
+ <path d="M0 6.045v1.196c0 0 4.085 2.551 4.884 3.029 0.666 0.399 1.243 0.359 1.909-0.080 0.444-0.279 0.844-0.518 0.844-0.518s-5.949-3.707-6.571-4.065c-0.488-0.319-1.066-0.12-1.066 0.438z"></path>
936
+ </symbol>
937
+ <symbol id="frm_aweber_icon" viewBox="0 0 20 20">
938
+ <title>aweber</title>
939
+ <path d="M19.892 10.040c0 1.978 0.066 3.958-0.019 5.932-0.081 1.865-1.973 3.797-3.834 3.892-2.246 0.115-4.5 0.084-6.75 0.088-0.164 0-0.405-0.187-0.481-0.348-0.85-1.814-1.412-3.717-1.752-5.691-0.346-2.012-0.387-4.040-0.283-6.065 0.13-2.549 0.671-5.021 1.658-7.388 0.138-0.332 0.325-0.462 0.689-0.46 1.996 0.015 3.992-0.008 5.988 0.011 2.326 0.023 4.157 1.42 4.7 3.594 0.126 0.506 0.152 1.046 0.158 1.571 0.019 1.62 0.007 3.241 0.007 4.862-0.027 0-0.054 0-0.081 0zM7.873 10.033c0.044 0.577 0.082 1.154 0.135 1.73 0.236 2.556 1.292 4.776 2.809 6.802 0.314 0.419 0.748 0.476 1.177 0.218 0.587-0.352 0.629-0.758 0.117-1.45-2.386-3.216-2.924-6.782-1.98-10.611 0.377-1.527 1.18-2.854 2.11-4.11 0.407-0.549 0.298-1.004-0.275-1.308-0.475-0.251-0.855-0.13-1.262 0.414-1.845 2.463-2.85 5.209-2.83 8.315zM12.163 9.814c0.050 0.575 0.068 1.156 0.156 1.725 0.242 1.565 0.906 2.953 1.858 4.206 0.329 0.433 0.81 0.416 1.113-0.001 0.236-0.326 0.045-0.574-0.142-0.825-1.612-2.163-1.997-4.576-1.431-7.169 0.248-1.135 0.836-2.112 1.505-3.047 0.325-0.453 0.174-0.942-0.34-0.989-0.242-0.022-0.596 0.157-0.749 0.359-1.286 1.69-1.993 3.587-1.97 5.741z"></path>
940
+ <path d="M4.832 0c-2.175 6.743-2.118 13.328 0.3 20-0.559-0.068-1.067-0.075-1.544-0.198-2.156-0.556-3.553-2.362-3.569-4.664-0.025-3.41-0.023-6.82-0.001-10.23 0.016-2.382 1.452-4.216 3.666-4.745 0.355-0.085 0.727-0.105 1.148-0.163z"></path>
941
+ </symbol>
942
+ <symbol id="frm_campaignmonitor_icon" viewBox="0 0 20 20">
943
+ <title>campaignmonitor</title>
944
+ <path d="M19.863 3.558c-0.242-0.344-0.717-0.429-1.061-0.188l-18.667 13.072c0.139 0.196 0.364 0.325 0.623 0.325h18.483c0.419 0 0.758-0.342 0.758-0.762v-12.022c-0.003-0.147-0.048-0.293-0.137-0.425zM1.197 3.37c-0.344-0.242-0.818-0.158-1.060 0.188-0.089 0.128-0.135 0.277-0.137 0.425v12.042l8.887-7.28-7.689-5.377z"></path>
945
+ </symbol>
946
+ <symbol id="frm_constant_contact_icon" viewBox="0 0 29 20">
947
+ <title>constant_contact</title>
948
+ <path d="M13.819 10.208c1.667-0.417 3.403-0.764 5.139-0.903 0.347-1.319 0.764-2.569 1.181-3.819h-0.139c-1.667 0.347-3.264 0.764-4.861 1.25-0.486 1.181-0.972 2.292-1.319 3.472zM9.583 8.472c0.486-1.042 1.111-2.083 1.736-3.125-0.972 0.556-1.875 1.111-2.778 1.736-0.694 1.042-1.319 2.083-1.944 3.125 0.972-0.556 1.944-1.181 2.986-1.736z"></path>
949
+ <path d="M13.125 10.417c0.347-1.111 0.764-2.292 1.25-3.333-1.458 0.556-2.917 1.181-4.306 1.875-0.486 0.972-0.903 2.014-1.25 2.986 1.319-0.556 2.778-1.111 4.306-1.528z"></path>
950
+ <path d="M19.931 4.861c0.208 0 0.347-0.069 0.486-0.069 0.556-1.319 1.111-2.569 1.806-3.819-1.597 0.417-3.194 0.903-4.792 1.458-0.694 1.181-1.389 2.361-1.944 3.542 1.458-0.417 2.917-0.833 4.444-1.111zM3.889 14.653c0.278-0.833 0.625-1.667 1.042-2.5-0.625 0.486-1.25 0.972-1.875 1.528-0.556 0.903-1.042 1.806-1.528 2.778 0.764-0.625 1.528-1.25 2.361-1.806z"></path>
951
+ <path d="M7.986 12.361c0.347-0.972 0.764-1.944 1.181-2.917-1.111 0.625-2.153 1.25-3.194 2.014-0.417 0.833-0.833 1.736-1.181 2.639 0.972-0.625 2.083-1.25 3.194-1.736z"></path>
952
+ <path d="M19.583 9.236c1.944-0.139 3.889-0.208 5.694 0 0.417-1.528 0.903-2.986 1.389-4.306-0.069 0-0.139 0-0.278 0-1.806 0-3.681 0.139-5.556 0.486-0.486 1.181-0.903 2.5-1.25 3.819z"></path>
953
+ <path d="M26.458 4.236c0.139 0 0.347 0 0.486 0 0.556-1.458 1.25-2.847 2.014-4.236-1.389 0.069-3.403 0.208-5.903 0.764-0.694 1.25-1.319 2.569-1.875 3.889 1.736-0.278 3.472-0.417 5.278-0.417zM12.708 14.444c0.694-0.139 1.389-0.208 2.153-0.278 1.111-0.139 2.153-0.208 3.264-0.208 0.139-1.25 0.347-2.639 0.694-3.958-1.736 0.208-3.472 0.486-5.208 0.972-0.347 1.111-0.625 2.292-0.903 3.472z"></path>
954
+ <path d="M2.847 17.986c0.208-0.764 0.417-1.528 0.694-2.361-0.903 0.694-1.806 1.389-2.708 2.153-0.278 0.694-0.625 1.389-0.833 2.153 0.903-0.694 1.875-1.319 2.847-1.944z"></path>
955
+ <path d="M12.083 14.514c0.208-1.181 0.486-2.292 0.833-3.403-1.528 0.417-2.986 0.972-4.444 1.667-0.347 0.972-0.625 1.944-0.833 2.986 1.458-0.486 2.917-0.903 4.444-1.25z"></path>
956
+ </symbol>
957
+ <symbol id="frm_getresponse_icon" viewBox="0 0 25 20">
958
+ <title>getresponse</title>
959
+ <path d="M12.5 14.542c-2.322-0.021-4.458-0.802-6.174-2.106l0.026 0.019c-2.010-1.525-3.424-3.746-3.881-6.299l-0.009-0.061c-0.028-0.167-0.056-0.334-0.075-0.475-0.008-0.051-0.013-0.109-0.013-0.169 0-0.628 0.509-1.138 1.138-1.138 0.002 0 0.004 0 0.007 0h0.528c0.422 1.998 1.493 3.697 2.978 4.907l0.016 0.012c1.473 1.182 3.359 1.904 5.412 1.925l0.005 0c4.737 0.101 9.346-4.104 12.293-8.706 0.033 0.040 0.065 0.085 0.093 0.132l0.003 0.005c-0.187-0.323-0.53-0.537-0.924-0.539h-22.853c-0.591 0-1.069 0.479-1.069 1.069v0 13.764c0 0.591 0.479 1.069 1.069 1.069v0h22.862c0.591 0 1.069-0.479 1.069-1.069v0-11.805c-3.879 6.82-8.338 9.453-12.5 9.465z"></path>
960
+ <path d="M24.953 2.81c0 0.034 0.021 0.068 0.028 0.103-0.006-0.034-0.019-0.068-0.028-0.103z"></path>
961
+ <path d="M24.867 2.605c0.021 0.036 0.042 0.079 0.060 0.123l0.002 0.007c-0.020-0.051-0.041-0.094-0.065-0.136l0.003 0.005z"></path>
962
+ </symbol>
963
+ <symbol id="frm_googlesheets_icon" viewBox="0 0 15 20">
964
+ <title>googlesheets</title>
965
+ <path d="M3.125 9.375v6.875c0 0.345 0.28 0.625 0.625 0.625h7.5c0.345 0 0.625-0.28 0.625-0.625v-6.875c0-0.345-0.28-0.625-0.625-0.625h-7.5c-0.345 0-0.625 0.28-0.625 0.625zM8.125 10.625h2.5v1.875h-2.5v-1.875zM8.125 13.75h2.5v1.875h-2.5v-1.875zM4.375 10.625h2.5v1.875h-2.5v-1.875zM4.375 13.75h2.5v1.875h-2.5v-1.875zM14.446 3.827l-3.277-3.277c-0.352-0.352-0.828-0.551-1.324-0.551h-7.971c-1.035 0.004-1.875 0.844-1.875 1.879v16.247c0 1.035 0.84 1.875 1.875 1.875h11.248c1.035 0 1.878-0.84 1.878-1.875v-12.97c0-0.496-0.202-0.976-0.554-1.328zM9.998 2.031l2.972 2.972h-2.972v-2.972zM13.125 18.125h-11.25v-16.247h6.249v4.062c0 0.52 0.418 0.937 0.938 0.937h4.064v11.248z"></path>
966
+ </symbol>
967
+ <symbol id="frm_building_icon" viewBox="0 0 18 20">
968
+ <title>building</title>
969
+ <path d="M5 5.781v-1.563c0-0.258 0.211-0.469 0.469-0.469h1.563c0.258 0 0.469 0.211 0.469 0.469v1.563c0 0.258-0.211 0.469-0.469 0.469h-1.563c-0.258 0-0.469-0.211-0.469-0.469zM10.469 6.25h1.563c0.258 0 0.469-0.211 0.469-0.469v-1.563c0-0.258-0.211-0.469-0.469-0.469h-1.563c-0.258 0-0.469 0.211-0.469 0.469v1.563c0 0.258 0.211 0.469 0.469 0.469zM5.469 10h1.563c0.258 0 0.469-0.211 0.469-0.469v-1.563c0-0.258-0.211-0.469-0.469-0.469h-1.563c-0.258 0-0.469 0.211-0.469 0.469v1.563c0 0.258 0.211 0.469 0.469 0.469zM10.469 10h1.563c0.258 0 0.469-0.211 0.469-0.469v-1.563c0-0.258-0.211-0.469-0.469-0.469h-1.563c-0.258 0-0.469 0.211-0.469 0.469v1.563c0 0.258 0.211 0.469 0.469 0.469zM7.5 13.281v-1.563c0-0.258-0.211-0.469-0.469-0.469h-1.563c-0.258 0-0.469 0.211-0.469 0.469v1.563c0 0.258 0.211 0.469 0.469 0.469h1.563c0.258 0 0.469-0.211 0.469-0.469zM10.469 13.75h1.563c0.258 0 0.469-0.211 0.469-0.469v-1.563c0-0.258-0.211-0.469-0.469-0.469h-1.563c-0.258 0-0.469 0.211-0.469 0.469v1.563c0 0.258 0.211 0.469 0.469 0.469zM17.5 18.594v1.406h-17.5v-1.406c0-0.258 0.211-0.469 0.469-0.469h0.762v-17.188c0-0.52 0.418-0.938 0.938-0.938h13.164c0.52 0 0.938 0.418 0.938 0.938v17.188h0.762c0.258 0 0.469 0.211 0.469 0.469zM3.105 18.086h4.395v-2.617c0-0.258 0.211-0.469 0.469-0.469h1.563c0.258 0 0.469 0.211 0.469 0.469v2.617h4.395v-16.172l-11.27-0.039-0.020 16.211z"></path>
970
+ </symbol>
971
+ <symbol id="frm_hubspot_icon" viewBox="0 0 20 20">
972
+ <title>hubspot</title>
973
+ <path d="M10.443 8.266c-0.98 0.926-1.594 2.238-1.594 3.695 0 1.145 0.379 2.199 1.016 3.047l-1.934 1.945c-0.172-0.063-0.355-0.098-0.547-0.098-0.422 0-0.816 0.164-1.113 0.461s-0.461 0.695-0.461 1.117 0.164 0.816 0.461 1.113c0.297 0.297 0.695 0.453 1.113 0.453 0.422 0 0.816-0.152 1.117-0.453 0.297-0.297 0.461-0.695 0.461-1.113 0-0.164-0.023-0.32-0.074-0.473l1.953-1.961c0.859 0.66 1.93 1.051 3.098 1.051 2.809 0 5.078-2.277 5.078-5.086 0-2.547-1.863-4.656-4.305-5.027v-2.406c0.684-0.289 1.102-0.93 1.102-1.676 0-1.020-0.816-1.871-1.836-1.871s-1.824 0.852-1.824 1.871c0 0.746 0.418 1.387 1.102 1.676v2.391c-0.594 0.082-1.156 0.262-1.668 0.531-1.078-0.816-4.59-3.348-6.598-4.875 0.047-0.172 0.078-0.352 0.078-0.539 0-1.125-0.918-2.039-2.047-2.039-1.125 0-2.039 0.914-2.039 2.039 0 1.129 0.914 2.043 2.039 2.043 0.383 0 0.738-0.113 1.047-0.297l6.375 4.48zM13.939 14.656c-1.488 0-2.695-1.207-2.695-2.695s1.207-2.695 2.695-2.695 2.695 1.207 2.695 2.695-1.207 2.695-2.695 2.695z"></path>
974
+ </symbol>
975
+ <symbol id="frm_icontact_icon" viewBox="0 0 10 20">
976
+ <title>icontact</title>
977
+ <path d="M5.897 20.002c-0.201-0.021-0.402-0.040-0.602-0.065-0.055-0.010-0.104-0.028-0.148-0.053l0.003 0.001c-0.082-0.033-0.138-0.111-0.138-0.202 0-0.009 0.001-0.017 0.002-0.026l-0 0.001c0.015-0.173 0.040-0.346 0.062-0.519q0.096-0.731 0.192-1.463 0.096-0.724 0.192-1.449c0.064-0.485 0.126-0.971 0.19-1.456s0.128-0.966 0.192-1.449q0.088-0.662 0.174-1.323 0.089-0.68 0.179-1.358c0.040-0.308 0.085-0.616 0.118-0.925 0.012-0.167 0.114-0.308 0.257-0.375l0.003-0.001c0.168-0.084 0.363-0.146 0.569-0.174l0.010-0.001c0.331-0.058 0.711-0.091 1.099-0.091 0.079 0 0.157 0.001 0.235 0.004l-0.011-0c0.185 0.010 0.358 0.038 0.525 0.083l-0.018-0.004c0.186 0.047 0.244 0.155 0.219 0.346-0.077 0.586-0.156 1.171-0.233 1.757-0.083 0.63-0.164 1.261-0.247 1.891q-0.14 1.043-0.277 2.086c-0.078 0.59-0.154 1.181-0.233 1.771q-0.124 0.939-0.249 1.877c-0.021 0.161-0.047 0.322-0.061 0.483-0.017 0.17-0.097 0.301-0.254 0.362-0.141 0.060-0.308 0.112-0.48 0.147l-0.017 0.003c-0.366 0.064-0.798 0.109-1.238 0.123l-0.015 0z"></path>
978
+ <path d="M0 6.926c0.019-1.15 0.293-2.232 0.768-3.197l-0.020 0.044c0.727-1.505 1.831-2.665 3.256-3.528 0.093-0.056 0.186-0.112 0.282-0.16 0.104-0.054 0.228-0.085 0.359-0.085 0.42 0 0.764 0.324 0.797 0.736l0 0.003c0.025 0.337-0.114 0.599-0.407 0.765-0.938 0.53-1.729 1.223-2.344 2.11-0.458 0.647-0.795 1.413-0.961 2.241l-0.006 0.038c-0.063 0.303-0.099 0.651-0.099 1.008 0 0.023 0 0.047 0 0.070l-0-0.004c0.013 0.93 0.245 1.803 0.726 2.601 0.247 0.411 0.114 0.879-0.203 1.102-0.129 0.094-0.291 0.15-0.466 0.15-0.292 0-0.548-0.156-0.688-0.39l-0.002-0.004c-0.452-0.727-0.77-1.585-0.898-2.504l-0.004-0.034c-0.043-0.319-0.060-0.641-0.090-0.963z"></path>
979
+ <path d="M3.139 7.034c0.028-1.296 0.458-2.398 1.32-3.326 0.352-0.376 0.76-0.694 1.21-0.944l0.025-0.013c0.087-0.059 0.194-0.094 0.31-0.094 0.308 0 0.558 0.25 0.558 0.558 0 0.222-0.13 0.414-0.317 0.504l-0.003 0.001c-0.61 0.338-1.106 0.816-1.456 1.393l-0.010 0.017c-0.323 0.531-0.514 1.173-0.514 1.859 0 0.689 0.192 1.333 0.526 1.881l-0.009-0.016c0.053 0.084 0.085 0.187 0.085 0.297 0 0.203-0.107 0.38-0.268 0.479l-0.002 0.001c-0.081 0.050-0.18 0.080-0.286 0.080-0.205 0-0.384-0.112-0.479-0.278l-0.001-0.003c-0.346-0.559-0.58-1.223-0.653-1.934l-0.002-0.020c-0.017-0.156-0.024-0.314-0.033-0.444z"></path>
980
+ <path d="M8.877 5.438c0.090 0.010 0.267 0.018 0.439 0.051 0.392 0.076 0.611 0.302 0.645 0.698 0.009 0.086 0.014 0.185 0.014 0.286 0 0.403-0.083 0.788-0.232 1.137l0.007-0.019c-0.163 0.38-0.471 0.595-0.86 0.704-0.28 0.074-0.603 0.121-0.936 0.13l-0.006 0c-0.269 0.013-0.537 0.012-0.799-0.060-0.336-0.093-0.525-0.326-0.554-0.676-0.005-0.068-0.008-0.147-0.008-0.227 0-0.362 0.061-0.71 0.173-1.033l-0.007 0.022c0.144-0.447 0.454-0.727 0.898-0.863 0.371-0.114 0.754-0.137 1.225-0.151z"></path>
981
+ </symbol>
982
+ <symbol id="frm_mailpoet_icon" viewBox="0 0 20 20">
983
+ <title>mailpoet</title>
984
+ <path d="M5.105 11.395c0.448 0 0.754-0.102 0.921-0.294 0.159-0.179 0.256-0.417 0.256-0.677 0-0.005-0-0.010-0-0.014v0.001-5.843l2.174 5.767c0.099 0.276 0.262 0.509 0.471 0.689l0.002 0.002c0.205 0.166 0.511 0.256 0.921 0.256 0.005 0 0.012 0 0.018 0 0.269 0 0.523-0.066 0.745-0.183l-0.009 0.004c0.241-0.14 0.419-0.364 0.497-0.632l0.002-0.008 2.314-6.393v6.291c-0.001 0.018-0.002 0.040-0.002 0.061 0 0.276 0.102 0.528 0.271 0.72l-0.001-0.001c0.179 0.179 0.473 0.281 0.882 0.281 0.448 0 0.754-0.102 0.921-0.294 0.159-0.179 0.256-0.417 0.256-0.677 0-0.005-0-0.010-0-0.014v0.001-9.321c0.001-0.015 0.001-0.032 0.001-0.050 0-0.329-0.166-0.62-0.42-0.792l-0.003-0.002c-0.268-0.179-0.639-0.268-1.1-0.268-0.031-0.001-0.067-0.002-0.104-0.002-0.4 0-0.778 0.095-1.112 0.264l0.014-0.006c-0.315 0.197-0.548 0.5-0.65 0.859l-0.003 0.010-2.506 7.454-2.621-7.505c-0.108-0.326-0.309-0.597-0.571-0.79l-0.004-0.003c-0.268-0.192-0.639-0.281-1.125-0.281-0.031-0.002-0.067-0.003-0.103-0.003-0.38 0-0.737 0.101-1.045 0.276l0.010-0.005c-0.294 0.192-0.448 0.499-0.448 0.921v9.142c0 0.358 0.089 0.614 0.256 0.793 0.192 0.179 0.473 0.268 0.895 0.268z"></path>
985
+ <path d="M19.334 14.911l-0.307-0.243c-0.158-0.123-0.359-0.197-0.578-0.197-0.24 0-0.459 0.089-0.625 0.236l0.001-0.001c-0.429 0.362-0.987 0.584-1.597 0.588h-2.737c-0.002 0-0.003 0-0.005 0-1.312 0-2.499 0.533-3.357 1.394l-0 0-0.141 0.153-0.141-0.141c-0.861-0.86-2.050-1.393-3.363-1.394h-2.749c-0.606-0.007-1.16-0.228-1.589-0.591l0.004 0.003c-0.164-0.149-0.383-0.24-0.624-0.24-0.219 0-0.421 0.076-0.58 0.203l0.002-0.001-0.307 0.243c-0.209 0.167-0.345 0.418-0.358 0.701l-0 0.002c-0.001 0.013-0.001 0.029-0.001 0.045 0 0.272 0.119 0.516 0.307 0.683l0.001 0.001c0.831 0.747 1.934 1.206 3.144 1.215l0.002 0h2.762c0 0 0.001 0 0.001 0 1.147 0 2.114 0.771 2.411 1.824l0.004 0.018v0.026c0.013 0.089 0.153 0.563 1.087 0.563s1.074-0.473 1.087-0.563v-0.026c0.301-1.070 1.268-1.841 2.415-1.841 0 0 0.001 0 0.001 0h2.762c1.211-0.009 2.314-0.468 3.15-1.219l-0.004 0.004c0.189-0.174 0.307-0.423 0.307-0.699 0-0.010-0-0.021-0.001-0.031l0 0.002c-0.023-0.292-0.167-0.546-0.381-0.714l-0.002-0.002z"></path>
986
+ </symbol>
987
+ <symbol id="frm_paypal_icon" viewBox="0 0 20 20">
988
+ <title>paypal</title>
989
+ <path d="M17.2 2.554c0.502 0.246 0.939 0.595 1.26 1.025 0.675 0.904 0.864 2.136 0.563 3.662-0.304 1.543-0.985 2.846-1.976 3.79-0.181 0.189-0.375 0.366-0.582 0.529-1.062 0.836-2.402 1.278-3.877 1.278h-4.689l-1.261 5.913h-2.587l0.197-0.904h0.901l1.261-5.913h3.677c3.521 0 6.464-2.169 7.251-5.858 0.893-4.177-2.102-6.075-4.676-6.075h-8.775l-3.888 17.846h2.969l-0.469 2.154h5.15l1.261-5.913h3.677c3.521 0 6.464-2.169 7.251-5.858 0.658-3.080-0.797-4.921-2.639-5.675zM8.249 3.634h2.522c1.262 0 2.102 1.085 1.734 2.441-0.315 1.356-1.629 2.441-2.942 2.441h-2.417l1.103-4.882z"></path>
990
+ </symbol>
991
+ <symbol id="frm_sendinblue_icon" viewBox="0 0 20 20">
992
+ <title>sendinblue</title>
993
+ <path d="M5.826 15.438v-11.797h11.962c-1.844-2.231-4.612-3.641-7.71-3.641-0.003 0-0.007 0-0.010 0h0.001c-0.084 0-0.165 0-0.251 0h-9.818v10.050h0.057c0.032 5.5 4.498 9.946 10.003 9.946 3.5 0 6.58-1.797 8.367-4.52l0.023-0.038z"></path>
994
+ <path d="M7.574 6.25l6.931 2.926 5.084-2.070c-0.201-0.663-0.437-1.232-0.722-1.771l0.026 0.054h-11.32z"></path>
995
+ <path d="M14.516 11.117l-6.943-2.932v5.505h11.732c0.448-1.092 0.708-2.359 0.708-3.686 0-0.001 0-0.002 0-0.003v0c-0-0.389-0.023-0.772-0.067-1.149l0.004 0.046z"></path>
996
+ </symbol>
997
+ <symbol id="frm_sendy_icon" viewBox="0 0 20 20">
998
+ <title>sendy</title>
999
+ <path d="M9.998 20c-5.524 0-10.002-4.478-10.002-10.002s4.478-10.002 10.002-10.002c5.524 0 10.002 4.478 10.002 10.002 0 0.001 0 0.002 0 0.003v-0c-0.006 5.521-4.481 9.995-10.001 9.998h-0zM9.998 1.331c-4.789 0-8.671 3.882-8.671 8.671s3.882 8.671 8.671 8.671c4.789 0 8.671-3.882 8.671-8.671v0c-0.006-4.787-3.884-8.665-8.67-8.671h-0.001z"></path>
1000
+ <path d="M8.223 9.567l-4.065-3.72v7.437l4.065-3.717z"></path>
1001
+ <path d="M12.039 9.567l4.065-3.72v7.437l-4.065-3.717z"></path>
1002
+ <path d="M11.050 9.547h-1.855l-4.642 4.646h11.14l-4.642-4.646z"></path>
1003
+ </symbol>
1004
+ <symbol id="frm_salesforce_icon" viewBox="0 0 20 20">
1005
+ <title>salesforce</title>
1006
+ <path d="M8.338 4.513c0.625-0.663 1.537-1.088 2.538-1.088 1.3 0 2.462 0.75 3.074 1.837 0.525-0.25 1.125-0.375 1.751-0.375 2.374 0 4.299 1.95 4.299 4.35s-1.926 4.35-4.313 4.35c-0.288 0-0.574-0.037-0.85-0.087-0.537 0.975-1.563 1.625-2.75 1.625-0.5 0-0.963-0.125-1.375-0.313-0.549 1.288-1.824 2.187-3.313 2.187-1.549 0-2.875-0.974-3.375-2.349-0.225 0.051-0.45 0.063-0.688 0.063-1.837 0-3.337-1.5-3.337-3.375 0-1.25 0.676-2.338 1.675-2.925-0.212-0.475-0.325-1-0.325-1.538 0-2.15 1.75-3.874 3.875-3.874 1.275 0 2.375 0.587 3.1 1.5z"></path>
1007
+ </symbol>
1008
+ <symbol id="frm_salesforcealt_icon" viewBox="0 0 25 20">
1009
+ <title>salesforcealt</title>
1010
+ <path d="M9.722 9.595h-1.029c0.027-0.202 0.13-0.552 0.533-0.552 0.264 0 0.468 0.149 0.496 0.552zM15.061 9.053c-0.018 0-0.551-0.069-0.551 0.781s0.532 0.781 0.551 0.781c0.508 0 0.551-0.529 0.551-0.781 0-0.85-0.534-0.781-0.551-0.781zM5.56 9.981c-0.079 0.062-0.129 0.158-0.129 0.265 0 0.007 0 0.014 0.001 0.020l-0-0.001c0 0.187 0.081 0.236 0.129 0.275 0.184 0.145 0.589 0.083 0.818 0.037v-0.662c-0.208-0.042-0.654-0.077-0.818 0.064zM25 9.063c0 3.421-3.125 6.031-6.459 5.329-0.718 1.289-2.763 2.764-5.164 1.626-1.608 3.752-6.949 3.601-8.352-0.202-4.677 0.933-6.985-5.405-2.94-7.784-1.357-3.103 0.884-6.782 4.465-6.782 1.564 0.001 2.955 0.742 3.842 1.891l0.008 0.011c0.809-0.836 1.93-1.36 3.17-1.36 1.654 0 3.086 0.919 3.859 2.288 3.626-1.589 7.571 1.103 7.571 4.982zM4.705 10.305c0-0.459-0.457-0.593-0.698-0.671-0.206-0.082-0.524-0.137-0.524-0.349 0-0.37 0.664-0.26 0.983-0.083 0 0 0.046 0.028 0.064-0.018 0.009-0.027 0.092-0.257 0.101-0.285 0.001-0.004 0.002-0.009 0.002-0.013 0-0.019-0.012-0.035-0.029-0.042l-0-0c-0.482-0.298-1.59-0.332-1.59 0.496 0 0.487 0.449 0.603 0.698 0.671 0.184 0.062 0.514 0.117 0.514 0.34 0 0.156-0.138 0.276-0.358 0.276-0.28-0-0.538-0.094-0.745-0.25l0.003 0.002c-0.018-0.009-0.055-0.028-0.064 0.028l-0.094 0.292c-0.018 0.037 0.009 0.046 0.009 0.055 0.068 0.055 0.402 0.257 0.891 0.257 0.514 0 0.836-0.276 0.836-0.707zM5.955 8.641c-0.396 0-0.729 0.124-0.836 0.202-0.010 0.007-0.017 0.019-0.017 0.032 0 0.009 0.003 0.017 0.008 0.023l-0-0 0.101 0.276c0.005 0.016 0.020 0.028 0.038 0.028 0.003 0 0.006-0 0.009-0.001l-0 0c0.025 0 0.266-0.156 0.661-0.156 0.156 0 0.276 0.028 0.359 0.092 0.141 0.109 0.12 0.324 0.12 0.413-0.187-0.012-0.746-0.134-1.149 0.147-0.174 0.121-0.287 0.32-0.287 0.545 0 0.008 0 0.016 0 0.024l-0-0.001c0 0.23 0.059 0.406 0.257 0.561 0.478 0.319 1.417 0.078 1.488 0.055 0.062-0.013 0.138-0.026 0.138-0.073v-1.323c0.002-0.18 0.012-0.845-0.89-0.845zM7.773 7.822c0-0.001 0-0.002 0-0.003 0-0.024-0.019-0.043-0.043-0.043-0.001 0-0.002 0-0.003 0h-0.383c-0.001-0-0.002-0-0.002-0-0.024 0-0.043 0.019-0.043 0.043 0 0.001 0 0.002 0 0.003v-0 3.086c-0 0.001-0 0.002-0 0.003 0 0.024 0.019 0.043 0.043 0.043 0.001 0 0.002-0 0.003-0h0.386c0.001 0 0.002 0 0.003 0 0.024 0 0.043-0.019 0.043-0.043 0-0.001-0-0.002-0-0.003v0zM9.951 8.952c-0.082-0.090-0.265-0.294-0.689-0.294-0.137 0-0.553 0.009-0.809 0.349-0.248 0.298-0.257 0.707-0.257 0.836 0 0.122 0.006 0.557 0.276 0.827 0.103 0.114 0.354 0.321 0.891 0.321 0.423 0 0.643-0.092 0.726-0.147 0.018-0.009 0.028-0.028 0.009-0.073l-0.092-0.267c-0.008-0.017-0.025-0.028-0.045-0.028-0.004 0-0.007 0-0.011 0.001l0-0c-0.101 0.037-0.248 0.11-0.597 0.11-0.68 0-0.658-0.576-0.662-0.652h1.452c0.022-0 0.041-0.016 0.046-0.036l0-0c-0.011 0 0.081-0.574-0.238-0.946zM11.384 11.010c0.514 0 0.836-0.276 0.836-0.707 0-0.459-0.457-0.593-0.698-0.671-0.162-0.065-0.524-0.132-0.524-0.349 0-0.147 0.129-0.248 0.331-0.248 0.239 0.005 0.463 0.065 0.661 0.169l-0.008-0.004s0.046 0.028 0.064-0.018c0.009-0.027 0.092-0.257 0.101-0.285 0.001-0.004 0.002-0.009 0.002-0.013 0-0.019-0.012-0.035-0.029-0.042l-0-0c-0.309-0.191-0.654-0.193-0.79-0.193-0.469 0-0.799 0.285-0.799 0.689 0 0.487 0.448 0.603 0.698 0.671 0.239 0.078 0.514 0.127 0.514 0.34 0 0.156-0.137 0.276-0.358 0.276-0.28-0.001-0.538-0.094-0.745-0.25l0.003 0.002c-0.007-0.006-0.016-0.009-0.025-0.009-0.021 0-0.038 0.016-0.039 0.037v0l-0.092 0.294c-0.018 0.037 0.009 0.046 0.009 0.055 0.067 0.055 0.404 0.257 0.89 0.257zM13.949 8.75c0-0.028-0.009-0.046-0.046-0.046h-0.459c0-0.005 0.037-0.349 0.175-0.487 0.163-0.162 0.459-0.064 0.469-0.064 0.046 0.018 0.055 0 0.064-0.018l0.111-0.304c0.027-0.037 0-0.046-0.009-0.055-0.199-0.078-0.678-0.112-0.955 0.166-0.214 0.214-0.273 0.544-0.313 0.763h-0.331c-0.024 0.002-0.044 0.022-0.046 0.046l-0 0-0.055 0.303c0 0.027 0.009 0.046 0.046 0.046h0.321c-0.332 1.871-0.342 1.961-0.404 2.169-0.042 0.141-0.129 0.27-0.23 0.303-0.004 0-0.152 0.066-0.377-0.009 0 0-0.037-0.018-0.055 0.028-0.009 0.028-0.101 0.266-0.111 0.294s0 0.055 0.018 0.055c0.2 0.078 0.508 0.069 0.698 0 0.245-0.089 0.38-0.308 0.45-0.505 0.107-0.301 0.11-0.382 0.459-2.334h0.478c0.025-0.002 0.044-0.022 0.046-0.046l0-0zM16.034 9.375c-0.022-0.066-0.199-0.707-0.983-0.707-0.596 0-0.898 0.391-0.983 0.707-0.039 0.117-0.124 0.547 0 0.919 0.004 0.012 0.172 0.708 0.983 0.708 0.584 0 0.895-0.375 0.983-0.708 0.125-0.375 0.039-0.802 0-0.919zM17.808 8.723c-0.195-0.064-0.649-0.074-0.864 0.211v-0.175c0-0.001 0-0.002 0-0.002 0-0.024-0.019-0.043-0.043-0.043-0.001 0-0.002 0-0.003 0h-0.367c-0.001-0-0.002-0-0.003-0-0.024 0-0.043 0.019-0.043 0.043 0 0.001 0 0.002 0 0.003v-0 2.159c-0 0.001-0 0.002-0 0.002 0 0.024 0.020 0.044 0.044 0.044 0.001 0 0.002-0 0.003-0h0.376c0.001 0 0.002 0 0.002 0 0.024 0 0.044-0.020 0.044-0.044 0-0.001-0-0.002-0-0.003v0-1.085c0-0.114 0.002-0.444 0.174-0.588 0.191-0.191 0.469-0.131 0.524-0.12 0.025-0 0.046-0.015 0.055-0.036l0-0c0.039-0.082 0.079-0.186 0.114-0.292l0.006-0.020c0.002-0.005 0.003-0.011 0.003-0.017 0-0.016-0.008-0.030-0.021-0.038l-0-0zM19.636 10.836l-0.083-0.285c-0.018-0.046-0.055-0.028-0.055-0.028-0.165 0.071-0.396 0.074-0.441 0.074-0.181 0-0.671-0.044-0.671-0.772 0-0.243 0.072-0.772 0.643-0.772 0.010-0 0.023-0 0.035-0 0.148 0 0.291 0.024 0.425 0.068l-0.010-0.003s0.037 0.018 0.046-0.028c0.037-0.101 0.064-0.175 0.101-0.294 0.009-0.037-0.018-0.046-0.028-0.046-0.453-0.151-0.873-0.099-1.084 0-0.062 0.029-0.634 0.254-0.634 1.075 0 0.113-0.023 1.176 1.13 1.176 0.218-0 0.426-0.041 0.618-0.115l-0.012 0.004c0.013-0.009 0.021-0.024 0.021-0.041 0-0.005-0.001-0.010-0.002-0.015l0 0zM21.741 9.292c-0.031-0.117-0.21-0.634-0.873-0.634-0.625 0-0.919 0.395-1.002 0.726-0.041 0.131-0.065 0.281-0.065 0.437 0 0.008 0 0.016 0 0.024l-0-0.001c0 1.011 0.736 1.148 1.167 1.148 0.423 0 0.643-0.092 0.726-0.147 0.018-0.009 0.028-0.028 0.009-0.073l-0.092-0.267c-0.008-0.017-0.025-0.028-0.045-0.028-0.004 0-0.007 0-0.011 0.001l0-0c-0.101 0.037-0.248 0.11-0.597 0.11-0.68 0-0.658-0.576-0.661-0.652h1.452c0.022-0.001 0.041-0.016 0.046-0.036l0-0c-0.009-0 0.037-0.276-0.055-0.607zM20.831 9.044c-0.404 0-0.508 0.352-0.533 0.552h1.030c-0.034-0.466-0.298-0.552-0.497-0.552z"></path>
1011
+ </symbol>
1012
+ <symbol id="frm_stripe_icon" viewBox="0 0 25 20">
1013
+ <title>stripe</title>
1014
+ <path d="M25 13.57c0 1.729-1.402 3.131-3.131 3.131h-18.739c-1.729 0-3.131-1.402-3.131-3.131v-7.14c0-1.729 1.402-3.131 3.131-3.131h18.739c1.729 0 3.131 1.402 3.131 3.131v7.14zM15.707 12.328c1.082 0.211 1.854-0.279 2.12-1.351 0.169-0.68 0.163-1.363-0.028-2.035-0.212-0.746-0.783-1.142-1.492-0.997-0.303 0.062-0.58 0.254-0.884 0.395-0.023-0.094-0.051-0.208-0.078-0.317-0.398 0-0.773 0-1.15 0 0 1.957 0 3.888 0 5.866 0.452-0.073 0.879-0.142 1.326-0.214 0-0.241 0-0.453 0-0.666 0-0.223 0-0.446 0-0.701 0.1 0.010 0.145 0.011 0.188 0.020zM15.515 9.477c-0.029-0.343 0.193-0.46 0.454-0.522 0.266-0.063 0.435 0.099 0.508 0.334 0.176 0.563 0.175 1.131-0.046 1.681-0.054 0.135-0.175 0.271-0.3 0.345-0.34 0.2-0.61 0.034-0.611-0.355-0.001-0.247-0-0.494-0-0.742s0.017-0.496-0.004-0.741zM19.644 10.573c0.362 0 0.73 0 1.098 0 0.367 0 0.734 0 1.123 0 0.036-0.579 0.036-1.102-0.159-1.608-0.175-0.453-0.471-0.793-0.941-0.952-1.057-0.357-2.095 0.174-2.384 1.253-0.1 0.374-0.137 0.78-0.117 1.167 0.038 0.736 0.252 1.418 1.001 1.744 0.763 0.332 1.539 0.264 2.294-0.054 0.079-0.033 0.17-0.163 0.166-0.242-0.013-0.243-0.071-0.483-0.115-0.749-1.295 0.495-2.052 0.201-1.967-0.559zM19.617 9.739c-0.035-0.533 0.159-0.894 0.478-0.908 0.331-0.015 0.516 0.307 0.501 0.908-0.341 0-0.661 0-0.979 0zM3.116 11.821c-0.005 0.096 0.091 0.248 0.18 0.289 0.544 0.248 1.124 0.326 1.714 0.246 0.73-0.1 1.149-0.515 1.237-1.179 0.086-0.649-0.206-1.115-0.894-1.417-0.226-0.099-0.469-0.168-0.68-0.292-0.117-0.069-0.183-0.224-0.273-0.34 0.136-0.070 0.28-0.209 0.408-0.197 0.361 0.036 0.716 0.134 1.089 0.211 0.048-0.296 0.098-0.603 0.151-0.925-0.578-0.278-1.173-0.363-1.783-0.257-0.661 0.115-1.047 0.518-1.111 1.096-0.075 0.679 0.158 1.078 0.821 1.386 0.234 0.109 0.492 0.175 0.708 0.311 0.13 0.082 0.201 0.259 0.298 0.394-0.145 0.080-0.301 0.241-0.434 0.224-0.429-0.054-0.849-0.173-1.312-0.275-0.038 0.218-0.104 0.47-0.117 0.726zM8.976 8.976c0.049-0.329 0.094-0.635 0.147-0.987-0.309 0-0.573 0-0.88 0 0-0.425 0-0.811 0-1.226-0.411 0.069-0.773 0.129-1.14 0.19-0.032 0.188-0.057 0.354-0.090 0.519-0.052 0.26-0.004 0.59-0.424 0.596-0.036 0-0.093 0.091-0.103 0.146-0.045 0.249-0.076 0.501-0.114 0.766 0.199 0.013 0.362 0.023 0.56 0.035 0 0.16-0.001 0.293 0 0.426 0.004 0.608-0.003 1.216 0.015 1.823 0.012 0.417 0.167 0.78 0.569 0.963 0.49 0.223 0.997 0.189 1.498 0.060 0-0.368 0-0.699 0-1.039-0.135 0.016-0.266 0.072-0.352 0.031-0.144-0.068-0.362-0.192-0.368-0.301-0.035-0.647-0.017-1.296-0.017-1.965 0.244-0.013 0.462-0.025 0.699-0.037zM11.877 8.195c0.010-0.225-0.119-0.307-0.287-0.248-0.28 0.098-0.542 0.249-0.815 0.378-0.012-0.045-0.044-0.174-0.076-0.3-0.387 0-0.773 0-1.149 0 0 1.438 0 2.849 0 4.256 0.448 0 0.87 0 1.324 0 0-0.817-0-1.614 0-2.41 0-0.448 0.127-0.596 0.573-0.659 0.122-0.017 0.246-0.015 0.427-0.024-0-0.346-0.010-0.67 0.003-0.993zM12.252 12.284c0.448 0 0.879 0 1.317 0 0-1.436 0-2.853 0-4.278-0.447 0-0.861 0-1.317 0 0 1.44 0 2.85 0 4.278zM12.916 7.536c0.391 0.002 0.706-0.308 0.71-0.699 0.004-0.401-0.33-0.737-0.723-0.726-0.388 0.011-0.69 0.329-0.687 0.723 0.003 0.4 0.303 0.701 0.701 0.702z"></path>
1015
+ </symbol>
1016
+ <symbol id="frm_stripealt_icon" viewBox="0 0 35 20">
1017
+ <title>stripealt</title>
1018
+ <path d="M2.329 8.515c0-0.349 0.349-0.524 0.815-0.524 0.699 0 1.631 0.233 2.33 0.641v-2.213c-0.757-0.291-1.572-0.466-2.33-0.466-1.864 0-3.145 0.99-3.145 2.679 0 2.562 3.494 2.097 3.494 3.261 0 0.408-0.349 0.582-0.874 0.582-0.757 0-1.747-0.349-2.504-0.757v2.213c0.874 0.349 1.689 0.524 2.504 0.524 1.922 0 3.203-0.932 3.203-2.621 0.058-2.795-3.494-2.271-3.494-3.32zM16.83 14.28h2.33v-8.153h-2.33v8.153zM8.91 4.205l-2.271 0.466v7.338c0 1.398 1.048 2.388 2.388 2.388 0.757 0 1.339-0.116 1.631-0.291v-1.864c-0.291 0.116-1.747 0.524-1.747-0.815v-3.32h1.747v-1.98h-1.747v-1.922zM13.802 6.826l-0.058-0.699h-2.097v8.153h2.33v-5.533c0.582-0.699 1.572-0.582 1.864-0.466v-2.155c-0.291-0.116-1.456-0.291-2.038 0.699zM16.83 5.487l2.33-0.466v-1.922l-2.33 0.466v1.922zM35 10.204c0-2.388-1.165-4.251-3.378-4.251s-3.552 1.864-3.552 4.251c0 2.795 1.572 4.193 3.844 4.193 1.107 0 1.922-0.233 2.562-0.641v-1.805c-0.641 0.349-1.339 0.524-2.271 0.524s-1.689-0.349-1.805-1.456h4.543c0.058-0.116 0.058-0.582 0.058-0.815zM30.399 9.33c0-1.048 0.641-1.456 1.223-1.456s1.165 0.408 1.165 1.456h-2.388zM24.285 5.952c-0.932 0-1.456 0.408-1.805 0.757l-0.058-0.582h-2.097v10.774l2.33-0.408v-2.621c0.349 0.233 0.815 0.582 1.631 0.582 1.689 0 3.203-1.339 3.203-4.31-0.058-2.679-1.572-4.193-3.203-4.193zM23.702 12.359c-0.524 0-0.874-0.175-1.107-0.466v-3.436c0.233-0.291 0.582-0.466 1.107-0.466 0.874 0 1.456 0.932 1.456 2.155 0 1.281-0.582 2.213-1.456 2.213z"></path>
1019
+ </symbol>
1020
+ <symbol id="frm_twilio_icon" viewBox="0 0 20 20">
1021
+ <title>twilio</title>
1022
+ <path d="M20 10c0-2.75-0.975-5.112-2.925-7.075-1.95-1.95-4.312-2.925-7.075-2.925-2.75 0-5.112 0.975-7.075 2.925-1.95 1.963-2.925 4.325-2.925 7.075 0 2.763 0.975 5.125 2.925 7.075 1.963 1.95 4.325 2.925 7.075 2.925 2.763 0 5.125-0.975 7.075-2.925s2.925-4.312 2.925-7.075zM17.337 10c0 2.025-0.725 3.75-2.15 5.188-1.438 1.438-3.162 2.15-5.188 2.15s-3.75-0.713-5.188-2.15c-1.425-1.438-2.15-3.162-2.15-5.188s0.725-3.75 2.15-5.188c1.438-1.425 3.162-2.15 5.188-2.15s3.75 0.725 5.188 2.15c1.425 1.438 2.15 3.162 2.15 5.188z"></path>
1023
+ <path d="M7.475 5.663c-0.55 0-1.025 0.2-1.412 0.587-0.388 0.4-0.587 0.862-0.587 1.412s0.2 1.025 0.587 1.412c0.387 0.4 0.862 0.588 1.412 0.588s1.025-0.188 1.413-0.588c0.387-0.387 0.587-0.862 0.587-1.412s-0.2-1.012-0.587-1.412c-0.388-0.387-0.863-0.587-1.413-0.587z"></path>
1024
+ <path d="M12.537 5.663c-0.55 0-1.025 0.2-1.413 0.587-0.388 0.4-0.588 0.862-0.588 1.412s0.2 1.025 0.588 1.412c0.388 0.4 0.862 0.588 1.412 0.588s1.025-0.188 1.412-0.588c0.4-0.387 0.588-0.862 0.588-1.412s-0.188-1.012-0.588-1.412c-0.388-0.387-0.862-0.587-1.412-0.587z"></path>
1025
+ <path d="M7.475 10.337c-0.55 0-1.025 0.2-1.412 0.588s-0.587 0.862-0.587 1.413c0 0.55 0.2 1.025 0.587 1.412s0.862 0.588 1.412 0.588 1.025-0.2 1.413-0.588 0.587-0.862 0.587-1.412c0-0.55-0.2-1.025-0.587-1.412s-0.863-0.588-1.413-0.588z"></path>
1026
+ <path d="M12.537 10.337c-0.537 0-1.013 0.188-1.413 0.588s-0.588 0.862-0.588 1.425c0 0.537 0.188 1.012 0.588 1.4s0.875 0.588 1.412 0.588c0.562 0 1.025-0.2 1.412-0.588 0.4-0.388 0.588-0.862 0.588-1.4 0-0.562-0.188-1.025-0.588-1.425-0.388-0.4-0.85-0.588-1.412-0.588z"></path>
1027
+ </symbol>
1028
+ <symbol id="frm_woocommerce_icon" viewBox="0 0 25 20">
1029
+ <title>woocommerce</title>
1030
+ <path d="M2.32 2.559h20.35c1.288 0 2.33 1.042 2.33 2.33v7.768c0 1.288-1.043 2.33-2.33 2.33h-7.298l1.002 2.453-4.405-2.453h-9.638c-1.288 0-2.33-1.043-2.33-2.33v-7.768c-0.010-1.278 1.032-2.33 2.32-2.33zM23.263 6.279c-0.366-0.64-0.904-1.026-1.626-1.179-0.193-0.041-0.376-0.061-0.549-0.061-0.976 0-1.768 0.508-2.388 1.524-0.528 0.864-0.793 1.819-0.793 2.866 0 0.783 0.163 1.453 0.488 2.012 0.366 0.64 0.904 1.026 1.626 1.179 0.193 0.041 0.376 0.061 0.549 0.061 0.986 0 1.778-0.508 2.388-1.524 0.529-0.874 0.793-1.829 0.793-2.876 0.010-0.793-0.163-1.453-0.488-2.002zM16.901 6.279c-0.366-0.64-0.915-1.026-1.626-1.179-0.193-0.041-0.376-0.061-0.549-0.061-0.976 0-1.768 0.508-2.388 1.524-0.529 0.864-0.793 1.819-0.793 2.866 0 0.783 0.163 1.453 0.488 2.012 0.366 0.64 0.904 1.026 1.626 1.179 0.193 0.041 0.376 0.061 0.549 0.061 0.986 0 1.778-0.508 2.388-1.524 0.529-0.874 0.793-1.829 0.793-2.876 0-0.793-0.163-1.453-0.488-2.002zM21.983 9.094c-0.142 0.671-0.396 1.169-0.772 1.504-0.295 0.264-0.569 0.376-0.823 0.325-0.244-0.051-0.447-0.264-0.6-0.661-0.122-0.315-0.183-0.63-0.183-0.925 0-0.254 0.020-0.508 0.071-0.742 0.092-0.417 0.264-0.823 0.539-1.209 0.335-0.498 0.691-0.701 1.057-0.63 0.244 0.051 0.447 0.264 0.6 0.661 0.122 0.315 0.183 0.63 0.183 0.925-0 0.264-0.020 0.519-0.071 0.752zM15.611 9.094c-0.142 0.671-0.396 1.169-0.772 1.504-0.295 0.264-0.569 0.376-0.823 0.325-0.244-0.051-0.447-0.264-0.6-0.661-0.122-0.315-0.183-0.63-0.183-0.925 0-0.254 0.020-0.508 0.071-0.742 0.091-0.417 0.264-0.823 0.539-1.209 0.335-0.498 0.691-0.701 1.057-0.63 0.244 0.051 0.447 0.264 0.6 0.661 0.122 0.315 0.183 0.63 0.183 0.925 0.010 0.264-0.020 0.519-0.071 0.752zM1.261 5.364c0.6 3.811 1.158 6.382 1.677 7.713 0.203 0.488 0.437 0.722 0.711 0.701 0.427-0.030 0.935-0.62 1.535-1.768 0.315-0.65 0.803-1.626 1.463-2.927 0.549 1.921 1.301 3.364 2.246 4.329 0.264 0.274 0.539 0.396 0.803 0.376 0.234-0.020 0.417-0.142 0.539-0.366 0.102-0.193 0.142-0.417 0.122-0.671-0.061-0.925 0.030-2.215 0.285-3.872 0.264-1.707 0.589-2.937 0.986-3.669 0.081-0.152 0.112-0.305 0.102-0.488-0.020-0.234-0.122-0.427-0.315-0.579s-0.407-0.224-0.64-0.203c-0.295 0.020-0.518 0.163-0.671 0.447-0.63 1.148-1.077 3.008-1.341 5.589-0.386-0.976-0.711-2.124-0.965-3.476-0.112-0.6-0.386-0.884-0.833-0.854-0.305 0.020-0.559 0.224-0.762 0.61l-2.226 4.238c-0.366-1.474-0.711-3.273-1.026-5.396-0.071-0.528-0.366-0.772-0.884-0.732-0.285 0.020-0.498 0.122-0.64 0.315-0.142 0.183-0.203 0.417-0.163 0.681z"></path>
1031
+ </symbol>
1032
+ <symbol id="frm_wordpress_icon" viewBox="0 0 20 20">
1033
+ <title>wordpress</title>
1034
+ <path d="M2.231 6.537l4.059 11.116c-2.839-1.376-4.794-4.287-4.794-7.653 0-1.236 0.264-2.403 0.736-3.463zM15.742 9.572c0-1.052-0.376-1.779-0.7-2.347-0.432-0.7-0.836-1.296-0.836-1.995 0-0.784 0.592-1.511 1.428-1.511 0.036 0 0.072 0.004 0.112 0.008-1.516-1.388-3.531-2.235-5.746-2.235-2.971 0-5.586 1.523-7.11 3.835 0.2 0.008 0.388 0.012 0.548 0.012 0.888 0 2.267-0.108 2.267-0.108 0.46-0.028 0.512 0.648 0.056 0.7 0 0-0.46 0.052-0.972 0.080l3.099 9.213 1.863-5.582-1.324-3.631c-0.46-0.028-0.892-0.080-0.892-0.080-0.46-0.028-0.404-0.728 0.052-0.7 0 0 1.404 0.108 2.239 0.108 0.888 0 2.267-0.108 2.267-0.108 0.46-0.028 0.512 0.648 0.056 0.7 0 0-0.46 0.052-0.972 0.080l3.075 9.145 0.848-2.835c0.36-1.176 0.64-2.019 0.64-2.747zM10.148 10.744l-2.551 7.418c0.764 0.224 1.567 0.348 2.403 0.348 0.992 0 1.939-0.172 2.823-0.484-0.024-0.036-0.044-0.076-0.060-0.116l-2.615-7.166zM17.466 5.917c0.036 0.272 0.056 0.56 0.056 0.876 0 0.864-0.16 1.831-0.648 3.047l-2.599 7.513c2.531-1.476 4.231-4.215 4.231-7.354 0-1.48-0.376-2.871-1.040-4.083zM19.917 10c0 5.47-4.451 9.917-9.917 9.917-5.47 0-9.917-4.451-9.917-9.917 0-5.47 4.446-9.917 9.917-9.917 5.466 0 9.917 4.446 9.917 9.917zM19.461 10c0-5.218-4.247-9.461-9.461-9.461-5.218 0-9.461 4.243-9.461 9.461s4.247 9.461 9.461 9.461c5.218 0 9.461-4.243 9.461-9.461z"></path>
1035
+ </symbol>
1036
+ <symbol id="frm_credit_card_icon" viewBox="0 0 20 20">
1037
+ <title>credit_card</title>
1038
+ <path d="M18.33 2.222h-16.66c-0.924 0-1.67 0.747-1.67 1.667v12.222c0 0.92 0.747 1.667 1.67 1.667h16.66c0.924 0 1.67-0.747 1.67-1.667v-12.222c0-0.92-0.747-1.667-1.67-1.667zM1.878 3.889h16.243c0.115 0 0.208 0.094 0.208 0.208v1.458h-16.66v-1.458c0-0.115 0.094-0.208 0.208-0.208zM18.122 16.111h-16.243c-0.115 0-0.208-0.094-0.208-0.208v-5.903h16.66v5.903c0 0.115-0.094 0.208-0.208 0.208zM6.667 12.639v1.389c0 0.229-0.188 0.417-0.417 0.417h-2.5c-0.229 0-0.417-0.188-0.417-0.417v-1.389c0-0.229 0.188-0.417 0.417-0.417h2.5c0.229 0 0.417 0.188 0.417 0.417zM13.333 12.639v1.389c0 0.229-0.188 0.417-0.417 0.417h-4.722c-0.229 0-0.417-0.188-0.417-0.417v-1.389c0-0.229 0.188-0.417 0.417-0.417h4.722c0.229 0 0.417 0.188 0.417 0.417z"></path>
1039
+ </symbol>
1040
+ <symbol id="frm_credit_card_alt_icon" viewBox="0 0 25 20">
1041
+ <title>credit_card_alt</title>
1042
+ <path d="M-0 16.597v-6.597h25v6.597c0 0.955-0.781 1.736-1.736 1.736h-21.528c-0.955 0-1.736-0.781-1.736-1.736zM6.944 14.167v1.389h4.167v-1.389h-4.167zM2.778 14.167v1.389h2.778v-1.389h-2.778zM23.264 1.667c0.955 0 1.736 0.781 1.736 1.736v2.431h-25v-2.431c0-0.955 0.781-1.736 1.736-1.736h21.528z"></path>
1043
+ </symbol>
1044
+ <symbol id="frm_cc_amex_icon" viewBox="0 0 25 20">
1045
+ <title>cc_amex</title>
1046
+ <path d="M1.291 7.678h0.966l-0.488-1.172zM8.029 13.385l0.803-0.857-0.76-0.857h-1.769v0.532h1.541v0.597h-1.541v0.586h1.725zM9.744 12.539l1.074 1.194v-2.355zM12.869 12.029c0-0.26-0.195-0.358-0.434-0.358h-0.911v0.749h0.901c0.25 0 0.445-0.119 0.445-0.391zM16.005 11.986c0-0.271-0.239-0.315-0.456-0.315h-0.89v0.662h0.879c0.239 0 0.467-0.054 0.467-0.347zM12.988 6.929c0-0.271-0.239-0.315-0.456-0.315h-0.89v0.651h0.879c0.239 0 0.467-0.054 0.467-0.336zM17.969 7.678h0.966l-0.477-1.172zM7.585 5.996v2.941h-0.716v-2.3l-1.020 2.3h-0.618l-1.020-2.3v2.3h-1.432l-0.271-0.651h-1.465l-0.271 0.651h-0.76l1.259-2.941h1.042l1.194 2.789v-2.789h1.15l0.922 1.997 0.836-1.997h1.172zM13.618 12.029c0 1.183-1.291 0.987-2.094 0.987v0.987h-1.367l-0.868-0.977-0.901 0.977h-2.778v-2.941h2.821l0.868 0.966 0.89-0.966h2.246c0.662 0 1.183 0.228 1.183 0.966zM10.46 8.329v0.608h-2.355v-2.941h2.355v0.618h-1.649v0.532h1.606v0.597h-1.606v0.586h1.649zM25 14.395v2.485c0 0.792-0.64 1.454-1.432 1.454h-22.136c-0.792 0-1.432-0.662-1.432-1.454v-7.357h1.204l0.271-0.662h0.597l0.271 0.662h2.365v-0.499l0.206 0.499h1.226l0.217-0.51v0.51h5.87v-1.074l0.108-0.011c0.098 0 0.108 0.076 0.108 0.152v0.933h3.027v-0.25c0.705 0.369 1.671 0.25 2.409 0.25l0.271-0.662h0.608l0.271 0.662h2.463v-0.629l0.369 0.629h1.975v-4.102h-1.953v0.477l-0.271-0.477h-2.007v0.477l-0.25-0.477h-2.702c-0.401 0-0.825 0.043-1.183 0.239v-0.239h-1.866v0.239c-0.217-0.195-0.51-0.239-0.792-0.239h-6.814l-0.467 1.053-0.467-1.053h-2.148v0.477l-0.239-0.477h-1.834l-0.846 1.942v-4.243c0-0.792 0.64-1.454 1.432-1.454h22.136c0.792 0 1.432 0.662 1.432 1.454v7.357h-1.302c-0.304 0-0.629 0.054-0.879 0.239v-0.239h-1.921c-0.271 0-0.64 0.043-0.846 0.239v-0.239h-3.429v0.239c-0.26-0.184-0.64-0.239-0.944-0.239h-2.268v0.239c-0.228-0.217-0.694-0.239-0.987-0.239h-2.539l-0.586 0.629-0.543-0.629h-3.787v4.102h3.722l0.597-0.64 0.564 0.64h2.29v-0.966h0.228c0.326 0 0.662-0.011 0.977-0.141v1.107h1.888v-1.074h0.087c0.108 0 0.13 0.011 0.13 0.13v0.944h5.74c0.315 0 0.705-0.065 0.955-0.26v0.26h1.823c0.347 0 0.716-0.033 1.031-0.184zM16.775 11.855c0 0.326-0.174 0.651-0.499 0.781 0.391 0.141 0.467 0.401 0.467 0.781v0.586h-0.705v-0.488c0-0.499-0.163-0.586-0.629-0.586h-0.749v1.074h-0.705v-2.941h1.671c0.553 0 1.15 0.098 1.15 0.792zM13.77 6.788c0 0.336-0.184 0.662-0.499 0.792 0.401 0.141 0.467 0.391 0.467 0.781v0.575h-0.705c-0.011-0.629 0.152-1.063-0.629-1.063h-0.76v1.063h-0.694v-2.941l1.66 0.011c0.564 0 1.161 0.087 1.161 0.781zM19.51 13.396v0.608h-2.344v-2.941h2.344v0.608h-1.638v0.532h1.606v0.597h-1.606v0.586zM14.887 5.996v2.941h-0.716v-2.941h0.716zM22.407 13.071c0 0.694-0.477 0.933-1.107 0.933h-1.367v-0.629h1.367c0.174 0 0.369-0.043 0.369-0.271 0-0.629-1.812 0.239-1.812-1.161 0-0.597 0.456-0.879 0.998-0.879h1.411v0.618h-1.291c-0.184 0-0.391 0.033-0.391 0.271 0 0.64 1.823-0.293 1.823 1.118zM25 12.528v1.096c-0.206 0.304-0.608 0.38-0.955 0.38h-1.356v-0.629h1.356c0.174 0 0.358-0.054 0.358-0.271 0-0.618-1.812 0.239-1.812-1.161 0-0.597 0.467-0.879 1.009-0.879h1.4v0.618h-1.28c-0.195 0-0.391 0.033-0.391 0.271 0 0.521 1.226-0.011 1.671 0.575zM23.21 6.007v2.93h-0.998l-1.324-2.203v2.203h-1.432l-0.282-0.651h-1.454l-0.271 0.651h-0.814c-0.966 0-1.4-0.499-1.4-1.443 0-0.987 0.445-1.497 1.443-1.497h0.684v0.64c-0.738-0.011-1.411-0.174-1.411 0.836 0 0.499 0.119 0.846 0.684 0.846h0.315l0.998-2.311h1.053l1.183 2.778v-2.778h1.074l1.237 2.040v-2.040h0.716z"></path>
1047
+ </symbol>
1048
+ <symbol id="frm_cc_discover_icon" viewBox="0 0 25 20">
1049
+ <title>cc_discover</title>
1050
+ <path d="M3.396 8.709c0 0.347-0.141 0.684-0.391 0.911-0.217 0.195-0.51 0.282-0.966 0.282h-0.184v-2.387h0.184c0.456 0 0.738 0.076 0.966 0.293 0.25 0.217 0.391 0.553 0.391 0.901zM22.667 8.003c0 0.369-0.239 0.564-0.694 0.564h-0.206v-1.096h0.217c0.445 0 0.684 0.184 0.684 0.532zM4.123 8.709c0-1.063-0.792-1.812-1.942-1.812h-1.031v3.613h1.031c0.543 0 0.944-0.119 1.291-0.412 0.412-0.347 0.651-0.857 0.651-1.389zM4.449 10.51h0.705v-3.613h-0.705v3.613zM7.921 9.414c0-0.575-0.239-0.836-1.042-1.128-0.423-0.152-0.543-0.26-0.543-0.456 0-0.228 0.217-0.401 0.521-0.401 0.217 0 0.391 0.087 0.575 0.293l0.369-0.477c-0.304-0.271-0.673-0.401-1.063-0.401-0.64 0-1.128 0.445-1.128 1.031 0 0.499 0.228 0.76 0.89 0.998 0.271 0.098 0.412 0.152 0.488 0.206 0.141 0.087 0.206 0.217 0.206 0.369 0 0.293-0.228 0.51-0.543 0.51-0.336 0-0.608-0.163-0.77-0.477l-0.456 0.434c0.326 0.477 0.716 0.694 1.248 0.694 0.738 0 1.248-0.488 1.248-1.194zM10.938 10.391v-0.836c-0.282 0.282-0.532 0.401-0.846 0.401-0.716 0-1.215-0.521-1.215-1.248 0-0.694 0.521-1.248 1.183-1.248 0.336 0 0.586 0.119 0.879 0.412v-0.836c-0.304-0.152-0.564-0.217-0.868-0.217-1.063 0-1.921 0.836-1.921 1.888 0 1.063 0.836 1.888 1.91 1.888 0.304 0 0.564-0.054 0.879-0.206zM24.306 16.945v-5.718c-1.736 1.085-7.845 4.557-17.719 6.413h17.025c0.38 0 0.694-0.315 0.694-0.694zM15.072 8.73c0-1.085-0.879-1.964-1.964-1.964s-1.964 0.879-1.964 1.964 0.879 1.964 1.964 1.964 1.964-0.879 1.964-1.964zM16.721 10.608l1.563-3.711h-0.77l-0.977 2.431-0.966-2.431h-0.77l1.541 3.711h0.38zM18.598 10.51h1.997v-0.608h-1.291v-0.977h1.248v-0.608h-1.248v-0.803h1.291v-0.618h-1.997v3.613zM22.841 10.51h0.868l-1.139-1.519c0.532-0.108 0.825-0.467 0.825-1.020 0-0.684-0.467-1.074-1.28-1.074h-1.053v3.613h0.705v-1.443h0.098zM25 3.121v13.759c0 0.803-0.64 1.454-1.432 1.454h-22.136c-0.792 0-1.432-0.651-1.432-1.454v-13.759c0-0.803 0.64-1.454 1.432-1.454h22.136c0.792 0 1.432 0.651 1.432 1.454z"></path>
1051
+ </symbol>
1052
+ <symbol id="frm_cc_mastercard_icon" viewBox="0 0 25 20">
1053
+ <title>cc_mastercard</title>
1054
+ <path d="M12.142 3.978c-0.901-0.597-1.964-0.922-3.049-0.922-3.049 0-5.523 2.474-5.523 5.512 0 3.049 2.474 5.523 5.523 5.523 1.085 0 2.148-0.326 3.049-0.922-2.908-2.365-2.886-6.825 0-9.191zM12.5 4.238c-2.8 2.203-2.81 6.478 0 8.67 2.81-2.192 2.8-6.467 0-8.67zM12.858 3.978c2.875 2.365 2.919 6.836 0 9.191 0.901 0.597 1.975 0.922 3.049 0.922 3.049 0 5.523-2.474 5.523-5.523 0-3.038-2.474-5.512-5.523-5.512-1.085 0-2.148 0.326-3.049 0.922zM20.899 11.812h0.076v-0.033h-0.184v0.033h0.076v0.184h0.033v-0.184zM21.213 11.997h0.043v-0.217h-0.054l-0.065 0.141-0.065-0.141h-0.054v0.217h0.033v-0.163l0.065 0.141h0.043l0.054-0.141v0.163zM21.126 16.771v0.022h-0.054v-0.033h0.054v0.011zM21.126 16.869h0.033l-0.043-0.054c0.022 0 0.022-0.011 0.033-0.011 0.011-0.011 0.011-0.022 0.011-0.033s0-0.022-0.011-0.033c-0.011 0-0.022-0.011-0.043-0.011h-0.065v0.141h0.033v-0.054h0.011zM7.433 16.131c0-0.26 0.163-0.467 0.445-0.467 0.26 0 0.434 0.206 0.434 0.467 0 0.271-0.174 0.467-0.434 0.467-0.282 0-0.445-0.206-0.445-0.467zM12.565 15.653c0.206 0 0.347 0.119 0.38 0.347h-0.76c0.033-0.206 0.163-0.347 0.38-0.347zM16.428 16.131c0-0.26 0.163-0.467 0.434-0.467s0.445 0.206 0.445 0.467c0 0.271-0.174 0.467-0.445 0.467s-0.434-0.206-0.434-0.467zM19.379 16.131c0-0.26 0.174-0.467 0.445-0.467 0.26 0 0.445 0.206 0.445 0.467 0 0.271-0.184 0.467-0.445 0.467-0.271 0-0.445-0.206-0.445-0.467zM21.094 16.912c-0.011 0-0.022 0-0.043-0.011-0.011 0-0.022-0.011-0.033-0.022s-0.022-0.022-0.022-0.033-0.011-0.033-0.011-0.043 0-0.033 0.011-0.043c0-0.022 0.011-0.033 0.022-0.043s0.022-0.011 0.033-0.022 0.033-0.011 0.043-0.011 0.033 0 0.043 0.011 0.033 0.011 0.043 0.022 0.011 0.022 0.022 0.043c0 0.011 0.011 0.022 0.011 0.043 0 0.011-0.011 0.022-0.011 0.043-0.011 0.011-0.011 0.022-0.022 0.033s-0.022 0.022-0.043 0.022c-0.011 0.011-0.022 0.011-0.043 0.011zM6.5 16.869h0.326v-0.922c0-0.347-0.228-0.575-0.586-0.586-0.184 0-0.38 0.054-0.51 0.26-0.098-0.163-0.26-0.26-0.488-0.26-0.152 0-0.304 0.054-0.423 0.217v-0.174h-0.326v1.465h0.326v-0.814c0-0.26 0.141-0.391 0.358-0.391s0.326 0.141 0.326 0.391v0.814h0.315v-0.814c0-0.26 0.152-0.391 0.358-0.391 0.217 0 0.326 0.141 0.326 0.391v0.814zM8.301 16.869h0.315v-1.465h-0.315v0.174c-0.108-0.13-0.26-0.217-0.467-0.217-0.412 0-0.727 0.326-0.727 0.77s0.315 0.77 0.727 0.77c0.206 0 0.358-0.076 0.467-0.217v0.184zM10.232 16.424c0-0.26-0.195-0.391-0.51-0.434l-0.152-0.022c-0.141-0.022-0.25-0.054-0.25-0.152s0.098-0.163 0.271-0.163c0.195 0 0.369 0.065 0.467 0.119l0.13-0.26c-0.152-0.098-0.358-0.152-0.597-0.152-0.369 0-0.608 0.184-0.608 0.477 0 0.239 0.174 0.38 0.51 0.423l0.141 0.022c0.184 0.033 0.26 0.076 0.26 0.152 0 0.119-0.119 0.184-0.336 0.184s-0.38-0.076-0.488-0.152l-0.141 0.25c0.174 0.119 0.391 0.184 0.629 0.184 0.423 0 0.673-0.195 0.673-0.477zM11.643 16.793l-0.087-0.271c-0.098 0.054-0.195 0.076-0.282 0.076-0.163 0-0.206-0.098-0.206-0.239v-0.662h0.521v-0.293h-0.521v-0.445h-0.326v0.445h-0.304v0.293h0.304v0.662c0 0.336 0.13 0.543 0.51 0.543 0.13 0 0.293-0.043 0.391-0.108zM12.576 15.36c-0.423 0-0.727 0.315-0.727 0.77 0 0.467 0.315 0.77 0.749 0.77 0.217 0 0.423-0.054 0.597-0.206l-0.152-0.239c-0.119 0.098-0.282 0.163-0.423 0.163-0.206 0-0.391-0.098-0.445-0.358h1.096v-0.13c0-0.456-0.282-0.77-0.694-0.77zM14.301 15.36c-0.184 0-0.304 0.087-0.38 0.217v-0.174h-0.326v1.465h0.326v-0.825c0-0.239 0.098-0.38 0.315-0.38 0.065 0 0.13 0.011 0.195 0.043l0.098-0.304c-0.076-0.033-0.163-0.043-0.228-0.043zM14.627 16.131c0 0.445 0.304 0.77 0.781 0.77 0.217 0 0.369-0.043 0.521-0.174l-0.152-0.26c-0.119 0.087-0.239 0.141-0.38 0.13-0.26 0-0.445-0.184-0.445-0.467s0.184-0.467 0.445-0.467c0.141 0 0.26 0.043 0.38 0.13l0.152-0.26c-0.152-0.119-0.304-0.174-0.521-0.174-0.477 0-0.781 0.326-0.781 0.77zM17.285 16.869h0.326v-1.465h-0.326v0.174c-0.098-0.13-0.25-0.217-0.456-0.217-0.412 0-0.738 0.326-0.738 0.77s0.326 0.77 0.738 0.77c0.206 0 0.358-0.076 0.456-0.217v0.184zM18.728 15.36c-0.184 0-0.304 0.087-0.38 0.217v-0.174h-0.315v1.465h0.315v-0.825c0-0.239 0.108-0.38 0.315-0.38 0.065 0 0.13 0.011 0.195 0.043l0.098-0.304c-0.065-0.033-0.163-0.043-0.228-0.043zM20.248 16.869h0.315v-2.062h-0.315v0.77c-0.098-0.13-0.25-0.217-0.467-0.217-0.401 0-0.727 0.326-0.727 0.77s0.326 0.77 0.727 0.77c0.217 0 0.369-0.076 0.467-0.217v0.184zM21.094 16.652c-0.011 0-0.033 0.011-0.054 0.011-0.022 0.011-0.033 0.022-0.043 0.033-0.022 0.011-0.033 0.033-0.033 0.043-0.011 0.022-0.011 0.043-0.011 0.065 0 0.011 0 0.033 0.011 0.054 0 0.011 0.011 0.033 0.033 0.043 0.011 0.011 0.022 0.022 0.043 0.033s0.043 0.011 0.054 0.011c0.022 0 0.043 0 0.065-0.011 0.011-0.011 0.033-0.022 0.043-0.033s0.022-0.033 0.033-0.043c0.011-0.022 0.011-0.043 0.011-0.054 0-0.022 0-0.043-0.011-0.065-0.011-0.011-0.022-0.033-0.033-0.043s-0.033-0.022-0.043-0.033c-0.022 0-0.043-0.011-0.065-0.011zM25 3.055v13.889c0 0.76-0.629 1.389-1.389 1.389h-22.223c-0.76 0-1.389-0.629-1.389-1.389v-13.889c0-0.76 0.629-1.389 1.389-1.389h22.223c0.76 0 1.389 0.629 1.389 1.389z"></path>
1055
+ </symbol>
1056
+ <symbol id="frm_cc_visa_icon" viewBox="0 0 25 20">
1057
+ <title>cc_visa</title>
1058
+ <path d="M21.43 11.020h-1.497c0 0 0.152-0.401 0.716-1.942-0.011 0.011 0.152-0.401 0.239-0.662l0.13 0.597c0.336 1.66 0.412 2.007 0.412 2.007zM5.762 10.315l-0.629-3.201c-0.087-0.445-0.423-0.586-0.814-0.586h-2.908l-0.022 0.141c1.997 0.51 3.635 1.595 4.373 3.646zM7.704 6.528l-1.758 4.753-0.184-0.966c-0.38-1.009-1.302-1.942-2.344-2.365l1.465 5.534h1.899l2.832-6.955h-1.91zM9.212 13.494h1.801l1.128-6.966h-1.801zM17.546 6.701c-0.358-0.141-0.922-0.293-1.617-0.293-1.78 0-3.027 0.944-3.038 2.3-0.011 0.998 0.89 1.552 1.573 1.888 0.705 0.336 0.933 0.564 0.933 0.868 0 0.467-0.564 0.673-1.074 0.673-0.727 0-1.118-0.087-1.693-0.358l-0.239-0.119-0.25 1.563c0.423 0.195 1.194 0.369 2.007 0.369 1.888 0.011 3.114-0.933 3.136-2.376 0-0.792-0.488-1.389-1.519-1.888-0.629-0.315-1.009-0.543-1.009-0.868 0-0.293 0.326-0.597 1.031-0.597 0.586-0.011 1.020 0.108 1.346 0.26l0.163 0.087zM22.157 6.528h-1.389c-0.434 0-0.76 0.13-0.944 0.586l-2.669 6.38h1.888c0.304-0.857 0.38-1.042 0.38-1.042h2.3c0 0 0.054 0.239 0.217 1.042h1.671zM25 3.055v13.889c0 0.76-0.629 1.389-1.389 1.389h-22.223c-0.76 0-1.389-0.629-1.389-1.389v-13.889c0-0.76 0.629-1.389 1.389-1.389h22.223c0.76 0 1.389 0.629 1.389 1.389z"></path>
1059
+ </symbol>
1060
+ <symbol id="frm_cc_paypal_icon" viewBox="0 0 25 20">
1061
+ <title>cc_paypal</title>
1062
+ <path d="M8.084 10.108c0 0.532-0.423 0.933-0.955 0.933-0.401 0-0.694-0.228-0.694-0.651 0-0.532 0.412-0.955 0.944-0.955 0.401 0 0.705 0.25 0.705 0.673zM16.602 8.492c0 0.651-0.391 0.781-0.955 0.781l-0.347 0.011 0.184-1.161c0.011-0.076 0.065-0.119 0.141-0.119h0.195c0.369 0 0.781 0.022 0.781 0.488zM20.41 10.108c0 0.532-0.423 0.933-0.944 0.933-0.401 0-0.705-0.228-0.705-0.651 0-0.532 0.412-0.955 0.944-0.955 0.401 0 0.705 0.25 0.705 0.673zM5.566 8.253c0-0.911-0.705-1.215-1.508-1.215h-1.736c-0.108 0-0.217 0.087-0.228 0.206l-0.705 4.427c-0.011 0.087 0.054 0.174 0.141 0.174h0.825c0.119 0 0.228-0.087 0.239-0.206l0.195-1.194c0.043-0.315 0.575-0.206 0.781-0.206 1.237 0 1.997-0.738 1.997-1.986zM8.919 11.638l0.445-2.832c0.011-0.087-0.054-0.174-0.141-0.174h-0.825c-0.163 0-0.174 0.239-0.184 0.358-0.25-0.369-0.618-0.434-1.031-0.434-1.063 0-1.877 0.933-1.877 1.964 0 0.846 0.532 1.4 1.378 1.4 0.391 0 0.879-0.174 1.15-0.477-0.022 0.065-0.043 0.163-0.043 0.228 0 0.098 0.043 0.174 0.141 0.174h0.749c0.119 0 0.217-0.087 0.239-0.206zM13.77 8.785c0-0.076-0.065-0.152-0.141-0.152h-0.836c-0.076 0-0.152 0.043-0.195 0.108l-1.15 1.693-0.477-1.628c-0.033-0.098-0.13-0.174-0.239-0.174h-0.814c-0.076 0-0.141 0.076-0.141 0.152 0 0.054 0.846 2.507 0.922 2.734-0.119 0.163-0.89 1.172-0.89 1.302 0 0.076 0.065 0.141 0.141 0.141h0.836c0.076 0 0.152-0.043 0.195-0.108l2.767-3.993c0.022-0.022 0.022-0.043 0.022-0.076zM17.893 8.253c0-0.911-0.705-1.215-1.508-1.215h-1.725c-0.119 0-0.228 0.087-0.239 0.206l-0.705 4.427c-0.011 0.087 0.054 0.174 0.141 0.174h0.89c0.087 0 0.152-0.065 0.174-0.141l0.195-1.259c0.043-0.315 0.575-0.206 0.781-0.206 1.237 0 1.997-0.738 1.997-1.986zM21.246 11.638l0.445-2.832c0.011-0.087-0.054-0.174-0.141-0.174h-0.825c-0.163 0-0.174 0.239-0.184 0.358-0.239-0.369-0.608-0.434-1.031-0.434-1.063 0-1.877 0.933-1.877 1.964 0 0.846 0.532 1.4 1.378 1.4 0.401 0 0.89-0.174 1.15-0.477-0.011 0.065-0.043 0.163-0.043 0.228 0 0.098 0.043 0.174 0.141 0.174h0.749c0.119 0 0.217-0.087 0.239-0.206zM23.611 7.2v-0.011c0-0.087-0.065-0.152-0.141-0.152h-0.803c-0.065 0-0.13 0.054-0.141 0.119l-0.705 4.514-0.011 0.022c0 0.076 0.065 0.152 0.152 0.152h0.716c0.108 0 0.217-0.087 0.228-0.206zM4.253 8.654c-0.087 0.553-0.456 0.618-0.933 0.618l-0.358 0.011 0.184-1.161c0.011-0.076 0.076-0.119 0.141-0.119h0.206c0.488 0 0.857 0.065 0.76 0.651zM25 3.055v13.889c0 0.76-0.629 1.389-1.389 1.389h-22.223c-0.76 0-1.389-0.629-1.389-1.389v-13.889c0-0.76 0.629-1.389 1.389-1.389h22.223c0.76 0 1.389 0.629 1.389 1.389z"></path>
1063
+ </symbol>
1064
+ <symbol id="frm_cc_stripe_icon" viewBox="0 0 25 20">
1065
+ <title>cc_stripe</title>
1066
+ <path d="M17.329 10.076c0 0.499-0.076 0.879-0.228 1.15-0.13 0.239-0.336 0.38-0.564 0.38-0.163 0-0.315-0.033-0.445-0.098v-2.431c0.282-0.293 0.532-0.326 0.618-0.326 0.412 0 0.618 0.456 0.618 1.324zM22.081 9.685h-1.194c0.043-0.727 0.239-1.063 0.608-1.063s0.564 0.347 0.586 1.063zM5.165 11.15c0-0.911-0.553-1.291-1.454-1.617v0c-0.477-0.174-0.738-0.315-0.738-0.532 0-0.184 0.152-0.282 0.412-0.282 0.499 0 0.998 0.184 1.346 0.358l0.195-1.215c-0.271-0.13-0.836-0.347-1.617-0.347-0.553 0-1.009 0.141-1.335 0.412-0.347 0.282-0.521 0.694-0.521 1.183 0 0.89 0.543 1.28 1.432 1.595 0.564 0.206 0.76 0.347 0.76 0.575 0 0.217-0.184 0.336-0.521 0.336-0.412 0-1.096-0.206-1.541-0.467l-0.195 1.226c0.38 0.217 1.085 0.445 1.823 0.445 0.586 0 1.063-0.141 1.4-0.401 0.369-0.293 0.553-0.716 0.553-1.27zM8.366 8.817l0.206-1.204h-1.042v-1.465l-1.4 0.228-0.195 1.237-0.499 0.087-0.184 1.118h0.673v2.376c0 0.618 0.163 1.042 0.477 1.302 0.271 0.217 0.662 0.326 1.204 0.326 0.423 0 0.673-0.076 0.857-0.119v-1.28c-0.098 0.022-0.326 0.076-0.477 0.076-0.315 0-0.456-0.174-0.456-0.543v-2.138h0.836zM11.795 9.089v-1.508c-0.108-0.022-0.206-0.033-0.304-0.033-0.456 0-0.825 0.239-0.966 0.673l-0.108-0.608h-1.421v5.111h1.628v-3.32c0.206-0.25 0.499-0.336 0.89-0.336 0.087 0 0.174 0 0.282 0.022zM12.196 12.724h1.628v-5.111h-1.628v5.111zM18.945 10.022c0-0.868-0.163-1.53-0.488-1.942-0.293-0.38-0.694-0.564-1.204-0.564-0.467 0-0.879 0.195-1.27 0.608l-0.087-0.51h-1.432v6.999l1.628-0.271v-1.638c0.25 0.076 0.51 0.119 0.738 0.119 0.401 0 0.998-0.108 1.454-0.608 0.445-0.477 0.662-1.215 0.662-2.192zM13.867 6.246c0-0.477-0.38-0.857-0.857-0.857s-0.857 0.38-0.857 0.857 0.38 0.868 0.857 0.868 0.857-0.391 0.857-0.868zM23.611 10.119c0-0.814-0.174-1.454-0.521-1.91-0.358-0.456-0.89-0.694-1.563-0.694-1.389 0-2.246 1.020-2.246 2.669 0 0.911 0.228 1.606 0.684 2.040 0.401 0.401 0.987 0.597 1.747 0.597 0.694 0 1.335-0.163 1.736-0.434l-0.174-1.118c-0.401 0.217-0.868 0.336-1.389 0.336-0.315 0-0.532-0.065-0.684-0.206-0.174-0.141-0.271-0.38-0.304-0.716h2.691c0.011-0.076 0.022-0.445 0.022-0.564zM25 3.055v13.889c0 0.76-0.629 1.389-1.389 1.389h-22.223c-0.76 0-1.389-0.629-1.389-1.389v-13.889c0-0.76 0.629-1.389 1.389-1.389h22.223c0.76 0 1.389 0.629 1.389 1.389z"></path>
1067
+ </symbol>
1068
+ </defs>
1069
+ </svg>
js/formidable_admin.js CHANGED
@@ -346,7 +346,7 @@ function frmAdminBuildJS() {
346
 
347
  $link.closest( 'li' ).addClass( 'frm-tabs active' ).siblings( 'li' ).removeClass( 'frm-tabs active starttab' );
348
  $link.closest( 'div' ).children( '.tabs-panel' ).not( t ).not( c ).hide();
349
- document.getElementById( t.replace( '#', '' ), ).style.display = 'block';
350
 
351
  if ( this.id === 'frm_insert_fields_tab' ) {
352
  clearSettingsBox();
@@ -1012,7 +1012,7 @@ function frmAdminBuildJS() {
1012
 
1013
  function getFieldList() {
1014
  var i, fields = [],
1015
- allFields = jQuery( '#frm_builder_page .frm-single-settings.frm-fields' );
1016
 
1017
  for ( i = 0; i < allFields.length; i++ ) {
1018
  var fieldId = allFields[ i ].getAttribute( 'data-fid' );
@@ -1328,6 +1328,18 @@ function frmAdminBuildJS() {
1328
  }
1329
  }
1330
 
 
 
 
 
 
 
 
 
 
 
 
 
1331
  /**
1332
  * If a field is clicked in the builder, prevent inputs from changing.
1333
  */
@@ -1415,7 +1427,7 @@ function frmAdminBuildJS() {
1415
  }
1416
 
1417
  function deleteFields( fieldId ) {
1418
- var field = jQuery( 'frm_field_id_' + fieldId );
1419
 
1420
  deleteField( fieldId );
1421
 
@@ -1665,13 +1677,14 @@ function frmAdminBuildJS() {
1665
  this.classList.toggle( 'frm-collapsed' );
1666
  }
1667
 
1668
- function clickLabel( e ) {
 
1669
  var setting = document.querySelectorAll( '[data-changeme="' + this.id + '"]' )[0],
1670
  fieldId = this.id.replace( 'field_label_', '' ),
1671
  fieldType = document.getElementById( 'field_options_type_' + fieldId ),
1672
  fieldTypeName = fieldType.value;
1673
 
1674
- if ( setting !== null ) {
1675
  if ( fieldType.tagName === 'SELECT' ) {
1676
  fieldTypeName = fieldType.options[ fieldType.selectedIndex ].text.toLowerCase();
1677
  } else {
@@ -1690,6 +1703,24 @@ function frmAdminBuildJS() {
1690
  }
1691
  }
1692
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1693
  function normalizeFieldName( fieldTypeName ) {
1694
  if ( fieldTypeName === 'divider' ) {
1695
  fieldTypeName = 'section';
@@ -1861,9 +1892,12 @@ function frmAdminBuildJS() {
1861
  if ( input.is( 'select' ) ) {
1862
  placeholder = document.getElementById( 'frm_placeholder_' + fieldId );
1863
  if ( placeholder !== null && placeholder.value === '' ) {
1864
- fillDropdownOpts( input[0], fieldId );
1865
  } else {
1866
- fillDropdownOpts( input[0], fieldId, placeholder.value );
 
 
 
1867
  }
1868
  } else {
1869
  opts = getMultipleOpts( fieldId );
@@ -1895,29 +1929,34 @@ function frmAdminBuildJS() {
1895
  container.append( single );
1896
  }
1897
 
1898
- function fillDropdownOpts( field, sourceID, placeholder ) {
1899
- if ( field !== null ) {
1900
- removeDropdownOpts( field );
1901
- var opts = getMultipleOpts( sourceID ),
1902
- hasPlaceholder = ( typeof placeholder !== 'undefined' );
 
 
1903
 
1904
- for ( var i = 0; i < opts.length; i++ ) {
1905
- var label = opts[ i ].label,
1906
- isOther = opts[ i ].key.indexOf( 'other' ) !== -1;
1907
 
1908
- if ( hasPlaceholder && label !== '' ) {
1909
- addBlankSelectOption( field, placeholder );
1910
- } else if ( hasPlaceholder ) {
1911
- label = placeholder;
1912
- }
1913
- hasPlaceholder = false;
1914
 
1915
- if ( ! isOther ) {
1916
- var opt = document.createElement( 'option' );
1917
- opt.value = opts[ i ].saved;
1918
- opt.innerHTML = label;
1919
- field.appendChild( opt );
1920
- }
 
 
 
 
 
 
1921
  }
1922
  }
1923
  }
@@ -2088,7 +2127,11 @@ function frmAdminBuildJS() {
2088
 
2089
  if ( showSelect ) {
2090
  var fillField = document.getElementById( input.id );
2091
- fillDropdownOpts( fillField, val, '' );
 
 
 
 
2092
  }
2093
  } else {
2094
  var thisType = this.getAttribute( 'data-type' );
@@ -2210,21 +2253,30 @@ function frmAdminBuildJS() {
2210
  field.className = field.className.replace( replace, replaceWith );
2211
  }
2212
 
2213
- function showInlineModal( e ) {
2214
  /*jshint validthis:true */
2215
- var box = document.getElementById( this.getAttribute( 'data-open' ) ),
2216
- container = jQuery( this ).closest( 'p' ),
2217
- pos = this.getBoundingClientRect(),
2218
- parentPos = box.parentNode.getBoundingClientRect();
2219
-
2220
  e.preventDefault();
 
 
 
 
 
 
 
 
 
 
2221
  if ( container.hasClass( 'frm-open' ) ) {
2222
  container.removeClass( 'frm-open' );
2223
  box.classList.add( 'frm_hidden' );
2224
  } else {
2225
- var input = getInputForIcon( this );
 
 
2226
  if ( input !== null ) {
2227
- input.focus();
 
 
2228
  container.after( box );
2229
  box.setAttribute( 'data-fills', input.id );
2230
 
@@ -2245,6 +2297,12 @@ function frmAdminBuildJS() {
2245
  jQuery('.frm-open [data-open="' + this.parentNode.id + '"]').closest( '.frm-open' ).removeClass( 'frm-open' );
2246
  }
2247
 
 
 
 
 
 
 
2248
  function submitBuild() {
2249
  /*jshint validthis:true */
2250
  var $thisEle = jQuery( this );
@@ -2327,6 +2385,7 @@ function frmAdminBuildJS() {
2327
  jQuery('.frm_feature_label').html( this.getAttribute( 'data-upgrade' ) );
2328
  jQuery( '#frm_upgrade_modal h2' ).show();
2329
  jQuery( '#frm_upgrade_modal .frm_lock_icon' ).removeClass( 'frm_lock_open_icon' );
 
2330
 
2331
  var requires = this.getAttribute( 'data-requires' );
2332
  if ( requires === undefined ) {
@@ -2386,16 +2445,16 @@ function frmAdminBuildJS() {
2386
  if ( typeof parentClass === 'undefined' ) {
2387
  parentClass = '';
2388
  }
2389
- maybeAddFieldSelection();
2390
- jQuery( parentClass + ' .frm_has_shortcodes:not(.frm-with-right-icon) input,' + parentClass + ' .frm_has_shortcodes:not(.frm-with-right-icon) textarea' ).wrap( '<span class="frm-with-right-icon"></span>' ).before( '<i class="frm-show-box frm_icon_font frm_more_horiz_solid_icon"></i>' );
2391
  }
2392
 
2393
  /**
2394
  * For reverse compatibility. Check for fields that were
2395
  * using the old sidebar.
2396
  */
2397
- function maybeAddFieldSelection() {
2398
- var i, missingClass = jQuery( ':not(.frm_has_shortcodes) .frm_not_email_message, :not(.frm_has_shortcodes) .frm_not_email_to, :not(.frm_has_shortcodes) .frm_not_email_subject' );
2399
  for ( i = 0; i < missingClass.length; i ++ ) {
2400
  missingClass[i].parentNode.classList.add( 'frm_has_shortcodes' );
2401
  }
@@ -3241,6 +3300,28 @@ function frmAdminBuildJS() {
3241
  result.innerHTML = '[' + code + '[/if ' + field + ']';
3242
  }
3243
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3244
  function showShortcodes( e ) {
3245
  /*jshint validthis:true */
3246
  e.preventDefault();
@@ -3256,11 +3337,18 @@ function frmAdminBuildJS() {
3256
  classes = moreIcon.className,
3257
  parentPos = box.parentElement.getBoundingClientRect();
3258
 
 
 
 
 
 
 
 
3259
  if ( classes.indexOf( 'frm_close_icon' ) !== -1 ) {
3260
  hideShortcodes( box );
3261
  } else {
3262
  box.style.top = ( pos.top - parentPos.top + 32 ) + 'px';
3263
- box.style.left = ( pos.left - parentPos.left - 273 ) + 'px';
3264
 
3265
  jQuery( '.frm_code_list a' ).removeClass( 'frm_noallow' );
3266
  if ( input.classList.contains( 'frm_not_email_to' ) ) {
@@ -3271,7 +3359,12 @@ function frmAdminBuildJS() {
3271
 
3272
  box.setAttribute( 'data-fills', input.id );
3273
  box.style.display = 'block';
3274
- moreIcon.className = classes.replace( 'frm_more_horiz_solid_icon', 'frm_close_icon' );
 
 
 
 
 
3275
 
3276
  if ( shouldFocus !== 'nofocus' ) {
3277
  input.focus();
@@ -3279,6 +3372,9 @@ function frmAdminBuildJS() {
3279
  }
3280
  }
3281
 
 
 
 
3282
  function getInputForIcon( moreIcon ) {
3283
  var input = moreIcon.nextElementSibling;
3284
  if ( input !== null && input.tagName !== 'INPUT' && input.tagName !== 'TEXTAREA' ) {
@@ -3288,7 +3384,19 @@ function frmAdminBuildJS() {
3288
  return input;
3289
  }
3290
 
 
 
 
 
 
 
 
 
 
 
 
3291
  function hideShortcodes( box ) {
 
3292
  if ( typeof box === 'undefined' ) {
3293
  box = document.getElementById( 'frm_adv_info' );
3294
  if ( box === null ) {
@@ -3303,11 +3411,18 @@ function frmAdminBuildJS() {
3303
 
3304
  box.style.display = 'none';
3305
 
3306
- var closeIcons = document.querySelectorAll( '.frm-show-box.frm_close_icon' );
3307
- for ( var i = 0; i < closeIcons.length; i++ ) {
3308
  closeIcons[i].classList.remove( 'frm_close_icon' );
3309
  closeIcons[i].classList.add( 'frm_more_horiz_solid_icon' );
3310
  }
 
 
 
 
 
 
 
3311
  }
3312
 
3313
  function initToggleShortcodes() {
@@ -3961,6 +4076,7 @@ function frmAdminBuildJS() {
3961
  jQuery( '#frm-addon-status' ).text( response ).show();
3962
  jQuery( '#frm_upgrade_modal h2' ).hide();
3963
  jQuery( '#frm_upgrade_modal .frm_lock_icon' ).addClass( 'frm_lock_open_icon' );
 
3964
 
3965
  // Proceed with CSS changes
3966
  el.parent().removeClass('frm-addon-not-installed frm-addon-installed').addClass('frm-addon-active');
@@ -4273,6 +4389,7 @@ function frmAdminBuildJS() {
4273
  $openDrop.removeClass( 'open' );
4274
  }
4275
  } );
 
4276
 
4277
  if ( typeof this_form_id === 'undefined' ) {
4278
  this_form_id = jQuery( document.getElementById( 'form_id' ) ).val();
@@ -4432,7 +4549,7 @@ function frmAdminBuildJS() {
4432
  $builderForm.on( 'change', '.radio_maxnum', setStarValues );
4433
 
4434
  jQuery( document.getElementById( 'frm-insert-fields' ) ).on( 'click', '.frm_add_field', addFieldClick );
4435
- $newFields.on( 'click', '.frm_clone_icon', duplicateField );
4436
  $builderForm.on( 'change', 'input[id^="frm_calc"]', checkCalculationCreatedByUser );
4437
  $builderForm.on( 'change', 'input.frm_format_opt', toggleInvalidMsg );
4438
  $builderForm.on( 'change click', '[data-changeme]', liveChanges );
@@ -4457,14 +4574,16 @@ function frmAdminBuildJS() {
4457
  $newFields.on( 'mousedown', 'input, textarea, select', stopFieldFocus );
4458
  $newFields.on( 'click', 'input[type=radio], input[type=checkbox]', stopFieldFocus );
4459
  $newFields.on( 'click', '.frm_delete_field', clickDeleteField );
4460
- $builderForm.on( 'click', '.frm_single_option .frm_delete_icon', deleteFieldOption );
4461
  $builderForm.on( 'mousedown', '.frm_single_option input[type=radio]', maybeUncheckRadio );
4462
  $builderForm.on( 'focusin', '.frm_single_option input[type=text]', maybeClearOptText );
4463
  $builderForm.on( 'click', '.frm_add_opt', addFieldOption );
4464
  $builderForm.on( 'change', '.frm_single_option input', resetOptOnChange );
4465
  $builderForm.on( 'change', '.frm_toggle_mult_sel', toggleMultSel );
 
4466
 
4467
  jQuery( builderArea ).on( 'click', '#frm-show-fields .frm_primary_label', clickLabel );
 
4468
  jQuery( builderArea ).on( 'click', '#frm-show-fields > li.ui-state-default', clickVis );
4469
  $newFields.on( 'click', '.start_divider li.ui-state-default', clickSectionVis );
4470
  $builderForm.on( 'change', '.frm_tax_form_select', toggleFormTax );
@@ -4472,9 +4591,10 @@ function frmAdminBuildJS() {
4472
 
4473
  $builderForm.on( 'change', '.frm_get_field_selection', getFieldSelection );
4474
 
4475
- $builderForm.on( 'click', '.frm-show-inline-modal', showInlineModal );
4476
 
4477
  $builderForm.on( 'click', '.frm-inline-modal .dismiss', dismissInlineModal );
 
4478
 
4479
  initBulkOptionsOverlay();
4480
  },
@@ -4522,6 +4642,7 @@ function frmAdminBuildJS() {
4522
 
4523
  // Close shortcode modal on click.
4524
  formSettings.on( 'mouseup', '*:not(.frm-show-box)', function( e ) {
 
4525
  if ( e.target.classList.contains( 'frm-show-box' ) ) {
4526
  return;
4527
  }
@@ -4622,6 +4743,10 @@ function frmAdminBuildJS() {
4622
  jQuery( document ).on( 'keyup change', '.frm-build-logic', setLogicExample );
4623
 
4624
  showInputIcon();
 
 
 
 
4625
  jQuery( document ).on( 'mousedown', '.frm-show-box', showShortcodes );
4626
 
4627
  var settingsPage = document.getElementById( 'form_settings_page' ),
@@ -4632,15 +4757,14 @@ function frmAdminBuildJS() {
4632
  if ( settingsPage !== null || viewPage ) {
4633
  jQuery( document ).on( 'focusin', 'form input, form textarea', function( e ) {
4634
  e.stopPropagation();
4635
- if ( this.parentNode.parentNode.classList.contains( 'frm_has_shortcodes' ) ) {
4636
- var moreIcon = this.previousElementSibling;
4637
- if ( moreIcon.tagName !== 'I' ) {
4638
- moreIcon = moreIcon.previousElementSibling;
4639
- }
4640
- showShortcodeBox( moreIcon, 'nofocus' );
4641
- }
4642
 
4643
  if ( jQuery( this ).is( ':not(:submit, input[type=button], .frm-search-input)' ) ) {
 
 
 
 
 
4644
  if ( settingsPage !== null ) {
4645
  /* form settings page */
4646
  var htmlTab = jQuery( '#frm_html_tab' );
346
 
347
  $link.closest( 'li' ).addClass( 'frm-tabs active' ).siblings( 'li' ).removeClass( 'frm-tabs active starttab' );
348
  $link.closest( 'div' ).children( '.tabs-panel' ).not( t ).not( c ).hide();
349
+ document.getElementById( t.replace( '#', '' ) ).style.display = 'block';
350
 
351
  if ( this.id === 'frm_insert_fields_tab' ) {
352
  clearSettingsBox();
1012
 
1013
  function getFieldList() {
1014
  var i, fields = [],
1015
+ allFields = document.querySelectorAll( 'li.frm_field_box' );
1016
 
1017
  for ( i = 0; i < allFields.length; i++ ) {
1018
  var fieldId = allFields[ i ].getAttribute( 'data-fid' );
1328
  }
1329
  }
1330
 
1331
+ /**
1332
+ * Allow typing on form switcher click without an extra click to search.
1333
+ */
1334
+ function focusSearchBox() {
1335
+ var searchBox = document.getElementById( 'dropform-search-input' );
1336
+ if ( searchBox !== null ) {
1337
+ setTimeout( function() {
1338
+ searchBox.focus();
1339
+ }, 100 );
1340
+ }
1341
+ }
1342
+
1343
  /**
1344
  * If a field is clicked in the builder, prevent inputs from changing.
1345
  */
1427
  }
1428
 
1429
  function deleteFields( fieldId ) {
1430
+ var field = jQuery( '#frm_field_id_' + fieldId );
1431
 
1432
  deleteField( fieldId );
1433
 
1677
  this.classList.toggle( 'frm-collapsed' );
1678
  }
1679
 
1680
+ function clickLabel() {
1681
+ /*jshint validthis:true */
1682
  var setting = document.querySelectorAll( '[data-changeme="' + this.id + '"]' )[0],
1683
  fieldId = this.id.replace( 'field_label_', '' ),
1684
  fieldType = document.getElementById( 'field_options_type_' + fieldId ),
1685
  fieldTypeName = fieldType.value;
1686
 
1687
+ if ( typeof setting !== 'undefined' ) {
1688
  if ( fieldType.tagName === 'SELECT' ) {
1689
  fieldTypeName = fieldType.options[ fieldType.selectedIndex ].text.toLowerCase();
1690
  } else {
1703
  }
1704
  }
1705
 
1706
+ function clickDescription() {
1707
+ /*jshint validthis:true */
1708
+ var setting = document.querySelectorAll( '[data-changeme="' + this.id + '"]' )[0];
1709
+ if ( typeof setting !== 'undefined' ) {
1710
+ setTimeout( function() {
1711
+ setting.focus();
1712
+ autoExpandSettings( setting );
1713
+ }, 50 );
1714
+ }
1715
+ }
1716
+
1717
+ function autoExpandSettings( setting ) {
1718
+ var inSection = setting.closest( '.frm-collapse-me' );
1719
+ if ( inSection !== null ) {
1720
+ inSection.previousElementSibling.classList.remove( 'frm-collapsed' );
1721
+ }
1722
+ }
1723
+
1724
  function normalizeFieldName( fieldTypeName ) {
1725
  if ( fieldTypeName === 'divider' ) {
1726
  fieldTypeName = 'section';
1892
  if ( input.is( 'select' ) ) {
1893
  placeholder = document.getElementById( 'frm_placeholder_' + fieldId );
1894
  if ( placeholder !== null && placeholder.value === '' ) {
1895
+ fillDropdownOpts( input[0], { sourceID: fieldId } );
1896
  } else {
1897
+ fillDropdownOpts( input[0], {
1898
+ sourceID: fieldId,
1899
+ placeholder: placeholder.value
1900
+ } );
1901
  }
1902
  } else {
1903
  opts = getMultipleOpts( fieldId );
1929
  container.append( single );
1930
  }
1931
 
1932
+ function fillDropdownOpts( field, atts ) {
1933
+ if ( field === null ) {
1934
+ return;
1935
+ }
1936
+ var sourceID = atts.sourceID,
1937
+ placeholder = atts.placeholder,
1938
+ showOther = atts.other;
1939
 
1940
+ removeDropdownOpts( field );
1941
+ var opts = getMultipleOpts( sourceID ),
1942
+ hasPlaceholder = ( typeof placeholder !== 'undefined' );
1943
 
1944
+ for ( var i = 0; i < opts.length; i++ ) {
1945
+ var label = opts[ i ].label,
1946
+ isOther = opts[ i ].key.indexOf( 'other' ) !== -1;
 
 
 
1947
 
1948
+ if ( hasPlaceholder && label !== '' ) {
1949
+ addBlankSelectOption( field, placeholder );
1950
+ } else if ( hasPlaceholder ) {
1951
+ label = placeholder;
1952
+ }
1953
+ hasPlaceholder = false;
1954
+
1955
+ if ( ! isOther || showOther ) {
1956
+ var opt = document.createElement( 'option' );
1957
+ opt.value = opts[ i ].saved;
1958
+ opt.innerHTML = label;
1959
+ field.appendChild( opt );
1960
  }
1961
  }
1962
  }
2127
 
2128
  if ( showSelect ) {
2129
  var fillField = document.getElementById( input.id );
2130
+ fillDropdownOpts( fillField, {
2131
+ sourceID: val,
2132
+ placeholder: '',
2133
+ other: true
2134
+ } );
2135
  }
2136
  } else {
2137
  var thisType = this.getAttribute( 'data-type' );
2253
  field.className = field.className.replace( replace, replaceWith );
2254
  }
2255
 
2256
+ function maybeShowInlineModal( e ) {
2257
  /*jshint validthis:true */
 
 
 
 
 
2258
  e.preventDefault();
2259
+ showInlineModal( this );
2260
+ }
2261
+
2262
+ function showInlineModal( icon, input ) {
2263
+ var box = document.getElementById( icon.getAttribute( 'data-open' ) ),
2264
+ container = jQuery( icon ).closest( 'p' ),
2265
+ pos = icon.getBoundingClientRect(),
2266
+ parentPos = box.parentNode.getBoundingClientRect(),
2267
+ inputTrigger = ( typeof input !== 'undefined' );
2268
+
2269
  if ( container.hasClass( 'frm-open' ) ) {
2270
  container.removeClass( 'frm-open' );
2271
  box.classList.add( 'frm_hidden' );
2272
  } else {
2273
+ if ( ! inputTrigger ) {
2274
+ input = getInputForIcon( icon );
2275
+ }
2276
  if ( input !== null ) {
2277
+ if ( ! inputTrigger ) {
2278
+ input.focus();
2279
+ }
2280
  container.after( box );
2281
  box.setAttribute( 'data-fills', input.id );
2282
 
2297
  jQuery('.frm-open [data-open="' + this.parentNode.id + '"]').closest( '.frm-open' ).removeClass( 'frm-open' );
2298
  }
2299
 
2300
+ function changeInputtedValue() {
2301
+ /*jshint validthis:true */
2302
+ var action = this.getAttribute( 'data-frmchange' );
2303
+ this.value = this.value[ action ]();
2304
+ }
2305
+
2306
  function submitBuild() {
2307
  /*jshint validthis:true */
2308
  var $thisEle = jQuery( this );
2385
  jQuery('.frm_feature_label').html( this.getAttribute( 'data-upgrade' ) );
2386
  jQuery( '#frm_upgrade_modal h2' ).show();
2387
  jQuery( '#frm_upgrade_modal .frm_lock_icon' ).removeClass( 'frm_lock_open_icon' );
2388
+ jQuery( '#frm_upgrade_modal .frm_lock_icon use' ).attr( 'xlink:href', '#frm_lock_icon' );
2389
 
2390
  var requires = this.getAttribute( 'data-requires' );
2391
  if ( requires === undefined ) {
2445
  if ( typeof parentClass === 'undefined' ) {
2446
  parentClass = '';
2447
  }
2448
+ maybeAddFieldSelection( parentClass );
2449
+ jQuery( parentClass + ' .frm_has_shortcodes:not(.frm-with-right-icon) input,' + parentClass + ' .frm_has_shortcodes:not(.frm-with-right-icon) textarea' ).wrap( '<span class="frm-with-right-icon"></span>' ).before( '<svg class="frmsvg frm-show-box"><use xlink:href="#frm_more_horiz_solid_icon"/></svg>' );
2450
  }
2451
 
2452
  /**
2453
  * For reverse compatibility. Check for fields that were
2454
  * using the old sidebar.
2455
  */
2456
+ function maybeAddFieldSelection( parentClass ) {
2457
+ var i, missingClass = jQuery( parentClass + ' :not(.frm_has_shortcodes) .frm_not_email_message, ' + parentClass + ' :not(.frm_has_shortcodes) .frm_not_email_to, ' + parentClass + ' :not(.frm_has_shortcodes) .frm_not_email_subject' );
2458
  for ( i = 0; i < missingClass.length; i ++ ) {
2459
  missingClass[i].parentNode.classList.add( 'frm_has_shortcodes' );
2460
  }
3300
  result.innerHTML = '[' + code + '[/if ' + field + ']';
3301
  }
3302
 
3303
+ function showBuilderModal( e ) {
3304
+ /*jshint validthis:true */
3305
+ var moreIcon = getIconForInput( this );
3306
+ showInlineModal( moreIcon, this );
3307
+ }
3308
+
3309
+ function maybeShowModal( input ) {
3310
+ var moreIcon;
3311
+ if ( input.parentNode.parentNode.classList.contains( 'frm_has_shortcodes' ) ) {
3312
+ hideShortcodes();
3313
+ moreIcon = getIconForInput( input );
3314
+ if ( moreIcon.tagName === 'use' ) {
3315
+ moreIcon = moreIcon.firstElementChild;
3316
+ if ( moreIcon.getAttributeNS( 'http://www.w3.org/1999/xlink', 'href' ).indexOf( 'frm_close_icon' ) === -1 ) {
3317
+ showShortcodeBox( moreIcon, 'nofocus' );
3318
+ }
3319
+ } else if ( ! moreIcon.classList.contains( 'frm_close_icon' ) ) {
3320
+ showShortcodeBox( moreIcon, 'nofocus' );
3321
+ }
3322
+ }
3323
+ }
3324
+
3325
  function showShortcodes( e ) {
3326
  /*jshint validthis:true */
3327
  e.preventDefault();
3337
  classes = moreIcon.className,
3338
  parentPos = box.parentElement.getBoundingClientRect();
3339
 
3340
+ if ( moreIcon.tagName === 'svg' ) {
3341
+ moreIcon = moreIcon.firstElementChild;
3342
+ }
3343
+ if ( moreIcon.tagName === 'use' ) {
3344
+ classes = moreIcon.getAttributeNS( 'http://www.w3.org/1999/xlink', 'href' );
3345
+ }
3346
+
3347
  if ( classes.indexOf( 'frm_close_icon' ) !== -1 ) {
3348
  hideShortcodes( box );
3349
  } else {
3350
  box.style.top = ( pos.top - parentPos.top + 32 ) + 'px';
3351
+ box.style.left = ( pos.left - parentPos.left - 257 ) + 'px';
3352
 
3353
  jQuery( '.frm_code_list a' ).removeClass( 'frm_noallow' );
3354
  if ( input.classList.contains( 'frm_not_email_to' ) ) {
3359
 
3360
  box.setAttribute( 'data-fills', input.id );
3361
  box.style.display = 'block';
3362
+
3363
+ if ( moreIcon.tagName === 'use' ) {
3364
+ moreIcon.setAttributeNS( 'http://www.w3.org/1999/xlink', 'href', '#frm_close_icon' );
3365
+ } else {
3366
+ moreIcon.className = classes.replace( 'frm_more_horiz_solid_icon', 'frm_close_icon' );
3367
+ }
3368
 
3369
  if ( shouldFocus !== 'nofocus' ) {
3370
  input.focus();
3372
  }
3373
  }
3374
 
3375
+ /**
3376
+ * Get the input box for the selected ... icon.
3377
+ */
3378
  function getInputForIcon( moreIcon ) {
3379
  var input = moreIcon.nextElementSibling;
3380
  if ( input !== null && input.tagName !== 'INPUT' && input.tagName !== 'TEXTAREA' ) {
3384
  return input;
3385
  }
3386
 
3387
+ /**
3388
+ * Get the ... icon for the selected input box.
3389
+ */
3390
+ function getIconForInput( input ) {
3391
+ var moreIcon = input.previousElementSibling;
3392
+ if ( moreIcon !== null && moreIcon.tagName !== 'I' && moreIcon.tagName !== 'svg' ) {
3393
+ moreIcon = moreIcon.previousElementSibling;
3394
+ }
3395
+ return moreIcon;
3396
+ }
3397
+
3398
  function hideShortcodes( box ) {
3399
+ var i, u, closeIcons, closeSvg;
3400
  if ( typeof box === 'undefined' ) {
3401
  box = document.getElementById( 'frm_adv_info' );
3402
  if ( box === null ) {
3411
 
3412
  box.style.display = 'none';
3413
 
3414
+ closeIcons = document.querySelectorAll( '.frm-show-box.frm_close_icon' );
3415
+ for ( i = 0; i < closeIcons.length; i++ ) {
3416
  closeIcons[i].classList.remove( 'frm_close_icon' );
3417
  closeIcons[i].classList.add( 'frm_more_horiz_solid_icon' );
3418
  }
3419
+
3420
+ closeSvg = document.querySelectorAll( '.frm_has_shortcodes use' );
3421
+ for ( u = 0; u < closeSvg.length; u++ ) {
3422
+ if ( closeSvg[u].getAttributeNS( 'http://www.w3.org/1999/xlink', 'href' ) === '#frm_close_icon' ) {
3423
+ closeSvg[u].setAttributeNS( 'http://www.w3.org/1999/xlink', 'href', '#frm_more_horiz_solid_icon' );
3424
+ }
3425
+ }
3426
  }
3427
 
3428
  function initToggleShortcodes() {
4076
  jQuery( '#frm-addon-status' ).text( response ).show();
4077
  jQuery( '#frm_upgrade_modal h2' ).hide();
4078
  jQuery( '#frm_upgrade_modal .frm_lock_icon' ).addClass( 'frm_lock_open_icon' );
4079
+ jQuery( '#frm_upgrade_modal .frm_lock_icon use' ).attr( 'xlink:href', '#frm_lock_open_icon' );
4080
 
4081
  // Proceed with CSS changes
4082
  el.parent().removeClass('frm-addon-not-installed frm-addon-installed').addClass('frm-addon-active');
4389
  $openDrop.removeClass( 'open' );
4390
  }
4391
  } );
4392
+ jQuery( '#frm_bs_dropdown:not(.open) a' ).click( focusSearchBox );
4393
 
4394
  if ( typeof this_form_id === 'undefined' ) {
4395
  this_form_id = jQuery( document.getElementById( 'form_id' ) ).val();
4549
  $builderForm.on( 'change', '.radio_maxnum', setStarValues );
4550
 
4551
  jQuery( document.getElementById( 'frm-insert-fields' ) ).on( 'click', '.frm_add_field', addFieldClick );
4552
+ $newFields.on( 'click', '.frm_clone_field', duplicateField );
4553
  $builderForm.on( 'change', 'input[id^="frm_calc"]', checkCalculationCreatedByUser );
4554
  $builderForm.on( 'change', 'input.frm_format_opt', toggleInvalidMsg );
4555
  $builderForm.on( 'change click', '[data-changeme]', liveChanges );
4574
  $newFields.on( 'mousedown', 'input, textarea, select', stopFieldFocus );
4575
  $newFields.on( 'click', 'input[type=radio], input[type=checkbox]', stopFieldFocus );
4576
  $newFields.on( 'click', '.frm_delete_field', clickDeleteField );
4577
+ $builderForm.on( 'click', '.frm_single_option a[data-removeid]', deleteFieldOption );
4578
  $builderForm.on( 'mousedown', '.frm_single_option input[type=radio]', maybeUncheckRadio );
4579
  $builderForm.on( 'focusin', '.frm_single_option input[type=text]', maybeClearOptText );
4580
  $builderForm.on( 'click', '.frm_add_opt', addFieldOption );
4581
  $builderForm.on( 'change', '.frm_single_option input', resetOptOnChange );
4582
  $builderForm.on( 'change', '.frm_toggle_mult_sel', toggleMultSel );
4583
+ $builderForm.on( 'focusin', '.frm_classes', showBuilderModal );
4584
 
4585
  jQuery( builderArea ).on( 'click', '#frm-show-fields .frm_primary_label', clickLabel );
4586
+ jQuery( builderArea ).on( 'click', '.frm_description', clickDescription );
4587
  jQuery( builderArea ).on( 'click', '#frm-show-fields > li.ui-state-default', clickVis );
4588
  $newFields.on( 'click', '.start_divider li.ui-state-default', clickSectionVis );
4589
  $builderForm.on( 'change', '.frm_tax_form_select', toggleFormTax );
4591
 
4592
  $builderForm.on( 'change', '.frm_get_field_selection', getFieldSelection );
4593
 
4594
+ $builderForm.on( 'click', '.frm-show-inline-modal', maybeShowInlineModal );
4595
 
4596
  $builderForm.on( 'click', '.frm-inline-modal .dismiss', dismissInlineModal );
4597
+ jQuery( document ).on( 'change', '[data-frmchange]', changeInputtedValue );
4598
 
4599
  initBulkOptionsOverlay();
4600
  },
4642
 
4643
  // Close shortcode modal on click.
4644
  formSettings.on( 'mouseup', '*:not(.frm-show-box)', function( e ) {
4645
+ e.stopPropagation();
4646
  if ( e.target.classList.contains( 'frm-show-box' ) ) {
4647
  return;
4648
  }
4743
  jQuery( document ).on( 'keyup change', '.frm-build-logic', setLogicExample );
4744
 
4745
  showInputIcon();
4746
+ jQuery( document ).on( 'frmElementAdded', function( event, parentEle ) {
4747
+ /* This is here for add-ons to trigger */
4748
+ showInputIcon( parentEle );
4749
+ });
4750
  jQuery( document ).on( 'mousedown', '.frm-show-box', showShortcodes );
4751
 
4752
  var settingsPage = document.getElementById( 'form_settings_page' ),
4757
  if ( settingsPage !== null || viewPage ) {
4758
  jQuery( document ).on( 'focusin', 'form input, form textarea', function( e ) {
4759
  e.stopPropagation();
4760
+ maybeShowModal( this );
 
 
 
 
 
 
4761
 
4762
  if ( jQuery( this ).is( ':not(:submit, input[type=button], .frm-search-input)' ) ) {
4763
+ if ( jQuery( e.target ).closest( '#frm_adv_info' ).length ) {
4764
+ // Don't trigger for fields inside of the modal.
4765
+ return;
4766
+ }
4767
+
4768
  if ( settingsPage !== null ) {
4769
  /* form settings page */
4770
  var htmlTab = jQuery( '#frm_html_tab' );
languages/formidable.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Formidable Forms plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Formidable Forms 4.0.01\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-05-23T08:19:12+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.1.0\n"
15
  "X-Domain: formidable\n"
@@ -237,7 +237,7 @@ msgid "Dropdown"
237
  msgstr ""
238
 
239
  #: classes/models/FrmField.php:34
240
- #: classes/controllers/FrmFormsController.php:1122
241
  msgid "Email"
242
  msgstr ""
243
 
@@ -262,7 +262,7 @@ msgid "Hidden Field"
262
  msgstr ""
263
 
264
  #: classes/models/FrmField.php:58
265
- #: classes/controllers/FrmFormsController.php:1117
266
  msgid "User ID"
267
  msgstr ""
268
 
@@ -365,7 +365,7 @@ msgstr ""
365
 
366
  #: classes/models/FrmEntryValidate.php:15
367
  #: classes/models/FrmSettings.php:105
368
- #: classes/controllers/FrmFormActionsController.php:378
369
  msgid "You do not have permission to do that"
370
  msgstr ""
371
 
@@ -399,7 +399,7 @@ msgid "We're sorry. It looks like you've already submitted that."
399
  msgstr ""
400
 
401
  #: classes/models/FrmSettings.php:103
402
- #: classes/views/frm-forms/form.php:34
403
  #: classes/views/styles/_sample_form.php:68
404
  msgid "Submit"
405
  msgstr ""
@@ -412,21 +412,21 @@ msgstr ""
412
  msgid "The reCAPTCHA was not entered correctly"
413
  msgstr ""
414
 
415
- #: classes/models/fields/FrmFieldType.php:418
416
- #: classes/helpers/FrmFieldsHelper.php:285
417
  msgid "This field is invalid"
418
  msgstr ""
419
 
420
  #. translators: %s: The field name.
421
  #. translators: %s: Field name
422
- #: classes/models/fields/FrmFieldType.php:421
423
  #: classes/helpers/FrmFieldsHelper.php:167
424
- #: classes/helpers/FrmFieldsHelper.php:287
425
  #: classes/helpers/FrmXMLHelper.php:1094
426
  msgid "%s is invalid"
427
  msgstr ""
428
 
429
- #: classes/models/fields/FrmFieldType.php:428
430
  msgid "Untitled"
431
  msgstr ""
432
 
@@ -470,23 +470,23 @@ msgstr ""
470
  msgid "There are no options for this action."
471
  msgstr ""
472
 
473
- #: classes/models/FrmFormAction.php:807
474
  msgid "Draft is saved"
475
  msgstr ""
476
 
477
- #: classes/models/FrmFormAction.php:808
478
  msgid "Entry is created"
479
  msgstr ""
480
 
481
- #: classes/models/FrmFormAction.php:809
482
  msgid "Entry is updated"
483
  msgstr ""
484
 
485
- #: classes/models/FrmFormAction.php:810
486
  msgid "Entry is deleted"
487
  msgstr ""
488
 
489
- #: classes/models/FrmFormAction.php:811
490
  msgid "Entry is imported"
491
  msgstr ""
492
 
@@ -514,20 +514,20 @@ msgstr[0] ""
514
  msgid "New Style"
515
  msgstr ""
516
 
517
- #: classes/models/FrmStyle.php:154
518
  msgid "WARNING: Any changes made to this file will be lost when your Formidable settings are updated"
519
  msgstr ""
520
 
521
- #: classes/models/FrmStyle.php:234
522
  msgid "Formidable Style"
523
  msgstr ""
524
 
525
- #: classes/models/FrmStyle.php:471
526
  #: classes/views/styles/_field-description.php:17
527
  msgid "normal"
528
  msgstr ""
529
 
530
- #: classes/models/FrmStyle.php:474
531
  msgid "bold"
532
  msgstr ""
533
 
@@ -542,71 +542,71 @@ msgstr ""
542
  msgid "Upgrade to Pro"
543
  msgstr ""
544
 
545
- #: classes/controllers/FrmAddonsController.php:47
546
  msgid "There are no plugins on your site that require a license"
547
  msgstr ""
548
 
549
- #: classes/controllers/FrmAddonsController.php:471
550
  msgid "Installed"
551
  msgstr ""
552
 
553
- #: classes/controllers/FrmAddonsController.php:476
554
- #: classes/helpers/FrmAppHelper.php:1945
555
  msgid "Active"
556
  msgstr ""
557
 
558
- #: classes/controllers/FrmAddonsController.php:481
559
  msgid "Not Installed"
560
  msgstr ""
561
 
562
- #: classes/controllers/FrmAddonsController.php:740
563
  msgid "Your plugin has been installed. Please reload the page to see more options."
564
  msgstr ""
565
 
566
- #: classes/controllers/FrmAddonsController.php:767
567
  msgid "Sorry, you're site requires FTP authentication. Please install plugins manaully."
568
  msgstr ""
569
 
570
- #: classes/controllers/FrmAddonsController.php:810
571
  msgid "Your plugin has been activated. Please reload the page to see more options."
572
  msgstr ""
573
 
574
- #: classes/controllers/FrmAppController.php:136
575
  msgid "Build"
576
  msgstr ""
577
 
578
- #: classes/controllers/FrmAppController.php:143
579
  #: classes/views/frm-forms/settings.php:8
580
- #: classes/views/frm-settings/form.php:7
581
- #: classes/helpers/FrmFormsListHelper.php:296
582
  msgid "Settings"
583
  msgstr ""
584
 
585
- #: classes/controllers/FrmAppController.php:150
586
- #: classes/controllers/FrmXMLController.php:131
587
  #: classes/controllers/FrmFormsController.php:725
588
  #: classes/controllers/FrmEntriesController.php:8
589
- #: classes/controllers/FrmEntriesController.php:90
590
  #: classes/views/xml/import_form.php:114
591
  msgid "Entries"
592
  msgstr ""
593
 
594
- #: classes/controllers/FrmAppController.php:161
595
- #: classes/controllers/FrmAppController.php:167
596
  msgid "Views"
597
  msgstr ""
598
 
599
- #: classes/controllers/FrmAppController.php:173
600
- #: classes/controllers/FrmAppController.php:179
601
  msgid "Reports"
602
  msgstr ""
603
 
604
- #: classes/controllers/FrmAppController.php:195
605
  msgid "Build a Form"
606
  msgstr ""
607
 
608
  #. translators: %1$s: Start link HTML, %2$s: End link HTML, %3$s: Start link HTML, %4$s: End link HTML
609
- #: classes/controllers/FrmAppController.php:239
610
  msgid "This site has been previously authorized to run Formidable Forms. %1$sInstall Formidable Pro%2$s or %3$sdeauthorize%4$s this site to continue running the free version and remove this message."
611
  msgstr ""
612
 
@@ -623,30 +623,30 @@ msgstr ""
623
  msgid "There was an error importing form"
624
  msgstr ""
625
 
626
- #: classes/controllers/FrmXMLController.php:130
627
  #: classes/controllers/FrmFormsController.php:6
628
  #: classes/controllers/FrmFormsController.php:735
629
  #: classes/views/frm-forms/list.php:5
630
  msgid "Forms"
631
  msgstr ""
632
 
633
- #: classes/controllers/FrmXMLController.php:166
634
  msgid "Oops, you didn't select a file."
635
  msgstr ""
636
 
637
- #: classes/controllers/FrmXMLController.php:176
638
  msgid "The file does not exist, please try again."
639
  msgstr ""
640
 
641
- #: classes/controllers/FrmXMLController.php:203
642
  msgid "XML import is not enabled on your server with the libxml_disable_entity_loader function."
643
  msgstr ""
644
 
645
- #: classes/controllers/FrmXMLController.php:411
646
  msgid "Please select a form"
647
  msgstr ""
648
 
649
- #: classes/controllers/FrmXMLController.php:468
650
  msgid "There are no entries for that form."
651
  msgstr ""
652
 
@@ -654,102 +654,113 @@ msgstr ""
654
  msgid "Global Settings"
655
  msgstr ""
656
 
657
- #: classes/controllers/FrmSettingsController.php:35
658
  msgid "General Settings"
659
  msgstr ""
660
 
661
- #: classes/controllers/FrmSettingsController.php:41
662
  msgid "Message Defaults"
663
  msgstr ""
664
 
665
- #: classes/controllers/FrmSettingsController.php:47
666
  msgid "Permissions"
667
  msgstr ""
668
 
669
- #: classes/controllers/FrmSettingsController.php:53
670
  msgid "reCaptcha"
671
  msgstr ""
672
 
673
- #: classes/controllers/FrmSettingsController.php:57
674
  msgid "White Labeling"
675
  msgstr ""
676
 
677
- #: classes/controllers/FrmSettingsController.php:62
678
  msgid "White labeling options"
679
  msgstr ""
680
 
681
- #: classes/controllers/FrmSettingsController.php:82
682
  #: classes/views/addons/settings.php:2
683
  msgid "Plugin Licenses"
684
  msgstr ""
685
 
686
- #: classes/controllers/FrmSettingsController.php:91
687
  #: classes/views/frm-forms/settings-advanced.php:180
688
  msgid "Miscellaneous"
689
  msgstr ""
690
 
691
- #: classes/controllers/FrmSettingsController.php:214
692
- #: classes/controllers/FrmSettingsController.php:217
693
  msgid "Settings Saved"
694
  msgstr ""
695
 
696
- #: classes/controllers/FrmSettingsController.php:251
 
 
 
 
 
 
 
 
 
 
 
697
  msgid "Extra form features like file uploads, pagination, etc"
698
  msgstr ""
699
 
700
- #: classes/controllers/FrmSettingsController.php:252
701
  msgid "Repeaters & cascading fields for advanced forms"
702
  msgstr ""
703
 
704
- #: classes/controllers/FrmSettingsController.php:253
705
  msgid "Flexibly view, search, edit, and delete entries anywhere"
706
  msgstr ""
707
 
708
- #: classes/controllers/FrmSettingsController.php:254
709
  msgid "Display entries with virtually limitless Formidable views"
710
  msgstr ""
711
 
712
- #: classes/controllers/FrmSettingsController.php:255
713
  msgid "Create surveys & polls"
714
  msgstr ""
715
 
716
- #: classes/controllers/FrmSettingsController.php:256
717
  msgid "WordPress user registration and login forms"
718
  msgstr ""
719
 
720
- #: classes/controllers/FrmSettingsController.php:257
721
  msgid "Create Stripe, PayPal or Authorize.net payment forms"
722
  msgstr ""
723
 
724
- #: classes/controllers/FrmSettingsController.php:258
725
  msgid "Powerful conditional logic for smart forms"
726
  msgstr ""
727
 
728
- #: classes/controllers/FrmSettingsController.php:259
729
  msgid "Integrations with 1000+ marketing & payment services"
730
  msgstr ""
731
 
732
- #: classes/controllers/FrmSettingsController.php:260
733
  msgid "Collect digital signatures"
734
  msgstr ""
735
 
736
- #: classes/controllers/FrmSettingsController.php:261
737
  msgid "Accept user-submitted content with Post submissions"
738
  msgstr ""
739
 
740
- #: classes/controllers/FrmSettingsController.php:262
741
  msgid "Email routing"
742
  msgstr ""
743
 
744
- #: classes/controllers/FrmSettingsController.php:263
745
  msgid "Create calculator forms"
746
  msgstr ""
747
 
748
- #: classes/controllers/FrmSettingsController.php:264
749
  msgid "Save draft entries and return later"
750
  msgstr ""
751
 
752
- #: classes/controllers/FrmSettingsController.php:265
753
  msgid "Analyze form data with graphs & stats"
754
  msgstr ""
755
 
@@ -770,7 +781,7 @@ msgstr ""
770
 
771
  #: classes/controllers/FrmStylesController.php:38
772
  #: classes/views/frm-entries/sidebar-shared.php:35
773
- #: classes/helpers/FrmFormsListHelper.php:295
774
  msgid "Edit"
775
  msgstr ""
776
 
@@ -791,12 +802,12 @@ msgstr ""
791
  msgid "Your form styles have been saved."
792
  msgstr ""
793
 
794
- #: classes/controllers/FrmStylesController.php:387
795
- #: classes/controllers/FrmFormsController.php:912
796
  msgid "General"
797
  msgstr ""
798
 
799
- #: classes/controllers/FrmStylesController.php:388
800
  #: classes/controllers/FrmFormsController.php:724
801
  #: classes/views/frm-forms/settings-advanced.php:8
802
  #: classes/views/xml/import_form.php:111
@@ -805,7 +816,7 @@ msgstr ""
805
  msgid "Form Title"
806
  msgstr ""
807
 
808
- #: classes/controllers/FrmStylesController.php:389
809
  #: classes/views/frm-forms/new-form-overlay.php:16
810
  #: classes/views/frm-forms/new-form-overlay.php:17
811
  #: classes/views/frm-forms/settings-advanced.php:22
@@ -813,33 +824,33 @@ msgstr ""
813
  msgid "Form Description"
814
  msgstr ""
815
 
816
- #: classes/controllers/FrmStylesController.php:390
817
  msgid "Field Labels"
818
  msgstr ""
819
 
820
- #: classes/controllers/FrmStylesController.php:391
821
  #: classes/views/frm-fields/back-end/field-description.php:3
822
  #: classes/helpers/FrmFormsHelper.php:429
823
  msgid "Field Description"
824
  msgstr ""
825
 
826
- #: classes/controllers/FrmStylesController.php:392
827
  msgid "Field Colors"
828
  msgstr ""
829
 
830
- #: classes/controllers/FrmStylesController.php:393
831
  msgid "Field Settings"
832
  msgstr ""
833
 
834
- #: classes/controllers/FrmStylesController.php:394
835
  msgid "Check Box & Radio Fields"
836
  msgstr ""
837
 
838
- #: classes/controllers/FrmStylesController.php:395
839
  msgid "Buttons"
840
  msgstr ""
841
 
842
- #: classes/controllers/FrmStylesController.php:396
843
  msgid "Form Messages"
844
  msgstr ""
845
 
@@ -914,7 +925,7 @@ msgid "Add forms and content"
914
  msgstr ""
915
 
916
  #: classes/controllers/FrmFormsController.php:626
917
- #: classes/controllers/FrmEntriesController.php:74
918
  #: classes/views/xml/import_form.php:145
919
  #: classes/widgets/FrmShowForm.php:56
920
  msgid "Form"
@@ -949,7 +960,7 @@ msgstr ""
949
 
950
  #: classes/controllers/FrmFormsController.php:722
951
  #: classes/controllers/FrmFormsController.php:726
952
- #: classes/views/shared/mb_adv_info.php:91
953
  #: classes/helpers/FrmCSVExportHelper.php:155
954
  msgid "Key"
955
  msgstr ""
@@ -971,149 +982,149 @@ msgstr ""
971
  msgid "Template was successfully updated."
972
  msgstr ""
973
 
974
- #: classes/controllers/FrmFormsController.php:913
975
  msgid "General Form Settings"
976
  msgstr ""
977
 
978
- #: classes/controllers/FrmFormsController.php:918
979
  msgid "Actions & Notifications"
980
  msgstr ""
981
 
982
- #: classes/controllers/FrmFormsController.php:924
983
- #: classes/controllers/FrmFormsController.php:929
984
  msgid "Form Permissions"
985
  msgstr ""
986
 
987
- #: classes/controllers/FrmFormsController.php:933
988
  msgid "Form Scheduling"
989
  msgstr ""
990
 
991
- #: classes/controllers/FrmFormsController.php:938
992
  msgid "Form scheduling settings"
993
  msgstr ""
994
 
995
- #: classes/controllers/FrmFormsController.php:942
996
  msgid "Styling & Buttons"
997
  msgstr ""
998
 
999
- #: classes/controllers/FrmFormsController.php:948
1000
  msgid "Customize HTML"
1001
  msgstr ""
1002
 
1003
- #: classes/controllers/FrmFormsController.php:1054
1004
  msgid "Customize field values with the following parameters."
1005
  msgstr ""
1006
 
1007
- #: classes/controllers/FrmFormsController.php:1091
1008
  msgid "Separator"
1009
  msgstr ""
1010
 
1011
- #: classes/controllers/FrmFormsController.php:1092
1012
  msgid "Use a different separator for checkbox fields"
1013
  msgstr ""
1014
 
1015
- #: classes/controllers/FrmFormsController.php:1095
1016
  msgid "Date Format"
1017
  msgstr ""
1018
 
1019
- #: classes/controllers/FrmFormsController.php:1098
1020
  #: classes/views/frm-fields/back-end/settings.php:22
1021
  msgid "Field Label"
1022
  msgstr ""
1023
 
1024
- #: classes/controllers/FrmFormsController.php:1101
1025
  msgid "No Auto P"
1026
  msgstr ""
1027
 
1028
- #: classes/controllers/FrmFormsController.php:1102
1029
  msgid "Do not automatically add any paragraphs or line breaks"
1030
  msgstr ""
1031
 
1032
- #: classes/controllers/FrmFormsController.php:1118
1033
  msgid "First Name"
1034
  msgstr ""
1035
 
1036
- #: classes/controllers/FrmFormsController.php:1119
1037
  msgid "Last Name"
1038
  msgstr ""
1039
 
1040
- #: classes/controllers/FrmFormsController.php:1120
1041
  msgid "Display Name"
1042
  msgstr ""
1043
 
1044
- #: classes/controllers/FrmFormsController.php:1121
1045
  msgid "User Login"
1046
  msgstr ""
1047
 
1048
- #: classes/controllers/FrmFormsController.php:1123
1049
  msgid "Avatar"
1050
  msgstr ""
1051
 
1052
- #: classes/controllers/FrmFormsController.php:1124
1053
  msgid "Author Link"
1054
  msgstr ""
1055
 
1056
- #: classes/controllers/FrmFormsController.php:1137
1057
  #: classes/views/frm-entries/sidebar-shared.php:46
1058
  msgid "Entry ID"
1059
  msgstr ""
1060
 
1061
- #: classes/controllers/FrmFormsController.php:1138
1062
- #: classes/controllers/FrmEntriesController.php:69
1063
  #: classes/views/frm-entries/sidebar-shared.php:52
1064
  #: classes/views/frm-entries/form.php:52
1065
  msgid "Entry Key"
1066
  msgstr ""
1067
 
1068
- #: classes/controllers/FrmFormsController.php:1139
1069
  msgid "Post ID"
1070
  msgstr ""
1071
 
1072
- #: classes/controllers/FrmFormsController.php:1140
1073
  msgid "User IP"
1074
  msgstr ""
1075
 
1076
- #: classes/controllers/FrmFormsController.php:1141
1077
  msgid "Entry created"
1078
  msgstr ""
1079
 
1080
- #: classes/controllers/FrmFormsController.php:1142
1081
  msgid "Entry updated"
1082
  msgstr ""
1083
 
1084
- #: classes/controllers/FrmFormsController.php:1144
1085
  msgid "Site URL"
1086
  msgstr ""
1087
 
1088
- #: classes/controllers/FrmFormsController.php:1145
1089
  msgid "Site Name"
1090
  msgstr ""
1091
 
1092
- #: classes/controllers/FrmFormsController.php:1153
1093
  msgid "Default Msg"
1094
  msgstr ""
1095
 
1096
- #: classes/controllers/FrmFormsController.php:1154
1097
  msgid "Default HTML"
1098
  msgstr ""
1099
 
1100
- #: classes/controllers/FrmFormsController.php:1155
1101
  msgid "Default Plain"
1102
  msgstr ""
1103
 
1104
- #: classes/controllers/FrmFormsController.php:1244
1105
  msgid "No forms were specified"
1106
  msgstr ""
1107
 
1108
- #: classes/controllers/FrmFormsController.php:1351
1109
  msgid "Abnormal HTML characters prevented your form from saving correctly"
1110
  msgstr ""
1111
 
1112
- #: classes/controllers/FrmFormsController.php:1420
1113
  #: classes/views/frm-forms/list-templates.php:74
1114
  #: classes/views/xml/import_form.php:126
1115
  #: classes/views/styles/manage.php:49
1116
- #: classes/helpers/FrmFormsListHelper.php:309
1117
  #: classes/helpers/FrmFormsHelper.php:57
1118
  #: classes/helpers/FrmFormsHelper.php:103
1119
  #: classes/helpers/FrmFormsHelper.php:138
@@ -1121,17 +1132,17 @@ msgstr ""
1121
  msgid "(no title)"
1122
  msgstr ""
1123
 
1124
- #: classes/controllers/FrmFormsController.php:1471
1125
- #: classes/controllers/FrmFormsController.php:1485
1126
  msgid "Please select a valid form"
1127
  msgstr ""
1128
 
1129
- #: classes/controllers/FrmFormsController.php:1717
1130
  msgid "Please wait while you are redirected."
1131
  msgstr ""
1132
 
1133
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
1134
- #: classes/controllers/FrmFormsController.php:1753
1135
  msgid "%1$sClick here%2$s if you are not automatically redirected."
1136
  msgstr ""
1137
 
@@ -1178,45 +1189,45 @@ msgstr ""
1178
  msgid "%s form actions"
1179
  msgstr ""
1180
 
1181
- #: classes/controllers/FrmEntriesController.php:75
1182
  msgid "Entry Name"
1183
  msgstr ""
1184
 
1185
- #: classes/controllers/FrmEntriesController.php:76
1186
  #: classes/helpers/FrmCSVExportHelper.php:150
1187
  msgid "Created By"
1188
  msgstr ""
1189
 
1190
- #: classes/controllers/FrmEntriesController.php:79
1191
  msgid "Entry creation date"
1192
  msgstr ""
1193
 
1194
- #: classes/controllers/FrmEntriesController.php:80
1195
  msgid "Entry update date"
1196
  msgstr ""
1197
 
1198
- #: classes/controllers/FrmEntriesController.php:386
1199
  msgid "Your import is complete"
1200
  msgstr ""
1201
 
1202
  #. translators: %1$s: Time string
1203
- #: classes/controllers/FrmEntriesController.php:398
1204
  msgid "This form is in the trash and is scheduled to be deleted permanently in %s along with any entries."
1205
  msgstr ""
1206
 
1207
- #: classes/controllers/FrmEntriesController.php:417
1208
  msgid "You are trying to view an entry that does not exist."
1209
  msgstr ""
1210
 
1211
- #: classes/controllers/FrmEntriesController.php:445
1212
  msgid "Entry was Successfully Deleted"
1213
  msgstr ""
1214
 
1215
- #: classes/controllers/FrmEntriesController.php:477
1216
  msgid "Entries Successfully Deleted"
1217
  msgstr ""
1218
 
1219
- #: classes/controllers/FrmEntriesController.php:480
1220
  msgid "No Entries Selected"
1221
  msgstr ""
1222
 
@@ -1224,19 +1235,9 @@ msgstr ""
1224
  msgid "Show options"
1225
  msgstr ""
1226
 
1227
- #: classes/views/frm-forms/_publish_box.php:9
1228
- #: classes/views/frm-forms/edit.php:23
1229
- #: classes/views/frm-forms/add_field_links.php:168
1230
- #: classes/views/styles/header-buttons.php:7
1231
- #: classes/views/styles/manage.php:79
1232
- #: classes/helpers/FrmStylesHelper.php:70
1233
- #: deprecated/FrmDeprecated.php:63
1234
- msgid "Update"
1235
- msgstr ""
1236
-
1237
  #: classes/views/frm-forms/_publish_box.php:16
1238
  #: classes/views/frm-forms/list-templates.php:123
1239
- #: classes/helpers/FrmFormsListHelper.php:300
1240
  msgid "Preview"
1241
  msgstr ""
1242
 
@@ -1286,7 +1287,7 @@ msgstr ""
1286
  #: classes/views/frm-forms/new-form-overlay.php:31
1287
  #: classes/views/shared/confirm-overlay.php:14
1288
  #: classes/views/shared/admin-header.php:44
1289
- #: classes/helpers/FrmAppHelper.php:1914
1290
  msgid "Cancel"
1291
  msgstr ""
1292
 
@@ -1295,10 +1296,10 @@ msgid "Templates"
1295
  msgstr ""
1296
 
1297
  #: classes/views/frm-forms/list.php:21
1298
- #: classes/views/shared/mb_adv_info.php:34
1299
- #: classes/views/shared/mb_adv_info.php:176
1300
- #: classes/views/frm-entries/list.php:40
1301
- #: classes/helpers/FrmAppHelper.php:722
1302
  msgid "Search"
1303
  msgstr ""
1304
 
@@ -1355,7 +1356,7 @@ msgid "Select form for new template"
1355
  msgstr ""
1356
 
1357
  #: classes/views/frm-forms/list-templates.php:66
1358
- #: classes/views/frm-entries/no_entries.php:33
1359
  msgid "You have not created any forms yet."
1360
  msgstr ""
1361
 
@@ -1369,8 +1370,8 @@ msgid "Delete this form template?"
1369
  msgstr ""
1370
 
1371
  #: classes/views/frm-forms/list-templates.php:128
1372
- #: classes/views/frm-form-actions/form_action.php:19
1373
- #: classes/helpers/FrmEntriesListHelper.php:264
1374
  #: classes/helpers/FrmFormsListHelper.php:133
1375
  #: classes/helpers/FrmFormsHelper.php:1063
1376
  msgid "Delete"
@@ -1410,23 +1411,23 @@ msgstr ""
1410
  msgid "Move Field"
1411
  msgstr ""
1412
 
1413
- #: classes/views/frm-forms/add_field.php:16
1414
  msgid "Delete Field"
1415
  msgstr ""
1416
 
1417
- #: classes/views/frm-forms/add_field.php:17
1418
  msgid "Duplicate Section"
1419
  msgstr ""
1420
 
1421
- #: classes/views/frm-forms/add_field.php:17
1422
  msgid "Duplicate Field"
1423
  msgstr ""
1424
 
1425
- #: classes/views/frm-forms/add_field.php:30
1426
  msgid "(Collapsed)"
1427
  msgstr ""
1428
 
1429
- #: classes/views/frm-forms/add_field.php:67
1430
  msgid "Your section has no fields. Drag fields here to add them to this section."
1431
  msgstr ""
1432
 
@@ -1541,15 +1542,15 @@ msgid "Build Form"
1541
  msgstr ""
1542
 
1543
  #. translators: %s: The page number
1544
- #: classes/views/frm-forms/form.php:13
1545
  msgid "Page %s"
1546
  msgstr ""
1547
 
1548
- #: classes/views/frm-forms/form.php:41
1549
  msgid "Add Fields Here"
1550
  msgstr ""
1551
 
1552
- #: classes/views/frm-forms/form.php:44
1553
  msgid "Click or drag a field from the sidebar to add it to your form"
1554
  msgstr ""
1555
 
@@ -1596,19 +1597,19 @@ msgstr ""
1596
  msgid "%s fields"
1597
  msgstr ""
1598
 
1599
- #: classes/views/frm-forms/add_field_links.php:126
1600
  msgid "Select a field to see the options"
1601
  msgstr ""
1602
 
1603
- #: classes/views/frm-forms/add_field_links.php:140
1604
  msgid "Smart Default Values"
1605
  msgstr ""
1606
 
1607
- #: classes/views/frm-forms/add_field_links.php:148
1608
  msgid "Add Layout Classes"
1609
  msgstr ""
1610
 
1611
- #: classes/views/frm-forms/add_field_links.php:156
1612
  msgid "Input Mask Format"
1613
  msgstr ""
1614
 
@@ -1640,11 +1641,11 @@ msgstr ""
1640
  msgid "(click an action to add it to your form)"
1641
  msgstr ""
1642
 
1643
- #: classes/views/frm-form-actions/settings.php:71
1644
  msgid "Show all form actions"
1645
  msgstr ""
1646
 
1647
- #: classes/views/frm-form-actions/settings.php:74
1648
  msgid "Hide extra form actions"
1649
  msgstr ""
1650
 
@@ -1770,7 +1771,7 @@ msgstr ""
1770
  #: classes/views/addons/list.php:56
1771
  #: classes/views/addons/list.php:57
1772
  #: classes/views/shared/upgrade_overlay.php:27
1773
- #: classes/helpers/FrmAppHelper.php:1944
1774
  msgid "Install"
1775
  msgstr ""
1776
 
@@ -1781,7 +1782,7 @@ msgid "Dismiss this message"
1781
  msgstr ""
1782
 
1783
  #: classes/views/shared/confirm-overlay.php:10
1784
- #: classes/helpers/FrmAppHelper.php:1920
1785
  msgid "Are you sure?"
1786
  msgstr ""
1787
 
@@ -1878,7 +1879,7 @@ msgid "Conditionals"
1878
  msgstr ""
1879
 
1880
  #: classes/views/shared/mb_adv_info.php:17
1881
- #: classes/views/frm-fields/back-end/settings.php:131
1882
  msgid "Advanced"
1883
  msgstr ""
1884
 
@@ -1886,34 +1887,34 @@ msgstr ""
1886
  msgid "HTML Tags"
1887
  msgstr ""
1888
 
1889
- #: classes/views/shared/mb_adv_info.php:41
1890
  msgid "IDs"
1891
  msgstr ""
1892
 
1893
- #: classes/views/shared/mb_adv_info.php:42
1894
  msgid "Keys"
1895
  msgstr ""
1896
 
1897
- #: classes/views/shared/mb_adv_info.php:88
1898
  #: classes/helpers/FrmCSVExportHelper.php:154
1899
- #: classes/helpers/FrmAppHelper.php:1897
1900
  msgid "ID"
1901
  msgstr ""
1902
 
1903
- #: classes/views/shared/mb_adv_info.php:99
1904
  msgid "IF"
1905
  msgstr ""
1906
 
1907
- #: classes/views/shared/mb_adv_info.php:106
1908
- #: classes/views/shared/mb_adv_info.php:120
1909
  msgid "Select a Field"
1910
  msgstr ""
1911
 
1912
- #: classes/views/shared/mb_adv_info.php:152
1913
  msgid "A blank value"
1914
  msgstr ""
1915
 
1916
- #: classes/views/shared/mb_adv_info.php:155
1917
  msgid "Click to Insert"
1918
  msgstr ""
1919
 
@@ -2383,7 +2384,7 @@ msgstr ""
2383
  msgid "Right to Left"
2384
  msgstr ""
2385
 
2386
- #: classes/views/frm-fields/single-option.php:12
2387
  msgid "Saved Value"
2388
  msgstr ""
2389
 
@@ -2400,7 +2401,7 @@ msgid "Custom HTML:"
2400
  msgstr ""
2401
 
2402
  #: classes/views/frm-fields/back-end/bulk-options-overlay.php:6
2403
- #: classes/views/frm-fields/back-end/settings.php:99
2404
  msgid "Bulk Edit Options"
2405
  msgstr ""
2406
 
@@ -2409,7 +2410,6 @@ msgid "Edit or add field options (one per line)"
2409
  msgstr ""
2410
 
2411
  #: classes/views/frm-fields/back-end/bulk-options-overlay.php:17
2412
- #: classes/views/frm-settings/form.php:61
2413
  msgid "Update Options"
2414
  msgstr ""
2415
 
@@ -2423,7 +2423,7 @@ msgid "%s Field"
2423
  msgstr ""
2424
 
2425
  #: classes/views/frm-fields/back-end/settings.php:34
2426
- #: classes/views/frm-fields/back-end/settings.php:339
2427
  msgid "Required"
2428
  msgstr ""
2429
 
@@ -2432,7 +2432,7 @@ msgid "Unique: Do not allow the same response multiple times. For example, if on
2432
  msgstr ""
2433
 
2434
  #: classes/views/frm-fields/back-end/settings.php:42
2435
- #: classes/views/frm-fields/back-end/settings.php:359
2436
  msgid "Unique"
2437
  msgstr ""
2438
 
@@ -2444,108 +2444,108 @@ msgstr ""
2444
  msgid "Read Only"
2445
  msgstr ""
2446
 
2447
- #. translators: %s: Field type
2448
- #. translators: %s: Field name
2449
- #: classes/views/frm-fields/back-end/settings.php:75
2450
- #: classes/views/frm-fields/back-end/settings.php:94
2451
- msgid "%s Options"
2452
  msgstr ""
2453
 
2454
- #: classes/views/frm-fields/back-end/settings.php:109
2455
- msgid "Add Option"
2456
  msgstr ""
2457
 
2458
- #: classes/views/frm-fields/back-end/settings.php:144
2459
- msgid "Placeholder Text"
 
 
 
2460
  msgstr ""
2461
 
2462
- #: classes/views/frm-fields/back-end/settings.php:171
2463
- msgid "Default Value"
 
 
 
2464
  msgstr ""
2465
 
2466
- #: classes/views/frm-fields/back-end/settings.php:174
2467
- #: classes/views/frm-fields/back-end/settings.php:200
2468
- #: classes/views/frm-fields/back-end/value-format.php:6
2469
- #: classes/views/frm-fields/back-end/html-content.php:6
2470
- msgid "Toggle Options"
2471
  msgstr ""
2472
 
2473
- #: classes/views/frm-fields/back-end/settings.php:196
2474
- msgid "Add a CSS class to the field container. Use our predefined classes to align multiple fields in single row."
2475
  msgstr ""
2476
 
2477
- #: classes/views/frm-fields/back-end/settings.php:197
2478
- msgid "CSS Layout Classes"
2479
  msgstr ""
2480
 
2481
- #: classes/views/frm-fields/back-end/settings.php:218
2482
  msgid "If this URL points to an image, show to image on the entries listing page."
2483
  msgstr ""
2484
 
2485
- #: classes/views/frm-fields/back-end/settings.php:225
2486
  msgid "Set the size of the captcha field. The compact option is best if your form is in a small area."
2487
  msgstr ""
2488
 
2489
- #: classes/views/frm-fields/back-end/settings.php:226
2490
  msgid "ReCaptcha Type"
2491
  msgstr ""
2492
 
2493
- #: classes/views/frm-fields/back-end/settings.php:230
2494
  msgid "Normal"
2495
  msgstr ""
2496
 
2497
- #: classes/views/frm-fields/back-end/settings.php:233
2498
  msgid "Compact"
2499
  msgstr ""
2500
 
2501
- #: classes/views/frm-fields/back-end/settings.php:239
2502
  msgid "reCAPTCHA Color"
2503
  msgstr ""
2504
 
2505
- #: classes/views/frm-fields/back-end/settings.php:243
2506
  msgid "Light"
2507
  msgstr ""
2508
 
2509
- #: classes/views/frm-fields/back-end/settings.php:246
2510
  msgid "Dark"
2511
  msgstr ""
2512
 
2513
- #: classes/views/frm-fields/back-end/settings.php:263
2514
  msgid "Required Field Indicator"
2515
  msgstr ""
2516
 
2517
- #: classes/views/frm-fields/back-end/settings.php:271
2518
  #: classes/helpers/FrmFormsHelper.php:433
2519
  msgid "Label Position"
2520
  msgstr ""
2521
 
2522
- #: classes/views/frm-fields/back-end/settings.php:274
2523
- #: classes/helpers/FrmAppHelper.php:1915
2524
  msgid "Default"
2525
  msgstr ""
2526
 
2527
- #: classes/views/frm-fields/back-end/settings.php:292
2528
  msgid "The field key can be used as an alternative to the field ID in many cases."
2529
  msgstr ""
2530
 
2531
- #: classes/views/frm-fields/back-end/settings.php:293
2532
  #: classes/helpers/FrmFormsHelper.php:421
2533
  msgid "Field Key"
2534
  msgstr ""
2535
 
2536
- #: classes/views/frm-fields/back-end/settings.php:301
2537
  msgid "Field Type"
2538
  msgstr ""
2539
 
2540
- #: classes/views/frm-fields/back-end/settings.php:331
2541
  msgid "Validation Messages"
2542
  msgstr ""
2543
 
2544
- #: classes/views/frm-fields/back-end/settings.php:348
2545
  msgid "Invalid Format"
2546
  msgstr ""
2547
 
2548
- #: classes/views/frm-fields/back-end/settings.php:370
2549
  msgid "Confirmation"
2550
  msgstr ""
2551
 
@@ -2688,23 +2688,23 @@ msgstr ""
2688
  msgid "Select users that are allowed access to Formidable. Without access to View Forms, users will be unable to see the Formidable menu."
2689
  msgstr ""
2690
 
2691
- #: classes/views/frm-settings/settings_cta.php:6
2692
  msgid "Get Formidable Forms Pro and Unlock all the Powerful Features"
2693
  msgstr ""
2694
 
2695
- #: classes/views/frm-settings/settings_cta.php:8
2696
  msgid "Thanks for being a loyal Formidable Forms user. Upgrade to Formidable Forms Pro to unlock all the awesome features and learn how others are defying the limits by taking on big projects without big resources."
2697
  msgstr ""
2698
 
2699
- #: classes/views/frm-settings/settings_cta.php:10
2700
  msgid "We know that you will truly love Formidable Forms."
2701
  msgstr ""
2702
 
2703
- #: classes/views/frm-settings/settings_cta.php:13
2704
  msgid "Pro Features"
2705
  msgstr ""
2706
 
2707
- #: classes/views/frm-settings/settings_cta.php:25
2708
  msgid "Get Formidable Forms Pro Today and Unlock all the Powerful Features »"
2709
  msgstr ""
2710
 
@@ -2754,7 +2754,7 @@ msgid "Other"
2754
  msgstr ""
2755
 
2756
  #: classes/views/frm-settings/general.php:52
2757
- msgid "Do not store IPs with form submissions. Check this box for to assist with GDRP compliance."
2758
  msgstr ""
2759
 
2760
  #: classes/views/frm-settings/misc.php:4
@@ -2874,7 +2874,7 @@ msgid "Post"
2874
  msgstr ""
2875
 
2876
  #: classes/views/frm-entries/sidebar-shared.php:38
2877
- #: classes/helpers/FrmEntriesListHelper.php:259
2878
  msgid "View"
2879
  msgstr ""
2880
 
@@ -2883,24 +2883,24 @@ msgid "Parent Entry ID"
2883
  msgstr ""
2884
 
2885
  #. translators: %1$s: User display name.
2886
- #: classes/views/frm-entries/sidebar-shared.php:75
2887
  msgid "Created by: %1$s"
2888
  msgstr ""
2889
 
2890
  #. translators: %1$s: User display name.
2891
- #: classes/views/frm-entries/sidebar-shared.php:88
2892
  msgid "Updated by: %1$s"
2893
  msgstr ""
2894
 
2895
- #: classes/views/frm-entries/sidebar-shared.php:98
2896
  msgid "IP Address:"
2897
  msgstr ""
2898
 
2899
- #: classes/views/frm-entries/sidebar-shared.php:106
2900
  msgid "Browser/OS:"
2901
  msgstr ""
2902
 
2903
- #: classes/views/frm-entries/sidebar-shared.php:114
2904
  msgid "Referrer:"
2905
  msgstr ""
2906
 
@@ -2932,17 +2932,21 @@ msgid "If you would like to save entries in this form, go to the %1$sform Settin
2932
  msgstr ""
2933
 
2934
  #. translators: %s: The form name
2935
- #: classes/views/frm-entries/no_entries.php:19
2936
  msgid "No Entries for form: %s"
2937
  msgstr ""
2938
 
 
 
 
 
2939
  #. translators: %1$s: Start link HTML, %2$s: End link HTML, %3$s: Line break HTML
2940
- #: classes/views/frm-entries/no_entries.php:26
2941
  msgid "See the %1$sform documentation%2$s for instructions on publishing your form"
2942
  msgstr ""
2943
 
2944
  #. translators: %1$s: Start link HTML, %2$s: End link HTML, %3$s: Line break HTML
2945
- #: classes/views/frm-entries/no_entries.php:38
2946
  msgid "To view entries, you must first %1$sbuild a form%2$s"
2947
  msgstr ""
2948
 
@@ -3165,23 +3169,23 @@ msgstr ""
3165
  msgid "No Entries Found"
3166
  msgstr ""
3167
 
3168
- #: classes/helpers/FrmEntriesListHelper.php:118
3169
  msgid "View all forms"
3170
  msgstr ""
3171
 
3172
- #: classes/helpers/FrmEntriesListHelper.php:119
3173
  msgid "Filter"
3174
  msgstr ""
3175
 
3176
- #: classes/helpers/FrmEntriesListHelper.php:229
3177
  msgid "No"
3178
  msgstr ""
3179
 
3180
- #: classes/helpers/FrmEntriesListHelper.php:229
3181
  msgid "Yes"
3182
  msgstr ""
3183
 
3184
- #: classes/helpers/FrmEntriesListHelper.php:264
3185
  msgid "Permanently delete this entry?"
3186
  msgstr ""
3187
 
@@ -3198,7 +3202,7 @@ msgid "No Forms Found."
3198
  msgstr ""
3199
 
3200
  #: classes/helpers/FrmFormsListHelper.php:112
3201
- #: classes/helpers/FrmAppHelper.php:707
3202
  msgid "Add New"
3203
  msgstr ""
3204
 
@@ -3239,1006 +3243,1010 @@ msgstr ""
3239
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
3240
  msgstr ""
3241
 
3242
- #: classes/helpers/FrmFormsListHelper.php:336
 
 
 
 
3243
  #: classes/helpers/FrmFormsHelper.php:1150
3244
  #: classes/helpers/FrmCSVExportHelper.php:152
3245
  msgid "Draft"
3246
  msgstr ""
3247
 
3248
- #: classes/helpers/FrmFieldsHelper.php:277
3249
- #: classes/helpers/FrmAppHelper.php:1925
3250
  msgid "The entered values do not match"
3251
  msgstr ""
3252
 
3253
  #. translators: %s: Field name
3254
- #: classes/helpers/FrmFieldsHelper.php:282
3255
  msgid "%s must be unique"
3256
  msgstr ""
3257
 
3258
- #: classes/helpers/FrmFieldsHelper.php:447
3259
- #: classes/helpers/FrmFieldsHelper.php:448
3260
- #: classes/helpers/FrmAppHelper.php:1929
3261
  msgid "New Option"
3262
  msgstr ""
3263
 
3264
  #. translators: %1$s: Start HTML link, %2$s: Content type label, %3$s: Content type, %4$s: End HTML link
3265
- #: classes/helpers/FrmFieldsHelper.php:543
3266
  msgid "Options are dynamically created from your %1$s%2$s: %3$s%4$s"
3267
  msgstr ""
3268
 
3269
- #: classes/helpers/FrmFieldsHelper.php:545
3270
  msgid "taxonomy"
3271
  msgstr ""
3272
 
3273
- #: classes/helpers/FrmFieldsHelper.php:546
3274
  msgid "Categories"
3275
  msgstr ""
3276
 
3277
- #: classes/helpers/FrmFieldsHelper.php:1355
3278
  msgid "Afghanistan"
3279
  msgstr ""
3280
 
3281
- #: classes/helpers/FrmFieldsHelper.php:1356
3282
  msgid "Albania"
3283
  msgstr ""
3284
 
3285
- #: classes/helpers/FrmFieldsHelper.php:1357
3286
  msgid "Algeria"
3287
  msgstr ""
3288
 
3289
- #: classes/helpers/FrmFieldsHelper.php:1358
3290
  msgid "American Samoa"
3291
  msgstr ""
3292
 
3293
- #: classes/helpers/FrmFieldsHelper.php:1359
3294
  msgid "Andorra"
3295
  msgstr ""
3296
 
3297
- #: classes/helpers/FrmFieldsHelper.php:1360
3298
  msgid "Angola"
3299
  msgstr ""
3300
 
3301
- #: classes/helpers/FrmFieldsHelper.php:1361
3302
  msgid "Anguilla"
3303
  msgstr ""
3304
 
3305
- #: classes/helpers/FrmFieldsHelper.php:1362
3306
  msgid "Antarctica"
3307
  msgstr ""
3308
 
3309
- #: classes/helpers/FrmFieldsHelper.php:1363
3310
  msgid "Antigua and Barbuda"
3311
  msgstr ""
3312
 
3313
- #: classes/helpers/FrmFieldsHelper.php:1364
3314
  msgid "Argentina"
3315
  msgstr ""
3316
 
3317
- #: classes/helpers/FrmFieldsHelper.php:1365
3318
  msgid "Armenia"
3319
  msgstr ""
3320
 
3321
- #: classes/helpers/FrmFieldsHelper.php:1366
3322
  msgid "Aruba"
3323
  msgstr ""
3324
 
3325
- #: classes/helpers/FrmFieldsHelper.php:1367
3326
  msgid "Australia"
3327
  msgstr ""
3328
 
3329
- #: classes/helpers/FrmFieldsHelper.php:1368
3330
  msgid "Austria"
3331
  msgstr ""
3332
 
3333
- #: classes/helpers/FrmFieldsHelper.php:1369
3334
  msgid "Azerbaijan"
3335
  msgstr ""
3336
 
3337
- #: classes/helpers/FrmFieldsHelper.php:1370
3338
  msgid "Bahamas"
3339
  msgstr ""
3340
 
3341
- #: classes/helpers/FrmFieldsHelper.php:1371
3342
  msgid "Bahrain"
3343
  msgstr ""
3344
 
3345
- #: classes/helpers/FrmFieldsHelper.php:1372
3346
  msgid "Bangladesh"
3347
  msgstr ""
3348
 
3349
- #: classes/helpers/FrmFieldsHelper.php:1373
3350
  msgid "Barbados"
3351
  msgstr ""
3352
 
3353
- #: classes/helpers/FrmFieldsHelper.php:1374
3354
  msgid "Belarus"
3355
  msgstr ""
3356
 
3357
- #: classes/helpers/FrmFieldsHelper.php:1375
3358
  msgid "Belgium"
3359
  msgstr ""
3360
 
3361
- #: classes/helpers/FrmFieldsHelper.php:1376
3362
  msgid "Belize"
3363
  msgstr ""
3364
 
3365
- #: classes/helpers/FrmFieldsHelper.php:1377
3366
  msgid "Benin"
3367
  msgstr ""
3368
 
3369
- #: classes/helpers/FrmFieldsHelper.php:1378
3370
  msgid "Bermuda"
3371
  msgstr ""
3372
 
3373
- #: classes/helpers/FrmFieldsHelper.php:1379
3374
  msgid "Bhutan"
3375
  msgstr ""
3376
 
3377
- #: classes/helpers/FrmFieldsHelper.php:1380
3378
  msgid "Bolivia"
3379
  msgstr ""
3380
 
3381
- #: classes/helpers/FrmFieldsHelper.php:1381
3382
  msgid "Bosnia and Herzegovina"
3383
  msgstr ""
3384
 
3385
- #: classes/helpers/FrmFieldsHelper.php:1382
3386
  msgid "Botswana"
3387
  msgstr ""
3388
 
3389
- #: classes/helpers/FrmFieldsHelper.php:1383
3390
  msgid "Brazil"
3391
  msgstr ""
3392
 
3393
- #: classes/helpers/FrmFieldsHelper.php:1384
3394
  msgid "Brunei"
3395
  msgstr ""
3396
 
3397
- #: classes/helpers/FrmFieldsHelper.php:1385
3398
  msgid "Bulgaria"
3399
  msgstr ""
3400
 
3401
- #: classes/helpers/FrmFieldsHelper.php:1386
3402
  msgid "Burkina Faso"
3403
  msgstr ""
3404
 
3405
- #: classes/helpers/FrmFieldsHelper.php:1387
3406
  msgid "Burundi"
3407
  msgstr ""
3408
 
3409
- #: classes/helpers/FrmFieldsHelper.php:1388
3410
  msgid "Cambodia"
3411
  msgstr ""
3412
 
3413
- #: classes/helpers/FrmFieldsHelper.php:1389
3414
  msgid "Cameroon"
3415
  msgstr ""
3416
 
3417
- #: classes/helpers/FrmFieldsHelper.php:1390
3418
  msgid "Canada"
3419
  msgstr ""
3420
 
3421
- #: classes/helpers/FrmFieldsHelper.php:1391
3422
  msgid "Cape Verde"
3423
  msgstr ""
3424
 
3425
- #: classes/helpers/FrmFieldsHelper.php:1392
3426
  msgid "Cayman Islands"
3427
  msgstr ""
3428
 
3429
- #: classes/helpers/FrmFieldsHelper.php:1393
3430
  msgid "Central African Republic"
3431
  msgstr ""
3432
 
3433
- #: classes/helpers/FrmFieldsHelper.php:1394
3434
  msgid "Chad"
3435
  msgstr ""
3436
 
3437
- #: classes/helpers/FrmFieldsHelper.php:1395
3438
  msgid "Chile"
3439
  msgstr ""
3440
 
3441
- #: classes/helpers/FrmFieldsHelper.php:1396
3442
  msgid "China"
3443
  msgstr ""
3444
 
3445
- #: classes/helpers/FrmFieldsHelper.php:1397
3446
  msgid "Colombia"
3447
  msgstr ""
3448
 
3449
- #: classes/helpers/FrmFieldsHelper.php:1398
3450
  msgid "Comoros"
3451
  msgstr ""
3452
 
3453
- #: classes/helpers/FrmFieldsHelper.php:1399
3454
  msgid "Congo"
3455
  msgstr ""
3456
 
3457
- #: classes/helpers/FrmFieldsHelper.php:1400
3458
  msgid "Costa Rica"
3459
  msgstr ""
3460
 
3461
- #: classes/helpers/FrmFieldsHelper.php:1401
3462
  msgid "C&ocirc;te d'Ivoire"
3463
  msgstr ""
3464
 
3465
- #: classes/helpers/FrmFieldsHelper.php:1402
3466
  msgid "Croatia"
3467
  msgstr ""
3468
 
3469
- #: classes/helpers/FrmFieldsHelper.php:1403
3470
  msgid "Cuba"
3471
  msgstr ""
3472
 
3473
- #: classes/helpers/FrmFieldsHelper.php:1404
3474
  msgid "Cyprus"
3475
  msgstr ""
3476
 
3477
- #: classes/helpers/FrmFieldsHelper.php:1405
3478
  msgid "Czech Republic"
3479
  msgstr ""
3480
 
3481
- #: classes/helpers/FrmFieldsHelper.php:1406
3482
  msgid "Denmark"
3483
  msgstr ""
3484
 
3485
- #: classes/helpers/FrmFieldsHelper.php:1407
3486
  msgid "Djibouti"
3487
  msgstr ""
3488
 
3489
- #: classes/helpers/FrmFieldsHelper.php:1408
3490
  msgid "Dominica"
3491
  msgstr ""
3492
 
3493
- #: classes/helpers/FrmFieldsHelper.php:1409
3494
  msgid "Dominican Republic"
3495
  msgstr ""
3496
 
3497
- #: classes/helpers/FrmFieldsHelper.php:1410
3498
  msgid "East Timor"
3499
  msgstr ""
3500
 
3501
- #: classes/helpers/FrmFieldsHelper.php:1411
3502
  msgid "Ecuador"
3503
  msgstr ""
3504
 
3505
- #: classes/helpers/FrmFieldsHelper.php:1412
3506
  msgid "Egypt"
3507
  msgstr ""
3508
 
3509
- #: classes/helpers/FrmFieldsHelper.php:1413
3510
  msgid "El Salvador"
3511
  msgstr ""
3512
 
3513
- #: classes/helpers/FrmFieldsHelper.php:1414
3514
  msgid "Equatorial Guinea"
3515
  msgstr ""
3516
 
3517
- #: classes/helpers/FrmFieldsHelper.php:1415
3518
  msgid "Eritrea"
3519
  msgstr ""
3520
 
3521
- #: classes/helpers/FrmFieldsHelper.php:1416
3522
  msgid "Estonia"
3523
  msgstr ""
3524
 
3525
- #: classes/helpers/FrmFieldsHelper.php:1417
3526
  msgid "Ethiopia"
3527
  msgstr ""
3528
 
3529
- #: classes/helpers/FrmFieldsHelper.php:1418
3530
  msgid "Fiji"
3531
  msgstr ""
3532
 
3533
- #: classes/helpers/FrmFieldsHelper.php:1419
3534
  msgid "Finland"
3535
  msgstr ""
3536
 
3537
- #: classes/helpers/FrmFieldsHelper.php:1420
3538
  msgid "France"
3539
  msgstr ""
3540
 
3541
- #: classes/helpers/FrmFieldsHelper.php:1421
3542
  msgid "French Guiana"
3543
  msgstr ""
3544
 
3545
- #: classes/helpers/FrmFieldsHelper.php:1422
3546
  msgid "French Polynesia"
3547
  msgstr ""
3548
 
3549
- #: classes/helpers/FrmFieldsHelper.php:1423
3550
  msgid "Gabon"
3551
  msgstr ""
3552
 
3553
- #: classes/helpers/FrmFieldsHelper.php:1424
3554
  msgid "Gambia"
3555
  msgstr ""
3556
 
3557
- #: classes/helpers/FrmFieldsHelper.php:1425
3558
  msgid "Georgia"
3559
  msgstr ""
3560
 
3561
- #: classes/helpers/FrmFieldsHelper.php:1426
3562
  msgid "Germany"
3563
  msgstr ""
3564
 
3565
- #: classes/helpers/FrmFieldsHelper.php:1427
3566
  msgid "Ghana"
3567
  msgstr ""
3568
 
3569
- #: classes/helpers/FrmFieldsHelper.php:1428
3570
  msgid "Gibraltar"
3571
  msgstr ""
3572
 
3573
- #: classes/helpers/FrmFieldsHelper.php:1429
3574
  msgid "Greece"
3575
  msgstr ""
3576
 
3577
- #: classes/helpers/FrmFieldsHelper.php:1430
3578
  msgid "Greenland"
3579
  msgstr ""
3580
 
3581
- #: classes/helpers/FrmFieldsHelper.php:1431
3582
  msgid "Grenada"
3583
  msgstr ""
3584
 
3585
- #: classes/helpers/FrmFieldsHelper.php:1432
3586
  msgid "Guam"
3587
  msgstr ""
3588
 
3589
- #: classes/helpers/FrmFieldsHelper.php:1433
3590
  msgid "Guatemala"
3591
  msgstr ""
3592
 
3593
- #: classes/helpers/FrmFieldsHelper.php:1434
3594
  msgid "Guinea"
3595
  msgstr ""
3596
 
3597
- #: classes/helpers/FrmFieldsHelper.php:1435
3598
  msgid "Guinea-Bissau"
3599
  msgstr ""
3600
 
3601
- #: classes/helpers/FrmFieldsHelper.php:1436
3602
  msgid "Guyana"
3603
  msgstr ""
3604
 
3605
- #: classes/helpers/FrmFieldsHelper.php:1437
3606
  msgid "Haiti"
3607
  msgstr ""
3608
 
3609
- #: classes/helpers/FrmFieldsHelper.php:1438
3610
  msgid "Honduras"
3611
  msgstr ""
3612
 
3613
- #: classes/helpers/FrmFieldsHelper.php:1439
3614
  msgid "Hong Kong"
3615
  msgstr ""
3616
 
3617
- #: classes/helpers/FrmFieldsHelper.php:1440
3618
  msgid "Hungary"
3619
  msgstr ""
3620
 
3621
- #: classes/helpers/FrmFieldsHelper.php:1441
3622
  msgid "Iceland"
3623
  msgstr ""
3624
 
3625
- #: classes/helpers/FrmFieldsHelper.php:1442
3626
  msgid "India"
3627
  msgstr ""
3628
 
3629
- #: classes/helpers/FrmFieldsHelper.php:1443
3630
  msgid "Indonesia"
3631
  msgstr ""
3632
 
3633
- #: classes/helpers/FrmFieldsHelper.php:1444
3634
  msgid "Iran"
3635
  msgstr ""
3636
 
3637
- #: classes/helpers/FrmFieldsHelper.php:1445
3638
  msgid "Iraq"
3639
  msgstr ""
3640
 
3641
- #: classes/helpers/FrmFieldsHelper.php:1446
3642
  msgid "Ireland"
3643
  msgstr ""
3644
 
3645
- #: classes/helpers/FrmFieldsHelper.php:1447
3646
  msgid "Israel"
3647
  msgstr ""
3648
 
3649
- #: classes/helpers/FrmFieldsHelper.php:1448
3650
  msgid "Italy"
3651
  msgstr ""
3652
 
3653
- #: classes/helpers/FrmFieldsHelper.php:1449
3654
  msgid "Jamaica"
3655
  msgstr ""
3656
 
3657
- #: classes/helpers/FrmFieldsHelper.php:1450
3658
  msgid "Japan"
3659
  msgstr ""
3660
 
3661
- #: classes/helpers/FrmFieldsHelper.php:1451
3662
  msgid "Jordan"
3663
  msgstr ""
3664
 
3665
- #: classes/helpers/FrmFieldsHelper.php:1452
3666
  msgid "Kazakhstan"
3667
  msgstr ""
3668
 
3669
- #: classes/helpers/FrmFieldsHelper.php:1453
3670
  msgid "Kenya"
3671
  msgstr ""
3672
 
3673
- #: classes/helpers/FrmFieldsHelper.php:1454
3674
  msgid "Kiribati"
3675
  msgstr ""
3676
 
3677
- #: classes/helpers/FrmFieldsHelper.php:1455
3678
  msgid "North Korea"
3679
  msgstr ""
3680
 
3681
- #: classes/helpers/FrmFieldsHelper.php:1456
3682
  msgid "South Korea"
3683
  msgstr ""
3684
 
3685
- #: classes/helpers/FrmFieldsHelper.php:1457
3686
  msgid "Kuwait"
3687
  msgstr ""
3688
 
3689
- #: classes/helpers/FrmFieldsHelper.php:1458
3690
  msgid "Kyrgyzstan"
3691
  msgstr ""
3692
 
3693
- #: classes/helpers/FrmFieldsHelper.php:1459
3694
  msgid "Laos"
3695
  msgstr ""
3696
 
3697
- #: classes/helpers/FrmFieldsHelper.php:1460
3698
  msgid "Latvia"
3699
  msgstr ""
3700
 
3701
- #: classes/helpers/FrmFieldsHelper.php:1461
3702
  msgid "Lebanon"
3703
  msgstr ""
3704
 
3705
- #: classes/helpers/FrmFieldsHelper.php:1462
3706
  msgid "Lesotho"
3707
  msgstr ""
3708
 
3709
- #: classes/helpers/FrmFieldsHelper.php:1463
3710
  msgid "Liberia"
3711
  msgstr ""
3712
 
3713
- #: classes/helpers/FrmFieldsHelper.php:1464
3714
  msgid "Libya"
3715
  msgstr ""
3716
 
3717
- #: classes/helpers/FrmFieldsHelper.php:1465
3718
  msgid "Liechtenstein"
3719
  msgstr ""
3720
 
3721
- #: classes/helpers/FrmFieldsHelper.php:1466
3722
  msgid "Lithuania"
3723
  msgstr ""
3724
 
3725
- #: classes/helpers/FrmFieldsHelper.php:1467
3726
  msgid "Luxembourg"
3727
  msgstr ""
3728
 
3729
- #: classes/helpers/FrmFieldsHelper.php:1468
3730
  msgid "Macedonia"
3731
  msgstr ""
3732
 
3733
- #: classes/helpers/FrmFieldsHelper.php:1469
3734
  msgid "Madagascar"
3735
  msgstr ""
3736
 
3737
- #: classes/helpers/FrmFieldsHelper.php:1470
3738
  msgid "Malawi"
3739
  msgstr ""
3740
 
3741
- #: classes/helpers/FrmFieldsHelper.php:1471
3742
  msgid "Malaysia"
3743
  msgstr ""
3744
 
3745
- #: classes/helpers/FrmFieldsHelper.php:1472
3746
  msgid "Maldives"
3747
  msgstr ""
3748
 
3749
- #: classes/helpers/FrmFieldsHelper.php:1473
3750
  msgid "Mali"
3751
  msgstr ""
3752
 
3753
- #: classes/helpers/FrmFieldsHelper.php:1474
3754
  msgid "Malta"
3755
  msgstr ""
3756
 
3757
- #: classes/helpers/FrmFieldsHelper.php:1475
3758
  msgid "Marshall Islands"
3759
  msgstr ""
3760
 
3761
- #: classes/helpers/FrmFieldsHelper.php:1476
3762
  msgid "Mauritania"
3763
  msgstr ""
3764
 
3765
- #: classes/helpers/FrmFieldsHelper.php:1477
3766
  msgid "Mauritius"
3767
  msgstr ""
3768
 
3769
- #: classes/helpers/FrmFieldsHelper.php:1478
3770
  msgid "Mexico"
3771
  msgstr ""
3772
 
3773
- #: classes/helpers/FrmFieldsHelper.php:1479
3774
  msgid "Micronesia"
3775
  msgstr ""
3776
 
3777
- #: classes/helpers/FrmFieldsHelper.php:1480
3778
  msgid "Moldova"
3779
  msgstr ""
3780
 
3781
- #: classes/helpers/FrmFieldsHelper.php:1481
3782
  msgid "Monaco"
3783
  msgstr ""
3784
 
3785
- #: classes/helpers/FrmFieldsHelper.php:1482
3786
  msgid "Mongolia"
3787
  msgstr ""
3788
 
3789
- #: classes/helpers/FrmFieldsHelper.php:1483
3790
  msgid "Montenegro"
3791
  msgstr ""
3792
 
3793
- #: classes/helpers/FrmFieldsHelper.php:1484
3794
  msgid "Montserrat"
3795
  msgstr ""
3796
 
3797
- #: classes/helpers/FrmFieldsHelper.php:1485
3798
  msgid "Morocco"
3799
  msgstr ""
3800
 
3801
- #: classes/helpers/FrmFieldsHelper.php:1486
3802
  msgid "Mozambique"
3803
  msgstr ""
3804
 
3805
- #: classes/helpers/FrmFieldsHelper.php:1487
3806
  msgid "Myanmar"
3807
  msgstr ""
3808
 
3809
- #: classes/helpers/FrmFieldsHelper.php:1488
3810
  msgid "Namibia"
3811
  msgstr ""
3812
 
3813
- #: classes/helpers/FrmFieldsHelper.php:1489
3814
  msgid "Nauru"
3815
  msgstr ""
3816
 
3817
- #: classes/helpers/FrmFieldsHelper.php:1490
3818
  msgid "Nepal"
3819
  msgstr ""
3820
 
3821
- #: classes/helpers/FrmFieldsHelper.php:1491
3822
  msgid "Netherlands"
3823
  msgstr ""
3824
 
3825
- #: classes/helpers/FrmFieldsHelper.php:1492
3826
  msgid "New Zealand"
3827
  msgstr ""
3828
 
3829
- #: classes/helpers/FrmFieldsHelper.php:1493
3830
  msgid "Nicaragua"
3831
  msgstr ""
3832
 
3833
- #: classes/helpers/FrmFieldsHelper.php:1494
3834
  msgid "Niger"
3835
  msgstr ""
3836
 
3837
- #: classes/helpers/FrmFieldsHelper.php:1495
3838
  msgid "Nigeria"
3839
  msgstr ""
3840
 
3841
- #: classes/helpers/FrmFieldsHelper.php:1496
3842
  msgid "Norway"
3843
  msgstr ""
3844
 
3845
- #: classes/helpers/FrmFieldsHelper.php:1497
3846
  msgid "Northern Mariana Islands"
3847
  msgstr ""
3848
 
3849
- #: classes/helpers/FrmFieldsHelper.php:1498
3850
  msgid "Oman"
3851
  msgstr ""
3852
 
3853
- #: classes/helpers/FrmFieldsHelper.php:1499
3854
  msgid "Pakistan"
3855
  msgstr ""
3856
 
3857
- #: classes/helpers/FrmFieldsHelper.php:1500
3858
  msgid "Palau"
3859
  msgstr ""
3860
 
3861
- #: classes/helpers/FrmFieldsHelper.php:1501
3862
  msgid "Palestine"
3863
  msgstr ""
3864
 
3865
- #: classes/helpers/FrmFieldsHelper.php:1502
3866
  msgid "Panama"
3867
  msgstr ""
3868
 
3869
- #: classes/helpers/FrmFieldsHelper.php:1503
3870
  msgid "Papua New Guinea"
3871
  msgstr ""
3872
 
3873
- #: classes/helpers/FrmFieldsHelper.php:1504
3874
  msgid "Paraguay"
3875
  msgstr ""
3876
 
3877
- #: classes/helpers/FrmFieldsHelper.php:1505
3878
  msgid "Peru"
3879
  msgstr ""
3880
 
3881
- #: classes/helpers/FrmFieldsHelper.php:1506
3882
  msgid "Philippines"
3883
  msgstr ""
3884
 
3885
- #: classes/helpers/FrmFieldsHelper.php:1507
3886
  msgid "Poland"
3887
  msgstr ""
3888
 
3889
- #: classes/helpers/FrmFieldsHelper.php:1508
3890
  msgid "Portugal"
3891
  msgstr ""
3892
 
3893
- #: classes/helpers/FrmFieldsHelper.php:1509
3894
  msgid "Puerto Rico"
3895
  msgstr ""
3896
 
3897
- #: classes/helpers/FrmFieldsHelper.php:1510
3898
  msgid "Qatar"
3899
  msgstr ""
3900
 
3901
- #: classes/helpers/FrmFieldsHelper.php:1511
3902
  msgid "Romania"
3903
  msgstr ""
3904
 
3905
- #: classes/helpers/FrmFieldsHelper.php:1512
3906
  msgid "Russia"
3907
  msgstr ""
3908
 
3909
- #: classes/helpers/FrmFieldsHelper.php:1513
3910
  msgid "Rwanda"
3911
  msgstr ""
3912
 
3913
- #: classes/helpers/FrmFieldsHelper.php:1514
3914
  msgid "Saint Kitts and Nevis"
3915
  msgstr ""
3916
 
3917
- #: classes/helpers/FrmFieldsHelper.php:1515
3918
  msgid "Saint Lucia"
3919
  msgstr ""
3920
 
3921
- #: classes/helpers/FrmFieldsHelper.php:1516
3922
  msgid "Saint Vincent and the Grenadines"
3923
  msgstr ""
3924
 
3925
- #: classes/helpers/FrmFieldsHelper.php:1517
3926
  msgid "Samoa"
3927
  msgstr ""
3928
 
3929
- #: classes/helpers/FrmFieldsHelper.php:1518
3930
  msgid "San Marino"
3931
  msgstr ""
3932
 
3933
- #: classes/helpers/FrmFieldsHelper.php:1519
3934
  msgid "Sao Tome and Principe"
3935
  msgstr ""
3936
 
3937
- #: classes/helpers/FrmFieldsHelper.php:1520
3938
  msgid "Saudi Arabia"
3939
  msgstr ""
3940
 
3941
- #: classes/helpers/FrmFieldsHelper.php:1521
3942
  msgid "Senegal"
3943
  msgstr ""
3944
 
3945
- #: classes/helpers/FrmFieldsHelper.php:1522
3946
  msgid "Serbia and Montenegro"
3947
  msgstr ""
3948
 
3949
- #: classes/helpers/FrmFieldsHelper.php:1523
3950
  msgid "Seychelles"
3951
  msgstr ""
3952
 
3953
- #: classes/helpers/FrmFieldsHelper.php:1524
3954
  msgid "Sierra Leone"
3955
  msgstr ""
3956
 
3957
- #: classes/helpers/FrmFieldsHelper.php:1525
3958
  msgid "Singapore"
3959
  msgstr ""
3960
 
3961
- #: classes/helpers/FrmFieldsHelper.php:1526
3962
  msgid "Slovakia"
3963
  msgstr ""
3964
 
3965
- #: classes/helpers/FrmFieldsHelper.php:1527
3966
  msgid "Slovenia"
3967
  msgstr ""
3968
 
3969
- #: classes/helpers/FrmFieldsHelper.php:1528
3970
  msgid "Solomon Islands"
3971
  msgstr ""
3972
 
3973
- #: classes/helpers/FrmFieldsHelper.php:1529
3974
  msgid "Somalia"
3975
  msgstr ""
3976
 
3977
- #: classes/helpers/FrmFieldsHelper.php:1530
3978
  msgid "South Africa"
3979
  msgstr ""
3980
 
3981
- #: classes/helpers/FrmFieldsHelper.php:1531
3982
  msgid "South Sudan"
3983
  msgstr ""
3984
 
3985
- #: classes/helpers/FrmFieldsHelper.php:1532
3986
  msgid "Spain"
3987
  msgstr ""
3988
 
3989
- #: classes/helpers/FrmFieldsHelper.php:1533
3990
  msgid "Sri Lanka"
3991
  msgstr ""
3992
 
3993
- #: classes/helpers/FrmFieldsHelper.php:1534
3994
  msgid "Sudan"
3995
  msgstr ""
3996
 
3997
- #: classes/helpers/FrmFieldsHelper.php:1535
3998
  msgid "Suriname"
3999
  msgstr ""
4000
 
4001
- #: classes/helpers/FrmFieldsHelper.php:1536
4002
  msgid "Swaziland"
4003
  msgstr ""
4004
 
4005
- #: classes/helpers/FrmFieldsHelper.php:1537
4006
  msgid "Sweden"
4007
  msgstr ""
4008
 
4009
- #: classes/helpers/FrmFieldsHelper.php:1538
4010
  msgid "Switzerland"
4011
  msgstr ""
4012
 
4013
- #: classes/helpers/FrmFieldsHelper.php:1539
4014
  msgid "Syria"
4015
  msgstr ""
4016
 
4017
- #: classes/helpers/FrmFieldsHelper.php:1540
4018
  msgid "Taiwan"
4019
  msgstr ""
4020
 
4021
- #: classes/helpers/FrmFieldsHelper.php:1541
4022
  msgid "Tajikistan"
4023
  msgstr ""
4024
 
4025
- #: classes/helpers/FrmFieldsHelper.php:1542
4026
  msgid "Tanzania"
4027
  msgstr ""
4028
 
4029
- #: classes/helpers/FrmFieldsHelper.php:1543
4030
  msgid "Thailand"
4031
  msgstr ""
4032
 
4033
- #: classes/helpers/FrmFieldsHelper.php:1544
4034
  msgid "Togo"
4035
  msgstr ""
4036
 
4037
- #: classes/helpers/FrmFieldsHelper.php:1545
4038
  msgid "Tonga"
4039
  msgstr ""
4040
 
4041
- #: classes/helpers/FrmFieldsHelper.php:1546
4042
  msgid "Trinidad and Tobago"
4043
  msgstr ""
4044
 
4045
- #: classes/helpers/FrmFieldsHelper.php:1547
4046
  msgid "Tunisia"
4047
  msgstr ""
4048
 
4049
- #: classes/helpers/FrmFieldsHelper.php:1548
4050
  msgid "Turkey"
4051
  msgstr ""
4052
 
4053
- #: classes/helpers/FrmFieldsHelper.php:1549
4054
  msgid "Turkmenistan"
4055
  msgstr ""
4056
 
4057
- #: classes/helpers/FrmFieldsHelper.php:1550
4058
  msgid "Tuvalu"
4059
  msgstr ""
4060
 
4061
- #: classes/helpers/FrmFieldsHelper.php:1551
4062
  msgid "Uganda"
4063
  msgstr ""
4064
 
4065
- #: classes/helpers/FrmFieldsHelper.php:1552
4066
  msgid "Ukraine"
4067
  msgstr ""
4068
 
4069
- #: classes/helpers/FrmFieldsHelper.php:1553
4070
  msgid "United Arab Emirates"
4071
  msgstr ""
4072
 
4073
- #: classes/helpers/FrmFieldsHelper.php:1554
4074
  msgid "United Kingdom"
4075
  msgstr ""
4076
 
4077
- #: classes/helpers/FrmFieldsHelper.php:1555
4078
  msgid "United States"
4079
  msgstr ""
4080
 
4081
- #: classes/helpers/FrmFieldsHelper.php:1556
4082
  msgid "Uruguay"
4083
  msgstr ""
4084
 
4085
- #: classes/helpers/FrmFieldsHelper.php:1557
4086
  msgid "Uzbekistan"
4087
  msgstr ""
4088
 
4089
- #: classes/helpers/FrmFieldsHelper.php:1558
4090
  msgid "Vanuatu"
4091
  msgstr ""
4092
 
4093
- #: classes/helpers/FrmFieldsHelper.php:1559
4094
  msgid "Vatican City"
4095
  msgstr ""
4096
 
4097
- #: classes/helpers/FrmFieldsHelper.php:1560
4098
  msgid "Venezuela"
4099
  msgstr ""
4100
 
4101
- #: classes/helpers/FrmFieldsHelper.php:1561
4102
  msgid "Vietnam"
4103
  msgstr ""
4104
 
4105
- #: classes/helpers/FrmFieldsHelper.php:1562
4106
  msgid "Virgin Islands, British"
4107
  msgstr ""
4108
 
4109
- #: classes/helpers/FrmFieldsHelper.php:1563
4110
  msgid "Virgin Islands, U.S."
4111
  msgstr ""
4112
 
4113
- #: classes/helpers/FrmFieldsHelper.php:1564
4114
  msgid "Yemen"
4115
  msgstr ""
4116
 
4117
- #: classes/helpers/FrmFieldsHelper.php:1565
4118
  msgid "Zambia"
4119
  msgstr ""
4120
 
4121
- #: classes/helpers/FrmFieldsHelper.php:1566
4122
  msgid "Zimbabwe"
4123
  msgstr ""
4124
 
4125
- #: classes/helpers/FrmFieldsHelper.php:1573
4126
  msgid "Countries"
4127
  msgstr ""
4128
 
4129
- #: classes/helpers/FrmFieldsHelper.php:1578
4130
  msgid "U.S. State Abbreviations"
4131
  msgstr ""
4132
 
4133
- #: classes/helpers/FrmFieldsHelper.php:1582
4134
  msgid "U.S. States"
4135
  msgstr ""
4136
 
4137
- #: classes/helpers/FrmFieldsHelper.php:1585
4138
  msgid "Age"
4139
  msgstr ""
4140
 
4141
- #: classes/helpers/FrmFieldsHelper.php:1586
4142
  msgid "Under 18"
4143
  msgstr ""
4144
 
4145
- #: classes/helpers/FrmFieldsHelper.php:1587
4146
  msgid "18-24"
4147
  msgstr ""
4148
 
4149
- #: classes/helpers/FrmFieldsHelper.php:1588
4150
  msgid "25-34"
4151
  msgstr ""
4152
 
4153
- #: classes/helpers/FrmFieldsHelper.php:1589
4154
  msgid "35-44"
4155
  msgstr ""
4156
 
4157
- #: classes/helpers/FrmFieldsHelper.php:1590
4158
  msgid "45-54"
4159
  msgstr ""
4160
 
4161
- #: classes/helpers/FrmFieldsHelper.php:1591
4162
  msgid "55-64"
4163
  msgstr ""
4164
 
4165
- #: classes/helpers/FrmFieldsHelper.php:1592
4166
  msgid "65 or Above"
4167
  msgstr ""
4168
 
4169
- #: classes/helpers/FrmFieldsHelper.php:1593
4170
  msgid "Prefer Not to Answer"
4171
  msgstr ""
4172
 
4173
- #: classes/helpers/FrmFieldsHelper.php:1596
4174
  msgid "Satisfaction"
4175
  msgstr ""
4176
 
4177
- #: classes/helpers/FrmFieldsHelper.php:1597
4178
  msgid "Very Satisfied"
4179
  msgstr ""
4180
 
4181
- #: classes/helpers/FrmFieldsHelper.php:1598
4182
  msgid "Satisfied"
4183
  msgstr ""
4184
 
4185
- #: classes/helpers/FrmFieldsHelper.php:1599
4186
- #: classes/helpers/FrmFieldsHelper.php:1608
4187
- #: classes/helpers/FrmFieldsHelper.php:1617
4188
  msgid "Neutral"
4189
  msgstr ""
4190
 
4191
- #: classes/helpers/FrmFieldsHelper.php:1600
4192
  msgid "Unsatisfied"
4193
  msgstr ""
4194
 
4195
- #: classes/helpers/FrmFieldsHelper.php:1601
4196
  msgid "Very Unsatisfied"
4197
  msgstr ""
4198
 
4199
- #: classes/helpers/FrmFieldsHelper.php:1602
4200
- #: classes/helpers/FrmFieldsHelper.php:1611
4201
- #: classes/helpers/FrmFieldsHelper.php:1620
4202
  msgid "N/A"
4203
  msgstr ""
4204
 
4205
- #: classes/helpers/FrmFieldsHelper.php:1605
4206
  msgid "Importance"
4207
  msgstr ""
4208
 
4209
- #: classes/helpers/FrmFieldsHelper.php:1606
4210
  msgid "Very Important"
4211
  msgstr ""
4212
 
4213
- #: classes/helpers/FrmFieldsHelper.php:1607
4214
  msgid "Important"
4215
  msgstr ""
4216
 
4217
- #: classes/helpers/FrmFieldsHelper.php:1609
4218
  msgid "Somewhat Important"
4219
  msgstr ""
4220
 
4221
- #: classes/helpers/FrmFieldsHelper.php:1610
4222
  msgid "Not at all Important"
4223
  msgstr ""
4224
 
4225
- #: classes/helpers/FrmFieldsHelper.php:1614
4226
  msgid "Agreement"
4227
  msgstr ""
4228
 
4229
- #: classes/helpers/FrmFieldsHelper.php:1615
4230
  msgid "Strongly Agree"
4231
  msgstr ""
4232
 
4233
- #: classes/helpers/FrmFieldsHelper.php:1616
4234
  msgid "Agree"
4235
  msgstr ""
4236
 
4237
- #: classes/helpers/FrmFieldsHelper.php:1618
4238
  msgid "Disagree"
4239
  msgstr ""
4240
 
4241
- #: classes/helpers/FrmFieldsHelper.php:1619
4242
  msgid "Strongly Disagree"
4243
  msgstr ""
4244
 
@@ -4564,526 +4572,534 @@ msgstr ""
4564
  msgid "Parent ID"
4565
  msgstr ""
4566
 
4567
- #: classes/helpers/FrmAppHelper.php:924
4568
  msgid "View Forms and Templates"
4569
  msgstr ""
4570
 
4571
- #: classes/helpers/FrmAppHelper.php:925
4572
  msgid "Add/Edit Forms and Templates"
4573
  msgstr ""
4574
 
4575
- #: classes/helpers/FrmAppHelper.php:926
4576
  msgid "Delete Forms and Templates"
4577
  msgstr ""
4578
 
4579
- #: classes/helpers/FrmAppHelper.php:927
4580
  msgid "Access this Settings Page"
4581
  msgstr ""
4582
 
4583
- #: classes/helpers/FrmAppHelper.php:928
4584
  msgid "View Entries from Admin Area"
4585
  msgstr ""
4586
 
4587
- #: classes/helpers/FrmAppHelper.php:929
4588
  msgid "Delete Entries from Admin Area"
4589
  msgstr ""
4590
 
4591
- #: classes/helpers/FrmAppHelper.php:936
4592
  msgid "Add Entries from Admin Area"
4593
  msgstr ""
4594
 
4595
- #: classes/helpers/FrmAppHelper.php:937
4596
  msgid "Edit Entries from Admin Area"
4597
  msgstr ""
4598
 
4599
- #: classes/helpers/FrmAppHelper.php:938
4600
  msgid "View Reports"
4601
  msgstr ""
4602
 
4603
- #: classes/helpers/FrmAppHelper.php:939
4604
  msgid "Add/Edit Views"
4605
  msgstr ""
4606
 
4607
- #: classes/helpers/FrmAppHelper.php:1560
4608
  msgid "at"
4609
  msgstr ""
4610
 
4611
- #: classes/helpers/FrmAppHelper.php:1611
4612
- #: classes/helpers/FrmAppHelper.php:1630
4613
  msgid "seconds"
4614
  msgstr ""
4615
 
4616
- #: classes/helpers/FrmAppHelper.php:1624
4617
  msgid "year"
4618
  msgstr ""
4619
 
4620
- #: classes/helpers/FrmAppHelper.php:1624
4621
  msgid "years"
4622
  msgstr ""
4623
 
4624
- #: classes/helpers/FrmAppHelper.php:1625
4625
  msgid "month"
4626
  msgstr ""
4627
 
4628
- #: classes/helpers/FrmAppHelper.php:1625
4629
  msgid "months"
4630
  msgstr ""
4631
 
4632
- #: classes/helpers/FrmAppHelper.php:1626
4633
  msgid "week"
4634
  msgstr ""
4635
 
4636
- #: classes/helpers/FrmAppHelper.php:1626
4637
  msgid "weeks"
4638
  msgstr ""
4639
 
4640
- #: classes/helpers/FrmAppHelper.php:1627
4641
  msgid "day"
4642
  msgstr ""
4643
 
4644
- #: classes/helpers/FrmAppHelper.php:1627
4645
  msgid "days"
4646
  msgstr ""
4647
 
4648
- #: classes/helpers/FrmAppHelper.php:1628
4649
  msgid "hour"
4650
  msgstr ""
4651
 
4652
- #: classes/helpers/FrmAppHelper.php:1628
4653
  msgid "hours"
4654
  msgstr ""
4655
 
4656
- #: classes/helpers/FrmAppHelper.php:1629
4657
  msgid "minute"
4658
  msgstr ""
4659
 
4660
- #: classes/helpers/FrmAppHelper.php:1629
4661
  msgid "minutes"
4662
  msgstr ""
4663
 
4664
- #: classes/helpers/FrmAppHelper.php:1630
4665
  msgid "second"
4666
  msgstr ""
4667
 
4668
- #: classes/helpers/FrmAppHelper.php:1722
4669
  msgid "Give this action a label for easy reference."
4670
  msgstr ""
4671
 
4672
- #: classes/helpers/FrmAppHelper.php:1723
4673
  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."
4674
  msgstr ""
4675
 
4676
- #: classes/helpers/FrmAppHelper.php:1724
4677
  msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
4678
  msgstr ""
4679
 
4680
- #: classes/helpers/FrmAppHelper.php:1725
4681
  msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
4682
  msgstr ""
4683
 
4684
- #: classes/helpers/FrmAppHelper.php:1726
4685
  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."
4686
  msgstr ""
4687
 
4688
- #: classes/helpers/FrmAppHelper.php:1727
4689
  msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
4690
  msgstr ""
4691
 
4692
  #. translators: %1$s: Form name, %2$s: Date
4693
- #: classes/helpers/FrmAppHelper.php:1729
4694
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
4695
  msgstr ""
4696
 
4697
- #: classes/helpers/FrmAppHelper.php:1863
4698
- #: classes/helpers/FrmAppHelper.php:1934
4699
  msgid "Please wait while your site updates."
4700
  msgstr ""
4701
 
4702
- #: classes/helpers/FrmAppHelper.php:1864
4703
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
4704
  msgstr ""
4705
 
4706
- #: classes/helpers/FrmAppHelper.php:1866
4707
- #: classes/helpers/FrmAppHelper.php:1893
4708
  msgid "Loading&hellip;"
4709
  msgstr ""
4710
 
4711
- #: classes/helpers/FrmAppHelper.php:1894
4712
  msgid "Remove"
4713
  msgstr ""
4714
 
4715
- #: classes/helpers/FrmAppHelper.php:1898
4716
  msgid "No results match"
4717
  msgstr ""
4718
 
4719
- #: classes/helpers/FrmAppHelper.php:1899
4720
  msgid "That file looks like Spam."
4721
  msgstr ""
4722
 
4723
- #: classes/helpers/FrmAppHelper.php:1900
4724
  msgid "There is an error in the calculation in the field with key"
4725
  msgstr ""
4726
 
4727
- #: classes/helpers/FrmAppHelper.php:1901
4728
  msgid "Please complete the preceding required fields before uploading a file."
4729
  msgstr ""
4730
 
4731
- #: classes/helpers/FrmAppHelper.php:1908
4732
  msgid "(Click to add description)"
4733
  msgstr ""
4734
 
4735
- #: classes/helpers/FrmAppHelper.php:1909
4736
  msgid "(Blank)"
4737
  msgstr ""
4738
 
4739
- #: classes/helpers/FrmAppHelper.php:1910
4740
  msgid "(no label)"
4741
  msgstr ""
4742
 
4743
- #: classes/helpers/FrmAppHelper.php:1911
4744
  msgid "Saving"
4745
  msgstr ""
4746
 
4747
- #: classes/helpers/FrmAppHelper.php:1912
4748
  msgid "Saved"
4749
  msgstr ""
4750
 
4751
- #: classes/helpers/FrmAppHelper.php:1913
4752
  msgid "OK"
4753
  msgstr ""
4754
 
4755
- #: classes/helpers/FrmAppHelper.php:1916
4756
  msgid "Clear default value when typing"
4757
  msgstr ""
4758
 
4759
- #: classes/helpers/FrmAppHelper.php:1917
4760
  msgid "Do not clear default value when typing"
4761
  msgstr ""
4762
 
4763
- #: classes/helpers/FrmAppHelper.php:1918
4764
  msgid "Default value will pass form validation"
4765
  msgstr ""
4766
 
4767
- #: classes/helpers/FrmAppHelper.php:1919
4768
  msgid "Default value will NOT pass form validation"
4769
  msgstr ""
4770
 
4771
- #: classes/helpers/FrmAppHelper.php:1921
4772
  msgid "Are you sure you want to delete this field and all data associated with it?"
4773
  msgstr ""
4774
 
4775
- #: classes/helpers/FrmAppHelper.php:1922
4776
  msgid "WARNING: This will delete all fields inside of the section as well."
4777
  msgstr ""
4778
 
4779
- #: classes/helpers/FrmAppHelper.php:1923
4780
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
4781
  msgstr ""
4782
 
4783
- #: classes/helpers/FrmAppHelper.php:1926
4784
  msgid "Enter Email"
4785
  msgstr ""
4786
 
4787
- #: classes/helpers/FrmAppHelper.php:1927
4788
  msgid "Confirm Email"
4789
  msgstr ""
4790
 
4791
- #: classes/helpers/FrmAppHelper.php:1928
4792
  msgid "Conditional content here"
4793
  msgstr ""
4794
 
4795
- #: classes/helpers/FrmAppHelper.php:1930
4796
  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."
4797
  msgstr ""
4798
 
4799
- #: classes/helpers/FrmAppHelper.php:1931
4800
  msgid "Enter Password"
4801
  msgstr ""
4802
 
4803
- #: classes/helpers/FrmAppHelper.php:1932
4804
  msgid "Confirm Password"
4805
  msgstr ""
4806
 
4807
- #: classes/helpers/FrmAppHelper.php:1933
4808
  msgid "Import Complete"
4809
  msgstr ""
4810
 
4811
- #: classes/helpers/FrmAppHelper.php:1935
4812
  msgid "Warning: There is no way to retrieve unsaved entries."
4813
  msgstr ""
4814
 
4815
- #: classes/helpers/FrmAppHelper.php:1936
4816
  msgid "Private"
4817
  msgstr ""
4818
 
4819
- #: classes/helpers/FrmAppHelper.php:1939
4820
  msgid "No new licenses were found"
4821
  msgstr ""
4822
 
4823
- #: classes/helpers/FrmAppHelper.php:1940
4824
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
4825
  msgstr ""
4826
 
4827
- #: classes/helpers/FrmAppHelper.php:1941
4828
  msgid "This calculation may have shortcodes that work in Views but not forms."
4829
  msgstr ""
4830
 
4831
- #: classes/helpers/FrmAppHelper.php:1942
4832
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
4833
  msgstr ""
4834
 
4835
- #: classes/helpers/FrmAppHelper.php:1943
4836
  msgid "Please enter a Repeat Limit that is greater than 1."
4837
  msgstr ""
4838
 
4839
- #: classes/helpers/FrmAppHelper.php:1968
4840
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
4841
  msgstr ""
4842
 
4843
- #: classes/helpers/FrmAppHelper.php:1993
4844
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
4845
  msgstr ""
4846
 
4847
- #: classes/helpers/FrmAppHelper.php:2015
 
 
 
 
 
 
 
 
4848
  msgid "English"
4849
  msgstr ""
4850
 
4851
- #: classes/helpers/FrmAppHelper.php:2016
4852
  msgid "Afrikaans"
4853
  msgstr ""
4854
 
4855
- #: classes/helpers/FrmAppHelper.php:2017
4856
  msgid "Albanian"
4857
  msgstr ""
4858
 
4859
- #: classes/helpers/FrmAppHelper.php:2018
4860
  msgid "Arabic"
4861
  msgstr ""
4862
 
4863
- #: classes/helpers/FrmAppHelper.php:2019
4864
  msgid "Armenian"
4865
  msgstr ""
4866
 
4867
- #: classes/helpers/FrmAppHelper.php:2020
4868
  msgid "Azerbaijani"
4869
  msgstr ""
4870
 
4871
- #: classes/helpers/FrmAppHelper.php:2021
4872
  msgid "Basque"
4873
  msgstr ""
4874
 
4875
- #: classes/helpers/FrmAppHelper.php:2022
4876
  msgid "Bosnian"
4877
  msgstr ""
4878
 
4879
- #: classes/helpers/FrmAppHelper.php:2023
4880
  msgid "Bulgarian"
4881
  msgstr ""
4882
 
4883
- #: classes/helpers/FrmAppHelper.php:2024
4884
  msgid "Catalan"
4885
  msgstr ""
4886
 
4887
- #: classes/helpers/FrmAppHelper.php:2025
4888
  msgid "Chinese Hong Kong"
4889
  msgstr ""
4890
 
4891
- #: classes/helpers/FrmAppHelper.php:2026
4892
  msgid "Chinese Simplified"
4893
  msgstr ""
4894
 
4895
- #: classes/helpers/FrmAppHelper.php:2027
4896
  msgid "Chinese Traditional"
4897
  msgstr ""
4898
 
4899
- #: classes/helpers/FrmAppHelper.php:2028
4900
  msgid "Croatian"
4901
  msgstr ""
4902
 
4903
- #: classes/helpers/FrmAppHelper.php:2029
4904
  msgid "Czech"
4905
  msgstr ""
4906
 
4907
- #: classes/helpers/FrmAppHelper.php:2030
4908
  msgid "Danish"
4909
  msgstr ""
4910
 
4911
- #: classes/helpers/FrmAppHelper.php:2031
4912
  msgid "Dutch"
4913
  msgstr ""
4914
 
4915
- #: classes/helpers/FrmAppHelper.php:2032
4916
  msgid "English/UK"
4917
  msgstr ""
4918
 
4919
- #: classes/helpers/FrmAppHelper.php:2033
4920
  msgid "Esperanto"
4921
  msgstr ""
4922
 
4923
- #: classes/helpers/FrmAppHelper.php:2034
4924
  msgid "Estonian"
4925
  msgstr ""
4926
 
4927
- #: classes/helpers/FrmAppHelper.php:2035
4928
  msgid "Faroese"
4929
  msgstr ""
4930
 
4931
- #: classes/helpers/FrmAppHelper.php:2036
4932
  msgid "Farsi/Persian"
4933
  msgstr ""
4934
 
4935
- #: classes/helpers/FrmAppHelper.php:2037
4936
  msgid "Filipino"
4937
  msgstr ""
4938
 
4939
- #: classes/helpers/FrmAppHelper.php:2038
4940
  msgid "Finnish"
4941
  msgstr ""
4942
 
4943
- #: classes/helpers/FrmAppHelper.php:2039
4944
  msgid "French"
4945
  msgstr ""
4946
 
4947
- #: classes/helpers/FrmAppHelper.php:2040
4948
  msgid "French/Canadian"
4949
  msgstr ""
4950
 
4951
- #: classes/helpers/FrmAppHelper.php:2041
4952
  msgid "French/Swiss"
4953
  msgstr ""
4954
 
4955
- #: classes/helpers/FrmAppHelper.php:2042
4956
  msgid "German"
4957
  msgstr ""
4958
 
4959
- #: classes/helpers/FrmAppHelper.php:2043
4960
  msgid "German/Austria"
4961
  msgstr ""
4962
 
4963
- #: classes/helpers/FrmAppHelper.php:2044
4964
  msgid "German/Switzerland"
4965
  msgstr ""
4966
 
4967
- #: classes/helpers/FrmAppHelper.php:2045
4968
  msgid "Greek"
4969
  msgstr ""
4970
 
4971
- #: classes/helpers/FrmAppHelper.php:2046
4972
- #: classes/helpers/FrmAppHelper.php:2047
4973
  msgid "Hebrew"
4974
  msgstr ""
4975
 
4976
- #: classes/helpers/FrmAppHelper.php:2048
4977
  msgid "Hindi"
4978
  msgstr ""
4979
 
4980
- #: classes/helpers/FrmAppHelper.php:2049
4981
  msgid "Hungarian"
4982
  msgstr ""
4983
 
4984
- #: classes/helpers/FrmAppHelper.php:2050
4985
  msgid "Icelandic"
4986
  msgstr ""
4987
 
4988
- #: classes/helpers/FrmAppHelper.php:2051
4989
  msgid "Indonesian"
4990
  msgstr ""
4991
 
4992
- #: classes/helpers/FrmAppHelper.php:2052
4993
  msgid "Italian"
4994
  msgstr ""
4995
 
4996
- #: classes/helpers/FrmAppHelper.php:2053
4997
  msgid "Japanese"
4998
  msgstr ""
4999
 
5000
- #: classes/helpers/FrmAppHelper.php:2054
5001
  msgid "Korean"
5002
  msgstr ""
5003
 
5004
- #: classes/helpers/FrmAppHelper.php:2055
5005
  msgid "Latvian"
5006
  msgstr ""
5007
 
5008
- #: classes/helpers/FrmAppHelper.php:2056
5009
  msgid "Lithuanian"
5010
  msgstr ""
5011
 
5012
- #: classes/helpers/FrmAppHelper.php:2057
5013
  msgid "Malaysian"
5014
  msgstr ""
5015
 
5016
- #: classes/helpers/FrmAppHelper.php:2058
5017
  msgid "Norwegian"
5018
  msgstr ""
5019
 
5020
- #: classes/helpers/FrmAppHelper.php:2059
5021
  msgid "Polish"
5022
  msgstr ""
5023
 
5024
- #: classes/helpers/FrmAppHelper.php:2060
5025
  msgid "Portuguese"
5026
  msgstr ""
5027
 
5028
- #: classes/helpers/FrmAppHelper.php:2061
5029
  msgid "Portuguese/Brazilian"
5030
  msgstr ""
5031
 
5032
- #: classes/helpers/FrmAppHelper.php:2062
5033
  msgid "Portuguese/Portugal"
5034
  msgstr ""
5035
 
5036
- #: classes/helpers/FrmAppHelper.php:2063
5037
  msgid "Romanian"
5038
  msgstr ""
5039
 
5040
- #: classes/helpers/FrmAppHelper.php:2064
5041
  msgid "Russian"
5042
  msgstr ""
5043
 
5044
- #: classes/helpers/FrmAppHelper.php:2065
5045
- #: classes/helpers/FrmAppHelper.php:2066
5046
  msgid "Serbian"
5047
  msgstr ""
5048
 
5049
- #: classes/helpers/FrmAppHelper.php:2067
5050
  msgid "Slovak"
5051
  msgstr ""
5052
 
5053
- #: classes/helpers/FrmAppHelper.php:2068
5054
  msgid "Slovenian"
5055
  msgstr ""
5056
 
5057
- #: classes/helpers/FrmAppHelper.php:2069
5058
  msgid "Spanish"
5059
  msgstr ""
5060
 
5061
- #: classes/helpers/FrmAppHelper.php:2070
5062
  msgid "Spanish/Latin America"
5063
  msgstr ""
5064
 
5065
- #: classes/helpers/FrmAppHelper.php:2071
5066
  msgid "Swedish"
5067
  msgstr ""
5068
 
5069
- #: classes/helpers/FrmAppHelper.php:2072
5070
  msgid "Tamil"
5071
  msgstr ""
5072
 
5073
- #: classes/helpers/FrmAppHelper.php:2073
5074
  msgid "Thai"
5075
  msgstr ""
5076
 
5077
- #: classes/helpers/FrmAppHelper.php:2074
5078
- #: classes/helpers/FrmAppHelper.php:2075
5079
  msgid "Turkish"
5080
  msgstr ""
5081
 
5082
- #: classes/helpers/FrmAppHelper.php:2076
5083
  msgid "Ukranian"
5084
  msgstr ""
5085
 
5086
- #: classes/helpers/FrmAppHelper.php:2077
5087
  msgid "Vietnamese"
5088
  msgstr ""
5089
 
2
  # This file is distributed under the same license as the Formidable Forms plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Formidable Forms 4.0.02\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-05-29T23:16:23+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.1.0\n"
15
  "X-Domain: formidable\n"
237
  msgstr ""
238
 
239
  #: classes/models/FrmField.php:34
240
+ #: classes/controllers/FrmFormsController.php:1123
241
  msgid "Email"
242
  msgstr ""
243
 
262
  msgstr ""
263
 
264
  #: classes/models/FrmField.php:58
265
+ #: classes/controllers/FrmFormsController.php:1118
266
  msgid "User ID"
267
  msgstr ""
268
 
365
 
366
  #: classes/models/FrmEntryValidate.php:15
367
  #: classes/models/FrmSettings.php:105
368
+ #: classes/controllers/FrmFormActionsController.php:386
369
  msgid "You do not have permission to do that"
370
  msgstr ""
371
 
399
  msgstr ""
400
 
401
  #: classes/models/FrmSettings.php:103
402
+ #: classes/views/frm-forms/form.php:36
403
  #: classes/views/styles/_sample_form.php:68
404
  msgid "Submit"
405
  msgstr ""
412
  msgid "The reCAPTCHA was not entered correctly"
413
  msgstr ""
414
 
415
+ #: classes/models/fields/FrmFieldType.php:419
416
+ #: classes/helpers/FrmFieldsHelper.php:289
417
  msgid "This field is invalid"
418
  msgstr ""
419
 
420
  #. translators: %s: The field name.
421
  #. translators: %s: Field name
422
+ #: classes/models/fields/FrmFieldType.php:422
423
  #: classes/helpers/FrmFieldsHelper.php:167
424
+ #: classes/helpers/FrmFieldsHelper.php:291
425
  #: classes/helpers/FrmXMLHelper.php:1094
426
  msgid "%s is invalid"
427
  msgstr ""
428
 
429
+ #: classes/models/fields/FrmFieldType.php:429
430
  msgid "Untitled"
431
  msgstr ""
432
 
470
  msgid "There are no options for this action."
471
  msgstr ""
472
 
473
+ #: classes/models/FrmFormAction.php:809
474
  msgid "Draft is saved"
475
  msgstr ""
476
 
477
+ #: classes/models/FrmFormAction.php:810
478
  msgid "Entry is created"
479
  msgstr ""
480
 
481
+ #: classes/models/FrmFormAction.php:811
482
  msgid "Entry is updated"
483
  msgstr ""
484
 
485
+ #: classes/models/FrmFormAction.php:812
486
  msgid "Entry is deleted"
487
  msgstr ""
488
 
489
+ #: classes/models/FrmFormAction.php:813
490
  msgid "Entry is imported"
491
  msgstr ""
492
 
514
  msgid "New Style"
515
  msgstr ""
516
 
517
+ #: classes/models/FrmStyle.php:157
518
  msgid "WARNING: Any changes made to this file will be lost when your Formidable settings are updated"
519
  msgstr ""
520
 
521
+ #: classes/models/FrmStyle.php:237
522
  msgid "Formidable Style"
523
  msgstr ""
524
 
525
+ #: classes/models/FrmStyle.php:474
526
  #: classes/views/styles/_field-description.php:17
527
  msgid "normal"
528
  msgstr ""
529
 
530
+ #: classes/models/FrmStyle.php:477
531
  msgid "bold"
532
  msgstr ""
533
 
542
  msgid "Upgrade to Pro"
543
  msgstr ""
544
 
545
+ #: classes/controllers/FrmAddonsController.php:48
546
  msgid "There are no plugins on your site that require a license"
547
  msgstr ""
548
 
549
+ #: classes/controllers/FrmAddonsController.php:472
550
  msgid "Installed"
551
  msgstr ""
552
 
553
+ #: classes/controllers/FrmAddonsController.php:477
554
+ #: classes/helpers/FrmAppHelper.php:2034
555
  msgid "Active"
556
  msgstr ""
557
 
558
+ #: classes/controllers/FrmAddonsController.php:482
559
  msgid "Not Installed"
560
  msgstr ""
561
 
562
+ #: classes/controllers/FrmAddonsController.php:742
563
  msgid "Your plugin has been installed. Please reload the page to see more options."
564
  msgstr ""
565
 
566
+ #: classes/controllers/FrmAddonsController.php:769
567
  msgid "Sorry, you're site requires FTP authentication. Please install plugins manaully."
568
  msgstr ""
569
 
570
+ #: classes/controllers/FrmAddonsController.php:812
571
  msgid "Your plugin has been activated. Please reload the page to see more options."
572
  msgstr ""
573
 
574
+ #: classes/controllers/FrmAppController.php:139
575
  msgid "Build"
576
  msgstr ""
577
 
578
+ #: classes/controllers/FrmAppController.php:146
579
  #: classes/views/frm-forms/settings.php:8
580
+ #: classes/views/frm-settings/form.php:9
581
+ #: classes/helpers/FrmFormsListHelper.php:302
582
  msgid "Settings"
583
  msgstr ""
584
 
585
+ #: classes/controllers/FrmAppController.php:153
586
+ #: classes/controllers/FrmXMLController.php:133
587
  #: classes/controllers/FrmFormsController.php:725
588
  #: classes/controllers/FrmEntriesController.php:8
589
+ #: classes/controllers/FrmEntriesController.php:91
590
  #: classes/views/xml/import_form.php:114
591
  msgid "Entries"
592
  msgstr ""
593
 
594
+ #: classes/controllers/FrmAppController.php:164
595
+ #: classes/controllers/FrmAppController.php:170
596
  msgid "Views"
597
  msgstr ""
598
 
599
+ #: classes/controllers/FrmAppController.php:176
600
+ #: classes/controllers/FrmAppController.php:182
601
  msgid "Reports"
602
  msgstr ""
603
 
604
+ #: classes/controllers/FrmAppController.php:198
605
  msgid "Build a Form"
606
  msgstr ""
607
 
608
  #. translators: %1$s: Start link HTML, %2$s: End link HTML, %3$s: Start link HTML, %4$s: End link HTML
609
+ #: classes/controllers/FrmAppController.php:242
610
  msgid "This site has been previously authorized to run Formidable Forms. %1$sInstall Formidable Pro%2$s or %3$sdeauthorize%4$s this site to continue running the free version and remove this message."
611
  msgstr ""
612
 
623
  msgid "There was an error importing form"
624
  msgstr ""
625
 
626
+ #: classes/controllers/FrmXMLController.php:132
627
  #: classes/controllers/FrmFormsController.php:6
628
  #: classes/controllers/FrmFormsController.php:735
629
  #: classes/views/frm-forms/list.php:5
630
  msgid "Forms"
631
  msgstr ""
632
 
633
+ #: classes/controllers/FrmXMLController.php:168
634
  msgid "Oops, you didn't select a file."
635
  msgstr ""
636
 
637
+ #: classes/controllers/FrmXMLController.php:178
638
  msgid "The file does not exist, please try again."
639
  msgstr ""
640
 
641
+ #: classes/controllers/FrmXMLController.php:205
642
  msgid "XML import is not enabled on your server with the libxml_disable_entity_loader function."
643
  msgstr ""
644
 
645
+ #: classes/controllers/FrmXMLController.php:413
646
  msgid "Please select a form"
647
  msgstr ""
648
 
649
+ #: classes/controllers/FrmXMLController.php:470
650
  msgid "There are no entries for that form."
651
  msgstr ""
652
 
654
  msgid "Global Settings"
655
  msgstr ""
656
 
657
+ #: classes/controllers/FrmSettingsController.php:36
658
  msgid "General Settings"
659
  msgstr ""
660
 
661
+ #: classes/controllers/FrmSettingsController.php:42
662
  msgid "Message Defaults"
663
  msgstr ""
664
 
665
+ #: classes/controllers/FrmSettingsController.php:48
666
  msgid "Permissions"
667
  msgstr ""
668
 
669
+ #: classes/controllers/FrmSettingsController.php:54
670
  msgid "reCaptcha"
671
  msgstr ""
672
 
673
+ #: classes/controllers/FrmSettingsController.php:58
674
  msgid "White Labeling"
675
  msgstr ""
676
 
677
+ #: classes/controllers/FrmSettingsController.php:63
678
  msgid "White labeling options"
679
  msgstr ""
680
 
681
+ #: classes/controllers/FrmSettingsController.php:83
682
  #: classes/views/addons/settings.php:2
683
  msgid "Plugin Licenses"
684
  msgstr ""
685
 
686
+ #: classes/controllers/FrmSettingsController.php:92
687
  #: classes/views/frm-forms/settings-advanced.php:180
688
  msgid "Miscellaneous"
689
  msgstr ""
690
 
691
+ #: classes/controllers/FrmSettingsController.php:215
692
+ #: classes/controllers/FrmSettingsController.php:218
693
  msgid "Settings Saved"
694
  msgstr ""
695
 
696
+ #: classes/controllers/FrmSettingsController.php:237
697
+ #: classes/views/frm-forms/_publish_box.php:9
698
+ #: classes/views/frm-forms/edit.php:23
699
+ #: classes/views/frm-forms/add_field_links.php:167
700
+ #: classes/views/styles/header-buttons.php:7
701
+ #: classes/views/styles/manage.php:79
702
+ #: classes/helpers/FrmStylesHelper.php:70
703
+ #: deprecated/FrmDeprecated.php:63
704
+ msgid "Update"
705
+ msgstr ""
706
+
707
+ #: classes/controllers/FrmSettingsController.php:264
708
  msgid "Extra form features like file uploads, pagination, etc"
709
  msgstr ""
710
 
711
+ #: classes/controllers/FrmSettingsController.php:265
712
  msgid "Repeaters & cascading fields for advanced forms"
713
  msgstr ""
714
 
715
+ #: classes/controllers/FrmSettingsController.php:266
716
  msgid "Flexibly view, search, edit, and delete entries anywhere"
717
  msgstr ""
718
 
719
+ #: classes/controllers/FrmSettingsController.php:267
720
  msgid "Display entries with virtually limitless Formidable views"
721
  msgstr ""
722
 
723
+ #: classes/controllers/FrmSettingsController.php:268
724
  msgid "Create surveys & polls"
725
  msgstr ""
726
 
727
+ #: classes/controllers/FrmSettingsController.php:269
728
  msgid "WordPress user registration and login forms"
729
  msgstr ""
730
 
731
+ #: classes/controllers/FrmSettingsController.php:270
732
  msgid "Create Stripe, PayPal or Authorize.net payment forms"
733
  msgstr ""
734
 
735
+ #: classes/controllers/FrmSettingsController.php:271
736
  msgid "Powerful conditional logic for smart forms"
737
  msgstr ""
738
 
739
+ #: classes/controllers/FrmSettingsController.php:272
740
  msgid "Integrations with 1000+ marketing & payment services"
741
  msgstr ""
742
 
743
+ #: classes/controllers/FrmSettingsController.php:273
744
  msgid "Collect digital signatures"
745
  msgstr ""
746
 
747
+ #: classes/controllers/FrmSettingsController.php:274
748
  msgid "Accept user-submitted content with Post submissions"
749
  msgstr ""
750
 
751
+ #: classes/controllers/FrmSettingsController.php:275
752
  msgid "Email routing"
753
  msgstr ""
754
 
755
+ #: classes/controllers/FrmSettingsController.php:276
756
  msgid "Create calculator forms"
757
  msgstr ""
758
 
759
+ #: classes/controllers/FrmSettingsController.php:277
760
  msgid "Save draft entries and return later"
761
  msgstr ""
762
 
763
+ #: classes/controllers/FrmSettingsController.php:278
764
  msgid "Analyze form data with graphs & stats"
765
  msgstr ""
766
 
781
 
782
  #: classes/controllers/FrmStylesController.php:38
783
  #: classes/views/frm-entries/sidebar-shared.php:35
784
+ #: classes/helpers/FrmFormsListHelper.php:301
785
  msgid "Edit"
786
  msgstr ""
787
 
802
  msgid "Your form styles have been saved."
803
  msgstr ""
804
 
805
+ #: classes/controllers/FrmStylesController.php:388
806
+ #: classes/controllers/FrmFormsController.php:913
807
  msgid "General"
808
  msgstr ""
809
 
810
+ #: classes/controllers/FrmStylesController.php:389
811
  #: classes/controllers/FrmFormsController.php:724
812
  #: classes/views/frm-forms/settings-advanced.php:8
813
  #: classes/views/xml/import_form.php:111
816
  msgid "Form Title"
817
  msgstr ""
818
 
819
+ #: classes/controllers/FrmStylesController.php:390
820
  #: classes/views/frm-forms/new-form-overlay.php:16
821
  #: classes/views/frm-forms/new-form-overlay.php:17
822
  #: classes/views/frm-forms/settings-advanced.php:22
824
  msgid "Form Description"
825
  msgstr ""
826
 
827
+ #: classes/controllers/FrmStylesController.php:391
828
  msgid "Field Labels"
829
  msgstr ""
830
 
831
+ #: classes/controllers/FrmStylesController.php:392
832
  #: classes/views/frm-fields/back-end/field-description.php:3
833
  #: classes/helpers/FrmFormsHelper.php:429
834
  msgid "Field Description"
835
  msgstr ""
836
 
837
+ #: classes/controllers/FrmStylesController.php:393
838
  msgid "Field Colors"
839
  msgstr ""
840
 
841
+ #: classes/controllers/FrmStylesController.php:394
842
  msgid "Field Settings"
843
  msgstr ""
844
 
845
+ #: classes/controllers/FrmStylesController.php:395
846
  msgid "Check Box & Radio Fields"
847
  msgstr ""
848
 
849
+ #: classes/controllers/FrmStylesController.php:396
850
  msgid "Buttons"
851
  msgstr ""
852
 
853
+ #: classes/controllers/FrmStylesController.php:397
854
  msgid "Form Messages"
855
  msgstr ""
856
 
925
  msgstr ""
926
 
927
  #: classes/controllers/FrmFormsController.php:626
928
+ #: classes/controllers/FrmEntriesController.php:75
929
  #: classes/views/xml/import_form.php:145
930
  #: classes/widgets/FrmShowForm.php:56
931
  msgid "Form"
960
 
961
  #: classes/controllers/FrmFormsController.php:722
962
  #: classes/controllers/FrmFormsController.php:726
963
+ #: classes/views/shared/mb_adv_info.php:93
964
  #: classes/helpers/FrmCSVExportHelper.php:155
965
  msgid "Key"
966
  msgstr ""
982
  msgid "Template was successfully updated."
983
  msgstr ""
984
 
985
+ #: classes/controllers/FrmFormsController.php:914
986
  msgid "General Form Settings"
987
  msgstr ""
988
 
989
+ #: classes/controllers/FrmFormsController.php:919
990
  msgid "Actions & Notifications"
991
  msgstr ""
992
 
993
+ #: classes/controllers/FrmFormsController.php:925
994
+ #: classes/controllers/FrmFormsController.php:930
995
  msgid "Form Permissions"
996
  msgstr ""
997
 
998
+ #: classes/controllers/FrmFormsController.php:934
999
  msgid "Form Scheduling"
1000
  msgstr ""
1001
 
1002
+ #: classes/controllers/FrmFormsController.php:939
1003
  msgid "Form scheduling settings"
1004
  msgstr ""
1005
 
1006
+ #: classes/controllers/FrmFormsController.php:943
1007
  msgid "Styling & Buttons"
1008
  msgstr ""
1009
 
1010
+ #: classes/controllers/FrmFormsController.php:949
1011
  msgid "Customize HTML"
1012
  msgstr ""
1013
 
1014
+ #: classes/controllers/FrmFormsController.php:1055
1015
  msgid "Customize field values with the following parameters."
1016
  msgstr ""
1017
 
1018
+ #: classes/controllers/FrmFormsController.php:1092
1019
  msgid "Separator"
1020
  msgstr ""
1021
 
1022
+ #: classes/controllers/FrmFormsController.php:1093
1023
  msgid "Use a different separator for checkbox fields"
1024
  msgstr ""
1025
 
1026
+ #: classes/controllers/FrmFormsController.php:1096
1027
  msgid "Date Format"
1028
  msgstr ""
1029
 
1030
+ #: classes/controllers/FrmFormsController.php:1099
1031
  #: classes/views/frm-fields/back-end/settings.php:22
1032
  msgid "Field Label"
1033
  msgstr ""
1034
 
1035
+ #: classes/controllers/FrmFormsController.php:1102
1036
  msgid "No Auto P"
1037
  msgstr ""
1038
 
1039
+ #: classes/controllers/FrmFormsController.php:1103
1040
  msgid "Do not automatically add any paragraphs or line breaks"
1041
  msgstr ""
1042
 
1043
+ #: classes/controllers/FrmFormsController.php:1119
1044
  msgid "First Name"
1045
  msgstr ""
1046
 
1047
+ #: classes/controllers/FrmFormsController.php:1120
1048
  msgid "Last Name"
1049
  msgstr ""
1050
 
1051
+ #: classes/controllers/FrmFormsController.php:1121
1052
  msgid "Display Name"
1053
  msgstr ""
1054
 
1055
+ #: classes/controllers/FrmFormsController.php:1122
1056
  msgid "User Login"
1057
  msgstr ""
1058
 
1059
+ #: classes/controllers/FrmFormsController.php:1124
1060
  msgid "Avatar"
1061
  msgstr ""
1062
 
1063
+ #: classes/controllers/FrmFormsController.php:1125
1064
  msgid "Author Link"
1065
  msgstr ""
1066
 
1067
+ #: classes/controllers/FrmFormsController.php:1138
1068
  #: classes/views/frm-entries/sidebar-shared.php:46
1069
  msgid "Entry ID"
1070
  msgstr ""
1071
 
1072
+ #: classes/controllers/FrmFormsController.php:1139
1073
+ #: classes/controllers/FrmEntriesController.php:70
1074
  #: classes/views/frm-entries/sidebar-shared.php:52
1075
  #: classes/views/frm-entries/form.php:52
1076
  msgid "Entry Key"
1077
  msgstr ""
1078
 
1079
+ #: classes/controllers/FrmFormsController.php:1140
1080
  msgid "Post ID"
1081
  msgstr ""
1082
 
1083
+ #: classes/controllers/FrmFormsController.php:1141
1084
  msgid "User IP"
1085
  msgstr ""
1086
 
1087
+ #: classes/controllers/FrmFormsController.php:1142
1088
  msgid "Entry created"
1089
  msgstr ""
1090
 
1091
+ #: classes/controllers/FrmFormsController.php:1143
1092
  msgid "Entry updated"
1093
  msgstr ""
1094
 
1095
+ #: classes/controllers/FrmFormsController.php:1145
1096
  msgid "Site URL"
1097
  msgstr ""
1098
 
1099
+ #: classes/controllers/FrmFormsController.php:1146
1100
  msgid "Site Name"
1101
  msgstr ""
1102
 
1103
+ #: classes/controllers/FrmFormsController.php:1154
1104
  msgid "Default Msg"
1105
  msgstr ""
1106
 
1107
+ #: classes/controllers/FrmFormsController.php:1155
1108
  msgid "Default HTML"
1109
  msgstr ""
1110
 
1111
+ #: classes/controllers/FrmFormsController.php:1156
1112
  msgid "Default Plain"
1113
  msgstr ""
1114
 
1115
+ #: classes/controllers/FrmFormsController.php:1245
1116
  msgid "No forms were specified"
1117
  msgstr ""
1118
 
1119
+ #: classes/controllers/FrmFormsController.php:1354
1120
  msgid "Abnormal HTML characters prevented your form from saving correctly"
1121
  msgstr ""
1122
 
1123
+ #: classes/controllers/FrmFormsController.php:1423
1124
  #: classes/views/frm-forms/list-templates.php:74
1125
  #: classes/views/xml/import_form.php:126
1126
  #: classes/views/styles/manage.php:49
1127
+ #: classes/helpers/FrmFormsListHelper.php:315
1128
  #: classes/helpers/FrmFormsHelper.php:57
1129
  #: classes/helpers/FrmFormsHelper.php:103
1130
  #: classes/helpers/FrmFormsHelper.php:138
1132
  msgid "(no title)"
1133
  msgstr ""
1134
 
1135
+ #: classes/controllers/FrmFormsController.php:1469
1136
+ #: classes/controllers/FrmFormsController.php:1483
1137
  msgid "Please select a valid form"
1138
  msgstr ""
1139
 
1140
+ #: classes/controllers/FrmFormsController.php:1715
1141
  msgid "Please wait while you are redirected."
1142
  msgstr ""
1143
 
1144
  #. translators: %1$s: Start link HTML, %2$s: End link HTML
1145
+ #: classes/controllers/FrmFormsController.php:1751
1146
  msgid "%1$sClick here%2$s if you are not automatically redirected."
1147
  msgstr ""
1148
 
1189
  msgid "%s form actions"
1190
  msgstr ""
1191
 
1192
+ #: classes/controllers/FrmEntriesController.php:76
1193
  msgid "Entry Name"
1194
  msgstr ""
1195
 
1196
+ #: classes/controllers/FrmEntriesController.php:77
1197
  #: classes/helpers/FrmCSVExportHelper.php:150
1198
  msgid "Created By"
1199
  msgstr ""
1200
 
1201
+ #: classes/controllers/FrmEntriesController.php:80
1202
  msgid "Entry creation date"
1203
  msgstr ""
1204
 
1205
+ #: classes/controllers/FrmEntriesController.php:81
1206
  msgid "Entry update date"
1207
  msgstr ""
1208
 
1209
+ #: classes/controllers/FrmEntriesController.php:387
1210
  msgid "Your import is complete"
1211
  msgstr ""
1212
 
1213
  #. translators: %1$s: Time string
1214
+ #: classes/controllers/FrmEntriesController.php:399
1215
  msgid "This form is in the trash and is scheduled to be deleted permanently in %s along with any entries."
1216
  msgstr ""
1217
 
1218
+ #: classes/controllers/FrmEntriesController.php:418
1219
  msgid "You are trying to view an entry that does not exist."
1220
  msgstr ""
1221
 
1222
+ #: classes/controllers/FrmEntriesController.php:446
1223
  msgid "Entry was Successfully Deleted"
1224
  msgstr ""
1225
 
1226
+ #: classes/controllers/FrmEntriesController.php:478
1227
  msgid "Entries Successfully Deleted"
1228
  msgstr ""
1229
 
1230
+ #: classes/controllers/FrmEntriesController.php:481
1231
  msgid "No Entries Selected"
1232
  msgstr ""
1233
 
1235
  msgid "Show options"
1236
  msgstr ""
1237
 
 
 
 
 
 
 
 
 
 
 
1238
  #: classes/views/frm-forms/_publish_box.php:16
1239
  #: classes/views/frm-forms/list-templates.php:123
1240
+ #: classes/helpers/FrmFormsListHelper.php:306
1241
  msgid "Preview"
1242
  msgstr ""
1243
 
1287
  #: classes/views/frm-forms/new-form-overlay.php:31
1288
  #: classes/views/shared/confirm-overlay.php:14
1289
  #: classes/views/shared/admin-header.php:44
1290
+ #: classes/helpers/FrmAppHelper.php:2003
1291
  msgid "Cancel"
1292
  msgstr ""
1293
 
1296
  msgstr ""
1297
 
1298
  #: classes/views/frm-forms/list.php:21
1299
+ #: classes/views/shared/mb_adv_info.php:35
1300
+ #: classes/views/shared/mb_adv_info.php:178
1301
+ #: classes/views/frm-entries/list.php:38
1302
+ #: classes/helpers/FrmAppHelper.php:811
1303
  msgid "Search"
1304
  msgstr ""
1305
 
1356
  msgstr ""
1357
 
1358
  #: classes/views/frm-forms/list-templates.php:66
1359
+ #: classes/views/frm-entries/no_entries.php:37
1360
  msgid "You have not created any forms yet."
1361
  msgstr ""
1362
 
1370
  msgstr ""
1371
 
1372
  #: classes/views/frm-forms/list-templates.php:128
1373
+ #: classes/views/frm-form-actions/form_action.php:21
1374
+ #: classes/helpers/FrmEntriesListHelper.php:271
1375
  #: classes/helpers/FrmFormsListHelper.php:133
1376
  #: classes/helpers/FrmFormsHelper.php:1063
1377
  msgid "Delete"
1411
  msgid "Move Field"
1412
  msgstr ""
1413
 
1414
+ #: classes/views/frm-forms/add_field.php:18
1415
  msgid "Delete Field"
1416
  msgstr ""
1417
 
1418
+ #: classes/views/frm-forms/add_field.php:21
1419
  msgid "Duplicate Section"
1420
  msgstr ""
1421
 
1422
+ #: classes/views/frm-forms/add_field.php:21
1423
  msgid "Duplicate Field"
1424
  msgstr ""
1425
 
1426
+ #: classes/views/frm-forms/add_field.php:36
1427
  msgid "(Collapsed)"
1428
  msgstr ""
1429
 
1430
+ #: classes/views/frm-forms/add_field.php:73
1431
  msgid "Your section has no fields. Drag fields here to add them to this section."
1432
  msgstr ""
1433
 
1542
  msgstr ""
1543
 
1544
  #. translators: %s: The page number
1545
+ #: classes/views/frm-forms/form.php:15
1546
  msgid "Page %s"
1547
  msgstr ""
1548
 
1549
+ #: classes/views/frm-forms/form.php:43
1550
  msgid "Add Fields Here"
1551
  msgstr ""
1552
 
1553
+ #: classes/views/frm-forms/form.php:46
1554
  msgid "Click or drag a field from the sidebar to add it to your form"
1555
  msgstr ""
1556
 
1597
  msgid "%s fields"
1598
  msgstr ""
1599
 
1600
+ #: classes/views/frm-forms/add_field_links.php:125
1601
  msgid "Select a field to see the options"
1602
  msgstr ""
1603
 
1604
+ #: classes/views/frm-forms/add_field_links.php:139
1605
  msgid "Smart Default Values"
1606
  msgstr ""
1607
 
1608
+ #: classes/views/frm-forms/add_field_links.php:147
1609
  msgid "Add Layout Classes"
1610
  msgstr ""
1611
 
1612
+ #: classes/views/frm-forms/add_field_links.php:155
1613
  msgid "Input Mask Format"
1614
  msgstr ""
1615
 
1641
  msgid "(click an action to add it to your form)"
1642
  msgstr ""
1643
 
1644
+ #: classes/views/frm-form-actions/settings.php:80
1645
  msgid "Show all form actions"
1646
  msgstr ""
1647
 
1648
+ #: classes/views/frm-form-actions/settings.php:83
1649
  msgid "Hide extra form actions"
1650
  msgstr ""
1651
 
1771
  #: classes/views/addons/list.php:56
1772
  #: classes/views/addons/list.php:57
1773
  #: classes/views/shared/upgrade_overlay.php:27
1774
+ #: classes/helpers/FrmAppHelper.php:2033
1775
  msgid "Install"
1776
  msgstr ""
1777
 
1782
  msgstr ""
1783
 
1784
  #: classes/views/shared/confirm-overlay.php:10
1785
+ #: classes/helpers/FrmAppHelper.php:2009
1786
  msgid "Are you sure?"
1787
  msgstr ""
1788
 
1879
  msgstr ""
1880
 
1881
  #: classes/views/shared/mb_adv_info.php:17
1882
+ #: classes/views/frm-fields/back-end/settings.php:151
1883
  msgid "Advanced"
1884
  msgstr ""
1885
 
1887
  msgid "HTML Tags"
1888
  msgstr ""
1889
 
1890
+ #: classes/views/shared/mb_adv_info.php:43
1891
  msgid "IDs"
1892
  msgstr ""
1893
 
1894
+ #: classes/views/shared/mb_adv_info.php:44
1895
  msgid "Keys"
1896
  msgstr ""
1897
 
1898
+ #: classes/views/shared/mb_adv_info.php:90
1899
  #: classes/helpers/FrmCSVExportHelper.php:154
1900
+ #: classes/helpers/FrmAppHelper.php:1986
1901
  msgid "ID"
1902
  msgstr ""
1903
 
1904
+ #: classes/views/shared/mb_adv_info.php:101
1905
  msgid "IF"
1906
  msgstr ""
1907
 
1908
+ #: classes/views/shared/mb_adv_info.php:108
1909
+ #: classes/views/shared/mb_adv_info.php:122
1910
  msgid "Select a Field"
1911
  msgstr ""
1912
 
1913
+ #: classes/views/shared/mb_adv_info.php:154
1914
  msgid "A blank value"
1915
  msgstr ""
1916
 
1917
+ #: classes/views/shared/mb_adv_info.php:157
1918
  msgid "Click to Insert"
1919
  msgstr ""
1920
 
2384
  msgid "Right to Left"
2385
  msgstr ""
2386
 
2387
+ #: classes/views/frm-fields/single-option.php:11
2388
  msgid "Saved Value"
2389
  msgstr ""
2390
 
2401
  msgstr ""
2402
 
2403
  #: classes/views/frm-fields/back-end/bulk-options-overlay.php:6
2404
+ #: classes/views/frm-fields/back-end/settings.php:119
2405
  msgid "Bulk Edit Options"
2406
  msgstr ""
2407
 
2410
  msgstr ""
2411
 
2412
  #: classes/views/frm-fields/back-end/bulk-options-overlay.php:17
 
2413
  msgid "Update Options"
2414
  msgstr ""
2415
 
2423
  msgstr ""
2424
 
2425
  #: classes/views/frm-fields/back-end/settings.php:34
2426
+ #: classes/views/frm-fields/back-end/settings.php:364
2427
  msgid "Required"
2428
  msgstr ""
2429
 
2432
  msgstr ""
2433
 
2434
  #: classes/views/frm-fields/back-end/settings.php:42
2435
+ #: classes/views/frm-fields/back-end/settings.php:384
2436
  msgid "Unique"
2437
  msgstr ""
2438
 
2444
  msgid "Read Only"
2445
  msgstr ""
2446
 
2447
+ #: classes/views/frm-fields/back-end/settings.php:71
2448
+ msgid "Add a CSS class to the field container. Use our predefined classes to align multiple fields in single row."
 
 
 
2449
  msgstr ""
2450
 
2451
+ #: classes/views/frm-fields/back-end/settings.php:72
2452
+ msgid "CSS Layout Classes"
2453
  msgstr ""
2454
 
2455
+ #: classes/views/frm-fields/back-end/settings.php:80
2456
+ #: classes/views/frm-fields/back-end/settings.php:185
2457
+ #: classes/views/frm-fields/back-end/value-format.php:11
2458
+ #: classes/views/frm-fields/back-end/html-content.php:11
2459
+ msgid "Toggle Options"
2460
  msgstr ""
2461
 
2462
+ #. translators: %s: Field type
2463
+ #. translators: %s: Field name
2464
+ #: classes/views/frm-fields/back-end/settings.php:95
2465
+ #: classes/views/frm-fields/back-end/settings.php:114
2466
+ msgid "%s Options"
2467
  msgstr ""
2468
 
2469
+ #: classes/views/frm-fields/back-end/settings.php:129
2470
+ msgid "Add Option"
 
 
 
2471
  msgstr ""
2472
 
2473
+ #: classes/views/frm-fields/back-end/settings.php:177
2474
+ msgid "Default Value"
2475
  msgstr ""
2476
 
2477
+ #: classes/views/frm-fields/back-end/settings.php:221
2478
+ msgid "Placeholder Text"
2479
  msgstr ""
2480
 
2481
+ #: classes/views/frm-fields/back-end/settings.php:243
2482
  msgid "If this URL points to an image, show to image on the entries listing page."
2483
  msgstr ""
2484
 
2485
+ #: classes/views/frm-fields/back-end/settings.php:250
2486
  msgid "Set the size of the captcha field. The compact option is best if your form is in a small area."
2487
  msgstr ""
2488
 
2489
+ #: classes/views/frm-fields/back-end/settings.php:251
2490
  msgid "ReCaptcha Type"
2491
  msgstr ""
2492
 
2493
+ #: classes/views/frm-fields/back-end/settings.php:255
2494
  msgid "Normal"
2495
  msgstr ""
2496
 
2497
+ #: classes/views/frm-fields/back-end/settings.php:258
2498
  msgid "Compact"
2499
  msgstr ""
2500
 
2501
+ #: classes/views/frm-fields/back-end/settings.php:264
2502
  msgid "reCAPTCHA Color"
2503
  msgstr ""
2504
 
2505
+ #: classes/views/frm-fields/back-end/settings.php:268
2506
  msgid "Light"
2507
  msgstr ""
2508
 
2509
+ #: classes/views/frm-fields/back-end/settings.php:271
2510
  msgid "Dark"
2511
  msgstr ""
2512
 
2513
+ #: classes/views/frm-fields/back-end/settings.php:288
2514
  msgid "Required Field Indicator"
2515
  msgstr ""
2516
 
2517
+ #: classes/views/frm-fields/back-end/settings.php:296
2518
  #: classes/helpers/FrmFormsHelper.php:433
2519
  msgid "Label Position"
2520
  msgstr ""
2521
 
2522
+ #: classes/views/frm-fields/back-end/settings.php:299
2523
+ #: classes/helpers/FrmAppHelper.php:2004
2524
  msgid "Default"
2525
  msgstr ""
2526
 
2527
+ #: classes/views/frm-fields/back-end/settings.php:317
2528
  msgid "The field key can be used as an alternative to the field ID in many cases."
2529
  msgstr ""
2530
 
2531
+ #: classes/views/frm-fields/back-end/settings.php:318
2532
  #: classes/helpers/FrmFormsHelper.php:421
2533
  msgid "Field Key"
2534
  msgstr ""
2535
 
2536
+ #: classes/views/frm-fields/back-end/settings.php:326
2537
  msgid "Field Type"
2538
  msgstr ""
2539
 
2540
+ #: classes/views/frm-fields/back-end/settings.php:356
2541
  msgid "Validation Messages"
2542
  msgstr ""
2543
 
2544
+ #: classes/views/frm-fields/back-end/settings.php:373
2545
  msgid "Invalid Format"
2546
  msgstr ""
2547
 
2548
+ #: classes/views/frm-fields/back-end/settings.php:395
2549
  msgid "Confirmation"
2550
  msgstr ""
2551
 
2688
  msgid "Select users that are allowed access to Formidable. Without access to View Forms, users will be unable to see the Formidable menu."
2689
  msgstr ""
2690
 
2691
+ #: classes/views/frm-settings/settings_cta.php:8
2692
  msgid "Get Formidable Forms Pro and Unlock all the Powerful Features"
2693
  msgstr ""
2694
 
2695
+ #: classes/views/frm-settings/settings_cta.php:10
2696
  msgid "Thanks for being a loyal Formidable Forms user. Upgrade to Formidable Forms Pro to unlock all the awesome features and learn how others are defying the limits by taking on big projects without big resources."
2697
  msgstr ""
2698
 
2699
+ #: classes/views/frm-settings/settings_cta.php:12
2700
  msgid "We know that you will truly love Formidable Forms."
2701
  msgstr ""
2702
 
2703
+ #: classes/views/frm-settings/settings_cta.php:15
2704
  msgid "Pro Features"
2705
  msgstr ""
2706
 
2707
+ #: classes/views/frm-settings/settings_cta.php:28
2708
  msgid "Get Formidable Forms Pro Today and Unlock all the Powerful Features »"
2709
  msgstr ""
2710
 
2754
  msgstr ""
2755
 
2756
  #: classes/views/frm-settings/general.php:52
2757
+ msgid "Do not store IPs with form submissions. Check this box for to assist with GDPR compliance."
2758
  msgstr ""
2759
 
2760
  #: classes/views/frm-settings/misc.php:4
2874
  msgstr ""
2875
 
2876
  #: classes/views/frm-entries/sidebar-shared.php:38
2877
+ #: classes/helpers/FrmEntriesListHelper.php:266
2878
  msgid "View"
2879
  msgstr ""
2880
 
2883
  msgstr ""
2884
 
2885
  #. translators: %1$s: User display name.
2886
+ #: classes/views/frm-entries/sidebar-shared.php:76
2887
  msgid "Created by: %1$s"
2888
  msgstr ""
2889
 
2890
  #. translators: %1$s: User display name.
2891
+ #: classes/views/frm-entries/sidebar-shared.php:90
2892
  msgid "Updated by: %1$s"
2893
  msgstr ""
2894
 
2895
+ #: classes/views/frm-entries/sidebar-shared.php:100
2896
  msgid "IP Address:"
2897
  msgstr ""
2898
 
2899
+ #: classes/views/frm-entries/sidebar-shared.php:108
2900
  msgid "Browser/OS:"
2901
  msgstr ""
2902
 
2903
+ #: classes/views/frm-entries/sidebar-shared.php:116
2904
  msgid "Referrer:"
2905
  msgstr ""
2906
 
2932
  msgstr ""
2933
 
2934
  #. translators: %s: The form name
2935
+ #: classes/views/frm-entries/no_entries.php:20
2936
  msgid "No Entries for form: %s"
2937
  msgstr ""
2938
 
2939
+ #: classes/views/frm-entries/no_entries.php:22
2940
+ msgid "No Entries found."
2941
+ msgstr ""
2942
+
2943
  #. translators: %1$s: Start link HTML, %2$s: End link HTML, %3$s: Line break HTML
2944
+ #: classes/views/frm-entries/no_entries.php:30
2945
  msgid "See the %1$sform documentation%2$s for instructions on publishing your form"
2946
  msgstr ""
2947
 
2948
  #. translators: %1$s: Start link HTML, %2$s: End link HTML, %3$s: Line break HTML
2949
+ #: classes/views/frm-entries/no_entries.php:42
2950
  msgid "To view entries, you must first %1$sbuild a form%2$s"
2951
  msgstr ""
2952
 
3169
  msgid "No Entries Found"
3170
  msgstr ""
3171
 
3172
+ #: classes/helpers/FrmEntriesListHelper.php:125
3173
  msgid "View all forms"
3174
  msgstr ""
3175
 
3176
+ #: classes/helpers/FrmEntriesListHelper.php:126
3177
  msgid "Filter"
3178
  msgstr ""
3179
 
3180
+ #: classes/helpers/FrmEntriesListHelper.php:236
3181
  msgid "No"
3182
  msgstr ""
3183
 
3184
+ #: classes/helpers/FrmEntriesListHelper.php:236
3185
  msgid "Yes"
3186
  msgstr ""
3187
 
3188
+ #: classes/helpers/FrmEntriesListHelper.php:271
3189
  msgid "Permanently delete this entry?"
3190
  msgstr ""
3191
 
3202
  msgstr ""
3203
 
3204
  #: classes/helpers/FrmFormsListHelper.php:112
3205
+ #: classes/helpers/FrmAppHelper.php:796
3206
  msgid "Add New"
3207
  msgstr ""
3208
 
3243
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
3244
  msgstr ""
3245
 
3246
+ #: classes/helpers/FrmFormsListHelper.php:262
3247
+ msgid "Saving entries is disabled for this form"
3248
+ msgstr ""
3249
+
3250
+ #: classes/helpers/FrmFormsListHelper.php:342
3251
  #: classes/helpers/FrmFormsHelper.php:1150
3252
  #: classes/helpers/FrmCSVExportHelper.php:152
3253
  msgid "Draft"
3254
  msgstr ""
3255
 
3256
+ #: classes/helpers/FrmFieldsHelper.php:281
3257
+ #: classes/helpers/FrmAppHelper.php:2014
3258
  msgid "The entered values do not match"
3259
  msgstr ""
3260
 
3261
  #. translators: %s: Field name
3262
+ #: classes/helpers/FrmFieldsHelper.php:286
3263
  msgid "%s must be unique"
3264
  msgstr ""
3265
 
3266
+ #: classes/helpers/FrmFieldsHelper.php:451
3267
+ #: classes/helpers/FrmFieldsHelper.php:452
3268
+ #: classes/helpers/FrmAppHelper.php:2018
3269
  msgid "New Option"
3270
  msgstr ""
3271
 
3272
  #. translators: %1$s: Start HTML link, %2$s: Content type label, %3$s: Content type, %4$s: End HTML link
3273
+ #: classes/helpers/FrmFieldsHelper.php:547
3274
  msgid "Options are dynamically created from your %1$s%2$s: %3$s%4$s"
3275
  msgstr ""
3276
 
3277
+ #: classes/helpers/FrmFieldsHelper.php:549
3278
  msgid "taxonomy"
3279
  msgstr ""
3280
 
3281
+ #: classes/helpers/FrmFieldsHelper.php:550
3282
  msgid "Categories"
3283
  msgstr ""
3284
 
3285
+ #: classes/helpers/FrmFieldsHelper.php:1359
3286
  msgid "Afghanistan"
3287
  msgstr ""
3288
 
3289
+ #: classes/helpers/FrmFieldsHelper.php:1360
3290
  msgid "Albania"
3291
  msgstr ""
3292
 
3293
+ #: classes/helpers/FrmFieldsHelper.php:1361
3294
  msgid "Algeria"
3295
  msgstr ""
3296
 
3297
+ #: classes/helpers/FrmFieldsHelper.php:1362
3298
  msgid "American Samoa"
3299
  msgstr ""
3300
 
3301
+ #: classes/helpers/FrmFieldsHelper.php:1363
3302
  msgid "Andorra"
3303
  msgstr ""
3304
 
3305
+ #: classes/helpers/FrmFieldsHelper.php:1364
3306
  msgid "Angola"
3307
  msgstr ""
3308
 
3309
+ #: classes/helpers/FrmFieldsHelper.php:1365
3310
  msgid "Anguilla"
3311
  msgstr ""
3312
 
3313
+ #: classes/helpers/FrmFieldsHelper.php:1366
3314
  msgid "Antarctica"
3315
  msgstr ""
3316
 
3317
+ #: classes/helpers/FrmFieldsHelper.php:1367
3318
  msgid "Antigua and Barbuda"
3319
  msgstr ""
3320
 
3321
+ #: classes/helpers/FrmFieldsHelper.php:1368
3322
  msgid "Argentina"
3323
  msgstr ""
3324
 
3325
+ #: classes/helpers/FrmFieldsHelper.php:1369
3326
  msgid "Armenia"
3327
  msgstr ""
3328
 
3329
+ #: classes/helpers/FrmFieldsHelper.php:1370
3330
  msgid "Aruba"
3331
  msgstr ""
3332
 
3333
+ #: classes/helpers/FrmFieldsHelper.php:1371
3334
  msgid "Australia"
3335
  msgstr ""
3336
 
3337
+ #: classes/helpers/FrmFieldsHelper.php:1372
3338
  msgid "Austria"
3339
  msgstr ""
3340
 
3341
+ #: classes/helpers/FrmFieldsHelper.php:1373
3342
  msgid "Azerbaijan"
3343
  msgstr ""
3344
 
3345
+ #: classes/helpers/FrmFieldsHelper.php:1374
3346
  msgid "Bahamas"
3347
  msgstr ""
3348
 
3349
+ #: classes/helpers/FrmFieldsHelper.php:1375
3350
  msgid "Bahrain"
3351
  msgstr ""
3352
 
3353
+ #: classes/helpers/FrmFieldsHelper.php:1376
3354
  msgid "Bangladesh"
3355
  msgstr ""
3356
 
3357
+ #: classes/helpers/FrmFieldsHelper.php:1377
3358
  msgid "Barbados"
3359
  msgstr ""
3360
 
3361
+ #: classes/helpers/FrmFieldsHelper.php:1378
3362
  msgid "Belarus"
3363
  msgstr ""
3364
 
3365
+ #: classes/helpers/FrmFieldsHelper.php:1379
3366
  msgid "Belgium"
3367
  msgstr ""
3368
 
3369
+ #: classes/helpers/FrmFieldsHelper.php:1380
3370
  msgid "Belize"
3371
  msgstr ""
3372
 
3373
+ #: classes/helpers/FrmFieldsHelper.php:1381
3374
  msgid "Benin"
3375
  msgstr ""
3376
 
3377
+ #: classes/helpers/FrmFieldsHelper.php:1382
3378
  msgid "Bermuda"
3379
  msgstr ""
3380
 
3381
+ #: classes/helpers/FrmFieldsHelper.php:1383
3382
  msgid "Bhutan"
3383
  msgstr ""
3384
 
3385
+ #: classes/helpers/FrmFieldsHelper.php:1384
3386
  msgid "Bolivia"
3387
  msgstr ""
3388
 
3389
+ #: classes/helpers/FrmFieldsHelper.php:1385
3390
  msgid "Bosnia and Herzegovina"
3391
  msgstr ""
3392
 
3393
+ #: classes/helpers/FrmFieldsHelper.php:1386
3394
  msgid "Botswana"
3395
  msgstr ""
3396
 
3397
+ #: classes/helpers/FrmFieldsHelper.php:1387
3398
  msgid "Brazil"
3399
  msgstr ""
3400
 
3401
+ #: classes/helpers/FrmFieldsHelper.php:1388
3402
  msgid "Brunei"
3403
  msgstr ""
3404
 
3405
+ #: classes/helpers/FrmFieldsHelper.php:1389
3406
  msgid "Bulgaria"
3407
  msgstr ""
3408
 
3409
+ #: classes/helpers/FrmFieldsHelper.php:1390
3410
  msgid "Burkina Faso"
3411
  msgstr ""
3412
 
3413
+ #: classes/helpers/FrmFieldsHelper.php:1391
3414
  msgid "Burundi"
3415
  msgstr ""
3416
 
3417
+ #: classes/helpers/FrmFieldsHelper.php:1392
3418
  msgid "Cambodia"
3419
  msgstr ""
3420
 
3421
+ #: classes/helpers/FrmFieldsHelper.php:1393
3422
  msgid "Cameroon"
3423
  msgstr ""
3424
 
3425
+ #: classes/helpers/FrmFieldsHelper.php:1394
3426
  msgid "Canada"
3427
  msgstr ""
3428
 
3429
+ #: classes/helpers/FrmFieldsHelper.php:1395
3430
  msgid "Cape Verde"
3431
  msgstr ""
3432
 
3433
+ #: classes/helpers/FrmFieldsHelper.php:1396
3434
  msgid "Cayman Islands"
3435
  msgstr ""
3436
 
3437
+ #: classes/helpers/FrmFieldsHelper.php:1397
3438
  msgid "Central African Republic"
3439
  msgstr ""
3440
 
3441
+ #: classes/helpers/FrmFieldsHelper.php:1398
3442
  msgid "Chad"
3443
  msgstr ""
3444
 
3445
+ #: classes/helpers/FrmFieldsHelper.php:1399
3446
  msgid "Chile"
3447
  msgstr ""
3448
 
3449
+ #: classes/helpers/FrmFieldsHelper.php:1400
3450
  msgid "China"
3451
  msgstr ""
3452
 
3453
+ #: classes/helpers/FrmFieldsHelper.php:1401
3454
  msgid "Colombia"
3455
  msgstr ""
3456
 
3457
+ #: classes/helpers/FrmFieldsHelper.php:1402
3458
  msgid "Comoros"
3459
  msgstr ""
3460
 
3461
+ #: classes/helpers/FrmFieldsHelper.php:1403
3462
  msgid "Congo"
3463
  msgstr ""
3464
 
3465
+ #: classes/helpers/FrmFieldsHelper.php:1404
3466
  msgid "Costa Rica"
3467
  msgstr ""
3468
 
3469
+ #: classes/helpers/FrmFieldsHelper.php:1405
3470
  msgid "C&ocirc;te d'Ivoire"
3471
  msgstr ""
3472
 
3473
+ #: classes/helpers/FrmFieldsHelper.php:1406
3474
  msgid "Croatia"
3475
  msgstr ""
3476
 
3477
+ #: classes/helpers/FrmFieldsHelper.php:1407
3478
  msgid "Cuba"
3479
  msgstr ""
3480
 
3481
+ #: classes/helpers/FrmFieldsHelper.php:1408
3482
  msgid "Cyprus"
3483
  msgstr ""
3484
 
3485
+ #: classes/helpers/FrmFieldsHelper.php:1409
3486
  msgid "Czech Republic"
3487
  msgstr ""
3488
 
3489
+ #: classes/helpers/FrmFieldsHelper.php:1410
3490
  msgid "Denmark"
3491
  msgstr ""
3492
 
3493
+ #: classes/helpers/FrmFieldsHelper.php:1411
3494
  msgid "Djibouti"
3495
  msgstr ""
3496
 
3497
+ #: classes/helpers/FrmFieldsHelper.php:1412
3498
  msgid "Dominica"
3499
  msgstr ""
3500
 
3501
+ #: classes/helpers/FrmFieldsHelper.php:1413
3502
  msgid "Dominican Republic"
3503
  msgstr ""
3504
 
3505
+ #: classes/helpers/FrmFieldsHelper.php:1414
3506
  msgid "East Timor"
3507
  msgstr ""
3508
 
3509
+ #: classes/helpers/FrmFieldsHelper.php:1415
3510
  msgid "Ecuador"
3511
  msgstr ""
3512
 
3513
+ #: classes/helpers/FrmFieldsHelper.php:1416
3514
  msgid "Egypt"
3515
  msgstr ""
3516
 
3517
+ #: classes/helpers/FrmFieldsHelper.php:1417
3518
  msgid "El Salvador"
3519
  msgstr ""
3520
 
3521
+ #: classes/helpers/FrmFieldsHelper.php:1418
3522
  msgid "Equatorial Guinea"
3523
  msgstr ""
3524
 
3525
+ #: classes/helpers/FrmFieldsHelper.php:1419
3526
  msgid "Eritrea"
3527
  msgstr ""
3528
 
3529
+ #: classes/helpers/FrmFieldsHelper.php:1420
3530
  msgid "Estonia"
3531
  msgstr ""
3532
 
3533
+ #: classes/helpers/FrmFieldsHelper.php:1421
3534
  msgid "Ethiopia"
3535
  msgstr ""
3536
 
3537
+ #: classes/helpers/FrmFieldsHelper.php:1422
3538
  msgid "Fiji"
3539
  msgstr ""
3540
 
3541
+ #: classes/helpers/FrmFieldsHelper.php:1423
3542
  msgid "Finland"
3543
  msgstr ""
3544
 
3545
+ #: classes/helpers/FrmFieldsHelper.php:1424
3546
  msgid "France"
3547
  msgstr ""
3548
 
3549
+ #: classes/helpers/FrmFieldsHelper.php:1425
3550
  msgid "French Guiana"
3551
  msgstr ""
3552
 
3553
+ #: classes/helpers/FrmFieldsHelper.php:1426
3554
  msgid "French Polynesia"
3555
  msgstr ""
3556
 
3557
+ #: classes/helpers/FrmFieldsHelper.php:1427
3558
  msgid "Gabon"
3559
  msgstr ""
3560
 
3561
+ #: classes/helpers/FrmFieldsHelper.php:1428
3562
  msgid "Gambia"
3563
  msgstr ""
3564
 
3565
+ #: classes/helpers/FrmFieldsHelper.php:1429
3566
  msgid "Georgia"
3567
  msgstr ""
3568
 
3569
+ #: classes/helpers/FrmFieldsHelper.php:1430
3570
  msgid "Germany"
3571
  msgstr ""
3572
 
3573
+ #: classes/helpers/FrmFieldsHelper.php:1431
3574
  msgid "Ghana"
3575
  msgstr ""
3576
 
3577
+ #: classes/helpers/FrmFieldsHelper.php:1432
3578
  msgid "Gibraltar"
3579
  msgstr ""
3580
 
3581
+ #: classes/helpers/FrmFieldsHelper.php:1433
3582
  msgid "Greece"
3583
  msgstr ""
3584
 
3585
+ #: classes/helpers/FrmFieldsHelper.php:1434
3586
  msgid "Greenland"
3587
  msgstr ""
3588
 
3589
+ #: classes/helpers/FrmFieldsHelper.php:1435
3590
  msgid "Grenada"
3591
  msgstr ""
3592
 
3593
+ #: classes/helpers/FrmFieldsHelper.php:1436
3594
  msgid "Guam"
3595
  msgstr ""
3596
 
3597
+ #: classes/helpers/FrmFieldsHelper.php:1437
3598
  msgid "Guatemala"
3599
  msgstr ""
3600
 
3601
+ #: classes/helpers/FrmFieldsHelper.php:1438
3602
  msgid "Guinea"
3603
  msgstr ""
3604
 
3605
+ #: classes/helpers/FrmFieldsHelper.php:1439
3606
  msgid "Guinea-Bissau"
3607
  msgstr ""
3608
 
3609
+ #: classes/helpers/FrmFieldsHelper.php:1440
3610
  msgid "Guyana"
3611
  msgstr ""
3612
 
3613
+ #: classes/helpers/FrmFieldsHelper.php:1441
3614
  msgid "Haiti"
3615
  msgstr ""
3616
 
3617
+ #: classes/helpers/FrmFieldsHelper.php:1442
3618
  msgid "Honduras"
3619
  msgstr ""
3620
 
3621
+ #: classes/helpers/FrmFieldsHelper.php:1443
3622
  msgid "Hong Kong"
3623
  msgstr ""
3624
 
3625
+ #: classes/helpers/FrmFieldsHelper.php:1444
3626
  msgid "Hungary"
3627
  msgstr ""
3628
 
3629
+ #: classes/helpers/FrmFieldsHelper.php:1445
3630
  msgid "Iceland"
3631
  msgstr ""
3632
 
3633
+ #: classes/helpers/FrmFieldsHelper.php:1446
3634
  msgid "India"
3635
  msgstr ""
3636
 
3637
+ #: classes/helpers/FrmFieldsHelper.php:1447
3638
  msgid "Indonesia"
3639
  msgstr ""
3640
 
3641
+ #: classes/helpers/FrmFieldsHelper.php:1448
3642
  msgid "Iran"
3643
  msgstr ""
3644
 
3645
+ #: classes/helpers/FrmFieldsHelper.php:1449
3646
  msgid "Iraq"
3647
  msgstr ""
3648
 
3649
+ #: classes/helpers/FrmFieldsHelper.php:1450
3650
  msgid "Ireland"
3651
  msgstr ""
3652
 
3653
+ #: classes/helpers/FrmFieldsHelper.php:1451
3654
  msgid "Israel"
3655
  msgstr ""
3656
 
3657
+ #: classes/helpers/FrmFieldsHelper.php:1452
3658
  msgid "Italy"
3659
  msgstr ""
3660
 
3661
+ #: classes/helpers/FrmFieldsHelper.php:1453
3662
  msgid "Jamaica"
3663
  msgstr ""
3664
 
3665
+ #: classes/helpers/FrmFieldsHelper.php:1454
3666
  msgid "Japan"
3667
  msgstr ""
3668
 
3669
+ #: classes/helpers/FrmFieldsHelper.php:1455
3670
  msgid "Jordan"
3671
  msgstr ""
3672
 
3673
+ #: classes/helpers/FrmFieldsHelper.php:1456
3674
  msgid "Kazakhstan"
3675
  msgstr ""
3676
 
3677
+ #: classes/helpers/FrmFieldsHelper.php:1457
3678
  msgid "Kenya"
3679
  msgstr ""
3680
 
3681
+ #: classes/helpers/FrmFieldsHelper.php:1458
3682
  msgid "Kiribati"
3683
  msgstr ""
3684
 
3685
+ #: classes/helpers/FrmFieldsHelper.php:1459
3686
  msgid "North Korea"
3687
  msgstr ""
3688
 
3689
+ #: classes/helpers/FrmFieldsHelper.php:1460
3690
  msgid "South Korea"
3691
  msgstr ""
3692
 
3693
+ #: classes/helpers/FrmFieldsHelper.php:1461
3694
  msgid "Kuwait"
3695
  msgstr ""
3696
 
3697
+ #: classes/helpers/FrmFieldsHelper.php:1462
3698
  msgid "Kyrgyzstan"
3699
  msgstr ""
3700
 
3701
+ #: classes/helpers/FrmFieldsHelper.php:1463
3702
  msgid "Laos"
3703
  msgstr ""
3704
 
3705
+ #: classes/helpers/FrmFieldsHelper.php:1464
3706
  msgid "Latvia"
3707
  msgstr ""
3708
 
3709
+ #: classes/helpers/FrmFieldsHelper.php:1465
3710
  msgid "Lebanon"
3711
  msgstr ""
3712
 
3713
+ #: classes/helpers/FrmFieldsHelper.php:1466
3714
  msgid "Lesotho"
3715
  msgstr ""
3716
 
3717
+ #: classes/helpers/FrmFieldsHelper.php:1467
3718
  msgid "Liberia"
3719
  msgstr ""
3720
 
3721
+ #: classes/helpers/FrmFieldsHelper.php:1468
3722
  msgid "Libya"
3723
  msgstr ""
3724
 
3725
+ #: classes/helpers/FrmFieldsHelper.php:1469
3726
  msgid "Liechtenstein"
3727
  msgstr ""
3728
 
3729
+ #: classes/helpers/FrmFieldsHelper.php:1470
3730
  msgid "Lithuania"
3731
  msgstr ""
3732
 
3733
+ #: classes/helpers/FrmFieldsHelper.php:1471
3734
  msgid "Luxembourg"
3735
  msgstr ""
3736
 
3737
+ #: classes/helpers/FrmFieldsHelper.php:1472
3738
  msgid "Macedonia"
3739
  msgstr ""
3740
 
3741
+ #: classes/helpers/FrmFieldsHelper.php:1473
3742
  msgid "Madagascar"
3743
  msgstr ""
3744
 
3745
+ #: classes/helpers/FrmFieldsHelper.php:1474
3746
  msgid "Malawi"
3747
  msgstr ""
3748
 
3749
+ #: classes/helpers/FrmFieldsHelper.php:1475
3750
  msgid "Malaysia"
3751
  msgstr ""
3752
 
3753
+ #: classes/helpers/FrmFieldsHelper.php:1476
3754
  msgid "Maldives"
3755
  msgstr ""
3756
 
3757
+ #: classes/helpers/FrmFieldsHelper.php:1477
3758
  msgid "Mali"
3759
  msgstr ""
3760
 
3761
+ #: classes/helpers/FrmFieldsHelper.php:1478
3762
  msgid "Malta"
3763
  msgstr ""
3764
 
3765
+ #: classes/helpers/FrmFieldsHelper.php:1479
3766
  msgid "Marshall Islands"
3767
  msgstr ""
3768
 
3769
+ #: classes/helpers/FrmFieldsHelper.php:1480
3770
  msgid "Mauritania"
3771
  msgstr ""
3772
 
3773
+ #: classes/helpers/FrmFieldsHelper.php:1481
3774
  msgid "Mauritius"
3775
  msgstr ""
3776
 
3777
+ #: classes/helpers/FrmFieldsHelper.php:1482
3778
  msgid "Mexico"
3779
  msgstr ""
3780
 
3781
+ #: classes/helpers/FrmFieldsHelper.php:1483
3782
  msgid "Micronesia"
3783
  msgstr ""
3784
 
3785
+ #: classes/helpers/FrmFieldsHelper.php:1484
3786
  msgid "Moldova"
3787
  msgstr ""
3788
 
3789
+ #: classes/helpers/FrmFieldsHelper.php:1485
3790
  msgid "Monaco"
3791
  msgstr ""
3792
 
3793
+ #: classes/helpers/FrmFieldsHelper.php:1486
3794
  msgid "Mongolia"
3795
  msgstr ""
3796
 
3797
+ #: classes/helpers/FrmFieldsHelper.php:1487
3798
  msgid "Montenegro"
3799
  msgstr ""
3800
 
3801
+ #: classes/helpers/FrmFieldsHelper.php:1488
3802
  msgid "Montserrat"
3803
  msgstr ""
3804
 
3805
+ #: classes/helpers/FrmFieldsHelper.php:1489
3806
  msgid "Morocco"
3807
  msgstr ""
3808
 
3809
+ #: classes/helpers/FrmFieldsHelper.php:1490
3810
  msgid "Mozambique"
3811
  msgstr ""
3812
 
3813
+ #: classes/helpers/FrmFieldsHelper.php:1491
3814
  msgid "Myanmar"
3815
  msgstr ""
3816
 
3817
+ #: classes/helpers/FrmFieldsHelper.php:1492
3818
  msgid "Namibia"
3819
  msgstr ""
3820
 
3821
+ #: classes/helpers/FrmFieldsHelper.php:1493
3822
  msgid "Nauru"
3823
  msgstr ""
3824
 
3825
+ #: classes/helpers/FrmFieldsHelper.php:1494
3826
  msgid "Nepal"
3827
  msgstr ""
3828
 
3829
+ #: classes/helpers/FrmFieldsHelper.php:1495
3830
  msgid "Netherlands"
3831
  msgstr ""
3832
 
3833
+ #: classes/helpers/FrmFieldsHelper.php:1496
3834
  msgid "New Zealand"
3835
  msgstr ""
3836
 
3837
+ #: classes/helpers/FrmFieldsHelper.php:1497
3838
  msgid "Nicaragua"
3839
  msgstr ""
3840
 
3841
+ #: classes/helpers/FrmFieldsHelper.php:1498
3842
  msgid "Niger"
3843
  msgstr ""
3844
 
3845
+ #: classes/helpers/FrmFieldsHelper.php:1499
3846
  msgid "Nigeria"
3847
  msgstr ""
3848
 
3849
+ #: classes/helpers/FrmFieldsHelper.php:1500
3850
  msgid "Norway"
3851
  msgstr ""
3852
 
3853
+ #: classes/helpers/FrmFieldsHelper.php:1501
3854
  msgid "Northern Mariana Islands"
3855
  msgstr ""
3856
 
3857
+ #: classes/helpers/FrmFieldsHelper.php:1502
3858
  msgid "Oman"
3859
  msgstr ""
3860
 
3861
+ #: classes/helpers/FrmFieldsHelper.php:1503
3862
  msgid "Pakistan"
3863
  msgstr ""
3864
 
3865
+ #: classes/helpers/FrmFieldsHelper.php:1504
3866
  msgid "Palau"
3867
  msgstr ""
3868
 
3869
+ #: classes/helpers/FrmFieldsHelper.php:1505
3870
  msgid "Palestine"
3871
  msgstr ""
3872
 
3873
+ #: classes/helpers/FrmFieldsHelper.php:1506
3874
  msgid "Panama"
3875
  msgstr ""
3876
 
3877
+ #: classes/helpers/FrmFieldsHelper.php:1507
3878
  msgid "Papua New Guinea"
3879
  msgstr ""
3880
 
3881
+ #: classes/helpers/FrmFieldsHelper.php:1508
3882
  msgid "Paraguay"
3883
  msgstr ""
3884
 
3885
+ #: classes/helpers/FrmFieldsHelper.php:1509
3886
  msgid "Peru"
3887
  msgstr ""
3888
 
3889
+ #: classes/helpers/FrmFieldsHelper.php:1510
3890
  msgid "Philippines"
3891
  msgstr ""
3892
 
3893
+ #: classes/helpers/FrmFieldsHelper.php:1511
3894
  msgid "Poland"
3895
  msgstr ""
3896
 
3897
+ #: classes/helpers/FrmFieldsHelper.php:1512
3898
  msgid "Portugal"
3899
  msgstr ""
3900
 
3901
+ #: classes/helpers/FrmFieldsHelper.php:1513
3902
  msgid "Puerto Rico"
3903
  msgstr ""
3904
 
3905
+ #: classes/helpers/FrmFieldsHelper.php:1514
3906
  msgid "Qatar"
3907
  msgstr ""
3908
 
3909
+ #: classes/helpers/FrmFieldsHelper.php:1515
3910
  msgid "Romania"
3911
  msgstr ""
3912
 
3913
+ #: classes/helpers/FrmFieldsHelper.php:1516
3914
  msgid "Russia"
3915
  msgstr ""
3916
 
3917
+ #: classes/helpers/FrmFieldsHelper.php:1517
3918
  msgid "Rwanda"
3919
  msgstr ""
3920
 
3921
+ #: classes/helpers/FrmFieldsHelper.php:1518
3922
  msgid "Saint Kitts and Nevis"
3923
  msgstr ""
3924
 
3925
+ #: classes/helpers/FrmFieldsHelper.php:1519
3926
  msgid "Saint Lucia"
3927
  msgstr ""
3928
 
3929
+ #: classes/helpers/FrmFieldsHelper.php:1520
3930
  msgid "Saint Vincent and the Grenadines"
3931
  msgstr ""
3932
 
3933
+ #: classes/helpers/FrmFieldsHelper.php:1521
3934
  msgid "Samoa"
3935
  msgstr ""
3936
 
3937
+ #: classes/helpers/FrmFieldsHelper.php:1522
3938
  msgid "San Marino"
3939
  msgstr ""
3940
 
3941
+ #: classes/helpers/FrmFieldsHelper.php:1523
3942
  msgid "Sao Tome and Principe"
3943
  msgstr ""
3944
 
3945
+ #: classes/helpers/FrmFieldsHelper.php:1524
3946
  msgid "Saudi Arabia"
3947
  msgstr ""
3948
 
3949
+ #: classes/helpers/FrmFieldsHelper.php:1525
3950
  msgid "Senegal"
3951
  msgstr ""
3952
 
3953
+ #: classes/helpers/FrmFieldsHelper.php:1526
3954
  msgid "Serbia and Montenegro"
3955
  msgstr ""
3956
 
3957
+ #: classes/helpers/FrmFieldsHelper.php:1527
3958
  msgid "Seychelles"
3959
  msgstr ""
3960
 
3961
+ #: classes/helpers/FrmFieldsHelper.php:1528
3962
  msgid "Sierra Leone"
3963
  msgstr ""
3964
 
3965
+ #: classes/helpers/FrmFieldsHelper.php:1529
3966
  msgid "Singapore"
3967
  msgstr ""
3968
 
3969
+ #: classes/helpers/FrmFieldsHelper.php:1530
3970
  msgid "Slovakia"
3971
  msgstr ""
3972
 
3973
+ #: classes/helpers/FrmFieldsHelper.php:1531
3974
  msgid "Slovenia"
3975
  msgstr ""
3976
 
3977
+ #: classes/helpers/FrmFieldsHelper.php:1532
3978
  msgid "Solomon Islands"
3979
  msgstr ""
3980
 
3981
+ #: classes/helpers/FrmFieldsHelper.php:1533
3982
  msgid "Somalia"
3983
  msgstr ""
3984
 
3985
+ #: classes/helpers/FrmFieldsHelper.php:1534
3986
  msgid "South Africa"
3987
  msgstr ""
3988
 
3989
+ #: classes/helpers/FrmFieldsHelper.php:1535
3990
  msgid "South Sudan"
3991
  msgstr ""
3992
 
3993
+ #: classes/helpers/FrmFieldsHelper.php:1536
3994
  msgid "Spain"
3995
  msgstr ""
3996
 
3997
+ #: classes/helpers/FrmFieldsHelper.php:1537
3998
  msgid "Sri Lanka"
3999
  msgstr ""
4000
 
4001
+ #: classes/helpers/FrmFieldsHelper.php:1538
4002
  msgid "Sudan"
4003
  msgstr ""
4004
 
4005
+ #: classes/helpers/FrmFieldsHelper.php:1539
4006
  msgid "Suriname"
4007
  msgstr ""
4008
 
4009
+ #: classes/helpers/FrmFieldsHelper.php:1540
4010
  msgid "Swaziland"
4011
  msgstr ""
4012
 
4013
+ #: classes/helpers/FrmFieldsHelper.php:1541
4014
  msgid "Sweden"
4015
  msgstr ""
4016
 
4017
+ #: classes/helpers/FrmFieldsHelper.php:1542
4018
  msgid "Switzerland"
4019
  msgstr ""
4020
 
4021
+ #: classes/helpers/FrmFieldsHelper.php:1543
4022
  msgid "Syria"
4023
  msgstr ""
4024
 
4025
+ #: classes/helpers/FrmFieldsHelper.php:1544
4026
  msgid "Taiwan"
4027
  msgstr ""
4028
 
4029
+ #: classes/helpers/FrmFieldsHelper.php:1545
4030
  msgid "Tajikistan"
4031
  msgstr ""
4032
 
4033
+ #: classes/helpers/FrmFieldsHelper.php:1546
4034
  msgid "Tanzania"
4035
  msgstr ""
4036
 
4037
+ #: classes/helpers/FrmFieldsHelper.php:1547
4038
  msgid "Thailand"
4039
  msgstr ""
4040
 
4041
+ #: classes/helpers/FrmFieldsHelper.php:1548
4042
  msgid "Togo"
4043
  msgstr ""
4044
 
4045
+ #: classes/helpers/FrmFieldsHelper.php:1549
4046
  msgid "Tonga"
4047
  msgstr ""
4048
 
4049
+ #: classes/helpers/FrmFieldsHelper.php:1550
4050
  msgid "Trinidad and Tobago"
4051
  msgstr ""
4052
 
4053
+ #: classes/helpers/FrmFieldsHelper.php:1551
4054
  msgid "Tunisia"
4055
  msgstr ""
4056
 
4057
+ #: classes/helpers/FrmFieldsHelper.php:1552
4058
  msgid "Turkey"
4059
  msgstr ""
4060
 
4061
+ #: classes/helpers/FrmFieldsHelper.php:1553
4062
  msgid "Turkmenistan"
4063
  msgstr ""
4064
 
4065
+ #: classes/helpers/FrmFieldsHelper.php:1554
4066
  msgid "Tuvalu"
4067
  msgstr ""
4068
 
4069
+ #: classes/helpers/FrmFieldsHelper.php:1555
4070
  msgid "Uganda"
4071
  msgstr ""
4072
 
4073
+ #: classes/helpers/FrmFieldsHelper.php:1556
4074
  msgid "Ukraine"
4075
  msgstr ""
4076
 
4077
+ #: classes/helpers/FrmFieldsHelper.php:1557
4078
  msgid "United Arab Emirates"
4079
  msgstr ""
4080
 
4081
+ #: classes/helpers/FrmFieldsHelper.php:1558
4082
  msgid "United Kingdom"
4083
  msgstr ""
4084
 
4085
+ #: classes/helpers/FrmFieldsHelper.php:1559
4086
  msgid "United States"
4087
  msgstr ""
4088
 
4089
+ #: classes/helpers/FrmFieldsHelper.php:1560
4090
  msgid "Uruguay"
4091
  msgstr ""
4092
 
4093
+ #: classes/helpers/FrmFieldsHelper.php:1561
4094
  msgid "Uzbekistan"
4095
  msgstr ""
4096
 
4097
+ #: classes/helpers/FrmFieldsHelper.php:1562
4098
  msgid "Vanuatu"
4099
  msgstr ""
4100
 
4101
+ #: classes/helpers/FrmFieldsHelper.php:1563
4102
  msgid "Vatican City"
4103
  msgstr ""
4104
 
4105
+ #: classes/helpers/FrmFieldsHelper.php:1564
4106
  msgid "Venezuela"
4107
  msgstr ""
4108
 
4109
+ #: classes/helpers/FrmFieldsHelper.php:1565
4110
  msgid "Vietnam"
4111
  msgstr ""
4112
 
4113
+ #: classes/helpers/FrmFieldsHelper.php:1566
4114
  msgid "Virgin Islands, British"
4115
  msgstr ""
4116
 
4117
+ #: classes/helpers/FrmFieldsHelper.php:1567
4118
  msgid "Virgin Islands, U.S."
4119
  msgstr ""
4120
 
4121
+ #: classes/helpers/FrmFieldsHelper.php:1568
4122
  msgid "Yemen"
4123
  msgstr ""
4124
 
4125
+ #: classes/helpers/FrmFieldsHelper.php:1569
4126
  msgid "Zambia"
4127
  msgstr ""
4128
 
4129
+ #: classes/helpers/FrmFieldsHelper.php:1570
4130
  msgid "Zimbabwe"
4131
  msgstr ""
4132
 
4133
+ #: classes/helpers/FrmFieldsHelper.php:1577
4134
  msgid "Countries"
4135
  msgstr ""
4136
 
4137
+ #: classes/helpers/FrmFieldsHelper.php:1582
4138
  msgid "U.S. State Abbreviations"
4139
  msgstr ""
4140
 
4141
+ #: classes/helpers/FrmFieldsHelper.php:1586
4142
  msgid "U.S. States"
4143
  msgstr ""
4144
 
4145
+ #: classes/helpers/FrmFieldsHelper.php:1589
4146
  msgid "Age"
4147
  msgstr ""
4148
 
4149
+ #: classes/helpers/FrmFieldsHelper.php:1590
4150
  msgid "Under 18"
4151
  msgstr ""
4152
 
4153
+ #: classes/helpers/FrmFieldsHelper.php:1591
4154
  msgid "18-24"
4155
  msgstr ""
4156
 
4157
+ #: classes/helpers/FrmFieldsHelper.php:1592
4158
  msgid "25-34"
4159
  msgstr ""
4160
 
4161
+ #: classes/helpers/FrmFieldsHelper.php:1593
4162
  msgid "35-44"
4163
  msgstr ""
4164
 
4165
+ #: classes/helpers/FrmFieldsHelper.php:1594
4166
  msgid "45-54"
4167
  msgstr ""
4168
 
4169
+ #: classes/helpers/FrmFieldsHelper.php:1595
4170
  msgid "55-64"
4171
  msgstr ""
4172
 
4173
+ #: classes/helpers/FrmFieldsHelper.php:1596
4174
  msgid "65 or Above"
4175
  msgstr ""
4176
 
4177
+ #: classes/helpers/FrmFieldsHelper.php:1597
4178
  msgid "Prefer Not to Answer"
4179
  msgstr ""
4180
 
4181
+ #: classes/helpers/FrmFieldsHelper.php:1600
4182
  msgid "Satisfaction"
4183
  msgstr ""
4184
 
4185
+ #: classes/helpers/FrmFieldsHelper.php:1601
4186
  msgid "Very Satisfied"
4187
  msgstr ""
4188
 
4189
+ #: classes/helpers/FrmFieldsHelper.php:1602
4190
  msgid "Satisfied"
4191
  msgstr ""
4192
 
4193
+ #: classes/helpers/FrmFieldsHelper.php:1603
4194
+ #: classes/helpers/FrmFieldsHelper.php:1612
4195
+ #: classes/helpers/FrmFieldsHelper.php:1621
4196
  msgid "Neutral"
4197
  msgstr ""
4198
 
4199
+ #: classes/helpers/FrmFieldsHelper.php:1604
4200
  msgid "Unsatisfied"
4201
  msgstr ""
4202
 
4203
+ #: classes/helpers/FrmFieldsHelper.php:1605
4204
  msgid "Very Unsatisfied"
4205
  msgstr ""
4206
 
4207
+ #: classes/helpers/FrmFieldsHelper.php:1606
4208
+ #: classes/helpers/FrmFieldsHelper.php:1615
4209
+ #: classes/helpers/FrmFieldsHelper.php:1624
4210
  msgid "N/A"
4211
  msgstr ""
4212
 
4213
+ #: classes/helpers/FrmFieldsHelper.php:1609
4214
  msgid "Importance"
4215
  msgstr ""
4216
 
4217
+ #: classes/helpers/FrmFieldsHelper.php:1610
4218
  msgid "Very Important"
4219
  msgstr ""
4220
 
4221
+ #: classes/helpers/FrmFieldsHelper.php:1611
4222
  msgid "Important"
4223
  msgstr ""
4224
 
4225
+ #: classes/helpers/FrmFieldsHelper.php:1613
4226
  msgid "Somewhat Important"
4227
  msgstr ""
4228
 
4229
+ #: classes/helpers/FrmFieldsHelper.php:1614
4230
  msgid "Not at all Important"
4231
  msgstr ""
4232
 
4233
+ #: classes/helpers/FrmFieldsHelper.php:1618
4234
  msgid "Agreement"
4235
  msgstr ""
4236
 
4237
+ #: classes/helpers/FrmFieldsHelper.php:1619
4238
  msgid "Strongly Agree"
4239
  msgstr ""
4240
 
4241
+ #: classes/helpers/FrmFieldsHelper.php:1620
4242
  msgid "Agree"
4243
  msgstr ""
4244
 
4245
+ #: classes/helpers/FrmFieldsHelper.php:1622
4246
  msgid "Disagree"
4247
  msgstr ""
4248
 
4249
+ #: classes/helpers/FrmFieldsHelper.php:1623
4250
  msgid "Strongly Disagree"
4251
  msgstr ""
4252
 
4572
  msgid "Parent ID"
4573
  msgstr ""
4574
 
4575
+ #: classes/helpers/FrmAppHelper.php:1013
4576
  msgid "View Forms and Templates"
4577
  msgstr ""
4578
 
4579
+ #: classes/helpers/FrmAppHelper.php:1014
4580
  msgid "Add/Edit Forms and Templates"
4581
  msgstr ""
4582
 
4583
+ #: classes/helpers/FrmAppHelper.php:1015
4584
  msgid "Delete Forms and Templates"
4585
  msgstr ""
4586
 
4587
+ #: classes/helpers/FrmAppHelper.php:1016
4588
  msgid "Access this Settings Page"
4589
  msgstr ""
4590
 
4591
+ #: classes/helpers/FrmAppHelper.php:1017
4592
  msgid "View Entries from Admin Area"
4593
  msgstr ""
4594
 
4595
+ #: classes/helpers/FrmAppHelper.php:1018
4596
  msgid "Delete Entries from Admin Area"
4597
  msgstr ""
4598
 
4599
+ #: classes/helpers/FrmAppHelper.php:1025
4600
  msgid "Add Entries from Admin Area"
4601
  msgstr ""
4602
 
4603
+ #: classes/helpers/FrmAppHelper.php:1026
4604
  msgid "Edit Entries from Admin Area"
4605
  msgstr ""
4606
 
4607
+ #: classes/helpers/FrmAppHelper.php:1027
4608
  msgid "View Reports"
4609
  msgstr ""
4610
 
4611
+ #: classes/helpers/FrmAppHelper.php:1028
4612
  msgid "Add/Edit Views"
4613
  msgstr ""
4614
 
4615
+ #: classes/helpers/FrmAppHelper.php:1649
4616
  msgid "at"
4617
  msgstr ""
4618
 
4619
+ #: classes/helpers/FrmAppHelper.php:1700
4620
+ #: classes/helpers/FrmAppHelper.php:1719
4621
  msgid "seconds"
4622
  msgstr ""
4623
 
4624
+ #: classes/helpers/FrmAppHelper.php:1713
4625
  msgid "year"
4626
  msgstr ""
4627
 
4628
+ #: classes/helpers/FrmAppHelper.php:1713
4629
  msgid "years"
4630
  msgstr ""
4631
 
4632
+ #: classes/helpers/FrmAppHelper.php:1714
4633
  msgid "month"
4634
  msgstr ""
4635
 
4636
+ #: classes/helpers/FrmAppHelper.php:1714
4637
  msgid "months"
4638
  msgstr ""
4639
 
4640
+ #: classes/helpers/FrmAppHelper.php:1715
4641
  msgid "week"
4642
  msgstr ""
4643
 
4644
+ #: classes/helpers/FrmAppHelper.php:1715
4645
  msgid "weeks"
4646
  msgstr ""
4647
 
4648
+ #: classes/helpers/FrmAppHelper.php:1716
4649
  msgid "day"
4650
  msgstr ""
4651
 
4652
+ #: classes/helpers/FrmAppHelper.php:1716
4653
  msgid "days"
4654
  msgstr ""
4655
 
4656
+ #: classes/helpers/FrmAppHelper.php:1717
4657
  msgid "hour"
4658
  msgstr ""
4659
 
4660
+ #: classes/helpers/FrmAppHelper.php:1717
4661
  msgid "hours"
4662
  msgstr ""
4663
 
4664
+ #: classes/helpers/FrmAppHelper.php:1718
4665
  msgid "minute"
4666
  msgstr ""
4667
 
4668
+ #: classes/helpers/FrmAppHelper.php:1718
4669
  msgid "minutes"
4670
  msgstr ""
4671
 
4672
+ #: classes/helpers/FrmAppHelper.php:1719
4673
  msgid "second"
4674
  msgstr ""
4675
 
4676
+ #: classes/helpers/FrmAppHelper.php:1811
4677
  msgid "Give this action a label for easy reference."
4678
  msgstr ""
4679
 
4680
+ #: classes/helpers/FrmAppHelper.php:1812
4681
  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."
4682
  msgstr ""
4683
 
4684
+ #: classes/helpers/FrmAppHelper.php:1813
4685
  msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
4686
  msgstr ""
4687
 
4688
+ #: classes/helpers/FrmAppHelper.php:1814
4689
  msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
4690
  msgstr ""
4691
 
4692
+ #: classes/helpers/FrmAppHelper.php:1815
4693
  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."
4694
  msgstr ""
4695
 
4696
+ #: classes/helpers/FrmAppHelper.php:1816
4697
  msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
4698
  msgstr ""
4699
 
4700
  #. translators: %1$s: Form name, %2$s: Date
4701
+ #: classes/helpers/FrmAppHelper.php:1818
4702
  msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
4703
  msgstr ""
4704
 
4705
+ #: classes/helpers/FrmAppHelper.php:1952
4706
+ #: classes/helpers/FrmAppHelper.php:2023
4707
  msgid "Please wait while your site updates."
4708
  msgstr ""
4709
 
4710
+ #: classes/helpers/FrmAppHelper.php:1953
4711
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
4712
  msgstr ""
4713
 
4714
+ #: classes/helpers/FrmAppHelper.php:1955
4715
+ #: classes/helpers/FrmAppHelper.php:1982
4716
  msgid "Loading&hellip;"
4717
  msgstr ""
4718
 
4719
+ #: classes/helpers/FrmAppHelper.php:1983
4720
  msgid "Remove"
4721
  msgstr ""
4722
 
4723
+ #: classes/helpers/FrmAppHelper.php:1987
4724
  msgid "No results match"
4725
  msgstr ""
4726
 
4727
+ #: classes/helpers/FrmAppHelper.php:1988
4728
  msgid "That file looks like Spam."
4729
  msgstr ""
4730
 
4731
+ #: classes/helpers/FrmAppHelper.php:1989
4732
  msgid "There is an error in the calculation in the field with key"
4733
  msgstr ""
4734
 
4735
+ #: classes/helpers/FrmAppHelper.php:1990
4736
  msgid "Please complete the preceding required fields before uploading a file."
4737
  msgstr ""
4738
 
4739
+ #: classes/helpers/FrmAppHelper.php:1997
4740
  msgid "(Click to add description)"
4741
  msgstr ""
4742
 
4743
+ #: classes/helpers/FrmAppHelper.php:1998
4744
  msgid "(Blank)"
4745
  msgstr ""
4746
 
4747
+ #: classes/helpers/FrmAppHelper.php:1999
4748
  msgid "(no label)"
4749
  msgstr ""
4750
 
4751
+ #: classes/helpers/FrmAppHelper.php:2000
4752
  msgid "Saving"
4753
  msgstr ""
4754
 
4755
+ #: classes/helpers/FrmAppHelper.php:2001
4756
  msgid "Saved"
4757
  msgstr ""
4758
 
4759
+ #: classes/helpers/FrmAppHelper.php:2002
4760
  msgid "OK"
4761
  msgstr ""
4762
 
4763
+ #: classes/helpers/FrmAppHelper.php:2005
4764
  msgid "Clear default value when typing"
4765
  msgstr ""
4766
 
4767
+ #: classes/helpers/FrmAppHelper.php:2006
4768
  msgid "Do not clear default value when typing"
4769
  msgstr ""
4770
 
4771
+ #: classes/helpers/FrmAppHelper.php:2007
4772
  msgid "Default value will pass form validation"
4773
  msgstr ""
4774
 
4775
+ #: classes/helpers/FrmAppHelper.php:2008
4776
  msgid "Default value will NOT pass form validation"
4777
  msgstr ""
4778
 
4779
+ #: classes/helpers/FrmAppHelper.php:2010
4780
  msgid "Are you sure you want to delete this field and all data associated with it?"
4781
  msgstr ""
4782
 
4783
+ #: classes/helpers/FrmAppHelper.php:2011
4784
  msgid "WARNING: This will delete all fields inside of the section as well."
4785
  msgstr ""
4786
 
4787
+ #: classes/helpers/FrmAppHelper.php:2012
4788
  msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
4789
  msgstr ""
4790
 
4791
+ #: classes/helpers/FrmAppHelper.php:2015
4792
  msgid "Enter Email"
4793
  msgstr ""
4794
 
4795
+ #: classes/helpers/FrmAppHelper.php:2016
4796
  msgid "Confirm Email"
4797
  msgstr ""
4798
 
4799
+ #: classes/helpers/FrmAppHelper.php:2017
4800
  msgid "Conditional content here"
4801
  msgstr ""
4802
 
4803
+ #: classes/helpers/FrmAppHelper.php:2019
4804
  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."
4805
  msgstr ""
4806
 
4807
+ #: classes/helpers/FrmAppHelper.php:2020
4808
  msgid "Enter Password"
4809
  msgstr ""
4810
 
4811
+ #: classes/helpers/FrmAppHelper.php:2021
4812
  msgid "Confirm Password"
4813
  msgstr ""
4814
 
4815
+ #: classes/helpers/FrmAppHelper.php:2022
4816
  msgid "Import Complete"
4817
  msgstr ""
4818
 
4819
+ #: classes/helpers/FrmAppHelper.php:2024
4820
  msgid "Warning: There is no way to retrieve unsaved entries."
4821
  msgstr ""
4822
 
4823
+ #: classes/helpers/FrmAppHelper.php:2025
4824
  msgid "Private"
4825
  msgstr ""
4826
 
4827
+ #: classes/helpers/FrmAppHelper.php:2028
4828
  msgid "No new licenses were found"
4829
  msgstr ""
4830
 
4831
+ #: classes/helpers/FrmAppHelper.php:2029
4832
  msgid "This calculation has at least one unmatched ( ) { } [ ]."
4833
  msgstr ""
4834
 
4835
+ #: classes/helpers/FrmAppHelper.php:2030
4836
  msgid "This calculation may have shortcodes that work in Views but not forms."
4837
  msgstr ""
4838
 
4839
+ #: classes/helpers/FrmAppHelper.php:2031
4840
  msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
4841
  msgstr ""
4842
 
4843
+ #: classes/helpers/FrmAppHelper.php:2032
4844
  msgid "Please enter a Repeat Limit that is greater than 1."
4845
  msgstr ""
4846
 
4847
+ #: classes/helpers/FrmAppHelper.php:2057
4848
  msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
4849
  msgstr ""
4850
 
4851
+ #: classes/helpers/FrmAppHelper.php:2084
4852
  msgid "You are running a version of Formidable Forms that may not be compatible with your version of Formidable Forms Pro."
4853
  msgstr ""
4854
 
4855
+ #: classes/helpers/FrmAppHelper.php:2112
4856
+ msgid "The version of PHP on your server is too low. If this is not corrected, you may see issues with Formidable Forms. Please contact your web host and ask to be updated to PHP 7.0+."
4857
+ msgstr ""
4858
+
4859
+ #: classes/helpers/FrmAppHelper.php:2118
4860
+ msgid "You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome)."
4861
+ msgstr ""
4862
+
4863
+ #: classes/helpers/FrmAppHelper.php:2132
4864
  msgid "English"
4865
  msgstr ""
4866
 
4867
+ #: classes/helpers/FrmAppHelper.php:2133
4868
  msgid "Afrikaans"
4869
  msgstr ""
4870
 
4871
+ #: classes/helpers/FrmAppHelper.php:2134
4872
  msgid "Albanian"
4873
  msgstr ""
4874
 
4875
+ #: classes/helpers/FrmAppHelper.php:2135
4876
  msgid "Arabic"
4877
  msgstr ""
4878
 
4879
+ #: classes/helpers/FrmAppHelper.php:2136
4880
  msgid "Armenian"
4881
  msgstr ""
4882
 
4883
+ #: classes/helpers/FrmAppHelper.php:2137
4884
  msgid "Azerbaijani"
4885
  msgstr ""
4886
 
4887
+ #: classes/helpers/FrmAppHelper.php:2138
4888
  msgid "Basque"
4889
  msgstr ""
4890
 
4891
+ #: classes/helpers/FrmAppHelper.php:2139
4892
  msgid "Bosnian"
4893
  msgstr ""
4894
 
4895
+ #: classes/helpers/FrmAppHelper.php:2140
4896
  msgid "Bulgarian"
4897
  msgstr ""
4898
 
4899
+ #: classes/helpers/FrmAppHelper.php:2141
4900
  msgid "Catalan"
4901
  msgstr ""
4902
 
4903
+ #: classes/helpers/FrmAppHelper.php:2142
4904
  msgid "Chinese Hong Kong"
4905
  msgstr ""
4906
 
4907
+ #: classes/helpers/FrmAppHelper.php:2143
4908
  msgid "Chinese Simplified"
4909
  msgstr ""
4910
 
4911
+ #: classes/helpers/FrmAppHelper.php:2144
4912
  msgid "Chinese Traditional"
4913
  msgstr ""
4914
 
4915
+ #: classes/helpers/FrmAppHelper.php:2145
4916
  msgid "Croatian"
4917
  msgstr ""
4918
 
4919
+ #: classes/helpers/FrmAppHelper.php:2146
4920
  msgid "Czech"
4921
  msgstr ""
4922
 
4923
+ #: classes/helpers/FrmAppHelper.php:2147
4924
  msgid "Danish"
4925
  msgstr ""
4926
 
4927
+ #: classes/helpers/FrmAppHelper.php:2148
4928
  msgid "Dutch"
4929
  msgstr ""
4930
 
4931
+ #: classes/helpers/FrmAppHelper.php:2149
4932
  msgid "English/UK"
4933
  msgstr ""
4934
 
4935
+ #: classes/helpers/FrmAppHelper.php:2150
4936
  msgid "Esperanto"
4937
  msgstr ""
4938
 
4939
+ #: classes/helpers/FrmAppHelper.php:2151
4940
  msgid "Estonian"
4941
  msgstr ""
4942
 
4943
+ #: classes/helpers/FrmAppHelper.php:2152
4944
  msgid "Faroese"
4945
  msgstr ""
4946
 
4947
+ #: classes/helpers/FrmAppHelper.php:2153
4948
  msgid "Farsi/Persian"
4949
  msgstr ""
4950
 
4951
+ #: classes/helpers/FrmAppHelper.php:2154
4952
  msgid "Filipino"
4953
  msgstr ""
4954
 
4955
+ #: classes/helpers/FrmAppHelper.php:2155
4956
  msgid "Finnish"
4957
  msgstr ""
4958
 
4959
+ #: classes/helpers/FrmAppHelper.php:2156
4960
  msgid "French"
4961
  msgstr ""
4962
 
4963
+ #: classes/helpers/FrmAppHelper.php:2157
4964
  msgid "French/Canadian"
4965
  msgstr ""
4966
 
4967
+ #: classes/helpers/FrmAppHelper.php:2158
4968
  msgid "French/Swiss"
4969
  msgstr ""
4970
 
4971
+ #: classes/helpers/FrmAppHelper.php:2159
4972
  msgid "German"
4973
  msgstr ""
4974
 
4975
+ #: classes/helpers/FrmAppHelper.php:2160
4976
  msgid "German/Austria"
4977
  msgstr ""
4978
 
4979
+ #: classes/helpers/FrmAppHelper.php:2161
4980
  msgid "German/Switzerland"
4981
  msgstr ""
4982
 
4983
+ #: classes/helpers/FrmAppHelper.php:2162
4984
  msgid "Greek"
4985
  msgstr ""
4986
 
4987
+ #: classes/helpers/FrmAppHelper.php:2163
4988
+ #: classes/helpers/FrmAppHelper.php:2164
4989
  msgid "Hebrew"
4990
  msgstr ""
4991
 
4992
+ #: classes/helpers/FrmAppHelper.php:2165
4993
  msgid "Hindi"
4994
  msgstr ""
4995
 
4996
+ #: classes/helpers/FrmAppHelper.php:2166
4997
  msgid "Hungarian"
4998
  msgstr ""
4999
 
5000
+ #: classes/helpers/FrmAppHelper.php:2167
5001
  msgid "Icelandic"
5002
  msgstr ""
5003
 
5004
+ #: classes/helpers/FrmAppHelper.php:2168
5005
  msgid "Indonesian"
5006
  msgstr ""
5007
 
5008
+ #: classes/helpers/FrmAppHelper.php:2169
5009
  msgid "Italian"
5010
  msgstr ""
5011
 
5012
+ #: classes/helpers/FrmAppHelper.php:2170
5013
  msgid "Japanese"
5014
  msgstr ""
5015
 
5016
+ #: classes/helpers/FrmAppHelper.php:2171
5017
  msgid "Korean"
5018
  msgstr ""
5019
 
5020
+ #: classes/helpers/FrmAppHelper.php:2172
5021
  msgid "Latvian"
5022
  msgstr ""
5023
 
5024
+ #: classes/helpers/FrmAppHelper.php:2173
5025
  msgid "Lithuanian"
5026
  msgstr ""
5027
 
5028
+ #: classes/helpers/FrmAppHelper.php:2174
5029
  msgid "Malaysian"
5030
  msgstr ""
5031
 
5032
+ #: classes/helpers/FrmAppHelper.php:2175
5033
  msgid "Norwegian"
5034
  msgstr ""
5035
 
5036
+ #: classes/helpers/FrmAppHelper.php:2176
5037
  msgid "Polish"
5038
  msgstr ""
5039
 
5040
+ #: classes/helpers/FrmAppHelper.php:2177
5041
  msgid "Portuguese"
5042
  msgstr ""
5043
 
5044
+ #: classes/helpers/FrmAppHelper.php:2178
5045
  msgid "Portuguese/Brazilian"
5046
  msgstr ""
5047
 
5048
+ #: classes/helpers/FrmAppHelper.php:2179
5049
  msgid "Portuguese/Portugal"
5050
  msgstr ""
5051
 
5052
+ #: classes/helpers/FrmAppHelper.php:2180
5053
  msgid "Romanian"
5054
  msgstr ""
5055
 
5056
+ #: classes/helpers/FrmAppHelper.php:2181
5057
  msgid "Russian"
5058
  msgstr ""
5059
 
5060
+ #: classes/helpers/FrmAppHelper.php:2182
5061
+ #: classes/helpers/FrmAppHelper.php:2183
5062
  msgid "Serbian"
5063
  msgstr ""
5064
 
5065
+ #: classes/helpers/FrmAppHelper.php:2184
5066
  msgid "Slovak"
5067
  msgstr ""
5068
 
5069
+ #: classes/helpers/FrmAppHelper.php:2185
5070
  msgid "Slovenian"
5071
  msgstr ""
5072
 
5073
+ #: classes/helpers/FrmAppHelper.php:2186
5074
  msgid "Spanish"
5075
  msgstr ""
5076
 
5077
+ #: classes/helpers/FrmAppHelper.php:2187
5078
  msgid "Spanish/Latin America"
5079
  msgstr ""
5080
 
5081
+ #: classes/helpers/FrmAppHelper.php:2188
5082
  msgid "Swedish"
5083
  msgstr ""
5084
 
5085
+ #: classes/helpers/FrmAppHelper.php:2189
5086
  msgid "Tamil"
5087
  msgstr ""
5088
 
5089
+ #: classes/helpers/FrmAppHelper.php:2190
5090
  msgid "Thai"
5091
  msgstr ""
5092
 
5093
+ #: classes/helpers/FrmAppHelper.php:2191
5094
+ #: classes/helpers/FrmAppHelper.php:2192
5095
  msgid "Turkish"
5096
  msgstr ""
5097
 
5098
+ #: classes/helpers/FrmAppHelper.php:2193
5099
  msgid "Ukranian"
5100
  msgstr ""
5101
 
5102
+ #: classes/helpers/FrmAppHelper.php:2194
5103
  msgid "Vietnamese"
5104
  msgstr ""
5105
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: forms, contact form, form builder, survey, form maker, form, form creator
4
  Requires at least: 4.6
5
  Tested up to: 5.2
6
  Requires PHP: 5.6
7
- Stable tag: 4.0.01
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,6 +374,26 @@ 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
  = 4.0.01 =
378
  * Automatically open the field options box on the form settings page.
379
  * Clean up, size down, and reposition the request for reviews.
4
  Requires at least: 4.6
5
  Tested up to: 5.2
6
  Requires PHP: 5.6
7
+ Stable tag: 4.0.02
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
+ = 4.0.02 =
378
+ * Include the WordPress admin bar in full screen mode.
379
+ * Replace field icons in builder with svg sprite to prevent browser caching issues.
380
+ * Update the field ids in more of the form action settings when a form is duplicated.
381
+ * Live update for default values.
382
+ * Click on a field description on the form builder page to be taken directly to the setting.
383
+ * Allow apostrophes in an email address.
384
+ * Save a few clicks. Move the layout classes out of the advanced section and auto open the fields class list on click. Also select the search box when the form switcher is selected.
385
+ * Fix: The WordPress menu was collapsed when editing a post. Oops!
386
+ * Fix: Trim whitespace from radio/checkbox/dropdown options when they are changed.
387
+ * Fix: Automatically hide and show the field box more accurately when clicking in and out of settings that use it.
388
+ * Fix: Include field selection box on the redirect url setting.
389
+ * Fix: Adjust the show entry page for small screens.
390
+ * Fix: After an entry was deleted from the entry listing page, the page no longer scrolled.
391
+ * Fix: Backslashes were removed in the Custom CSS on save.
392
+ * Fix: In some cases, the default value was showing as a placeholder.
393
+ * Fix: Fix a PHP 5.4 error. If you are running a version less than 5.6, you'll see a reminder message to get up to date.
394
+ * Code: Added a trigger for use after an ajax call. The frmElementAdded trigger allows add-ons to add the field box menu to newly added settings.
395
+ * Show a message if Internet Explorer is being used. This browser is no longer supported in the form builder.
396
+
397
  = 4.0.01 =
398
  * Automatically open the field options box on the form settings page.
399
  * Clean up, size down, and reposition the request for reviews.