Formidable Forms – Form Builder for WordPress - Version 3.06.01

Version Description

  • Notice: The default HTML for field types with multiple inputs now use div instead of label for the field label for WCAG compliance. This will only affect new fields.
  • New: When saving a form, check if it is too long for the server settings. If so, show a notice along with information on how to fix it.
  • New: Better WCAG compliance. Added aria-required to required fields and aria-invalid when javascript validation is turned on.
  • New: Add functions to get a list of field, form, and global settings to translate for multilingual add-ons. This will make maintaining strings much easier without a delay.
  • New: Added frm_form_strings, frm_global_setting, frm_global_invalid_msg, frm_global_failed_msg, and frm_global_login_msg hooks for making adjustments to messages.
  • New: Add frm_field filter when a field is fetched individually with FrmField::getOne( x, true )
  • New: Allow the frm_scroll_box class to work on HTML fields instead of only accepting frm_html_scroll_box
  • Fix: The pagination lost styling in WP 5.1.
  • Fix: The saved CSS string was being autoloaded by WordPress since the transient didn't have an expiration.
  • Fix: Prevent the invisible recaptcha from adding empty space in some forms.
  • Fix: Form layouts with a long section of options in a radio or checkbox were adding extra spacing.
  • Fix: The templates page was showing a blank tile for expired licenses.
  • Fix: Submit button remained disabled after when the invisible reCaptcha validation failed.
Download this release

Release Info

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

Code changes from version 3.06 to 3.06.01

classes/controllers/FrmAppController.php CHANGED
@@ -229,6 +229,11 @@ class FrmAppController {
229
  $is_pro = FrmAppHelper::pro_is_installed();
230
  wp_enqueue_script( 'jquery-ui-dialog' );
231
  wp_enqueue_style( 'jquery-ui-dialog' );
 
 
 
 
 
232
  include( FrmAppHelper::plugin_path() . '/classes/views/shared/upgrade_overlay.php' );
233
  }
234
 
229
  $is_pro = FrmAppHelper::pro_is_installed();
230
  wp_enqueue_script( 'jquery-ui-dialog' );
231
  wp_enqueue_style( 'jquery-ui-dialog' );
232
+ $upgrade_link = array(
233
+ 'medium' => 'builder',
234
+ 'content' => 'upgrade',
235
+ );
236
+
237
  include( FrmAppHelper::plugin_path() . '/classes/views/shared/upgrade_overlay.php' );
238
  }
239
 
classes/controllers/FrmFieldsController.php CHANGED
@@ -624,6 +624,7 @@ class FrmFieldsController {
624
  if ( FrmField::is_required( $field ) ) {
625
  $required_message = FrmFieldsHelper::get_error_msg( $field, 'blank' );
626
  $add_html['data-reqmsg'] = 'data-reqmsg="' . esc_attr( $required_message ) . '"';
 
627
  }
628
 
629
  if ( ! FrmField::is_option_empty( $field, 'invalid' ) ) {
@@ -632,6 +633,26 @@ class FrmFieldsController {
632
  }
633
  }
634
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
635
  private static function add_shortcodes_to_html( $field, array &$add_html ) {
636
  if ( FrmField::is_option_empty( $field, 'shortcodes' ) ) {
637
  return;
624
  if ( FrmField::is_required( $field ) ) {
625
  $required_message = FrmFieldsHelper::get_error_msg( $field, 'blank' );
626
  $add_html['data-reqmsg'] = 'data-reqmsg="' . esc_attr( $required_message ) . '"';
627
+ self::maybe_add_html_required( $field, $add_html );
628
  }
629
 
630
  if ( ! FrmField::is_option_empty( $field, 'invalid' ) ) {
633
  }
634
  }
635
 
636
+ /**
637
+ * If 'required' is added to a conditionall hidden field, the form won't
638
+ * submit in many browsers. Check to make sure the javascript to conditionally
639
+ * remove it is present if needed.
640
+ *
641
+ * @since 3.06.01
642
+ * @param array $field
643
+ * @param array $add_html
644
+ */
645
+ private static function maybe_add_html_required( $field, array &$add_html ) {
646
+ if ( in_array( $field['type'], array( 'radio', 'checkbox', 'file', 'data', 'lookup' ) ) ) {
647
+ return;
648
+ }
649
+
650
+ $include_html = ! class_exists( 'FrmProDb' ) || version_compare( FrmProDb::$plug_version, '3.06', '>' );
651
+ if ( $include_html ) {
652
+ $add_html['aria-required'] = 'aria-required="true"';
653
+ }
654
+ }
655
+
656
  private static function add_shortcodes_to_html( $field, array &$add_html ) {
657
  if ( FrmField::is_option_empty( $field, 'shortcodes' ) ) {
658
  return;
classes/controllers/FrmFormsController.php CHANGED
@@ -211,6 +211,16 @@ class FrmFormsController {
211
  } else {
212
  FrmForm::update( $id, $values );
213
  $message = __( 'Form was Successfully Updated', 'formidable' );
 
 
 
 
 
 
 
 
 
 
214
  if ( defined( 'DOING_AJAX' ) ) {
215
  wp_die( esc_html( $message ) );
216
  }
@@ -218,6 +228,17 @@ class FrmFormsController {
218
  }
219
  }
220
 
 
 
 
 
 
 
 
 
 
 
 
221
  /**
222
  * Redirect to the url for creating from a template
223
  * Also delete the current form
@@ -776,6 +797,15 @@ class FrmFormsController {
776
  $templates = $api->get_api_info();
777
  self::add_user_templates( $templates );
778
 
 
 
 
 
 
 
 
 
 
779
  $pricing = FrmAppHelper::admin_upgrade_link( 'form-templates' );
780
  $plans = array( 'free', 'Personal', 'Business', 'Elite' );
781
 
@@ -1317,7 +1347,7 @@ class FrmFormsController {
1317
 
1318
  $form = apply_filters( 'frm_pre_display_form', $form );
1319
 
1320
- $frm_settings = FrmAppHelper::get_settings();
1321
 
1322
  if ( self::is_viewable_draft_form( $form ) ) {
1323
  // don't show a draft form on a page
@@ -1683,7 +1713,7 @@ class FrmFormsController {
1683
  * @since 2.05
1684
  */
1685
  private static function prepare_submit_message( $form, $entry_id ) {
1686
- $frm_settings = FrmAppHelper::get_settings();
1687
 
1688
  if ( $entry_id && is_numeric( $entry_id ) ) {
1689
  $message = isset( $form->options['success_msg'] ) ? $form->options['success_msg'] : $frm_settings->success_msg;
211
  } else {
212
  FrmForm::update( $id, $values );
213
  $message = __( 'Form was Successfully Updated', 'formidable' );
214
+
215
+ if ( self::is_too_long( $values ) ) {
216
+ $message .= '<br/> ' . sprintf(
217
+ /* translators: %1$s: Start link HTML, %2$s: end link HTML */
218
+ __( 'However, your form is very long and may be %1$sreaching server limits%2$s.', 'formidable' ),
219
+ '<a href="https://formidableforms.com/knowledgebase/i-have-a-long-form-why-did-the-options-at-the-end-of-the-form-stop-saving/?utm_source=WordPress&utm_medium=builder&utm_campaign=liteplugin" target="_blank" rel="noopener">',
220
+ '</a>'
221
+ );
222
+ }
223
+
224
  if ( defined( 'DOING_AJAX' ) ) {
225
  wp_die( esc_html( $message ) );
226
  }
228
  }
229
  }
230
 
231
+ /**
232
+ * Check if the value at the end of the form was included.
233
+ * If it's missing, it means other values at the end of the form
234
+ * were likely not saved either.
235
+ *
236
+ * @since 3.06.01
237
+ */
238
+ private static function is_too_long( $values ) {
239
+ return ( ! isset( $values['frm_end'] ) ) || empty( $values['frm_end'] );
240
+ }
241
+
242
  /**
243
  * Redirect to the url for creating from a template
244
  * Also delete the current form
797
  $templates = $api->get_api_info();
798
  self::add_user_templates( $templates );
799
 
800
+ $error = '';
801
+ $expired = false;
802
+ if ( isset( $templates['error'] ) ) {
803
+ $error = $templates['error']['message'];
804
+ $error = str_replace( 'utm_medium=addons', 'utm_medium=form-templates', $error );
805
+ $expired = ( $templates['error']['code'] === 'expired' );
806
+ unset( $templates['error'] );
807
+ }
808
+
809
  $pricing = FrmAppHelper::admin_upgrade_link( 'form-templates' );
810
  $plans = array( 'free', 'Personal', 'Business', 'Elite' );
811
 
1347
 
1348
  $form = apply_filters( 'frm_pre_display_form', $form );
1349
 
1350
+ $frm_settings = FrmAppHelper::get_settings( array( 'current_form' => $form->id ) );
1351
 
1352
  if ( self::is_viewable_draft_form( $form ) ) {
1353
  // don't show a draft form on a page
1713
  * @since 2.05
1714
  */
1715
  private static function prepare_submit_message( $form, $entry_id ) {
1716
+ $frm_settings = FrmAppHelper::get_settings( array( 'current_form' => $form->id ) );
1717
 
1718
  if ( $entry_id && is_numeric( $entry_id ) ) {
1719
  $message = isset( $form->options['success_msg'] ) ? $form->options['success_msg'] : $frm_settings->success_msg;
classes/helpers/FrmAppHelper.php CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '3.06';
15
 
16
  /**
17
  * @since 1.07.02
@@ -73,19 +73,38 @@ class FrmAppHelper {
73
 
74
  /**
75
  * @since 3.04.02
 
 
76
  */
77
- public static function admin_upgrade_link( $medium, $page = '' ) {
78
  if ( empty( $page ) ) {
79
- $page = 'https://formidableforms.com/pricing-lite/';
80
  } else {
81
  $page = 'https://formidableforms.com/' . $page;
82
  }
 
 
 
 
 
 
 
 
 
 
 
 
83
  $query_args = array(
84
  'utm_source' => 'WordPress',
85
  'utm_medium' => $medium,
86
  'utm_campaign' => 'liteplugin',
87
  );
88
- return add_query_arg( $query_args, $page );
 
 
 
 
 
89
  }
90
 
91
  /**
@@ -93,14 +112,18 @@ class FrmAppHelper {
93
  *
94
  * @since 2.0
95
  *
96
- * @param None
97
  * @return FrmSettings $frm_setings
98
  */
99
- public static function get_settings() {
100
  global $frm_settings;
101
  if ( empty( $frm_settings ) ) {
102
- $frm_settings = new FrmSettings();
 
 
 
103
  }
 
104
  return $frm_settings;
105
  }
106
 
@@ -1789,7 +1812,6 @@ class FrmAppHelper {
1789
  public static function locales( $type = 'date' ) {
1790
  $locales = array(
1791
  'en' => __( 'English', 'formidable' ),
1792
- '' => __( 'English/Western', 'formidable' ),
1793
  'af' => __( 'Afrikaans', 'formidable' ),
1794
  'sq' => __( 'Albanian', 'formidable' ),
1795
  'ar' => __( 'Arabic', 'formidable' ),
@@ -1856,10 +1878,10 @@ class FrmAppHelper {
1856
 
1857
  if ( $type === 'captcha' ) {
1858
  // remove the languages unavailable for the captcha
1859
- $unset = array( '', 'af', 'sq', 'hy', 'az', 'eu', 'bs', 'zh-HK', 'eo', 'et', 'fo', 'fr-CH', 'he', 'is', 'ms', 'sr-SR', 'ta', 'tu' );
1860
  } else {
1861
  // remove the languages unavailable for the datepicker
1862
- $unset = array( 'en', 'fil', 'fr-CA', 'de-AT', 'de-AT', 'de-CH', 'iw', 'hi', 'pt', 'pt-PT', 'es-419', 'tr' );
1863
  }
1864
 
1865
  $locales = array_diff_key( $locales, array_flip( $unset ) );
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '3.06.01';
15
 
16
  /**
17
  * @since 1.07.02
73
 
74
  /**
75
  * @since 3.04.02
76
+ * @param array|string $args
77
+ * @param string $page
78
  */
79
+ public static function admin_upgrade_link( $args, $page = '' ) {
80
  if ( empty( $page ) ) {
81
+ $page = 'https://formidableforms.com/lite-upgrade/';
82
  } else {
83
  $page = 'https://formidableforms.com/' . $page;
84
  }
85
+
86
+ $anchor = '';
87
+ if ( is_array( $args ) ) {
88
+ $medium = $args['medium'];
89
+ $content = $args['content'];
90
+ if ( isset( $args['anchor'] ) ) {
91
+ $anchor = '#' . $args['anchor'];
92
+ }
93
+ } else {
94
+ $medium = $args;
95
+ }
96
+
97
  $query_args = array(
98
  'utm_source' => 'WordPress',
99
  'utm_medium' => $medium,
100
  'utm_campaign' => 'liteplugin',
101
  );
102
+
103
+ if ( isset( $content ) ) {
104
+ $query_args['utm_content'] = $content;
105
+ }
106
+
107
+ return add_query_arg( $query_args, $page ) . $anchor;
108
  }
109
 
110
  /**
112
  *
113
  * @since 2.0
114
  *
115
+ * @param array $args - May include the form id when values need translation.
116
  * @return FrmSettings $frm_setings
117
  */
118
+ public static function get_settings( $args = array() ) {
119
  global $frm_settings;
120
  if ( empty( $frm_settings ) ) {
121
+ $frm_settings = new FrmSettings( $args );
122
+ } elseif ( isset( $args['current_form'] ) ) {
123
+ // If the global has already been set, allow strings to be filtered.
124
+ $frm_settings->maybe_filter_for_form( $args );
125
  }
126
+
127
  return $frm_settings;
128
  }
129
 
1812
  public static function locales( $type = 'date' ) {
1813
  $locales = array(
1814
  'en' => __( 'English', 'formidable' ),
 
1815
  'af' => __( 'Afrikaans', 'formidable' ),
1816
  'sq' => __( 'Albanian', 'formidable' ),
1817
  'ar' => __( 'Arabic', 'formidable' ),
1878
 
1879
  if ( $type === 'captcha' ) {
1880
  // remove the languages unavailable for the captcha
1881
+ $unset = array( 'af', 'sq', 'hy', 'az', 'eu', 'bs', 'zh-HK', 'eo', 'et', 'fo', 'fr-CH', 'he', 'is', 'ms', 'sr-SR', 'ta', 'tu' );
1882
  } else {
1883
  // remove the languages unavailable for the datepicker
1884
+ $unset = array( 'fil', 'fr-CA', 'de-AT', 'de-CH', 'iw', 'hi', 'pt', 'pt-PT', 'es-419', 'tr' );
1885
  }
1886
 
1887
  $locales = array_diff_key( $locales, array_flip( $unset ) );
classes/helpers/FrmFormsHelper.php CHANGED
@@ -176,7 +176,12 @@ class FrmFormsHelper {
176
  * @return string
177
  */
178
  public static function get_invalid_error_message( $args ) {
179
- $frm_settings = FrmAppHelper::get_settings();
 
 
 
 
 
180
  $invalid_msg = do_shortcode( $frm_settings->invalid_msg );
181
  return apply_filters( 'frm_invalid_error_message', $invalid_msg, $args );
182
  }
@@ -891,7 +896,7 @@ BEFORE_HTML;
891
  ),
892
  'frm_scroll_box' => array(
893
  'label' => __( 'Scroll Box', 'formidable' ),
894
- 'title' => __( 'If you have many checkbox or radio button options, you may add this class to allow your user to easily scroll through the options.', 'formidable' ),
895
  ),
896
  'frm_capitalize' => array(
897
  'label' => __( 'Capitalize', 'formidable' ),
176
  * @return string
177
  */
178
  public static function get_invalid_error_message( $args ) {
179
+ $settings_args = $args;
180
+ if ( isset( $args['form'] ) ) {
181
+ $settings_args['current_form'] = $args['form']->id;
182
+ }
183
+
184
+ $frm_settings = FrmAppHelper::get_settings( $settings_args );
185
  $invalid_msg = do_shortcode( $frm_settings->invalid_msg );
186
  return apply_filters( 'frm_invalid_error_message', $invalid_msg, $args );
187
  }
896
  ),
897
  'frm_scroll_box' => array(
898
  'label' => __( 'Scroll Box', 'formidable' ),
899
+ 'title' => __( 'If you have many checkbox or radio button options, you may add this class to allow your user to easily scroll through the options. Or add a scrolling area around content in an HTML field.', 'formidable' ),
900
  ),
901
  'frm_capitalize' => array(
902
  'label' => __( 'Capitalize', 'formidable' ),
classes/helpers/FrmListHelper.php CHANGED
@@ -674,14 +674,14 @@ class FrmListHelper {
674
  }
675
 
676
  private function add_disabled_link( $label ) {
677
- return '<span class="tablenav-pages-navspan" aria-hidden="true">' . $label . '</span>';
678
  }
679
 
680
  private function add_active_link( $atts ) {
681
  $url = esc_url( add_query_arg( 'paged', $atts['number'], $this->current_url() ) );
682
  $label = $this->link_label( $atts['page'] );
683
  return sprintf(
684
- "<a class='%s-page' href='%s'><span class='screen-reader-text'>%s</span><span aria-hidden='true'>%s</span></a>",
685
  $atts['page'],
686
  $url,
687
  $label,
674
  }
675
 
676
  private function add_disabled_link( $label ) {
677
+ return '<span class="tablenav-pages-navspan button disabled" aria-hidden="true">' . $label . '</span>';
678
  }
679
 
680
  private function add_active_link( $atts ) {
681
  $url = esc_url( add_query_arg( 'paged', $atts['number'], $this->current_url() ) );
682
  $label = $this->link_label( $atts['page'] );
683
  return sprintf(
684
+ "<a class='button %s-page' href='%s'><span class='screen-reader-text'>%s</span><span aria-hidden='true'>%s</span></a>",
685
  $atts['page'],
686
  $url,
687
  $label,
classes/helpers/FrmTipsHelper.php CHANGED
@@ -14,8 +14,14 @@ class FrmTipsHelper {
14
  echo '<p>';
15
  }
16
 
17
- $link = FrmAppHelper::make_affiliate_url( self::base_url() . $tip['link'] );
18
- $link .= '&utm_source=WordPress&utm_campaign=liteplugin';
 
 
 
 
 
 
19
  ?>
20
  <a href="<?php echo esc_url( $link ); ?>" target="_blank" class="frm_pro_tip">
21
  <span>
@@ -32,34 +38,45 @@ class FrmTipsHelper {
32
  }
33
  }
34
 
35
- private static function base_url() {
36
- return 'https://formidableforms.com/';
37
- }
38
-
39
  public static function get_builder_tip() {
40
  $tips = array(
41
  array(
42
- 'link' => 'conditional-logic-tip/?utm_medium=tip-logic',
 
 
 
43
  'tip' => __( 'Use conditional logic to shorten your forms and increase conversions.', 'formidable' ),
44
  'call' => __( 'Upgrade to Pro.', 'formidable' ),
45
  ),
46
  array(
47
- 'link' => 'page-break-tip/?utm_medium=tip-pages',
 
 
 
48
  'tip' => __( 'Stop intimidating users with long forms.', 'formidable' ),
49
  'call' => __( 'Use page breaks.', 'formidable' ),
50
  ),
51
  array(
52
- 'link' => 'file-upload-tip/?utm_medium=tip-uploads',
 
 
 
53
  'tip' => __( 'Cut down on back-and-forth with clients.', 'formidable' ),
54
  'call' => __( 'Allow file uploads in your form.', 'formidable' ),
55
  ),
56
  array(
57
- 'link' => 'calculations-total-tip/?utm_medium=tip-calculations',
 
 
 
58
  'tip' => __( 'Need to calculate a total?', 'formidable' ),
59
  'call' => __( 'Upgrade to Pro.', 'formidable' ),
60
  ),
61
  array(
62
- 'link' => 'prefill-fields/?utm_medium=tip-prefill',
 
 
 
63
  'tip' => __( 'Save time.', 'formidable' ),
64
  'call' => __( 'Prefill fields with user info.', 'formidable' ),
65
  ),
@@ -71,22 +88,33 @@ class FrmTipsHelper {
71
  public static function get_form_settings_tip() {
72
  $tips = array(
73
  array(
74
- 'link' => 'front-end-editing-tip/?utm_medium=tip-front-edit',
 
 
 
75
  'tip' => __( 'A site with dynamic, user-generated content is within reach.', 'formidable' ),
76
  'call' => __( 'Add front-end editing.', 'formidable' ),
77
  ),
78
  array(
79
- 'link' => 'front-end-editing-b-tip/?utm_medium=tip-front-edit',
 
 
 
80
  'tip' => __( 'A site with dynamic, user-generated content is within reach.', 'formidable' ),
81
  'call' => __( 'Add front-end editing.', 'formidable' ),
82
  ),
83
  array(
84
- 'link' => 'save-drafts-tip/?utm_medium=tip-drafts',
 
 
 
85
  'tip' => __( 'Have a long form that takes time to complete?', 'formidable' ),
86
  'call' => __( 'Let logged-in users save a draft and return later.', 'formidable' ),
87
  ),
88
  array(
89
- 'link' => 'pricing-lite/?utm_medium=tip-ajax',
 
 
90
  'tip' => __( 'Want to submit forms without reloading the page?', 'formidable' ),
91
  'call' => __( 'Get ajax form submit.', 'formidable' ),
92
  ),
@@ -97,57 +125,90 @@ class FrmTipsHelper {
97
  public static function get_form_action_tip() {
98
  $tips = array(
99
  array(
100
- 'link' => 'email-routing-tip/?utm_medium=tip-routing',
 
 
 
101
  'tip' => __( 'Save time by sending the email to the right person automatically.', 'formidable' ),
102
  'call' => __( 'Add email routing.', 'formidable' ),
103
  ),
104
  array(
105
- 'link' => 'create-posts-tip/?utm_medium=tip-posts',
 
 
 
106
  'tip' => __( 'Create blog posts or pages from the front-end.', 'formidable' ),
107
  'call' => __( 'Upgrade to Pro.', 'formidable' ),
108
  ),
109
  array(
110
- 'link' => 'front-end-posting-tip/?utm_medium=tip-user-submit',
 
 
 
111
  'tip' => __( 'Make front-end posting easy.', 'formidable' ),
112
  'call' => __( 'Upgrade to Pro.', 'formidable' ),
113
  ),
114
  array(
115
- 'link' => 'mailchimp-tip/?utm_medium=tip-mailchimp',
 
 
 
116
  'tip' => __( 'Grow your business with automated email follow-up.', 'formidable' ),
117
  'call' => __( 'Send leads straight to MailChimp.', 'formidable' ),
118
  ),
119
  array(
120
- 'link' => 'paypal-tip/?utm_medium=tip-paypal',
 
 
 
121
  'tip' => __( 'Save hours and increase revenue by collecting payments with every submission.', 'formidable' ),
122
  'call' => __( 'Use PayPal with this form.', 'formidable' ),
123
  ),
124
  array(
125
- 'link' => 'paypal-increase-revenue-tip/?utm_medium=tip-paypal-revenue',
 
 
 
126
  'tip' => __( 'Increase revenue.', 'formidable' ),
127
  'call' => __( 'Use PayPal with this form.', 'formidable' ),
128
  ),
129
  array(
130
- 'link' => 'paypal-save-time-tip/?utm_medium=tip-paypal-fast',
 
 
 
131
  'tip' => __( 'Get paid more quickly.', 'formidable' ),
132
  'call' => __( 'Use Paypal with this form.', 'formidable' ),
133
  ),
134
  array(
135
- 'link' => 'registration-tip/?utm_medium=tip-registration',
 
 
 
136
  'tip' => __( 'Boost your site membership.', 'formidable' ),
137
  'call' => __( 'Automatically create user accounts.', 'formidable' ),
138
  ),
139
  array(
140
- 'link' => 'registration-profile-editing-tip/?utm_medium=tip-profile',
 
 
 
141
  'tip' => __( 'Make front-end profile editing possible.', 'formidable' ),
142
  'call' => __( 'Add user registration.', 'formidable' ),
143
  ),
144
  array(
145
- 'link' => 'twilio-tip/?utm_medium=tip-twilio-payment',
 
 
 
146
  'tip' => __( 'Want a text when this form is submitted or when a payment is received?', 'formidable' ),
147
  'call' => __( 'Use Twilio with this form.', 'formidable' ),
148
  ),
149
  array(
150
- 'link' => 'twilio-send-tip/?utm_medium=tip-twilio',
 
 
 
151
  'tip' => __( 'Send a text when this form is submitted.', 'formidable' ),
152
  'call' => __( 'Get Twilio.', 'formidable' ),
153
  ),
@@ -159,7 +220,10 @@ class FrmTipsHelper {
159
  public static function get_styling_tip() {
160
  $tips = array(
161
  array(
162
- 'link' => 'visual-styling-tip/?utm_medium=tip-style',
 
 
 
163
  'tip' => __( 'Make your sidebar or footer form stand out.', 'formidable' ),
164
  'call' => __( 'Use multiple style templates.', 'formidable' ),
165
  ),
@@ -170,12 +234,18 @@ class FrmTipsHelper {
170
  public static function get_entries_tip() {
171
  $tips = array(
172
  array(
173
- 'link' => 'manage-entries-tip/?utm_medium=tip-entries',
 
 
 
174
  'tip' => __( 'Want to edit or delete form submissions?', 'formidable' ),
175
  'call' => __( 'Add entry management.', 'formidable' ),
176
  ),
177
  array(
178
- 'link' => 'search-entries-tip/?utm_medium=tip-entries-search',
 
 
 
179
  'tip' => __( 'Want to search submitted entries?', 'formidable' ),
180
  'call' => __( 'Upgrade to Pro.', 'formidable' ),
181
  ),
@@ -187,7 +257,10 @@ class FrmTipsHelper {
187
  public static function get_import_tip() {
188
  $tips = array(
189
  array(
190
- 'link' => 'import-entries-tip/?utm_medium=tip-import',
 
 
 
191
  'tip' => __( 'Want to import entries into your forms?', 'formidable' ),
192
  'call' => __( 'Upgrade to Pro.', 'formidable' ),
193
  ),
@@ -198,17 +271,26 @@ class FrmTipsHelper {
198
  public static function get_banner_tip() {
199
  $tips = array(
200
  array(
201
- 'link' => '?utm_medium=banner',
 
 
 
202
  'tip' => __( 'Looking for more ways to get professional results?', 'formidable' ),
203
  'call' => __( 'Take your forms to the next level.', 'formidable' ),
204
  ),
205
  array(
206
- 'link' => '?utm_medium=banner',
 
 
 
207
  'tip' => __( 'Increase conversions in long forms.', 'formidable' ),
208
  'call' => __( 'Add conditional logic, page breaks, and section headings.', 'formidable' ),
209
  ),
210
  array(
211
- 'link' => '?utm_medium=banner',
 
 
 
212
  'tip' => __( 'Automate your business and increase revenue.', 'formidable' ),
213
  'call' => __( 'Collect instant payments, and send leads to MailChimp.', 'formidable' ),
214
  ),
14
  echo '<p>';
15
  }
16
 
17
+ if ( ! isset( $tip['page'] ) ) {
18
+ $tip['page'] = '';
19
+ }
20
+ if ( ! isset( $tip['link']['medium'] ) ) {
21
+ $tip['link']['medium'] = 'tip';
22
+ }
23
+
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
  <span>
38
  }
39
  }
40
 
 
 
 
 
41
  public static function get_builder_tip() {
42
  $tips = array(
43
  array(
44
+ 'link' => array(
45
+ 'content' => 'conditional-logic',
46
+ 'anchor' => 'feature-conditional-logic-wordpress-forms',
47
+ ),
48
  'tip' => __( 'Use conditional logic to shorten your forms and increase conversions.', 'formidable' ),
49
  'call' => __( 'Upgrade to Pro.', 'formidable' ),
50
  ),
51
  array(
52
+ 'link' => array(
53
+ 'content' => 'page-breaks',
54
+ 'anchor' => 'feature-wordpress-multi-step-form',
55
+ ),
56
  'tip' => __( 'Stop intimidating users with long forms.', 'formidable' ),
57
  'call' => __( 'Use page breaks.', 'formidable' ),
58
  ),
59
  array(
60
+ 'link' => array(
61
+ 'content' => 'file-uploads',
62
+ 'anchor' => 'feature-wordpress-multiple-file-upload-form',
63
+ ),
64
  'tip' => __( 'Cut down on back-and-forth with clients.', 'formidable' ),
65
  'call' => __( 'Allow file uploads in your form.', 'formidable' ),
66
  ),
67
  array(
68
+ 'link' => array(
69
+ 'content' => 'calculations',
70
+ 'anchor' => 'feature-wordpress-calculated-fields-form',
71
+ ),
72
  'tip' => __( 'Need to calculate a total?', 'formidable' ),
73
  'call' => __( 'Upgrade to Pro.', 'formidable' ),
74
  ),
75
  array(
76
+ 'link' => array(
77
+ 'content' => 'prefill-fields',
78
+ 'anchor' => 'feature-fill-out-forms-automatically',
79
+ ),
80
  'tip' => __( 'Save time.', 'formidable' ),
81
  'call' => __( 'Prefill fields with user info.', 'formidable' ),
82
  ),
88
  public static function get_form_settings_tip() {
89
  $tips = array(
90
  array(
91
+ 'link' => array(
92
+ 'content' => 'front-edit',
93
+ 'anchor' => 'feature-front-end-editing-wordpress',
94
+ ),
95
  'tip' => __( 'A site with dynamic, user-generated content is within reach.', 'formidable' ),
96
  'call' => __( 'Add front-end editing.', 'formidable' ),
97
  ),
98
  array(
99
+ 'link' => array(
100
+ 'content' => 'front-edit-b',
101
+ 'anchor' => 'feature-user-submitted-posts-wordpress-forms',
102
+ ),
103
  'tip' => __( 'A site with dynamic, user-generated content is within reach.', 'formidable' ),
104
  'call' => __( 'Add front-end editing.', 'formidable' ),
105
  ),
106
  array(
107
+ 'link' => array(
108
+ 'content' => 'save-drafts',
109
+ 'anchor' => 'feature-user-submitted-posts-wordpress-forms',
110
+ ),
111
  'tip' => __( 'Have a long form that takes time to complete?', 'formidable' ),
112
  'call' => __( 'Let logged-in users save a draft and return later.', 'formidable' ),
113
  ),
114
  array(
115
+ 'link' => array(
116
+ 'content' => 'ajax',
117
+ ),
118
  'tip' => __( 'Want to submit forms without reloading the page?', 'formidable' ),
119
  'call' => __( 'Get ajax form submit.', 'formidable' ),
120
  ),
125
  public static function get_form_action_tip() {
126
  $tips = array(
127
  array(
128
+ 'link' => array(
129
+ 'content' => 'email-routing',
130
+ 'anchor' => 'feature-email-autoresponders-wordpress',
131
+ ),
132
  'tip' => __( 'Save time by sending the email to the right person automatically.', 'formidable' ),
133
  'call' => __( 'Add email routing.', 'formidable' ),
134
  ),
135
  array(
136
+ 'link' => array(
137
+ 'content' => 'create-posts',
138
+ 'anchor' => 'feature-user-submitted-posts-wordpress-forms',
139
+ ),
140
  'tip' => __( 'Create blog posts or pages from the front-end.', 'formidable' ),
141
  'call' => __( 'Upgrade to Pro.', 'formidable' ),
142
  ),
143
  array(
144
+ 'link' => array(
145
+ 'content' => 'user-submit',
146
+ 'anchor' => 'feature-user-submitted-posts-wordpress-forms',
147
+ ),
148
  'tip' => __( 'Make front-end posting easy.', 'formidable' ),
149
  'call' => __( 'Upgrade to Pro.', 'formidable' ),
150
  ),
151
  array(
152
+ 'link' => array(
153
+ 'content' => 'mailchimp',
154
+ 'page' => 'mailchimp-tip',
155
+ ),
156
  'tip' => __( 'Grow your business with automated email follow-up.', 'formidable' ),
157
  'call' => __( 'Send leads straight to MailChimp.', 'formidable' ),
158
  ),
159
  array(
160
+ 'link' => array(
161
+ 'content' => 'paypal',
162
+ 'page' => 'paypal-tip',
163
+ ),
164
  'tip' => __( 'Save hours and increase revenue by collecting payments with every submission.', 'formidable' ),
165
  'call' => __( 'Use PayPal with this form.', 'formidable' ),
166
  ),
167
  array(
168
+ 'link' => array(
169
+ 'content' => 'paypal-revenue',
170
+ 'page' => 'paypal-increase-revenue-tip',
171
+ ),
172
  'tip' => __( 'Increase revenue.', 'formidable' ),
173
  'call' => __( 'Use PayPal with this form.', 'formidable' ),
174
  ),
175
  array(
176
+ 'link' => array(
177
+ 'content' => 'paypal-fast',
178
+ 'page' => 'paypal-save-time-tip',
179
+ ),
180
  'tip' => __( 'Get paid more quickly.', 'formidable' ),
181
  'call' => __( 'Use Paypal with this form.', 'formidable' ),
182
  ),
183
  array(
184
+ 'link' => array(
185
+ 'content' => 'registration',
186
+ 'page' => 'registration-tip',
187
+ ),
188
  'tip' => __( 'Boost your site membership.', 'formidable' ),
189
  'call' => __( 'Automatically create user accounts.', 'formidable' ),
190
  ),
191
  array(
192
+ 'link' => array(
193
+ 'content' => 'profile',
194
+ 'page' => 'registration-profile-editing-tip',
195
+ ),
196
  'tip' => __( 'Make front-end profile editing possible.', 'formidable' ),
197
  'call' => __( 'Add user registration.', 'formidable' ),
198
  ),
199
  array(
200
+ 'link' => array(
201
+ 'content' => 'twilio-payment',
202
+ 'page' => 'twilio-tip',
203
+ ),
204
  'tip' => __( 'Want a text when this form is submitted or when a payment is received?', 'formidable' ),
205
  'call' => __( 'Use Twilio with this form.', 'formidable' ),
206
  ),
207
  array(
208
+ 'link' => array(
209
+ 'content' => 'twilio',
210
+ 'page' => 'twilio-send-tip',
211
+ ),
212
  'tip' => __( 'Send a text when this form is submitted.', 'formidable' ),
213
  'call' => __( 'Get Twilio.', 'formidable' ),
214
  ),
220
  public static function get_styling_tip() {
221
  $tips = array(
222
  array(
223
+ 'link' => array(
224
+ 'content' => 'style',
225
+ 'anchor' => 'feature-wordpress-visual-form-styler',
226
+ ),
227
  'tip' => __( 'Make your sidebar or footer form stand out.', 'formidable' ),
228
  'call' => __( 'Use multiple style templates.', 'formidable' ),
229
  ),
234
  public static function get_entries_tip() {
235
  $tips = array(
236
  array(
237
+ 'link' => array(
238
+ 'content' => 'entries',
239
+ 'anchor' => 'feature-form-entry-management-wordpress',
240
+ ),
241
  'tip' => __( 'Want to edit or delete form submissions?', 'formidable' ),
242
  'call' => __( 'Add entry management.', 'formidable' ),
243
  ),
244
  array(
245
+ 'link' => array(
246
+ 'content' => 'entries-search',
247
+ 'anchor' => 'feature-form-entry-management-wordpress',
248
+ ),
249
  'tip' => __( 'Want to search submitted entries?', 'formidable' ),
250
  'call' => __( 'Upgrade to Pro.', 'formidable' ),
251
  ),
257
  public static function get_import_tip() {
258
  $tips = array(
259
  array(
260
+ 'link' => array(
261
+ 'content' => 'import',
262
+ 'anchor' => 'feature-importing-exporting-wordpress-forms',
263
+ ),
264
  'tip' => __( 'Want to import entries into your forms?', 'formidable' ),
265
  'call' => __( 'Upgrade to Pro.', 'formidable' ),
266
  ),
271
  public static function get_banner_tip() {
272
  $tips = array(
273
  array(
274
+ 'link' => array(
275
+ 'medium' => 'banner',
276
+ 'content' => 'professional-results',
277
+ ),
278
  'tip' => __( 'Looking for more ways to get professional results?', 'formidable' ),
279
  'call' => __( 'Take your forms to the next level.', 'formidable' ),
280
  ),
281
  array(
282
+ 'link' => array(
283
+ 'medium' => 'banner',
284
+ 'content' => 'increase-conversions',
285
+ ),
286
  'tip' => __( 'Increase conversions in long forms.', 'formidable' ),
287
  'call' => __( 'Add conditional logic, page breaks, and section headings.', 'formidable' ),
288
  ),
289
  array(
290
+ 'link' => array(
291
+ 'medium' => 'banner',
292
+ 'content' => 'automate',
293
+ ),
294
  'tip' => __( 'Automate your business and increase revenue.', 'formidable' ),
295
  'call' => __( 'Collect instant payments, and send leads to MailChimp.', 'formidable' ),
296
  ),
classes/models/FrmField.php CHANGED
@@ -370,7 +370,11 @@ class FrmField {
370
  }
371
  }
372
 
373
- public static function getOne( $id ) {
 
 
 
 
374
  if ( empty( $id ) ) {
375
  return null;
376
  }
@@ -383,6 +387,7 @@ class FrmField {
383
  $results = FrmDb::check_cache( $id, 'frm_field', $query, 'get_row', 0 );
384
 
385
  if ( empty( $results ) ) {
 
386
  return $results;
387
  }
388
 
@@ -393,10 +398,25 @@ class FrmField {
393
  }
394
 
395
  self::prepare_options( $results );
 
396
 
397
  return stripslashes_deep( $results );
398
  }
399
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
400
  /**
401
  * Get the field type by key or id
402
  *
370
  }
371
  }
372
 
373
+ /**
374
+ * @param string|int $id The field id or key.
375
+ * @param bool $filter When true, run the frm_field filter.
376
+ */
377
+ public static function getOne( $id, $filter = false ) {
378
  if ( empty( $id ) ) {
379
  return null;
380
  }
387
  $results = FrmDb::check_cache( $id, 'frm_field', $query, 'get_row', 0 );
388
 
389
  if ( empty( $results ) ) {
390
+ self::filter_field( $filter, $results );
391
  return $results;
392
  }
393
 
398
  }
399
 
400
  self::prepare_options( $results );
401
+ self::filter_field( $filter, $results );
402
 
403
  return stripslashes_deep( $results );
404
  }
405
 
406
+ /**
407
+ * @since 3.06.01
408
+ * @param bool $filter When true, run the frm_field filter.
409
+ * @param object $results
410
+ */
411
+ private static function filter_field( $filter, &$results ) {
412
+ if ( $filter ) {
413
+ /**
414
+ * @since 3.06.01
415
+ */
416
+ $results = apply_filters( 'frm_field', $results );
417
+ }
418
+ }
419
+
420
  /**
421
  * Get the field type by key or id
422
  *
classes/models/FrmForm.php CHANGED
@@ -309,6 +309,25 @@ class FrmForm {
309
  }
310
  }
311
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
312
  /**
313
  * @param string $status
314
  * @return int|boolean
309
  }
310
  }
311
 
312
+ /**
313
+ * Get a list of all form settings that should be translated
314
+ * on a multilingual site.
315
+ *
316
+ * @since 3.06.01
317
+ * @param object $form - The form object
318
+ */
319
+ public static function translatable_strings( $form ) {
320
+ $strings = array(
321
+ 'name',
322
+ 'description',
323
+ 'submit_value',
324
+ 'submit_msg',
325
+ 'success_msg',
326
+ );
327
+
328
+ return apply_filters( 'frm_form_strings', $strings, $form );
329
+ }
330
+
331
  /**
332
  * @param string $status
333
  * @return int|boolean
classes/models/FrmSettings.php CHANGED
@@ -31,8 +31,9 @@ class FrmSettings {
31
  public $re_multi;
32
 
33
  public $no_ips;
 
34
 
35
- public function __construct() {
36
  if ( ! defined( 'ABSPATH' ) ) {
37
  die( 'You are not allowed to call this page directly.' );
38
  }
@@ -49,6 +50,8 @@ class FrmSettings {
49
  }
50
 
51
  $this->set_default_options();
 
 
52
  }
53
 
54
  private function translate_settings( $settings ) {
@@ -180,6 +183,34 @@ class FrmSettings {
180
  }
181
  }
182
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  public function validate( $params, $errors ) {
184
  return apply_filters( 'frm_validate_settings', $errors, $params );
185
  }
31
  public $re_multi;
32
 
33
  public $no_ips;
34
+ public $current_form = 0;
35
 
36
+ public function __construct( $args = array() ) {
37
  if ( ! defined( 'ABSPATH' ) ) {
38
  die( 'You are not allowed to call this page directly.' );
39
  }
50
  }
51
 
52
  $this->set_default_options();
53
+
54
+ $this->maybe_filter_for_form( $args );
55
  }
56
 
57
  private function translate_settings( $settings ) {
183
  }
184
  }
185
 
186
+ /**
187
+ * Get values that may be shown on the front-end without an override in the form settings.
188
+ *
189
+ * @since 3.06.01
190
+ */
191
+ public function translatable_strings() {
192
+ return array(
193
+ 'invalid_msg',
194
+ 'failed_msg',
195
+ 'login_msg',
196
+ );
197
+ }
198
+
199
+ /**
200
+ * Allow strings to be filtered when a specific form may be displaying them.
201
+ *
202
+ * @since 3.06.01
203
+ */
204
+ public function maybe_filter_for_form( $args ) {
205
+ if ( isset( $args['current_form'] ) && is_numeric( $args['current_form'] ) ) {
206
+ $this->current_form = $args['current_form'];
207
+ foreach ( $this->translatable_strings() as $string ) {
208
+ $this->{$string} = apply_filters( 'frm_global_setting', $this->{$string}, $string, $this );
209
+ $this->{$string} = apply_filters( 'frm_global_' . $string, $this->{$string}, $this );
210
+ }
211
+ }
212
+ }
213
+
214
  public function validate( $params, $errors ) {
215
  return apply_filters( 'frm_validate_settings', $errors, $params );
216
  }
classes/models/FrmStyle.php CHANGED
@@ -142,7 +142,7 @@ class FrmStyle {
142
  $create_file->create_file( $css );
143
 
144
  update_option( 'frmpro_css', $css, 'no' );
145
- set_transient( 'frmpro_css', $css );
146
  }
147
 
148
  private function get_css_content( $filename ) {
142
  $create_file->create_file( $css );
143
 
144
  update_option( 'frmpro_css', $css, 'no' );
145
+ set_transient( 'frmpro_css', $css, MONTH_IN_SECONDS );
146
  }
147
 
148
  private function get_css_content( $filename ) {
classes/models/fields/FrmFieldCheckbox.php CHANGED
@@ -17,6 +17,14 @@ class FrmFieldCheckbox extends FrmFieldType {
17
  */
18
  protected $holds_email_values = true;
19
 
 
 
 
 
 
 
 
 
20
  protected function input_html() {
21
  return $this->multiple_input_html();
22
  }
17
  */
18
  protected $holds_email_values = true;
19
 
20
+ /**
21
+ * Does the html for this field label need to include "for"?
22
+ *
23
+ * @var bool
24
+ * @since 3.06.01
25
+ */
26
+ protected $has_for_label = false;
27
+
28
  protected function input_html() {
29
  return $this->multiple_input_html();
30
  }
classes/models/fields/FrmFieldRadio.php CHANGED
@@ -17,6 +17,14 @@ class FrmFieldRadio extends FrmFieldType {
17
  */
18
  protected $holds_email_values = true;
19
 
 
 
 
 
 
 
 
 
20
  protected function input_html() {
21
  return $this->multiple_input_html();
22
  }
17
  */
18
  protected $holds_email_values = true;
19
 
20
+ /**
21
+ * Does the html for this field label need to include "for"?
22
+ *
23
+ * @var bool
24
+ * @since 3.06.01
25
+ */
26
+ protected $has_for_label = false;
27
+
28
  protected function input_html() {
29
  return $this->multiple_input_html();
30
  }
classes/models/fields/FrmFieldType.php CHANGED
@@ -138,13 +138,14 @@ abstract class FrmFieldType {
138
  }
139
 
140
  $input = $this->input_html();
141
- $for = $this->for_label_html();
 
142
 
143
  $default_html = <<<DEFAULT_HTML
144
  <div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">
145
- <label $for class="frm_primary_label">[field_name]
146
  <span class="frm_required">[required_label]</span>
147
- </label>
148
  $input
149
  [if description]<div class="frm_description" id="frm_desc_field_[key]">[description]</div>[/if description]
150
  [if error]<div class="frm_error">[error]</div>[/if error]
@@ -159,10 +160,14 @@ DEFAULT_HTML;
159
  }
160
 
161
  protected function multiple_input_html() {
162
- return '<div class="frm_opt_container">[input]</div>';
163
  }
164
 
165
- private function for_label_html() {
 
 
 
 
166
  if ( $this->has_for_label ) {
167
  $for = 'for="field_[key]"';
168
  } else {
@@ -271,6 +276,24 @@ DEFAULT_HTML;
271
  );
272
  }
273
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  public function form_builder_classes( $display_type ) {
275
  $classes = 'form-field edit_form_item frm_field_box frm_top_container frm_not_divider edit_field_type_' . $display_type;
276
  return $this->alter_builder_classes( $classes );
138
  }
139
 
140
  $input = $this->input_html();
141
+ $for = $this->for_label_html();
142
+ $label = $this->primary_label_element();
143
 
144
  $default_html = <<<DEFAULT_HTML
145
  <div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">
146
+ <$label $for id="field_[key]_label" class="frm_primary_label">[field_name]
147
  <span class="frm_required">[required_label]</span>
148
+ </$label>
149
  $input
150
  [if description]<div class="frm_description" id="frm_desc_field_[key]">[description]</div>[/if description]
151
  [if error]<div class="frm_error">[error]</div>[/if error]
160
  }
161
 
162
  protected function multiple_input_html() {
163
+ return '<div class="frm_opt_container" aria-labelledby="field_[key]_label" role="group">[input]</div>';
164
  }
165
 
166
+ protected function primary_label_element() {
167
+ return $this->has_for_label ? 'label' : 'div';
168
+ }
169
+
170
+ protected function for_label_html() {
171
  if ( $this->has_for_label ) {
172
  $for = 'for="field_[key]"';
173
  } else {
276
  );
277
  }
278
 
279
+ /**
280
+ * Get a list of all field settings that should be translated
281
+ * on a multilingual site.
282
+ *
283
+ * @since 3.06.01
284
+ */
285
+ public function translatable_strings() {
286
+ return array(
287
+ 'name',
288
+ 'description',
289
+ 'default_value',
290
+ 'required_indicator',
291
+ 'invalid',
292
+ 'blank',
293
+ 'unique_msg',
294
+ );
295
+ }
296
+
297
  public function form_builder_classes( $display_type ) {
298
  $classes = 'form-field edit_form_item frm_field_box frm_top_container frm_not_divider edit_field_type_' . $display_type;
299
  return $this->alter_builder_classes( $classes );
classes/views/addons/list.php CHANGED
@@ -42,7 +42,7 @@
42
  </a>
43
  <span class="spinner"></span>
44
  <?php } else { ?>
45
- <a class="install-now button button-primary frm-button-primary" href="<?php echo esc_url( $pricing ); ?>" target="_blank" aria-label="<?php esc_attr_e( 'Upgrade Now', 'formidable' ); ?>">
46
  <?php esc_html_e( 'Upgrade Now', 'formidable' ); ?>
47
  </a>
48
  <?php } ?>
42
  </a>
43
  <span class="spinner"></span>
44
  <?php } else { ?>
45
+ <a class="install-now button button-primary frm-button-primary" href="<?php echo esc_url( $pricing . '&utm_content=' . $addon['slug'] ); ?>" target="_blank" aria-label="<?php esc_attr_e( 'Upgrade Now', 'formidable' ); ?>">
46
  <?php esc_html_e( 'Upgrade Now', 'formidable' ); ?>
47
  </a>
48
  <?php } ?>
classes/views/frm-forms/add_field_links.php CHANGED
@@ -86,7 +86,7 @@ foreach ( FrmField::pro_field_selection() as $field_key => $field_type ) {
86
  $field_label .= ' <span>' . $field_name . '</span>';
87
  $upgrade_label = sprintf( esc_html__( '%s fields', 'formidable' ), $field_name );
88
  ?>
89
- <li class="frmbutton button <?php echo esc_attr( $no_allow_class . ' frm_t' . str_replace( '|', '-', $field_key ) ) ?>" id="<?php echo esc_attr( $field_key ) ?>" data-upgrade="<?php echo esc_attr( $upgrade_label ); ?>" data-medium="builder-<?php echo esc_attr( sanitize_title( $upgrade_label ) ); ?>">
90
  <?php echo FrmAppHelper::kses( apply_filters( 'frmpro_field_links', $field_label, $id, $field_key ), array( 'a', 'i', 'span' ) ); // WPCS: XSS ok. ?>
91
  </li>
92
  <?php
86
  $field_label .= ' <span>' . $field_name . '</span>';
87
  $upgrade_label = sprintf( esc_html__( '%s fields', 'formidable' ), $field_name );
88
  ?>
89
+ <li class="frmbutton button <?php echo esc_attr( $no_allow_class . ' 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-content="<?php echo esc_attr( $field_key ); ?>">
90
  <?php echo FrmAppHelper::kses( apply_filters( 'frmpro_field_links', $field_label, $id, $field_key ), array( 'a', 'i', 'span' ) ); // WPCS: XSS ok. ?>
91
  </li>
92
  <?php
classes/views/frm-forms/form.php CHANGED
@@ -44,7 +44,7 @@ if ( isset( $values['fields'] ) && ! empty( $values['fields'] ) ) {
44
  }
45
  ?>
46
  </ul>
47
-
48
  </div>
49
 
50
  </div>
44
  }
45
  ?>
46
  </ul>
47
+ <input type="hidden" name="frm_end" value="1" />
48
  </div>
49
 
50
  </div>
classes/views/frm-forms/list-templates.php CHANGED
@@ -78,7 +78,12 @@
78
  </div>
79
  </div>
80
 
81
- <?php foreach ( $templates as $k => $template ) { ?>
 
 
 
 
 
82
  <div class="frm-card frm-no-thumb">
83
  <div class="plugin-card-top">
84
  <?php if ( strtotime( $template['released'] ) > strtotime( '-10 days' ) ) { ?>
@@ -143,6 +148,11 @@
143
  <?php unset( $template, $templates[ $k ] ); ?>
144
  <?php } ?>
145
  </div>
 
 
 
 
 
146
  <?php include( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/template-name-overlay.php' ); ?>
147
  <div class="clear"></div>
148
  </div>
78
  </div>
79
  </div>
80
 
81
+ <?php
82
+ foreach ( $templates as $k => $template ) {
83
+ if ( ! is_numeric( $k ) ) {
84
+ continue;
85
+ }
86
+ ?>
87
  <div class="frm-card frm-no-thumb">
88
  <div class="plugin-card-top">
89
  <?php if ( strtotime( $template['released'] ) > strtotime( '-10 days' ) ) { ?>
148
  <?php unset( $template, $templates[ $k ] ); ?>
149
  <?php } ?>
150
  </div>
151
+ <?php if ( $expired ) { ?>
152
+ <p>
153
+ <?php echo FrmAppHelper::kses( $error, 'a' ); // WPCS: XSS ok. ?>
154
+ </p>
155
+ <?php } ?>
156
  <?php include( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/template-name-overlay.php' ); ?>
157
  <div class="clear"></div>
158
  </div>
classes/views/shared/errors.php CHANGED
@@ -16,7 +16,7 @@ if ( isset( $errors ) && is_array( $errors ) && count( $errors ) > 0 ) {
16
  <ul id="frm_errors">
17
  <?php
18
  foreach ( $errors as $error ) {
19
- echo '<li>' . FrmAppHelper::kses( $error, 'a' ) . '</li>'; // WPCS: XSS ok.
20
  }
21
  ?>
22
  </ul>
16
  <ul id="frm_errors">
17
  <?php
18
  foreach ( $errors as $error ) {
19
+ echo '<li>' . FrmAppHelper::kses( $error, array( 'a', 'br' ) ) . '</li>'; // WPCS: XSS ok.
20
  }
21
  ?>
22
  </ul>
classes/views/shared/upgrade_overlay.php CHANGED
@@ -29,12 +29,12 @@
29
  <?php esc_html_e( 'See My Add-Ons', 'formidable' ); ?>
30
  </a>
31
  <?php } else { ?>
32
- <a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'builder-upgrade' ) ); ?>" class="button button-primary frm-button-primary" target="_blank" rel="noopener noreferrer">
33
  <?php esc_html_e( 'Upgrade to Pro', 'formidable' ); ?>
34
  </a>
35
 
36
  <p>
37
- <a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url( FrmAppHelper::admin_upgrade_link( 'builder-upgrade', 'knowledgebase/install-formidable-forms/' ) ) ); ?>" target="_blank" class="frm-link-secondary">
38
  <?php esc_html_e( 'Already purchased?', 'formidable' ); ?>
39
  </a>
40
  </p>
29
  <?php esc_html_e( 'See My Add-Ons', 'formidable' ); ?>
30
  </a>
31
  <?php } else { ?>
32
+ <a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( $upgrade_link ) ); ?>" class="button button-primary frm-button-primary" target="_blank" rel="noopener noreferrer">
33
  <?php esc_html_e( 'Upgrade to Pro', 'formidable' ); ?>
34
  </a>
35
 
36
  <p>
37
+ <a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url( FrmAppHelper::admin_upgrade_link( $upgrade_link, 'knowledgebase/install-formidable-forms/' ) ) ); ?>" target="_blank" class="frm-link-secondary">
38
  <?php esc_html_e( 'Already purchased?', 'formidable' ); ?>
39
  </a>
40
  </p>
css/_single_theme.css.php CHANGED
@@ -53,44 +53,7 @@ $arrow_icons = FrmStylesHelper::arrow_icons();
53
  margin-bottom:<?php echo esc_html( $title_margin_bottom . $important ) ?>;
54
  }
55
 
56
- .<?php echo esc_html( $style_class ) ?> .frm-show-form .frm_section_heading h3{
57
- padding:<?php echo esc_html( $section_pad . $important ) ?>;
58
- margin:0<?php echo esc_html( $important ) ?>;
59
- font-size:<?php echo esc_html( $section_font_size . $important ) ?>;
60
- font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
61
- font-weight:<?php echo esc_html( $section_weight . $important ) ?>;
62
- color:<?php echo esc_html( $section_color . $important ) ?>;
63
- border:none<?php echo esc_html( $important ) ?>;
64
- border<?php echo esc_html( $section_border_loc ); ?>:<?php echo esc_html( $section_border_width . ' ' . $section_border_style . ' ' . $section_border_color . $important ); ?>;
65
- background-color:<?php echo esc_html( $section_bg_color . $important ); ?>
66
- }
67
-
68
- .<?php echo esc_html( $style_class ) ?> h3 .frm_<?php echo esc_html( $collapse_pos ) ?>_collapse{
69
- display:inline;
70
- }
71
- .<?php echo esc_html( $style_class ) ?> h3 .frm_<?php echo ( 'after' == $collapse_pos ) ? 'before' : 'after'; ?>_collapse{
72
- display:none;
73
- }
74
-
75
- .menu-edit #post-body-content .<?php echo esc_html( $style_class ) ?> .frm_section_heading h3{
76
- margin:0;
77
- }
78
-
79
- .<?php echo esc_html( $style_class ) ?> .frm_section_heading{
80
- margin-top:<?php echo esc_html( $section_mar_top . $important ) ?>;
81
- }
82
-
83
- .<?php echo esc_html( $style_class ) ?> .frm-show-form .frm_section_heading .frm_section_spacing,
84
- .menu-edit #post-body-content .<?php echo esc_html( $style_class ) ?> .frm-show-form .frm_section_heading .frm_section_spacing{
85
- margin-bottom:<?php echo esc_html( $section_mar_bottom . $important ) ?>;
86
- }
87
-
88
- .<?php echo esc_html( $style_class ) ?> .frm_repeat_sec{
89
- margin-bottom:<?php echo esc_html( $field_margin . $important ) ?>;
90
- margin-top:<?php echo esc_html( $field_margin . $important ) ?>;
91
- }
92
-
93
- .<?php echo esc_html( $style_class ) ?> label.frm_primary_label{
94
  font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
95
  font-size:<?php echo esc_html( $font_size . $important ) ?>;
96
  color:<?php echo esc_html( $label_color . $important ) ?>;
@@ -231,7 +194,7 @@ if ( '' === $field_height || 'auto' === $field_height ) {
231
  width:<?php echo esc_html( $width . $important ); ?>;
232
  }
233
 
234
- .<?php echo esc_html( $style_class ) ?> .frm_none_container label.frm_primary_label,
235
  .<?php echo esc_html( $style_class ) ?> .frm_pos_none{
236
  display:none<?php echo esc_html( $important ) ?>;
237
  }
@@ -703,6 +666,7 @@ if ( ! empty( $important ) ) {
703
  background-color:<?php echo esc_html( $bg_color_active . $important ); ?>;
704
  }
705
 
 
706
  .<?php echo esc_html( $style_class ) ?> .frm_form_field.frm_html_scroll_box{
707
  background-color:<?php echo esc_html( $bg_color . $important ); ?>;
708
  border-color: <?php echo esc_html( $border_color . $important ) ?>;
53
  margin-bottom:<?php echo esc_html( $title_margin_bottom . $important ) ?>;
54
  }
55
 
56
+ .<?php echo esc_html( $style_class ) ?> .frm_primary_label{
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  font-family:<?php echo FrmAppHelper::kses( $font ); // WPCS: XSS ok. ?>;
58
  font-size:<?php echo esc_html( $font_size . $important ) ?>;
59
  color:<?php echo esc_html( $label_color . $important ) ?>;
194
  width:<?php echo esc_html( $width . $important ); ?>;
195
  }
196
 
197
+ .<?php echo esc_html( $style_class ) ?> .frm_none_container .frm_primary_label,
198
  .<?php echo esc_html( $style_class ) ?> .frm_pos_none{
199
  display:none<?php echo esc_html( $important ) ?>;
200
  }
666
  background-color:<?php echo esc_html( $bg_color_active . $important ); ?>;
667
  }
668
 
669
+ .<?php echo esc_html( $style_class ) ?> .frm_html_container.frm_scroll_box,
670
  .<?php echo esc_html( $style_class ) ?> .frm_form_field.frm_html_scroll_box{
671
  background-color:<?php echo esc_html( $bg_color . $important ); ?>;
672
  border-color: <?php echo esc_html( $border_color . $important ) ?>;
css/custom_theme.css.php CHANGED
@@ -75,32 +75,32 @@ legend.frm_hidden{
75
  padding:25px;
76
  }
77
 
78
- .with_frm_style label.frm_primary_label{
79
  max-width:100%;
80
  }
81
 
82
- .with_frm_style .frm_top_container label.frm_primary_label,
83
- .with_frm_style .frm_hidden_container label.frm_primary_label,
84
  .with_frm_style .frm_pos_top{
85
  display:block;
86
  float:none;
87
  width:auto;
88
  }
89
 
90
- .with_frm_style .frm_inline_container label.frm_primary_label{
91
  margin-right:10px;
92
  }
93
 
94
- .with_frm_style .frm_right_container label.frm_primary_label,
95
  .with_frm_style .frm_pos_right{
96
  display:inline;
97
  float:right;
98
  margin-left:10px;
99
  }
100
 
101
- .with_frm_style .frm_none_container label.frm_primary_label,
102
  .with_frm_style .frm_pos_none,
103
- .frm_none_container label.frm_primary_label{
104
  display:none;
105
  }
106
 
@@ -108,14 +108,14 @@ legend.frm_hidden{
108
  margin-top:0 !important;
109
  }
110
 
111
- .with_frm_style .frm_hidden_container label.frm_primary_label,
112
  .with_frm_style .frm_pos_hidden,
113
- .frm_hidden_container label.frm_primary_label{
114
  visibility:hidden;
115
  white-space:nowrap;
116
  }
117
 
118
- .with_frm_style .frm_inside_container label.frm_primary_label{
119
  opacity:0;
120
  transition: opacity 0.1s linear;
121
  }
@@ -533,7 +533,7 @@ select.frm_loading_lookup{
533
 
534
  <?php readfile( dirname( __FILE__ ) . '/frm_grids.css' ); ?>
535
 
536
- .frm_conf_field.frm_left_container label.frm_primary_label{
537
  display:none;
538
  }
539
 
@@ -641,7 +641,7 @@ select.frm_loading_lookup{
641
 
642
  .frm_grid_2 .frm_radio,
643
  .frm_grid_2 .frm_checkbox,
644
- .frm_grid_2 label.frm_primary_label{
645
  width:48% !important;
646
  }
647
 
@@ -652,7 +652,7 @@ select.frm_loading_lookup{
652
 
653
  .frm_grid_3 .frm_radio,
654
  .frm_grid_3 .frm_checkbox,
655
- .frm_grid_3 label.frm_primary_label{
656
  width:30% !important;
657
  }
658
 
@@ -666,7 +666,7 @@ select.frm_loading_lookup{
666
  width:20% !important;
667
  }
668
 
669
- .frm_grid_4 label.frm_primary_label{
670
  width:28% !important;
671
  }
672
 
@@ -675,8 +675,8 @@ select.frm_loading_lookup{
675
  margin-right:4%;
676
  }
677
 
678
- .frm_grid_5 label.frm_primary_label,
679
- .frm_grid_7 label.frm_primary_label{
680
  width:24% !important;
681
  }
682
 
@@ -686,7 +686,7 @@ select.frm_loading_lookup{
686
  margin-right:2%;
687
  }
688
 
689
- .frm_grid_6 label.frm_primary_label{
690
  width:25% !important;
691
  }
692
 
@@ -696,7 +696,7 @@ select.frm_loading_lookup{
696
  margin-right:1%;
697
  }
698
 
699
- .frm_grid_7 label.frm_primary_label{
700
  width:22% !important;
701
  }
702
 
@@ -706,7 +706,7 @@ select.frm_loading_lookup{
706
  margin-right:1%;
707
  }
708
 
709
- .frm_grid_8 label.frm_primary_label{
710
  width:23% !important;
711
  }
712
 
@@ -716,7 +716,7 @@ select.frm_loading_lookup{
716
  margin-right:1%;
717
  }
718
 
719
- .frm_grid_9 label.frm_primary_label{
720
  width:20% !important;
721
  }
722
 
@@ -726,7 +726,7 @@ select.frm_loading_lookup{
726
  margin-right:1%;
727
  }
728
 
729
- .frm_grid_10 label.frm_primary_label{
730
  width:19% !important;
731
  }
732
 
@@ -742,9 +742,9 @@ select.frm_loading_lookup{
742
  padding-top:4px;
743
  }
744
 
745
- .with_frm_style .frm_inline_container.frm_grid_first label.frm_primary_label,
746
- .with_frm_style .frm_inline_container.frm_grid label.frm_primary_label,
747
- .with_frm_style .frm_inline_container.frm_grid_odd label.frm_primary_label,
748
  .with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,
749
  .with_frm_style .frm_inline_container.frm_grid .frm_opt_container,
750
  .with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{
@@ -757,7 +757,7 @@ select.frm_loading_lookup{
757
  display: grid;
758
  grid-template-columns: repeat(2, 1fr);
759
  grid-auto-rows: max-content;
760
- grid-gap: 2.5%;
761
  }
762
 
763
  .frm_form_field.frm_three_col .frm_opt_container{
@@ -790,6 +790,7 @@ select.frm_loading_lookup{
790
  overflow:auto;
791
  }
792
 
 
793
  .frm_form_field.frm_html_scroll_box{
794
  height:100px;
795
  overflow:auto;
@@ -841,7 +842,7 @@ select.frm_loading_lookup{
841
  box-shadow:none;
842
  }
843
 
844
- .frm_form_field.frm_label_justify label.frm_primary_label{
845
  text-align:justify !important;
846
  }
847
 
@@ -878,9 +879,9 @@ select.frm_loading_lookup{
878
 
879
  /* Responsive */
880
  @media only screen and (max-width: 900px) {
881
- .frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth label.frm_primary_label,
882
- .frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh label.frm_primary_label,
883
- .frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth label.frm_primary_label{
884
  display: block !important;
885
  }
886
  }
75
  padding:25px;
76
  }
77
 
78
+ .with_frm_style .frm_primary_label{
79
  max-width:100%;
80
  }
81
 
82
+ .with_frm_style .frm_top_container .frm_primary_label,
83
+ .with_frm_style .frm_hidden_container .frm_primary_label,
84
  .with_frm_style .frm_pos_top{
85
  display:block;
86
  float:none;
87
  width:auto;
88
  }
89
 
90
+ .with_frm_style .frm_inline_container .frm_primary_label{
91
  margin-right:10px;
92
  }
93
 
94
+ .with_frm_style .frm_right_container .frm_primary_label,
95
  .with_frm_style .frm_pos_right{
96
  display:inline;
97
  float:right;
98
  margin-left:10px;
99
  }
100
 
101
+ .with_frm_style .frm_none_container .frm_primary_label,
102
  .with_frm_style .frm_pos_none,
103
+ .frm_none_container .frm_primary_label{
104
  display:none;
105
  }
106
 
108
  margin-top:0 !important;
109
  }
110
 
111
+ .with_frm_style .frm_hidden_container .frm_primary_label,
112
  .with_frm_style .frm_pos_hidden,
113
+ .frm_hidden_container .frm_primary_label{
114
  visibility:hidden;
115
  white-space:nowrap;
116
  }
117
 
118
+ .with_frm_style .frm_inside_container .frm_primary_label{
119
  opacity:0;
120
  transition: opacity 0.1s linear;
121
  }
533
 
534
  <?php readfile( dirname( __FILE__ ) . '/frm_grids.css' ); ?>
535
 
536
+ .frm_conf_field.frm_left_container .frm_primary_label{
537
  display:none;
538
  }
539
 
641
 
642
  .frm_grid_2 .frm_radio,
643
  .frm_grid_2 .frm_checkbox,
644
+ .frm_grid_2 .frm_primary_label{
645
  width:48% !important;
646
  }
647
 
652
 
653
  .frm_grid_3 .frm_radio,
654
  .frm_grid_3 .frm_checkbox,
655
+ .frm_grid_3 .frm_primary_label{
656
  width:30% !important;
657
  }
658
 
666
  width:20% !important;
667
  }
668
 
669
+ .frm_grid_4 .frm_primary_label{
670
  width:28% !important;
671
  }
672
 
675
  margin-right:4%;
676
  }
677
 
678
+ .frm_grid_5 .frm_primary_label,
679
+ .frm_grid_7 .frm_primary_label{
680
  width:24% !important;
681
  }
682
 
686
  margin-right:2%;
687
  }
688
 
689
+ .frm_grid_6 .frm_primary_label{
690
  width:25% !important;
691
  }
692
 
696
  margin-right:1%;
697
  }
698
 
699
+ .frm_grid_7 .frm_primary_label{
700
  width:22% !important;
701
  }
702
 
706
  margin-right:1%;
707
  }
708
 
709
+ .frm_grid_8 .frm_primary_label{
710
  width:23% !important;
711
  }
712
 
716
  margin-right:1%;
717
  }
718
 
719
+ .frm_grid_9 .frm_primary_label{
720
  width:20% !important;
721
  }
722
 
726
  margin-right:1%;
727
  }
728
 
729
+ .frm_grid_10 .frm_primary_label{
730
  width:19% !important;
731
  }
732
 
742
  padding-top:4px;
743
  }
744
 
745
+ .with_frm_style .frm_inline_container.frm_grid_first .frm_primary_label,
746
+ .with_frm_style .frm_inline_container.frm_grid .frm_primary_label,
747
+ .with_frm_style .frm_inline_container.frm_grid_odd .frm_primary_label,
748
  .with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,
749
  .with_frm_style .frm_inline_container.frm_grid .frm_opt_container,
750
  .with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{
757
  display: grid;
758
  grid-template-columns: repeat(2, 1fr);
759
  grid-auto-rows: max-content;
760
+ grid-gap: 0 2.5%;
761
  }
762
 
763
  .frm_form_field.frm_three_col .frm_opt_container{
790
  overflow:auto;
791
  }
792
 
793
+ .frm_html_container.frm_scroll_box,
794
  .frm_form_field.frm_html_scroll_box{
795
  height:100px;
796
  overflow:auto;
842
  box-shadow:none;
843
  }
844
 
845
+ .frm_form_field.frm_label_justify .frm_primary_label{
846
  text-align:justify !important;
847
  }
848
 
879
 
880
  /* Responsive */
881
  @media only screen and (max-width: 900px) {
882
+ .frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth .frm_primary_label,
883
+ .frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh .frm_primary_label,
884
+ .frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth .frm_primary_label{
885
  display: block !important;
886
  }
887
  }
css/formidableforms.css CHANGED
@@ -1,2 +1,2 @@
1
  /* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */
2
- .frm_form_field .grecaptcha-badge,.frm_hidden,.frm_remove_form_row.frm_hidden,.with_frm_style .frm_button.frm_hidden{display:none;}form input.frm_verify{display:none !important;}.with_frm_style fieldset{min-width:0;}.with_frm_style fieldset fieldset{border:none;margin:0;padding:0;background-color:transparent;}legend.frm_hidden{display:none !important;}.with_frm_style .frm_form_fields{opacity:1;transition: opacity 0.1s linear;}.with_frm_style .frm_doing_ajax{opacity:.5;}.frm_transparent{color:transparent;}.input[type=file].frm_transparent:focus, .with_frm_style input[type=file]{background-color:transparent;border:none;outline:none;box-shadow:none;}.with_frm_style input[type=file]{display:initial;}.frm_preview_page:before{content:normal !important;}.frm_preview_page{padding:25px;}.with_frm_style label.frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container label.frm_primary_label,.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container label.frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container label.frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_none_container label.frm_primary_label,.with_frm_style .frm_pos_none,.frm_none_container label.frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container label.frm_primary_label{visibility:hidden;white-space:nowrap;}.with_frm_style .frm_inside_container label.frm_primary_label{opacity:0;transition: opacity 0.1s linear;}.with_frm_style .frm_inside_container label.frm_visible,.frm_visible{opacity:1;}.with_frm_style .frm_description{clear:both;}.with_frm_style input[type=number][readonly]{-moz-appearance: textfield;}.with_frm_style select[multiple="multiple"]{height:auto;line-height:normal;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style textarea{height:auto;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none;border:1px solid #eee;padding:5px;display:inline;}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field,.frm_inline_form .frm_submit{grid-column: span 1 / span 1;}.frm_inline_form .frm_submit{margin:0;}.frm_submit.frm_inline_submit input[type=submit],.frm_submit.frm_inline_submit button,.frm_inline_form .frm_submit input[type=submit],.frm_inline_form .frm_submit button{margin-top:0;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style.frm_center_submit .frm_submit input[type=submit],.with_frm_style.frm_center_submit .frm_submit input[type=button],.with_frm_style.frm_center_submit .frm_submit button{margin-bottom:8px !important;}.with_frm_style .frm_submit input[type=submit],.with_frm_style .frm_submit input[type=button],.with_frm_style .frm_submit button{-webkit-appearance: none;cursor: pointer;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.with_frm_style .frm_loading_form .frm_ajax_loading{visibility:visible !important;}.with_frm_style .frm_loading_form .frm_button_submit {position: relative;opacity: .8;color: transparent !important;text-shadow: none !important;}.with_frm_style .frm_loading_form .frm_button_submit:hover,.with_frm_style .frm_loading_form .frm_button_submit:active,.with_frm_style .frm_loading_form .frm_button_submit:focus {cursor: not-allowed;color: transparent;outline: none !important;box-shadow: none;}.with_frm_style .frm_loading_form .frm_button_submit:before {content: '';display: inline-block;position: absolute;background: transparent;border: 1px solid #fff;border-top-color: transparent;border-left-color: transparent;border-radius: 50%;box-sizing: border-box;top: 50%;left: 50%;margin-top: -10px;margin-left: -10px;width: 20px;height: 20px;-webkit-animation: spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation: spin 2s linear infinite;animation: spin 2s linear infinite;}.frm_forms.frm_style_candy-cane.with_frm_style{max-width:80% !important;direction:ltr !important;margin:0 auto;}.frm_style_candy-cane.with_frm_style,.frm_style_candy-cane.with_frm_style form,.frm_style_candy-cane.with_frm_style .frm-show-form div.frm_description p {text-align:left !important;}.frm_inline_form.frm_style_candy-cane.with_frm_style form{text-align:center;}.frm_style_candy-cane.with_frm_style .frm_form_fields > fieldset{border-width:6px !important;border-style:solid;border-color:#fb32e4 !important;margin:0;padding:10px 25px 5px 25px !important;background-color:#fccff7;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_candy-cane.with_frm_style legend + h3,.frm_style_candy-cane.with_frm_style h3.frm_form_title{font-size:20px !important;color:#000 !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px !important;margin-bottom:10px !important;}.frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0 !important;margin:0 !important;font-size:18px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold !important;color:#555 !important;border:none !important;border-top:2px solid #e8e8e8 !important;background-color:transparent !important}.frm_style_candy-cane.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_candy-cane.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_candy-cane.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_candy-cane.with_frm_style .frm_section_heading{margin-top:15px !important;}.frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px !important;}.frm_style_candy-cane.with_frm_style .frm_repeat_sec{margin-bottom:20px !important;margin-top:20px !important;}.frm_style_candy-cane.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#555 !important;font-weight:bold !important;text-align:left !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_container,.frm_style_candy-cane.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;color:#000 !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_container{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .frm_form_field .frm_show_it{font-size:14px !important;font-weight:normal;}.frm_style_candy-cane.with_frm_style .frm_icon_font{color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e633";}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e632";}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#000 !important;vertical-align:middle;}.frm_style_candy-cane.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e635";color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e634";color:#555 !important;}.frm_style_candy-cane.with_frm_style .form-field{margin-bottom:20px !important;}.frm_style_candy-cane.with_frm_style .frm_grid,.frm_style_candy-cane.with_frm_style .frm_grid_first,.frm_style_candy-cane.with_frm_style .frm_grid_odd {margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style .form-field.frm_section_heading{margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style p.description,.frm_style_candy-cane.with_frm_style div.description,.frm_style_candy-cane.with_frm_style div.frm_description,.frm_style_candy-cane.with_frm_style .frm-show-form > div.frm_description,.frm_style_candy-cane.with_frm_style .frm_error{margin:0 !important;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:12px !important;color:#777 !important;font-weight:normal !important;text-align:left !important;font-style:normal !important;max-width:100%;}.frm_style_candy-cane.with_frm_style .frm-show-form div.frm_description p{font-size:14px !important;color:#000 !important;margin-top:10px !important;margin-bottom:25px !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_candy-cane.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_candy-cane.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.frm_style_candy-cane.with_frm_style .frm_pos_right{display:inline !important;width:150px !important;}.frm_style_candy-cane.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_candy-cane.with_frm_style .frm_pos_none{display:none !important;}.frm_style_candy-cane.with_frm_style .frm_scale label{font-weight:normal !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_required{color:#555 !important;font-weight:bold !important;}.frm_style_candy-cane.with_frm_style input[type=text],.frm_style_candy-cane.with_frm_style input[type=password],.frm_style_candy-cane.with_frm_style input[type=email],.frm_style_candy-cane.with_frm_style input[type=number],.frm_style_candy-cane.with_frm_style input[type=url],.frm_style_candy-cane.with_frm_style input[type=tel],.frm_style_candy-cane.with_frm_style input[type=search],.frm_style_candy-cane.with_frm_style select,.frm_style_candy-cane.with_frm_style textarea,.frm_style_candy-cane.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:14px;margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style textarea{vertical-align:top;}.frm_style_candy-cane.with_frm_style input[type=text],.frm_style_candy-cane.with_frm_style input[type=password],.frm_style_candy-cane.with_frm_style input[type=email],.frm_style_candy-cane.with_frm_style input[type=number],.frm_style_candy-cane.with_frm_style input[type=url],.frm_style_candy-cane.with_frm_style input[type=tel],.frm_style_candy-cane.with_frm_style input[type=phone],.frm_style_candy-cane.with_frm_style input[type=search],.frm_style_candy-cane.with_frm_style select,.frm_style_candy-cane.with_frm_style textarea,.frm_form_fields_style,.frm_style_candy-cane.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_candy-cane.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single{color:#555 !important;background-color:#ffffff !important;background-image:none !important;border-color: #fb32e4 !important;border-width:4px !important;border-style:dashed !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;max-width:100%;font-size:14px !important;padding:6px 10px !important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none !important;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset !important;}.frm_style_candy-cane.with_frm_style input[type=text],.frm_style_candy-cane.with_frm_style input[type=password],.frm_style_candy-cane.with_frm_style input[type=email],.frm_style_candy-cane.with_frm_style input[type=number],.frm_style_candy-cane.with_frm_style input[type=url],.frm_style_candy-cane.with_frm_style input[type=tel],.frm_style_candy-cane.with_frm_style input[type=file],.frm_style_candy-cane.with_frm_style input[type=search],.frm_style_candy-cane.with_frm_style select{height:32px !important;line-height:1.3 !important;}.frm_style_candy-cane.with_frm_style select[multiple="multiple"]{height:auto !important;}.frm_style_candy-cane.with_frm_style input[type=file]{color: #555 !important;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:14px !important;}.frm_style_candy-cane.with_frm_style input[type=file].frm_transparent{color:transparent !important;}.frm_style_candy-cane.with_frm_style select{width:100% !important;max-width:100%;}.frm_style_candy-cane.with_frm_style .wp-editor-wrap{width:100% !important;max-width:100%;}.frm_style_candy-cane.with_frm_style .wp-editor-container textarea{border:none !important;}.frm_style_candy-cane.with_frm_style .mceIframeContainer{background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .auto_width input,.frm_style_candy-cane.with_frm_style input.auto_width,.frm_style_candy-cane.with_frm_style select.auto_width,.frm_style_candy-cane.with_frm_style textarea.auto_width{width:auto !important;}.frm_style_candy-cane.with_frm_style input[disabled],.frm_style_candy-cane.with_frm_style select[disabled],.frm_style_candy-cane.with_frm_style textarea[disabled],.frm_style_candy-cane.with_frm_style input[readonly],.frm_style_candy-cane.with_frm_style select[readonly],.frm_style_candy-cane.with_frm_style textarea[readonly]{background-color:#ffffff !important;color:#555 !important;border-color:#fb32e4 !important;}.frm_style_candy-cane.with_frm_style input::placeholder,.frm_style_candy-cane.with_frm_style textarea::placeholder{color: #555 !important;}.frm_style_candy-cane.with_frm_style input::-webkit-input-placeholder,.frm_style_candy-cane.with_frm_style textarea::-webkit-input-placeholder{color: #555 !important;}.frm_style_candy-cane.with_frm_style input::-moz-placeholder,.frm_style_candy-cane.with_frm_style textarea::-moz-placeholder{color: #555 !important;}.frm_style_candy-cane.with_frm_style input:-ms-input-placeholder,frm_style_candy-cane.with_frm_style textarea:-ms-input-placeholder{color: #555 !important;}.frm_style_candy-cane.with_frm_style input:-moz-placeholder,.frm_style_candy-cane.with_frm_style textarea:-moz-placeholder{color: #555 !important;}.frm_style_candy-cane.with_frm_style .frm_default,.frm_style_candy-cane.with_frm_style input.frm_default,.frm_style_candy-cane.with_frm_style textarea.frm_default,.frm_style_candy-cane.with_frm_style select.frm_default,.frm_style_candy-cane.with_frm_style .placeholder,.frm_style_candy-cane.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-default{color: #555 !important;}.frm_style_candy-cane.with_frm_style .form-field input:not([type=file]):focus,.frm_style_candy-cane.with_frm_style select:focus,.frm_style_candy-cane.with_frm_style textarea:focus,.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=text],.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=password],.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=email],.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=number],.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=url],.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=tel],.frm_style_candy-cane.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_candy-cane.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_candy-cane.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff !important;border-color:#fb32e4 !important;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(251,50,228, 0.6);}.frm_style_candy-cane.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_candy-cane.with_frm_style input[type=submit],.frm_style_candy-cane.with_frm_style .frm_submit input[type=button],.frm_style_candy-cane.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;height:auto !important;line-height:normal !important;text-align:center;background:#fccff7 !important;border-width:4px;border-color: #fb32e4 !important;border-style:solid;color:#000 !important;cursor:pointer;font-weight:bold !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;text-shadow:none;padding:6px 11px !important;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_candy-cane.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_candy-cane.with_frm_style input[type=submit]:hover,.frm_style_candy-cane.with_frm_style .frm_submit input[type=button]:hover,.frm_style_candy-cane.with_frm_style .frm_submit button:hover{background: #efefef !important;border-color: #cccccc !important;color: #444444 !important;}.frm_style_candy-cane.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_candy-cane.with_frm_style input[type=submit]:focus,.frm_style_candy-cane.with_frm_style .frm_submit input[type=button]:focus,.frm_style_candy-cane.with_frm_style .frm_submit button:focus,.frm_style_candy-cane.with_frm_style input[type=submit]:active,.frm_style_candy-cane.with_frm_style .frm_submit input[type=button]:active,.frm_style_candy-cane.with_frm_style .frm_submit button:active{background: #efefef !important;border-color: #cccccc !important;color: #444444 !important;}.frm_style_candy-cane.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_candy-cane.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_candy-cane.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_candy-cane.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent !important;background: #fccff7 !important;}.frm_style_candy-cane.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #000 !important;border-right-color: #000 !important;}.frm_style_candy-cane.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_candy-cane.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#555 !important;font-weight:bold !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;visibility:hidden;}.frm_style_candy-cane.with_frm_style.frm_inline_form .frm_submit input,.frm_style_candy-cane.with_frm_style.frm_inline_form .frm_submit button,.frm_style_candy-cane.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_candy-cane.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_candy-cane.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:bold;}.frm_style_candy-cane.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#555 !important;font-weight:bold !important;clear:both;}.frm_style_candy-cane.with_frm_style .frm_radio{display:block !important;}.frm_style_candy-cane.with_frm_style .frm_checkbox{display:block !important;}.frm_style_candy-cane.with_frm_style .vertical_radio .frm_checkbox,.frm_style_candy-cane.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block !important;}.frm_style_candy-cane.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_candy-cane.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block !important;}.frm_style_candy-cane.with_frm_style .frm_radio label,.frm_style_candy-cane.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#555 !important;font-weight:normal !important;}.frm_style_candy-cane.with_frm_style .frm_radio input[type=radio],.frm_style_candy-cane.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px !important;position: static !important;}.frm_style_candy-cane.with_frm_style .frm_blank_field input[type=text],.frm_style_candy-cane.with_frm_style .frm_blank_field input[type=password],.frm_style_candy-cane.with_frm_style .frm_blank_field input[type=url],.frm_style_candy-cane.with_frm_style .frm_blank_field input[type=tel],.frm_style_candy-cane.with_frm_style .frm_blank_field input[type=number],.frm_style_candy-cane.with_frm_style .frm_blank_field input[type=email],.frm_style_candy-cane.with_frm_style .frm_blank_field textarea,.frm_style_candy-cane.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_candy-cane.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_candy-cane.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_candy-cane.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_candy-cane.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_candy-cane.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_candy-cane.with_frm_style .frm_form_field :invalid{color:#555 !important;background-color:#ffffff !important;border-color:#ff1914 !important;border-width:4px !important;border-style:dashed !important;}.frm_style_candy-cane.with_frm_style .frm_blank_field .sigWrapper{border-color:#ff1914 !important;}.frm_style_candy-cane.with_frm_style .frm_error{font-weight:bold !important;}.frm_style_candy-cane.with_frm_style .frm_blank_field label,.frm_style_candy-cane.with_frm_style .frm_error{color:#ff1914 !important;}.frm_style_candy-cane.with_frm_style .frm_error_style{background-color:#bf4a4a !important;border:1px solid #fb32e4 !important;border-radius:5px !important;color: #fff !important;font-size:14px !important;margin:0;margin-bottom:20px;}.frm_style_candy-cane.with_frm_style .frm_message,.frm_success_style{border:1px solid #fb32e4;background-color:#fccff7 !important;color:#555 !important;border-radius:5px !important;}.frm_style_candy-cane.with_frm_style .frm_message p{color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px !important;}.frm_style_candy-cane.with_frm_style .frm-grid td,.frm-grid th{border-color:#fb32e4;}.form_results.frm_style_candy-cane.with_frm_style{border:4px solid #fb32e4 !important;}.form_results.frm_style_candy-cane.with_frm_style tr td{color: #555 !important;border-top:4px solid #fb32e4 !important;}.form_results.frm_style_candy-cane.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #fb32e4 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #fb32e4 50%, #fb32e4 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_candy-cane.with_frm_style #frm_loading .progress-bar{background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_grid,.frm_style_candy-cane.with_frm_style .frm_grid_first,.frm_style_candy-cane.with_frm_style .frm_grid_odd{border-color:#fb32e4;}.frm_style_candy-cane.with_frm_style .frm_grid.frm_blank_field,.frm_style_candy-cane.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_candy-cane.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#bf4a4a !important;border-color:#fb32e4;}.frm_style_candy-cane.with_frm_style .frm_grid_first,.frm_style_candy-cane.with_frm_style .frm_grid_odd{background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_grid{background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff !important;border-color: #fb32e4 !important;border-width:4px !important;border-style:dashed !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;font-size:14px !important;padding:6px 10px !important;outline:none !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_total input,.frm_style_candy-cane.with_frm_style .frm_form_field.frm_total textarea{color: #555 !important;background-color:transparent !important;border:none !important;display:inline !important;width:auto !important;padding:0 !important;}.frm_style_candy-cane.with_frm_style .frm_button{padding:6px 11px !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;font-size:14px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-weight:bold !important;color:#000 !important;background: #fccff7 !important;border-width:4px;border-color: #fb32e4 !important;height:auto !important;}.frm_style_candy-cane.with_frm_style .frm_button .frm_icon_font:before{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone{border-color: #fb32e4 !important;border-radius:5px !important;color: #555 !important;background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-remove{color: #555 !important;}.frm_style_candy-cane.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #000 !important;}.frm_style_candy-cane.with_frm_style .frm_blank_field .frm_dropzone{border-color:#ff1914 !important;color:#555 !important;background-color:#ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd !important;}.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_candy-cane.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2 !important;}.frm_style_candy-cane.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555 !important;background-color:#ffffff !important;padding:6px 10px !important;border-radius:5px !important;border-color: #fb32e4 !important;border-width:4px !important;border-style:dashed !important;}.frm_style_candy-cane.with_frm_style .chosen-container{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .chosen-container .chosen-results li,.frm_style_candy-cane.with_frm_style .chosen-container .chosen-results li span{color:#555 !important;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px !important;line-height:32px !important;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single div{top:3px !important;}.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_candy-cane.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px !important;}.frm_style_candy-cane.with_frm_style .frm_page_bar input,.frm_style_candy-cane.with_frm_style .frm_page_bar input:disabled{color: #ffffff !important;background-color: #dddddd !important;border-color: #dfdfdf !important;border-width: 2px !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd !important;border-color: #dfdfdf !important;opacity:1 !important;}.frm_style_candy-cane.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_rootline_title,.frm_style_candy-cane.with_frm_style .frm_pages_complete,.frm_style_candy-cane.with_frm_style .frm_percent_complete{color: #777 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input,.frm_style_candy-cane.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff !important;border-right-color: #ffffff !important;border-left-width: 1px !important;border-right-width: 1px !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2 !important;border-right-color: #ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf !important;border-top-width: 2px !important;top: 15px;}.frm_style_candy-cane.with_frm_style .frm_rootline input,.frm_style_candy-cane.with_frm_style .frm_rootline input:hover {width: 30px !important;height: 30px !important;border-radius: 30px !important;padding: 0 !important;}.frm_style_candy-cane.with_frm_style .frm_rootline input:focus {border-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae !important;background-color: #008ec2 !important;color: #ffffff !important;}.frm_style_candy-cane.with_frm_style .frm_progress_line input,.frm_style_candy-cane.with_frm_style .frm_progress_line input:disabled,.frm_style_candy-cane.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_candy-cane.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_candy-cane.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_candy-cane.with_frm_style .frm_range_value{font-size:14px;}.frm_style_candy-cane.with_frm_style .form-field input[type=range],.frm_style_candy-cane.with_frm_style .form-field input[type=range]:focus {padding:0 !important;background:transparent !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc !important;border-radius:5px !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff !important;background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff !important;background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff !important;background-color: #008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_switch_opt{font-size:14px !important;font-weight:normal !important;}.frm_style_candy-cane.with_frm_style .frm_on_label{color:#008ec2 !important;}.frm_style_candy-cane.with_frm_style .frm_off_label{color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_slider {background-color:#cccccc !important;}.frm_style_candy-cane.with_frm_style input:checked + .frm_slider {background-color:#008ec2 !important;}.frm_style_candy-cane.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto !important;}.frm_style_candy-cane.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_candy-cane.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_candy-cane.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block !important;}.frm_style_candy-cane.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 !important;margin-top:8px;}.frm_style_candy-cane.with_frm_style span.frm-pass-verified::before {color:#555 !important;}.frm_style_candy-cane.with_frm_style span.frm-pass-req::before {color:#fff !important;}@media only screen and (max-width: 600px){.frm_style_candy-cane.with_frm_style .frm_repeat_inline,.frm_style_candy-cane.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_formidable-style.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style.with_frm_style,.frm_style_formidable-style.with_frm_style form,.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_formidable-style.with_frm_style legend + h3,.frm_style_formidable-style.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#cccccc;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_style_formidable-style.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=phone],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=file],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_formidable-style.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .auto_width input,.frm_style_formidable-style.with_frm_style input.auto_width,.frm_style_formidable-style.with_frm_style select.auto_width,.frm_style_formidable-style.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style.with_frm_style input[disabled],.frm_style_formidable-style.with_frm_style select[disabled],.frm_style_formidable-style.with_frm_style textarea[disabled],.frm_style_formidable-style.with_frm_style input[readonly],.frm_style_formidable-style.with_frm_style select[readonly],.frm_style_formidable-style.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style.with_frm_style input::placeholder,.frm_style_formidable-style.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input::-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input:-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .frm_default,.frm_style_formidable-style.with_frm_style input.frm_default,.frm_style_formidable-style.with_frm_style textarea.frm_default,.frm_style_formidable-style.with_frm_style select.frm_default,.frm_style_formidable-style.with_frm_style .placeholder,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style.with_frm_style select:focus,.frm_style_formidable-style.with_frm_style textarea:focus,.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style.with_frm_style input[type=submit],.frm_style_formidable-style.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color: #cccccc;border-style:solid;color:#cccccc;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style .frm_submit button:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #cccccc;border-right-color: #cccccc;}.frm_style_formidable-style.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_radio label,.frm_style_formidable-style.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style.with_frm_style .frm_blank_field label,.frm_style_formidable-style.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#cccccc;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_formidable-style.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #cccccc;}.frm_style_formidable-style.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_formidable-style.with_frm_style .frm_page_bar input,.frm_style_formidable-style.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline_title,.frm_style_formidable-style.with_frm_style .frm_pages_complete,.frm_style_formidable-style.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style.with_frm_style .frm_rootline input,.frm_style_formidable-style.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_formidable-style.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style.with_frm_style .form-field input[type=range],.frm_style_formidable-style.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style.with_frm_style span.frm-pass-req::before {color:#B94A48;}@media only screen and (max-width: 600px){.frm_style_formidable-style.with_frm_style .frm_repeat_inline,.frm_style_formidable-style.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_formidable-style-2.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style-2.with_frm_style,.frm_style_formidable-style-2.with_frm_style form,.frm_style_formidable-style-2.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style-2.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Average Sans",sans-serif;}.frm_style_formidable-style-2.with_frm_style legend + h3,.frm_style_formidable-style-2.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Average Sans",sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Average Sans",sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style-2.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style-2.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style-2.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style-2.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style-2.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style-2.with_frm_style label.frm_primary_label{font-family:"Average Sans",sans-serif;font-size:16px;color:#969292;font-weight:bold;text-align:left;margin:0;padding:0 0 5px 0;width:auto;display:block;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-family:"Average Sans",sans-serif;color:#333333;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container{font-size:16px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font{color:#969292;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff;vertical-align:middle;}.frm_style_formidable-style-2.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style-2.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style-2.with_frm_style .frm_grid,.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style p.description,.frm_style_formidable-style-2.with_frm_style div.description,.frm_style_formidable-style-2.with_frm_style div.frm_description,.frm_style_formidable-style-2.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style-2.with_frm_style .frm_error{margin:5px 0 0 0;padding:0;font-family:"Average Sans",sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .frm-show-form div.frm_description p{font-size:16px;color:#333333;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style-2.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style-2.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style-2.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style-2.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_formidable-style-2.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style-2.with_frm_style .frm_scale label{font-weight:normal;font-family:"Average Sans",sans-serif;font-size:16px;color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style textarea,.frm_style_formidable-style-2.with_frm_style .chosen-container{font-family:"Average Sans",sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=phone],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style-2.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=file],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select{height:32px;line-height:1.3;}.frm_style_formidable-style-2.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_formidable-style-2.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:"Average Sans",sans-serif;font-size:14px;}.frm_style_formidable-style-2.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style-2.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style-2.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .auto_width input,.frm_style_formidable-style-2.with_frm_style input.auto_width,.frm_style_formidable-style-2.with_frm_style select.auto_width,.frm_style_formidable-style-2.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style-2.with_frm_style input[disabled],.frm_style_formidable-style-2.with_frm_style select[disabled],.frm_style_formidable-style-2.with_frm_style textarea[disabled],.frm_style_formidable-style-2.with_frm_style input[readonly],.frm_style_formidable-style-2.with_frm_style select[readonly],.frm_style_formidable-style-2.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style-2.with_frm_style input::placeholder,.frm_style_formidable-style-2.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style-2.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input::-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style-2.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input:-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style .frm_default,.frm_style_formidable-style-2.with_frm_style input.frm_default,.frm_style_formidable-style-2.with_frm_style textarea.frm_default,.frm_style_formidable-style-2.with_frm_style select.frm_default,.frm_style_formidable-style-2.with_frm_style .placeholder,.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style-2.with_frm_style select:focus,.frm_style_formidable-style-2.with_frm_style textarea:focus,.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style-2.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style-2.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style-2.with_frm_style input[type=submit],.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style-2.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Average Sans",sans-serif;font-size:16px;height:auto;line-height:normal;text-align:center;background:#214150;border-width:0px;border-color: #cccccc;border-style:solid;color:#ffffff;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:10px 10px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style-2.with_frm_style input[type=submit]:hover,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style-2.with_frm_style .frm_submit button:hover{background: #e6e6e6;border-color: #e6e6e6;color: #214150;}.frm_style_formidable-style-2.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style-2.with_frm_style input[type=submit]:focus,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style-2.with_frm_style .frm_submit button:focus,.frm_style_formidable-style-2.with_frm_style input[type=submit]:active,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style-2.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #214150;}.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #ffffff;border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Average Sans",sans-serif;font-size:16px;color:#969292;font-weight:bold;margin:0;padding:0 0 5px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style-2.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style-2.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style-2.with_frm_style a.frm_save_draft{font-family:"Average Sans",sans-serif;font-size:16px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style #frm_field_cptch_number_container{font-family:"Average Sans",sans-serif;font-size:16px;color:#969292;font-weight:bold;clear:both;}.frm_style_formidable-style-2.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style-2.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style-2.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style-2.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style-2.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style-2.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style-2.with_frm_style .frm_radio label,.frm_style_formidable-style-2.with_frm_style .frm_checkbox label{font-family:"Average Sans",sans-serif;font-size:16px;color:#444444;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style-2.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 16px;position: static;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style-2.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style-2.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style-2.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field label,.frm_style_formidable-style-2.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style-2.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style-2.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style-2.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style-2.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style-2.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style-2.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_grid,.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style-2.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style-2.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style-2.with_frm_style .frm_button{padding:10px 10px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:16px;font-family:"Average Sans",sans-serif;font-weight:normal;color:#ffffff;background: #214150;border-width:0px;border-color: #cccccc;height:auto;}.frm_style_formidable-style-2.with_frm_style .frm_button .frm_icon_font:before{font-size:16px;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style-2.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style-2.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style-2.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style-2.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_formidable-style-2.with_frm_style .frm_page_bar input,.frm_style_formidable-style-2.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style-2.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_rootline_title,.frm_style_formidable-style-2.with_frm_style .frm_pages_complete,.frm_style_formidable-style-2.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input,.frm_style_formidable-style-2.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input,.frm_style_formidable-style-2.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input,.frm_style_formidable-style-2.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style-2.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_formidable-style-2.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style-2.with_frm_style .form-field input[type=range],.frm_style_formidable-style-2.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_switch_opt{font-size:16px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style-2.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style-2.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style-2.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style-2.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style-2.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style-2.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-req::before {color:#B94A48;}@media only screen and (max-width: 600px){.frm_style_formidable-style-2.with_frm_style .frm_repeat_inline,.frm_style_formidable-style-2.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_left-labels.with_frm_style{max-width:100%;direction:ltr;}.frm_style_left-labels.with_frm_style,.frm_style_left-labels.with_frm_style form,.frm_style_left-labels.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_left-labels.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_left-labels.with_frm_style legend + h3,.frm_style_left-labels.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_left-labels.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_left-labels.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_left-labels.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_left-labels.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_left-labels.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_left-labels.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_container,.frm_style_left-labels.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_left-labels.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_left-labels.with_frm_style .frm_icon_font{color:#444444;}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_left-labels.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_left-labels.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_left-labels.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_left-labels.with_frm_style .form-field{margin-bottom:20px;}.frm_style_left-labels.with_frm_style .frm_grid,.frm_style_left-labels.with_frm_style .frm_grid_first,.frm_style_left-labels.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_left-labels.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_left-labels.with_frm_style p.description,.frm_style_left-labels.with_frm_style div.description,.frm_style_left-labels.with_frm_style div.frm_description,.frm_style_left-labels.with_frm_style .frm-show-form > div.frm_description,.frm_style_left-labels.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_left-labels.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_left-labels.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_left-labels.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_left-labels.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_left-labels.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_left-labels.with_frm_style .frm_pos_none{display:none;}.frm_style_left-labels.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_left-labels.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_left-labels.with_frm_style input[type=text],.frm_style_left-labels.with_frm_style input[type=password],.frm_style_left-labels.with_frm_style input[type=email],.frm_style_left-labels.with_frm_style input[type=number],.frm_style_left-labels.with_frm_style input[type=url],.frm_style_left-labels.with_frm_style input[type=tel],.frm_style_left-labels.with_frm_style input[type=search],.frm_style_left-labels.with_frm_style select,.frm_style_left-labels.with_frm_style textarea,.frm_style_left-labels.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_left-labels.with_frm_style textarea{vertical-align:top;}.frm_style_left-labels.with_frm_style input[type=text],.frm_style_left-labels.with_frm_style input[type=password],.frm_style_left-labels.with_frm_style input[type=email],.frm_style_left-labels.with_frm_style input[type=number],.frm_style_left-labels.with_frm_style input[type=url],.frm_style_left-labels.with_frm_style input[type=tel],.frm_style_left-labels.with_frm_style input[type=phone],.frm_style_left-labels.with_frm_style input[type=search],.frm_style_left-labels.with_frm_style select,.frm_style_left-labels.with_frm_style textarea,.frm_form_fields_style,.frm_style_left-labels.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_left-labels.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_left-labels.with_frm_style input[type=text],.frm_style_left-labels.with_frm_style input[type=password],.frm_style_left-labels.with_frm_style input[type=email],.frm_style_left-labels.with_frm_style input[type=number],.frm_style_left-labels.with_frm_style input[type=url],.frm_style_left-labels.with_frm_style input[type=tel],.frm_style_left-labels.with_frm_style input[type=file],.frm_style_left-labels.with_frm_style input[type=search],.frm_style_left-labels.with_frm_style select{height:32px;line-height:1.3;}.frm_style_left-labels.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_left-labels.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_left-labels.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_left-labels.with_frm_style select{width:100%;max-width:100%;}.frm_style_left-labels.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_left-labels.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_left-labels.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_left-labels.with_frm_style .auto_width input,.frm_style_left-labels.with_frm_style input.auto_width,.frm_style_left-labels.with_frm_style select.auto_width,.frm_style_left-labels.with_frm_style textarea.auto_width{width:auto;}.frm_style_left-labels.with_frm_style input[disabled],.frm_style_left-labels.with_frm_style select[disabled],.frm_style_left-labels.with_frm_style textarea[disabled],.frm_style_left-labels.with_frm_style input[readonly],.frm_style_left-labels.with_frm_style select[readonly],.frm_style_left-labels.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_left-labels.with_frm_style input::placeholder,.frm_style_left-labels.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_left-labels.with_frm_style input::-webkit-input-placeholder,.frm_style_left-labels.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_left-labels.with_frm_style input::-moz-placeholder,.frm_style_left-labels.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_left-labels.with_frm_style input:-ms-input-placeholder,frm_style_left-labels.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_left-labels.with_frm_style input:-moz-placeholder,.frm_style_left-labels.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_left-labels.with_frm_style .frm_default,.frm_style_left-labels.with_frm_style input.frm_default,.frm_style_left-labels.with_frm_style textarea.frm_default,.frm_style_left-labels.with_frm_style select.frm_default,.frm_style_left-labels.with_frm_style .placeholder,.frm_style_left-labels.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_left-labels.with_frm_style .form-field input:not([type=file]):focus,.frm_style_left-labels.with_frm_style select:focus,.frm_style_left-labels.with_frm_style textarea:focus,.frm_style_left-labels.with_frm_style .frm_focus_field input[type=text],.frm_style_left-labels.with_frm_style .frm_focus_field input[type=password],.frm_style_left-labels.with_frm_style .frm_focus_field input[type=email],.frm_style_left-labels.with_frm_style .frm_focus_field input[type=number],.frm_style_left-labels.with_frm_style .frm_focus_field input[type=url],.frm_style_left-labels.with_frm_style .frm_focus_field input[type=tel],.frm_style_left-labels.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_left-labels.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_left-labels.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_left-labels.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_left-labels.with_frm_style input[type=submit],.frm_style_left-labels.with_frm_style .frm_submit input[type=button],.frm_style_left-labels.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color: #cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_left-labels.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_left-labels.with_frm_style input[type=submit]:hover,.frm_style_left-labels.with_frm_style .frm_submit input[type=button]:hover,.frm_style_left-labels.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_left-labels.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_left-labels.with_frm_style input[type=submit]:focus,.frm_style_left-labels.with_frm_style .frm_submit input[type=button]:focus,.frm_style_left-labels.with_frm_style .frm_submit button:focus,.frm_style_left-labels.with_frm_style input[type=submit]:active,.frm_style_left-labels.with_frm_style .frm_submit input[type=button]:active,.frm_style_left-labels.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_left-labels.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_left-labels.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_left-labels.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_left-labels.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_left-labels.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_left-labels.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_left-labels.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_left-labels.with_frm_style.frm_inline_form .frm_submit input,.frm_style_left-labels.with_frm_style.frm_inline_form .frm_submit button,.frm_style_left-labels.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_left-labels.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_left-labels.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_left-labels.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_left-labels.with_frm_style .frm_radio{display:block;}.frm_style_left-labels.with_frm_style .frm_checkbox{display:block;}.frm_style_left-labels.with_frm_style .vertical_radio .frm_checkbox,.frm_style_left-labels.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_left-labels.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_left-labels.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_left-labels.with_frm_style .frm_radio label,.frm_style_left-labels.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_left-labels.with_frm_style .frm_radio input[type=radio],.frm_style_left-labels.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_left-labels.with_frm_style .frm_blank_field input[type=text],.frm_style_left-labels.with_frm_style .frm_blank_field input[type=password],.frm_style_left-labels.with_frm_style .frm_blank_field input[type=url],.frm_style_left-labels.with_frm_style .frm_blank_field input[type=tel],.frm_style_left-labels.with_frm_style .frm_blank_field input[type=number],.frm_style_left-labels.with_frm_style .frm_blank_field input[type=email],.frm_style_left-labels.with_frm_style .frm_blank_field textarea,.frm_style_left-labels.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_left-labels.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_left-labels.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_left-labels.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_left-labels.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_left-labels.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_left-labels.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_left-labels.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_left-labels.with_frm_style .frm_error{font-weight:bold;}.frm_style_left-labels.with_frm_style .frm_blank_field label,.frm_style_left-labels.with_frm_style .frm_error{color:#B94A48;}.frm_style_left-labels.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_left-labels.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_left-labels.with_frm_style .frm_message p{color:#468847;}.frm_style_left-labels.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_left-labels.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_left-labels.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_left-labels.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_left-labels.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_left-labels.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_left-labels.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_grid,.frm_style_left-labels.with_frm_style .frm_grid_first,.frm_style_left-labels.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_left-labels.with_frm_style .frm_grid.frm_blank_field,.frm_style_left-labels.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_left-labels.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_left-labels.with_frm_style .frm_grid_first,.frm_style_left-labels.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_total input,.frm_style_left-labels.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_left-labels.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_left-labels.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_left-labels.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_left-labels.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_left-labels.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_left-labels.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_left-labels.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_left-labels.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_left-labels.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_left-labels.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_left-labels.with_frm_style .chosen-container{font-size:14px;}.frm_style_left-labels.with_frm_style .chosen-container .chosen-results li,.frm_style_left-labels.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_left-labels.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_left-labels.with_frm_style .frm_page_bar input,.frm_style_left-labels.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_left-labels.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_left-labels.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_rootline_title,.frm_style_left-labels.with_frm_style .frm_pages_complete,.frm_style_left-labels.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_left-labels.with_frm_style .frm_progress_line input,.frm_style_left-labels.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_left-labels.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_left-labels.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_left-labels.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_left-labels.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_left-labels.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_left-labels.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_left-labels.with_frm_style .frm_rootline input,.frm_style_left-labels.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_left-labels.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_left-labels.with_frm_style .frm_progress_line input,.frm_style_left-labels.with_frm_style .frm_progress_line input:disabled,.frm_style_left-labels.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_left-labels.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_left-labels.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_left-labels.with_frm_style .frm_range_value{font-size:14px;}.frm_style_left-labels.with_frm_style .form-field input[type=range],.frm_style_left-labels.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_left-labels.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_left-labels.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_left-labels.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_left-labels.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_left-labels.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_left-labels.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_left-labels.with_frm_style .frm_off_label{color:#444444;}.frm_style_left-labels.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_left-labels.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_left-labels.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_left-labels.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_left-labels.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_left-labels.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_left-labels.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_left-labels.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_left-labels.with_frm_style span.frm-pass-req::before {color:#B94A48;}@media only screen and (max-width: 600px){.frm_style_left-labels.with_frm_style .frm_repeat_inline,.frm_style_left-labels.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_lines.with_frm_style{max-width:100%;direction:ltr;}.frm_style_lines.with_frm_style,.frm_style_lines.with_frm_style form,.frm_style_lines.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_lines.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_lines.with_frm_style legend + h3,.frm_style_lines.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_lines.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_lines.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_lines.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_lines.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_lines.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_lines.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_lines.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_lines.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_lines.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#444444;font-weight:normal;text-align:left;margin:0;padding:0;width:auto;display:block;}.frm_style_lines.with_frm_style .frm_form_field.frm_html_container,.frm_style_lines.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_lines.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_lines.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_lines.with_frm_style .frm_icon_font{color:#444444;}.frm_style_lines.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_lines.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_lines.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_lines.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_lines.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_lines.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_lines.with_frm_style .form-field{margin-bottom:20px;}.frm_style_lines.with_frm_style .frm_grid,.frm_style_lines.with_frm_style .frm_grid_first,.frm_style_lines.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_lines.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_lines.with_frm_style p.description,.frm_style_lines.with_frm_style div.description,.frm_style_lines.with_frm_style div.frm_description,.frm_style_lines.with_frm_style .frm-show-form > div.frm_description,.frm_style_lines.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_lines.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_lines.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_lines.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_lines.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_lines.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_lines.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_lines.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_lines.with_frm_style .frm_pos_none{display:none;}.frm_style_lines.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_lines.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_lines.with_frm_style input[type=text],.frm_style_lines.with_frm_style input[type=password],.frm_style_lines.with_frm_style input[type=email],.frm_style_lines.with_frm_style input[type=number],.frm_style_lines.with_frm_style input[type=url],.frm_style_lines.with_frm_style input[type=tel],.frm_style_lines.with_frm_style input[type=search],.frm_style_lines.with_frm_style select,.frm_style_lines.with_frm_style textarea,.frm_style_lines.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_lines.with_frm_style textarea{vertical-align:top;}.frm_style_lines.with_frm_style input[type=text],.frm_style_lines.with_frm_style input[type=password],.frm_style_lines.with_frm_style input[type=email],.frm_style_lines.with_frm_style input[type=number],.frm_style_lines.with_frm_style input[type=url],.frm_style_lines.with_frm_style input[type=tel],.frm_style_lines.with_frm_style input[type=phone],.frm_style_lines.with_frm_style input[type=search],.frm_style_lines.with_frm_style select,.frm_style_lines.with_frm_style textarea,.frm_form_fields_style,.frm_style_lines.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_lines.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_lines.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:0 0 1px;border-style:solid;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;width:100%;max-width:100%;font-size:14px;padding:3px 0px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:none;}.frm_style_lines.with_frm_style input[type=text],.frm_style_lines.with_frm_style input[type=password],.frm_style_lines.with_frm_style input[type=email],.frm_style_lines.with_frm_style input[type=number],.frm_style_lines.with_frm_style input[type=url],.frm_style_lines.with_frm_style input[type=tel],.frm_style_lines.with_frm_style input[type=file],.frm_style_lines.with_frm_style input[type=search],.frm_style_lines.with_frm_style select{height:32px;line-height:1.3;}.frm_style_lines.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_lines.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_lines.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_lines.with_frm_style select{width:100%;max-width:100%;}.frm_style_lines.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_lines.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_lines.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_lines.with_frm_style .auto_width input,.frm_style_lines.with_frm_style input.auto_width,.frm_style_lines.with_frm_style select.auto_width,.frm_style_lines.with_frm_style textarea.auto_width{width:auto;}.frm_style_lines.with_frm_style input[disabled],.frm_style_lines.with_frm_style select[disabled],.frm_style_lines.with_frm_style textarea[disabled],.frm_style_lines.with_frm_style input[readonly],.frm_style_lines.with_frm_style select[readonly],.frm_style_lines.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_lines.with_frm_style input::placeholder,.frm_style_lines.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_lines.with_frm_style input::-webkit-input-placeholder,.frm_style_lines.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_lines.with_frm_style input::-moz-placeholder,.frm_style_lines.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_lines.with_frm_style input:-ms-input-placeholder,frm_style_lines.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_lines.with_frm_style input:-moz-placeholder,.frm_style_lines.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_lines.with_frm_style .frm_default,.frm_style_lines.with_frm_style input.frm_default,.frm_style_lines.with_frm_style textarea.frm_default,.frm_style_lines.with_frm_style select.frm_default,.frm_style_lines.with_frm_style .placeholder,.frm_style_lines.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_lines.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_lines.with_frm_style .form-field input:not([type=file]):focus,.frm_style_lines.with_frm_style select:focus,.frm_style_lines.with_frm_style textarea:focus,.frm_style_lines.with_frm_style .frm_focus_field input[type=text],.frm_style_lines.with_frm_style .frm_focus_field input[type=password],.frm_style_lines.with_frm_style .frm_focus_field input[type=email],.frm_style_lines.with_frm_style .frm_focus_field input[type=number],.frm_style_lines.with_frm_style .frm_focus_field input[type=url],.frm_style_lines.with_frm_style .frm_focus_field input[type=tel],.frm_style_lines.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_lines.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_lines.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:none;}.frm_style_lines.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_lines.with_frm_style input[type=submit],.frm_style_lines.with_frm_style .frm_submit input[type=button],.frm_style_lines.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color: #cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_lines.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_lines.with_frm_style input[type=submit]:hover,.frm_style_lines.with_frm_style .frm_submit input[type=button]:hover,.frm_style_lines.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_lines.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_lines.with_frm_style input[type=submit]:focus,.frm_style_lines.with_frm_style .frm_submit input[type=button]:focus,.frm_style_lines.with_frm_style .frm_submit button:focus,.frm_style_lines.with_frm_style input[type=submit]:active,.frm_style_lines.with_frm_style .frm_submit input[type=button]:active,.frm_style_lines.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_lines.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_lines.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_lines.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_lines.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_lines.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_lines.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_lines.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#444444;font-weight:normal;margin:0;padding:0;width:auto;display:block;visibility:hidden;}.frm_style_lines.with_frm_style.frm_inline_form .frm_submit input,.frm_style_lines.with_frm_style.frm_inline_form .frm_submit button,.frm_style_lines.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_lines.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_lines.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_lines.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#444444;font-weight:normal;clear:both;}.frm_style_lines.with_frm_style .frm_radio{display:inline;}.frm_style_lines.with_frm_style .frm_checkbox{display:block;}.frm_style_lines.with_frm_style .vertical_radio .frm_checkbox,.frm_style_lines.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_lines.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_lines.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_lines.with_frm_style .frm_radio label,.frm_style_lines.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_lines.with_frm_style .frm_radio input[type=radio],.frm_style_lines.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_lines.with_frm_style .frm_blank_field input[type=text],.frm_style_lines.with_frm_style .frm_blank_field input[type=password],.frm_style_lines.with_frm_style .frm_blank_field input[type=url],.frm_style_lines.with_frm_style .frm_blank_field input[type=tel],.frm_style_lines.with_frm_style .frm_blank_field input[type=number],.frm_style_lines.with_frm_style .frm_blank_field input[type=email],.frm_style_lines.with_frm_style .frm_blank_field textarea,.frm_style_lines.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_lines.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_lines.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_lines.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_lines.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_lines.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_lines.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:0 0 1px;border-style:solid;}.frm_style_lines.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_lines.with_frm_style .frm_error{font-weight:normal;}.frm_style_lines.with_frm_style .frm_blank_field label,.frm_style_lines.with_frm_style .frm_error{color:#B94A48;}.frm_style_lines.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:0;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_lines.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:0;}.frm_style_lines.with_frm_style .frm_message p{color:#468847;}.frm_style_lines.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_lines.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_lines.with_frm_style{border:0 0 1px solid #cccccc;}.form_results.frm_style_lines.with_frm_style tr td{color: #555555;border-top:0 0 1px solid #cccccc;}.form_results.frm_style_lines.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_lines.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_lines.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_grid,.frm_style_lines.with_frm_style .frm_grid_first,.frm_style_lines.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_lines.with_frm_style .frm_grid.frm_blank_field,.frm_style_lines.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_lines.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_lines.with_frm_style .frm_grid_first,.frm_style_lines.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:0 0 1px;border-style:solid;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;width:100%;font-size:14px;padding:3px 0px;outline:none;}.frm_style_lines.with_frm_style .frm_form_field.frm_total input,.frm_style_lines.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_lines.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_lines.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_lines.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:0;color: #555555;background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_lines.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_lines.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_lines.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_lines.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_lines.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_lines.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_lines.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:3px 0px;border-radius:0;border-color: #cccccc;border-width:0 0 1px;border-style:solid;}.frm_style_lines.with_frm_style .chosen-container{font-size:14px;}.frm_style_lines.with_frm_style .chosen-container .chosen-results li,.frm_style_lines.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-single abbr{top:7px ;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-single div{top:1.5px;}.frm_style_lines.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_lines.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_lines.with_frm_style .frm_page_bar input,.frm_style_lines.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_lines.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_lines.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_lines.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_lines.with_frm_style .frm_rootline_title,.frm_style_lines.with_frm_style .frm_pages_complete,.frm_style_lines.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_lines.with_frm_style .frm_progress_line input,.frm_style_lines.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_lines.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_lines.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_lines.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_lines.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_lines.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_lines.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_lines.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_lines.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_lines.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_lines.with_frm_style .frm_rootline input,.frm_style_lines.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_lines.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_lines.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_lines.with_frm_style .frm_progress_line input,.frm_style_lines.with_frm_style .frm_progress_line input:disabled,.frm_style_lines.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_lines.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_lines.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_lines.with_frm_style .frm_range_value{font-size:14px;}.frm_style_lines.with_frm_style .form-field input[type=range],.frm_style_lines.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_lines.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:0;}.frm_style_lines.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_lines.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_lines.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_lines.with_frm_style .frm_switch_opt{font-size:12px;font-weight:normal;}.frm_style_lines.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_lines.with_frm_style .frm_off_label{color:#444444;}.frm_style_lines.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_lines.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_lines.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_lines.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_lines.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_lines.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_lines.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_lines.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_lines.with_frm_style span.frm-pass-req::before {color:#B94A48;}@media only screen and (max-width: 600px){.frm_style_lines.with_frm_style .frm_repeat_inline,.frm_style_lines.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_formidable-style-3.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style-3.with_frm_style,.frm_style_formidable-style-3.with_frm_style form,.frm_style_formidable-style-3.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style-3.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_formidable-style-3.with_frm_style legend + h3,.frm_style_formidable-style-3.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style-3.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style-3.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style-3.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style-3.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style-3.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style-3.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style-3.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style-3.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_formidable-style-3.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style-3.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style-3.with_frm_style .frm_grid,.frm_style_formidable-style-3.with_frm_style .frm_grid_first,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style-3.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style-3.with_frm_style p.description,.frm_style_formidable-style-3.with_frm_style div.description,.frm_style_formidable-style-3.with_frm_style div.frm_description,.frm_style_formidable-style-3.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style-3.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style-3.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style-3.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style-3.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style-3.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style-3.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_formidable-style-3.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style-3.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style-3.with_frm_style input[type=text],.frm_style_formidable-style-3.with_frm_style input[type=password],.frm_style_formidable-style-3.with_frm_style input[type=email],.frm_style_formidable-style-3.with_frm_style input[type=number],.frm_style_formidable-style-3.with_frm_style input[type=url],.frm_style_formidable-style-3.with_frm_style input[type=tel],.frm_style_formidable-style-3.with_frm_style input[type=search],.frm_style_formidable-style-3.with_frm_style select,.frm_style_formidable-style-3.with_frm_style textarea,.frm_style_formidable-style-3.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style-3.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style-3.with_frm_style input[type=text],.frm_style_formidable-style-3.with_frm_style input[type=password],.frm_style_formidable-style-3.with_frm_style input[type=email],.frm_style_formidable-style-3.with_frm_style input[type=number],.frm_style_formidable-style-3.with_frm_style input[type=url],.frm_style_formidable-style-3.with_frm_style input[type=tel],.frm_style_formidable-style-3.with_frm_style input[type=phone],.frm_style_formidable-style-3.with_frm_style input[type=search],.frm_style_formidable-style-3.with_frm_style select,.frm_style_formidable-style-3.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style-3.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style-3.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:50%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style-3.with_frm_style input[type=text],.frm_style_formidable-style-3.with_frm_style input[type=password],.frm_style_formidable-style-3.with_frm_style input[type=email],.frm_style_formidable-style-3.with_frm_style input[type=number],.frm_style_formidable-style-3.with_frm_style input[type=url],.frm_style_formidable-style-3.with_frm_style input[type=tel],.frm_style_formidable-style-3.with_frm_style input[type=file],.frm_style_formidable-style-3.with_frm_style input[type=search],.frm_style_formidable-style-3.with_frm_style select{height:32px;line-height:1.3;}.frm_style_formidable-style-3.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_formidable-style-3.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style-3.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style-3.with_frm_style select{width:50%;max-width:100%;}.frm_style_formidable-style-3.with_frm_style .wp-editor-wrap{width:50%;max-width:100%;}.frm_style_formidable-style-3.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style-3.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .auto_width input,.frm_style_formidable-style-3.with_frm_style input.auto_width,.frm_style_formidable-style-3.with_frm_style select.auto_width,.frm_style_formidable-style-3.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style-3.with_frm_style input[disabled],.frm_style_formidable-style-3.with_frm_style select[disabled],.frm_style_formidable-style-3.with_frm_style textarea[disabled],.frm_style_formidable-style-3.with_frm_style input[readonly],.frm_style_formidable-style-3.with_frm_style select[readonly],.frm_style_formidable-style-3.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style-3.with_frm_style input::placeholder,.frm_style_formidable-style-3.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style-3.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input::-moz-placeholder,.frm_style_formidable-style-3.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style-3.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input:-moz-placeholder,.frm_style_formidable-style-3.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style .frm_default,.frm_style_formidable-style-3.with_frm_style input.frm_default,.frm_style_formidable-style-3.with_frm_style textarea.frm_default,.frm_style_formidable-style-3.with_frm_style select.frm_default,.frm_style_formidable-style-3.with_frm_style .placeholder,.frm_style_formidable-style-3.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style-3.with_frm_style select:focus,.frm_style_formidable-style-3.with_frm_style textarea:focus,.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style-3.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style-3.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style-3.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style-3.with_frm_style input[type=submit],.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style-3.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color: #cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style-3.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style-3.with_frm_style input[type=submit]:hover,.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style-3.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-3.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style-3.with_frm_style input[type=submit]:focus,.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style-3.with_frm_style .frm_submit button:focus,.frm_style_formidable-style-3.with_frm_style input[type=submit]:active,.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style-3.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_formidable-style-3.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style-3.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style-3.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style-3.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style-3.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style-3.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style-3.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_formidable-style-3.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style-3.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style-3.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style-3.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style-3.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style-3.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style-3.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style-3.with_frm_style .frm_radio label,.frm_style_formidable-style-3.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_formidable-style-3.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style-3.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style-3.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style-3.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style-3.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style-3.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field label,.frm_style_formidable-style-3.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style-3.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style-3.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style-3.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style-3.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style-3.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style-3.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style-3.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style-3.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style-3.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_grid,.frm_style_formidable-style-3.with_frm_style .frm_grid_first,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style-3.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style-3.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style-3.with_frm_style .frm_grid_first,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:50%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style-3.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_formidable-style-3.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style-3.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style-3.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style-3.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style-3.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style-3.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_formidable-style-3.with_frm_style .frm_page_bar input,.frm_style_formidable-style-3.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style-3.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_rootline_title,.frm_style_formidable-style-3.with_frm_style .frm_pages_complete,.frm_style_formidable-style-3.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input,.frm_style_formidable-style-3.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style-3.with_frm_style .frm_rootline input,.frm_style_formidable-style-3.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style-3.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input,.frm_style_formidable-style-3.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style-3.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_formidable-style-3.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style-3.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_formidable-style-3.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .form-field input[type=range],.frm_style_formidable-style-3.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style-3.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style-3.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style-3.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style-3.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style-3.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style-3.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style-3.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style-3.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style-3.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style-3.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style-3.with_frm_style span.frm-pass-req::before {color:#B94A48;}@media only screen and (max-width: 600px){.frm_style_formidable-style-3.with_frm_style .frm_repeat_inline,.frm_style_formidable-style-3.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_rtl.with_frm_style{max-width:100%;direction:rtl;unicode-bidi:embed;}.frm_style_rtl.with_frm_style,.frm_style_rtl.with_frm_style form,.frm_style_rtl.with_frm_style .frm-show-form div.frm_description p {text-align:right;}.frm_style_rtl.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_rtl.with_frm_style legend + h3,.frm_style_rtl.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_rtl.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_rtl.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_rtl.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_rtl.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_rtl.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_rtl.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:right;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_rtl.with_frm_style .frm_form_field.frm_html_container,.frm_style_rtl.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_rtl.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_rtl.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_rtl.with_frm_style .frm_icon_font{color:#444444;}.frm_style_rtl.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_rtl.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_rtl.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_rtl.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_rtl.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_rtl.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_rtl.with_frm_style .form-field{margin-bottom:20px;}.frm_style_rtl.with_frm_style .frm_grid,.frm_style_rtl.with_frm_style .frm_grid_first,.frm_style_rtl.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_rtl.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_rtl.with_frm_style p.description,.frm_style_rtl.with_frm_style div.description,.frm_style_rtl.with_frm_style div.frm_description,.frm_style_rtl.with_frm_style .frm-show-form > div.frm_description,.frm_style_rtl.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_rtl.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_rtl.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_rtl.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_rtl.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_rtl.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_rtl.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_rtl.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_rtl.with_frm_style .frm_pos_none{display:none;}.frm_style_rtl.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_rtl.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_rtl.with_frm_style input[type=text],.frm_style_rtl.with_frm_style input[type=password],.frm_style_rtl.with_frm_style input[type=email],.frm_style_rtl.with_frm_style input[type=number],.frm_style_rtl.with_frm_style input[type=url],.frm_style_rtl.with_frm_style input[type=tel],.frm_style_rtl.with_frm_style input[type=search],.frm_style_rtl.with_frm_style select,.frm_style_rtl.with_frm_style textarea,.frm_style_rtl.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_rtl.with_frm_style textarea{vertical-align:top;}.frm_style_rtl.with_frm_style input[type=text],.frm_style_rtl.with_frm_style input[type=password],.frm_style_rtl.with_frm_style input[type=email],.frm_style_rtl.with_frm_style input[type=number],.frm_style_rtl.with_frm_style input[type=url],.frm_style_rtl.with_frm_style input[type=tel],.frm_style_rtl.with_frm_style input[type=phone],.frm_style_rtl.with_frm_style input[type=search],.frm_style_rtl.with_frm_style select,.frm_style_rtl.with_frm_style textarea,.frm_form_fields_style,.frm_style_rtl.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_rtl.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_rtl.with_frm_style input[type=text],.frm_style_rtl.with_frm_style input[type=password],.frm_style_rtl.with_frm_style input[type=email],.frm_style_rtl.with_frm_style input[type=number],.frm_style_rtl.with_frm_style input[type=url],.frm_style_rtl.with_frm_style input[type=tel],.frm_style_rtl.with_frm_style input[type=file],.frm_style_rtl.with_frm_style input[type=search],.frm_style_rtl.with_frm_style select{height:32px;line-height:1.3;}.frm_style_rtl.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_rtl.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_rtl.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_rtl.with_frm_style select{width:100%;max-width:100%;}.frm_style_rtl.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_rtl.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_rtl.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_rtl.with_frm_style .auto_width input,.frm_style_rtl.with_frm_style input.auto_width,.frm_style_rtl.with_frm_style select.auto_width,.frm_style_rtl.with_frm_style textarea.auto_width{width:auto;}.frm_style_rtl.with_frm_style input[disabled],.frm_style_rtl.with_frm_style select[disabled],.frm_style_rtl.with_frm_style textarea[disabled],.frm_style_rtl.with_frm_style input[readonly],.frm_style_rtl.with_frm_style select[readonly],.frm_style_rtl.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_rtl.with_frm_style input::placeholder,.frm_style_rtl.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_rtl.with_frm_style input::-webkit-input-placeholder,.frm_style_rtl.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_rtl.with_frm_style input::-moz-placeholder,.frm_style_rtl.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_rtl.with_frm_style input:-ms-input-placeholder,frm_style_rtl.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_rtl.with_frm_style input:-moz-placeholder,.frm_style_rtl.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_rtl.with_frm_style .frm_default,.frm_style_rtl.with_frm_style input.frm_default,.frm_style_rtl.with_frm_style textarea.frm_default,.frm_style_rtl.with_frm_style select.frm_default,.frm_style_rtl.with_frm_style .placeholder,.frm_style_rtl.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_rtl.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_rtl.with_frm_style .form-field input:not([type=file]):focus,.frm_style_rtl.with_frm_style select:focus,.frm_style_rtl.with_frm_style textarea:focus,.frm_style_rtl.with_frm_style .frm_focus_field input[type=text],.frm_style_rtl.with_frm_style .frm_focus_field input[type=password],.frm_style_rtl.with_frm_style .frm_focus_field input[type=email],.frm_style_rtl.with_frm_style .frm_focus_field input[type=number],.frm_style_rtl.with_frm_style .frm_focus_field input[type=url],.frm_style_rtl.with_frm_style .frm_focus_field input[type=tel],.frm_style_rtl.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_rtl.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_rtl.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_rtl.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_rtl.with_frm_style input[type=submit],.frm_style_rtl.with_frm_style .frm_submit input[type=button],.frm_style_rtl.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color: #cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_rtl.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_rtl.with_frm_style input[type=submit]:hover,.frm_style_rtl.with_frm_style .frm_submit input[type=button]:hover,.frm_style_rtl.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_rtl.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_rtl.with_frm_style input[type=submit]:focus,.frm_style_rtl.with_frm_style .frm_submit input[type=button]:focus,.frm_style_rtl.with_frm_style .frm_submit button:focus,.frm_style_rtl.with_frm_style input[type=submit]:active,.frm_style_rtl.with_frm_style .frm_submit input[type=button]:active,.frm_style_rtl.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_rtl.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_rtl.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_rtl.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_rtl.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_rtl.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_rtl.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_rtl.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_rtl.with_frm_style.frm_inline_form .frm_submit input,.frm_style_rtl.with_frm_style.frm_inline_form .frm_submit button,.frm_style_rtl.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_rtl.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_rtl.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_rtl.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_rtl.with_frm_style .frm_radio{display:block;}.frm_style_rtl.with_frm_style .frm_checkbox{display:block;}.frm_style_rtl.with_frm_style .vertical_radio .frm_checkbox,.frm_style_rtl.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_rtl.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_rtl.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_rtl.with_frm_style .frm_radio label,.frm_style_rtl.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_rtl.with_frm_style .frm_radio input[type=radio],.frm_style_rtl.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_rtl.with_frm_style .frm_blank_field input[type=text],.frm_style_rtl.with_frm_style .frm_blank_field input[type=password],.frm_style_rtl.with_frm_style .frm_blank_field input[type=url],.frm_style_rtl.with_frm_style .frm_blank_field input[type=tel],.frm_style_rtl.with_frm_style .frm_blank_field input[type=number],.frm_style_rtl.with_frm_style .frm_blank_field input[type=email],.frm_style_rtl.with_frm_style .frm_blank_field textarea,.frm_style_rtl.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_rtl.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_rtl.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_rtl.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_rtl.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_rtl.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_rtl.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_rtl.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_rtl.with_frm_style .frm_error{font-weight:bold;}.frm_style_rtl.with_frm_style .frm_blank_field label,.frm_style_rtl.with_frm_style .frm_error{color:#B94A48;}.frm_style_rtl.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_rtl.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_rtl.with_frm_style .frm_message p{color:#468847;}.frm_style_rtl.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_rtl.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_rtl.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_rtl.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_rtl.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_rtl.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_rtl.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_grid,.frm_style_rtl.with_frm_style .frm_grid_first,.frm_style_rtl.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_rtl.with_frm_style .frm_grid.frm_blank_field,.frm_style_rtl.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_rtl.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_rtl.with_frm_style .frm_grid_first,.frm_style_rtl.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_rtl.with_frm_style .frm_form_field.frm_total input,.frm_style_rtl.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_rtl.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_rtl.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_rtl.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_rtl.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_rtl.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_rtl.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_rtl.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_rtl.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_rtl.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_rtl.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_rtl.with_frm_style .chosen-container{font-size:14px;}.frm_style_rtl.with_frm_style .chosen-container .chosen-results li,.frm_style_rtl.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_rtl.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_rtl.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_rtl.with_frm_style .frm_page_bar input,.frm_style_rtl.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_rtl.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_rtl.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_rtl.with_frm_style .frm_rootline_title,.frm_style_rtl.with_frm_style .frm_pages_complete,.frm_style_rtl.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_rtl.with_frm_style .frm_progress_line input,.frm_style_rtl.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_rtl.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_rtl.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_rtl.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_rtl.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_rtl.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_rtl.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_rtl.with_frm_style .frm_rootline input,.frm_style_rtl.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_rtl.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_rtl.with_frm_style .frm_progress_line input,.frm_style_rtl.with_frm_style .frm_progress_line input:disabled,.frm_style_rtl.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_rtl.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_rtl.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_rtl.with_frm_style .frm_range_value{font-size:14px;}.frm_style_rtl.with_frm_style .form-field input[type=range],.frm_style_rtl.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_rtl.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_rtl.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_rtl.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_rtl.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_rtl.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_rtl.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_rtl.with_frm_style .frm_off_label{color:#444444;}.frm_style_rtl.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_rtl.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_rtl.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_rtl.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_rtl.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_rtl.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_rtl.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_rtl.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_rtl.with_frm_style span.frm-pass-req::before {color:#B94A48;}@media only screen and (max-width: 600px){.frm_style_rtl.with_frm_style .frm_repeat_inline,.frm_style_rtl.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_true-blue.with_frm_style{max-width:80% !important;direction:ltr !important;margin:0 auto;}.frm_style_true-blue.with_frm_style,.frm_style_true-blue.with_frm_style form,.frm_style_true-blue.with_frm_style .frm-show-form div.frm_description p {text-align:left !important;}.frm_inline_form.frm_style_true-blue.with_frm_style form{text-align:center;}.frm_style_true-blue.with_frm_style .frm_form_fields > fieldset{border-width:9px !important;border-style:solid;border-color:#14568a !important;margin:0;padding:10px 25px 5px 25px !important;background-color:#6fa3e7;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_true-blue.with_frm_style legend + h3,.frm_style_true-blue.with_frm_style h3.frm_form_title{font-size:20px !important;color:#fff !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px !important;margin-bottom:10px !important;}.frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0 !important;margin:0 !important;font-size:18px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold !important;color:#fff !important;border:none !important;border-top:2px solid #e8e8e8 !important;background-color:transparent !important}.frm_style_true-blue.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_true-blue.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_true-blue.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_true-blue.with_frm_style .frm_section_heading{margin-top:15px !important;}.frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px !important;}.frm_style_true-blue.with_frm_style .frm_repeat_sec{margin-bottom:20px !important;margin-top:20px !important;}.frm_style_true-blue.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#fff !important;font-weight:bold !important;text-align:left !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_container,.frm_style_true-blue.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_container{font-size:14px !important;}.frm_style_true-blue.with_frm_style .frm_form_field .frm_show_it{font-size:14px !important;font-weight:normal;}.frm_style_true-blue.with_frm_style .frm_icon_font{color:#fff !important;}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e633";}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e632";}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_true-blue.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff !important;vertical-align:middle;}.frm_style_true-blue.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e60e";color:#fff !important;}.frm_style_true-blue.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e60c";color:#fff !important;}.frm_style_true-blue.with_frm_style .form-field{margin-bottom:20px !important;}.frm_style_true-blue.with_frm_style .frm_grid,.frm_style_true-blue.with_frm_style .frm_grid_first,.frm_style_true-blue.with_frm_style .frm_grid_odd {margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style .form-field.frm_section_heading{margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style p.description,.frm_style_true-blue.with_frm_style div.description,.frm_style_true-blue.with_frm_style div.frm_description,.frm_style_true-blue.with_frm_style .frm-show-form > div.frm_description,.frm_style_true-blue.with_frm_style .frm_error{margin:0 !important;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:12px !important;color:#ffffff !important;font-weight:normal !important;text-align:left !important;font-style:normal !important;max-width:100%;}.frm_style_true-blue.with_frm_style .frm-show-form div.frm_description p{font-size:14px !important;color:#ffffff !important;margin-top:10px !important;margin-bottom:25px !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_true-blue.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_true-blue.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.frm_style_true-blue.with_frm_style .frm_pos_right{display:inline !important;width:150px !important;}.frm_style_true-blue.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_true-blue.with_frm_style .frm_pos_none{display:none !important;}.frm_style_true-blue.with_frm_style .frm_scale label{font-weight:normal !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_required{color:#fff !important;font-weight:bold !important;}.frm_style_true-blue.with_frm_style input[type=text],.frm_style_true-blue.with_frm_style input[type=password],.frm_style_true-blue.with_frm_style input[type=email],.frm_style_true-blue.with_frm_style input[type=number],.frm_style_true-blue.with_frm_style input[type=url],.frm_style_true-blue.with_frm_style input[type=tel],.frm_style_true-blue.with_frm_style input[type=search],.frm_style_true-blue.with_frm_style select,.frm_style_true-blue.with_frm_style textarea,.frm_style_true-blue.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:14px;margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style textarea{vertical-align:top;}.frm_style_true-blue.with_frm_style input[type=text],.frm_style_true-blue.with_frm_style input[type=password],.frm_style_true-blue.with_frm_style input[type=email],.frm_style_true-blue.with_frm_style input[type=number],.frm_style_true-blue.with_frm_style input[type=url],.frm_style_true-blue.with_frm_style input[type=tel],.frm_style_true-blue.with_frm_style input[type=phone],.frm_style_true-blue.with_frm_style input[type=search],.frm_style_true-blue.with_frm_style select,.frm_style_true-blue.with_frm_style textarea,.frm_form_fields_style,.frm_style_true-blue.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_true-blue.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single{color:#14568a !important;background-color:#ffffff !important;background-image:none !important;border-color: #093b63 !important;border-width:2px !important;border-style:solid !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;max-width:100%;font-size:14px !important;padding:6px 10px !important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none !important;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset !important;}.frm_style_true-blue.with_frm_style input[type=text],.frm_style_true-blue.with_frm_style input[type=password],.frm_style_true-blue.with_frm_style input[type=email],.frm_style_true-blue.with_frm_style input[type=number],.frm_style_true-blue.with_frm_style input[type=url],.frm_style_true-blue.with_frm_style input[type=tel],.frm_style_true-blue.with_frm_style input[type=file],.frm_style_true-blue.with_frm_style input[type=search],.frm_style_true-blue.with_frm_style select{height:32px !important;line-height:1.3 !important;}.frm_style_true-blue.with_frm_style select[multiple="multiple"]{height:auto !important;}.frm_style_true-blue.with_frm_style input[type=file]{color: #14568a !important;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:14px !important;}.frm_style_true-blue.with_frm_style input[type=file].frm_transparent{color:transparent !important;}.frm_style_true-blue.with_frm_style select{width:100% !important;max-width:100%;}.frm_style_true-blue.with_frm_style .wp-editor-wrap{width:100% !important;max-width:100%;}.frm_style_true-blue.with_frm_style .wp-editor-container textarea{border:none !important;}.frm_style_true-blue.with_frm_style .mceIframeContainer{background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .auto_width input,.frm_style_true-blue.with_frm_style input.auto_width,.frm_style_true-blue.with_frm_style select.auto_width,.frm_style_true-blue.with_frm_style textarea.auto_width{width:auto !important;}.frm_style_true-blue.with_frm_style input[disabled],.frm_style_true-blue.with_frm_style select[disabled],.frm_style_true-blue.with_frm_style textarea[disabled],.frm_style_true-blue.with_frm_style input[readonly],.frm_style_true-blue.with_frm_style select[readonly],.frm_style_true-blue.with_frm_style textarea[readonly]{background-color:#ffffff !important;color:#A1A1A1 !important;border-color:#093b63 !important;}.frm_style_true-blue.with_frm_style input::placeholder,.frm_style_true-blue.with_frm_style textarea::placeholder{color: #A1A1A1 !important;}.frm_style_true-blue.with_frm_style input::-webkit-input-placeholder,.frm_style_true-blue.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1 !important;}.frm_style_true-blue.with_frm_style input::-moz-placeholder,.frm_style_true-blue.with_frm_style textarea::-moz-placeholder{color: #A1A1A1 !important;}.frm_style_true-blue.with_frm_style input:-ms-input-placeholder,frm_style_true-blue.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1 !important;}.frm_style_true-blue.with_frm_style input:-moz-placeholder,.frm_style_true-blue.with_frm_style textarea:-moz-placeholder{color: #A1A1A1 !important;}.frm_style_true-blue.with_frm_style .frm_default,.frm_style_true-blue.with_frm_style input.frm_default,.frm_style_true-blue.with_frm_style textarea.frm_default,.frm_style_true-blue.with_frm_style select.frm_default,.frm_style_true-blue.with_frm_style .placeholder,.frm_style_true-blue.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1 !important;}.frm_style_true-blue.with_frm_style .form-field input:not([type=file]):focus,.frm_style_true-blue.with_frm_style select:focus,.frm_style_true-blue.with_frm_style textarea:focus,.frm_style_true-blue.with_frm_style .frm_focus_field input[type=text],.frm_style_true-blue.with_frm_style .frm_focus_field input[type=password],.frm_style_true-blue.with_frm_style .frm_focus_field input[type=email],.frm_style_true-blue.with_frm_style .frm_focus_field input[type=number],.frm_style_true-blue.with_frm_style .frm_focus_field input[type=url],.frm_style_true-blue.with_frm_style .frm_focus_field input[type=tel],.frm_style_true-blue.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_true-blue.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_true-blue.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff !important;border-color:#093b63 !important;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(9,59,99, 0.6);}.frm_style_true-blue.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_true-blue.with_frm_style input[type=submit],.frm_style_true-blue.with_frm_style .frm_submit input[type=button],.frm_style_true-blue.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;height:auto !important;line-height:normal !important;text-align:center;background:#14568a !important;border-width:2px;border-color: #093b63 !important;border-style:solid;color:#ffffff !important;cursor:pointer;font-weight:normal !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;text-shadow:none;padding:6px 11px !important;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_true-blue.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_true-blue.with_frm_style input[type=submit]:hover,.frm_style_true-blue.with_frm_style .frm_submit input[type=button]:hover,.frm_style_true-blue.with_frm_style .frm_submit button:hover{background: #1a6199 !important;border-color: #093b63 !important;color: #ffffff !important;}.frm_style_true-blue.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_true-blue.with_frm_style input[type=submit]:focus,.frm_style_true-blue.with_frm_style .frm_submit input[type=button]:focus,.frm_style_true-blue.with_frm_style .frm_submit button:focus,.frm_style_true-blue.with_frm_style input[type=submit]:active,.frm_style_true-blue.with_frm_style .frm_submit input[type=button]:active,.frm_style_true-blue.with_frm_style .frm_submit button:active{background: #093b63 !important;border-color: #14568a !important;color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_true-blue.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_true-blue.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_true-blue.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent !important;background: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #ffffff !important;border-right-color: #ffffff !important;}.frm_style_true-blue.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_true-blue.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#fff !important;font-weight:bold !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;visibility:hidden;}.frm_style_true-blue.with_frm_style.frm_inline_form .frm_submit input,.frm_style_true-blue.with_frm_style.frm_inline_form .frm_submit button,.frm_style_true-blue.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_true-blue.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_true-blue.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_true-blue.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#fff !important;font-weight:bold !important;clear:both;}.frm_style_true-blue.with_frm_style .frm_radio{display:block !important;}.frm_style_true-blue.with_frm_style .frm_checkbox{display:block !important;}.frm_style_true-blue.with_frm_style .vertical_radio .frm_checkbox,.frm_style_true-blue.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block !important;}.frm_style_true-blue.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_true-blue.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block !important;}.frm_style_true-blue.with_frm_style .frm_radio label,.frm_style_true-blue.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#ffffff !important;font-weight:normal !important;}.frm_style_true-blue.with_frm_style .frm_radio input[type=radio],.frm_style_true-blue.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px !important;position: static !important;}.frm_style_true-blue.with_frm_style .frm_blank_field input[type=text],.frm_style_true-blue.with_frm_style .frm_blank_field input[type=password],.frm_style_true-blue.with_frm_style .frm_blank_field input[type=url],.frm_style_true-blue.with_frm_style .frm_blank_field input[type=tel],.frm_style_true-blue.with_frm_style .frm_blank_field input[type=number],.frm_style_true-blue.with_frm_style .frm_blank_field input[type=email],.frm_style_true-blue.with_frm_style .frm_blank_field textarea,.frm_style_true-blue.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_true-blue.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_true-blue.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_true-blue.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_true-blue.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_true-blue.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_true-blue.with_frm_style .frm_form_field :invalid{color:#14568a !important;background-color:#ffffff !important;border-color:#B94A48 !important;border-width:2px !important;border-style:solid !important;}.frm_style_true-blue.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_true-blue.with_frm_style .frm_error{font-weight:bold !important;}.frm_style_true-blue.with_frm_style .frm_blank_field label,.frm_style_true-blue.with_frm_style .frm_error{color:#B94A48 !important;}.frm_style_true-blue.with_frm_style .frm_error_style{background-color:#bf4a4a !important;border:1px solid #ff0a05 !important;border-radius:5px !important;color: #fff !important;font-size:14px !important;margin:0;margin-bottom:20px;}.frm_style_true-blue.with_frm_style .frm_message,.frm_success_style{border:1px solid #296aff;background-color:#14568a !important;color:#fff !important;border-radius:5px !important;}.frm_style_true-blue.with_frm_style .frm_message p{color:#fff !important;}.frm_style_true-blue.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px !important;}.frm_style_true-blue.with_frm_style .frm-grid td,.frm-grid th{border-color:#093b63;}.form_results.frm_style_true-blue.with_frm_style{border:2px solid #093b63 !important;}.form_results.frm_style_true-blue.with_frm_style tr td{color: #14568a !important;border-top:2px solid #093b63 !important;}.form_results.frm_style_true-blue.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #093b63 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #093b63 50%, #093b63 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_true-blue.with_frm_style #frm_loading .progress-bar{background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_grid,.frm_style_true-blue.with_frm_style .frm_grid_first,.frm_style_true-blue.with_frm_style .frm_grid_odd{border-color:#093b63;}.frm_style_true-blue.with_frm_style .frm_grid.frm_blank_field,.frm_style_true-blue.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_true-blue.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#bf4a4a !important;border-color:#ff0a05;}.frm_style_true-blue.with_frm_style .frm_grid_first,.frm_style_true-blue.with_frm_style .frm_grid_odd{background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_grid{background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff !important;border-color: #093b63 !important;border-width:2px !important;border-style:solid !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;font-size:14px !important;padding:6px 10px !important;outline:none !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_total input,.frm_style_true-blue.with_frm_style .frm_form_field.frm_total textarea{color: #14568a !important;background-color:transparent !important;border:none !important;display:inline !important;width:auto !important;padding:0 !important;}.frm_style_true-blue.with_frm_style .frm_button{padding:6px 11px !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;font-size:14px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-weight:normal !important;color:#ffffff !important;background: #14568a !important;border-width:2px;border-color: #093b63 !important;height:auto !important;}.frm_style_true-blue.with_frm_style .frm_button .frm_icon_font:before{font-size:14px !important;}.frm_style_true-blue.with_frm_style .frm_dropzone{border-color: #093b63 !important;border-radius:5px !important;color: #14568a !important;background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_true-blue.with_frm_style .frm_dropzone .dz-remove{color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48 !important;color:#14568a !important;background-color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_true-blue.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #14568a !important;}.frm_style_true-blue.with_frm_style input[type=file]::-webkit-file-upload-button{color:#14568a !important;background-color:#ffffff !important;padding:6px 10px !important;border-radius:5px !important;border-color: #093b63 !important;border-width:2px !important;border-style:solid !important;}.frm_style_true-blue.with_frm_style .chosen-container{font-size:14px !important;}.frm_style_true-blue.with_frm_style .chosen-container .chosen-results li,.frm_style_true-blue.with_frm_style .chosen-container .chosen-results li span{color:#14568a !important;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px !important;line-height:32px !important;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single div{top:3px !important;}.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_true-blue.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px !important;}.frm_style_true-blue.with_frm_style .frm_page_bar input,.frm_style_true-blue.with_frm_style .frm_page_bar input:disabled{color: #dfdfdf !important;background-color: #ffffff !important;border-color: #dfdfdf !important;border-width: 2px !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input.frm_page_back{background-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #ffffff !important;border-color: #dfdfdf !important;opacity:1 !important;}.frm_style_true-blue.with_frm_style .frm_current_page .frm_rootline_title{color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_rootline_title,.frm_style_true-blue.with_frm_style .frm_pages_complete,.frm_style_true-blue.with_frm_style .frm_percent_complete{color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input,.frm_style_true-blue.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #dfdfdf !important;border-right-color: #dfdfdf !important;border-left-width: 1px !important;border-right-width: 1px !important;}.frm_style_true-blue.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input.frm_page_back {border-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #14568a !important;border-right-color: #dfdfdf !important;}.frm_style_true-blue.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf !important;border-top-width: 2px !important;top: 20px;}.frm_style_true-blue.with_frm_style .frm_rootline input,.frm_style_true-blue.with_frm_style .frm_rootline input:hover {width: 40px !important;height: 40px !important;border-radius: 40px !important;padding: 0 !important;}.frm_style_true-blue.with_frm_style .frm_rootline input:focus {border-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #004276 !important;background-color: #14568a !important;color: #ffffff !important;}.frm_style_true-blue.with_frm_style .frm_progress_line input,.frm_style_true-blue.with_frm_style .frm_progress_line input:disabled,.frm_style_true-blue.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_true-blue.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_true-blue.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_true-blue.with_frm_style .frm_range_value{font-size:14px;}.frm_style_true-blue.with_frm_style .form-field input[type=range],.frm_style_true-blue.with_frm_style .form-field input[type=range]:focus {padding:0 !important;background:transparent !important;}.frm_style_true-blue.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#093b63 !important;border-radius:5px !important;}.frm_style_true-blue.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(20,86,138,0.6);color:#ffffff !important;background-color: #14568a !important;}.frm_style_true-blue.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(20,86,138,0.6);color:#ffffff !important;background-color: #14568a !important;}.frm_style_true-blue.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(20,86,138,0.6);color:#ffffff !important;background-color: #14568a !important;}.frm_style_true-blue.with_frm_style .frm_switch_opt{font-size:14px !important;font-weight:normal !important;}.frm_style_true-blue.with_frm_style .frm_on_label{color:#14568a !important;}.frm_style_true-blue.with_frm_style .frm_off_label{color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_slider {background-color:#093b63 !important;}.frm_style_true-blue.with_frm_style input:checked + .frm_slider {background-color:#14568a !important;}.frm_style_true-blue.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto !important;}.frm_style_true-blue.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_true-blue.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_true-blue.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block !important;}.frm_style_true-blue.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 !important;margin-top:8px;}.frm_style_true-blue.with_frm_style span.frm-pass-verified::before {color:#fff !important;}.frm_style_true-blue.with_frm_style span.frm-pass-req::before {color:#fff !important;}@media only screen and (max-width: 600px){.frm_style_true-blue.with_frm_style .frm_repeat_inline,.frm_style_true-blue.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_ajax_loading{visibility:hidden;width:auto;}.frm_form_submit_style{height:auto;}a.frm_save_draft{cursor:pointer;}.horizontal_radio .frm_radio{margin:0 5px 0 0;}.horizontal_radio .frm_checkbox{margin:0;margin-right:5px;}.vertical_radio .frm_checkbox,.vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.horizontal_radio .frm_checkbox,.horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.with_frm_style .frm_checkbox label,.with_frm_style .frm_radio label{display: inline;white-space:normal;}.with_frm_style .vertical_radio .frm_checkbox label,.with_frm_style .vertical_radio .frm_radio label{display: block;padding-left: 20px;text-indent: -20px;}.frm_file_container .frm_file_link,.with_frm_style .frm_radio label .frm_file_container,.with_frm_style .frm_checkbox label .frm_file_container{display:inline-block;margin:5px;vertical-align:middle;}.with_frm_style .frm_radio input[type=radio]{-webkit-appearance:radio;border-radius:50%;}.with_frm_style .frm_checkbox input[type=checkbox]{-webkit-appearance:checkbox;border-radius:initial;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{flex: none;display:inline-block;margin:4px 5px 0 0;width:auto;border:none;vertical-align:baseline;position: initial; }.with_frm_style :invalid,.with_frm_style :-moz-submit-invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:15px;}.with_frm_style .frm_message p{margin-bottom:5px;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-top:none;border-left:none;border-right:none;}table.form_results.with_frm_style{border:1px solid #ccc;}table.form_results.with_frm_style tr td{text-align:left;color:#555555;padding:7px 9px;border-top:1px solid #cccccc;}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd{background-color:#ffffff;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar{background-color:#ffffff;box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;float:left;height:100%;line-height:20px;text-align:center;transition:width 0.6s ease 0s;width:100%;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(../images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}select.frm_loading_lookup{background-image: url(../images/ajax_loader.gif) !important;background-position: 10px;background-repeat: no-repeat;color: transparent !important;}.frm_screen_reader {border: 0;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;word-wrap: normal !important; }.frm_screen_reader.frm_hidden{display:initial;}.frm_clear_none{clear:none;}.frm_clear{clear:both;}.frm_form_field.frm_alignright{float:right !important;}.with_frm_style .frm_form_field{clear:both;}.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container{display:grid;grid-template-columns: repeat(12, 6.5%);grid-auto-rows: max-content;grid-gap: 0 2%;}.frm_combo_inputs_container > *,.frm_grid_container > *,.frm_section_heading > *,.frm_fields_container .frm_form_field,.frm_fields_container > *{grid-column: span 12 / span 12;}.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;grid-column: span 2 / span 2;}.frm_form_field.frm_three_fifths, .frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{grid-column:span 6 / span 6;}.frm_form_field.frm_two_fifths, .frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{grid-column:span 4 / span 4;}.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{grid-column: span 8/span 8;}.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{grid-column: span 3/span 3;}.frm_form_field.frm_four_fifths, .frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm_three_fourths{grid-column: span 9/span 9;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{grid-column: span 2/span 2;}.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{grid-column: span 2/span 2;}.frm_form_field.frm10,.frm_submit.frm10{grid-column: span 10/span 10;}.frm_form_field.frm1,.frm_submit.frm1,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{grid-column: span 1/span 1;}.frm_form_field.frm5,.frm_submit.frm5{grid-column: span 5/span 5;}.frm_form_field.frm7,.frm_submit.frm7{grid-column: span 7/span 7;}.frm_form_field.frm11,.frm_submit.frm11{grid-column: span 11/span 11;}.frm12,.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type='checkbox']):not([type='radio']):not([type='button']),.frm_full select,.frm_full textarea{width:100% !important;grid-column: span 12/span 12;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{grid-column-start:1;}.frm_form_field.frm_last,.frm_form_field.frm_alignright{grid-column-end:-1;grid-row-start: span 100;justify-content: end;}.with_frm_style.frm_rtl .frm_form_fields .star-rating{float:right;}.with_frm_style.frm_rtl .frm_grid .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_first .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_odd .frm_primary_label,.with_frm_style.frm_rtl .frm_grid .frm_radio,.with_frm_style.frm_rtl .frm_grid_first .frm_radio,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio,.with_frm_style.frm_rtl .frm_grid .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox{float:right !important;margin-right:0 !important;}.with_frm_style.frm_rtl .frm_grid_first .frm_radio label input,.with_frm_style.frm_rtl .frm_grid .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox label input{float:left;}.with_frm_style.frm_rtl .frm_catlevel_2,.with_frm_style.frm_rtl .frm_catlevel_3,.with_frm_style.frm_rtl .frm_catlevel_4,.with_frm_style.frm_rtl .frm_catlevel_5{margin-right:18px;}.with_frm_style.frm_rtl div > .frm_time_select{margin-right:5px;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display: grid;grid-template-columns: 25% auto;width:100%;grid-auto-rows: min-content;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_form_field.frm_inline_container{grid-template-columns: repeat(2, minmax(auto, max-content) );}.frm_form_field.frm_inline_container label.frm_primary_label,.frm_form_field.frm_right_container label.frm_primary_label,.frm_form_field.frm_left_container label.frm_primary_label{margin-right:10px;grid-row:span 2/span 2;padding-top:4px;}.frm_form_field.frm_left_container label.frm_primary_label{grid-column:1;grid-row:span 2/span 2; }.frm_form_field.frm_right_container label.frm_primary_label{grid-column:2;grid-row:1;margin-right:0;margin-left:10px;}.frm_form_field.frm_inline_container .frm_description,.frm_form_field.frm_left_container .frm_description{grid-column:2;}.frm_form_field.frm_right_container .frm_description{grid-column:1;}.frm_conf_field.frm_left_container{grid-template-columns: 67%;}.frm_conf_field.frm_left_container .frm_description{grid-column:1;}.frm-fade-in {-webkit-animation-name: fadeIn;animation-name: fadeIn;-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}@keyframes spin {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}@keyframes fadeIn { 0% {opacity: 0;} 100% {opacity: 1;}}@media only screen and (max-width: 700px) {.frm_form_fields .frm_fields_container{grid-gap: 0 2%;}}@media only screen and (max-width: 600px) {.frm_section_heading > .frm_form_field,.frm_fields_container > .frm_submit,.frm_grid_container > .frm_form_field,.frm_fields_container > .frm_form_field{grid-column: 1 / span 12 !important;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display:block;}}.frm_conf_field.frm_left_container label.frm_primary_label{display:none;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd{background-color:#ffffff;}.frm_grid{background-color:#ffffff;}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{visibility:hidden;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 label.frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 label.frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 label.frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 label.frm_primary_label,.frm_grid_7 label.frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 label.frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 label.frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 label.frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 label.frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 label.frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_left_container .frm_opt_container{padding-top:4px;}.with_frm_style .frm_inline_container.frm_grid_first label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display: grid;grid-template-columns: repeat(2, 1fr);grid-auto-rows: max-content;grid-gap: 2.5%;}.frm_form_field.frm_three_col .frm_opt_container{grid-template-columns: repeat(3, 1fr);}.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(4, 1fr);}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{grid-column-end: span 1;}.frm_form_field .frm_checkbox,.frm_form_field .frm_checkbox + .frm_checkbox,.frm_form_field .frm_radio,.frm_form_field .frm_radio + .frm_radio{margin-top: 0;margin-bottom: 0;}.frm_form_field.frm_scroll_box .frm_opt_container{height:100px;overflow:auto;}.frm_form_field.frm_html_scroll_box{height:100px;overflow:auto;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;-moz-box-shadow:none;-webkit-box-shadow:none;width:auto !important;box-shadow:none !important;display:inline;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.frm_form_field.frm_label_justify label.frm_primary_label{text-align:justify !important;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:block;}@font-face {font-family:'s11-fp';src:url('../fonts/s11-fp.eot?v=3');src:local('☺'), url('../fonts/s11-fp.woff?v=3') format('woff'), url('../fonts/s11-fp.ttf?v=3') format('truetype'), url('../fonts/s11-fp.svg?v=3') format('svg');font-weight:normal;font-style:normal;}.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;display:inline-block;}i.frm_icon_font{font-style:normal;}.frm_icon_font:before,select.frm_icon_font{font-family: 's11-fp' !important;speak: none;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;-moz-transition: all .1s ease-in-out;-webkit-transition: all .1s ease-in-out;transition: all .1s ease-in-out;text-align:center;width: 18px;height: 18px;font-size: 18px;line-height: 1.4;vertical-align: top;}.frm_icon_font,a.frm_icon_font,.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;box-shadow:none;}.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frm_duplicate_icon:active,.frm_move_icon:active,.frm_delete_icon:active{outline:none;}.frm_trigger .frm_icon_font{padding:0 5px;}.ab-icon.frm_dashicon_font:before{content: "\f324";}.frm_logo_icon:before {content: "\e601";}.frm_required_icon:before {content: "\e612";}.frm_delete_icon:before {content: "\e610" !important;}.frm_move_icon:before {content: "\e61a";}.frm_clear_icon:before {content: "\e60a";}.frm_noclear_icon:before {content: "\e60b";}.frm_duplicate_icon:before {content: "\e61b";}.frm_new_icon:before {content: "\e614";}.frm_paste_icon:before {content: "\e901";}.frm_tooltip_icon:before {content: "\e611";}.frm_forbid_icon:before {content: "\e636";}.frm_check_icon:before {content: "\e605";}.frm_check1_icon:before {content: "\e606";}.frm_plus_icon:before {content: "\e62f";}.frm_plus1_icon:before {content: "\e602";}.frm_plus2_icon:before {content: "\e603";}.frm_plus3_icon:before {content: "\e632";}.frm_plus4_icon:before {content: "\e60f";}.frm_minus_icon:before {content: "\e62e";}.frm_minus1_icon:before {content: "\e600";}.frm_minus2_icon:before {content: "\e604";}.frm_minus3_icon:before {content: "\e633";}.frm_minus4_icon:before {content: "\e613";}.frm_cancel_icon:before {content: "\e607";}.frm_cancel1_icon:before {content: "\e608";}.frm_arrowup_icon:before {content: "\e60d";}.frm_arrowup1_icon:before {content: "\e60e";}.frm_arrowup2_icon:before {content: "\e630";}.frm_arrowup3_icon:before {content: "\e62b";}.frm_arrowup4_icon:before {content: "\e62c";}.frm_arrowup5_icon:before {content: "\e635";}.frm_arrowup6_icon:before {content: "\e62d";}.frm_arrowdown_icon:before {content: "\e609";}.frm_arrowdown1_icon:before {content: "\e60c";}.frm_arrowdown2_icon:before {content: "\e631";}.frm_arrowdown3_icon:before {content: "\e628";}.frm_arrowdown4_icon:before {content: "\e629";}.frm_arrowdown5_icon:before {content: "\e634";}.frm_arrowdown6_icon:before {content: "\e62a";}.frm_download_icon:before {content: "\e615";}.frm_upload_icon:before {content: "\e616";}.frm_menu_icon:before {content: "\e618";}.frm_twitter_icon:before {content: "\e619";}.frm_sms_icon:before {content: "\e61c";}.frm_pencil_icon:before {content: "\e61d";}.frm_pencil1_icon:before {content: "\e61e";}.frm_paypal_icon:before {content: "\e61f";}.frm_twilio_icon:before {content: "\e620";}.frm_googleplus_icon:before {content: "\e621";}.frm_google-plus-g_icon:before {content: "\f0d5";}.frm_mailchimp_icon:before {content: "\e622";}.frm_pdf_icon:before {content: "\e623";}.frm_highrise_icon:before {content: "\e617";}.frm_feed_icon:before {content: "\e624";}.frm_facebook_icon:before {content: "\e625";}.frm_email_icon:before {content: "\e626";}.frm_aweber_icon:before {content: "\e627";}.frm_register_icon:before {content: "\e637";}.frm_authorize_icon:before {content: "\e900";}.frm_stripe_icon:before {content: "\e902";}.frm_woocommerce_icon:before {content: "\e903";}.frm_wordpress_icon:before {content: "\f19a";}.frm_paragraph_icon:before {content: "\f1dd";}.frm_check-square_icon:before {content: "\f14a";}.frm_caret-square-down_icon:before {content: "\f150";}.frm_scrubber_icon:before {content: "\f2f8";}.frm_radio-checked_icon:before {content: "\ea54";}.frm_location_icon:before {content: "\e947";}.frm_toggle-on_icon:before {content: "\f205";}.frm_toggle-off_icon:before {content: "\f204";}.frm_shield-check_icon:before {content: "\f2f7";}.frm_clock-o_icon:before {content: "\f017";}.frm_link_icon:before {content: "\f0c1";}.frm_link2_icon:before {content: "\e157";}.frm_envelope_icon:before {content: "\f0e0";}.frm_envelope-o_icon:before {content: "\f003";}.frm_phone_icon:before {content: "\e942";}.frm_calendar_icon:before {content: "\f073";}.frm_upload2_icon:before {content: "\f093";}.frm_embed2_icon:before {content: "\ea80";}.frm_user_icon:before {content: "\f007";}.frm_price-tags_icon:before {content: "\e936";}.frm_search_icon:before {content: "\f002";}.frm_sitemap_icon:before {content: "\f0e8";}.frm_file-text_icon:before {content: "\f15c";}.frm_check-circle-o_icon:before {content: "\f05d";}.frm_option-icon3_icon:before {content: "\e904";}.frm-option-icon:before {content: "\e905";}.frm_more_horiz_icon:before {content: "\e5d3";}.frm_more_vert_icon:before {content: "\e5d4";}.frm_ellipsis-h_icon:before {content: "\f141";}.frm_ellipsis-v_icon:before {content: "\f142";}.frm_calculator_icon:before {content: "\f1ec";}.frm_key_icon:before {content: "\f084";}.frm_key2_icon:before {content: "\f085";}.frm_upload3_icon:before {content: "\e9c8";}.frm_download2_icon:before {content: "\f019";}.frm_list-alt_icon:before {content: "\f022";}.frm_eye_icon:before {content: "\f06e";}.frm_eye-slash_icon:before {content: "\f070";}.frm_view_agenda_icon:before {content: "\e8e9";}.frm_view_day_icon:before {content: "\e8ed";}.frm_h3_icon:before {content: "\f315";}.frm_repeat_icon:before {content: "\f363";}.frm_sliders_icon:before {content: "\f1de";}.frm_code-commit_icon:before {content: "\f386";}.frm_star-o_icon:before {content: "\f006";}.frm_star_icon:before {content: "\f005";}.frm_star-half_icon:before {content: "\f089";}.frm_linear_scale_icon:before {content: "\e260";}.frm_pause_icon:before {content: "\ea16";}.frm_pause-circle_icon:before {content: "\f28b";}.frm_view_comfy_icon:before {content: "\e42a";}.frm_sort_icon:before {content: "\f0dc";}.frm_unsorted_icon:before {content: "\f0dc";}.frm_pie-chart_icon:before {content: "\e99a";}.frm_area-chart_icon:before {content: "\f1fe";}.frm_stats-dots_icon:before {content: "\e99b";}.frm_stats-bars_icon:before {content: "\e99c";}.frm_stats-bars2_icon:before {content: "\e99d";}.frm_credit-card-alt_icon:before {content: "\f283";}.frm_cc-visa_icon:before {content: "\f1f0";}.frm_cc-mastercard_icon:before {content: "\f1f1";}.frm_cc-discover_icon:before {content: "\f1f2";}.frm_cc-amex_icon:before {content: "\f1f3";}.frm_cc-paypal_icon:before {content: "\f1f4";}.frm_cc-stripe_icon:before {content: "\f1f5";}.frm_trash-alt_icon:before {content: "\f2ed";}.frm_view_quilt_icon:before {content: "\e8f1";}.frm_line_style_icon:before {content: "\e919";}.frm_page-break_icon:before {content: "\ea68";}.frm_asterisk_icon:before {content: "\f069";}.frm_arrows_icon:before {content: "\f047";}.frm_clone_icon:before {content: "\f24d";}.frm_copy_icon:before {content: "\f0c5";}.frm_file-code_icon:before {content: "\f1c9";}.frm_file-plus_icon:before {content: "\f319";}.frm_file_icon:before {content: "\f15b";}.frm_info-circle_icon:before {content: "\f05a";}.frm_info-square_icon:before {content: "\f30f";}.frm_star-empty_icon:before {content: "\e9d7";}.frm_star-half2_icon:before {content: "\e9d8";}.frm_star-full_icon:before {content: "\e9d9";}.js .frm_logic_form:not(.frm_no_hide) {display:none;}.with_frm_style .frm_conf_field.frm_half label.frm_conf_label {overflow: hidden;white-space: nowrap;}.with_frm_style .frm_time_wrap{white-space:nowrap;}.with_frm_style select.frm_time_select{white-space:pre;display:inline;}.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.with_frm_style .frm_repeat_inline{clear:both;}.frm_invisible_section .frm_form_field,.frm_invisible_section{display:none !important;visibility:hidden !important;height:0;margin:0;}.frm_form_field .frm_repeat_sec .frm_add_form_row,.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row.frm_hide_add_button,.frm_form_field div.frm_repeat_grid .frm_add_form_row.frm_hide_add_button,.frm_form_field div.frm_repeat_inline .frm_add_form_row.frm_hide_add_button {-moz-transition: opacity .15s ease-in-out;-webkit-transition: opacity .15s ease-in-out;transition: opacity .15s ease-in-out;pointer-events: none;}.frm_form_field .frm_repeat_sec .frm_add_form_row,.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row.frm_hide_add_button {display: none;}.frm_form_field div.frm_repeat_grid .frm_add_form_row.frm_hide_add_button,.frm_form_field div.frm_repeat_inline .frm_add_form_row.frm_hide_add_button {visibility: hidden;}.frm_form_field div.frm_repeat_grid .frm_add_form_row,.frm_form_field div.frm_repeat_inline .frm_add_form_row,.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row {display: inline-block;visibility: visible;pointer-events: auto;}.frm_repeat_inline .frm_repeat_buttons a.frm_icon_font{vertical-align: sub;}.frm_repeat_inline .frm_repeat_buttons a.frm_icon_font:before{vertical-align: text-top;}.frm_repeat_grid .frm_button,.frm_repeat_inline .frm_button,.frm_repeat_sec .frm_button{display: inline-block;line-height:1.3;}.frm_repeat_sec .frm_button .frm_icon_font:before,.frm_repeat_grid .frm_button .frm_icon_font:before,.frm_repeat_inline .frm_button .frm_icon_font:before{line-height:1.3;}.frm_form_field .frm_repeat_grid .frm_form_field label.frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field label.frm_primary_label{display:inherit !important;}#ui-datepicker-div{display:none;z-index:999999 !important;}.ui-datepicker .ui-datepicker-title select.ui-datepicker-month,.ui-datepicker .ui-datepicker-title select.ui-datepicker-year {width: 33%;background-color:#fff;float:none;}.ui-datepicker select.ui-datepicker-month{margin-right: 3px;}.ui-datepicker-month, .ui-datepicker-year{max-width:100%;max-height:2em;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.ui-datepicker .ui-widget-header,.ui-datepicker .ui-datepicker-header {background: #008ec2 !important;color: #ffffff !important;}.ui-datepicker td.ui-datepicker-today{background: rgba(0,92,144,0.15) !important;}.ui-datepicker td.ui-datepicker-current-day,.ui-datepicker td .ui-state-hover,.ui-datepicker thead {background: #005c90 !important;color: #ffffff !important;}.ui-datepicker td.ui-datepicker-current-day .ui-state-default{color: #ffffff !important;}.with_frm_style .frm_scale{margin-right:10px;text-align:center;float:left;}.with_frm_style .frm_scale input{display:block;margin:0;}.frm-star-group input {display: none !important;}.frm-star-group .star-rating,.frm-star-group input + label {float:left;width:20px;height:20px;font-size:20px;line-height:1.4em;cursor:pointer;display:block;background:transparent;overflow:hidden !important;clear:none;font-style:normal;}.frm-star-group input + label:before,.frm-star-group .star-rating:before{font-family:'s11-fp';content:'\e9d7';color:#F0AD4E;display: inline-block;}.frm-star-group input[type=radio]:checked + label:before,.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before{color:#F0AD4E;}.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before,.frm-star-group input + label:hover:before,.frm-star-group:hover input + label:hover:before,.frm-star-group .star-rating-on:before,.frm-star-group .star-rating-hover:before{content:'\e9d9';color:#F0AD4E;}.frm-star-group .frm_half_star:before{content:'\e9d8';}.frm-star-group .star-rating-readonly{cursor:default !important;}.with_frm_style .frm_other_input.frm_other_full{margin-top:10px;}.frm_left_container .frm_other_input{grid-column:2;}.frm_inline_container.frm_other_container .frm_other_input,.frm_left_container.frm_other_container .frm_other_input{margin-left:5px;}.frm_right_container.frm_other_container .frm_other_input{margin-right:5px;}.frm_inline_container.frm_other_container select ~ .frm_other_input,.frm_right_container.frm_other_container select ~ .frm_other_input,.frm_left_container.frm_other_container select ~ .frm_other_input{margin:0;}.frm_pagination_cont ul.frm_pagination{display:inline-block;list-style:none;margin-left:0 !important;}.frm_pagination_cont ul.frm_pagination > li{display:inline;list-style:none;margin:2px;background-image:none;}ul.frm_pagination > li.active a{text-decoration:none;}.frm_pagination_cont ul.frm_pagination > li:first-child{margin-left:0;}.archive-pagination.frm_pagination_cont ul.frm_pagination > li{margin:0;}.frmcal{padding-top:30px;}.frmcal-title{font-size:116%;}.frmcal table.frmcal-calendar{border-collapse:collapse;margin-top:20px;color:#555555;}.frmcal table.frmcal-calendar,.frmcal table.frmcal-calendar tbody tr td{border:1px solid #cccccc;}.frmcal table.frmcal-calendar,.frmcal,.frmcal-header{width:100%;}.frmcal-header{text-align:center;}.frmcal-prev{margin-right:10px;}.frmcal-prev,.frmcal-dropdown{float:left;}.frmcal-dropdown{margin-left:5px;}.frmcal-next{float:right;}.frmcal table.frmcal-calendar thead tr th{text-align:center;padding:2px 4px;}.frmcal table.frmcal-calendar tbody tr td{height:110px;width:14.28%;vertical-align:top;padding:0 !important;color:#555555;font-size:12px;}table.frmcal-calendar .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #cccccc;-webkit-box-shadow:0 2px 5px #cccccc;box-shadow:0 2px 5px #cccccc;}table.frmcal-calendar .frmcal-today .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #66afe9;-webkit-box-shadow:0 2px 5px #66afe9;box-shadow:0 2px 5px #66afe9;}.frmcal_day_name,.frmcal_num{display:inline;}.frmcal-content{padding:2px 4px;}.frm_switch_opt {padding:0 8px 0 0;white-space:normal;display:inline;vertical-align: middle;}.frm_on_label{color: #008ec2;padding:0 0 0 8px;}.frm_switch {position: relative;display: inline-block;width: 40px;height: 25px;vertical-align: middle;}.frm_switch input {display:none !important;}.frm_slider {position: absolute;cursor: pointer;top: 0;left: 0;right: 0;bottom: 0;background-color: #ccc;transition: .4s;border-radius: 30px;}.frm_slider:before {border-radius: 50%;position: absolute;content: "";height: 23px;width: 23px;left: 1px;bottom: 1px;background-color: white;transition: .4s;box-shadow:0 2px 5px #999;}input:checked + .frm_slider {background-color: #008ec2;}input:focus + .frm_slider {box-shadow: 0 0 1px #008ec2;}input:checked + .frm_slider:before {transform: translateX(15px);}.with_frm_style .frm_range_value{display:inline-block;}.with_frm_style input[type=range] {-webkit-appearance: none;box-shadow:none !important;border:none !important;cursor: pointer;padding:0 ;background:transparent !important;display: block;width: 100%;margin: 7px 0 15px;font-size:14px;}.with_frm_style input[type=range]:active,.with_frm_style input[type=range]:focus {outline: none;box-shadow:none !important;background:transparent !important;}.with_frm_style .frm_range_container{text-align:center;}.with_frm_style input[type=range]::-webkit-slider-runnable-track {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-moz-range-track {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;border-color: transparent;border-width: 39px 0;color: transparent;}.with_frm_style input[type=range]::-ms-fill-lower {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-ms-fill-upper {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-webkit-slider-thumb {-webkit-appearance: none;-webkit-border-radius: 20px;height: 2em;width: 2em;border-radius: 20px;border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;cursor: pointer;margin-top: -.9em;}.with_frm_style input[type=range]::-moz-range-thumb {height: 2em;width: 2em;border-radius: 20px;border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;cursor: pointer;-moz-border-radius: 20px;}.with_frm_style input[type=range]::-ms-thumb {height: 2em;width: 2em;border-radius: 20px;border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;cursor: pointer;}@media screen and (max-width: 768px) {.frm-pass-req, .frm-pass-verified {width: 50% !important;white-space: nowrap;}}.frm-pass-req, .frm-pass-verified {float: left;width: 20%;line-height: 20px;font-size: 12px;padding-top: 4px;min-width: 175px;}.frm-pass-req:before, .frm-pass-verified:before {padding-right: 4px;font-size: 12px !important;vertical-align: middle !important;}span.frm-pass-verified::before {content: '\e606';}span.frm-pass-req::before {content: '\e608';}div.frm-password-strength {width: 100%;float: left;}.with_frm_style .chosen-container{font-size:14px;position:relative;display:inline-block;zoom:1;vertical-align:middle;width:100% !important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.with_frm_style .chosen-container * { -webkit-box-sizing: border-box; box-sizing: border-box;}.with_frm_style .chosen-container .chosen-drop{background:#fff;border:1px solid #aaa;border-top:0;position:absolute;top:100%;box-shadow:0 4px 5px rgba(0,0,0,.15);z-index:1010;width:100%;display: none;}.with_frm_style .chosen-container.chosen-with-drop .chosen-drop{display: block;}.with_frm_style .chosen-container a{cursor:pointer;}.with_frm_style .chosen-container .search-choice .group-name,.with_frm_style .chosen-container .chosen-single .group-name {margin-right: 4px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-weight: normal;color: #999999;}.with_frm_style .chosen-container .search-choice .group-name:after,.with_frm_style .chosen-container .chosen-single .group-name:after {content: ":";padding-left: 2px;vertical-align: top;}.with_frm_style .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;text-decoration:none;white-space:nowrap;line-height:24px;}.with_frm_style .chosen-container-single .chosen-single input[type="text"] {cursor: pointer;opacity: 0;position: absolute;}.with_frm_style .chosen-container-single .chosen-default {color: #999;}.with_frm_style .chosen-container-single .chosen-single span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.with_frm_style .chosen-container-single .chosen-single-with-deselect span{margin-right:38px;}.with_frm_style .chosen-container-single .chosen-single abbr{display:block;position:absolute;right:26px;top:6px;width:12px;height:12px;font-size:1px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') -42px 1px no-repeat;}.with_frm_style .chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single .chosen-single div{position:absolute;right:0;top:0;display:block;height:100%;width:18px;}.with_frm_style .chosen-container-single .chosen-single div b{background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat 0 2px;display:block;width:100%;height:100%;}.with_frm_style .chosen-container-single .chosen-search{padding:3px 4px;position:relative;margin:0;white-space:nowrap;z-index:1010;}.with_frm_style .chosen-container-single .chosen-search input[type="text"]{width:100% !important;max-width:100% !important;height:auto;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box;}.with_frm_style .chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;clip: rect(0, 0, 0, 0);}.with_frm_style .chosen-container .chosen-results{cursor:text;overflow-x:hidden;overflow-y:auto;position:relative;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch;}.with_frm_style .chosen-container .chosen-results li:before{background:none;}.with_frm_style .chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none;}.with_frm_style .chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer;}.with_frm_style .chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container .chosen-results li.highlighted{background-color: #3875d7;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);color: #fff;}.with_frm_style .chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4;}.with_frm_style .chosen-container .chosen-results li.group-result{display:list-item;font-weight:bold;cursor:default;}.with_frm_style .chosen-container .chosen-results li.group-option{padding-left:15px;}.with_frm_style .chosen-container .chosen-results li em{font-style:normal;text-decoration:underline;}.with_frm_style .chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto;border: 1px solid #aaa;background-color: #fff;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));background-image: linear-gradient(#eee 1%, #fff 15%);cursor:text;}.with_frm_style .chosen-container-multi .chosen-choices li{float:left;list-style:none;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{margin:1px 0;padding:0 !important;height:25px;outline:0;border:0 !important;background:transparent !important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;width: 25px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:1px 5px 1px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);color:#333;line-height:13px;cursor:default;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice span {word-wrap: break-word;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') -42px 1px no-repeat;font-size:1px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);color:#666;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-results{margin:0;padding:0;}.with_frm_style .chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container-single.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;border-bottom-right-radius:0;border-bottom-left-radius:0;box-shadow:0 1px 0 #fff inset;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px;}.with_frm_style .chosen-container-active .chosen-choices {border: 1px solid #5897fb;-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#111 !important;}.with_frm_style .chosen-disabled{opacity:0.5 !important;cursor:default;}.with_frm_style .chosen-disabled .chosen-single{cursor:default;}.with_frm_style .chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default;}.with_frm_style .chosen-rtl{text-align:right;}.with_frm_style .chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0;}.with_frm_style .chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl;}.with_frm_style .chosen-rtl .chosen-single-with-deselect span{margin-left:38px;}.with_frm_style .chosen-rtl .chosen-single div{right:auto;left:3px;}.with_frm_style .chosen-rtl .chosen-single abbr{right:auto;left:26px;}.with_frm_style .chosen-rtl .chosen-choices li{float:right;}.with_frm_style .chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice{margin:1px 5px 1px 0;padding:3px 5px 3px 19px;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0;}.with_frm_style .chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0;}.with_frm_style .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none;}.with_frm_style .chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat -30px -20px;direction:rtl;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px;}.with_frm_style .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px;}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi){.with_frm_style .chosen-rtl .chosen-search input[type="text"],.with_frm_style .chosen-container-single .chosen-single abbr,.with_frm_style .chosen-container-single .chosen-single div b,.with_frm_style .chosen-container-single .chosen-search input[type="text"],.with_frm_style .chosen-container-multi .chosen-choices .search-choice .search-choice-close,.with_frm_style .chosen-container .chosen-results-scroll-down span,.with_frm_style .chosen-container .chosen-results-scroll-up span{background-image:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite2x.png') !important;background-size:52px 37px !important;background-repeat:no-repeat !important;}}@-webkit-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-moz-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-webkit-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@-moz-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}.frm_dropzone, .frm_dropzone * {box-sizing: border-box;}.frm_dropzone.dz-clickable {min-height: 150px;margin-top:5px;line-height:1.42857143;}.frm_dropzone.dz-clickable * {cursor: default;}.frm_dropzone.dz-clickable.frm_single_upload{max-width: 200px;}.frm_dropzone.dz-clickable.frm_single_upload.dz-started {max-width: 300px;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: .5em 0 1em;}.frm_dropzone .dz-message{border: 2px dashed #dfdfdf;background:#ffffff;padding: 20px;border-radius:5px;cursor: pointer;display:none;font-size:20px;text-align: center;margin: .5em 0 1em;}.frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: 0 0 .5em 0;}.frm_dropzone.frm_single_upload.dz-started .dz-message{display: none;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone .frm_upload_icon{display:block;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone.dz-clickable .dz-message * {cursor: pointer;}#frm_form_editor_container .frm_dropzone.dz-clickable,#frm_form_editor_container .frm_dropzone.dz-clickable *{cursor: default;}.frm_dropzone.dz-drag-hover .dz-message {opacity: 0.5;}.frm_dropzone .frm_upload_icon:before{font-size:40px;}.frm_dropzone .frm_small_text {font-size:14px;}.frm_dropzone.dz-drag-hover {border-style: solid;}.frm_dropzone .dz-preview {padding: 15px 0;border-bottom: 1px solid #dfdfdf;}.frm_dropzone .dz-preview:last-child {border-bottom: none;}.frm_dropzone .dz-preview:hover {z-index: 1000;}.frm_dropzone .dz-preview.dz-file-preview .dz-details {opacity: 1;}.frm_dropzone .dz-preview.dz-image-preview .dz-details {-webkit-transition: opacity 0.2s linear;-moz-transition: opacity 0.2s linear;-ms-transition: opacity 0.2s linear;-o-transition: opacity 0.2s linear;transition: opacity 0.2s linear;}.frm_dropzone .dz-preview .dz-remove {cursor: pointer;border: none;float: right;}.frm_dropzone .dz-preview:hover .dz-details {opacity: 1;}.frm_dropzone .dz-preview .dz-details {font-size: 14px;margin: 5px 0 10px;}.frm_dropzone .dz-preview .dz-details .dz-size,.frm_dropzone .dz-preview .dz-details .dz-filename {display: inline-block;overflow: hidden;white-space: nowrap;}.frm_dropzone .dz-preview .dz-details .dz-size strong {font-weight: normal;}.frm_dropzone .dz-preview .dz-details .dz-filename {max-width: 75%;text-overflow: ellipsis;padding-right: 5px;}.frm_dropzone .dz-preview .dz-details .dz-filename a{cursor:pointer;}.frm_dropzone .dz-preview .dz-column {float: right;width: 68%;}.frm_dropzone .dz-preview .dz-image {overflow: hidden;width: 30%;height: 60px;display: block;float: left;margin-right: 2%;}.frm_dropzone .dz-preview .dz-image img {display: block;margin:0 auto;max-height: 60px;}.frm_dropzone .dz-preview.dz-success .dz-success-mark {-webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);}.frm_dropzone .dz-preview.dz-processing .dz-progress {-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;-ms-transition: all 0.2s linear;-o-transition: all 0.2s linear;transition: all 0.2s linear;}.frm_dropzone .dz-preview .dz-progress {pointer-events: none;position: relative;height: 10px;width: 100%;background: rgba(221, 221, 221, 1);-webkit-transform: scale(1);border-radius: 8px;overflow: hidden;}.frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_dropzone .dz-preview.dz-complete .dz-progress{background: #333;background: linear-gradient(to bottom, #666, #444);}.frm_dropzone .dz-preview .dz-progress .dz-upload {position: absolute;top: 0;left: 0;bottom: 0;width: 0;-webkit-transition: width 300ms ease-in-out;-moz-transition: width 300ms ease-in-out;-ms-transition: width 300ms ease-in-out;-o-transition: width 300ms ease-in-out;transition: width 300ms ease-in-out;}.frm_dropzone .dz-preview.dz-error .dz-error-message {display: block;opacity: 1;pointer-events: auto;}.frm_dropzone .dz-preview .dz-error-message {pointer-events: none;display: none;opacity: 0;-webkit-transition: opacity 0.3s ease;-moz-transition: opacity 0.3s ease;-ms-transition: opacity 0.3s ease;-o-transition: opacity 0.3s ease;transition: opacity 0.3s ease;color: #B94A48;padding: 0.5em;}.frm_dropzone .fallback input[type=file]{display:block;}.frm_compact_text{display:none;}.frm_compact .frm_dropzone.dz-clickable{min-height:60px;padding:0;border:none;background-color:transparent;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_compact .frm_compact_text{display:inline;}.frm_compact .frm_dropzone.frm_single_upload.dz-started .dz-message,.frm_compact .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_compact .frm_dropzone.dz-clickable .dz-message{font-size:14px;border:1px solid #dfdfdf;background:#fff;display: inline-block;border-radius: 4px;padding: 6px 11px;box-sizing: border-box;box-shadow: 0 1px 1px #eeeeee;vertical-align: middle;margin: 0 0 1em;}.frm_compact .frm_dropzone .frm_upload_icon:before{font-size:22px;padding-right:7px;vertical-align: middle;}.frm_compact .frm_dropzone .frm_upload_icon{display:inline;}.frm_compact .frm_dropzone .dz-preview{min-height:20px;max-width:200px;margin: 0 5px;padding: 0;display: inline-block;border-bottom: none;}.frm_compact .frm_dropzone .dz-preview.frm_clearfix:after {content:'';}.frm_compact .frm_dropzone .frm_upload_text,.frm_compact .frm_dropzone .frm_small_text,.frm_compact .frm_dropzone .dz-preview .dz-image,.frm_compact .frm_dropzone .dz-preview .dz-details .dz-size{display:none;}.frm_compact .frm_dropzone .dz-preview .dz-details {margin: 0;}.frm_compact .frm_dropzone .dz-preview .dz-column {float: none;width: 100%;}.frm_compact .frm_dropzone .dz-preview .dz-details .dz-filename {overflow: hidden;text-overflow: ellipsis;}.frm-show-form .dz-hidden-input{display:none;}.frm_rootline_group{margin: 20px 0 30px;}ul.frm_page_bar{list-style-type: none;margin: 0 !important;padding: 0;width: 100%;float: left;display: table;display: -webkit-flex;display: flex;flex-wrap: wrap;box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;}ul.frm_page_bar li{display: inline-block;-ms-flex: 1;flex: 1;}.frm_forms .frm_page_bar input,.frm_forms .frm_page_bar input:disabled{transition: background-color 0.1s ease;color: #ffffff;background-color: #dddddd;font-size: 18px;border-width: 2px;border-style: solid;border-color: #dfdfdf;}.frm_forms .frm_page_bar input:focus{outline: none;}.frm_forms .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_forms .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;}.frm_rootline_single{text-align: center;margin: 0;padding: 0;}.frm_current_page .frm_rootline_title{color: #008ec2;}.frm_rootline_title,.frm_pages_complete,.frm_percent_complete {font-size:14px;padding:4px;}.frm_pages_complete {float: right;margin-right:13px;}.frm_percent_complete {float: left;margin-left:13px;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled {width: 100%;border: none;border-top: 1px solid #dfdfdf;border-bottom: 1px solid #dfdfdf;box-shadow: inset 0 10px 20px -15px #aaa;margin: 5px 0;padding: 6px 0;border-radius:0;font-size:0;line-height:15px;}.frm_forms .frm_progress_line.frm_show_lines input {border-left: 1px solid #ffffff;border-right: 1px solid #ffffff;}.frm_progress_line .frm_rootline_single {display: flex;flex-direction: column;justify-content: flex-end;}.frm_forms .frm_progress_line li:first-of-type input {border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-left: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-right: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-right: 1px solid #dfdfdf;}.frm_forms .frm_progress_line .frm_current_page input[type="button"] {border-left: 1px solid #dfdfdf;}.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right: 1px solid #ffffff;}.frm_forms .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_forms .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_rtl.frm_forms .frm_progress_line li:first-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-top-left-radius:0px;border-bottom-left-radius:0px;border-right: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input{border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-left: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-left: 1px solid #dfdfdf;border-right:none;}.frm_rtl.frm_forms .frm_progress_line .frm_current_page input[type="button"] {border-right: 1px solid #dfdfdf;border-left:none;}.frm_rtl.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-left: 1px solid #ffffff;border-right:none;}.frm_rootline.frm_show_lines:before {border-top-width: 2px;border-top-style: solid;border-top-color: #dfdfdf;content: "";margin: 0 auto;position: absolute;top: 15px;left: 0;right: 0;bottom: 0;width: 100%;z-index: -1;}.frm_rootline.frm_show_lines{position: relative;z-index: 1;}.frm_rootline.frm_show_lines span{display:block;}.frm_forms .frm_rootline input {width: 30px;height: 30px;min-height:auto;border-radius: 30px;padding:0;}.frm_forms .frm_rootline input:focus {border-color: #008ec2;}.frm_forms .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled,.frm_forms .frm_progress_line .frm_current_page input[type="button"],.frm_forms .frm_rootline.frm_no_numbers input,.frm_forms .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}@media only screen and (max-width: 700px) {.frm_progress span.frm_rootline_title,.frm_rootline.frm_rootline_10 span.frm_rootline_title,.frm_rootline.frm_rootline_9 span.frm_rootline_title,.frm_rootline.frm_rootline_8 span.frm_rootline_title,.frm_rootline.frm_rootline_7 span.frm_rootline_title,.frm_rootline.frm_rootline_6 span.frm_rootline_title,.frm_rootline.frm_rootline_5 span.frm_rootline_title{display:none;}}@media only screen and (max-width: 500px) {.frm_rootline.frm_rootline_4 span.frm_rootline_title,.frm_rootline.frm_rootline_3 span.frm_rootline_title{display:none;}}.with_frm_style.frm_login_form,.with_frm_style.frm_login_form form{clear:both;}.frm_login_form .login_lost_pw.frm_half{text-align:right;}.frm_inline_login.frm_no_labels .frm_submit input,.frm_inline_login.frm_no_labels .frm_submit button{margin-top:0 !important;}.with_frm_style.frm_login_form.frm_slide.frm_inline_login form,.with_frm_style.frm_login_form.frm_slide.frm_inline_login form{clear:none;}.with_frm_style.frm_slide.frm_inline_login .frm-open-login{float:left;margin-right:15px;}.with_frm_style.frm_slide form,.frm_slide form,.with_frm_style.frm_slide.frm_inline_login a.forgot-password,.with_frm_style.frm_slide.frm_inline_login .login-remember{display:none;}.with_frm_style.frm_slide.frm_inline_login .frm_form_field,.with_frm_style.frm_slide.frm_inline_login .frm_submit input{margin-bottom:0;}.with_frm_style.frm_slide.frm_inline_login fieldset{padding-bottom:0;}.with_frm_style.frm_login_form.frm_inline_login .login-username,.with_frm_style.frm_login_form.frm_inline_login .login-password,.with_frm_style.frm_login_form.frm_inline_login .login-remember{margin-right:0 !important;}.with_frm_style.frm_login_form.frm_inline_login form,.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:static !important;}.with_frm_style.frm_login_form a{text-decoration:none;border:none;outline:none;box-shadow:none;}.with_frm_style.frm_login_form .cptch_block .cptch_title{display:none;}@media only screen and (max-width: 600px) {.frm_login_form .login_lost_pw.frm_half{text-align:left;}.with_frm_style .login-remember.frm_first.frm_half,.with_frm_style.frm_login_form .login_lost_pw.frm_half{text-align:center;}.with_frm_style.frm_slide.frm_inline_login .frm_form_field,.with_frm_style.frm_slide.frm_inline_login .frm_submit input{margin-bottom:20px;}}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth label.frm_primary_label{display: block !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(2, 1fr);}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style .frm-g-recaptcha > div > div,.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);-moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe,.with_frm_style .frm-g-recaptcha iframe{width:100%;}}.color > .red,.red{color:red;}
1
  /* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */
2
+ .frm_form_field .grecaptcha-badge,.frm_hidden,.frm_remove_form_row.frm_hidden,.with_frm_style .frm_button.frm_hidden{display:none;}form input.frm_verify{display:none !important;}.with_frm_style fieldset{min-width:0;}.with_frm_style fieldset fieldset{border:none;margin:0;padding:0;background-color:transparent;}legend.frm_hidden{display:none !important;}.with_frm_style .frm_form_fields{opacity:1;transition: opacity 0.1s linear;}.with_frm_style .frm_doing_ajax{opacity:.5;}.frm_transparent{color:transparent;}.input[type=file].frm_transparent:focus, .with_frm_style input[type=file]{background-color:transparent;border:none;outline:none;box-shadow:none;}.with_frm_style input[type=file]{display:initial;}.frm_preview_page:before{content:normal !important;}.frm_preview_page{padding:25px;}.with_frm_style label.frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container label.frm_primary_label,.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container label.frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container label.frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_none_container label.frm_primary_label,.with_frm_style .frm_pos_none,.frm_none_container label.frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container label.frm_primary_label{visibility:hidden;white-space:nowrap;}.with_frm_style .frm_inside_container label.frm_primary_label{opacity:0;transition: opacity 0.1s linear;}.with_frm_style .frm_inside_container label.frm_visible,.frm_visible{opacity:1;}.with_frm_style .frm_description{clear:both;}.with_frm_style input[type=number][readonly]{-moz-appearance: textfield;}.with_frm_style select[multiple="multiple"]{height:auto;line-height:normal;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style textarea{height:auto;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none;border:1px solid #eee;padding:5px;display:inline;}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field,.frm_inline_form .frm_submit{grid-column: span 1 / span 1;}.frm_inline_form .frm_submit{margin:0;}.frm_submit.frm_inline_submit input[type=submit],.frm_submit.frm_inline_submit button,.frm_inline_form .frm_submit input[type=submit],.frm_inline_form .frm_submit button{margin-top:0;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style.frm_center_submit .frm_submit input[type=submit],.with_frm_style.frm_center_submit .frm_submit input[type=button],.with_frm_style.frm_center_submit .frm_submit button{margin-bottom:8px !important;}.with_frm_style .frm_submit input[type=submit],.with_frm_style .frm_submit input[type=button],.with_frm_style .frm_submit button{-webkit-appearance: none;cursor: pointer;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.with_frm_style .frm_loading_form .frm_ajax_loading{visibility:visible !important;}.with_frm_style .frm_loading_form .frm_button_submit {position: relative;opacity: .8;color: transparent !important;text-shadow: none !important;}.with_frm_style .frm_loading_form .frm_button_submit:hover,.with_frm_style .frm_loading_form .frm_button_submit:active,.with_frm_style .frm_loading_form .frm_button_submit:focus {cursor: not-allowed;color: transparent;outline: none !important;box-shadow: none;}.with_frm_style .frm_loading_form .frm_button_submit:before {content: '';display: inline-block;position: absolute;background: transparent;border: 1px solid #fff;border-top-color: transparent;border-left-color: transparent;border-radius: 50%;box-sizing: border-box;top: 50%;left: 50%;margin-top: -10px;margin-left: -10px;width: 20px;height: 20px;-webkit-animation: spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation: spin 2s linear infinite;animation: spin 2s linear infinite;}.frm_forms.frm_style_candy-cane.with_frm_style{max-width:80% !important;direction:ltr !important;margin:0 auto;}.frm_style_candy-cane.with_frm_style,.frm_style_candy-cane.with_frm_style form,.frm_style_candy-cane.with_frm_style .frm-show-form div.frm_description p {text-align:left !important;}.frm_inline_form.frm_style_candy-cane.with_frm_style form{text-align:center;}.frm_style_candy-cane.with_frm_style .frm_form_fields > fieldset{border-width:6px !important;border-style:solid;border-color:#fb32e4 !important;margin:0;padding:10px 25px 5px 25px !important;background-color:#fccff7;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_candy-cane.with_frm_style legend + h3,.frm_style_candy-cane.with_frm_style h3.frm_form_title{font-size:20px !important;color:#000 !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px !important;margin-bottom:10px !important;}.frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0 !important;margin:0 !important;font-size:18px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold !important;color:#555 !important;border:none !important;border-top:2px solid #e8e8e8 !important;background-color:transparent !important}.frm_style_candy-cane.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_candy-cane.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_candy-cane.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_candy-cane.with_frm_style .frm_section_heading{margin-top:15px !important;}.frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_candy-cane.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px !important;}.frm_style_candy-cane.with_frm_style .frm_repeat_sec{margin-bottom:20px !important;margin-top:20px !important;}.frm_style_candy-cane.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#555 !important;font-weight:bold !important;text-align:left !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_container,.frm_style_candy-cane.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;color:#000 !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_html_container{font-size:14px !important;}.frm_style_candy-cane.with_frm_style .frm_form_field .frm_show_it{font-size:14px !important;font-weight:normal;}.frm_style_candy-cane.with_frm_style .frm_icon_font{color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e633";}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e632";}.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_candy-cane.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#000 !important;vertical-align:middle;}.frm_style_candy-cane.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e635";color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e634";color:#555 !important;}.frm_style_candy-cane.with_frm_style .form-field{margin-bottom:20px !important;}.frm_style_candy-cane.with_frm_style .frm_grid,.frm_style_candy-cane.with_frm_style .frm_grid_first,.frm_style_candy-cane.with_frm_style .frm_grid_odd {margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style .form-field.frm_section_heading{margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style p.description,.frm_style_candy-cane.with_frm_style div.description,.frm_style_candy-cane.with_frm_style div.frm_description,.frm_style_candy-cane.with_frm_style .frm-show-form > div.frm_description,.frm_style_candy-cane.with_frm_style .frm_error{margin:0 !important;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:12px !important;color:#777 !important;font-weight:normal !important;text-align:left !important;font-style:normal !important;max-width:100%;}.frm_style_candy-cane.with_frm_style .frm-show-form div.frm_description p{font-size:14px !important;color:#000 !important;margin-top:10px !important;margin-bottom:25px !important;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_candy-cane.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_candy-cane.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_candy-cane.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.frm_style_candy-cane.with_frm_style .frm_pos_right{display:inline !important;width:150px !important;}.frm_style_candy-cane.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_candy-cane.with_frm_style .frm_pos_none{display:none !important;}.frm_style_candy-cane.with_frm_style .frm_scale label{font-weight:normal !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#555 !important;}.frm_style_candy-cane.with_frm_style .frm_required{color:#555 !important;font-weight:bold !important;}.frm_style_candy-cane.with_frm_style input[type=text],.frm_style_candy-cane.with_frm_style input[type=password],.frm_style_candy-cane.with_frm_style input[type=email],.frm_style_candy-cane.with_frm_style input[type=number],.frm_style_candy-cane.with_frm_style input[type=url],.frm_style_candy-cane.with_frm_style input[type=tel],.frm_style_candy-cane.with_frm_style input[type=search],.frm_style_candy-cane.with_frm_style select,.frm_style_candy-cane.with_frm_style textarea,.frm_style_candy-cane.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:14px;margin-bottom:0 !important;}.frm_style_candy-cane.with_frm_style textarea{vertical-align:top;}.frm_style_candy-cane.with_frm_style input[type=text],.frm_style_candy-cane.with_frm_style input[type=password],.frm_style_candy-cane.with_frm_style input[type=email],.frm_style_candy-cane.with_frm_style input[type=number],.frm_style_candy-cane.with_frm_style input[type=url],.frm_style_candy-cane.with_frm_style input[type=tel],.frm_style_candy-cane.with_frm_style input[type=phone],.frm_style_candy-cane.with_frm_style input[type=search],.frm_style_candy-cane.with_frm_style select,.frm_style_candy-cane.with_frm_style textarea,.frm_form_fields_style,.frm_style_candy-cane.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_candy-cane.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_candy-cane.with_frm_style .chosen-container-single .chosen-single{color:#555 !important;background-color:#ffffff !important;background-image:none !important;border-color: #fb32e4 !important;border-width:4px !important;border-style:dashed !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;max-width:100%;font-size:14px !important;padding:6px 10px !important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none !important;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset !important;}.frm_style_candy-cane.with_frm_style input[type=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_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-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#cccccc;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_style_formidable-style.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=phone],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:none;}.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:none;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=file],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_formidable-style.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .auto_width input,.frm_style_formidable-style.with_frm_style input.auto_width,.frm_style_formidable-style.with_frm_style select.auto_width,.frm_style_formidable-style.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style.with_frm_style input[disabled],.frm_style_formidable-style.with_frm_style select[disabled],.frm_style_formidable-style.with_frm_style textarea[disabled],.frm_style_formidable-style.with_frm_style input[readonly],.frm_style_formidable-style.with_frm_style select[readonly],.frm_style_formidable-style.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style.with_frm_style input::placeholder,.frm_style_formidable-style.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input::-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input:-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .frm_default,.frm_style_formidable-style.with_frm_style input.frm_default,.frm_style_formidable-style.with_frm_style textarea.frm_default,.frm_style_formidable-style.with_frm_style select.frm_default,.frm_style_formidable-style.with_frm_style .placeholder,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style.with_frm_style select:focus,.frm_style_formidable-style.with_frm_style textarea:focus,.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style.with_frm_style input[type=submit],.frm_style_formidable-style.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color: #cccccc;border-style:solid;color:#cccccc;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style .frm_submit button:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #cccccc;border-right-color: #cccccc;}.frm_style_formidable-style.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_radio label,.frm_style_formidable-style.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style.with_frm_style .frm_blank_field label,.frm_style_formidable-style.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#cccccc;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_formidable-style.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #cccccc;}.frm_style_formidable-style.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_formidable-style.with_frm_style .frm_page_bar input,.frm_style_formidable-style.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline_title,.frm_style_formidable-style.with_frm_style .frm_pages_complete,.frm_style_formidable-style.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style.with_frm_style .frm_rootline input,.frm_style_formidable-style.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style.with_frm_style .frm_progress_line input,.frm_style_formidable-style.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_formidable-style.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style.with_frm_style .form-field input[type=range],.frm_style_formidable-style.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style.with_frm_style span.frm-pass-req::before {color:#B94A48;}.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_formidable-style-2.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style-2.with_frm_style,.frm_style_formidable-style-2.with_frm_style form,.frm_style_formidable-style-2.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style-2.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Average Sans",sans-serif;}.frm_style_formidable-style-2.with_frm_style legend + h3,.frm_style_formidable-style-2.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Average Sans",sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Average Sans",sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style-2.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style-2.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style-2.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style-2.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style-2.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style-2.with_frm_style label.frm_primary_label{font-family:"Average Sans",sans-serif;font-size:16px;color:#969292;font-weight:bold;text-align:left;margin:0;padding:0 0 5px 0;width:auto;display:block;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-family:"Average Sans",sans-serif;color:#333333;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_container{font-size:16px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font{color:#969292;}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style-2.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff;vertical-align:middle;}.frm_style_formidable-style-2.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style-2.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style-2.with_frm_style .frm_grid,.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style p.description,.frm_style_formidable-style-2.with_frm_style div.description,.frm_style_formidable-style-2.with_frm_style div.frm_description,.frm_style_formidable-style-2.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style-2.with_frm_style .frm_error{margin:5px 0 0 0;padding:0;font-family:"Average Sans",sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .frm-show-form div.frm_description p{font-size:16px;color:#333333;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style-2.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style-2.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style-2.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style-2.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_formidable-style-2.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style-2.with_frm_style .frm_scale label{font-weight:normal;font-family:"Average Sans",sans-serif;font-size:16px;color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style textarea,.frm_style_formidable-style-2.with_frm_style .chosen-container{font-family:"Average Sans",sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style-2.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style-2.with_frm_style input[type=text],.frm_style_formidable-style-2.with_frm_style input[type=password],.frm_style_formidable-style-2.with_frm_style input[type=email],.frm_style_formidable-style-2.with_frm_style input[type=number],.frm_style_formidable-style-2.with_frm_style input[type=url],.frm_style_formidable-style-2.with_frm_style input[type=tel],.frm_style_formidable-style-2.with_frm_style input[type=phone],.frm_style_formidable-style-2.with_frm_style input[type=search],.frm_style_formidable-style-2.with_frm_style select,.frm_style_formidable-style-2.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style-2.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style-2.with_frm_style input[type=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:"Average Sans",sans-serif;font-size:14px;}.frm_style_formidable-style-2.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style-2.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style-2.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style-2.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .auto_width input,.frm_style_formidable-style-2.with_frm_style input.auto_width,.frm_style_formidable-style-2.with_frm_style select.auto_width,.frm_style_formidable-style-2.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style-2.with_frm_style input[disabled],.frm_style_formidable-style-2.with_frm_style select[disabled],.frm_style_formidable-style-2.with_frm_style textarea[disabled],.frm_style_formidable-style-2.with_frm_style input[readonly],.frm_style_formidable-style-2.with_frm_style select[readonly],.frm_style_formidable-style-2.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style-2.with_frm_style input::placeholder,.frm_style_formidable-style-2.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style-2.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input::-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style-2.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style input:-moz-placeholder,.frm_style_formidable-style-2.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style .frm_default,.frm_style_formidable-style-2.with_frm_style input.frm_default,.frm_style_formidable-style-2.with_frm_style textarea.frm_default,.frm_style_formidable-style-2.with_frm_style select.frm_default,.frm_style_formidable-style-2.with_frm_style .placeholder,.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style-2.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style-2.with_frm_style select:focus,.frm_style_formidable-style-2.with_frm_style textarea:focus,.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style-2.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style-2.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style-2.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style-2.with_frm_style input[type=submit],.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style-2.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Average Sans",sans-serif;font-size:16px;height:auto;line-height:normal;text-align:center;background:#214150;border-width:0px;border-color: #cccccc;border-style:solid;color:#ffffff;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:10px 10px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style-2.with_frm_style input[type=submit]:hover,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style-2.with_frm_style .frm_submit button:hover{background: #e6e6e6;border-color: #e6e6e6;color: #214150;}.frm_style_formidable-style-2.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style-2.with_frm_style input[type=submit]:focus,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style-2.with_frm_style .frm_submit button:focus,.frm_style_formidable-style-2.with_frm_style input[type=submit]:active,.frm_style_formidable-style-2.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style-2.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #214150;}.frm_style_formidable-style-2.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #ffffff;border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Average Sans",sans-serif;font-size:16px;color:#969292;font-weight:bold;margin:0;padding:0 0 5px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style-2.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style-2.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style-2.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style-2.with_frm_style a.frm_save_draft{font-family:"Average Sans",sans-serif;font-size:16px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style #frm_field_cptch_number_container{font-family:"Average Sans",sans-serif;font-size:16px;color:#969292;font-weight:bold;clear:both;}.frm_style_formidable-style-2.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style-2.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style-2.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style-2.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style-2.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style-2.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style-2.with_frm_style .frm_radio label,.frm_style_formidable-style-2.with_frm_style .frm_checkbox label{font-family:"Average Sans",sans-serif;font-size:16px;color:#444444;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style-2.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 16px;position: static;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style-2.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style-2.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style-2.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style-2.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style-2.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field label,.frm_style_formidable-style-2.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style-2.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style-2.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style-2.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style-2.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style-2.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style-2.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style-2.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_grid,.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style-2.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style-2.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style-2.with_frm_style .frm_grid_first,.frm_style_formidable-style-2.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style-2.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style-2.with_frm_style .frm_button{padding:10px 10px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:16px;font-family:"Average Sans",sans-serif;font-weight:normal;color:#ffffff;background: #214150;border-width:0px;border-color: #cccccc;height:auto;}.frm_style_formidable-style-2.with_frm_style .frm_button .frm_icon_font:before{font-size:16px;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style-2.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style-2.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style-2.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style-2.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style-2.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style-2.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style-2.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_formidable-style-2.with_frm_style .frm_page_bar input,.frm_style_formidable-style-2.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style-2.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_rootline_title,.frm_style_formidable-style-2.with_frm_style .frm_pages_complete,.frm_style_formidable-style-2.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input,.frm_style_formidable-style-2.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input,.frm_style_formidable-style-2.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style-2.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style-2.with_frm_style .frm_progress_line input,.frm_style_formidable-style-2.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style-2.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style-2.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_formidable-style-2.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style-2.with_frm_style .form-field input[type=range],.frm_style_formidable-style-2.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_switch_opt{font-size:16px;font-weight:normal;}.frm_style_formidable-style-2.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style-2.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style-2.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style-2.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style-2.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style-2.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style-2.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style-2.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style-2.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style-2.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Average Sans",sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style-2.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style-2.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style-2.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style-2.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style-2.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style-2.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_formidable-style-2.with_frm_style .frm_repeat_inline,.frm_style_formidable-style-2.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_left-labels.with_frm_style{max-width:100%;direction:ltr;}.frm_style_left-labels.with_frm_style,.frm_style_left-labels.with_frm_style form,.frm_style_left-labels.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_left-labels.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_left-labels.with_frm_style legend + h3,.frm_style_left-labels.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_left-labels.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_left-labels.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_left-labels.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_left-labels.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_left-labels.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_left-labels.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_left-labels.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_container,.frm_style_left-labels.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_left-labels.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_left-labels.with_frm_style .frm_icon_font{color:#444444;}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_left-labels.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_left-labels.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_left-labels.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_left-labels.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_left-labels.with_frm_style .form-field{margin-bottom:20px;}.frm_style_left-labels.with_frm_style .frm_grid,.frm_style_left-labels.with_frm_style .frm_grid_first,.frm_style_left-labels.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_left-labels.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_left-labels.with_frm_style p.description,.frm_style_left-labels.with_frm_style div.description,.frm_style_left-labels.with_frm_style div.frm_description,.frm_style_left-labels.with_frm_style .frm-show-form > div.frm_description,.frm_style_left-labels.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_left-labels.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_left-labels.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_left-labels.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_left-labels.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_left-labels.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_left-labels.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_left-labels.with_frm_style .frm_pos_none{display:none;}.frm_style_left-labels.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_left-labels.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_left-labels.with_frm_style input[type=text],.frm_style_left-labels.with_frm_style input[type=password],.frm_style_left-labels.with_frm_style input[type=email],.frm_style_left-labels.with_frm_style input[type=number],.frm_style_left-labels.with_frm_style input[type=url],.frm_style_left-labels.with_frm_style input[type=tel],.frm_style_left-labels.with_frm_style input[type=search],.frm_style_left-labels.with_frm_style select,.frm_style_left-labels.with_frm_style textarea,.frm_style_left-labels.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_left-labels.with_frm_style textarea{vertical-align:top;}.frm_style_left-labels.with_frm_style input[type=text],.frm_style_left-labels.with_frm_style input[type=password],.frm_style_left-labels.with_frm_style input[type=email],.frm_style_left-labels.with_frm_style input[type=number],.frm_style_left-labels.with_frm_style input[type=url],.frm_style_left-labels.with_frm_style input[type=tel],.frm_style_left-labels.with_frm_style input[type=phone],.frm_style_left-labels.with_frm_style input[type=search],.frm_style_left-labels.with_frm_style select,.frm_style_left-labels.with_frm_style textarea,.frm_form_fields_style,.frm_style_left-labels.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_left-labels.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_left-labels.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_left-labels.with_frm_style input[type=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_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-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_lines.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_lines.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_lines.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_lines.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_lines.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_lines.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_lines.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_lines.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#444444;font-weight:normal;text-align:left;margin:0;padding:0;width:auto;display:block;}.frm_style_lines.with_frm_style .frm_form_field.frm_html_container,.frm_style_lines.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_lines.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_lines.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_lines.with_frm_style .frm_icon_font{color:#444444;}.frm_style_lines.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_lines.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_lines.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_lines.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_lines.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_lines.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_lines.with_frm_style .form-field{margin-bottom:20px;}.frm_style_lines.with_frm_style .frm_grid,.frm_style_lines.with_frm_style .frm_grid_first,.frm_style_lines.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_lines.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_lines.with_frm_style p.description,.frm_style_lines.with_frm_style div.description,.frm_style_lines.with_frm_style div.frm_description,.frm_style_lines.with_frm_style .frm-show-form > div.frm_description,.frm_style_lines.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_lines.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_lines.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_lines.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_lines.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_lines.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_lines.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_lines.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_lines.with_frm_style .frm_pos_none{display:none;}.frm_style_lines.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_lines.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_lines.with_frm_style input[type=text],.frm_style_lines.with_frm_style input[type=password],.frm_style_lines.with_frm_style input[type=email],.frm_style_lines.with_frm_style input[type=number],.frm_style_lines.with_frm_style input[type=url],.frm_style_lines.with_frm_style input[type=tel],.frm_style_lines.with_frm_style input[type=search],.frm_style_lines.with_frm_style select,.frm_style_lines.with_frm_style textarea,.frm_style_lines.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_lines.with_frm_style textarea{vertical-align:top;}.frm_style_lines.with_frm_style input[type=text],.frm_style_lines.with_frm_style input[type=password],.frm_style_lines.with_frm_style input[type=email],.frm_style_lines.with_frm_style input[type=number],.frm_style_lines.with_frm_style input[type=url],.frm_style_lines.with_frm_style input[type=tel],.frm_style_lines.with_frm_style input[type=phone],.frm_style_lines.with_frm_style input[type=search],.frm_style_lines.with_frm_style select,.frm_style_lines.with_frm_style textarea,.frm_form_fields_style,.frm_style_lines.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_lines.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_lines.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:0 0 1px;border-style:solid;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;width:100%;max-width:100%;font-size:14px;padding:3px 0px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:none;}.frm_style_lines.with_frm_style input[type=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_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_formidable-style-3.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style-3.with_frm_style,.frm_style_formidable-style-3.with_frm_style form,.frm_style_formidable-style-3.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style-3.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_formidable-style-3.with_frm_style legend + h3,.frm_style_formidable-style-3.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style-3.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style-3.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style-3.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style-3.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style-3.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style-3.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_html_container,.frm_style_formidable-style-3.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_formidable-style-3.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style-3.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_formidable-style-3.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_formidable-style-3.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style-3.with_frm_style .frm_grid,.frm_style_formidable-style-3.with_frm_style .frm_grid_first,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style-3.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style-3.with_frm_style p.description,.frm_style_formidable-style-3.with_frm_style div.description,.frm_style_formidable-style-3.with_frm_style div.frm_description,.frm_style_formidable-style-3.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style-3.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style-3.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style-3.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style-3.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style-3.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style-3.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_formidable-style-3.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style-3.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style-3.with_frm_style input[type=text],.frm_style_formidable-style-3.with_frm_style input[type=password],.frm_style_formidable-style-3.with_frm_style input[type=email],.frm_style_formidable-style-3.with_frm_style input[type=number],.frm_style_formidable-style-3.with_frm_style input[type=url],.frm_style_formidable-style-3.with_frm_style input[type=tel],.frm_style_formidable-style-3.with_frm_style input[type=search],.frm_style_formidable-style-3.with_frm_style select,.frm_style_formidable-style-3.with_frm_style textarea,.frm_style_formidable-style-3.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style-3.with_frm_style textarea{vertical-align:top;}.frm_style_formidable-style-3.with_frm_style input[type=text],.frm_style_formidable-style-3.with_frm_style input[type=password],.frm_style_formidable-style-3.with_frm_style input[type=email],.frm_style_formidable-style-3.with_frm_style input[type=number],.frm_style_formidable-style-3.with_frm_style input[type=url],.frm_style_formidable-style-3.with_frm_style input[type=tel],.frm_style_formidable-style-3.with_frm_style input[type=phone],.frm_style_formidable-style-3.with_frm_style input[type=search],.frm_style_formidable-style-3.with_frm_style select,.frm_style_formidable-style-3.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style-3.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style-3.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:50%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style-3.with_frm_style input[type=radio],.frm_style_formidable-style-3.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-3.with_frm_style input[type=text],.frm_style_formidable-style-3.with_frm_style input[type=password],.frm_style_formidable-style-3.with_frm_style input[type=email],.frm_style_formidable-style-3.with_frm_style input[type=number],.frm_style_formidable-style-3.with_frm_style input[type=url],.frm_style_formidable-style-3.with_frm_style input[type=tel],.frm_style_formidable-style-3.with_frm_style input[type=file],.frm_style_formidable-style-3.with_frm_style input[type=search],.frm_style_formidable-style-3.with_frm_style select{height:32px;line-height:1.3;}.frm_style_formidable-style-3.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_formidable-style-3.with_frm_style input[type=file]{color: #555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style-3.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style-3.with_frm_style select{width:50%;max-width:100%;}.frm_style_formidable-style-3.with_frm_style .wp-editor-wrap{width:50%;max-width:100%;}.frm_style_formidable-style-3.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style-3.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .auto_width input,.frm_style_formidable-style-3.with_frm_style input.auto_width,.frm_style_formidable-style-3.with_frm_style select.auto_width,.frm_style_formidable-style-3.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style-3.with_frm_style input[disabled],.frm_style_formidable-style-3.with_frm_style select[disabled],.frm_style_formidable-style-3.with_frm_style textarea[disabled],.frm_style_formidable-style-3.with_frm_style input[readonly],.frm_style_formidable-style-3.with_frm_style select[readonly],.frm_style_formidable-style-3.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style-3.with_frm_style input::placeholder,.frm_style_formidable-style-3.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style-3.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input::-moz-placeholder,.frm_style_formidable-style-3.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style-3.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style input:-moz-placeholder,.frm_style_formidable-style-3.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style .frm_default,.frm_style_formidable-style-3.with_frm_style input.frm_default,.frm_style_formidable-style-3.with_frm_style textarea.frm_default,.frm_style_formidable-style-3.with_frm_style select.frm_default,.frm_style_formidable-style-3.with_frm_style .placeholder,.frm_style_formidable-style-3.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style-3.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style-3.with_frm_style select:focus,.frm_style_formidable-style-3.with_frm_style textarea:focus,.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style-3.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style-3.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style-3.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style-3.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style-3.with_frm_style input[type=submit],.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style-3.with_frm_style .frm_submit button,.frm_form_submit_style{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color: #cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style-3.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style-3.with_frm_style input[type=submit]:hover,.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style-3.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-3.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style-3.with_frm_style input[type=submit]:focus,.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style-3.with_frm_style .frm_submit button:focus,.frm_style_formidable-style-3.with_frm_style input[type=submit]:active,.frm_style_formidable-style-3.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style-3.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_formidable-style-3.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style-3.with_frm_style .frm_submit.frm_inline_submit::before {content:"before";font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style-3.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style-3.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style-3.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style-3.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style-3.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_formidable-style-3.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style-3.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style-3.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style-3.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style-3.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style-3.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style-3.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style-3.with_frm_style .frm_radio label,.frm_style_formidable-style-3.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;}.frm_style_formidable-style-3.with_frm_style .frm_radio input[type=radio],.frm_style_formidable-style-3.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style-3.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style-3.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style-3.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style-3.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style-3.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style-3.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field label,.frm_style_formidable-style-3.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style-3.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style-3.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style-3.with_frm_style .frm_message p{color:#468847;}.frm_style_formidable-style-3.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style-3.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style-3.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style-3.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style-3.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style-3.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_grid,.frm_style_formidable-style-3.with_frm_style .frm_grid_first,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style-3.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style-3.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style-3.with_frm_style .frm_grid_first,.frm_style_formidable-style-3.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:50%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style-3.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style-3.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background: #ffffff;border-width:1px;border-color: #cccccc;height:auto;}.frm_style_formidable-style-3.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_formidable-style-3.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_formidable-style-3.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_formidable-style-3.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_formidable-style-3.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color: #cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style-3.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .chosen-container .chosen-results li,.frm_style_formidable-style-3.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style-3.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style-3.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_formidable-style-3.with_frm_style .frm_page_bar input,.frm_style_formidable-style-3.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_formidable-style-3.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_rootline_title,.frm_style_formidable-style-3.with_frm_style .frm_pages_complete,.frm_style_formidable-style-3.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input,.frm_style_formidable-style-3.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line.frm_show_lines input {border-left-color: #ffffff;border-right-color: #ffffff;border-left-width: 1px ;border-right-width: 1px ;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_formidable-style-3.with_frm_style .frm_rootline input,.frm_style_formidable-style-3.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_formidable-style-3.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_formidable-style-3.with_frm_style .frm_progress_line input,.frm_style_formidable-style-3.with_frm_style .frm_progress_line input:disabled,.frm_style_formidable-style-3.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_formidable-style-3.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_formidable-style-3.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_formidable-style-3.with_frm_style .frm_range_value{font-size:14px;}.frm_style_formidable-style-3.with_frm_style .form-field input[type=range],.frm_style_formidable-style-3.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_formidable-style-3.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_formidable-style-3.with_frm_style input[type=range]::-webkit-slider-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style input[type=range]::-moz-range-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_formidable-style-3.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_formidable-style-3.with_frm_style .frm_off_label{color:#444444;}.frm_style_formidable-style-3.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_formidable-style-3.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_formidable-style-3.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_formidable-style-3.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_formidable-style-3.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_formidable-style-3.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_formidable-style-3.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style-3.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_formidable-style-3.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style-3.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style-3.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style-3.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style-3.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style-3.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;border-bottom:2px solid #e8e8e8;}@media only screen and (max-width: 600px){.frm_style_formidable-style-3.with_frm_style .frm_repeat_inline,.frm_style_formidable-style-3.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_new-style-reset.with_frm_style{max-width:100%;direction:ltr;}.frm_style_new-style-reset.with_frm_style,.frm_style_new-style-reset.with_frm_style form,.frm_style_new-style-reset.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_new-style-reset.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_new-style-reset.with_frm_style legend + h3,.frm_style_new-style-reset.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_new-style-reset.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_new-style-reset.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_new-style-reset.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_new-style-reset.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_new-style-reset.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_new-style-reset.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_new-style-reset.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_new-style-reset.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_new-style-reset.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_new-style-reset.with_frm_style .frm_form_field.frm_html_container,.frm_style_new-style-reset.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_new-style-reset.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_new-style-reset.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_new-style-reset.with_frm_style .frm_icon_font{color:#444444;}.frm_style_new-style-reset.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_new-style-reset.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_new-style-reset.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_new-style-reset.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_new-style-reset.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_new-style-reset.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_new-style-reset.with_frm_style .form-field{margin-bottom:20px;}.frm_style_new-style-reset.with_frm_style .frm_grid,.frm_style_new-style-reset.with_frm_style .frm_grid_first,.frm_style_new-style-reset.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_new-style-reset.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_new-style-reset.with_frm_style p.description,.frm_style_new-style-reset.with_frm_style div.description,.frm_style_new-style-reset.with_frm_style div.frm_description,.frm_style_new-style-reset.with_frm_style .frm-show-form > div.frm_description,.frm_style_new-style-reset.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_new-style-reset.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_new-style-reset.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_new-style-reset.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_new-style-reset.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_new-style-reset.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_new-style-reset.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_new-style-reset.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_new-style-reset.with_frm_style .frm_pos_none{display:none;}.frm_style_new-style-reset.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_new-style-reset.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_new-style-reset.with_frm_style input[type=text],.frm_style_new-style-reset.with_frm_style input[type=password],.frm_style_new-style-reset.with_frm_style input[type=email],.frm_style_new-style-reset.with_frm_style input[type=number],.frm_style_new-style-reset.with_frm_style input[type=url],.frm_style_new-style-reset.with_frm_style input[type=tel],.frm_style_new-style-reset.with_frm_style input[type=search],.frm_style_new-style-reset.with_frm_style select,.frm_style_new-style-reset.with_frm_style textarea,.frm_style_new-style-reset.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_new-style-reset.with_frm_style textarea{vertical-align:top;}.frm_style_new-style-reset.with_frm_style input[type=text],.frm_style_new-style-reset.with_frm_style input[type=password],.frm_style_new-style-reset.with_frm_style input[type=email],.frm_style_new-style-reset.with_frm_style input[type=number],.frm_style_new-style-reset.with_frm_style input[type=url],.frm_style_new-style-reset.with_frm_style input[type=tel],.frm_style_new-style-reset.with_frm_style input[type=phone],.frm_style_new-style-reset.with_frm_style input[type=search],.frm_style_new-style-reset.with_frm_style select,.frm_style_new-style-reset.with_frm_style textarea,.frm_form_fields_style,.frm_style_new-style-reset.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_new-style-reset.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_new-style-reset.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_new-style-reset.with_frm_style input[type=radio],.frm_style_new-style-reset.with_frm_style input[type=checkbox]{border-color: #cccccc;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_new-style-reset.with_frm_style input[type=text],.frm_style_new-style-reset.with_frm_style input[type=password],.frm_style_new-style-reset.with_frm_style input[type=email],.frm_style_new-style-reset.with_frm_style input[type=number],.frm_style_new-style-reset.with_frm_style input[type=url],.frm_style_new-style-reset.with_frm_style input[type=tel],.frm_style_new-style-reset.with_frm_style input[type=file],.frm_style_new-style-reset.with_frm_style input[type=search],.frm_style_new-style-reset.with_frm_style select{height:32px;line-height:1.3;}.frm_style_new-style-reset.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_new-style-reset.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_new-style-reset.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_new-style-reset.with_frm_style select{width:100%;max-width:100%;}.frm_style_new-style-reset.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_new-style-reset.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_new-style-reset.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_new-style-reset.with_frm_style .auto_width input,.frm_style_new-style-reset.with_frm_style input.auto_width,.frm_style_new-style-reset.with_frm_style select.auto_width,.frm_style_new-style-reset.with_frm_style textarea.auto_width{width:auto;}.frm_style_new-style-reset.with_frm_style input[disabled],.frm_style_new-style-reset.with_frm_style select[disabled],.frm_style_new-style-reset.with_frm_style textarea[disabled],.frm_style_new-style-reset.with_frm_style input[readonly],.frm_style_new-style-reset.with_frm_style select[readonly],.frm_style_new-style-reset.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_new-style-reset.with_frm_style input::placeholder,.frm_style_new-style-reset.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_new-style-reset.with_frm_style input::-webkit-input-placeholder,.frm_style_new-style-reset.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_new-style-reset.with_frm_style input::-moz-placeholder,.frm_style_new-style-reset.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;}.frm_style_new-style-reset.with_frm_style input:-ms-input-placeholder,frm_style_new-style-reset.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_new-style-reset.with_frm_style input:-moz-placeholder,.frm_style_new-style-reset.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_new-style-reset.with_frm_style .frm_default,.frm_style_new-style-reset.with_frm_style input.frm_default,.frm_style_new-style-reset.with_frm_style textarea.frm_default,.frm_style_new-style-reset.with_frm_style select.frm_default,.frm_style_new-style-reset.with_frm_style .placeholder,.frm_style_new-style-reset.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_new-style-reset.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_new-style-reset.with_frm_style .form-field input:not([type=file]):focus,.frm_style_new-style-reset.with_frm_style select:focus,.frm_style_new-style-reset.with_frm_style textarea:focus,.frm_style_new-style-reset.with_frm_style .frm_focus_field input[type=text],.frm_style_new-style-reset.with_frm_style .frm_focus_field input[type=password],.frm_style_new-style-reset.with_frm_style .frm_focus_field input[type=email],.frm_style_new-style-reset.with_frm_style .frm_focus_field input[type=number],.frm_style_new-style-reset.with_frm_style .frm_focus_field input[type=url],.frm_style_new-style-reset.with_frm_style .frm_focus_field input[type=tel],.frm_style_new-style-reset.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_new-style-reset.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_new-style-reset.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_new-style-reset.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_new-style-reset.with_frm_style input[type=submit],.frm_style_new-style-reset.with_frm_style .frm_submit input[type=button],.frm_style_new-style-reset.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_new-style-reset.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_new-style-reset.with_frm_style input[type=submit]:hover,.frm_style_new-style-reset.with_frm_style .frm_submit input[type=button]:hover,.frm_style_new-style-reset.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_new-style-reset.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_new-style-reset.with_frm_style input[type=submit]:focus,.frm_style_new-style-reset.with_frm_style .frm_submit input[type=button]:focus,.frm_style_new-style-reset.with_frm_style .frm_submit button:focus,.frm_style_new-style-reset.with_frm_style input[type=submit]:active,.frm_style_new-style-reset.with_frm_style .frm_submit input[type=button]:active,.frm_style_new-style-reset.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_new-style-reset.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_new-style-reset.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_new-style-reset.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_new-style-reset.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #ffffff;}.frm_style_new-style-reset.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #444444;border-right-color: #444444;}.frm_style_new-style-reset.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_new-style-reset.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_new-style-reset.with_frm_style.frm_inline_form .frm_submit input,.frm_style_new-style-reset.with_frm_style.frm_inline_form .frm_submit button,.frm_style_new-style-reset.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_new-style-reset.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_new-style-reset.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_new-style-reset.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_new-style-reset.with_frm_style .frm_radio{display:block;}.frm_style_new-style-reset.with_frm_style .frm_checkbox{display:block;}.frm_style_new-style-reset.with_frm_style .vertical_radio .frm_checkbox,.frm_style_new-style-reset.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_new-style-reset.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_new-style-reset.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_new-style-reset.with_frm_style .frm_radio label,.frm_style_new-style-reset.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_new-style-reset.with_frm_style .frm_radio input[type=radio],.frm_style_new-style-reset.with_frm_style .frm_checkbox input[type=checkbox] {font-size: 13px;position: static;}.frm_style_new-style-reset.with_frm_style .frm_blank_field input[type=text],.frm_style_new-style-reset.with_frm_style .frm_blank_field input[type=password],.frm_style_new-style-reset.with_frm_style .frm_blank_field input[type=url],.frm_style_new-style-reset.with_frm_style .frm_blank_field input[type=tel],.frm_style_new-style-reset.with_frm_style .frm_blank_field input[type=number],.frm_style_new-style-reset.with_frm_style .frm_blank_field input[type=email],.frm_style_new-style-reset.with_frm_style .frm_blank_field textarea,.frm_style_new-style-reset.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_new-style-reset.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_new-style-reset.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_new-style-reset.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_new-style-reset.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_new-style-reset.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_new-style-reset.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_new-style-reset.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_new-style-reset.with_frm_style .frm_error{font-weight:bold;}.frm_style_new-style-reset.with_frm_style .frm_blank_field label,.frm_style_new-style-reset.with_frm_style .frm_error{color:#B94A48;}.frm_style_new-style-reset.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_new-style-reset.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_new-style-reset.with_frm_style .frm_message p{color:#468847;}.frm_style_new-style-reset.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_new-style-reset.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_new-style-reset.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_new-style-reset.with_frm_style tr td{color: #555555;border-top:1px solid #cccccc;}.form_results.frm_style_new-style-reset.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_new-style-reset.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_new-style-reset.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_new-style-reset.with_frm_style .frm_grid,.frm_style_new-style-reset.with_frm_style .frm_grid_first,.frm_style_new-style-reset.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_new-style-reset.with_frm_style .frm_grid.frm_blank_field,.frm_style_new-style-reset.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_new-style-reset.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_new-style-reset.with_frm_style .frm_grid_first,.frm_style_new-style-reset.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_new-style-reset.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_new-style-reset.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_new-style-reset.with_frm_style .frm_form_field.frm_total input,.frm_style_new-style-reset.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_new-style-reset.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_new-style-reset.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_new-style-reset.with_frm_style .frm_dropzone{border-color: #cccccc;border-radius:4px;color: #555555;background-color:#ffffff;}.frm_style_new-style-reset.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_new-style-reset.with_frm_style .frm_dropzone .dz-remove{color: #555555;}.frm_style_new-style-reset.with_frm_style .frm_compact .frm_dropzone .frm_upload_icon:before {color: #444444;}.frm_style_new-style-reset.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_new-style-reset.with_frm_style .frm_dropzone .dz-preview .dz-progress {background: #dddddd;}.frm_style_new-style-reset.with_frm_style .frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_style_new-style-reset.with_frm_style .frm_dropzone .dz-preview.dz-complete .dz-progress {background: #008ec2;}.frm_style_new-style-reset.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_new-style-reset.with_frm_style .chosen-container{font-size:14px;}.frm_style_new-style-reset.with_frm_style .chosen-container .chosen-results li,.frm_style_new-style-reset.with_frm_style .chosen-container .chosen-results li span{color:#555555;}.frm_style_new-style-reset.with_frm_style .chosen-container-single .chosen-single{padding-top:0 ;height:32px;line-height:32px;}.frm_style_new-style-reset.with_frm_style .chosen-container-single .chosen-single abbr{top:9px ;}.frm_style_new-style-reset.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_new-style-reset.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_new-style-reset.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}.frm_style_new-style-reset.with_frm_style .frm_page_bar input,.frm_style_new-style-reset.with_frm_style .frm_page_bar input:disabled{color: #ffffff;background-color: #dddddd;border-color: #dfdfdf;border-width: 2px;}.frm_style_new-style-reset.with_frm_style .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_style_new-style-reset.with_frm_style .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;opacity:1;}.frm_style_new-style-reset.with_frm_style .frm_current_page .frm_rootline_title{color: #008ec2;}.frm_style_new-style-reset.with_frm_style .frm_rootline_title,.frm_style_new-style-reset.with_frm_style .frm_pages_complete,.frm_style_new-style-reset.with_frm_style .frm_percent_complete{color: #666666;}.frm_style_new-style-reset.with_frm_style .frm_progress_line input,.frm_style_new-style-reset.with_frm_style .frm_progress_line input:disabled {border-color: #dfdfdf;}.frm_style_new-style-reset.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_new-style-reset.with_frm_style .frm_progress_line li:first-of-type input {border-left-color: #008ec2;}.frm_style_new-style-reset.with_frm_style .frm_progress_line li:last-of-type input {border-right-color: #008ec2;}.frm_style_new-style-reset.with_frm_style .frm_progress_line li:last-of-type input.frm_page_skip {border-right-color: #dfdfdf;}.frm_style_new-style-reset.with_frm_style .frm_progress_line .frm_current_page input[type="button"] {border-left-color: #dfdfdf;}.frm_style_new-style-reset.with_frm_style .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right-color: #ffffff;}.frm_style_new-style-reset.with_frm_style .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_style_new-style-reset.with_frm_style .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_style_new-style-reset.with_frm_style .frm_rootline.frm_show_lines:before {border-color: #dfdfdf;border-top-width: 2px;top: 15px;}.frm_style_new-style-reset.with_frm_style .frm_rootline input,.frm_style_new-style-reset.with_frm_style .frm_rootline input:hover {width: 30px;height: 30px;border-radius: 30px;padding: 0;}.frm_style_new-style-reset.with_frm_style .frm_rootline input:focus {border-color: #008ec2;}.frm_style_new-style-reset.with_frm_style .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_style_new-style-reset.with_frm_style .frm_progress_line input,.frm_style_new-style-reset.with_frm_style .frm_progress_line input:disabled,.frm_style_new-style-reset.with_frm_style .frm_progress_line .frm_current_page input[type="button"],.frm_style_new-style-reset.with_frm_style .frm_rootline.frm_no_numbers input,.frm_style_new-style-reset.with_frm_style .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}.frm_style_new-style-reset.with_frm_style .frm_range_value{font-size:14px;}.frm_style_new-style-reset.with_frm_style .form-field input[type=range],.frm_style_new-style-reset.with_frm_style .form-field input[type=range]:focus {padding:0 ;background:transparent !important;}.frm_style_new-style-reset.with_frm_style input[type=range]::-webkit-slider-runnable-track {background-color:#cccccc;border-radius:4px;}.frm_style_new-style-reset.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_new-style-reset.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_new-style-reset.with_frm_style input[type=range]::-ms-thumb {border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;}.frm_style_new-style-reset.with_frm_style .frm_switch_opt{font-size:14px;font-weight:normal;}.frm_style_new-style-reset.with_frm_style .frm_on_label{color:#008ec2;}.frm_style_new-style-reset.with_frm_style .frm_off_label{color:#444444;}.frm_style_new-style-reset.with_frm_style .frm_slider {background-color:#cccccc;}.frm_style_new-style-reset.with_frm_style input:checked + .frm_slider {background-color:#008ec2;}.frm_style_new-style-reset.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;}.frm_style_new-style-reset.with_frm_style .frm_checkbox input.frm_other_input:not(.frm_other_full),.frm_style_new-style-reset.with_frm_style .frm_radio input.frm_other_input:not(.frm_other_full){margin-left:5px;}.frm_style_new-style-reset.with_frm_style .horizontal_radio input.frm_other_input:not(.frm_other_full):not(.frm_pos_none) {display:inline-block;}.frm_style_new-style-reset.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_new-style-reset.with_frm_style span.frm-pass-verified::before {color:#468847;}.frm_style_new-style-reset.with_frm_style span.frm-pass-req::before {color:#B94A48;}.frm_style_new-style-reset.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_new-style-reset.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_new-style-reset.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_new-style-reset.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_new-style-reset.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_new-style-reset.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_new-style-reset.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_new-style-reset.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_new-style-reset.with_frm_style .frm_repeat_inline,.frm_style_new-style-reset.with_frm_style .frm_repeat_grid{margin: 20px 0;}}.frm_forms.frm_style_rtl.with_frm_style{max-width:100%;direction:rtl;unicode-bidi:embed;}.frm_style_rtl.with_frm_style,.frm_style_rtl.with_frm_style form,.frm_style_rtl.with_frm_style .frm-show-form div.frm_description p {text-align:right;}.frm_style_rtl.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-style:solid;border-color:#000000;margin:0;padding:0 0 15px 0;background-color:transparent;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;}.frm_style_rtl.with_frm_style legend + h3,.frm_style_rtl.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_rtl.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_rtl.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_rtl.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_rtl.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_rtl.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_rtl.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_rtl.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:right;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_rtl.with_frm_style .frm_form_field.frm_html_container,.frm_style_rtl.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;color:#666666;}.frm_style_rtl.with_frm_style .frm_form_field.frm_html_container{font-size:14px;}.frm_style_rtl.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-weight:normal;}.frm_style_rtl.with_frm_style .frm_icon_font{color:#444444;}.frm_style_rtl.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e600";}.frm_style_rtl.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e602";}.frm_style_rtl.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_rtl.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;vertical-align:middle;}.frm_style_rtl.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e62d";color:#444444;}.frm_style_rtl.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e62a";color:#444444;}.frm_style_rtl.with_frm_style .form-field{margin-bottom:20px;}.frm_style_rtl.with_frm_style .frm_grid,.frm_style_rtl.with_frm_style .frm_grid_first,.frm_style_rtl.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_rtl.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_rtl.with_frm_style p.description,.frm_style_rtl.with_frm_style div.description,.frm_style_rtl.with_frm_style div.frm_description,.frm_style_rtl.with_frm_style .frm-show-form > div.frm_description,.frm_style_rtl.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_rtl.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_rtl.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_rtl.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_rtl.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_rtl.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_rtl.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_rtl.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_rtl.with_frm_style .frm_pos_none{display:none;}.frm_style_rtl.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_rtl.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_rtl.with_frm_style input[type=text],.frm_style_rtl.with_frm_style input[type=password],.frm_style_rtl.with_frm_style input[type=email],.frm_style_rtl.with_frm_style input[type=number],.frm_style_rtl.with_frm_style input[type=url],.frm_style_rtl.with_frm_style input[type=tel],.frm_style_rtl.with_frm_style input[type=search],.frm_style_rtl.with_frm_style select,.frm_style_rtl.with_frm_style textarea,.frm_style_rtl.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_rtl.with_frm_style textarea{vertical-align:top;}.frm_style_rtl.with_frm_style input[type=text],.frm_style_rtl.with_frm_style input[type=password],.frm_style_rtl.with_frm_style input[type=email],.frm_style_rtl.with_frm_style input[type=number],.frm_style_rtl.with_frm_style input[type=url],.frm_style_rtl.with_frm_style input[type=tel],.frm_style_rtl.with_frm_style input[type=phone],.frm_style_rtl.with_frm_style input[type=search],.frm_style_rtl.with_frm_style select,.frm_style_rtl.with_frm_style textarea,.frm_form_fields_style,.frm_style_rtl.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_rtl.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_rtl.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color: #cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_rtl.with_frm_style input[type=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_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-show-form .frm_section_heading h3{padding:15px 0 3px 0 !important;margin:0 !important;font-size:18px !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:bold !important;color:#fff !important;border:none !important;border-top:2px solid #e8e8e8 !important;background-color:transparent !important}.frm_style_true-blue.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_true-blue.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_true-blue.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_true-blue.with_frm_style .frm_section_heading{margin-top:15px !important;}.frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_true-blue.with_frm_style .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px !important;}.frm_style_true-blue.with_frm_style .frm_repeat_sec{margin-bottom:20px !important;margin-top:20px !important;}.frm_style_true-blue.with_frm_style label.frm_primary_label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px !important;color:#fff !important;font-weight:bold !important;text-align:left !important;margin:0;padding:0 0 3px 0 !important;width:auto;display:block;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_container,.frm_style_true-blue.with_frm_style .frm_form_field .frm_show_it{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_html_container{font-size:14px !important;}.frm_style_true-blue.with_frm_style .frm_form_field .frm_show_it{font-size:14px !important;font-weight:normal;}.frm_style_true-blue.with_frm_style .frm_icon_font{color:#fff !important;}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\e633";}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\e632";}.frm_style_true-blue.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_true-blue.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff !important;vertical-align:middle;}.frm_style_true-blue.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\e60e";color:#fff !important;}.frm_style_true-blue.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\e60c";color:#fff !important;}.frm_style_true-blue.with_frm_style .form-field{margin-bottom:20px !important;}.frm_style_true-blue.with_frm_style .frm_grid,.frm_style_true-blue.with_frm_style .frm_grid_first,.frm_style_true-blue.with_frm_style .frm_grid_odd {margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style .form-field.frm_section_heading{margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style p.description,.frm_style_true-blue.with_frm_style div.description,.frm_style_true-blue.with_frm_style div.frm_description,.frm_style_true-blue.with_frm_style .frm-show-form > div.frm_description,.frm_style_true-blue.with_frm_style .frm_error{margin:0 !important;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:12px !important;color:#ffffff !important;font-weight:normal !important;text-align:left !important;font-style:normal !important;max-width:100%;}.frm_style_true-blue.with_frm_style .frm-show-form div.frm_description p{font-size:14px !important;color:#ffffff !important;margin-top:10px !important;margin-bottom:25px !important;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_true-blue.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_true-blue.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_true-blue.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline !important;}.frm_style_true-blue.with_frm_style .frm_pos_right{display:inline !important;width:150px !important;}.frm_style_true-blue.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_true-blue.with_frm_style .frm_pos_none{display:none !important;}.frm_style_true-blue.with_frm_style .frm_scale label{font-weight:normal !important;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:13px !important;color:#ffffff !important;}.frm_style_true-blue.with_frm_style .frm_required{color:#fff !important;font-weight:bold !important;}.frm_style_true-blue.with_frm_style input[type=text],.frm_style_true-blue.with_frm_style input[type=password],.frm_style_true-blue.with_frm_style input[type=email],.frm_style_true-blue.with_frm_style input[type=number],.frm_style_true-blue.with_frm_style input[type=url],.frm_style_true-blue.with_frm_style input[type=tel],.frm_style_true-blue.with_frm_style input[type=search],.frm_style_true-blue.with_frm_style select,.frm_style_true-blue.with_frm_style textarea,.frm_style_true-blue.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif !important;font-size:14px;margin-bottom:0 !important;}.frm_style_true-blue.with_frm_style textarea{vertical-align:top;}.frm_style_true-blue.with_frm_style input[type=text],.frm_style_true-blue.with_frm_style input[type=password],.frm_style_true-blue.with_frm_style input[type=email],.frm_style_true-blue.with_frm_style input[type=number],.frm_style_true-blue.with_frm_style input[type=url],.frm_style_true-blue.with_frm_style input[type=tel],.frm_style_true-blue.with_frm_style input[type=phone],.frm_style_true-blue.with_frm_style input[type=search],.frm_style_true-blue.with_frm_style select,.frm_style_true-blue.with_frm_style textarea,.frm_form_fields_style,.frm_style_true-blue.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_true-blue.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_true-blue.with_frm_style .chosen-container-single .chosen-single{color:#14568a !important;background-color:#ffffff !important;background-image:none !important;border-color: #093b63 !important;border-width:2px !important;border-style:solid !important;-moz-border-radius:5px !important;-webkit-border-radius:5px !important;border-radius:5px !important;width:100% !important;max-width:100%;font-size:14px !important;padding:6px 10px !important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none !important;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset !important;}.frm_style_true-blue.with_frm_style input[type=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_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]{border-radius:50%;}.with_frm_style .frm_checkbox input[type=checkbox]{border-radius:0;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{-webkit-appearance:none;flex: none;display:inline-block;margin:4px 5px 0 0;height:16px;width:16px;min-width:16px;border:1px solid #eee;border-color:#cccccc;vertical-align:baseline;position: initial; }.with_frm_style :invalid,.with_frm_style :-moz-submit-invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:15px;}.with_frm_style .frm_message p{margin-bottom:5px;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-top:none;border-left:none;border-right:none;}table.form_results.with_frm_style{border:1px solid #ccc;}table.form_results.with_frm_style tr td{text-align:left;color:#555555;padding:7px 9px;border-top:1px solid #cccccc;}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd{background-color:#ffffff;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar{background-color:#ffffff;box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;float:left;height:100%;line-height:20px;text-align:center;transition:width 0.6s ease 0s;width:100%;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(../images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}select.frm_loading_lookup{background-image: url(../images/ajax_loader.gif) !important;background-position: 10px;background-repeat: no-repeat;color: transparent !important;}.frm_screen_reader {border: 0;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;word-wrap: normal !important; }.frm_screen_reader.frm_hidden{display:initial;}.frm_clear_none{clear:none;}.frm_clear{clear:both;}.frm_form_field.frm_alignright{float:right !important;}.with_frm_style .frm_form_field{clear:both;}.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container{display:grid;grid-template-columns: repeat(12, 6.5%);grid-auto-rows: max-content;grid-gap: 0 2%;}.frm_combo_inputs_container > *,.frm_grid_container > *,.frm_section_heading > *,.frm_fields_container .frm_form_field,.frm_fields_container > *{grid-column: span 12 / span 12;}.frm_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;}.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 label.frm_primary_label,.frm_form_field.frm_right_container label.frm_primary_label,.frm_form_field.frm_left_container label.frm_primary_label{margin-right:10px;grid-row:span 2/span 2;padding-top:4px;}.frm_form_field.frm_left_container label.frm_primary_label{grid-column:1;grid-row:span 2/span 2; }.frm_form_field.frm_right_container label.frm_primary_label{grid-column:2;grid-row:1;margin-right:0;margin-left:10px;}.frm_form_field.frm_inline_container .frm_description,.frm_form_field.frm_left_container .frm_description{grid-column:2;}.frm_form_field.frm_right_container .frm_description{grid-column:1;}.frm_conf_field.frm_left_container{grid-template-columns: 67%;}.frm_conf_field.frm_left_container .frm_description{grid-column:1;}.frm-fade-in {-webkit-animation-name: fadeIn;animation-name: fadeIn;-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}@keyframes spin {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}@keyframes fadeIn { 0% {opacity: 0;} 100% {opacity: 1;}}@media only screen and (max-width: 700px) {.frm_form_fields .frm_fields_container{grid-gap: 0 2%;}}@media only screen and (max-width: 600px) {.frm_section_heading > .frm_form_field,.frm_fields_container > .frm_submit,.frm_grid_container > .frm_form_field,.frm_fields_container > .frm_form_field{grid-column: 1 / span 12 !important;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display:block;}}.frm_conf_field.frm_left_container label.frm_primary_label{display:none;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd{background-color:#ffffff;}.frm_grid{background-color:#ffffff;}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{visibility:hidden;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 label.frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 label.frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 label.frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 label.frm_primary_label,.frm_grid_7 label.frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 label.frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 label.frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 label.frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 label.frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 label.frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_left_container .frm_opt_container{padding-top:4px;}.with_frm_style .frm_inline_container.frm_grid_first label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display: grid;grid-template-columns: repeat(2, 1fr);grid-auto-rows: max-content;grid-gap: 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_form_field.frm_html_scroll_box{height:100px;overflow:auto;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;-moz-box-shadow:none;-webkit-box-shadow:none;width:auto !important;box-shadow:none !important;display:inline;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.frm_form_field.frm_label_justify label.frm_primary_label{text-align:justify !important;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:block;}@font-face {font-family:'s11-fp';src:url('../fonts/s11-fp.eot?v=3');src:local('☺'), url('../fonts/s11-fp.woff?v=3') format('woff'), url('../fonts/s11-fp.ttf?v=3') format('truetype'), url('../fonts/s11-fp.svg?v=3') format('svg');font-weight:normal;font-style:normal;}.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;display:inline-block;}i.frm_icon_font{font-style:normal;}.frm_icon_font:before,select.frm_icon_font{font-family: 's11-fp' !important;speak: none;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;-moz-transition: all .1s ease-in-out;-webkit-transition: all .1s ease-in-out;transition: all .1s ease-in-out;text-align:center;width: 18px;height: 18px;font-size: 18px;line-height: 1.4;vertical-align: top;}.frm_icon_font,a.frm_icon_font,.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;box-shadow:none;}.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frm_duplicate_icon:active,.frm_move_icon:active,.frm_delete_icon:active{outline:none;}.frm_trigger .frm_icon_font{padding:0 5px;}.ab-icon.frm_dashicon_font:before{content: "\f324";}.frm_logo_icon:before {content: "\e601";}.frm_required_icon:before {content: "\e612";}.frm_delete_icon:before {content: "\e610" !important;}.frm_move_icon:before {content: "\e61a";}.frm_clear_icon:before {content: "\e60a";}.frm_noclear_icon:before {content: "\e60b";}.frm_duplicate_icon:before {content: "\e61b";}.frm_new_icon:before {content: "\e614";}.frm_paste_icon:before {content: "\e901";}.frm_tooltip_icon:before {content: "\e611";}.frm_forbid_icon:before {content: "\e636";}.frm_check_icon:before {content: "\e605";}.frm_check1_icon:before {content: "\e606";}.frm_plus_icon:before {content: "\e62f";}.frm_plus1_icon:before {content: "\e602";}.frm_plus2_icon:before {content: "\e603";}.frm_plus3_icon:before {content: "\e632";}.frm_plus4_icon:before {content: "\e60f";}.frm_minus_icon:before {content: "\e62e";}.frm_minus1_icon:before {content: "\e600";}.frm_minus2_icon:before {content: "\e604";}.frm_minus3_icon:before {content: "\e633";}.frm_minus4_icon:before {content: "\e613";}.frm_cancel_icon:before {content: "\e607";}.frm_cancel1_icon:before {content: "\e608";}.frm_arrowup_icon:before {content: "\e60d";}.frm_arrowup1_icon:before {content: "\e60e";}.frm_arrowup2_icon:before {content: "\e630";}.frm_arrowup3_icon:before {content: "\e62b";}.frm_arrowup4_icon:before {content: "\e62c";}.frm_arrowup5_icon:before {content: "\e635";}.frm_arrowup6_icon:before {content: "\e62d";}.frm_arrowdown_icon:before {content: "\e609";}.frm_arrowdown1_icon:before {content: "\e60c";}.frm_arrowdown2_icon:before {content: "\e631";}.frm_arrowdown3_icon:before {content: "\e628";}.frm_arrowdown4_icon:before {content: "\e629";}.frm_arrowdown5_icon:before {content: "\e634";}.frm_arrowdown6_icon:before {content: "\e62a";}.frm_download_icon:before {content: "\e615";}.frm_upload_icon:before {content: "\e616";}.frm_menu_icon:before {content: "\e618";}.frm_twitter_icon:before {content: "\e619";}.frm_sms_icon:before {content: "\e61c";}.frm_pencil_icon:before {content: "\e61d";}.frm_pencil1_icon:before {content: "\e61e";}.frm_paypal_icon:before {content: "\e61f";}.frm_twilio_icon:before {content: "\e620";}.frm_googleplus_icon:before {content: "\e621";}.frm_google-plus-g_icon:before {content: "\f0d5";}.frm_mailchimp_icon:before {content: "\e622";}.frm_pdf_icon:before {content: "\e623";}.frm_highrise_icon:before {content: "\e617";}.frm_feed_icon:before {content: "\e624";}.frm_facebook_icon:before {content: "\e625";}.frm_email_icon:before {content: "\e626";}.frm_aweber_icon:before {content: "\e627";}.frm_register_icon:before {content: "\e637";}.frm_authorize_icon:before {content: "\e900";}.frm_stripe_icon:before {content: "\e902";}.frm_woocommerce_icon:before {content: "\e903";}.frm_wordpress_icon:before {content: "\f19a";}.frm_paragraph_icon:before {content: "\f1dd";}.frm_check-square_icon:before {content: "\f14a";}.frm_caret-square-down_icon:before {content: "\f150";}.frm_scrubber_icon:before {content: "\f2f8";}.frm_radio-checked_icon:before {content: "\ea54";}.frm_location_icon:before {content: "\e947";}.frm_toggle-on_icon:before {content: "\f205";}.frm_toggle-off_icon:before {content: "\f204";}.frm_shield-check_icon:before {content: "\f2f7";}.frm_clock-o_icon:before {content: "\f017";}.frm_link_icon:before {content: "\f0c1";}.frm_link2_icon:before {content: "\e157";}.frm_envelope_icon:before {content: "\f0e0";}.frm_envelope-o_icon:before {content: "\f003";}.frm_phone_icon:before {content: "\e942";}.frm_calendar_icon:before {content: "\f073";}.frm_upload2_icon:before {content: "\f093";}.frm_embed2_icon:before {content: "\ea80";}.frm_user_icon:before {content: "\f007";}.frm_price-tags_icon:before {content: "\e936";}.frm_search_icon:before {content: "\f002";}.frm_sitemap_icon:before {content: "\f0e8";}.frm_file-text_icon:before {content: "\f15c";}.frm_check-circle-o_icon:before {content: "\f05d";}.frm_option-icon3_icon:before {content: "\e904";}.frm-option-icon:before {content: "\e905";}.frm_more_horiz_icon:before {content: "\e5d3";}.frm_more_vert_icon:before {content: "\e5d4";}.frm_ellipsis-h_icon:before {content: "\f141";}.frm_ellipsis-v_icon:before {content: "\f142";}.frm_calculator_icon:before {content: "\f1ec";}.frm_key_icon:before {content: "\f084";}.frm_key2_icon:before {content: "\f085";}.frm_upload3_icon:before {content: "\e9c8";}.frm_download2_icon:before {content: "\f019";}.frm_list-alt_icon:before {content: "\f022";}.frm_eye_icon:before {content: "\f06e";}.frm_eye-slash_icon:before {content: "\f070";}.frm_view_agenda_icon:before {content: "\e8e9";}.frm_view_day_icon:before {content: "\e8ed";}.frm_h3_icon:before {content: "\f315";}.frm_repeat_icon:before {content: "\f363";}.frm_sliders_icon:before {content: "\f1de";}.frm_code-commit_icon:before {content: "\f386";}.frm_star-o_icon:before {content: "\f006";}.frm_star_icon:before {content: "\f005";}.frm_star-half_icon:before {content: "\f089";}.frm_linear_scale_icon:before {content: "\e260";}.frm_pause_icon:before {content: "\ea16";}.frm_pause-circle_icon:before {content: "\f28b";}.frm_view_comfy_icon:before {content: "\e42a";}.frm_sort_icon:before {content: "\f0dc";}.frm_unsorted_icon:before {content: "\f0dc";}.frm_pie-chart_icon:before {content: "\e99a";}.frm_area-chart_icon:before {content: "\f1fe";}.frm_stats-dots_icon:before {content: "\e99b";}.frm_stats-bars_icon:before {content: "\e99c";}.frm_stats-bars2_icon:before {content: "\e99d";}.frm_credit-card-alt_icon:before {content: "\f283";}.frm_cc-visa_icon:before {content: "\f1f0";}.frm_cc-mastercard_icon:before {content: "\f1f1";}.frm_cc-discover_icon:before {content: "\f1f2";}.frm_cc-amex_icon:before {content: "\f1f3";}.frm_cc-paypal_icon:before {content: "\f1f4";}.frm_cc-stripe_icon:before {content: "\f1f5";}.frm_trash-alt_icon:before {content: "\f2ed";}.frm_view_quilt_icon:before {content: "\e8f1";}.frm_line_style_icon:before {content: "\e919";}.frm_page-break_icon:before {content: "\ea68";}.frm_asterisk_icon:before {content: "\f069";}.frm_arrows_icon:before {content: "\f047";}.frm_clone_icon:before {content: "\f24d";}.frm_copy_icon:before {content: "\f0c5";}.frm_file-code_icon:before {content: "\f1c9";}.frm_file-plus_icon:before {content: "\f319";}.frm_file_icon:before {content: "\f15b";}.frm_info-circle_icon:before {content: "\f05a";}.frm_info-square_icon:before {content: "\f30f";}.frm_star-empty_icon:before {content: "\e9d7";}.frm_star-half2_icon:before {content: "\e9d8";}.frm_star-full_icon:before {content: "\e9d9";}.js .frm_logic_form:not(.frm_no_hide) {display:none;}.with_frm_style .frm_conf_field.frm_half label.frm_conf_label {overflow: hidden;white-space: nowrap;}.with_frm_style .frm_time_wrap{white-space:nowrap;}.with_frm_style select.frm_time_select{white-space:pre;display:inline;}.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;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 label.frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field label.frm_primary_label{display:inherit !important;}#ui-datepicker-div{display:none;z-index:999999 !important;}.ui-datepicker .ui-datepicker-title select.ui-datepicker-month,.ui-datepicker .ui-datepicker-title select.ui-datepicker-year {width: 33%;background-color:#fff;float:none;}.ui-datepicker select.ui-datepicker-month{margin-right: 3px;}.ui-datepicker-month, .ui-datepicker-year{max-width:100%;max-height:2em;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.ui-datepicker .ui-widget-header,.ui-datepicker .ui-datepicker-header {background: #008ec2 !important;color: #ffffff !important;}.ui-datepicker td.ui-datepicker-today{background: rgba(0,92,144,0.15) !important;}.ui-datepicker td.ui-datepicker-current-day,.ui-datepicker td .ui-state-hover,.ui-datepicker thead {background: #005c90 !important;color: #ffffff !important;}.ui-datepicker td.ui-datepicker-current-day .ui-state-default{color: #ffffff !important;}.with_frm_style .frm_scale{margin-right:10px;text-align:center;float:left;}.with_frm_style .frm_scale input{display:block;margin:0;}.frm-star-group input {display: none !important;}.frm-star-group .star-rating,.frm-star-group input + label {float:left;width:20px;height:20px;font-size:20px;line-height:1.4em;cursor:pointer;display:block;background:transparent;overflow:hidden !important;clear:none;font-style:normal;}.frm-star-group input + label:before,.frm-star-group .star-rating:before{font-family:'s11-fp';content:'\e9d7';color:#F0AD4E;display: inline-block;}.frm-star-group input[type=radio]:checked + label:before,.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before{color:#F0AD4E;}.frm-star-group:not(.frm-star-hovered) input[type=radio]:checked + label:before,.frm-star-group input + label:hover:before,.frm-star-group:hover input + label:hover:before,.frm-star-group .star-rating-on:before,.frm-star-group .star-rating-hover:before{content:'\e9d9';color:#F0AD4E;}.frm-star-group .frm_half_star:before{content:'\e9d8';}.frm-star-group .star-rating-readonly{cursor:default !important;}.with_frm_style .frm_other_input.frm_other_full{margin-top:10px;}.frm_left_container .frm_other_input{grid-column:2;}.frm_inline_container.frm_other_container .frm_other_input,.frm_left_container.frm_other_container .frm_other_input{margin-left:5px;}.frm_right_container.frm_other_container .frm_other_input{margin-right:5px;}.frm_inline_container.frm_other_container select ~ .frm_other_input,.frm_right_container.frm_other_container select ~ .frm_other_input,.frm_left_container.frm_other_container select ~ .frm_other_input{margin:0;}.frm_pagination_cont ul.frm_pagination{display:inline-block;list-style:none;margin-left:0 !important;}.frm_pagination_cont ul.frm_pagination > li{display:inline;list-style:none;margin:2px;background-image:none;}ul.frm_pagination > li.active a{text-decoration:none;}.frm_pagination_cont ul.frm_pagination > li:first-child{margin-left:0;}.archive-pagination.frm_pagination_cont ul.frm_pagination > li{margin:0;}.frmcal{padding-top:30px;}.frmcal-title{font-size:116%;}.frmcal table.frmcal-calendar{border-collapse:collapse;margin-top:20px;color:#555555;}.frmcal table.frmcal-calendar,.frmcal table.frmcal-calendar tbody tr td{border:1px solid #cccccc;}.frmcal table.frmcal-calendar,.frmcal,.frmcal-header{width:100%;}.frmcal-header{text-align:center;}.frmcal-prev{margin-right:10px;}.frmcal-prev,.frmcal-dropdown{float:left;}.frmcal-dropdown{margin-left:5px;}.frmcal-next{float:right;}.frmcal table.frmcal-calendar thead tr th{text-align:center;padding:2px 4px;}.frmcal table.frmcal-calendar tbody tr td{height:110px;width:14.28%;vertical-align:top;padding:0 !important;color:#555555;font-size:12px;}table.frmcal-calendar .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #cccccc;-webkit-box-shadow:0 2px 5px #cccccc;box-shadow:0 2px 5px #cccccc;}table.frmcal-calendar .frmcal-today .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #66afe9;-webkit-box-shadow:0 2px 5px #66afe9;box-shadow:0 2px 5px #66afe9;}.frmcal_day_name,.frmcal_num{display:inline;}.frmcal-content{padding:2px 4px;}.frm_switch_opt {padding:0 8px 0 0;white-space:normal;display:inline;vertical-align: middle;}.frm_on_label{color: #008ec2;padding:0 0 0 8px;}.frm_switch {position: relative;display: inline-block;width: 40px;height: 25px;vertical-align: middle;}.frm_switch input {display:none !important;}.frm_slider {position: absolute;cursor: pointer;top: 0;left: 0;right: 0;bottom: 0;background-color: #ccc;transition: .4s;border-radius: 30px;}.frm_slider:before {border-radius: 50%;position: absolute;content: "";height: 23px;width: 23px;left: 1px;bottom: 1px;background-color: white;transition: .4s;box-shadow:0 2px 5px #999;}input:checked + .frm_slider {background-color: #008ec2;}input:focus + .frm_slider {box-shadow: 0 0 1px #008ec2;}input:checked + .frm_slider:before {transform: translateX(15px);}.with_frm_style .frm_range_value{display:inline-block;}.with_frm_style input[type=range] {-webkit-appearance: none;box-shadow:none !important;border:none !important;cursor: pointer;padding:0 ;background:transparent !important;display: block;width: 100%;margin: 7px 0 15px;font-size:14px;}.with_frm_style input[type=range]:active,.with_frm_style input[type=range]:focus {outline: none;box-shadow:none !important;background:transparent !important;}.with_frm_style .frm_range_container{text-align:center;}.with_frm_style input[type=range]::-webkit-slider-runnable-track {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-moz-range-track {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;border-color: transparent;border-width: 39px 0;color: transparent;}.with_frm_style input[type=range]::-ms-fill-lower {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-ms-fill-upper {border-radius: 0;border: none;height: 4px;background-color: #ccc;animate: 0.2s;}.with_frm_style input[type=range]::-webkit-slider-thumb {-webkit-appearance: none;-webkit-border-radius: 20px;height: 2em;width: 2em;border-radius: 20px;border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;cursor: pointer;margin-top: -.9em;}.with_frm_style input[type=range]::-moz-range-thumb {height: 2em;width: 2em;border-radius: 20px;border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;cursor: pointer;-moz-border-radius: 20px;}.with_frm_style input[type=range]::-ms-thumb {height: 2em;width: 2em;border-radius: 20px;border: 1px solid rgba(0,142,194,0.6);color:#ffffff;background-color: #008ec2;cursor: pointer;}@media screen and (max-width: 768px) {.frm-pass-req, .frm-pass-verified {width: 50% !important;white-space: nowrap;}}.frm-pass-req, .frm-pass-verified {float: left;width: 20%;line-height: 20px;font-size: 12px;padding-top: 4px;min-width: 175px;}.frm-pass-req:before, .frm-pass-verified:before {padding-right: 4px;font-size: 12px !important;vertical-align: middle !important;}span.frm-pass-verified::before {content: '\e606';}span.frm-pass-req::before {content: '\e608';}div.frm-password-strength {width: 100%;float: left;}.with_frm_style .chosen-container{font-size:14px;position:relative;display:inline-block;zoom:1;vertical-align:middle;width:100% !important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.with_frm_style .chosen-container * { -webkit-box-sizing: border-box; box-sizing: border-box;}.with_frm_style .chosen-container .chosen-drop{background:#fff;border:1px solid #aaa;border-top:0;position:absolute;top:100%;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;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));background-image: linear-gradient(#eee 1%, #fff 15%);cursor:text;}.with_frm_style .chosen-container-multi .chosen-choices li{float:left;list-style:none;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{margin:1px 0;padding:0 !important;height:25px;outline:0;border:0 !important;background:transparent !important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;width: 25px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:1px 5px 1px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);color:#333;line-height:13px;cursor:default;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice span {word-wrap: break-word;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') -42px 1px no-repeat;font-size:1px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);color:#666;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-results{margin:0;padding:0;}.with_frm_style .chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container-single.chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;border-bottom-right-radius:0;border-bottom-left-radius:0;box-shadow:0 1px 0 #fff inset;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent;}.with_frm_style .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px;}.with_frm_style .chosen-container-active .chosen-choices {border: 1px solid #5897fb;-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#111 !important;}.with_frm_style .chosen-disabled{opacity:0.5 !important;cursor:default;}.with_frm_style .chosen-disabled .chosen-single{cursor:default;}.with_frm_style .chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default;}.with_frm_style .chosen-rtl{text-align:right;}.with_frm_style .chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0;}.with_frm_style .chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl;}.with_frm_style .chosen-rtl .chosen-single-with-deselect span{margin-left:38px;}.with_frm_style .chosen-rtl .chosen-single div{right:auto;left:3px;}.with_frm_style .chosen-rtl .chosen-single abbr{right:auto;left:26px;}.with_frm_style .chosen-rtl .chosen-choices li{float:right;}.with_frm_style .chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice{margin:1px 5px 1px 0;padding:3px 5px 3px 19px;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0;}.with_frm_style .chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0;}.with_frm_style .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none;}.with_frm_style .chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;background:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite.png') no-repeat -30px -20px;direction:rtl;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px;}.with_frm_style .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px;}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi){.with_frm_style .chosen-rtl .chosen-search input[type="text"],.with_frm_style .chosen-container-single .chosen-single abbr,.with_frm_style .chosen-container-single .chosen-single div b,.with_frm_style .chosen-container-single .chosen-search input[type="text"],.with_frm_style .chosen-container-multi .chosen-choices .search-choice .search-choice-close,.with_frm_style .chosen-container .chosen-results-scroll-down span,.with_frm_style .chosen-container .chosen-results-scroll-up span{background-image:url('//localhost.localdomain/wordpress2/wp-content/plugins/formidable-pro/images/chosen-sprite2x.png') !important;background-size:52px 37px !important;background-repeat:no-repeat !important;}}@-webkit-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-moz-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-webkit-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@-moz-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}.frm_dropzone, .frm_dropzone * {box-sizing: border-box;}.frm_dropzone.dz-clickable {min-height: 150px;margin-top:5px;line-height:1.42857143;}.frm_dropzone.dz-clickable * {cursor: default;}.frm_dropzone.dz-clickable.frm_single_upload{max-width: 200px;}.frm_dropzone.dz-clickable.frm_single_upload.dz-started {max-width: 300px;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_form_field.frm_full .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_form_field.frm_full_upload .frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: .5em 0 1em;}.frm_dropzone .dz-message{border: 2px dashed #dfdfdf;background:#ffffff;padding: 20px;border-radius:5px;cursor: pointer;display:none;font-size:20px;text-align: center;margin: .5em 0 1em;}.frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: 0 0 .5em 0;}.frm_dropzone.frm_single_upload.dz-started .dz-message{display: none;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone .frm_upload_icon{display:block;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone.dz-clickable .dz-message * {cursor: pointer;}#frm_form_editor_container .frm_dropzone.dz-clickable,#frm_form_editor_container .frm_dropzone.dz-clickable *{cursor: default;}.frm_dropzone.dz-drag-hover .dz-message {opacity: 0.5;}.frm_dropzone .frm_upload_icon:before{font-size:40px;}.frm_dropzone .frm_small_text {font-size:14px;}.frm_dropzone.dz-drag-hover {border-style: solid;}.frm_dropzone .dz-preview {padding: 15px 0;border-bottom: 1px solid #dfdfdf;}.frm_dropzone .dz-preview:last-child {border-bottom: none;}.frm_dropzone .dz-preview:hover {z-index: 1000;}.frm_dropzone .dz-preview.dz-file-preview .dz-details {opacity: 1;}.frm_dropzone .dz-preview.dz-image-preview .dz-details {-webkit-transition: opacity 0.2s linear;-moz-transition: opacity 0.2s linear;-ms-transition: opacity 0.2s linear;-o-transition: opacity 0.2s linear;transition: opacity 0.2s linear;}.frm_dropzone .dz-preview .dz-remove {cursor: pointer;border: none;float: right;}.frm_dropzone .dz-preview:hover .dz-details {opacity: 1;}.frm_dropzone .dz-preview .dz-details {font-size: 14px;margin: 5px 0 10px;}.frm_dropzone .dz-preview .dz-details .dz-size,.frm_dropzone .dz-preview .dz-details .dz-filename {display: inline-block;overflow: hidden;white-space: nowrap;}.frm_dropzone .dz-preview .dz-details .dz-size strong {font-weight: normal;}.frm_dropzone .dz-preview .dz-details .dz-filename {max-width: 75%;text-overflow: ellipsis;padding-right: 5px;}.frm_dropzone .dz-preview .dz-details .dz-filename a{cursor:pointer;}.frm_dropzone .dz-preview .dz-column {float: right;width: 68%;}.frm_dropzone .dz-preview .dz-image {overflow: hidden;width: 30%;height: 60px;display: block;float: left;margin-right: 2%;}.frm_dropzone .dz-preview .dz-image img {display: block;margin:0 auto;max-height: 60px;}.frm_dropzone .dz-preview.dz-success .dz-success-mark {-webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);}.frm_dropzone .dz-preview.dz-processing .dz-progress {-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;-ms-transition: all 0.2s linear;-o-transition: all 0.2s linear;transition: all 0.2s linear;}.frm_dropzone .dz-preview .dz-progress {pointer-events: none;position: relative;height: 10px;width: 100%;background: rgba(221, 221, 221, 1);-webkit-transform: scale(1);border-radius: 8px;overflow: hidden;}.frm_dropzone .dz-preview .dz-progress .dz-upload,.frm_dropzone .dz-preview.dz-complete .dz-progress{background: #333;background: linear-gradient(to bottom, #666, #444);}.frm_dropzone .dz-preview .dz-progress .dz-upload {position: absolute;top: 0;left: 0;bottom: 0;width: 0;-webkit-transition: width 300ms ease-in-out;-moz-transition: width 300ms ease-in-out;-ms-transition: width 300ms ease-in-out;-o-transition: width 300ms ease-in-out;transition: width 300ms ease-in-out;}.frm_dropzone .dz-preview.dz-error .dz-error-message {display: block;opacity: 1;pointer-events: auto;}.frm_dropzone .dz-preview .dz-error-message {pointer-events: none;display: none;opacity: 0;-webkit-transition: opacity 0.3s ease;-moz-transition: opacity 0.3s ease;-ms-transition: opacity 0.3s ease;-o-transition: opacity 0.3s ease;transition: opacity 0.3s ease;color: #B94A48;padding: 0.5em;}.frm_dropzone .fallback input[type=file]{display:block;}.frm_compact_text{display:none;}.frm_compact .frm_dropzone.dz-clickable{min-height:60px;padding:0;border:none;background-color:transparent;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_compact .frm_compact_text{display:inline;}.frm_compact .frm_dropzone.frm_single_upload.dz-started .dz-message,.frm_compact .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_compact .frm_dropzone.dz-clickable .dz-message{font-size:14px;border:1px solid #dfdfdf;background:#fff;display: inline-block;border-radius: 4px;padding: 6px 11px;box-sizing: border-box;box-shadow: 0 1px 1px #eeeeee;vertical-align: middle;margin: 0 0 1em;}.frm_compact .frm_dropzone .frm_upload_icon:before{font-size:22px;padding-right:7px;vertical-align: middle;}.frm_compact .frm_dropzone .frm_upload_icon{display:inline;}.frm_compact .frm_dropzone .dz-preview{min-height:20px;max-width:200px;margin: 0 5px;padding: 0;display: inline-block;border-bottom: none;}.frm_compact .frm_dropzone .dz-preview.frm_clearfix:after {content:'';}.frm_compact .frm_dropzone .frm_upload_text,.frm_compact .frm_dropzone .frm_small_text,.frm_compact .frm_dropzone .dz-preview .dz-image,.frm_compact .frm_dropzone .dz-preview .dz-details .dz-size{display:none;}.frm_compact .frm_dropzone .dz-preview .dz-details {margin: 0;}.frm_compact .frm_dropzone .dz-preview .dz-column {float: none;width: 100%;}.frm_compact .frm_dropzone .dz-preview .dz-details .dz-filename {overflow: hidden;text-overflow: ellipsis;}.frm-show-form .dz-hidden-input{display:none;}.frm_rootline_group{margin: 20px 0 30px;}ul.frm_page_bar{list-style-type: none;margin: 0 !important;padding: 0;width: 100%;float: left;display: table;display: -webkit-flex;display: flex;flex-wrap: wrap;box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;}ul.frm_page_bar li{display: inline-block;-ms-flex: 1;flex: 1;}.frm_forms .frm_page_bar input,.frm_forms .frm_page_bar input:disabled{transition: background-color 0.1s ease;color: #ffffff;background-color: #dddddd;font-size: 18px;border-width: 2px;border-style: solid;border-color: #dfdfdf;}.frm_forms .frm_page_bar input:focus{outline: none;}.frm_forms .frm_progress_line input.frm_page_back{background-color: #008ec2;}.frm_forms .frm_page_bar .frm_current_page input[type="button"]{background-color: #dddddd;border-color: #dfdfdf;}.frm_rootline_single{text-align: center;margin: 0;padding: 0;}.frm_current_page .frm_rootline_title{color: #008ec2;}.frm_rootline_title,.frm_pages_complete,.frm_percent_complete {font-size:14px;padding:4px;}.frm_pages_complete {float: right;margin-right:13px;}.frm_percent_complete {float: left;margin-left:13px;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled {width: 100%;border: none;border-top: 1px solid #dfdfdf;border-bottom: 1px solid #dfdfdf;box-shadow: inset 0 10px 20px -15px #aaa;margin: 5px 0;padding: 6px 0;border-radius:0;font-size:0;line-height:15px;}.frm_forms .frm_progress_line.frm_show_lines input {border-left: 1px solid #ffffff;border-right: 1px solid #ffffff;}.frm_progress_line .frm_rootline_single {display: flex;flex-direction: column;justify-content: flex-end;}.frm_forms .frm_progress_line li:first-of-type input {border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-left: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-right: 1px solid #008ec2;}.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-right: 1px solid #dfdfdf;}.frm_forms .frm_progress_line .frm_current_page input[type="button"] {border-left: 1px solid #dfdfdf;}.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-right: 1px solid #ffffff;}.frm_forms .frm_progress_line input.frm_page_back {border-color: #008ec2;}.frm_forms .frm_progress_line.frm_show_lines input.frm_page_back{border-left-color: #008ec2;border-right-color: #ffffff;}.frm_rtl.frm_forms .frm_progress_line li:first-of-type input {border-top-right-radius: 15px;border-bottom-right-radius: 15px;border-top-left-radius:0px;border-bottom-left-radius:0px;border-right: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input{border-top-left-radius: 15px;border-bottom-left-radius: 15px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-left: 1px solid #008ec2;}.frm_rtl.frm_forms .frm_progress_line li:last-of-type input.frm_page_skip {border-left: 1px solid #dfdfdf;border-right:none;}.frm_rtl.frm_forms .frm_progress_line .frm_current_page input[type="button"] {border-right: 1px solid #dfdfdf;border-left:none;}.frm_rtl.frm_forms .frm_progress_line.frm_show_lines .frm_current_page input[type="button"] {border-left: 1px solid #ffffff;border-right:none;}.frm_rootline.frm_show_lines:before {border-top-width: 2px;border-top-style: solid;border-top-color: #dfdfdf;content: "";margin: 0 auto;position: absolute;top: 15px;left: 0;right: 0;bottom: 0;width: 100%;z-index: -1;}.frm_rootline.frm_show_lines{position: relative;z-index: 1;}.frm_rootline.frm_show_lines span{display:block;}.frm_forms .frm_rootline input {width: 30px;height: 30px;min-height:auto;border-radius: 30px;padding:0;}.frm_forms .frm_rootline input:focus {border-color: #008ec2;}.frm_forms .frm_rootline .frm_current_page input[type="button"] {border-color: #007aae;background-color: #008ec2;color: #ffffff;}.frm_forms .frm_progress_line input,.frm_forms .frm_progress_line input:disabled,.frm_forms .frm_progress_line .frm_current_page input[type="button"],.frm_forms .frm_rootline.frm_no_numbers input,.frm_forms .frm_rootline.frm_no_numbers .frm_current_page input[type="button"] {color: transparent !important;}@media only screen and (max-width: 700px) {.frm_progress span.frm_rootline_title,.frm_rootline.frm_rootline_10 span.frm_rootline_title,.frm_rootline.frm_rootline_9 span.frm_rootline_title,.frm_rootline.frm_rootline_8 span.frm_rootline_title,.frm_rootline.frm_rootline_7 span.frm_rootline_title,.frm_rootline.frm_rootline_6 span.frm_rootline_title,.frm_rootline.frm_rootline_5 span.frm_rootline_title{display:none;}}@media only screen and (max-width: 500px) {.frm_rootline.frm_rootline_4 span.frm_rootline_title,.frm_rootline.frm_rootline_3 span.frm_rootline_title{display:none;}}.with_frm_style.frm_login_form,.with_frm_style.frm_login_form form{clear:both;}.frm_login_form .login_lost_pw.frm_half{text-align:right;}.frm_inline_login.frm_no_labels .frm_submit input,.frm_inline_login.frm_no_labels .frm_submit button{margin-top:0 !important;}.with_frm_style.frm_login_form.frm_slide.frm_inline_login form,.with_frm_style.frm_login_form.frm_slide.frm_inline_login form{clear:none;}.with_frm_style.frm_slide.frm_inline_login .frm-open-login{float:left;margin-right:15px;}.with_frm_style.frm_slide form,.frm_slide form,.with_frm_style.frm_slide.frm_inline_login a.forgot-password,.with_frm_style.frm_slide.frm_inline_login .login-remember{display:none;}.with_frm_style.frm_slide.frm_inline_login .frm_form_field,.with_frm_style.frm_slide.frm_inline_login .frm_submit input{margin-bottom:0;}.with_frm_style.frm_slide.frm_inline_login fieldset{padding-bottom:0;}.with_frm_style.frm_login_form.frm_inline_login .login-username,.with_frm_style.frm_login_form.frm_inline_login .login-password,.with_frm_style.frm_login_form.frm_inline_login .login-remember{margin-right:0 !important;}.with_frm_style.frm_login_form.frm_inline_login form,.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:static !important;}.with_frm_style.frm_login_form a{text-decoration:none;border:none;outline:none;box-shadow:none;}.with_frm_style.frm_login_form .cptch_block .cptch_title{display:none;}@media only screen and (max-width: 600px) {.frm_login_form .login_lost_pw.frm_half{text-align:left;}.with_frm_style .login-remember.frm_first.frm_half,.with_frm_style.frm_login_form .login_lost_pw.frm_half{text-align:center;}.with_frm_style.frm_slide.frm_inline_login .frm_form_field,.with_frm_style.frm_slide.frm_inline_login .frm_submit input{margin-bottom:20px;}}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth label.frm_primary_label{display: block !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(2, 1fr);}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style .frm-g-recaptcha > div > div,.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);-moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe,.with_frm_style .frm-g-recaptcha iframe{width:100%;}}.color > .red,.red{color:red;}#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;}
css/frm_admin.css CHANGED
@@ -688,16 +688,16 @@ input.frm_insert_in_template{
688
  margin:6px 40px;
689
  padding:0;
690
  }
691
- label.frm_primary_label,
692
- #frm_form_editor_container label.frm_primary_label{
693
  font-weight:bold;
694
  }
695
- .form-field label.frm_primary_label{
696
  display:block;
697
  float:none;
698
  width:auto;
699
  }
700
- #frm_form_editor_container label.frm_primary_label{
701
  color:#444;
702
  margin:0;
703
  padding:0;
@@ -706,11 +706,11 @@ label.frm_primary_label,
706
  min-height:20px;
707
  }
708
 
709
- #frm_form_editor_container label.frm_primary_label:hover{
710
  cursor:text;
711
  }
712
 
713
- form label.frm_primary_label input{font-size:12px;}
714
  .with_frm_style form .form-field{margin-bottom:20px;}
715
  .with_frm_style form div.description,
716
  .frm_error,
@@ -719,7 +719,7 @@ form label.frm_primary_label input{font-size:12px;}
719
  font-size:11px;
720
  }
721
 
722
- #frm_form_editor_container .divider_section_only label.frm_primary_label {
723
  font-size:16px;
724
  }
725
 
@@ -1024,6 +1024,8 @@ h2.frm-h2 + .howto{
1024
  margin-bottom:0;
1025
  }
1026
 
 
 
1027
  #frm-templates-page .error,
1028
  .frm-add-new-form .error{
1029
  display:none;
@@ -1718,7 +1720,7 @@ table td, .form-table tr td{vertical-align:top;}
1718
  display:none;
1719
  }
1720
 
1721
- #frm_form_editor_container .subform_section label.frm_primary_label{
1722
  display:block;
1723
  }
1724
 
688
  margin:6px 40px;
689
  padding:0;
690
  }
691
+ .frm_primary_label,
692
+ #frm_form_editor_container .frm_primary_label{
693
  font-weight:bold;
694
  }
695
+ .form-field .frm_primary_label{
696
  display:block;
697
  float:none;
698
  width:auto;
699
  }
700
+ #frm_form_editor_container .frm_primary_label{
701
  color:#444;
702
  margin:0;
703
  padding:0;
706
  min-height:20px;
707
  }
708
 
709
+ #frm_form_editor_container .frm_primary_label:hover{
710
  cursor:text;
711
  }
712
 
713
+ form .frm_primary_label input{font-size:12px;}
714
  .with_frm_style form .form-field{margin-bottom:20px;}
715
  .with_frm_style form div.description,
716
  .frm_error,
719
  font-size:11px;
720
  }
721
 
722
+ #frm_form_editor_container .divider_section_only .frm_primary_label {
723
  font-size:16px;
724
  }
725
 
1024
  margin-bottom:0;
1025
  }
1026
 
1027
+ #frm-templates-page .notice,
1028
+ .frm-add-new-form .notice,
1029
  #frm-templates-page .error,
1030
  .frm-add-new-form .error{
1031
  display:none;
1720
  display:none;
1721
  }
1722
 
1723
+ #frm_form_editor_container .subform_section .frm_primary_label{
1724
  display:block;
1725
  }
1726
 
css/frm_grids.css CHANGED
@@ -262,20 +262,20 @@
262
  grid-template-columns: repeat(2, minmax(auto, max-content) );
263
  }
264
 
265
- .frm_form_field.frm_inline_container label.frm_primary_label,
266
- .frm_form_field.frm_right_container label.frm_primary_label,
267
- .frm_form_field.frm_left_container label.frm_primary_label{
268
  margin-right:10px;
269
  grid-row:span 2/span 2;
270
  padding-top:4px;
271
  }
272
 
273
- .frm_form_field.frm_left_container label.frm_primary_label{
274
  grid-column:1;
275
  grid-row:span 2/span 2; /* cover a row for the description */
276
  }
277
 
278
- .frm_form_field.frm_right_container label.frm_primary_label{
279
  grid-column:2;
280
  grid-row:1;
281
  margin-right:0;
262
  grid-template-columns: repeat(2, minmax(auto, max-content) );
263
  }
264
 
265
+ .frm_form_field.frm_inline_container .frm_primary_label,
266
+ .frm_form_field.frm_right_container .frm_primary_label,
267
+ .frm_form_field.frm_left_container .frm_primary_label{
268
  margin-right:10px;
269
  grid-row:span 2/span 2;
270
  padding-top:4px;
271
  }
272
 
273
+ .frm_form_field.frm_left_container .frm_primary_label{
274
  grid-column:1;
275
  grid-row:span 2/span 2; /* cover a row for the description */
276
  }
277
 
278
+ .frm_form_field.frm_right_container .frm_primary_label{
279
  grid-column:2;
280
  grid-row:1;
281
  margin-right:0;
css/frm_old_grids.css CHANGED
@@ -219,14 +219,14 @@
219
  display:block;
220
  }
221
 
222
- .frm_form_field.frm_left_container label.frm_primary_label{
223
  float:left;
224
  display:inline;
225
  max-width:33%;
226
  margin-right:5%;
227
  }
228
 
229
- .with_frm_style .frm_conf_field.frm_left_container label.frm_primary_label{
230
  display:inline;
231
  visibility:hidden;
232
  }
@@ -301,7 +301,7 @@
301
  max-width:33%;
302
  }
303
 
304
- .with_frm_style .frm_left_container label.frm_primary_label{
305
  float:left;
306
  display:inline !important;
307
  width:150px;
@@ -309,7 +309,7 @@
309
  margin-right:10px !important;
310
  }
311
 
312
- .with_frm_style .frm_right_container label.frm_primary_label{
313
  display:inline !important;
314
  width:150px;
315
  max-width:33% !important;
@@ -364,7 +364,7 @@
364
  margin-right:10px !important;
365
  }
366
 
367
- .with_frm_style .frm_left_container.frm_inline label.frm_primary_label{
368
  max-width:90% !important;
369
  }
370
 
@@ -379,12 +379,12 @@
379
  max-width:100%;
380
  }
381
 
382
- .with_frm_style .frm_inline_container label.frm_primary_label,
383
  .with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{
384
  display:inline !important;
385
  }
386
 
387
- .with_frm_style .frm_inline_container label.frm_primary_label{
388
  margin-right:10px !important;
389
  }
390
  /* End of left and right label styling */
@@ -530,8 +530,8 @@
530
  display:none !important;
531
  }
532
 
533
- .with_frm_style .frm_left_container label.frm_primary_label,
534
- .with_frm_style .frm_right_container label.frm_primary_label{
535
  width:100% !important;
536
  max-width:100% !important;
537
  margin-right:0 !important;
219
  display:block;
220
  }
221
 
222
+ .frm_form_field.frm_left_container .frm_primary_label{
223
  float:left;
224
  display:inline;
225
  max-width:33%;
226
  margin-right:5%;
227
  }
228
 
229
+ .with_frm_style .frm_conf_field.frm_left_container .frm_primary_label{
230
  display:inline;
231
  visibility:hidden;
232
  }
301
  max-width:33%;
302
  }
303
 
304
+ .with_frm_style .frm_left_container .frm_primary_label{
305
  float:left;
306
  display:inline !important;
307
  width:150px;
309
  margin-right:10px !important;
310
  }
311
 
312
+ .with_frm_style .frm_right_container .frm_primary_label{
313
  display:inline !important;
314
  width:150px;
315
  max-width:33% !important;
364
  margin-right:10px !important;
365
  }
366
 
367
+ .with_frm_style .frm_left_container.frm_inline .frm_primary_label{
368
  max-width:90% !important;
369
  }
370
 
379
  max-width:100%;
380
  }
381
 
382
+ .with_frm_style .frm_inline_container .frm_primary_label,
383
  .with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{
384
  display:inline !important;
385
  }
386
 
387
+ .with_frm_style .frm_inline_container .frm_primary_label{
388
  margin-right:10px !important;
389
  }
390
  /* End of left and right label styling */
530
  display:none !important;
531
  }
532
 
533
+ .with_frm_style .frm_left_container .frm_primary_label,
534
+ .with_frm_style .frm_right_container .frm_primary_label{
535
  width:100% !important;
536
  max-width:100% !important;
537
  margin-right:0 !important;
formidable.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Formidable Forms
4
  Description: Quickly and easily create drag-and-drop forms
5
- Version: 3.06
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
2
  /*
3
  Plugin Name: Formidable Forms
4
  Description: Quickly and easily create drag-and-drop forms
5
+ Version: 3.06.01
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
js/formidable.js CHANGED
@@ -9,7 +9,7 @@ function frmFrontFormJS(){
9
  function maybeShowLabel(){
10
  /*jshint validthis:true */
11
  var $field = jQuery(this);
12
- var $label = $field.closest('.frm_inside_container').find('label.frm_primary_label');
13
 
14
  if ( $field.val().length > 0 ) {
15
  $label.addClass('frm_visible');
@@ -570,8 +570,10 @@ function frmFrontFormJS(){
570
  if ( typeof frmThemeOverride_frmPlaceError === 'function' ) {
571
  frmThemeOverride_frmPlaceError( key, jsErrors );
572
  } else {
573
- $fieldCont.append( '<div class="frm_error">'+ jsErrors[key] +'</div>' );
574
  }
 
 
575
  jQuery(document).trigger('frmAddFieldError', [ $fieldCont, key, jsErrors ] );
576
  }
577
  }
@@ -579,6 +581,7 @@ function frmFrontFormJS(){
579
  function removeFieldError( $fieldCont ) {
580
  $fieldCont.removeClass('frm_blank_field has-error');
581
  $fieldCont.find('.frm_error').remove();
 
582
  }
583
 
584
  function removeAllErrors() {
@@ -595,13 +598,16 @@ function frmFrontFormJS(){
595
  }
596
 
597
  function showSubmitLoading( $object ) {
 
 
 
 
 
598
  if ( !$object.hasClass('frm_loading_form') ) {
599
  $object.addClass('frm_loading_form');
600
 
601
  $object.trigger( 'frmStartFormLoading' );
602
  }
603
-
604
- disableSubmitButton( $object );
605
  }
606
 
607
  function removeSubmitLoading( $object, enable, processesRunning ) {
@@ -829,6 +835,7 @@ function frmFrontFormJS(){
829
  };
830
  if ( size === 'invisible' ) {
831
  var formID = jQuery(captcha).closest('form').find('input[name="form_id"]').val();
 
832
  params.callback = function(token) {
833
  frmFrontForm.afterRecaptcha(token, formID);
834
  };
@@ -877,7 +884,7 @@ function frmFrontFormJS(){
877
  }
878
 
879
  if ( invisibleRecaptcha.length ) {
880
- showSubmitLoading( jQuery(object) );
881
  executeInvisibleRecaptcha( invisibleRecaptcha );
882
  } else {
883
 
9
  function maybeShowLabel(){
10
  /*jshint validthis:true */
11
  var $field = jQuery(this);
12
+ var $label = $field.closest('.frm_inside_container').find('.frm_primary_label');
13
 
14
  if ( $field.val().length > 0 ) {
15
  $label.addClass('frm_visible');
570
  if ( typeof frmThemeOverride_frmPlaceError === 'function' ) {
571
  frmThemeOverride_frmPlaceError( key, jsErrors );
572
  } else {
573
+ $fieldCont.append( '<div class="frm_error" id="frm_error_' + key + '">'+ jsErrors[key] +'</div>' );
574
  }
575
+ $fieldCont.find( 'input, select, textarea' ).attr( 'aria-invalid', true );
576
+
577
  jQuery(document).trigger('frmAddFieldError', [ $fieldCont, key, jsErrors ] );
578
  }
579
  }
581
  function removeFieldError( $fieldCont ) {
582
  $fieldCont.removeClass('frm_blank_field has-error');
583
  $fieldCont.find('.frm_error').remove();
584
+ $fieldCont.find( 'input, select, textarea' ).attr( 'aria-invalid', false );
585
  }
586
 
587
  function removeAllErrors() {
598
  }
599
 
600
  function showSubmitLoading( $object ) {
601
+ showLoadingIndicator( $object );
602
+ disableSubmitButton( $object );
603
+ }
604
+
605
+ function showLoadingIndicator( $object ) {
606
  if ( !$object.hasClass('frm_loading_form') ) {
607
  $object.addClass('frm_loading_form');
608
 
609
  $object.trigger( 'frmStartFormLoading' );
610
  }
 
 
611
  }
612
 
613
  function removeSubmitLoading( $object, enable, processesRunning ) {
835
  };
836
  if ( size === 'invisible' ) {
837
  var formID = jQuery(captcha).closest('form').find('input[name="form_id"]').val();
838
+ jQuery(captcha).closest('.frm_form_field').hide();
839
  params.callback = function(token) {
840
  frmFrontForm.afterRecaptcha(token, formID);
841
  };
884
  }
885
 
886
  if ( invisibleRecaptcha.length ) {
887
+ showLoadingIndicator( jQuery(object) );
888
  executeInvisibleRecaptcha( invisibleRecaptcha );
889
  } else {
890
 
js/formidable.min.js CHANGED
@@ -1,4 +1,4 @@
1
- function frmFrontFormJS(){var action="";var jsErrors=[];function maybeShowLabel(){var $field=jQuery(this);var $label=$field.closest(".frm_inside_container").find("label.frm_primary_label");if($field.val().length>0)$label.addClass("frm_visible");else $label.removeClass("frm_visible")}function getFieldId(field,fullID){var fieldName="";if(field instanceof jQuery)fieldName=field.attr("name");else fieldName=field.name;if(fieldName===""){if(field instanceof jQuery)fieldName=field.data("name");else fieldName=
2
  field.getAttribute("data-name");if(fieldName!==""&&fieldName)return fieldName;return 0}var nameParts=fieldName.replace("item_meta[","").replace("[]","").split("]");if(nameParts.length<1)return 0;nameParts=nameParts.filter(function(n){return n!==""});var field_id=nameParts[0];var isRepeating=false;if(nameParts.length===1)return field_id;if(nameParts[1]==="[form"||nameParts[1]==="[row_ids")return 0;if(jQuery('input[name="item_meta['+field_id+'][form]"]').length){field_id=nameParts[2].replace("[","");
3
  isRepeating=true}if("other"===field_id)if(isRepeating)field_id=nameParts[3].replace("[","");else field_id=nameParts[1].replace("[","");if(fullID===true)if(field_id===nameParts[0])field_id=field_id+"-"+nameParts[1].replace("[","");else field_id=field_id+"-"+nameParts[0]+"-"+nameParts[1].replace("[","");return field_id}function disableSubmitButton($form){$form.find('input[type="submit"], input[type="button"], button[type="submit"]').attr("disabled","disabled")}function enableSubmitButton($form){$form.find('input[type="submit"], input[type="button"], button[type="submit"]').removeAttr("disabled")}
4
  function validateForm(object){var errors=[];var requiredFields=jQuery(object).find(".frm_required_field:visible input, .frm_required_field:visible select, .frm_required_field:visible textarea").filter(":not(.frm_optional)");if(requiredFields.length)for(var r=0,rl=requiredFields.length;r<rl;r++)errors=checkRequiredField(requiredFields[r],errors);var emailFields=jQuery(object).find("input[type=email]").filter(":visible");var fields=jQuery(object).find("input,select,textarea");if(fields.length)for(var n=
@@ -20,30 +20,30 @@ jQuery(object).closest(".frm_forms");removeAddedScripts(replaceContent,formID);r
20
  key,response.errors);cont_submit=false;var $recaptcha=jQuery(object).find("#frm_field_"+key+"_container .frm-g-recaptcha, #frm_field_"+key+"_container .g-recaptcha");if($recaptcha.length){show_captcha=true;var recaptchaID=$recaptcha.data("rid");if(jQuery().grecaptcha)if(recaptchaID)grecaptcha.reset(recaptchaID);else grecaptcha.reset()}}}}jQuery(document).trigger("frmFormErrors",[object,response]);fieldset.removeClass("frm_doing_ajax");scrollToFirstField(object);if(show_captcha!==true)replaceCheckedRecaptcha(object,
21
  false);if(cont_submit)object.submit();else jQuery(object).prepend(response.error_message)}else{showFileLoading(object);replaceCheckedRecaptcha(object,true);object.submit()}},error:function(){jQuery(object).find('input[type="submit"], input[type="button"]').removeAttr("disabled");object.submit()}})}function afterFormSubmitted(object,response){var formCompleted=jQuery(response.content).find(".frm_message");if(formCompleted.length)jQuery(document).trigger("frmFormComplete",[object,response]);else jQuery(document).trigger("frmPageChanged",
22
  [object,response])}function removeAddedScripts(formContainer,formID){var endReplace=jQuery(".frm_end_ajax_"+formID);if(endReplace.length){formContainer.nextUntil(".frm_end_ajax_"+formID).remove();endReplace.remove()}}function addUrlParam(response){if(history.pushState&&typeof response.page!=="undefined"){var url=addQueryVar("frm_page",response.page);window.history.pushState({"html":response.html},"","?"+url)}}function addQueryVar(key,value){key=encodeURI(key);value=encodeURI(value);var kvp=document.location.search.substr(1).split("&");
23
- var i=kvp.length;var x;while(i--){x=kvp[i].split("=");if(x[0]==key){x[1]=value;kvp[i]=x.join("=");break}}if(i<0)kvp[kvp.length]=[key,value].join("=");return kvp.join("&")}function addFieldError($fieldCont,key,jsErrors){if($fieldCont.length&&$fieldCont.is(":visible")){$fieldCont.addClass("frm_blank_field");if(typeof frmThemeOverride_frmPlaceError==="function")frmThemeOverride_frmPlaceError(key,jsErrors);else $fieldCont.append('<div class="frm_error">'+jsErrors[key]+"</div>");jQuery(document).trigger("frmAddFieldError",
24
- [$fieldCont,key,jsErrors])}}function removeFieldError($fieldCont){$fieldCont.removeClass("frm_blank_field has-error");$fieldCont.find(".frm_error").remove()}function removeAllErrors(){jQuery(".form-field").removeClass("frm_blank_field has-error");jQuery(".form-field .frm_error").replaceWith("");jQuery(".frm_error_style").remove()}function scrollToFirstField(object){var field=jQuery(object).find(".frm_blank_field:first");if(field.length)frmFrontForm.scrollMsg(field,object,true)}function showSubmitLoading($object){if(!$object.hasClass("frm_loading_form")){$object.addClass("frm_loading_form");
25
- $object.trigger("frmStartFormLoading")}disableSubmitButton($object)}function removeSubmitLoading($object,enable,processesRunning){if(processesRunning>0)return;$object.removeClass("frm_loading_form");$object.trigger("frmEndFormLoading");if(enable==="enable")enableSubmitButton($object)}function showFileLoading(object){var loading=document.getElementById("frm_loading");if(loading!==null){var file_val=jQuery(object).find("input[type=file]").val();if(typeof file_val!=="undefined"&&file_val!=="")setTimeout(function(){jQuery(loading).fadeIn("slow")},
26
- 2E3)}}function replaceCheckedRecaptcha(object,checkPage){var $recapField=jQuery(object).find(".frm-g-recaptcha, .g-recaptcha");if($recapField.length){if(checkPage){var morePages=jQuery(object).find(".frm_next_page").length<1||jQuery(object).find(".frm_next_page").val()<1;if(!morePages)return}$recapField.closest(".frm_form_field").replaceWith('<input type="hidden" name="recaptcha_checked" value="'+frm_js.nonce+'">')}}function clearDefault(){toggleDefault(jQuery(this),"clear")}function replaceDefault(){toggleDefault(jQuery(this),
27
- "replace")}function toggleDefault($thisField,e){var v=$thisField.data("frmval").replace(/(\n|\r\n)/g,"\r");if(v===""||typeof v==="undefined")return false;var thisVal=$thisField.val().replace(/(\n|\r\n)/g,"\r");if("replace"==e){if(thisVal==="")$thisField.addClass("frm_default").val(v)}else if(thisVal==v)$thisField.removeClass("frm_default").val("")}function resendEmail(){var $link=jQuery(this);var entry_id=$link.data("eid");var form_id=$link.data("fid");$link.append('<span class="spinner" style="display:inline"></span>');
28
- jQuery.ajax({type:"POST",url:frm_js.ajax_url,data:{action:"frm_entries_send_email",entry_id:entry_id,form_id:form_id,nonce:frm_js.nonce},success:function(msg){$link.replaceWith(msg)}});return false}function confirmClick(){var message=jQuery(this).data("frmconfirm");return confirm(message)}function toggleDiv(){var div=jQuery(this).data("frmtoggle");if(jQuery(div).is(":visible"))jQuery(div).slideUp("fast");else jQuery(div).slideDown("fast");return false}function addIndexOfFallbackForIE8(){if(!Array.prototype.indexOf)Array.prototype.indexOf=
29
- function(elt){var len=this.length>>>0;var from=Number(arguments[1])||0;from=from<0?Math.ceil(from):Math.floor(from);if(from<0)from+=len;for(;from<len;from++)if(from in this&&this[from]===elt)return from;return-1}}function addTrimFallbackForIE8(){if(typeof String.prototype.trim!=="function")String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}function addFilterFallbackForIE8(){if(!Array.prototype.filter)Array.prototype.filter=function(fun){if(this===void 0||this===null)throw new TypeError;
30
- var t=Object(this);var len=t.length>>>0;if(typeof fun!=="function")throw new TypeError;var res=[];var thisp=arguments[1];for(var i=0;i<len;i++)if(i in t){var val=t[i];if(fun.call(thisp,val,i,t))res.push(val)}return res}}function addKeysFallbackForIE8(){if(!Object.keys)Object.keys=function(obj){var keys=[];for(var i in obj)if(obj.hasOwnProperty(i))keys.push(i);return keys}}return{init:function(){jQuery(document).off("submit.formidable",".frm-show-form");jQuery(document).on("submit.formidable",".frm-show-form",
31
- frmFrontForm.submitForm);jQuery(".frm-show-form input[onblur], .frm-show-form textarea[onblur]").each(function(){if(jQuery(this).val()==="")jQuery(this).blur()});jQuery(document).on("focus",".frm_toggle_default",clearDefault);jQuery(document).on("blur",".frm_toggle_default",replaceDefault);jQuery(".frm_toggle_default").blur();jQuery(document.getElementById("frm_resend_email")).click(resendEmail);jQuery(document).on("change",'.frm-show-form input[name^="item_meta"], .frm-show-form select[name^="item_meta"], .frm-show-form textarea[name^="item_meta"]',
32
- frmFrontForm.fieldValueChanged);jQuery(document).on("change keyup",".frm-show-form .frm_inside_container input, .frm-show-form .frm_inside_container select, .frm-show-form .frm_inside_container textarea",maybeShowLabel);jQuery(document).on("click","a[data-frmconfirm]",confirmClick);jQuery("a[data-frmtoggle]").click(toggleDiv);addIndexOfFallbackForIE8();addTrimFallbackForIE8();addFilterFallbackForIE8();addKeysFallbackForIE8()},getFieldId:function(field,fullID){return getFieldId(field,fullID)},renderRecaptcha:function(captcha){var size=
33
- captcha.getAttribute("data-size");var params={"sitekey":captcha.getAttribute("data-sitekey"),"size":size,"theme":captcha.getAttribute("data-theme")};if(size==="invisible"){var formID=jQuery(captcha).closest("form").find('input[name="form_id"]').val();params.callback=function(token){frmFrontForm.afterRecaptcha(token,formID)}}var recaptchaID=grecaptcha.render(captcha.id,params);captcha.setAttribute("data-rid",recaptchaID)},afterSingleRecaptcha:function(token){var object=jQuery(".frm-show-form .g-recaptcha").closest("form")[0];
34
- frmFrontForm.submitFormNow(object)},afterRecaptcha:function(token,formID){var object=jQuery("#frm_form_"+formID+"_container form")[0];frmFrontForm.submitFormNow(object)},submitForm:function(e){frmFrontForm.submitFormManual(e,this)},submitFormManual:function(e,object){var invisibleRecaptcha=hasInvisibleRecaptcha(object);var classList=object.className.trim().split(/\s+/gi);if(classList&&invisibleRecaptcha.length<1){var isPro=classList.indexOf("frm_pro_form")>-1;if(!isPro)return}if(jQuery("body").hasClass("wp-admin")&&
35
- jQuery(object).closest(".frmapi-form").length<1)return;e.preventDefault();if(typeof frmProForm!=="undefined"&&typeof frmProForm.submitAllowed==="function")if(!frmProForm.submitAllowed(object))return;if(invisibleRecaptcha.length){showSubmitLoading(jQuery(object));executeInvisibleRecaptcha(invisibleRecaptcha)}else{var errors=frmFrontForm.validateFormSubmit(object);if(Object.keys(errors).length===0){showSubmitLoading(jQuery(object));frmFrontForm.submitFormNow(object,classList)}}},submitFormNow:function(object){var classList=
36
- object.className.trim().split(/\s+/gi);if(classList.indexOf("frm_ajax_submit")>-1){var hasFileFields=jQuery(object).find('input[type="file"]').filter(function(){return!!this.value}).length;if(hasFileFields<1){action=jQuery(object).find('input[name="frm_action"]').val();frmFrontForm.checkFormErrors(object,action)}else object.submit()}else object.submit()},validateFormSubmit:function(object){if(typeof tinyMCE!=="undefined"&&jQuery(object).find(".wp-editor-wrap").length)tinyMCE.triggerSave();jsErrors=
37
- [];if(shouldJSValidate(object)){frmFrontForm.getAjaxFormErrors(object);if(Object.keys(jsErrors).length)frmFrontForm.addAjaxFormErrors(object)}return jsErrors},getAjaxFormErrors:function(object){jsErrors=validateForm(object);if(typeof frmThemeOverride_jsErrors==="function"){action=jQuery(object).find('input[name="frm_action"]').val();var customErrors=frmThemeOverride_jsErrors(action,object);if(Object.keys(customErrors).length)for(var key in customErrors)jsErrors[key]=customErrors[key]}return jsErrors},
38
- addAjaxFormErrors:function(object){removeAllErrors();for(var key in jsErrors){var $fieldCont=jQuery(object).find("#frm_field_"+key+"_container");if($fieldCont.length)addFieldError($fieldCont,key,jsErrors);else delete jsErrors[key]}scrollToFirstField(object)},checkFormErrors:function(object,action){getFormErrors(object,action)},checkRequiredField:function(field,errors){return checkRequiredField(field,errors)},showSubmitLoading:function($object){showSubmitLoading($object)},removeSubmitLoading:function($object,
39
- enable,processesRunning){removeSubmitLoading($object,enable,processesRunning)},scrollToID:function(id){var object=jQuery(document.getElementById(id));frmFrontForm.scrollMsg(object,false)},scrollMsg:function(id,object,animate){var scrollObj="";if(typeof object==="undefined"){scrollObj=jQuery(document.getElementById("frm_form_"+id+"_container"));if(scrollObj.length<1)return}else if(typeof id==="string")scrollObj=jQuery(object).find("#frm_field_"+id+"_container");else scrollObj=id;var newPos=scrollObj.offset().top;
40
- if(!newPos)return;newPos=newPos-frm_js.offset;var m=jQuery("html").css("margin-top");var b=jQuery("body").css("margin-top");if(m||b)newPos=newPos-parseInt(m)-parseInt(b);if(newPos&&window.innerHeight){var screenTop=document.documentElement.scrollTop||document.body.scrollTop;var screenBottom=screenTop+window.innerHeight;if(newPos>screenBottom||newPos<screenTop){if(typeof animate==="undefined")jQuery(window).scrollTop(newPos);else jQuery("html,body").animate({scrollTop:newPos},500);return false}}},
41
- fieldValueChanged:function(e){var field_id=frmFrontForm.getFieldId(this,false);if(!field_id||typeof field_id==="undefined")return;if(e.frmTriggered&&e.frmTriggered==field_id)return;jQuery(document).trigger("frmFieldChanged",[this,field_id,e]);if(e.selfTriggered!==true)maybeValidateChange(field_id,this)},savingDraft:function(object){console.warn("DEPRECATED: function frmFrontForm.savingDraft in v3.0 use frmProForm.savingDraft");if(typeof frmProForm!=="undefined")return frmProForm.savingDraft(object)},
42
- goingToPreviousPage:function(object){console.warn("DEPRECATED: function frmFrontForm.goingToPreviousPage in v3.0 use frmProForm.goingToPreviousPage");if(typeof frmProForm!=="undefined")return frmProForm.goingToPreviousPage(object)},hideOrShowFields:function(ids,event){console.warn("DEPRECATED: function frmFrontForm.hideOrShowFields in v3.0 use frmProForm.hideOrShowFields");if(typeof frmProForm!=="undefined")frmProForm.hideOrShowFields()},hidePreviouslyHiddenFields:function(){console.warn("DEPRECATED: function frmFrontForm.hidePreviouslyHiddenFields in v3.0 use frmProForm.hidePreviouslyHiddenFields");
43
- if(typeof frmProForm!=="undefined")frmProForm.hidePreviouslyHiddenFields()},checkDependentDynamicFields:function(ids){console.warn("DEPRECATED: function frmFrontForm.checkDependentDynamicFields in v3.0 use frmProForm.checkDependentDynamicFields");if(typeof frmProForm!=="undefined")frmProForm.checkDependentDynamicFields(ids)},checkDependentLookupFields:function(ids){console.warn("DEPRECATED: function frmFrontForm.checkDependentLookupFields in v3.0 use frmProForm.checkDependentLookupFields");if(typeof frmProForm!==
44
- "undefined")frmProForm.checkDependentLookupFields(ids)},loadGoogle:function(){console.warn("DEPRECATED: function frmFrontForm.loadGoogle in v3.0 use frmProForm.loadGoogle");frmProForm.loadGoogle()},removeUsedTimes:function(obj,timeField){console.warn("DEPRECATED: function frmFrontForm.removeUsedTimes in v3.0 use frmProForm.removeUsedTimes");if(typeof frmProForm!=="undefined")frmProForm.removeUsedTimes()},escapeHtml:function(text){return text.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,
45
- "&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#039;")},invisible:function(classes){jQuery(classes).css("visibility","hidden")},visible:function(classes){jQuery(classes).css("visibility","visible")}}}var frmFrontForm=frmFrontFormJS();jQuery(document).ready(function($){frmFrontForm.init()});function frmRecaptcha(){var captchas=jQuery(".frm-g-recaptcha");for(var c=0,cl=captchas.length;c<cl;c++)frmFrontForm.renderRecaptcha(captchas[c])}
46
- function frmAfterRecaptcha(token){frmFrontForm.afterSingleRecaptcha(token)}
47
  function frmUpdateField(entry_id,field_id,value,message,num){jQuery(document.getElementById("frm_update_field_"+entry_id+"_"+field_id+"_"+num)).html('<span class="frm-loading-img"></span>');jQuery.ajax({type:"POST",url:frm_js.ajax_url,data:{action:"frm_entries_update_field_ajax",entry_id:entry_id,field_id:field_id,value:value,nonce:frm_js.nonce},success:function(){if(message.replace(/^\s+|\s+$/g,"")==="")jQuery(document.getElementById("frm_update_field_"+entry_id+"_"+field_id+"_"+num)).fadeOut("slow");
48
  else jQuery(document.getElementById("frm_update_field_"+entry_id+"_"+field_id+"_"+num)).replaceWith(message)}})}
49
  function frmDeleteEntry(entry_id,prefix){console.warn("DEPRECATED: function frmDeleteEntry in v2.0.13 use frmFrontForm.deleteEntry");jQuery(document.getElementById("frm_delete_"+entry_id)).replaceWith('<span class="frm-loading-img" id="frm_delete_'+entry_id+'"></span>');jQuery.ajax({type:"POST",url:frm_js.ajax_url,data:{action:"frm_entries_destroy",entry:entry_id,nonce:frm_js.nonce},success:function(html){if(html.replace(/^\s+|\s+$/g,"")==="success")jQuery(document.getElementById(prefix+entry_id)).fadeOut("slow");
1
+ function frmFrontFormJS(){var action="";var jsErrors=[];function maybeShowLabel(){var $field=jQuery(this);var $label=$field.closest(".frm_inside_container").find(".frm_primary_label");if($field.val().length>0)$label.addClass("frm_visible");else $label.removeClass("frm_visible")}function getFieldId(field,fullID){var fieldName="";if(field instanceof jQuery)fieldName=field.attr("name");else fieldName=field.name;if(fieldName===""){if(field instanceof jQuery)fieldName=field.data("name");else fieldName=
2
  field.getAttribute("data-name");if(fieldName!==""&&fieldName)return fieldName;return 0}var nameParts=fieldName.replace("item_meta[","").replace("[]","").split("]");if(nameParts.length<1)return 0;nameParts=nameParts.filter(function(n){return n!==""});var field_id=nameParts[0];var isRepeating=false;if(nameParts.length===1)return field_id;if(nameParts[1]==="[form"||nameParts[1]==="[row_ids")return 0;if(jQuery('input[name="item_meta['+field_id+'][form]"]').length){field_id=nameParts[2].replace("[","");
3
  isRepeating=true}if("other"===field_id)if(isRepeating)field_id=nameParts[3].replace("[","");else field_id=nameParts[1].replace("[","");if(fullID===true)if(field_id===nameParts[0])field_id=field_id+"-"+nameParts[1].replace("[","");else field_id=field_id+"-"+nameParts[0]+"-"+nameParts[1].replace("[","");return field_id}function disableSubmitButton($form){$form.find('input[type="submit"], input[type="button"], button[type="submit"]').attr("disabled","disabled")}function enableSubmitButton($form){$form.find('input[type="submit"], input[type="button"], button[type="submit"]').removeAttr("disabled")}
4
  function validateForm(object){var errors=[];var requiredFields=jQuery(object).find(".frm_required_field:visible input, .frm_required_field:visible select, .frm_required_field:visible textarea").filter(":not(.frm_optional)");if(requiredFields.length)for(var r=0,rl=requiredFields.length;r<rl;r++)errors=checkRequiredField(requiredFields[r],errors);var emailFields=jQuery(object).find("input[type=email]").filter(":visible");var fields=jQuery(object).find("input,select,textarea");if(fields.length)for(var n=
20
  key,response.errors);cont_submit=false;var $recaptcha=jQuery(object).find("#frm_field_"+key+"_container .frm-g-recaptcha, #frm_field_"+key+"_container .g-recaptcha");if($recaptcha.length){show_captcha=true;var recaptchaID=$recaptcha.data("rid");if(jQuery().grecaptcha)if(recaptchaID)grecaptcha.reset(recaptchaID);else grecaptcha.reset()}}}}jQuery(document).trigger("frmFormErrors",[object,response]);fieldset.removeClass("frm_doing_ajax");scrollToFirstField(object);if(show_captcha!==true)replaceCheckedRecaptcha(object,
21
  false);if(cont_submit)object.submit();else jQuery(object).prepend(response.error_message)}else{showFileLoading(object);replaceCheckedRecaptcha(object,true);object.submit()}},error:function(){jQuery(object).find('input[type="submit"], input[type="button"]').removeAttr("disabled");object.submit()}})}function afterFormSubmitted(object,response){var formCompleted=jQuery(response.content).find(".frm_message");if(formCompleted.length)jQuery(document).trigger("frmFormComplete",[object,response]);else jQuery(document).trigger("frmPageChanged",
22
  [object,response])}function removeAddedScripts(formContainer,formID){var endReplace=jQuery(".frm_end_ajax_"+formID);if(endReplace.length){formContainer.nextUntil(".frm_end_ajax_"+formID).remove();endReplace.remove()}}function addUrlParam(response){if(history.pushState&&typeof response.page!=="undefined"){var url=addQueryVar("frm_page",response.page);window.history.pushState({"html":response.html},"","?"+url)}}function addQueryVar(key,value){key=encodeURI(key);value=encodeURI(value);var kvp=document.location.search.substr(1).split("&");
23
+ var i=kvp.length;var x;while(i--){x=kvp[i].split("=");if(x[0]==key){x[1]=value;kvp[i]=x.join("=");break}}if(i<0)kvp[kvp.length]=[key,value].join("=");return kvp.join("&")}function addFieldError($fieldCont,key,jsErrors){if($fieldCont.length&&$fieldCont.is(":visible")){$fieldCont.addClass("frm_blank_field");if(typeof frmThemeOverride_frmPlaceError==="function")frmThemeOverride_frmPlaceError(key,jsErrors);else $fieldCont.append('<div class="frm_error" id="frm_error_'+key+'">'+jsErrors[key]+"</div>");
24
+ $fieldCont.find("input, select, textarea").attr("aria-invalid",true);jQuery(document).trigger("frmAddFieldError",[$fieldCont,key,jsErrors])}}function removeFieldError($fieldCont){$fieldCont.removeClass("frm_blank_field has-error");$fieldCont.find(".frm_error").remove();$fieldCont.find("input, select, textarea").attr("aria-invalid",false)}function removeAllErrors(){jQuery(".form-field").removeClass("frm_blank_field has-error");jQuery(".form-field .frm_error").replaceWith("");jQuery(".frm_error_style").remove()}
25
+ function scrollToFirstField(object){var field=jQuery(object).find(".frm_blank_field:first");if(field.length)frmFrontForm.scrollMsg(field,object,true)}function showSubmitLoading($object){showLoadingIndicator($object);disableSubmitButton($object)}function showLoadingIndicator($object){if(!$object.hasClass("frm_loading_form")){$object.addClass("frm_loading_form");$object.trigger("frmStartFormLoading")}}function removeSubmitLoading($object,enable,processesRunning){if(processesRunning>0)return;$object.removeClass("frm_loading_form");
26
+ $object.trigger("frmEndFormLoading");if(enable==="enable")enableSubmitButton($object)}function showFileLoading(object){var loading=document.getElementById("frm_loading");if(loading!==null){var file_val=jQuery(object).find("input[type=file]").val();if(typeof file_val!=="undefined"&&file_val!=="")setTimeout(function(){jQuery(loading).fadeIn("slow")},2E3)}}function replaceCheckedRecaptcha(object,checkPage){var $recapField=jQuery(object).find(".frm-g-recaptcha, .g-recaptcha");if($recapField.length){if(checkPage){var morePages=
27
+ jQuery(object).find(".frm_next_page").length<1||jQuery(object).find(".frm_next_page").val()<1;if(!morePages)return}$recapField.closest(".frm_form_field").replaceWith('<input type="hidden" name="recaptcha_checked" value="'+frm_js.nonce+'">')}}function clearDefault(){toggleDefault(jQuery(this),"clear")}function replaceDefault(){toggleDefault(jQuery(this),"replace")}function toggleDefault($thisField,e){var v=$thisField.data("frmval").replace(/(\n|\r\n)/g,"\r");if(v===""||typeof v==="undefined")return false;
28
+ var thisVal=$thisField.val().replace(/(\n|\r\n)/g,"\r");if("replace"==e){if(thisVal==="")$thisField.addClass("frm_default").val(v)}else if(thisVal==v)$thisField.removeClass("frm_default").val("")}function resendEmail(){var $link=jQuery(this);var entry_id=$link.data("eid");var form_id=$link.data("fid");$link.append('<span class="spinner" style="display:inline"></span>');jQuery.ajax({type:"POST",url:frm_js.ajax_url,data:{action:"frm_entries_send_email",entry_id:entry_id,form_id:form_id,nonce:frm_js.nonce},
29
+ success:function(msg){$link.replaceWith(msg)}});return false}function confirmClick(){var message=jQuery(this).data("frmconfirm");return confirm(message)}function toggleDiv(){var div=jQuery(this).data("frmtoggle");if(jQuery(div).is(":visible"))jQuery(div).slideUp("fast");else jQuery(div).slideDown("fast");return false}function addIndexOfFallbackForIE8(){if(!Array.prototype.indexOf)Array.prototype.indexOf=function(elt){var len=this.length>>>0;var from=Number(arguments[1])||0;from=from<0?Math.ceil(from):
30
+ Math.floor(from);if(from<0)from+=len;for(;from<len;from++)if(from in this&&this[from]===elt)return from;return-1}}function addTrimFallbackForIE8(){if(typeof String.prototype.trim!=="function")String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}}function addFilterFallbackForIE8(){if(!Array.prototype.filter)Array.prototype.filter=function(fun){if(this===void 0||this===null)throw new TypeError;var t=Object(this);var len=t.length>>>0;if(typeof fun!=="function")throw new TypeError;var res=
31
+ [];var thisp=arguments[1];for(var i=0;i<len;i++)if(i in t){var val=t[i];if(fun.call(thisp,val,i,t))res.push(val)}return res}}function addKeysFallbackForIE8(){if(!Object.keys)Object.keys=function(obj){var keys=[];for(var i in obj)if(obj.hasOwnProperty(i))keys.push(i);return keys}}return{init:function(){jQuery(document).off("submit.formidable",".frm-show-form");jQuery(document).on("submit.formidable",".frm-show-form",frmFrontForm.submitForm);jQuery(".frm-show-form input[onblur], .frm-show-form textarea[onblur]").each(function(){if(jQuery(this).val()===
32
+ "")jQuery(this).blur()});jQuery(document).on("focus",".frm_toggle_default",clearDefault);jQuery(document).on("blur",".frm_toggle_default",replaceDefault);jQuery(".frm_toggle_default").blur();jQuery(document.getElementById("frm_resend_email")).click(resendEmail);jQuery(document).on("change",'.frm-show-form input[name^="item_meta"], .frm-show-form select[name^="item_meta"], .frm-show-form textarea[name^="item_meta"]',frmFrontForm.fieldValueChanged);jQuery(document).on("change keyup",".frm-show-form .frm_inside_container input, .frm-show-form .frm_inside_container select, .frm-show-form .frm_inside_container textarea",
33
+ maybeShowLabel);jQuery(document).on("click","a[data-frmconfirm]",confirmClick);jQuery("a[data-frmtoggle]").click(toggleDiv);addIndexOfFallbackForIE8();addTrimFallbackForIE8();addFilterFallbackForIE8();addKeysFallbackForIE8()},getFieldId:function(field,fullID){return getFieldId(field,fullID)},renderRecaptcha:function(captcha){var size=captcha.getAttribute("data-size");var params={"sitekey":captcha.getAttribute("data-sitekey"),"size":size,"theme":captcha.getAttribute("data-theme")};if(size==="invisible"){var formID=
34
+ jQuery(captcha).closest("form").find('input[name="form_id"]').val();jQuery(captcha).closest(".frm_form_field").hide();params.callback=function(token){frmFrontForm.afterRecaptcha(token,formID)}}var recaptchaID=grecaptcha.render(captcha.id,params);captcha.setAttribute("data-rid",recaptchaID)},afterSingleRecaptcha:function(token){var object=jQuery(".frm-show-form .g-recaptcha").closest("form")[0];frmFrontForm.submitFormNow(object)},afterRecaptcha:function(token,formID){var object=jQuery("#frm_form_"+
35
+ formID+"_container form")[0];frmFrontForm.submitFormNow(object)},submitForm:function(e){frmFrontForm.submitFormManual(e,this)},submitFormManual:function(e,object){var invisibleRecaptcha=hasInvisibleRecaptcha(object);var classList=object.className.trim().split(/\s+/gi);if(classList&&invisibleRecaptcha.length<1){var isPro=classList.indexOf("frm_pro_form")>-1;if(!isPro)return}if(jQuery("body").hasClass("wp-admin")&&jQuery(object).closest(".frmapi-form").length<1)return;e.preventDefault();if(typeof frmProForm!==
36
+ "undefined"&&typeof frmProForm.submitAllowed==="function")if(!frmProForm.submitAllowed(object))return;if(invisibleRecaptcha.length){showLoadingIndicator(jQuery(object));executeInvisibleRecaptcha(invisibleRecaptcha)}else{var errors=frmFrontForm.validateFormSubmit(object);if(Object.keys(errors).length===0){showSubmitLoading(jQuery(object));frmFrontForm.submitFormNow(object,classList)}}},submitFormNow:function(object){var classList=object.className.trim().split(/\s+/gi);if(classList.indexOf("frm_ajax_submit")>
37
+ -1){var hasFileFields=jQuery(object).find('input[type="file"]').filter(function(){return!!this.value}).length;if(hasFileFields<1){action=jQuery(object).find('input[name="frm_action"]').val();frmFrontForm.checkFormErrors(object,action)}else object.submit()}else object.submit()},validateFormSubmit:function(object){if(typeof tinyMCE!=="undefined"&&jQuery(object).find(".wp-editor-wrap").length)tinyMCE.triggerSave();jsErrors=[];if(shouldJSValidate(object)){frmFrontForm.getAjaxFormErrors(object);if(Object.keys(jsErrors).length)frmFrontForm.addAjaxFormErrors(object)}return jsErrors},
38
+ getAjaxFormErrors:function(object){jsErrors=validateForm(object);if(typeof frmThemeOverride_jsErrors==="function"){action=jQuery(object).find('input[name="frm_action"]').val();var customErrors=frmThemeOverride_jsErrors(action,object);if(Object.keys(customErrors).length)for(var key in customErrors)jsErrors[key]=customErrors[key]}return jsErrors},addAjaxFormErrors:function(object){removeAllErrors();for(var key in jsErrors){var $fieldCont=jQuery(object).find("#frm_field_"+key+"_container");if($fieldCont.length)addFieldError($fieldCont,
39
+ key,jsErrors);else delete jsErrors[key]}scrollToFirstField(object)},checkFormErrors:function(object,action){getFormErrors(object,action)},checkRequiredField:function(field,errors){return checkRequiredField(field,errors)},showSubmitLoading:function($object){showSubmitLoading($object)},removeSubmitLoading:function($object,enable,processesRunning){removeSubmitLoading($object,enable,processesRunning)},scrollToID:function(id){var object=jQuery(document.getElementById(id));frmFrontForm.scrollMsg(object,
40
+ false)},scrollMsg:function(id,object,animate){var scrollObj="";if(typeof object==="undefined"){scrollObj=jQuery(document.getElementById("frm_form_"+id+"_container"));if(scrollObj.length<1)return}else if(typeof id==="string")scrollObj=jQuery(object).find("#frm_field_"+id+"_container");else scrollObj=id;var newPos=scrollObj.offset().top;if(!newPos)return;newPos=newPos-frm_js.offset;var m=jQuery("html").css("margin-top");var b=jQuery("body").css("margin-top");if(m||b)newPos=newPos-parseInt(m)-parseInt(b);
41
+ if(newPos&&window.innerHeight){var screenTop=document.documentElement.scrollTop||document.body.scrollTop;var screenBottom=screenTop+window.innerHeight;if(newPos>screenBottom||newPos<screenTop){if(typeof animate==="undefined")jQuery(window).scrollTop(newPos);else jQuery("html,body").animate({scrollTop:newPos},500);return false}}},fieldValueChanged:function(e){var field_id=frmFrontForm.getFieldId(this,false);if(!field_id||typeof field_id==="undefined")return;if(e.frmTriggered&&e.frmTriggered==field_id)return;
42
+ jQuery(document).trigger("frmFieldChanged",[this,field_id,e]);if(e.selfTriggered!==true)maybeValidateChange(field_id,this)},savingDraft:function(object){console.warn("DEPRECATED: function frmFrontForm.savingDraft in v3.0 use frmProForm.savingDraft");if(typeof frmProForm!=="undefined")return frmProForm.savingDraft(object)},goingToPreviousPage:function(object){console.warn("DEPRECATED: function frmFrontForm.goingToPreviousPage in v3.0 use frmProForm.goingToPreviousPage");if(typeof frmProForm!=="undefined")return frmProForm.goingToPreviousPage(object)},
43
+ hideOrShowFields:function(ids,event){console.warn("DEPRECATED: function frmFrontForm.hideOrShowFields in v3.0 use frmProForm.hideOrShowFields");if(typeof frmProForm!=="undefined")frmProForm.hideOrShowFields()},hidePreviouslyHiddenFields:function(){console.warn("DEPRECATED: function frmFrontForm.hidePreviouslyHiddenFields in v3.0 use frmProForm.hidePreviouslyHiddenFields");if(typeof frmProForm!=="undefined")frmProForm.hidePreviouslyHiddenFields()},checkDependentDynamicFields:function(ids){console.warn("DEPRECATED: function frmFrontForm.checkDependentDynamicFields in v3.0 use frmProForm.checkDependentDynamicFields");
44
+ if(typeof frmProForm!=="undefined")frmProForm.checkDependentDynamicFields(ids)},checkDependentLookupFields:function(ids){console.warn("DEPRECATED: function frmFrontForm.checkDependentLookupFields in v3.0 use frmProForm.checkDependentLookupFields");if(typeof frmProForm!=="undefined")frmProForm.checkDependentLookupFields(ids)},loadGoogle:function(){console.warn("DEPRECATED: function frmFrontForm.loadGoogle in v3.0 use frmProForm.loadGoogle");frmProForm.loadGoogle()},removeUsedTimes:function(obj,timeField){console.warn("DEPRECATED: function frmFrontForm.removeUsedTimes in v3.0 use frmProForm.removeUsedTimes");
45
+ if(typeof frmProForm!=="undefined")frmProForm.removeUsedTimes()},escapeHtml:function(text){return text.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#039;")},invisible:function(classes){jQuery(classes).css("visibility","hidden")},visible:function(classes){jQuery(classes).css("visibility","visible")}}}var frmFrontForm=frmFrontFormJS();jQuery(document).ready(function($){frmFrontForm.init()});
46
+ function frmRecaptcha(){var captchas=jQuery(".frm-g-recaptcha");for(var c=0,cl=captchas.length;c<cl;c++)frmFrontForm.renderRecaptcha(captchas[c])}function frmAfterRecaptcha(token){frmFrontForm.afterSingleRecaptcha(token)}
47
  function frmUpdateField(entry_id,field_id,value,message,num){jQuery(document.getElementById("frm_update_field_"+entry_id+"_"+field_id+"_"+num)).html('<span class="frm-loading-img"></span>');jQuery.ajax({type:"POST",url:frm_js.ajax_url,data:{action:"frm_entries_update_field_ajax",entry_id:entry_id,field_id:field_id,value:value,nonce:frm_js.nonce},success:function(){if(message.replace(/^\s+|\s+$/g,"")==="")jQuery(document.getElementById("frm_update_field_"+entry_id+"_"+field_id+"_"+num)).fadeOut("slow");
48
  else jQuery(document.getElementById("frm_update_field_"+entry_id+"_"+field_id+"_"+num)).replaceWith(message)}})}
49
  function frmDeleteEntry(entry_id,prefix){console.warn("DEPRECATED: function frmDeleteEntry in v2.0.13 use frmFrontForm.deleteEntry");jQuery(document.getElementById("frm_delete_"+entry_id)).replaceWith('<span class="frm-loading-img" id="frm_delete_'+entry_id+'"></span>');jQuery.ajax({type:"POST",url:frm_js.ajax_url,data:{action:"frm_entries_destroy",entry:entry_id,nonce:frm_js.nonce},success:function(html){if(html.replace(/^\s+|\s+$/g,"")==="success")jQuery(document.getElementById(prefix+entry_id)).fadeOut("slow");
js/formidable_admin.js CHANGED
@@ -1252,28 +1252,6 @@ function frmAdminBuildJS(){
1252
  jQuery('.inplace_field').blur();
1253
  }
1254
  }
1255
-
1256
- function toggleRepeat(){
1257
- /*jshint validthis:true */
1258
- var field_id = jQuery(this).closest('li.frm_field_box').data('fid');
1259
- var main_form_id = jQuery('input[name="id"]').val();
1260
- var prev_form = jQuery('input[name="field_options[form_select_'+field_id+']"]').val();
1261
-
1262
- if(this.checked){
1263
- jQuery('#frm_field_id_'+field_id+' .show_repeat_sec').fadeIn('slow');
1264
- jQuery(this).closest('li.frm_field_box').addClass('repeat_section').removeClass('no_repeat_section');
1265
-
1266
- toggleFormid(field_id, prev_form, main_form_id, 1);
1267
- }else{
1268
- if(confirm(frm_admin_js.conf_no_repeat)){
1269
- jQuery('#frm_field_id_'+field_id+' .show_repeat_sec').fadeOut('slow');
1270
- jQuery(this).closest('li.frm_field_box').removeClass('repeat_section').addClass('no_repeat_section');
1271
- toggleFormid(field_id, prev_form, main_form_id, 0);
1272
- }else{
1273
- this.checked = true;
1274
- }
1275
- }
1276
- }
1277
 
1278
  function toggleRepeatButtons(){
1279
  /*jshint validthis:true */
@@ -1301,27 +1279,6 @@ function frmAdminBuildJS(){
1301
  var $thisField = jQuery(obj).closest('.frm_field_box');
1302
  $thisField.find('.frm_'+ addRemove +'_form_row .frm_repeat_label').text(obj.value);
1303
  }
1304
-
1305
- function toggleFormid(field_id, form_id, main_form_id, checked){
1306
- // change form ids of all fields in section
1307
- var children = fieldsInSection(field_id);
1308
- var field_name = document.getElementById('field_label_' + field_id).innerHTML;
1309
- jQuery.ajax({type:'POST',url:ajaxurl,
1310
- data:{action:'frm_toggle_repeat', form_id:form_id, parent_form_id:main_form_id, checked:checked, field_id:field_id, field_name:field_name, children:children, nonce:frmGlobal.nonce},
1311
- success:function(id){
1312
- //return form id to hidden field
1313
- jQuery('input[name="field_options[form_select_'+field_id+']"]').val(id);
1314
-
1315
- // Update data-formid on section field
1316
- var fieldListElement = document.getElementById( 'frm_field_id_' + field_id );
1317
- if ( id !== '' ) {
1318
- fieldListElement.setAttribute('data-formid', id);
1319
- } else {
1320
- fieldListElement.setAttribute('data-formid', main_form_id);
1321
- }
1322
- }
1323
- });
1324
- }
1325
 
1326
  function fieldsInSection(id){
1327
  var children = [];
@@ -1742,12 +1699,17 @@ function frmAdminBuildJS(){
1742
 
1743
  jQuery('.frm_show_upgrade').click( function( event ) {
1744
  event.preventDefault();
1745
- jQuery('.frm_feature_label').html( jQuery(this).data('upgrade') );
1746
  $info.dialog('open');
1747
 
1748
  // set the utm medium
1749
  var button = $info.find('.button-primary');
1750
- var link = button.attr('href').replace( /(medium=)[a-z_-]+/ig, '$1' + jQuery(this).data('medium') );
 
 
 
 
 
1751
  button.attr( 'href', link );
1752
  } );
1753
  }
@@ -2398,7 +2360,7 @@ function frmAdminBuildJS(){
2398
  type:'POST',url:ajaxurl,
2399
  data:{action:'frm_add_order_row',form_id:this_form_id,order_key:(parseInt(l)+1), nonce:frmGlobal.nonce},
2400
  success:function(html){
2401
- jQuery('#frm_order_options .frm_logic_rows').append(html).prev('.frm_add_order_row').hide();
2402
  }
2403
  });
2404
  }
@@ -2770,37 +2732,6 @@ function frmAdminBuildJS(){
2770
  });
2771
  }
2772
 
2773
- function fillLicenses(){
2774
- var emptyFields = jQuery('.frm_addon_license_key:visible');
2775
- if ( emptyFields.length < 1 ){
2776
- return false;
2777
- }
2778
-
2779
- jQuery.ajax({
2780
- type:'POST',url:ajaxurl,dataType:'json',
2781
- data:{action:'frm_fill_licenses', nonce:frmGlobal.nonce},
2782
- success:function(json){
2783
- var i;
2784
- var licenses = json.licenses;
2785
- var filledSomething = false;
2786
- for ( i in licenses ) {
2787
- if (licenses.hasOwnProperty(i)) {
2788
- var input = jQuery('#edd_'+ licenses[i].slug +'_license_key');
2789
- if ( typeof input !== null && input.is(':visible') ) {
2790
- input.val(licenses[i].key);
2791
- jQuery('input[name="edd_'+ licenses[i].slug +'_license_activate"]').click();
2792
- filledSomething = true;
2793
- }
2794
- }
2795
- }
2796
- if ( ! filledSomething ) {
2797
- jQuery('.edd_frm_fill_license').replaceWith(frm_admin_js.no_licenses);
2798
- }
2799
- }
2800
- });
2801
- return false;
2802
- }
2803
-
2804
  /* Import/Export page */
2805
 
2806
  function startFormMigration( event ) {
@@ -3523,7 +3454,6 @@ function frmAdminBuildJS(){
3523
  $newFields.on('click', '.frm_reload_icon', { iconType: 'clear_on_focus' }, toggleDefaultValueIcon);
3524
  $newFields.on('click', '.frm_error_icon', { iconType: 'default_blank' }, toggleDefaultValueIcon);
3525
 
3526
- $newFields.on('click', '.frm_repeat_field', toggleRepeat);
3527
  $newFields.on('change', '.frm_repeat_format', toggleRepeatButtons);
3528
  $newFields.on('change', '.frm_repeat_limit', checkRepeatLimit);
3529
  $newFields.on('input', 'input[name^="field_options[add_label_"]', function(){
@@ -3917,7 +3847,6 @@ function frmAdminBuildJS(){
3917
  // activate addon licenses
3918
  var licenseTab = document.getElementById('licenses_settings');
3919
  jQuery(licenseTab).on('click', '.edd_frm_save_license', saveAddonLicense);
3920
- jQuery(licenseTab).on('click', '.edd_frm_fill_license', fillLicenses);
3921
 
3922
  jQuery('.settings-lite-cta .dismiss').click( function( event ) {
3923
  event.preventDefault();
1252
  jQuery('.inplace_field').blur();
1253
  }
1254
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1255
 
1256
  function toggleRepeatButtons(){
1257
  /*jshint validthis:true */
1279
  var $thisField = jQuery(obj).closest('.frm_field_box');
1280
  $thisField.find('.frm_'+ addRemove +'_form_row .frm_repeat_label').text(obj.value);
1281
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1282
 
1283
  function fieldsInSection(id){
1284
  var children = [];
1699
 
1700
  jQuery('.frm_show_upgrade').click( function( event ) {
1701
  event.preventDefault();
1702
+ jQuery('.frm_feature_label').html( this.dataset.upgrade );
1703
  $info.dialog('open');
1704
 
1705
  // set the utm medium
1706
  var button = $info.find('.button-primary');
1707
+ var link = button.attr('href').replace( /(medium=)[a-z_-]+/ig, '$1' + this.dataset.medium );
1708
+ var content = this.dataset.content;
1709
+ if ( content === undefined ) {
1710
+ content = '';
1711
+ }
1712
+ link = link.replace( /(content=)[a-z_-]+/ig, '$1' + content );
1713
  button.attr( 'href', link );
1714
  } );
1715
  }
2360
  type:'POST',url:ajaxurl,
2361
  data:{action:'frm_add_order_row',form_id:this_form_id,order_key:(parseInt(l)+1), nonce:frmGlobal.nonce},
2362
  success:function(html){
2363
+ jQuery('#frm_order_options .frm_logic_rows').append(html).show().prev('.frm_add_order_row').hide();
2364
  }
2365
  });
2366
  }
2732
  });
2733
  }
2734
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2735
  /* Import/Export page */
2736
 
2737
  function startFormMigration( event ) {
3454
  $newFields.on('click', '.frm_reload_icon', { iconType: 'clear_on_focus' }, toggleDefaultValueIcon);
3455
  $newFields.on('click', '.frm_error_icon', { iconType: 'default_blank' }, toggleDefaultValueIcon);
3456
 
 
3457
  $newFields.on('change', '.frm_repeat_format', toggleRepeatButtons);
3458
  $newFields.on('change', '.frm_repeat_limit', checkRepeatLimit);
3459
  $newFields.on('input', 'input[name^="field_options[add_label_"]', function(){
3847
  // activate addon licenses
3848
  var licenseTab = document.getElementById('licenses_settings');
3849
  jQuery(licenseTab).on('click', '.edd_frm_save_license', saveAddonLicense);
 
3850
 
3851
  jQuery('.settings-lite-cta .dismiss').click( function( event ) {
3852
  event.preventDefault();
js/jquery/jquery.editinplace.js DELETED
@@ -1,653 +0,0 @@
1
- /*
2
-
3
- A jQuery edit in place plugin
4
-
5
- Version 2.3.0
6
-
7
- Authors:
8
- Dave Hauenstein
9
- Martin Häcker <spamfaenger [at] gmx [dot] de>
10
-
11
- Project home:
12
- http://code.google.com/p/jquery-in-place-editor/
13
-
14
- Patches with tests welcomed! For guidance see the tests </spec/unit/>. To submit, attach them to the bug tracker.
15
-
16
- License:
17
- This source file is subject to the BSD license bundled with this package.
18
- Available online: {@link http://www.opensource.org/licenses/bsd-license.php}
19
- If you did not receive a copy of the license, and are unable to obtain it,
20
- learn to use a search engine.
21
-
22
- */
23
-
24
- (function($){
25
-
26
- $.fn.editInPlace = function(options) {
27
- jQuery.browser = {};
28
- jQuery.browser.mozilla = /mozilla/.test(navigator.userAgent.toLowerCase()) && !/webkit/.test(navigator.userAgent.toLowerCase());
29
- jQuery.browser.webkit = /webkit/.test(navigator.userAgent.toLowerCase());
30
- jQuery.browser.opera = /opera/.test(navigator.userAgent.toLowerCase());
31
- jQuery.browser.msie = /msie/.test(navigator.userAgent.toLowerCase());
32
- jQuery.browser.safari = navigator.userAgent.indexOf("Safari") > -1;
33
-
34
- var settings = $.extend({}, $.fn.editInPlace.defaults, options);
35
- if(settings.type == 'textarea') settings.use_html = true;
36
- assertMandatorySettingsArePresent(settings);
37
- preloadImage(settings.saving_image);
38
-
39
- return this.each(function() {
40
- var dom = $(this);
41
- // This won't work with live queries as there is no specific element to attach this
42
- // one way to deal with this could be to store a reference to self and then compare that in click?
43
- if (dom.data('editInPlace'))
44
- return; // already an editor here
45
- dom.data('editInPlace', true);
46
-
47
- new InlineEditor(settings, dom).init();
48
- });
49
- };
50
-
51
- /// Switch these through the dictionary argument to $(aSelector).editInPlace(overideOptions)
52
- /// Required Options: Either url or callback, so the editor knows what to do with the edited values.
53
- $.fn.editInPlace.defaults = {
54
- url: "", // string: POST URL to send edited content
55
- bg_over: "inherit", // string: background color of hover of unactivated editor
56
- bg_out: "inherit", // string: background color on restore from hover
57
- hover_class: "", // string: class added to root element during hover. Will override bg_over and bg_out
58
- show_buttons: ((navigator.appName=='Microsoft Internet Explorer') ? true : false), // boolean: will show the buttons: cancel or save; will automatically cancel out the onBlur functionality
59
- save_button: '<button class="inplace_save">Save</button>', // string: image button tag to use as “Save” button
60
- cancel_button: '<button class="inplace_cancel">Cancel</button>', // string: image button tag to use as “Cancel” button
61
- params: "", // string: example: first_name=dave&last_name=hauenstein extra paramters sent via the post request to the server
62
- field_type: "text", // string: "text", "textarea", or "select"; The type of form field that will appear on instantiation
63
- default_text: "(Click here to add text)", // string: text to show up if the element that has this functionality is empty
64
- use_html: true, // boolean, set to true if the editor should use jQuery.fn.html() to extract the value to show from the dom node
65
- textarea_rows: 10, // integer: set rows attribute of textarea, if field_type is set to textarea. Use CSS if possible though
66
- textarea_cols: 25, // integer: set cols attribute of textarea, if field_type is set to textarea. Use CSS if possible though
67
- select_text: "Choose new value", // string: default text to show up in select box
68
- select_options: "", // string or array: Used if field_type is set to 'select'. Can be comma delimited list of options 'textandValue,text:value', Array of options ['textAndValue', 'text:value'] or array of arrays ['textAndValue', ['text', 'value']]. The last form is especially usefull if your labels or values contain colons)
69
- text_size: null, // integer: set cols attribute of text input, if field_type is set to text. Use CSS if possible though
70
-
71
- // Specifying callback_skip_dom_reset will disable all saving_* options
72
- saving_text: undefined, // string: text to be used when server is saving information. Example "Saving..."
73
- saving_image: "", // string: uses saving text specify an image location instead of text while server is saving
74
- saving_animation_color: 'transparent', // hex color string, will be the color the pulsing animation during the save pulses to. Note: Only works if jquery-ui is loaded
75
-
76
- value_required: false, // boolean: if set to true, the element will not be saved unless a value is entered
77
- element_id: "element_id", // string: name of parameter holding the id or the editable
78
- update_value: "update_value", // string: name of parameter holding the updated/edited value
79
- original_value: 'original_value', // string: name of parameter holding the updated/edited value
80
- original_html: "original_html", // string: name of parameter holding original_html value of the editable /* DEPRECATED in 2.2.0 */ use original_value instead.
81
- save_if_nothing_changed: false, // boolean: submit to function or server even if the user did not change anything
82
- on_blur: "save", // string: "save" or null; what to do on blur; will be overridden if show_buttons is true
83
- cancel: "", // string: if not empty, a jquery selector for elements that will not cause the editor to open even though they are clicked. E.g. if you have extra buttons inside editable fields
84
-
85
- // All callbacks will have this set to the DOM node of the editor that triggered the callback
86
-
87
- callback: null, // function: function to be called when editing is complete; cancels ajax submission to the url param. Prototype: function(idOfEditor, enteredText, orinalHTMLContent, settingsParams, callbacks). The function needs to return the value that should be shown in the dom. Returning undefined means cancel and will restore the dom and trigger an error. callbacks is a dictionary with two functions didStartSaving and didEndSaving() that you can use to tell the inline editor that it should start and stop any saving animations it has configured. /* DEPRECATED in 2.1.0 */ Parameter idOfEditor, use $(this).attr('id') instead
88
- callback_skip_dom_reset: false, // boolean: set this to true if the callback should handle replacing the editor with the new value to show
89
- success: null, // function: this function gets called if server responds with a success. Prototype: function(newEditorContentString)
90
- error: null, // function: this function gets called if server responds with an error. Prototype: function(request)
91
- error_sink: function(idOfEditor, errorString) { }, // function: gets id of the editor and the error. Make sure the editor has an id, or it will just be undefined. If set to null, no error will be reported. /* DEPRECATED in 2.1.0 */ Parameter idOfEditor, use $(this).attr('id') instead
92
- preinit: null, // function: this function gets called after a click on an editable element but before the editor opens. If you return false, the inline editor will not open. Prototype: function(currentDomNode). DEPRECATED in 2.2.0 use delegate shouldOpenEditInPlace call instead
93
- postclose: null, // function: this function gets called after the inline editor has closed and all values are updated. Prototype: function(currentDomNode). DEPRECATED in 2.2.0 use delegate didCloseEditInPlace call instead
94
- delegate: null // object: if it has methods with the name of the callbacks documented below in delegateExample these will be called. This means that you just need to impelment the callbacks you are interested in.
95
- };
96
-
97
- // Lifecycle events that the delegate can implement
98
- // this will always be fixed to the delegate
99
- var delegateExample = {
100
- // called while opening the editor.
101
- // return false to prevent editor from opening
102
- shouldOpenEditInPlace: function(aDOMNode, aSettingsDict, triggeringEvent) {},
103
- // return content to show in inplace editor
104
- willOpenEditInPlace: function(aDOMNode, aSettingsDict) {},
105
- didOpenEditInPlace: function(aDOMNode, aSettingsDict) {},
106
-
107
- // called while closing the editor
108
- // return false to prevent the editor from closing
109
- shouldCloseEditInPlace: function(aDOMNode, aSettingsDict, triggeringEvent) {},
110
- // return value will be shown during saving
111
- willCloseEditInPlace: function(aDOMNode, aSettingsDict) {},
112
- didCloseEditInPlace: function(aDOMNode, aSettingsDict) {},
113
-
114
- missingCommaErrorPreventer:''
115
- };
116
-
117
-
118
- function InlineEditor(settings, dom) {
119
- this.settings = settings;
120
- this.dom = dom;
121
- this.originalValue = null;
122
- this.didInsertDefaultText = false;
123
- this.shouldDelayReinit = false;
124
- };
125
-
126
- $.extend(InlineEditor.prototype, {
127
-
128
- init: function() {
129
- this.setDefaultTextIfNeccessary();
130
- this.connectOpeningEvents();
131
- },
132
-
133
- reinit: function() {
134
- if (this.shouldDelayReinit)
135
- return;
136
-
137
- this.triggerCallback(this.settings.postclose, /* DEPRECATED in 2.1.0 */ this.dom);
138
- this.triggerDelegateCall('didCloseEditInPlace');
139
-
140
- this.markEditorAsInactive();
141
- this.connectOpeningEvents();
142
- },
143
-
144
- setDefaultTextIfNeccessary: function() {
145
- if('' !== this.dom.html())
146
- return;
147
-
148
- this.dom.html(this.settings.default_text);
149
- this.didInsertDefaultText = true;
150
- },
151
-
152
- connectOpeningEvents: function() {
153
- var that = this;
154
- this.dom
155
- .bind('mouseenter.editInPlace', function(){ that.addHoverEffect(); })
156
- .bind('mouseleave.editInPlace', function(){ that.removeHoverEffect(); })
157
- .bind('click.editInPlace', function(anEvent){ that.openEditor(anEvent); });
158
- },
159
-
160
- disconnectOpeningEvents: function() {
161
- // prevent re-opening the editor when it is already open
162
- this.dom.unbind('.editInPlace');
163
- },
164
-
165
- addHoverEffect: function() {
166
- if (this.settings.hover_class)
167
- this.dom.addClass(this.settings.hover_class);
168
- else
169
- this.dom.css("background-color", this.settings.bg_over);
170
- },
171
-
172
- removeHoverEffect: function() {
173
- if (this.settings.hover_class)
174
- this.dom.removeClass(this.settings.hover_class);
175
- else
176
- this.dom.css("background-color", this.settings.bg_out);
177
- },
178
-
179
- openEditor: function(anEvent) {
180
- if ( ! this.shouldOpenEditor(anEvent))
181
- return;
182
-
183
- this.disconnectOpeningEvents();
184
- this.removeHoverEffect();
185
- this.removeInsertedDefaultTextIfNeccessary();
186
- this.saveOriginalValue();
187
- this.markEditorAsActive();
188
- this.replaceContentWithEditor();
189
- this.setInitialValue();
190
- this.workAroundMissingBlurBug();
191
- this.connectClosingEventsToEditor();
192
- this.triggerDelegateCall('didOpenEditInPlace');
193
- },
194
-
195
- shouldOpenEditor: function(anEvent) {
196
- if (this.isClickedObjectCancelled(anEvent.target))
197
- return false;
198
-
199
- if (false === this.triggerCallback(this.settings.preinit, /* DEPRECATED in 2.1.0 */ this.dom))
200
- return false;
201
-
202
- if (false === this.triggerDelegateCall('shouldOpenEditInPlace', true, anEvent))
203
- return false;
204
-
205
- return true;
206
- },
207
-
208
- removeInsertedDefaultTextIfNeccessary: function() {
209
- if ( ! this.didInsertDefaultText
210
- || this.dom.html() !== this.settings.default_text)
211
- return;
212
-
213
- this.dom.html('');
214
- this.didInsertDefaultText = false;
215
- },
216
-
217
- isClickedObjectCancelled: function(eventTarget) {
218
- if ( ! this.settings.cancel)
219
- return false;
220
-
221
- var eventTargetAndParents = $(eventTarget).parents().andSelf();
222
- var elementsMatchingCancelSelector = eventTargetAndParents.filter(this.settings.cancel);
223
- return 0 !== elementsMatchingCancelSelector.length;
224
- },
225
-
226
- saveOriginalValue: function() {
227
- if (this.settings.use_html)
228
- this.originalValue = this.dom.html();
229
- else
230
- this.originalValue = trim(this.dom.text());
231
- },
232
-
233
- restoreOriginalValue: function() {
234
- this.setClosedEditorContent(this.originalValue);
235
- },
236
-
237
- setClosedEditorContent: function(aValue) {
238
- if (this.settings.use_html)
239
- this.dom.html(aValue);
240
- else
241
- this.dom.text(aValue);
242
- },
243
-
244
- workAroundMissingBlurBug: function() {
245
- // Strangely, all browser will forget to send a blur event to an input element
246
- // when another one is created and selected programmatically. (at least under some circumstances).
247
- // This means that if another inline editor is opened, existing inline editors will _not_ close
248
- // if they are configured to submit when blurred.
249
-
250
- // Using parents() instead document as base to workaround the fact that in the unittests
251
- // the editor is not a child of window.document but of a document fragment
252
- var ourInput = this.dom.find(':input');
253
- this.dom.parents(':last').find('.editInPlace-active :input').not(ourInput).blur();
254
- },
255
-
256
- replaceContentWithEditor: function() {
257
- var buttons_html = (this.settings.show_buttons) ? this.settings.save_button + ' ' + this.settings.cancel_button : '';
258
- var editorElement = this.createEditorElement(); // needs to happen before anything is replaced
259
- /* insert the new in place form after the element they click, then empty out the original element */
260
- this.dom.html('').append('<form class="inplace_form" style="display: inline; margin: 0; padding: 0;"></form>')
261
- .find('form')
262
- .append(editorElement)
263
- .append(buttons_html);
264
- },
265
-
266
- createEditorElement: function() {
267
- if (-1 === $.inArray(this.settings.field_type, ['text', 'textarea', 'select']))
268
- throw "Unknown field_type <fnord>, supported are 'text', 'textarea' and 'select'";
269
-
270
- var editor = null;
271
- if ("select" === this.settings.field_type)
272
- editor = this.createSelectEditor();
273
- else if ("text" === this.settings.field_type)
274
- editor = $('<input type="text" ' + this.inputNameAndClass()
275
- + ' size="' + this.settings.text_size + '" />');
276
- else if ("textarea" === this.settings.field_type)
277
- editor = $('<textarea ' + this.inputNameAndClass()
278
- + ' rows="' + this.settings.textarea_rows + '" '
279
- + ' cols="' + this.settings.textarea_cols + '" />');
280
-
281
- return editor;
282
- },
283
-
284
- setInitialValue: function() {
285
- var initialValue = this.triggerDelegateCall('willOpenEditInPlace', this.originalValue);
286
- var editor = this.dom.find(':input');
287
- editor.val(initialValue);
288
-
289
- // Workaround for select fields which don't contain the original value.
290
- // Somehow the browsers don't like to select the instructional choice (disabled) in that case
291
- if (editor.val() !== initialValue)
292
- editor.val(''); // selects instructional choice
293
- },
294
-
295
- inputNameAndClass: function() {
296
- return ' name="inplace_value" class="inplace_field" ';
297
- },
298
-
299
- createSelectEditor: function() {
300
- var editor = $('<select' + this.inputNameAndClass() + '>'
301
- + '<option disabled="true" value="">' + this.settings.select_text + '</option>'
302
- + '</select>');
303
-
304
- var optionsArray = this.settings.select_options;
305
- if ( ! $.isArray(optionsArray))
306
- optionsArray = optionsArray.split(',');
307
-
308
- for (var i=0; i<optionsArray.length; i++) {
309
- var currentTextAndValue = optionsArray[i];
310
- if ( ! $.isArray(currentTextAndValue))
311
- currentTextAndValue = currentTextAndValue.split(':');
312
-
313
- var value = trim(currentTextAndValue[1] || currentTextAndValue[0]);
314
- var text = trim(currentTextAndValue[0]);
315
-
316
- var option = $('<option>').val(value).text(text);
317
- editor.append(option);
318
- }
319
-
320
- return editor;
321
- },
322
-
323
- connectClosingEventsToEditor: function() {
324
- var that = this;
325
- function cancelEditorAction(anEvent) {
326
- that.handleCancelEditor(anEvent);
327
- return false; // stop event bubbling
328
- }
329
- function saveEditorAction(anEvent) {
330
- that.handleSaveEditor(anEvent);
331
- return false; // stop event bubbling
332
- }
333
-
334
- var form = this.dom.find("form");
335
-
336
- form.find(".inplace_field").focus().select();
337
- form.find(".inplace_cancel").click(cancelEditorAction);
338
- form.find(".inplace_save").click(saveEditorAction);
339
-
340
- if ( ! this.settings.show_buttons) {
341
- // TODO: Firefox has a bug where blur is not reliably called when focus is lost
342
- // (for example by another editor appearing)
343
- if ("save" === this.settings.on_blur)
344
- form.find(".inplace_field").blur(saveEditorAction);
345
- else
346
- form.find(".inplace_field").blur(cancelEditorAction);
347
-
348
- // workaround for msie & firefox bug where it won't submit on enter if no button is shown
349
- if ($.browser.mozilla || $.browser.msie)
350
- this.bindSubmitOnEnterInInput();
351
- }
352
-
353
- form.keyup(function(anEvent) {
354
- // allow canceling with escape
355
- var escape = 27;
356
- if (escape === anEvent.which)
357
- return cancelEditorAction();
358
- });
359
-
360
- // workaround for webkit nightlies where they won't submit at all on enter
361
- // REFACT: find a way to just target the nightlies
362
- if ($.browser.safari)
363
- this.bindSubmitOnEnterInInput();
364
-
365
-
366
- form.submit(saveEditorAction);
367
- },
368
-
369
- bindSubmitOnEnterInInput: function() {
370
- if ('textarea' === this.settings.field_type)
371
- return; // can't enter newlines otherwise
372
-
373
- var that = this;
374
- this.dom.find(':input').keyup(function(event) {
375
- var enter = 13;
376
- if (enter === event.which)
377
- return that.dom.find('form').submit();
378
- });
379
-
380
- },
381
-
382
- handleCancelEditor: function(anEvent) {
383
- // REFACT: remove duplication between save and cancel
384
- if (false === this.triggerDelegateCall('shouldCloseEditInPlace', true, anEvent))
385
- return;
386
-
387
- var enteredText = this.dom.find(':input').val();
388
- enteredText = this.triggerDelegateCall('willCloseEditInPlace', enteredText);
389
-
390
- this.restoreOriginalValue();
391
- if (hasContent(enteredText)
392
- && ! this.isDisabledDefaultSelectChoice())
393
- this.setClosedEditorContent(enteredText);
394
- this.reinit();
395
- },
396
-
397
- handleSaveEditor: function(anEvent) {
398
- if (false === this.triggerDelegateCall('shouldCloseEditInPlace', true, anEvent))
399
- return;
400
-
401
- var enteredText = this.dom.find(':input').val();
402
- enteredText = this.triggerDelegateCall('willCloseEditInPlace', enteredText);
403
-
404
- if (this.isDisabledDefaultSelectChoice()
405
- || this.isUnchangedInput(enteredText)) {
406
- this.handleCancelEditor(anEvent);
407
- return;
408
- }
409
-
410
- if (this.didForgetRequiredText(enteredText)) {
411
- this.handleCancelEditor(anEvent);
412
- this.reportError("Error: You must enter a value to save this field");
413
- return;
414
- }
415
-
416
- this.showSaving(enteredText);
417
-
418
- if (this.settings.callback)
419
- this.handleSubmitToCallback(enteredText);
420
- else
421
- this.handleSubmitToServer(enteredText);
422
- },
423
-
424
- didForgetRequiredText: function(enteredText) {
425
- return this.settings.value_required
426
- && ("" === enteredText
427
- || undefined === enteredText
428
- || null === enteredText);
429
- },
430
-
431
- isDisabledDefaultSelectChoice: function() {
432
- return this.dom.find('option').eq(0).is(':selected:disabled');
433
- },
434
-
435
- isUnchangedInput: function(enteredText) {
436
- return ! this.settings.save_if_nothing_changed
437
- && this.originalValue === enteredText;
438
- },
439
-
440
- showSaving: function(enteredText) {
441
- if (this.settings.callback && this.settings.callback_skip_dom_reset)
442
- return;
443
-
444
- var savingMessage = enteredText;
445
- if (hasContent(this.settings.saving_text))
446
- savingMessage = this.settings.saving_text;
447
- if(hasContent(this.settings.saving_image))
448
- // REFACT: alt should be the configured saving message
449
- savingMessage = $('<img />').attr('src', this.settings.saving_image).attr('alt', savingMessage);
450
- this.dom.html(savingMessage);
451
- },
452
-
453
- handleSubmitToCallback: function(enteredText) {
454
- // REFACT: consider to encode enteredText and originalHTML before giving it to the callback
455
- this.enableOrDisableAnimationCallbacks(true, false);
456
- var newHTML = this.triggerCallback(this.settings.callback, /* DEPRECATED in 2.1.0 */ this.id(), enteredText, this.originalValue,
457
- this.settings.params, this.savingAnimationCallbacks());
458
-
459
- if (this.settings.callback_skip_dom_reset){
460
- // do nothing
461
- }else if (undefined === newHTML) {
462
- // failure; put original back
463
- this.reportError("Error: Failed to save value: " + enteredText);
464
- this.restoreOriginalValue();
465
- }
466
- else
467
- // REFACT: use setClosedEditorContent
468
- this.dom.html(newHTML);
469
-
470
- if (this.didCallNoCallbacks()) {
471
- this.enableOrDisableAnimationCallbacks(false, false);
472
- this.reinit();
473
- }
474
- },
475
-
476
- handleSubmitToServer: function(enteredText) {
477
- var data = this.settings.update_value + '=' + encodeURIComponent(enteredText)
478
- + '&' + this.settings.element_id + '=' + this.dom.attr("id")
479
- + ((this.settings.params) ? '&' + this.settings.params : '')
480
- + '&' + this.settings.original_html + '=' + encodeURIComponent(this.originalValue) /* DEPRECATED in 2.2.0 */
481
- + '&' + this.settings.original_value + '=' + encodeURIComponent(this.originalValue);
482
-
483
- this.enableOrDisableAnimationCallbacks(true, false);
484
- this.didStartSaving();
485
- var that = this;
486
- $.ajax({
487
- url: that.settings.url,
488
- type: "POST",
489
- data: data,
490
- dataType: "html",
491
- complete: function(request){
492
- that.didEndSaving();
493
- },
494
- success: function(html){
495
- var new_text = html || that.settings.default_text;
496
-
497
- /* put the newly updated info into the original element */
498
- // FIXME: should be affected by the preferences switch
499
- that.dom.html(new_text);
500
- // REFACT: remove dom parameter, already in this, not documented, should be easy to remove
501
- // REFACT: callback should be able to override what gets put into the DOM
502
- that.triggerCallback(that.settings.success, html);
503
- },
504
- error: function(request) {
505
- that.dom.html(that.originalHTML); // REFACT: what about a restorePreEditingContent()
506
- if (that.settings.error)
507
- // REFACT: remove dom parameter, already in this, not documented, can remove without deprecation
508
- // REFACT: callback should be able to override what gets entered into the DOM
509
- that.triggerCallback(that.settings.error, request);
510
- else
511
- that.reportError("Failed to save value: " + request.responseText || 'Unspecified Error');
512
- }
513
- });
514
- },
515
-
516
- // Utilities .........................................................
517
-
518
- triggerCallback: function(aCallback /*, arguments */) {
519
- if ( ! aCallback)
520
- return; // callback wasn't specified after all
521
-
522
- var callbackArguments = Array.prototype.slice.call(arguments, 1);
523
- return aCallback.apply(this.dom[0], callbackArguments);
524
- },
525
-
526
- /// defaultReturnValue is only used if the delegate returns undefined
527
- triggerDelegateCall: function(aDelegateMethodName, defaultReturnValue, optionalEvent) {
528
- // REFACT: consider to trigger equivalent callbacks automatically via a mapping table?
529
- if ( ! this.settings.delegate
530
- || ! $.isFunction(this.settings.delegate[aDelegateMethodName]))
531
- return defaultReturnValue;
532
-
533
- var delegateReturnValue = this.settings.delegate[aDelegateMethodName](this.dom, this.settings, optionalEvent);
534
- return (undefined === delegateReturnValue)
535
- ? defaultReturnValue
536
- : delegateReturnValue;
537
- },
538
-
539
- reportError: function(anErrorString) {
540
- this.triggerCallback(this.settings.error_sink, /* DEPRECATED in 2.1.0 */ this.id(), anErrorString);
541
- },
542
-
543
- // REFACT: this method should go, callbacks should get the dom node itself as an argument
544
- id: function() {
545
- return this.dom.attr('id');
546
- },
547
-
548
- markEditorAsActive: function() {
549
- this.dom.addClass('editInPlace-active');
550
- },
551
-
552
- markEditorAsInactive: function() {
553
- this.dom.removeClass('editInPlace-active');
554
- },
555
-
556
- // REFACT: consider rename, doesn't deal with animation directly
557
- savingAnimationCallbacks: function() {
558
- var that = this;
559
- return {
560
- didStartSaving: function() { that.didStartSaving(); },
561
- didEndSaving: function() { that.didEndSaving(); }
562
- };
563
- },
564
-
565
- enableOrDisableAnimationCallbacks: function(shouldEnableStart, shouldEnableEnd) {
566
- this.didStartSaving.enabled = shouldEnableStart;
567
- this.didEndSaving.enabled = shouldEnableEnd;
568
- },
569
-
570
- didCallNoCallbacks: function() {
571
- return this.didStartSaving.enabled && ! this.didEndSaving.enabled;
572
- },
573
-
574
- assertCanCall: function(methodName) {
575
- if ( ! this[methodName].enabled)
576
- throw new Error('Cannot call ' + methodName + ' now. See documentation for details.');
577
- },
578
-
579
- didStartSaving: function() {
580
- this.assertCanCall('didStartSaving');
581
- this.shouldDelayReinit = true;
582
- this.enableOrDisableAnimationCallbacks(false, true);
583
-
584
- this.startSavingAnimation();
585
- },
586
-
587
- didEndSaving: function() {
588
- this.assertCanCall('didEndSaving');
589
- this.shouldDelayReinit = false;
590
- this.enableOrDisableAnimationCallbacks(false, false);
591
- this.reinit();
592
-
593
- this.stopSavingAnimation();
594
- },
595
-
596
- startSavingAnimation: function() {
597
- var that = this;
598
- this.dom
599
- .animate({ backgroundColor: this.settings.saving_animation_color }, 400)
600
- .animate({ backgroundColor: 'transparent'}, 400, 'swing', function(){
601
- // In the tests animations are turned off - i.e they happen instantaneously.
602
- // Hence we need to prevent this from becomming an unbounded recursion.
603
- setTimeout(function(){ that.startSavingAnimation(); }, 10);
604
- });
605
- },
606
-
607
- stopSavingAnimation: function() {
608
- this.dom
609
- .stop(true)
610
- .css({backgroundColor: ''});
611
- },
612
-
613
- missingCommaErrorPreventer:''
614
- });
615
-
616
-
617
-
618
- // Private helpers .......................................................
619
-
620
- function assertMandatorySettingsArePresent(options) {
621
- // one of these needs to be non falsy
622
- if (options.url || options.callback)
623
- return;
624
-
625
- throw new Error("Need to set either url: or callback: option for the inline editor to work.");
626
- }
627
-
628
- /* preload the loading icon if it is configured */
629
- function preloadImage(anImageURL) {
630
- if ('' === anImageURL)
631
- return;
632
-
633
- var loading_image = new Image();
634
- loading_image.src = anImageURL;
635
- }
636
-
637
- function trim(aString) {
638
- return aString
639
- .replace(/^\s+/, '')
640
- .replace(/\s+$/, '');
641
- }
642
-
643
- function hasContent(something) {
644
- if (undefined === something || null === something)
645
- return false;
646
-
647
- if (0 === something.length)
648
- return false;
649
-
650
- return true;
651
- }
652
-
653
- })(jQuery);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/formidable-js.pot DELETED
@@ -1,60 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Content-Type: text/plain; charset=utf-8\n"
4
- "X-Generator: babel-plugin-makepot\n"
5
-
6
- #: js/src/common/components/itemselect.js:26
7
- msgid "Select a %s"
8
- msgstr ""
9
-
10
- #: js/src/common/components/itemselect.js:47
11
- msgid "Currently, there are no %s"
12
- msgstr ""
13
-
14
- #: js/src/form/block.js:19
15
- msgid "Display a Form"
16
- msgstr ""
17
-
18
- #: js/src/form/block.js:23
19
- msgid "contact forms"
20
- msgstr ""
21
-
22
- #: js/src/form/block.js:35
23
- msgid "This site does not have any forms."
24
- msgstr ""
25
-
26
- #: js/src/form/formselect.js:23
27
- msgid "form"
28
- msgstr ""
29
-
30
- #: js/src/form/formselect.js:24
31
- msgid "forms"
32
- msgstr ""
33
-
34
- #: js/src/form/inspector.js:43
35
- msgid "Select Form"
36
- msgstr ""
37
-
38
- #: js/src/form/inspector.js:57
39
- msgid "Go to form"
40
- msgstr ""
41
-
42
- #: js/src/form/inspector.js:62
43
- msgid "Options"
44
- msgstr ""
45
-
46
- #: js/src/form/inspector.js:66
47
- msgid "Show Form Title"
48
- msgstr ""
49
-
50
- #: js/src/form/inspector.js:73
51
- msgid "Show Form Description"
52
- msgstr ""
53
-
54
- #: js/src/form/inspector.js:80
55
- msgid "Minimize HTML"
56
- msgstr ""
57
-
58
- #: js/src/form/inspector.js:88
59
- msgid "Shortcode"
60
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/formidable.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Formidable Forms plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Formidable Forms 3.06\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2019-01-30T01:01:21+01:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.1.0\n"
15
  "X-Domain: formidable\n"
@@ -60,8 +60,8 @@ msgid "Go to form"
60
  msgstr ""
61
 
62
  #: js/src/form/inspector.js:62
63
- #: classes/views/frm-form-actions/_email_settings.php:73
64
  #: classes/views/frm-forms/shortcode_opts.php:12
 
65
  #: languages/formidable-js-strings.php:32
66
  msgid "Options"
67
  msgstr ""
@@ -103,523 +103,641 @@ msgstr ""
103
  msgid "Strategy11"
104
  msgstr ""
105
 
106
- #: classes/controllers/FrmAddonsController.php:10
107
- msgid "Add-Ons"
108
  msgstr ""
109
 
110
- #: classes/controllers/FrmAddonsController.php:13
111
- #: classes/views/shared/upgrade_overlay.php:33
112
- msgid "Upgrade to Pro"
113
  msgstr ""
114
 
115
- #: classes/controllers/FrmAddonsController.php:37
116
- msgid "There are no plugins on your site that require a license"
117
  msgstr ""
118
 
119
- #: classes/controllers/FrmAddonsController.php:397
120
- msgid "Installed"
121
  msgstr ""
122
 
123
- #: classes/controllers/FrmAddonsController.php:402
124
- #: classes/helpers/FrmAppHelper.php:1762
125
- #: classes/views/styles/_field-colors.php:10
126
- msgid "Active"
127
  msgstr ""
128
 
129
- #: classes/controllers/FrmAddonsController.php:407
130
- msgid "Not Installed"
131
  msgstr ""
132
 
133
- #: classes/controllers/FrmAddonsController.php:491
134
- msgid "Sorry, you're site requires FTP authentication. Please install plugins manaully."
135
  msgstr ""
136
 
137
- #: classes/controllers/FrmAppController.php:97
138
- msgid "Build"
139
  msgstr ""
140
 
141
- #: classes/controllers/FrmAppController.php:104
142
- #: classes/helpers/FrmFormsListHelper.php:282
143
- #: classes/views/frm-forms/settings.php:10
144
- msgid "Settings"
145
  msgstr ""
146
 
147
- #: classes/controllers/FrmAppController.php:111
148
- #: classes/controllers/FrmEntriesController.php:8
149
- #: classes/controllers/FrmEntriesController.php:126
150
- #: classes/controllers/FrmFormsController.php:711
151
- #: classes/controllers/FrmXMLController.php:131
152
- #: classes/views/frm-entries/list.php:5
153
- msgid "Entries"
154
  msgstr ""
155
 
156
- #: classes/controllers/FrmAppController.php:127
157
- msgid "Build a Form"
158
  msgstr ""
159
 
160
- #: classes/controllers/FrmAppController.php:169
161
- 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."
162
  msgstr ""
163
 
164
- #: classes/controllers/FrmAppController.php:529
165
- msgid "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress.org%4$s. Thank you heaps!"
 
166
  msgstr ""
167
 
168
- #: classes/controllers/FrmEntriesController.php:67
169
- msgid "Overview"
170
  msgstr ""
171
 
172
- #: classes/controllers/FrmEntriesController.php:69
173
- msgid "This screen provides access to all of your entries. You can customize the display of this screen to suit your workflow."
 
174
  msgstr ""
175
 
176
- #: classes/controllers/FrmEntriesController.php:71
177
- msgid "Hovering over a row in the entries list will display action links that allow you to manage your entry."
 
178
  msgstr ""
179
 
180
- #: classes/controllers/FrmEntriesController.php:77
181
- msgid "For more information:"
 
182
  msgstr ""
183
 
184
- #: classes/controllers/FrmEntriesController.php:78
185
- msgid "Documentation on Entries"
 
186
  msgstr ""
187
 
188
- #: classes/controllers/FrmEntriesController.php:79
189
- msgid "Support"
 
 
190
  msgstr ""
191
 
192
- #: classes/controllers/FrmEntriesController.php:105
193
- #: classes/controllers/FrmFormsController.php:986
194
- #: classes/views/frm-entries/form.php:43
195
- #: classes/views/frm-entries/sidebar-shared.php:38
196
- msgid "Entry Key"
197
  msgstr ""
198
 
199
- #: classes/controllers/FrmEntriesController.php:110
200
- #: classes/controllers/FrmFormsController.php:611
201
- #: classes/widgets/FrmShowForm.php:53
202
- msgid "Form"
203
  msgstr ""
204
 
205
- #: classes/controllers/FrmEntriesController.php:111
206
- msgid "Entry Name"
207
  msgstr ""
208
 
209
- #: classes/controllers/FrmEntriesController.php:112
210
- #: classes/helpers/FrmCSVExportHelper.php:146
211
- msgid "Created By"
212
  msgstr ""
213
 
214
- #: classes/controllers/FrmEntriesController.php:115
215
- msgid "Entry creation date"
216
  msgstr ""
217
 
218
- #: classes/controllers/FrmEntriesController.php:116
219
- msgid "Entry update date"
 
 
 
 
 
 
 
 
220
  msgstr ""
221
 
222
- #: classes/controllers/FrmEntriesController.php:416
223
- msgid "Your import is complete"
224
  msgstr ""
225
 
226
- #: classes/controllers/FrmEntriesController.php:426
227
- msgid "This form is in the trash and is scheduled to be deleted permanently in %s along with any entries."
228
  msgstr ""
229
 
230
- #: classes/controllers/FrmEntriesController.php:445
231
- msgid "You are trying to view an entry that does not exist."
232
  msgstr ""
233
 
234
- #: classes/controllers/FrmEntriesController.php:473
235
- msgid "Entry was Successfully Destroyed"
236
  msgstr ""
237
 
238
- #: classes/controllers/FrmEntriesController.php:505
239
- msgid "Entries were Successfully Destroyed"
 
240
  msgstr ""
241
 
242
- #: classes/controllers/FrmEntriesController.php:508
243
- msgid "No entries were specified"
244
  msgstr ""
245
 
246
- #: classes/controllers/FrmFieldsController.php:249
247
- msgid "Other"
248
  msgstr ""
249
 
250
- #: classes/controllers/FrmFieldsController.php:252
251
- msgid "New Option"
252
  msgstr ""
253
 
254
- #: classes/controllers/FrmFormActionsController.php:17
255
- #: classes/views/frm-forms/settings.php:36
256
- msgid "Form Actions"
257
  msgstr ""
258
 
259
- #: classes/controllers/FrmFormActionsController.php:214
260
- #: classes/models/FrmEntryValidate.php:14
261
- #: classes/models/FrmSettings.php:100
262
- msgid "You do not have permission to do that"
263
  msgstr ""
264
 
265
- #: classes/controllers/FrmFormsController.php:6
266
- #: classes/controllers/FrmFormsController.php:721
267
- #: classes/controllers/FrmXMLController.php:130
268
- #: classes/views/frm-forms/list.php:5
269
- msgid "Forms"
270
  msgstr ""
271
 
272
- #: classes/controllers/FrmFormsController.php:187
273
- msgid "Settings Successfully Updated"
 
274
  msgstr ""
275
 
276
- #: classes/controllers/FrmFormsController.php:213
277
- #: classes/controllers/FrmFormsController.php:835
278
- msgid "Form was Successfully Updated"
279
  msgstr ""
280
 
281
- #: classes/controllers/FrmFormsController.php:250
282
- #: deprecated/FrmDeprecated.php:342
283
- msgid "Form template was Successfully Created"
284
  msgstr ""
285
 
286
- #: classes/controllers/FrmFormsController.php:250
287
- msgid "Form was Successfully Copied"
 
288
  msgstr ""
289
 
290
- #: classes/controllers/FrmFormsController.php:254
291
- msgid "There was a problem creating the new template."
292
  msgstr ""
293
 
294
- #: classes/controllers/FrmFormsController.php:361
295
- msgid "Form Preview"
296
  msgstr ""
297
 
298
- #: classes/controllers/FrmFormsController.php:404
299
- #: classes/controllers/FrmFormsController.php:463
300
- msgid "%1$s form restored from the Trash."
301
- msgid_plural "%1$s forms restored from the Trash."
302
- msgstr[0] ""
303
-
304
- #: classes/controllers/FrmFormsController.php:464
305
- #: classes/controllers/FrmFormsController.php:488
306
- msgid "%1$s form moved to the Trash. %2$sUndo%3$s"
307
- msgid_plural "%1$s forms moved to the Trash. %2$sUndo%3$s"
308
- msgstr[0] ""
309
-
310
- #: classes/controllers/FrmFormsController.php:510
311
- #: classes/controllers/FrmFormsController.php:526
312
- #: classes/controllers/FrmFormsController.php:540
313
- msgid "%1$s form permanently deleted."
314
- msgid_plural "%1$s forms permanently deleted."
315
- msgstr[0] ""
316
-
317
- #: classes/controllers/FrmFormsController.php:560
318
- msgid "There was an error creating a template."
319
  msgstr ""
320
 
321
- #: classes/controllers/FrmFormsController.php:595
322
- msgid "Add forms and content"
323
  msgstr ""
324
 
325
- #: classes/controllers/FrmFormsController.php:612
326
- #: classes/views/frm-forms/insert_form_popup.php:24
327
- msgid "Insert a Form"
328
  msgstr ""
329
 
330
- #: classes/controllers/FrmFormsController.php:642
331
- msgid "Display form title"
332
  msgstr ""
333
 
334
- #: classes/controllers/FrmFormsController.php:646
335
- msgid "Display form description"
336
  msgstr ""
337
 
338
- #: classes/controllers/FrmFormsController.php:650
339
- msgid "Minimize form HTML"
340
  msgstr ""
341
 
342
- #: classes/controllers/FrmFormsController.php:706
343
- #: classes/views/frm-forms/template-name-overlay.php:9
344
- msgid "Template Name"
345
  msgstr ""
346
 
347
- #: classes/controllers/FrmFormsController.php:707
348
- msgid "Type"
349
  msgstr ""
350
 
351
- #: classes/controllers/FrmFormsController.php:708
352
- #: classes/controllers/FrmFormsController.php:712
353
- #: classes/helpers/FrmCSVExportHelper.php:151
354
- msgid "Key"
355
  msgstr ""
356
 
357
- #: classes/controllers/FrmFormsController.php:710
358
- #: classes/controllers/FrmStylesController.php:376
359
- #: classes/views/styles/_sample_form.php:17
360
- #: classes/views/styles/manage.php:16
361
- msgid "Form Title"
362
  msgstr ""
363
 
364
- #: classes/controllers/FrmFormsController.php:713
365
- msgid "Shortcodes"
366
  msgstr ""
367
 
368
- #: classes/controllers/FrmFormsController.php:716
369
- #: classes/models/FrmField.php:81
370
- msgid "Date"
371
  msgstr ""
372
 
373
- #: classes/controllers/FrmFormsController.php:811
374
- msgid "You are trying to edit a form that does not exist."
375
  msgstr ""
376
 
377
- #: classes/controllers/FrmFormsController.php:815
378
- msgid "You are trying to edit a child form. Please edit from %1$shere%2$s"
379
  msgstr ""
380
 
381
- #: classes/controllers/FrmFormsController.php:837
382
- msgid "Template was Successfully Updated"
383
  msgstr ""
384
 
385
- #: classes/controllers/FrmFormsController.php:908
386
- msgid "Customize the field values with the following parameters. Click to see a sample."
387
  msgstr ""
388
 
389
- #: classes/controllers/FrmFormsController.php:922
390
- msgid "Insert user information"
 
 
391
  msgstr ""
392
 
393
- #: classes/controllers/FrmFormsController.php:945
394
- msgid "Separator"
 
395
  msgstr ""
396
 
397
- #: classes/controllers/FrmFormsController.php:946
398
- msgid "Use a different separator for checkbox fields"
399
  msgstr ""
400
 
401
- #: classes/controllers/FrmFormsController.php:948
402
- msgid "Date Format"
403
  msgstr ""
404
 
405
- #: classes/controllers/FrmFormsController.php:949
406
- msgid "Field Label"
407
  msgstr ""
408
 
409
- #: classes/controllers/FrmFormsController.php:951
410
- msgid "No Auto P"
411
  msgstr ""
412
 
413
- #: classes/controllers/FrmFormsController.php:952
414
- msgid "Do not automatically add any paragraphs or line breaks"
415
  msgstr ""
416
 
417
- #: classes/controllers/FrmFormsController.php:966
418
- #: classes/models/FrmField.php:58
419
- msgid "User ID"
420
  msgstr ""
421
 
422
- #: classes/controllers/FrmFormsController.php:967
423
- msgid "First Name"
 
424
  msgstr ""
425
 
426
- #: classes/controllers/FrmFormsController.php:968
427
- msgid "Last Name"
428
  msgstr ""
429
 
430
- #: classes/controllers/FrmFormsController.php:969
431
- msgid "Display Name"
432
  msgstr ""
433
 
434
- #: classes/controllers/FrmFormsController.php:970
435
- msgid "User Login"
 
436
  msgstr ""
437
 
438
- #: classes/controllers/FrmFormsController.php:971
439
- #: classes/models/FrmField.php:34
440
- msgid "Email"
 
 
441
  msgstr ""
442
 
443
- #: classes/controllers/FrmFormsController.php:972
444
- msgid "Avatar"
445
  msgstr ""
446
 
447
- #: classes/controllers/FrmFormsController.php:973
448
- msgid "Author Link"
 
 
 
 
 
449
  msgstr ""
450
 
451
- #: classes/controllers/FrmFormsController.php:985
452
- #: classes/views/frm-entries/sidebar-shared.php:32
453
- msgid "Entry ID"
 
 
454
  msgstr ""
455
 
456
- #: classes/controllers/FrmFormsController.php:987
457
- msgid "Post ID"
458
  msgstr ""
459
 
460
- #: classes/controllers/FrmFormsController.php:988
461
- msgid "User IP"
462
  msgstr ""
463
 
464
- #: classes/controllers/FrmFormsController.php:989
465
- msgid "Entry created"
466
  msgstr ""
467
 
468
- #: classes/controllers/FrmFormsController.php:990
469
- msgid "Entry updated"
470
  msgstr ""
471
 
472
- #: classes/controllers/FrmFormsController.php:992
473
- msgid "Site URL"
474
  msgstr ""
475
 
476
- #: classes/controllers/FrmFormsController.php:993
477
- msgid "Site Name"
478
  msgstr ""
479
 
480
- #: classes/controllers/FrmFormsController.php:1001
481
- msgid "Default Msg"
 
482
  msgstr ""
483
 
484
- #: classes/controllers/FrmFormsController.php:1002
485
- msgid "Default HTML"
 
 
 
486
  msgstr ""
487
 
488
- #: classes/controllers/FrmFormsController.php:1003
489
- msgid "Default Plain"
 
 
 
 
 
 
490
  msgstr ""
491
 
492
- #: classes/controllers/FrmFormsController.php:1092
493
- msgid "No forms were specified"
 
 
 
 
 
 
494
  msgstr ""
495
 
496
- #: classes/controllers/FrmFormsController.php:1195
497
- msgid "Abnormal HTML characters prevented your form from saving correctly"
 
498
  msgstr ""
499
 
500
- #: classes/controllers/FrmFormsController.php:1264
501
- #: classes/helpers/FrmFormsHelper.php:55
502
- #: classes/helpers/FrmFormsHelper.php:113
503
- #: classes/helpers/FrmFormsHelper.php:777
504
- #: classes/helpers/FrmFormsListHelper.php:295
505
- #: classes/views/frm-forms/list-templates.php:56
506
- #: classes/views/shared/admin-header.php:29
507
- #: classes/views/shared/form-nav.php:20
508
- #: classes/views/styles/manage.php:36
509
- #: classes/views/xml/import_form.php:96
510
- msgid "(no title)"
511
  msgstr ""
512
 
513
- #: classes/controllers/FrmFormsController.php:1310
514
- #: classes/controllers/FrmFormsController.php:1324
515
- msgid "Please select a valid form"
516
  msgstr ""
517
 
518
- #: classes/controllers/FrmFormsController.php:1555
519
- msgid "Please wait while you are redirected."
520
  msgstr ""
521
 
522
- #: classes/controllers/FrmFormsController.php:1589
523
- msgid "%1$sClick here%2$s if you are not automatically redirected."
524
- msgstr ""
 
 
 
525
 
526
- #: classes/controllers/FrmSettingsController.php:9
527
- #: classes/views/frm-settings/form.php:2
528
- msgid "Global Settings"
529
  msgstr ""
530
 
531
- #: classes/controllers/FrmSettingsController.php:50
532
- #: classes/views/addons/settings.php:2
533
- msgid "Plugin Licenses"
534
  msgstr ""
535
 
536
- #: classes/controllers/FrmSettingsController.php:100
537
- #: classes/controllers/FrmSettingsController.php:103
538
- msgid "Settings Saved"
539
  msgstr ""
540
 
541
- #: classes/controllers/FrmSettingsController.php:136
542
- msgid "Extra form features like file uploads, pagination, etc"
 
543
  msgstr ""
544
 
545
- #: classes/controllers/FrmSettingsController.php:137
546
- msgid "Repeaters & cascading fields for advanced forms"
547
  msgstr ""
548
 
549
- #: classes/controllers/FrmSettingsController.php:138
550
- msgid "Flexibly view, search, edit, and delete entries anywhere"
551
  msgstr ""
552
 
553
- #: classes/controllers/FrmSettingsController.php:139
554
- msgid "Display entries with virtually limitless Formidable views"
 
555
  msgstr ""
556
 
557
- #: classes/controllers/FrmSettingsController.php:140
558
- msgid "Create surveys & polls"
559
  msgstr ""
560
 
561
- #: classes/controllers/FrmSettingsController.php:141
562
- msgid "WordPress user registration and login forms"
563
  msgstr ""
564
 
565
- #: classes/controllers/FrmSettingsController.php:142
566
- msgid "Create Stripe, PayPal or Authorize.net payment forms"
 
 
567
  msgstr ""
568
 
569
- #: classes/controllers/FrmSettingsController.php:143
570
- msgid "Powerful conditional logic for smart forms"
571
  msgstr ""
572
 
573
- #: classes/controllers/FrmSettingsController.php:144
574
- msgid "Integrations with 1000+ marketing & payment services"
575
  msgstr ""
576
 
577
- #: classes/controllers/FrmSettingsController.php:145
578
- msgid "Collect digital signatures"
579
  msgstr ""
580
 
581
- #: classes/controllers/FrmSettingsController.php:146
582
- msgid "Accept user-submitted content with Post submissions"
 
 
583
  msgstr ""
584
 
585
- #: classes/controllers/FrmSettingsController.php:147
586
- msgid "Email routing"
 
 
 
 
 
587
  msgstr ""
588
 
589
- #: classes/controllers/FrmSettingsController.php:148
590
- msgid "Create calculator forms"
591
  msgstr ""
592
 
593
- #: classes/controllers/FrmSettingsController.php:149
594
- msgid "Save draft entries and return later"
595
  msgstr ""
596
 
597
- #: classes/controllers/FrmSettingsController.php:150
598
- msgid "Analyze form data with graphs & stats"
599
  msgstr ""
600
 
601
- #: classes/controllers/FrmStylesController.php:17
602
- #: classes/controllers/FrmStylesController.php:35
603
- #: classes/controllers/FrmStylesController.php:47
604
- msgid "Styles"
605
  msgstr ""
606
 
607
- #: classes/controllers/FrmStylesController.php:36
608
- #: classes/controllers/FrmStylesController.php:37
609
- #: classes/views/styles/_field-colors.php:44
610
- #: classes/views/styles/_field-colors.php:106
611
- #: classes/views/styles/_field-description.php:14
612
- msgid "Style"
613
  msgstr ""
614
 
615
- #: classes/controllers/FrmStylesController.php:38
616
- #: classes/helpers/FrmFormsListHelper.php:281
617
- #: classes/views/frm-entries/sidebar-shared.php:21
618
- msgid "Edit"
619
  msgstr ""
620
 
621
- #: classes/controllers/FrmStylesController.php:39
622
- msgid "Create a New Style"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
623
  msgstr ""
624
 
625
  #: classes/controllers/FrmStylesController.php:40
@@ -641,11 +759,18 @@ msgstr ""
641
  msgid "General"
642
  msgstr ""
643
 
 
 
 
 
 
 
 
644
  #: classes/controllers/FrmStylesController.php:377
645
- #: classes/views/frm-forms/mb_html_tab.php:49
646
  #: classes/views/frm-forms/settings.php:248
647
  #: classes/views/frm-forms/template-name-overlay.php:16
648
  #: classes/views/frm-forms/template-name-overlay.php:17
 
649
  msgid "Form Description"
650
  msgstr ""
651
 
@@ -684,4235 +809,4111 @@ msgstr ""
684
  msgid "Click to toggle"
685
  msgstr ""
686
 
687
- #: classes/controllers/FrmXMLController.php:6
688
- #: classes/views/xml/import_form.php:5
689
- msgid "Import/Export"
690
  msgstr ""
691
 
692
- #: classes/controllers/FrmXMLController.php:49
693
- msgid "There was an error reading the form template"
 
694
  msgstr ""
695
 
696
- #: classes/controllers/FrmXMLController.php:69
697
- msgid "There was an error importing form"
 
698
  msgstr ""
699
 
700
- #: classes/controllers/FrmXMLController.php:164
701
- msgid "Oops, you didn't select a file."
 
702
  msgstr ""
703
 
704
- #: classes/controllers/FrmXMLController.php:173
705
- msgid "The file does not exist, please try again."
706
  msgstr ""
707
 
708
- #: classes/controllers/FrmXMLController.php:198
709
- msgid "XML import is not enabled on your server with the libxml_disable_entity_loader function."
710
  msgstr ""
711
 
712
- #: classes/controllers/FrmXMLController.php:402
713
- msgid "Please select a form"
714
  msgstr ""
715
 
716
- #: classes/controllers/FrmXMLController.php:459
717
- msgid "There are no entries for that form."
718
- msgstr ""
 
 
719
 
720
- #: classes/helpers/FrmAppHelper.php:616
721
- #: classes/helpers/FrmFormsListHelper.php:102
722
- msgid "Add New"
723
- msgstr ""
 
724
 
725
- #: classes/helpers/FrmAppHelper.php:635
726
- #: classes/views/frm-entries/list.php:19
727
- #: classes/views/frm-forms/list.php:21
728
- #: classes/views/shared/mb_adv_info.php:21
729
- msgid "Search"
730
- msgstr ""
731
 
732
- #: classes/helpers/FrmAppHelper.php:763
733
- msgid "View Forms and Templates"
734
  msgstr ""
735
 
736
- #: classes/helpers/FrmAppHelper.php:764
737
- msgid "Add/Edit Forms and Templates"
738
  msgstr ""
739
 
740
- #: classes/helpers/FrmAppHelper.php:765
741
- msgid "Delete Forms and Templates"
 
 
742
  msgstr ""
743
 
744
- #: classes/helpers/FrmAppHelper.php:766
745
- msgid "Access this Settings Page"
 
746
  msgstr ""
747
 
748
- #: classes/helpers/FrmAppHelper.php:767
749
- msgid "View Entries from Admin Area"
750
  msgstr ""
751
 
752
- #: classes/helpers/FrmAppHelper.php:768
753
- msgid "Delete Entries from Admin Area"
754
  msgstr ""
755
 
756
- #: classes/helpers/FrmAppHelper.php:775
757
- msgid "Add Entries from Admin Area"
758
  msgstr ""
759
 
760
- #: classes/helpers/FrmAppHelper.php:776
761
- msgid "Edit Entries from Admin Area"
 
762
  msgstr ""
763
 
764
- #: classes/helpers/FrmAppHelper.php:777
765
- msgid "View Reports"
766
  msgstr ""
767
 
768
- #: classes/helpers/FrmAppHelper.php:778
769
- msgid "Add/Edit Views"
 
 
770
  msgstr ""
771
 
772
- #: classes/helpers/FrmAppHelper.php:1382
773
- msgid "at"
774
  msgstr ""
775
 
776
- #: classes/helpers/FrmAppHelper.php:1431
777
- #: classes/helpers/FrmAppHelper.php:1450
778
- msgid "seconds"
779
  msgstr ""
780
 
781
- #: classes/helpers/FrmAppHelper.php:1444
782
- msgid "year"
783
  msgstr ""
784
 
785
- #: classes/helpers/FrmAppHelper.php:1444
786
- msgid "years"
787
  msgstr ""
788
 
789
- #: classes/helpers/FrmAppHelper.php:1445
790
- msgid "month"
791
  msgstr ""
792
 
793
- #: classes/helpers/FrmAppHelper.php:1445
794
- msgid "months"
795
  msgstr ""
796
 
797
- #: classes/helpers/FrmAppHelper.php:1446
798
- msgid "week"
799
  msgstr ""
800
 
801
- #: classes/helpers/FrmAppHelper.php:1446
802
- msgid "weeks"
803
  msgstr ""
804
 
805
- #: classes/helpers/FrmAppHelper.php:1447
806
- msgid "day"
807
  msgstr ""
808
 
809
- #: classes/helpers/FrmAppHelper.php:1447
810
- msgid "days"
811
  msgstr ""
812
 
813
- #: classes/helpers/FrmAppHelper.php:1448
814
- msgid "hour"
815
  msgstr ""
816
 
817
- #: classes/helpers/FrmAppHelper.php:1448
818
- msgid "hours"
819
  msgstr ""
820
 
821
- #: classes/helpers/FrmAppHelper.php:1449
822
- msgid "minute"
823
  msgstr ""
824
 
825
- #: classes/helpers/FrmAppHelper.php:1449
826
- msgid "minutes"
827
  msgstr ""
828
 
829
- #: classes/helpers/FrmAppHelper.php:1450
830
- msgid "second"
831
  msgstr ""
832
 
833
- #: classes/helpers/FrmAppHelper.php:1542
834
- msgid "Give this action a label for easy reference."
835
  msgstr ""
836
 
837
- #: classes/helpers/FrmAppHelper.php:1543
838
- msgid "Add one or more recipient addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com. [admin_email] is the address set in WP General Settings."
839
  msgstr ""
840
 
841
- #: classes/helpers/FrmAppHelper.php:1544
842
- msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
843
  msgstr ""
844
 
845
- #: classes/helpers/FrmAppHelper.php:1545
846
- msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
 
847
  msgstr ""
848
 
849
- #: classes/helpers/FrmAppHelper.php:1546
850
- msgid "If you would like a different reply to address than the \"from\" address, add a single address here. FORMAT: Name <name@email.com> or name@email.com."
 
 
 
851
  msgstr ""
852
 
853
- #: classes/helpers/FrmAppHelper.php:1547
854
- msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
855
  msgstr ""
856
 
857
- #: classes/helpers/FrmAppHelper.php:1548
858
- msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
859
  msgstr ""
860
 
861
- #: classes/helpers/FrmAppHelper.php:1680
862
- #: classes/helpers/FrmAppHelper.php:1750
863
- msgid "Please wait while your site updates."
864
  msgstr ""
865
 
866
- #: classes/helpers/FrmAppHelper.php:1681
867
- msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
868
  msgstr ""
869
 
870
- #: classes/helpers/FrmAppHelper.php:1683
871
- #: classes/helpers/FrmAppHelper.php:1710
872
- msgid "Loading&hellip;"
873
  msgstr ""
874
 
875
- #: classes/helpers/FrmAppHelper.php:1711
876
- msgid "Remove"
877
  msgstr ""
878
 
879
- #: classes/helpers/FrmAppHelper.php:1714
880
- #: classes/helpers/FrmCSVExportHelper.php:150
881
- msgid "ID"
882
  msgstr ""
883
 
884
- #: classes/helpers/FrmAppHelper.php:1715
885
- msgid "No results match"
886
  msgstr ""
887
 
888
- #: classes/helpers/FrmAppHelper.php:1716
889
- msgid "That file looks like Spam."
890
  msgstr ""
891
 
892
- #: classes/helpers/FrmAppHelper.php:1717
893
- msgid "There is an error in the calculation in the field with key"
894
  msgstr ""
895
 
896
- #: classes/helpers/FrmAppHelper.php:1718
897
- msgid "Please complete the preceding required fields before uploading a file."
898
  msgstr ""
899
 
900
- #: classes/helpers/FrmAppHelper.php:1725
901
- msgid "Are you sure you want to do this? Clicking OK will delete all forms, form data, and all other Formidable data. There is no Undo."
 
 
 
 
 
 
 
 
 
902
  msgstr ""
903
 
904
- #: classes/helpers/FrmAppHelper.php:1726
905
- #: classes/views/frm-forms/add_field.php:37
906
- #: classes/views/frm-forms/add_field.php:50
907
- msgid "(Click to add description)"
908
  msgstr ""
909
 
910
- #: classes/helpers/FrmAppHelper.php:1727
911
- #: classes/views/frm-fields/single-option.php:8
912
- #: classes/views/frm-fields/single-option.php:14
913
- msgid "(Blank)"
914
  msgstr ""
915
 
916
- #: classes/helpers/FrmAppHelper.php:1728
917
- #: classes/views/frm-forms/add_field.php:17
918
- msgid "(no label)"
919
  msgstr ""
920
 
921
- #: classes/helpers/FrmAppHelper.php:1729
922
- msgid "Saving"
923
  msgstr ""
924
 
925
- #: classes/helpers/FrmAppHelper.php:1730
926
- msgid "Saved"
927
  msgstr ""
928
 
929
- #: classes/helpers/FrmAppHelper.php:1731
930
- msgid "OK"
 
931
  msgstr ""
932
 
933
- #: classes/helpers/FrmAppHelper.php:1732
934
- #: classes/views/frm-forms/template-name-overlay.php:29
935
- #: classes/views/shared/admin-header.php:15
936
- msgid "Cancel"
937
  msgstr ""
938
 
939
- #: classes/helpers/FrmAppHelper.php:1733
940
- #: classes/views/frm-forms/add_field.php:197
941
- #: classes/views/styles/_buttons.php:12
942
- #: classes/views/styles/_field-colors.php:5
943
- msgid "Default"
944
  msgstr ""
945
 
946
- #: classes/helpers/FrmAppHelper.php:1734
947
- #: classes/helpers/FrmFieldsHelper.php:1120
948
- msgid "Clear default value when typing"
949
  msgstr ""
950
 
951
- #: classes/helpers/FrmAppHelper.php:1735
952
- #: classes/helpers/FrmFieldsHelper.php:1120
953
- msgid "Do not clear default value when typing"
954
  msgstr ""
955
 
956
- #: classes/helpers/FrmAppHelper.php:1736
957
- #: classes/helpers/FrmFieldsHelper.php:1130
958
- msgid "Default value will pass form validation"
959
  msgstr ""
960
 
961
- #: classes/helpers/FrmAppHelper.php:1737
962
- #: classes/helpers/FrmFieldsHelper.php:1130
963
- msgid "Default value will NOT pass form validation"
964
  msgstr ""
965
 
966
- #: classes/helpers/FrmAppHelper.php:1738
967
- #: classes/helpers/FrmEntriesListHelper.php:257
968
- #: classes/helpers/FrmFormsHelper.php:850
969
- #: classes/views/frm-forms/list-templates.php:123
970
- #: classes/views/styles/show.php:64
971
- msgid "Are you sure?"
972
  msgstr ""
973
 
974
- #: classes/helpers/FrmAppHelper.php:1739
975
- msgid "Are you sure you want to delete this field and all data associated with it?"
 
976
  msgstr ""
977
 
978
- #: classes/helpers/FrmAppHelper.php:1740
979
- msgid "WARNING: This will delete all fields inside of the section as well."
980
  msgstr ""
981
 
982
- #: classes/helpers/FrmAppHelper.php:1741
983
- msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
984
  msgstr ""
985
 
986
- #: classes/helpers/FrmAppHelper.php:1743
987
- #: classes/helpers/FrmFieldsHelper.php:271
988
- msgid "The entered values do not match"
989
  msgstr ""
990
 
991
- #: classes/helpers/FrmAppHelper.php:1744
992
- msgid "Enter Email"
993
  msgstr ""
994
 
995
- #: classes/helpers/FrmAppHelper.php:1745
996
- msgid "Confirm Email"
997
  msgstr ""
998
 
999
- #: classes/helpers/FrmAppHelper.php:1746
1000
- msgid "In certain browsers (e.g. Firefox) text will not display correctly if the field height is too small relative to the field padding and text size. Please increase your field height or decrease your field padding."
1001
  msgstr ""
1002
 
1003
- #: classes/helpers/FrmAppHelper.php:1747
1004
- msgid "Enter Password"
1005
  msgstr ""
1006
 
1007
- #: classes/helpers/FrmAppHelper.php:1748
1008
- msgid "Confirm Password"
1009
  msgstr ""
1010
 
1011
- #: classes/helpers/FrmAppHelper.php:1749
1012
- msgid "Import Complete"
1013
  msgstr ""
1014
 
1015
- #: classes/helpers/FrmAppHelper.php:1751
1016
- msgid "Warning: There is no way to retrieve unsaved entries."
 
 
1017
  msgstr ""
1018
 
1019
- #: classes/helpers/FrmAppHelper.php:1752
1020
- msgid "Private"
1021
  msgstr ""
1022
 
1023
- #: classes/helpers/FrmAppHelper.php:1755
1024
- msgid "No new licenses were found"
1025
  msgstr ""
1026
 
1027
- #: classes/helpers/FrmAppHelper.php:1756
1028
- msgid "This calculation has at least one unmatched ( ) { } [ ]."
1029
  msgstr ""
1030
 
1031
- #: classes/helpers/FrmAppHelper.php:1757
1032
- msgid "This calculation may have shortcodes that work in Views but not forms."
1033
  msgstr ""
1034
 
1035
- #: classes/helpers/FrmAppHelper.php:1758
1036
- msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
1037
  msgstr ""
1038
 
1039
- #: classes/helpers/FrmAppHelper.php:1759
1040
- msgid "Please enter a Repeat Limit that is greater than 1."
1041
  msgstr ""
1042
 
1043
- #: classes/helpers/FrmAppHelper.php:1760
1044
- msgid "Installing"
1045
  msgstr ""
1046
 
1047
- #: classes/helpers/FrmAppHelper.php:1761
1048
- #: classes/views/addons/list.php:40
1049
- #: classes/views/addons/list.php:41
1050
- msgid "Install"
1051
  msgstr ""
1052
 
1053
- #: classes/helpers/FrmAppHelper.php:1785
1054
- msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
1055
  msgstr ""
1056
 
1057
- #: classes/helpers/FrmAppHelper.php:1791
1058
- msgid "English"
 
1059
  msgstr ""
1060
 
1061
- #: classes/helpers/FrmAppHelper.php:1792
1062
- msgid "English/Western"
1063
  msgstr ""
1064
 
1065
- #: classes/helpers/FrmAppHelper.php:1793
1066
- msgid "Afrikaans"
1067
  msgstr ""
1068
 
1069
- #: classes/helpers/FrmAppHelper.php:1794
1070
- msgid "Albanian"
1071
  msgstr ""
1072
 
1073
- #: classes/helpers/FrmAppHelper.php:1795
1074
- msgid "Arabic"
1075
  msgstr ""
1076
 
1077
- #: classes/helpers/FrmAppHelper.php:1796
1078
- msgid "Armenian"
1079
  msgstr ""
1080
 
1081
- #: classes/helpers/FrmAppHelper.php:1797
1082
- msgid "Azerbaijani"
1083
  msgstr ""
1084
 
1085
- #: classes/helpers/FrmAppHelper.php:1798
1086
- msgid "Basque"
1087
  msgstr ""
1088
 
1089
- #: classes/helpers/FrmAppHelper.php:1799
1090
- msgid "Bosnian"
1091
  msgstr ""
1092
 
1093
- #: classes/helpers/FrmAppHelper.php:1800
1094
- msgid "Bulgarian"
1095
  msgstr ""
1096
 
1097
- #: classes/helpers/FrmAppHelper.php:1801
1098
- msgid "Catalan"
1099
  msgstr ""
1100
 
1101
- #: classes/helpers/FrmAppHelper.php:1802
1102
- msgid "Chinese Hong Kong"
1103
  msgstr ""
1104
 
1105
- #: classes/helpers/FrmAppHelper.php:1803
1106
- msgid "Chinese Simplified"
1107
  msgstr ""
1108
 
1109
- #: classes/helpers/FrmAppHelper.php:1804
1110
- msgid "Chinese Traditional"
1111
  msgstr ""
1112
 
1113
- #: classes/helpers/FrmAppHelper.php:1805
1114
- msgid "Croatian"
1115
  msgstr ""
1116
 
1117
- #: classes/helpers/FrmAppHelper.php:1806
1118
- msgid "Czech"
1119
  msgstr ""
1120
 
1121
- #: classes/helpers/FrmAppHelper.php:1807
1122
- msgid "Danish"
1123
  msgstr ""
1124
 
1125
- #: classes/helpers/FrmAppHelper.php:1808
1126
- msgid "Dutch"
1127
  msgstr ""
1128
 
1129
- #: classes/helpers/FrmAppHelper.php:1809
1130
- msgid "English/UK"
1131
  msgstr ""
1132
 
1133
- #: classes/helpers/FrmAppHelper.php:1810
1134
- msgid "Esperanto"
1135
  msgstr ""
1136
 
1137
- #: classes/helpers/FrmAppHelper.php:1811
1138
- msgid "Estonian"
1139
  msgstr ""
1140
 
1141
- #: classes/helpers/FrmAppHelper.php:1812
1142
- msgid "Faroese"
1143
  msgstr ""
1144
 
1145
- #: classes/helpers/FrmAppHelper.php:1813
1146
- msgid "Farsi/Persian"
 
1147
  msgstr ""
1148
 
1149
- #: classes/helpers/FrmAppHelper.php:1814
1150
- msgid "Filipino"
1151
  msgstr ""
1152
 
1153
- #: classes/helpers/FrmAppHelper.php:1815
1154
- msgid "Finnish"
 
1155
  msgstr ""
1156
 
1157
- #: classes/helpers/FrmAppHelper.php:1816
1158
- msgid "French"
1159
  msgstr ""
1160
 
1161
- #: classes/helpers/FrmAppHelper.php:1817
1162
- msgid "French/Canadian"
1163
  msgstr ""
1164
 
1165
- #: classes/helpers/FrmAppHelper.php:1818
1166
- msgid "French/Swiss"
 
1167
  msgstr ""
1168
 
1169
- #: classes/helpers/FrmAppHelper.php:1819
1170
- msgid "German"
 
1171
  msgstr ""
1172
 
1173
- #: classes/helpers/FrmAppHelper.php:1820
1174
- msgid "German/Austria"
1175
  msgstr ""
1176
 
1177
- #: classes/helpers/FrmAppHelper.php:1821
1178
- msgid "German/Switzerland"
1179
  msgstr ""
1180
 
1181
- #: classes/helpers/FrmAppHelper.php:1822
1182
- msgid "Greek"
1183
  msgstr ""
1184
 
1185
- #: classes/helpers/FrmAppHelper.php:1823
1186
- #: classes/helpers/FrmAppHelper.php:1824
1187
- msgid "Hebrew"
1188
  msgstr ""
1189
 
1190
- #: classes/helpers/FrmAppHelper.php:1825
1191
- msgid "Hindi"
1192
  msgstr ""
1193
 
1194
- #: classes/helpers/FrmAppHelper.php:1826
1195
- msgid "Hungarian"
1196
  msgstr ""
1197
 
1198
- #: classes/helpers/FrmAppHelper.php:1827
1199
- msgid "Icelandic"
1200
  msgstr ""
1201
 
1202
- #: classes/helpers/FrmAppHelper.php:1828
1203
- msgid "Indonesian"
 
 
1204
  msgstr ""
1205
 
1206
- #: classes/helpers/FrmAppHelper.php:1829
1207
- msgid "Italian"
 
 
 
1208
  msgstr ""
1209
 
1210
- #: classes/helpers/FrmAppHelper.php:1830
1211
- msgid "Japanese"
 
1212
  msgstr ""
1213
 
1214
- #: classes/helpers/FrmAppHelper.php:1831
1215
- msgid "Korean"
1216
  msgstr ""
1217
 
1218
- #: classes/helpers/FrmAppHelper.php:1832
1219
- msgid "Latvian"
1220
  msgstr ""
1221
 
1222
- #: classes/helpers/FrmAppHelper.php:1833
1223
- msgid "Lithuanian"
1224
  msgstr ""
1225
 
1226
- #: classes/helpers/FrmAppHelper.php:1834
1227
- msgid "Malaysian"
1228
  msgstr ""
1229
 
1230
- #: classes/helpers/FrmAppHelper.php:1835
1231
- msgid "Norwegian"
1232
  msgstr ""
1233
 
1234
- #: classes/helpers/FrmAppHelper.php:1836
1235
- msgid "Polish"
1236
  msgstr ""
1237
 
1238
- #: classes/helpers/FrmAppHelper.php:1837
1239
- msgid "Portuguese"
1240
  msgstr ""
1241
 
1242
- #: classes/helpers/FrmAppHelper.php:1838
1243
- msgid "Portuguese/Brazilian"
1244
  msgstr ""
1245
 
1246
- #: classes/helpers/FrmAppHelper.php:1839
1247
- msgid "Portuguese/Portugal"
1248
  msgstr ""
1249
 
1250
- #: classes/helpers/FrmAppHelper.php:1840
1251
- msgid "Romanian"
 
1252
  msgstr ""
1253
 
1254
- #: classes/helpers/FrmAppHelper.php:1841
1255
- msgid "Russian"
1256
  msgstr ""
1257
 
1258
- #: classes/helpers/FrmAppHelper.php:1842
1259
- #: classes/helpers/FrmAppHelper.php:1843
1260
- msgid "Serbian"
1261
  msgstr ""
1262
 
1263
- #: classes/helpers/FrmAppHelper.php:1844
1264
- msgid "Slovak"
 
 
 
1265
  msgstr ""
1266
 
1267
- #: classes/helpers/FrmAppHelper.php:1845
1268
- msgid "Slovenian"
1269
  msgstr ""
1270
 
1271
- #: classes/helpers/FrmAppHelper.php:1846
1272
- msgid "Spanish"
 
 
 
 
1273
  msgstr ""
1274
 
1275
- #: classes/helpers/FrmAppHelper.php:1847
1276
- msgid "Spanish/Latin America"
 
 
 
1277
  msgstr ""
1278
 
1279
- #: classes/helpers/FrmAppHelper.php:1848
1280
- msgid "Swedish"
1281
  msgstr ""
1282
 
1283
- #: classes/helpers/FrmAppHelper.php:1849
1284
- msgid "Tamil"
 
1285
  msgstr ""
1286
 
1287
- #: classes/helpers/FrmAppHelper.php:1850
1288
- msgid "Thai"
1289
  msgstr ""
1290
 
1291
- #: classes/helpers/FrmAppHelper.php:1851
1292
- #: classes/helpers/FrmAppHelper.php:1852
1293
- msgid "Turkish"
1294
  msgstr ""
1295
 
1296
- #: classes/helpers/FrmAppHelper.php:1853
1297
- msgid "Ukranian"
 
1298
  msgstr ""
1299
 
1300
- #: classes/helpers/FrmAppHelper.php:1854
1301
- msgid "Vietnamese"
1302
  msgstr ""
1303
 
1304
- #: classes/helpers/FrmCSVExportHelper.php:121
1305
- msgid "(label)"
1306
  msgstr ""
1307
 
1308
- #: classes/helpers/FrmCSVExportHelper.php:137
1309
- msgid "Comment"
 
1310
  msgstr ""
1311
 
1312
- #: classes/helpers/FrmCSVExportHelper.php:138
1313
- msgid "Comment User"
1314
  msgstr ""
1315
 
1316
- #: classes/helpers/FrmCSVExportHelper.php:139
1317
- msgid "Comment Date"
1318
  msgstr ""
1319
 
1320
- #: classes/helpers/FrmCSVExportHelper.php:144
1321
- msgid "Timestamp"
1322
  msgstr ""
1323
 
1324
- #: classes/helpers/FrmCSVExportHelper.php:145
1325
- msgid "Last Updated"
1326
  msgstr ""
1327
 
1328
- #: classes/helpers/FrmCSVExportHelper.php:147
1329
- msgid "Updated By"
1330
  msgstr ""
1331
 
1332
- #: classes/helpers/FrmCSVExportHelper.php:148
1333
- #: classes/helpers/FrmFormsHelper.php:964
1334
- #: classes/helpers/FrmFormsListHelper.php:322
1335
- msgid "Draft"
1336
  msgstr ""
1337
 
1338
- #: classes/helpers/FrmCSVExportHelper.php:149
1339
- msgid "IP"
1340
  msgstr ""
1341
 
1342
- #: classes/helpers/FrmCSVExportHelper.php:153
1343
- msgid "Parent ID"
1344
  msgstr ""
1345
 
1346
- #: classes/helpers/FrmEntriesHelper.php:456
1347
- #: classes/helpers/FrmEntriesHelper.php:457
1348
- msgid "Unknown"
1349
  msgstr ""
1350
 
1351
- #: classes/helpers/FrmEntriesHelper.php:541
1352
- #: classes/helpers/FrmEntriesListHelper.php:257
1353
- #: classes/helpers/FrmFormsHelper.php:854
1354
- #: classes/helpers/FrmFormsListHelper.php:121
1355
- #: classes/models/FrmFormAction.php:743
1356
- #: classes/views/frm-form-actions/form_action.php:19
1357
- #: classes/views/frm-forms/list-templates.php:124
1358
- msgid "Delete"
1359
  msgstr ""
1360
 
1361
- #: classes/helpers/FrmEntriesHelper.php:543
1362
- msgid "Really delete?"
1363
  msgstr ""
1364
 
1365
- #: classes/helpers/FrmEntriesListHelper.php:90
1366
- msgid "No Entries Found"
1367
  msgstr ""
1368
 
1369
- #: classes/helpers/FrmEntriesListHelper.php:113
1370
- msgid "View all forms"
1371
  msgstr ""
1372
 
1373
- #: classes/helpers/FrmEntriesListHelper.php:114
1374
- msgid "Filter"
1375
  msgstr ""
1376
 
1377
- #: classes/helpers/FrmEntriesListHelper.php:224
1378
- msgid "No"
1379
  msgstr ""
1380
 
1381
- #: classes/helpers/FrmEntriesListHelper.php:224
1382
- msgid "Yes"
 
1383
  msgstr ""
1384
 
1385
- #: classes/helpers/FrmEntriesListHelper.php:253
1386
- #: classes/views/frm-entries/sidebar-shared.php:24
1387
- msgid "View"
1388
  msgstr ""
1389
 
1390
- #: classes/helpers/FrmFieldsHelper.php:163
1391
- #: classes/helpers/FrmFieldsHelper.php:279
1392
- #: classes/helpers/FrmXMLHelper.php:954
1393
- #: classes/models/fields/FrmFieldType.php:327
1394
- msgid "%s is invalid"
1395
  msgstr ""
1396
 
1397
- #: classes/helpers/FrmFieldsHelper.php:275
1398
- msgid "%s must be unique"
1399
  msgstr ""
1400
 
1401
- #: classes/helpers/FrmFieldsHelper.php:278
1402
- #: classes/models/fields/FrmFieldType.php:325
1403
- msgid "This field is invalid"
1404
  msgstr ""
1405
 
1406
- #: classes/helpers/FrmFieldsHelper.php:440
1407
- msgid "Please add options from the WordPress \"%1$s\" page"
1408
  msgstr ""
1409
 
1410
- #: classes/helpers/FrmFieldsHelper.php:441
1411
- msgid "Categories"
1412
  msgstr ""
1413
 
1414
- #: classes/helpers/FrmFieldsHelper.php:1236
1415
- msgid "Afghanistan"
 
1416
  msgstr ""
1417
 
1418
- #: classes/helpers/FrmFieldsHelper.php:1236
1419
- msgid "Albania"
1420
  msgstr ""
1421
 
1422
- #: classes/helpers/FrmFieldsHelper.php:1236
1423
- msgid "Algeria"
1424
  msgstr ""
1425
 
1426
- #: classes/helpers/FrmFieldsHelper.php:1236
1427
- msgid "American Samoa"
 
1428
  msgstr ""
1429
 
1430
- #: classes/helpers/FrmFieldsHelper.php:1236
1431
- msgid "Andorra"
 
 
 
1432
  msgstr ""
1433
 
1434
- #: classes/helpers/FrmFieldsHelper.php:1236
1435
- msgid "Angola"
1436
  msgstr ""
1437
 
1438
- #: classes/helpers/FrmFieldsHelper.php:1236
1439
- msgid "Anguilla"
1440
  msgstr ""
1441
 
1442
- #: classes/helpers/FrmFieldsHelper.php:1236
1443
- msgid "Antarctica"
1444
  msgstr ""
1445
 
1446
- #: classes/helpers/FrmFieldsHelper.php:1236
1447
- msgid "Antigua and Barbuda"
1448
  msgstr ""
1449
 
1450
- #: classes/helpers/FrmFieldsHelper.php:1236
1451
- msgid "Argentina"
1452
  msgstr ""
1453
 
1454
- #: classes/helpers/FrmFieldsHelper.php:1236
1455
- msgid "Armenia"
1456
  msgstr ""
1457
 
1458
- #: classes/helpers/FrmFieldsHelper.php:1236
1459
- msgid "Aruba"
1460
  msgstr ""
1461
 
1462
- #: classes/helpers/FrmFieldsHelper.php:1236
1463
- msgid "Australia"
1464
  msgstr ""
1465
 
1466
- #: classes/helpers/FrmFieldsHelper.php:1236
1467
- msgid "Austria"
1468
  msgstr ""
1469
 
1470
- #: classes/helpers/FrmFieldsHelper.php:1236
1471
- msgid "Azerbaijan"
1472
  msgstr ""
1473
 
1474
- #: classes/helpers/FrmFieldsHelper.php:1236
1475
- msgid "Bahamas"
1476
  msgstr ""
1477
 
1478
- #: classes/helpers/FrmFieldsHelper.php:1236
1479
- msgid "Bahrain"
1480
  msgstr ""
1481
 
1482
- #: classes/helpers/FrmFieldsHelper.php:1236
1483
- msgid "Bangladesh"
1484
  msgstr ""
1485
 
1486
- #: classes/helpers/FrmFieldsHelper.php:1236
1487
- msgid "Barbados"
 
1488
  msgstr ""
1489
 
1490
- #: classes/helpers/FrmFieldsHelper.php:1236
1491
- msgid "Belarus"
 
 
1492
  msgstr ""
1493
 
1494
- #: classes/helpers/FrmFieldsHelper.php:1236
1495
- msgid "Belgium"
1496
  msgstr ""
1497
 
1498
- #: classes/helpers/FrmFieldsHelper.php:1236
1499
- msgid "Belize"
 
 
1500
  msgstr ""
1501
 
1502
- #: classes/helpers/FrmFieldsHelper.php:1236
1503
- msgid "Benin"
1504
  msgstr ""
1505
 
1506
- #: classes/helpers/FrmFieldsHelper.php:1236
1507
- msgid "Bermuda"
1508
  msgstr ""
1509
 
1510
- #: classes/helpers/FrmFieldsHelper.php:1236
1511
- msgid "Bhutan"
1512
  msgstr ""
1513
 
1514
- #: classes/helpers/FrmFieldsHelper.php:1236
1515
- msgid "Bolivia"
1516
  msgstr ""
1517
 
1518
- #: classes/helpers/FrmFieldsHelper.php:1236
1519
- msgid "Bosnia and Herzegovina"
1520
  msgstr ""
1521
 
1522
- #: classes/helpers/FrmFieldsHelper.php:1236
1523
- msgid "Botswana"
 
1524
  msgstr ""
1525
 
1526
- #: classes/helpers/FrmFieldsHelper.php:1236
1527
- msgid "Brazil"
1528
  msgstr ""
1529
 
1530
- #: classes/helpers/FrmFieldsHelper.php:1236
1531
- msgid "Brunei"
1532
  msgstr ""
1533
 
1534
- #: classes/helpers/FrmFieldsHelper.php:1236
1535
- msgid "Bulgaria"
1536
  msgstr ""
1537
 
1538
- #: classes/helpers/FrmFieldsHelper.php:1236
1539
- msgid "Burkina Faso"
1540
  msgstr ""
1541
 
1542
- #: classes/helpers/FrmFieldsHelper.php:1236
1543
- msgid "Burundi"
1544
  msgstr ""
1545
 
1546
- #: classes/helpers/FrmFieldsHelper.php:1236
1547
- msgid "Cambodia"
1548
  msgstr ""
1549
 
1550
- #: classes/helpers/FrmFieldsHelper.php:1236
1551
- msgid "Cameroon"
1552
  msgstr ""
1553
 
1554
- #: classes/helpers/FrmFieldsHelper.php:1236
1555
- msgid "Canada"
1556
  msgstr ""
1557
 
1558
- #: classes/helpers/FrmFieldsHelper.php:1236
1559
- msgid "Cape Verde"
1560
  msgstr ""
1561
 
1562
- #: classes/helpers/FrmFieldsHelper.php:1236
1563
- msgid "Cayman Islands"
1564
  msgstr ""
1565
 
1566
- #: classes/helpers/FrmFieldsHelper.php:1236
1567
- msgid "Central African Republic"
1568
  msgstr ""
1569
 
1570
- #: classes/helpers/FrmFieldsHelper.php:1236
1571
- msgid "Chad"
1572
  msgstr ""
1573
 
1574
- #: classes/helpers/FrmFieldsHelper.php:1236
1575
- msgid "Chile"
1576
  msgstr ""
1577
 
1578
- #: classes/helpers/FrmFieldsHelper.php:1236
1579
- msgid "China"
1580
  msgstr ""
1581
 
1582
- #: classes/helpers/FrmFieldsHelper.php:1236
1583
- msgid "Colombia"
1584
  msgstr ""
1585
 
1586
- #: classes/helpers/FrmFieldsHelper.php:1236
1587
- msgid "Comoros"
1588
  msgstr ""
1589
 
1590
- #: classes/helpers/FrmFieldsHelper.php:1236
1591
- msgid "Congo"
1592
  msgstr ""
1593
 
1594
- #: classes/helpers/FrmFieldsHelper.php:1236
1595
- msgid "Costa Rica"
1596
  msgstr ""
1597
 
1598
- #: classes/helpers/FrmFieldsHelper.php:1236
1599
- msgid "C&ocirc;te d'Ivoire"
1600
  msgstr ""
1601
 
1602
- #: classes/helpers/FrmFieldsHelper.php:1236
1603
- msgid "Croatia"
1604
  msgstr ""
1605
 
1606
- #: classes/helpers/FrmFieldsHelper.php:1236
1607
- msgid "Cuba"
1608
  msgstr ""
1609
 
1610
- #: classes/helpers/FrmFieldsHelper.php:1236
1611
- msgid "Cyprus"
1612
  msgstr ""
1613
 
1614
- #: classes/helpers/FrmFieldsHelper.php:1236
1615
- msgid "Czech Republic"
1616
  msgstr ""
1617
 
1618
- #: classes/helpers/FrmFieldsHelper.php:1236
1619
- msgid "Denmark"
1620
  msgstr ""
1621
 
1622
- #: classes/helpers/FrmFieldsHelper.php:1236
1623
- msgid "Djibouti"
1624
  msgstr ""
1625
 
1626
- #: classes/helpers/FrmFieldsHelper.php:1236
1627
- msgid "Dominica"
1628
  msgstr ""
1629
 
1630
- #: classes/helpers/FrmFieldsHelper.php:1236
1631
- msgid "Dominican Republic"
1632
  msgstr ""
1633
 
1634
- #: classes/helpers/FrmFieldsHelper.php:1236
1635
- msgid "East Timor"
1636
  msgstr ""
1637
 
1638
- #: classes/helpers/FrmFieldsHelper.php:1236
1639
- msgid "Ecuador"
1640
  msgstr ""
1641
 
1642
- #: classes/helpers/FrmFieldsHelper.php:1236
1643
- msgid "Egypt"
 
1644
  msgstr ""
1645
 
1646
- #: classes/helpers/FrmFieldsHelper.php:1236
1647
- msgid "El Salvador"
 
1648
  msgstr ""
1649
 
1650
- #: classes/helpers/FrmFieldsHelper.php:1236
1651
- msgid "Equatorial Guinea"
1652
- msgstr ""
1653
-
1654
- #: classes/helpers/FrmFieldsHelper.php:1236
1655
- msgid "Eritrea"
1656
  msgstr ""
1657
 
1658
- #: classes/helpers/FrmFieldsHelper.php:1236
1659
- msgid "Estonia"
1660
  msgstr ""
1661
 
1662
- #: classes/helpers/FrmFieldsHelper.php:1236
1663
- msgid "Ethiopia"
1664
  msgstr ""
1665
 
1666
- #: classes/helpers/FrmFieldsHelper.php:1236
1667
- msgid "Fiji"
1668
  msgstr ""
1669
 
1670
- #: classes/helpers/FrmFieldsHelper.php:1236
1671
- msgid "Finland"
1672
  msgstr ""
1673
 
1674
- #: classes/helpers/FrmFieldsHelper.php:1236
1675
- msgid "France"
1676
  msgstr ""
1677
 
1678
- #: classes/helpers/FrmFieldsHelper.php:1236
1679
- msgid "French Guiana"
1680
  msgstr ""
1681
 
1682
- #: classes/helpers/FrmFieldsHelper.php:1236
1683
- msgid "French Polynesia"
1684
  msgstr ""
1685
 
1686
- #: classes/helpers/FrmFieldsHelper.php:1236
1687
- msgid "Gabon"
1688
  msgstr ""
1689
 
1690
- #: classes/helpers/FrmFieldsHelper.php:1236
1691
- msgid "Gambia"
1692
  msgstr ""
1693
 
1694
- #: classes/helpers/FrmFieldsHelper.php:1236
1695
- msgid "Georgia"
1696
  msgstr ""
1697
 
1698
- #: classes/helpers/FrmFieldsHelper.php:1236
1699
- msgid "Germany"
1700
  msgstr ""
1701
 
1702
- #: classes/helpers/FrmFieldsHelper.php:1236
1703
- msgid "Ghana"
1704
  msgstr ""
1705
 
1706
- #: classes/helpers/FrmFieldsHelper.php:1236
1707
- msgid "Gibraltar"
 
1708
  msgstr ""
1709
 
1710
- #: classes/helpers/FrmFieldsHelper.php:1236
1711
- msgid "Greece"
1712
  msgstr ""
1713
 
1714
- #: classes/helpers/FrmFieldsHelper.php:1236
1715
- msgid "Greenland"
1716
  msgstr ""
1717
 
1718
- #: classes/helpers/FrmFieldsHelper.php:1236
1719
- msgid "Grenada"
 
1720
  msgstr ""
1721
 
1722
- #: classes/helpers/FrmFieldsHelper.php:1236
1723
- msgid "Guam"
1724
  msgstr ""
1725
 
1726
- #: classes/helpers/FrmFieldsHelper.php:1236
1727
- msgid "Guatemala"
1728
  msgstr ""
1729
 
1730
- #: classes/helpers/FrmFieldsHelper.php:1236
1731
- msgid "Guinea"
 
1732
  msgstr ""
1733
 
1734
- #: classes/helpers/FrmFieldsHelper.php:1236
1735
- msgid "Guinea-Bissau"
1736
  msgstr ""
1737
 
1738
- #: classes/helpers/FrmFieldsHelper.php:1236
1739
- msgid "Guyana"
 
 
1740
  msgstr ""
1741
 
1742
- #: classes/helpers/FrmFieldsHelper.php:1236
1743
- msgid "Haiti"
 
1744
  msgstr ""
1745
 
1746
- #: classes/helpers/FrmFieldsHelper.php:1236
1747
- msgid "Honduras"
1748
  msgstr ""
1749
 
1750
- #: classes/helpers/FrmFieldsHelper.php:1236
1751
- msgid "Hong Kong"
1752
  msgstr ""
1753
 
1754
- #: classes/helpers/FrmFieldsHelper.php:1236
1755
- msgid "Hungary"
1756
  msgstr ""
1757
 
1758
- #: classes/helpers/FrmFieldsHelper.php:1236
1759
- msgid "Iceland"
1760
  msgstr ""
1761
 
1762
- #: classes/helpers/FrmFieldsHelper.php:1236
1763
- msgid "India"
 
1764
  msgstr ""
1765
 
1766
- #: classes/helpers/FrmFieldsHelper.php:1236
1767
- msgid "Indonesia"
1768
  msgstr ""
1769
 
1770
- #: classes/helpers/FrmFieldsHelper.php:1236
1771
- msgid "Iran"
1772
  msgstr ""
1773
 
1774
- #: classes/helpers/FrmFieldsHelper.php:1236
1775
- msgid "Iraq"
1776
  msgstr ""
1777
 
1778
- #: classes/helpers/FrmFieldsHelper.php:1236
1779
- msgid "Ireland"
1780
  msgstr ""
1781
 
1782
- #: classes/helpers/FrmFieldsHelper.php:1236
1783
- msgid "Israel"
1784
  msgstr ""
1785
 
1786
- #: classes/helpers/FrmFieldsHelper.php:1236
1787
- msgid "Italy"
1788
  msgstr ""
1789
 
1790
- #: classes/helpers/FrmFieldsHelper.php:1236
1791
- msgid "Jamaica"
1792
  msgstr ""
1793
 
1794
- #: classes/helpers/FrmFieldsHelper.php:1236
1795
- msgid "Japan"
1796
  msgstr ""
1797
 
1798
- #: classes/helpers/FrmFieldsHelper.php:1236
1799
- msgid "Jordan"
1800
  msgstr ""
1801
 
1802
- #: classes/helpers/FrmFieldsHelper.php:1236
1803
- msgid "Kazakhstan"
1804
  msgstr ""
1805
 
1806
- #: classes/helpers/FrmFieldsHelper.php:1236
1807
- msgid "Kenya"
1808
  msgstr ""
1809
 
1810
- #: classes/helpers/FrmFieldsHelper.php:1236
1811
- msgid "Kiribati"
1812
  msgstr ""
1813
 
1814
- #: classes/helpers/FrmFieldsHelper.php:1236
1815
- msgid "North Korea"
1816
  msgstr ""
1817
 
1818
- #: classes/helpers/FrmFieldsHelper.php:1236
1819
- msgid "South Korea"
 
1820
  msgstr ""
1821
 
1822
- #: classes/helpers/FrmFieldsHelper.php:1236
1823
- msgid "Kuwait"
 
1824
  msgstr ""
1825
 
1826
- #: classes/helpers/FrmFieldsHelper.php:1236
1827
- msgid "Kyrgyzstan"
 
1828
  msgstr ""
1829
 
1830
- #: classes/helpers/FrmFieldsHelper.php:1236
1831
- msgid "Laos"
1832
  msgstr ""
1833
 
1834
- #: classes/helpers/FrmFieldsHelper.php:1236
1835
- msgid "Latvia"
1836
  msgstr ""
1837
 
1838
- #: classes/helpers/FrmFieldsHelper.php:1236
1839
- msgid "Lebanon"
1840
  msgstr ""
1841
 
1842
- #: classes/helpers/FrmFieldsHelper.php:1236
1843
- msgid "Lesotho"
1844
  msgstr ""
1845
 
1846
- #: classes/helpers/FrmFieldsHelper.php:1236
1847
- msgid "Liberia"
1848
  msgstr ""
1849
 
1850
- #: classes/helpers/FrmFieldsHelper.php:1236
1851
- msgid "Libya"
1852
  msgstr ""
1853
 
1854
- #: classes/helpers/FrmFieldsHelper.php:1236
1855
- msgid "Liechtenstein"
1856
  msgstr ""
1857
 
1858
- #: classes/helpers/FrmFieldsHelper.php:1236
1859
- msgid "Lithuania"
1860
  msgstr ""
1861
 
1862
- #: classes/helpers/FrmFieldsHelper.php:1236
1863
- msgid "Luxembourg"
1864
  msgstr ""
1865
 
1866
- #: classes/helpers/FrmFieldsHelper.php:1236
1867
- msgid "Macedonia"
1868
  msgstr ""
1869
 
1870
- #: classes/helpers/FrmFieldsHelper.php:1236
1871
- msgid "Madagascar"
1872
  msgstr ""
1873
 
1874
- #: classes/helpers/FrmFieldsHelper.php:1236
1875
- msgid "Malawi"
 
1876
  msgstr ""
1877
 
1878
- #: classes/helpers/FrmFieldsHelper.php:1236
1879
- msgid "Malaysia"
1880
  msgstr ""
1881
 
1882
- #: classes/helpers/FrmFieldsHelper.php:1236
1883
- msgid "Maldives"
1884
  msgstr ""
1885
 
1886
- #: classes/helpers/FrmFieldsHelper.php:1236
1887
- msgid "Mali"
1888
  msgstr ""
1889
 
1890
- #: classes/helpers/FrmFieldsHelper.php:1236
1891
- msgid "Malta"
1892
  msgstr ""
1893
 
1894
- #: classes/helpers/FrmFieldsHelper.php:1236
1895
- msgid "Marshall Islands"
1896
  msgstr ""
1897
 
1898
- #: classes/helpers/FrmFieldsHelper.php:1236
1899
- msgid "Mauritania"
1900
- msgstr ""
1901
-
1902
- #: classes/helpers/FrmFieldsHelper.php:1236
1903
- msgid "Mauritius"
1904
- msgstr ""
1905
-
1906
- #: classes/helpers/FrmFieldsHelper.php:1236
1907
- msgid "Mexico"
1908
- msgstr ""
1909
-
1910
- #: classes/helpers/FrmFieldsHelper.php:1236
1911
- msgid "Micronesia"
1912
- msgstr ""
1913
-
1914
- #: classes/helpers/FrmFieldsHelper.php:1236
1915
- msgid "Moldova"
1916
- msgstr ""
1917
-
1918
- #: classes/helpers/FrmFieldsHelper.php:1236
1919
- msgid "Monaco"
1920
- msgstr ""
1921
-
1922
- #: classes/helpers/FrmFieldsHelper.php:1236
1923
- msgid "Mongolia"
1924
- msgstr ""
1925
-
1926
- #: classes/helpers/FrmFieldsHelper.php:1236
1927
- msgid "Montenegro"
1928
- msgstr ""
1929
-
1930
- #: classes/helpers/FrmFieldsHelper.php:1236
1931
- msgid "Montserrat"
1932
- msgstr ""
1933
-
1934
- #: classes/helpers/FrmFieldsHelper.php:1236
1935
- msgid "Morocco"
1936
- msgstr ""
1937
-
1938
- #: classes/helpers/FrmFieldsHelper.php:1236
1939
- msgid "Mozambique"
1940
- msgstr ""
1941
-
1942
- #: classes/helpers/FrmFieldsHelper.php:1236
1943
- msgid "Myanmar"
1944
- msgstr ""
1945
-
1946
- #: classes/helpers/FrmFieldsHelper.php:1236
1947
- msgid "Namibia"
1948
- msgstr ""
1949
-
1950
- #: classes/helpers/FrmFieldsHelper.php:1236
1951
- msgid "Nauru"
1952
- msgstr ""
1953
-
1954
- #: classes/helpers/FrmFieldsHelper.php:1236
1955
- msgid "Nepal"
1956
- msgstr ""
1957
-
1958
- #: classes/helpers/FrmFieldsHelper.php:1236
1959
- msgid "Netherlands"
1960
- msgstr ""
1961
-
1962
- #: classes/helpers/FrmFieldsHelper.php:1236
1963
- msgid "New Zealand"
1964
- msgstr ""
1965
-
1966
- #: classes/helpers/FrmFieldsHelper.php:1236
1967
- msgid "Nicaragua"
1968
  msgstr ""
1969
 
1970
- #: classes/helpers/FrmFieldsHelper.php:1236
1971
- msgid "Niger"
1972
  msgstr ""
1973
 
1974
- #: classes/helpers/FrmFieldsHelper.php:1236
1975
- msgid "Nigeria"
1976
  msgstr ""
1977
 
1978
- #: classes/helpers/FrmFieldsHelper.php:1236
1979
- msgid "Norway"
1980
  msgstr ""
1981
 
1982
- #: classes/helpers/FrmFieldsHelper.php:1236
1983
- msgid "Northern Mariana Islands"
 
 
 
 
 
 
1984
  msgstr ""
1985
 
1986
- #: classes/helpers/FrmFieldsHelper.php:1236
1987
- msgid "Oman"
 
 
 
 
 
1988
  msgstr ""
1989
 
1990
- #: classes/helpers/FrmFieldsHelper.php:1236
1991
- msgid "Pakistan"
 
 
 
 
 
 
 
 
1992
  msgstr ""
1993
 
1994
- #: classes/helpers/FrmFieldsHelper.php:1236
1995
- msgid "Palau"
1996
  msgstr ""
1997
 
1998
- #: classes/helpers/FrmFieldsHelper.php:1236
1999
- msgid "Palestine"
 
2000
  msgstr ""
2001
 
2002
- #: classes/helpers/FrmFieldsHelper.php:1236
2003
- msgid "Panama"
 
 
 
2004
  msgstr ""
2005
 
2006
- #: classes/helpers/FrmFieldsHelper.php:1236
2007
- msgid "Papua New Guinea"
 
 
 
2008
  msgstr ""
2009
 
2010
- #: classes/helpers/FrmFieldsHelper.php:1236
2011
- msgid "Paraguay"
 
 
2012
  msgstr ""
2013
 
2014
- #: classes/helpers/FrmFieldsHelper.php:1236
2015
- msgid "Peru"
 
 
 
2016
  msgstr ""
2017
 
2018
- #: classes/helpers/FrmFieldsHelper.php:1236
2019
- msgid "Philippines"
2020
  msgstr ""
2021
 
2022
- #: classes/helpers/FrmFieldsHelper.php:1236
2023
- msgid "Poland"
 
2024
  msgstr ""
2025
 
2026
- #: classes/helpers/FrmFieldsHelper.php:1236
2027
- msgid "Portugal"
2028
  msgstr ""
2029
 
2030
- #: classes/helpers/FrmFieldsHelper.php:1236
2031
- msgid "Puerto Rico"
 
 
2032
  msgstr ""
2033
 
2034
- #: classes/helpers/FrmFieldsHelper.php:1236
2035
- msgid "Qatar"
 
2036
  msgstr ""
2037
 
2038
- #: classes/helpers/FrmFieldsHelper.php:1236
2039
- msgid "Romania"
2040
  msgstr ""
2041
 
2042
- #: classes/helpers/FrmFieldsHelper.php:1236
2043
- msgid "Russia"
2044
  msgstr ""
2045
 
2046
- #: classes/helpers/FrmFieldsHelper.php:1236
2047
- msgid "Rwanda"
 
 
2048
  msgstr ""
2049
 
2050
- #: classes/helpers/FrmFieldsHelper.php:1236
2051
- msgid "Saint Kitts and Nevis"
 
 
 
 
 
 
 
 
2052
  msgstr ""
2053
 
2054
- #: classes/helpers/FrmFieldsHelper.php:1236
2055
- msgid "Saint Lucia"
 
 
 
 
 
 
 
 
 
2056
  msgstr ""
2057
 
2058
- #: classes/helpers/FrmFieldsHelper.php:1236
2059
- msgid "Saint Vincent and the Grenadines"
2060
  msgstr ""
2061
 
2062
- #: classes/helpers/FrmFieldsHelper.php:1236
2063
- msgid "Samoa"
2064
  msgstr ""
2065
 
2066
- #: classes/helpers/FrmFieldsHelper.php:1236
2067
- msgid "San Marino"
2068
  msgstr ""
2069
 
2070
- #: classes/helpers/FrmFieldsHelper.php:1236
2071
- msgid "Sao Tome and Principe"
 
2072
  msgstr ""
2073
 
2074
- #: classes/helpers/FrmFieldsHelper.php:1236
2075
- msgid "Saudi Arabia"
2076
  msgstr ""
2077
 
2078
- #: classes/helpers/FrmFieldsHelper.php:1236
2079
- msgid "Senegal"
2080
  msgstr ""
2081
 
2082
- #: classes/helpers/FrmFieldsHelper.php:1236
2083
- msgid "Serbia and Montenegro"
 
2084
  msgstr ""
2085
 
2086
- #: classes/helpers/FrmFieldsHelper.php:1236
2087
- msgid "Seychelles"
2088
  msgstr ""
2089
 
2090
- #: classes/helpers/FrmFieldsHelper.php:1236
2091
- msgid "Sierra Leone"
2092
  msgstr ""
2093
 
2094
- #: classes/helpers/FrmFieldsHelper.php:1236
2095
- msgid "Singapore"
 
2096
  msgstr ""
2097
 
2098
- #: classes/helpers/FrmFieldsHelper.php:1236
2099
- msgid "Slovakia"
2100
  msgstr ""
2101
 
2102
- #: classes/helpers/FrmFieldsHelper.php:1236
2103
- msgid "Slovenia"
2104
  msgstr ""
2105
 
2106
- #: classes/helpers/FrmFieldsHelper.php:1236
2107
- msgid "Solomon Islands"
2108
  msgstr ""
2109
 
2110
- #: classes/helpers/FrmFieldsHelper.php:1236
2111
- msgid "Somalia"
2112
  msgstr ""
2113
 
2114
- #: classes/helpers/FrmFieldsHelper.php:1236
2115
- msgid "South Africa"
2116
  msgstr ""
2117
 
2118
- #: classes/helpers/FrmFieldsHelper.php:1236
2119
- msgid "South Sudan"
2120
  msgstr ""
2121
 
2122
- #: classes/helpers/FrmFieldsHelper.php:1236
2123
- msgid "Spain"
2124
  msgstr ""
2125
 
2126
- #: classes/helpers/FrmFieldsHelper.php:1236
2127
- msgid "Sri Lanka"
2128
  msgstr ""
2129
 
2130
- #: classes/helpers/FrmFieldsHelper.php:1236
2131
- msgid "Sudan"
2132
  msgstr ""
2133
 
2134
- #: classes/helpers/FrmFieldsHelper.php:1236
2135
- msgid "Suriname"
2136
  msgstr ""
2137
 
2138
- #: classes/helpers/FrmFieldsHelper.php:1236
2139
- msgid "Swaziland"
2140
  msgstr ""
2141
 
2142
- #: classes/helpers/FrmFieldsHelper.php:1236
2143
- msgid "Sweden"
 
2144
  msgstr ""
2145
-
2146
- #: classes/helpers/FrmFieldsHelper.php:1236
2147
- msgid "Switzerland"
 
2148
  msgstr ""
2149
 
2150
- #: classes/helpers/FrmFieldsHelper.php:1236
2151
- msgid "Syria"
2152
  msgstr ""
2153
 
2154
- #: classes/helpers/FrmFieldsHelper.php:1236
2155
- msgid "Taiwan"
2156
  msgstr ""
2157
 
2158
- #: classes/helpers/FrmFieldsHelper.php:1236
2159
- msgid "Tajikistan"
2160
  msgstr ""
2161
 
2162
- #: classes/helpers/FrmFieldsHelper.php:1236
2163
- msgid "Tanzania"
2164
  msgstr ""
2165
 
2166
- #: classes/helpers/FrmFieldsHelper.php:1236
2167
- msgid "Thailand"
 
2168
  msgstr ""
2169
 
2170
- #: classes/helpers/FrmFieldsHelper.php:1236
2171
- msgid "Togo"
2172
  msgstr ""
2173
 
2174
- #: classes/helpers/FrmFieldsHelper.php:1236
2175
- msgid "Tonga"
 
2176
  msgstr ""
2177
 
2178
- #: classes/helpers/FrmFieldsHelper.php:1236
2179
- msgid "Trinidad and Tobago"
 
2180
  msgstr ""
2181
 
2182
- #: classes/helpers/FrmFieldsHelper.php:1236
2183
- msgid "Tunisia"
2184
  msgstr ""
2185
 
2186
- #: classes/helpers/FrmFieldsHelper.php:1236
2187
- msgid "Turkey"
2188
  msgstr ""
2189
 
2190
- #: classes/helpers/FrmFieldsHelper.php:1236
2191
- msgid "Turkmenistan"
2192
  msgstr ""
2193
 
2194
- #: classes/helpers/FrmFieldsHelper.php:1236
2195
- msgid "Tuvalu"
2196
  msgstr ""
2197
 
2198
- #: classes/helpers/FrmFieldsHelper.php:1236
2199
- msgid "Uganda"
2200
  msgstr ""
2201
 
2202
- #: classes/helpers/FrmFieldsHelper.php:1236
2203
- msgid "Ukraine"
2204
  msgstr ""
2205
 
2206
- #: classes/helpers/FrmFieldsHelper.php:1236
2207
- msgid "United Arab Emirates"
 
 
2208
  msgstr ""
2209
 
2210
- #: classes/helpers/FrmFieldsHelper.php:1236
2211
- msgid "United Kingdom"
2212
  msgstr ""
2213
 
2214
- #: classes/helpers/FrmFieldsHelper.php:1236
2215
- msgid "United States"
2216
  msgstr ""
2217
 
2218
- #: classes/helpers/FrmFieldsHelper.php:1236
2219
- msgid "Uruguay"
 
2220
  msgstr ""
2221
 
2222
- #: classes/helpers/FrmFieldsHelper.php:1236
2223
- msgid "Uzbekistan"
 
2224
  msgstr ""
2225
 
2226
- #: classes/helpers/FrmFieldsHelper.php:1236
2227
- msgid "Vanuatu"
 
2228
  msgstr ""
2229
 
2230
- #: classes/helpers/FrmFieldsHelper.php:1236
2231
- msgid "Vatican City"
 
2232
  msgstr ""
2233
 
2234
- #: classes/helpers/FrmFieldsHelper.php:1236
2235
- msgid "Venezuela"
 
2236
  msgstr ""
2237
 
2238
- #: classes/helpers/FrmFieldsHelper.php:1236
2239
- msgid "Vietnam"
2240
  msgstr ""
2241
 
2242
- #: classes/helpers/FrmFieldsHelper.php:1236
2243
- msgid "Virgin Islands, British"
2244
  msgstr ""
2245
 
2246
- #: classes/helpers/FrmFieldsHelper.php:1236
2247
- msgid "Virgin Islands, U.S."
2248
  msgstr ""
2249
 
2250
- #: classes/helpers/FrmFieldsHelper.php:1236
2251
- msgid "Yemen"
2252
  msgstr ""
2253
 
2254
- #: classes/helpers/FrmFieldsHelper.php:1236
2255
- msgid "Zambia"
2256
  msgstr ""
2257
 
2258
- #: classes/helpers/FrmFieldsHelper.php:1236
2259
- msgid "Zimbabwe"
2260
  msgstr ""
2261
 
2262
- #: classes/helpers/FrmFieldsHelper.php:1240
2263
- msgid "Countries"
2264
  msgstr ""
2265
 
2266
- #: classes/helpers/FrmFieldsHelper.php:1245
2267
- msgid "U.S. State Abbreviations"
2268
  msgstr ""
2269
 
2270
- #: classes/helpers/FrmFieldsHelper.php:1249
2271
- msgid "U.S. States"
2272
  msgstr ""
2273
 
2274
- #: classes/helpers/FrmFieldsHelper.php:1252
2275
- msgid "Age"
2276
  msgstr ""
2277
 
2278
- #: classes/helpers/FrmFieldsHelper.php:1253
2279
- msgid "Under 18"
2280
  msgstr ""
2281
 
2282
- #: classes/helpers/FrmFieldsHelper.php:1254
2283
- msgid "18-24"
2284
  msgstr ""
2285
 
2286
- #: classes/helpers/FrmFieldsHelper.php:1255
2287
- msgid "25-34"
2288
  msgstr ""
2289
 
2290
- #: classes/helpers/FrmFieldsHelper.php:1256
2291
- msgid "35-44"
 
 
2292
  msgstr ""
2293
 
2294
- #: classes/helpers/FrmFieldsHelper.php:1257
2295
- msgid "45-54"
2296
  msgstr ""
2297
 
2298
- #: classes/helpers/FrmFieldsHelper.php:1258
2299
- msgid "55-64"
2300
  msgstr ""
2301
 
2302
- #: classes/helpers/FrmFieldsHelper.php:1259
2303
- msgid "65 or Above"
 
2304
  msgstr ""
2305
 
2306
- #: classes/helpers/FrmFieldsHelper.php:1260
2307
- msgid "Prefer Not to Answer"
2308
  msgstr ""
2309
 
2310
- #: classes/helpers/FrmFieldsHelper.php:1263
2311
- msgid "Satisfaction"
2312
  msgstr ""
2313
 
2314
- #: classes/helpers/FrmFieldsHelper.php:1264
2315
- msgid "Very Satisfied"
2316
  msgstr ""
2317
 
2318
- #: classes/helpers/FrmFieldsHelper.php:1265
2319
- msgid "Satisfied"
2320
  msgstr ""
2321
 
2322
- #: classes/helpers/FrmFieldsHelper.php:1266
2323
- #: classes/helpers/FrmFieldsHelper.php:1275
2324
- #: classes/helpers/FrmFieldsHelper.php:1284
2325
- msgid "Neutral"
2326
  msgstr ""
2327
 
2328
- #: classes/helpers/FrmFieldsHelper.php:1267
2329
- msgid "Unsatisfied"
2330
  msgstr ""
2331
 
2332
- #: classes/helpers/FrmFieldsHelper.php:1268
2333
- msgid "Very Unsatisfied"
2334
  msgstr ""
2335
 
2336
- #: classes/helpers/FrmFieldsHelper.php:1269
2337
- #: classes/helpers/FrmFieldsHelper.php:1278
2338
- #: classes/helpers/FrmFieldsHelper.php:1287
2339
- msgid "N/A"
2340
  msgstr ""
2341
 
2342
- #: classes/helpers/FrmFieldsHelper.php:1272
2343
- msgid "Importance"
2344
  msgstr ""
2345
 
2346
- #: classes/helpers/FrmFieldsHelper.php:1273
2347
- msgid "Very Important"
2348
  msgstr ""
2349
 
2350
- #: classes/helpers/FrmFieldsHelper.php:1274
2351
- msgid "Important"
2352
  msgstr ""
2353
 
2354
- #: classes/helpers/FrmFieldsHelper.php:1276
2355
- msgid "Somewhat Important"
2356
  msgstr ""
2357
 
2358
- #: classes/helpers/FrmFieldsHelper.php:1277
2359
- msgid "Not at all Important"
2360
  msgstr ""
2361
 
2362
- #: classes/helpers/FrmFieldsHelper.php:1281
2363
- msgid "Agreement"
2364
  msgstr ""
2365
 
2366
- #: classes/helpers/FrmFieldsHelper.php:1282
2367
- msgid "Strongly Agree"
2368
  msgstr ""
2369
 
2370
- #: classes/helpers/FrmFieldsHelper.php:1283
2371
- msgid "Agree"
2372
  msgstr ""
2373
 
2374
- #: classes/helpers/FrmFieldsHelper.php:1285
2375
- msgid "Disagree"
2376
  msgstr ""
2377
 
2378
- #: classes/helpers/FrmFieldsHelper.php:1286
2379
- msgid "Strongly Disagree"
2380
  msgstr ""
2381
 
2382
- #: classes/helpers/FrmFormsHelper.php:55
2383
- msgid " (child)"
2384
  msgstr ""
2385
 
2386
- #: classes/helpers/FrmFormsHelper.php:102
2387
- msgid "Switch Form"
2388
  msgstr ""
2389
 
2390
- #: classes/helpers/FrmFormsHelper.php:129
2391
- #: classes/models/FrmFormAction.php:742
2392
- #: classes/views/frm-forms/_publish_box.php:16
2393
- #: classes/views/frm-forms/_publish_box.php:20
2394
- #: classes/views/frm-forms/add_field_links.php:7
2395
- #: classes/views/frm-forms/edit.php:25
2396
- #: classes/views/frm-forms/settings.php:368
2397
- msgid "Update"
2398
  msgstr ""
2399
 
2400
- #: classes/helpers/FrmFormsHelper.php:129
2401
- #: classes/models/FrmFormAction.php:741
2402
- #: classes/views/frm-forms/add_field_links.php:7
2403
- #: classes/views/frm-forms/template-name-overlay.php:25
2404
- msgid "Create"
2405
  msgstr ""
2406
 
2407
- #: classes/helpers/FrmFormsHelper.php:750
2408
- msgid "Create Form from Template"
2409
  msgstr ""
2410
 
2411
- #: classes/helpers/FrmFormsHelper.php:756
2412
- msgid "Duplicate Form"
2413
  msgstr ""
2414
 
2415
- #: classes/helpers/FrmFormsHelper.php:841
2416
- msgid "Restore from Trash"
2417
  msgstr ""
2418
 
2419
- #: classes/helpers/FrmFormsHelper.php:842
2420
- #: classes/helpers/FrmFormsListHelper.php:112
2421
- msgid "Restore"
2422
  msgstr ""
2423
 
2424
- #: classes/helpers/FrmFormsHelper.php:846
2425
- msgid "Move Form to Trash"
2426
  msgstr ""
2427
 
2428
- #: classes/helpers/FrmFormsHelper.php:847
2429
- #: classes/helpers/FrmFormsHelper.php:965
2430
- #: classes/helpers/FrmFormsListHelper.php:146
2431
- msgid "Trash"
2432
  msgstr ""
2433
 
2434
- #: classes/helpers/FrmFormsHelper.php:853
2435
- #: classes/helpers/FrmFormsListHelper.php:116
2436
- msgid "Delete Permanently"
2437
  msgstr ""
2438
 
2439
- #: classes/helpers/FrmFormsHelper.php:856
2440
- msgid "Are you sure you want to delete this form and all its entries?"
2441
  msgstr ""
2442
 
2443
- #: classes/helpers/FrmFormsHelper.php:858
2444
- msgid "Delete form & entries?"
2445
  msgstr ""
2446
 
2447
- #: classes/helpers/FrmFormsHelper.php:869
2448
- msgid "First"
2449
  msgstr ""
2450
 
2451
- #: classes/helpers/FrmFormsHelper.php:870
2452
- msgid "Add this to the first field in each row along with a width. ie frm_first frm4"
2453
  msgstr ""
2454
 
2455
- #: classes/helpers/FrmFormsHelper.php:872
2456
- #: classes/helpers/FrmStylesHelper.php:40
2457
- msgid "Right"
2458
  msgstr ""
2459
 
2460
- #: classes/helpers/FrmFormsHelper.php:874
2461
- msgid "Total"
2462
  msgstr ""
2463
 
2464
- #: classes/helpers/FrmFormsHelper.php:875
2465
- msgid "Add this to a read-only field to display the text in bold without a border or background."
2466
  msgstr ""
2467
 
2468
- #: classes/helpers/FrmFormsHelper.php:877
2469
- msgid "First Grid Row"
2470
  msgstr ""
2471
 
2472
- #: classes/helpers/FrmFormsHelper.php:878
2473
- msgid "Even Grid Row"
2474
  msgstr ""
2475
 
2476
- #: classes/helpers/FrmFormsHelper.php:879
2477
- msgid "Odd Grid Row"
2478
  msgstr ""
2479
 
2480
- #: classes/helpers/FrmFormsHelper.php:881
2481
- msgid "2 Col Options"
2482
  msgstr ""
2483
 
2484
- #: classes/helpers/FrmFormsHelper.php:882
2485
- msgid "Put your radio button or checkbox options into two columns."
 
2486
  msgstr ""
2487
 
2488
- #: classes/helpers/FrmFormsHelper.php:885
2489
- msgid "3 Col Options"
2490
  msgstr ""
2491
 
2492
- #: classes/helpers/FrmFormsHelper.php:886
2493
- msgid "Put your radio button or checkbox options into three columns."
2494
  msgstr ""
2495
 
2496
- #: classes/helpers/FrmFormsHelper.php:889
2497
- msgid "4 Col Options"
2498
  msgstr ""
2499
 
2500
- #: classes/helpers/FrmFormsHelper.php:890
2501
- msgid "Put your radio button or checkbox options into four columns."
2502
  msgstr ""
2503
 
2504
- #: classes/helpers/FrmFormsHelper.php:893
2505
- msgid "Scroll Box"
2506
  msgstr ""
2507
 
2508
- #: classes/helpers/FrmFormsHelper.php:894
2509
- msgid "If you have many checkbox or radio button options, you may add this class to allow your user to easily scroll through the options."
2510
  msgstr ""
2511
 
2512
- #: classes/helpers/FrmFormsHelper.php:897
2513
- msgid "Capitalize"
2514
  msgstr ""
2515
 
2516
- #: classes/helpers/FrmFormsHelper.php:898
2517
- msgid "Automatically capitalize the first letter in each word."
2518
  msgstr ""
2519
 
2520
- #: classes/helpers/FrmFormsHelper.php:966
2521
- msgid "Published"
2522
  msgstr ""
2523
 
2524
- #: classes/helpers/FrmFormsListHelper.php:99
2525
- msgid "No Forms Found."
2526
  msgstr ""
2527
 
2528
- #: classes/helpers/FrmFormsListHelper.php:119
2529
- msgid "Move to Trash"
2530
  msgstr ""
2531
 
2532
- #: classes/helpers/FrmFormsListHelper.php:135
2533
- msgid "Empty Trash"
2534
  msgstr ""
2535
 
2536
- #: classes/helpers/FrmFormsListHelper.php:144
2537
- msgid "My Forms"
2538
  msgstr ""
2539
 
2540
- #: classes/helpers/FrmFormsListHelper.php:145
2541
- msgid "Drafts"
2542
  msgstr ""
2543
 
2544
- #: classes/helpers/FrmFormsListHelper.php:167
2545
- msgid "%1$s <span class=\"count\">(%2$s)</span>"
2546
  msgstr ""
2547
 
2548
- #: classes/helpers/FrmFormsListHelper.php:286
2549
- #: classes/views/frm-forms/_publish_box.php:26
2550
- #: classes/views/frm-forms/list-templates.php:119
2551
- msgid "Preview"
2552
  msgstr ""
2553
 
2554
- #: classes/helpers/FrmListHelper.php:123
2555
- msgid "List View"
2556
  msgstr ""
2557
 
2558
- #: classes/helpers/FrmListHelper.php:124
2559
- msgid "Excerpt View"
2560
  msgstr ""
2561
 
2562
- #: classes/helpers/FrmListHelper.php:240
2563
- msgid "No items found."
2564
  msgstr ""
2565
 
2566
- #: classes/helpers/FrmListHelper.php:365
2567
- msgid "Select bulk action"
2568
  msgstr ""
2569
 
2570
- #: classes/helpers/FrmListHelper.php:367
2571
- msgid "Bulk Actions"
2572
  msgstr ""
2573
 
2574
- #: classes/helpers/FrmListHelper.php:377
2575
- msgid "Apply"
2576
  msgstr ""
2577
 
2578
- #: classes/helpers/FrmListHelper.php:442
2579
- #: classes/helpers/FrmListHelper.php:1095
2580
- msgid "Show more details"
2581
  msgstr ""
2582
 
2583
- #: classes/helpers/FrmListHelper.php:548
2584
- #: classes/helpers/FrmListHelper.php:1120
2585
- msgid "%s item"
2586
- msgid_plural "%s items"
2587
- msgstr[0] ""
2588
-
2589
- #: classes/helpers/FrmListHelper.php:579
2590
- #: classes/helpers/FrmListHelper.php:583
2591
- msgid "Current Page"
2592
  msgstr ""
2593
 
2594
- #: classes/helpers/FrmListHelper.php:589
2595
- msgctxt "paging"
2596
- msgid "%1$s of %2$s"
2597
  msgstr ""
2598
 
2599
- #: classes/helpers/FrmListHelper.php:653
2600
- msgid "First page"
2601
  msgstr ""
2602
 
2603
- #: classes/helpers/FrmListHelper.php:654
2604
- msgid "Last page"
2605
  msgstr ""
2606
 
2607
- #: classes/helpers/FrmListHelper.php:655
2608
- msgid "Previous page"
 
2609
  msgstr ""
2610
 
2611
- #: classes/helpers/FrmListHelper.php:656
2612
- msgid "Next page"
2613
  msgstr ""
2614
 
2615
- #: classes/helpers/FrmListHelper.php:871
2616
- msgid "Select All"
2617
  msgstr ""
2618
 
2619
- #: classes/helpers/FrmStylesHelper.php:16
2620
- msgid "Edit Styles"
2621
  msgstr ""
2622
 
2623
- #: classes/helpers/FrmStylesHelper.php:17
2624
- msgid "Manage Form Styles"
2625
  msgstr ""
2626
 
2627
- #: classes/helpers/FrmStylesHelper.php:18
2628
- msgid "Custom CSS"
 
2629
  msgstr ""
2630
 
2631
- #: classes/helpers/FrmStylesHelper.php:28
2632
- msgid "top"
2633
  msgstr ""
2634
 
2635
- #: classes/helpers/FrmStylesHelper.php:29
2636
- #: classes/views/styles/_field-description.php:33
2637
- #: classes/views/styles/_field-labels.php:31
2638
- #: classes/views/styles/_general.php:11
2639
- msgid "left"
2640
  msgstr ""
2641
 
2642
- #: classes/helpers/FrmStylesHelper.php:30
2643
- #: classes/views/styles/_field-description.php:36
2644
- #: classes/views/styles/_field-labels.php:34
2645
- #: classes/views/styles/_general.php:14
2646
- msgid "right"
2647
  msgstr ""
2648
 
2649
- #: classes/helpers/FrmStylesHelper.php:31
2650
- msgid "none"
2651
  msgstr ""
2652
 
2653
- #: classes/helpers/FrmStylesHelper.php:32
2654
- msgid "inside"
2655
  msgstr ""
2656
 
2657
- #: classes/helpers/FrmStylesHelper.php:38
2658
- msgid "Top"
2659
  msgstr ""
2660
 
2661
- #: classes/helpers/FrmStylesHelper.php:39
2662
- msgid "Left"
2663
  msgstr ""
2664
 
2665
- #: classes/helpers/FrmStylesHelper.php:41
2666
- msgid "Inline (left without a set width)"
2667
  msgstr ""
2668
 
2669
- #: classes/helpers/FrmStylesHelper.php:42
2670
- msgid "None"
2671
  msgstr ""
2672
 
2673
- #: classes/helpers/FrmStylesHelper.php:43
2674
- msgid "Hidden (but leave the space)"
2675
  msgstr ""
2676
 
2677
- #: classes/helpers/FrmStylesHelper.php:44
2678
- msgid "Placeholder inside the field"
2679
  msgstr ""
2680
 
2681
- #: classes/helpers/FrmTipsHelper.php:22
2682
  msgid "Pro Tip:"
2683
  msgstr ""
2684
 
2685
- #: classes/helpers/FrmTipsHelper.php:43
2686
  msgid "Use conditional logic to shorten your forms and increase conversions."
2687
  msgstr ""
2688
 
2689
- #: classes/helpers/FrmTipsHelper.php:44
2690
- #: classes/helpers/FrmTipsHelper.php:59
2691
- #: classes/helpers/FrmTipsHelper.php:107
2692
- #: classes/helpers/FrmTipsHelper.php:112
2693
- #: classes/helpers/FrmTipsHelper.php:180
2694
- #: classes/helpers/FrmTipsHelper.php:192
2695
  msgid "Upgrade to Pro."
2696
  msgstr ""
2697
 
2698
- #: classes/helpers/FrmTipsHelper.php:48
2699
  msgid "Stop intimidating users with long forms."
2700
  msgstr ""
2701
 
2702
- #: classes/helpers/FrmTipsHelper.php:49
2703
  msgid "Use page breaks."
2704
  msgstr ""
2705
 
2706
- #: classes/helpers/FrmTipsHelper.php:53
2707
  msgid "Cut down on back-and-forth with clients."
2708
  msgstr ""
2709
 
2710
- #: classes/helpers/FrmTipsHelper.php:54
2711
  msgid "Allow file uploads in your form."
2712
  msgstr ""
2713
 
2714
- #: classes/helpers/FrmTipsHelper.php:58
2715
  msgid "Need to calculate a total?"
2716
  msgstr ""
2717
 
2718
- #: classes/helpers/FrmTipsHelper.php:63
2719
  msgid "Save time."
2720
  msgstr ""
2721
 
2722
- #: classes/helpers/FrmTipsHelper.php:64
2723
  msgid "Prefill fields with user info."
2724
  msgstr ""
2725
 
2726
- #: classes/helpers/FrmTipsHelper.php:75
2727
- #: classes/helpers/FrmTipsHelper.php:80
2728
  msgid "A site with dynamic, user-generated content is within reach."
2729
  msgstr ""
2730
 
2731
- #: classes/helpers/FrmTipsHelper.php:76
2732
- #: classes/helpers/FrmTipsHelper.php:81
2733
  msgid "Add front-end editing."
2734
  msgstr ""
2735
 
2736
- #: classes/helpers/FrmTipsHelper.php:85
2737
  msgid "Have a long form that takes time to complete?"
2738
  msgstr ""
2739
 
2740
- #: classes/helpers/FrmTipsHelper.php:86
2741
  msgid "Let logged-in users save a draft and return later."
2742
  msgstr ""
2743
 
2744
- #: classes/helpers/FrmTipsHelper.php:90
2745
  msgid "Want to submit forms without reloading the page?"
2746
  msgstr ""
2747
 
2748
- #: classes/helpers/FrmTipsHelper.php:91
2749
  msgid "Get ajax form submit."
2750
  msgstr ""
2751
 
2752
- #: classes/helpers/FrmTipsHelper.php:101
2753
  msgid "Save time by sending the email to the right person automatically."
2754
  msgstr ""
2755
 
2756
- #: classes/helpers/FrmTipsHelper.php:102
2757
  msgid "Add email routing."
2758
  msgstr ""
2759
 
2760
- #: classes/helpers/FrmTipsHelper.php:106
2761
  msgid "Create blog posts or pages from the front-end."
2762
  msgstr ""
2763
 
2764
- #: classes/helpers/FrmTipsHelper.php:111
2765
  msgid "Make front-end posting easy."
2766
  msgstr ""
2767
 
2768
- #: classes/helpers/FrmTipsHelper.php:116
2769
  msgid "Grow your business with automated email follow-up."
2770
  msgstr ""
2771
 
2772
- #: classes/helpers/FrmTipsHelper.php:117
2773
  msgid "Send leads straight to MailChimp."
2774
  msgstr ""
2775
 
2776
- #: classes/helpers/FrmTipsHelper.php:121
2777
  msgid "Save hours and increase revenue by collecting payments with every submission."
2778
  msgstr ""
2779
 
2780
- #: classes/helpers/FrmTipsHelper.php:122
2781
- #: classes/helpers/FrmTipsHelper.php:127
2782
  msgid "Use PayPal with this form."
2783
  msgstr ""
2784
 
2785
- #: classes/helpers/FrmTipsHelper.php:126
2786
  msgid "Increase revenue."
2787
  msgstr ""
2788
 
2789
- #: classes/helpers/FrmTipsHelper.php:131
2790
  msgid "Get paid more quickly."
2791
  msgstr ""
2792
 
2793
- #: classes/helpers/FrmTipsHelper.php:132
2794
  msgid "Use Paypal with this form."
2795
  msgstr ""
2796
 
2797
- #: classes/helpers/FrmTipsHelper.php:136
2798
  msgid "Boost your site membership."
2799
  msgstr ""
2800
 
2801
- #: classes/helpers/FrmTipsHelper.php:137
2802
  msgid "Automatically create user accounts."
2803
  msgstr ""
2804
 
2805
- #: classes/helpers/FrmTipsHelper.php:141
2806
  msgid "Make front-end profile editing possible."
2807
  msgstr ""
2808
 
2809
- #: classes/helpers/FrmTipsHelper.php:142
2810
  msgid "Add user registration."
2811
  msgstr ""
2812
 
2813
- #: classes/helpers/FrmTipsHelper.php:146
2814
  msgid "Want a text when this form is submitted or when a payment is received?"
2815
  msgstr ""
2816
 
2817
- #: classes/helpers/FrmTipsHelper.php:147
2818
  msgid "Use Twilio with this form."
2819
  msgstr ""
2820
 
2821
- #: classes/helpers/FrmTipsHelper.php:151
2822
  msgid "Send a text when this form is submitted."
2823
  msgstr ""
2824
 
2825
- #: classes/helpers/FrmTipsHelper.php:152
2826
  msgid "Get Twilio."
2827
  msgstr ""
2828
 
2829
- #: classes/helpers/FrmTipsHelper.php:163
2830
  msgid "Make your sidebar or footer form stand out."
2831
  msgstr ""
2832
 
2833
- #: classes/helpers/FrmTipsHelper.php:164
2834
  msgid "Use multiple style templates."
2835
  msgstr ""
2836
 
2837
- #: classes/helpers/FrmTipsHelper.php:174
2838
  msgid "Want to edit or delete form submissions?"
2839
  msgstr ""
2840
 
2841
- #: classes/helpers/FrmTipsHelper.php:175
2842
  msgid "Add entry management."
2843
  msgstr ""
2844
 
2845
- #: classes/helpers/FrmTipsHelper.php:179
2846
  msgid "Want to search submitted entries?"
2847
  msgstr ""
2848
 
2849
- #: classes/helpers/FrmTipsHelper.php:191
2850
  msgid "Want to import entries into your forms?"
2851
  msgstr ""
2852
 
2853
- #: classes/helpers/FrmTipsHelper.php:202
2854
  msgid "Looking for more ways to get professional results?"
2855
  msgstr ""
2856
 
2857
- #: classes/helpers/FrmTipsHelper.php:203
2858
  msgid "Take your forms to the next level."
2859
  msgstr ""
2860
 
2861
- #: classes/helpers/FrmTipsHelper.php:207
2862
  msgid "Increase conversions in long forms."
2863
  msgstr ""
2864
 
2865
- #: classes/helpers/FrmTipsHelper.php:208
2866
  msgid "Add conditional logic, page breaks, and section headings."
2867
  msgstr ""
2868
 
2869
- #: classes/helpers/FrmTipsHelper.php:212
2870
  msgid "Automate your business and increase revenue."
2871
  msgstr ""
2872
 
2873
- #: classes/helpers/FrmTipsHelper.php:213
2874
  msgid "Collect instant payments, and send leads to MailChimp."
2875
  msgstr ""
2876
 
2877
- #: classes/helpers/FrmXMLHelper.php:31
2878
- msgid "Your server does not have XML enabled"
2879
- msgstr ""
2880
-
2881
- #: classes/helpers/FrmXMLHelper.php:37
2882
- #: classes/helpers/FrmXMLHelper.php:49
2883
- msgid "There was an error when reading this XML file"
2884
- msgstr ""
2885
-
2886
- #: classes/helpers/FrmXMLHelper.php:41
2887
- msgid "Your server is missing the simplexml_import_dom function"
2888
- msgstr ""
2889
-
2890
- #: classes/helpers/FrmXMLHelper.php:827
2891
- msgid "Imported"
2892
- msgstr ""
2893
-
2894
- #: classes/helpers/FrmXMLHelper.php:828
2895
- msgid "Updated"
2896
- msgstr ""
2897
-
2898
- #: classes/helpers/FrmXMLHelper.php:853
2899
- msgid "Nothing was imported or updated"
2900
- msgstr ""
2901
-
2902
- #: classes/helpers/FrmXMLHelper.php:865
2903
- msgid "%1$s Form"
2904
- msgid_plural "%1$s Forms"
2905
- msgstr[0] ""
2906
-
2907
- #. translators: %1$s - field type
2908
- #: classes/helpers/FrmXMLHelper.php:866
2909
- #: classes/models/FrmFormMigrator.php:389
2910
- msgid "%1$s Field"
2911
- msgid_plural "%1$s Fields"
2912
- msgstr[0] ""
2913
-
2914
- #: classes/helpers/FrmXMLHelper.php:867
2915
- msgid "%1$s Entry"
2916
- msgid_plural "%1$s Entries"
2917
- msgstr[0] ""
2918
-
2919
- #: classes/helpers/FrmXMLHelper.php:868
2920
- msgid "%1$s View"
2921
- msgid_plural "%1$s Views"
2922
- msgstr[0] ""
2923
-
2924
- #: classes/helpers/FrmXMLHelper.php:869
2925
- msgid "%1$s Post"
2926
- msgid_plural "%1$s Posts"
2927
- msgstr[0] ""
2928
-
2929
- #: classes/helpers/FrmXMLHelper.php:870
2930
- msgid "%1$s Style"
2931
- msgid_plural "%1$s Styles"
2932
- msgstr[0] ""
2933
-
2934
- #: classes/helpers/FrmXMLHelper.php:871
2935
- msgid "%1$s Term"
2936
- msgid_plural "%1$s Terms"
2937
- msgstr[0] ""
2938
-
2939
- #: classes/helpers/FrmXMLHelper.php:872
2940
- msgid "%1$s Form Action"
2941
- msgid_plural "%1$s Form Actions"
2942
- msgstr[0] ""
2943
-
2944
- #: classes/helpers/FrmXMLHelper.php:1064
2945
- msgid "Create Posts"
2946
  msgstr ""
2947
 
2948
- #: classes/helpers/FrmXMLHelper.php:1171
2949
- #: classes/views/frm-form-actions/email_action.php:16
2950
- msgid "Email Notification"
2951
  msgstr ""
2952
 
2953
- #: classes/models/fields/FrmFieldCaptcha.php:147
2954
- msgid "The captcha is missing from this form"
2955
  msgstr ""
2956
 
2957
- #: classes/models/fields/FrmFieldCaptcha.php:163
2958
- msgid "There was a problem verifying your recaptcha"
2959
  msgstr ""
2960
 
2961
- #: classes/models/fields/FrmFieldCheckbox.php:38
2962
- #: classes/models/fields/FrmFieldRadio.php:45
2963
- #: classes/models/fields/FrmFieldSelect.php:35
2964
- #: classes/views/styles/_sample_form.php:32
2965
- #: classes/views/styles/_sample_form.php:61
2966
- #: classes/views/styles/_sample_form.php:69
2967
- msgid "Option 1"
2968
  msgstr ""
2969
 
2970
- #: classes/models/fields/FrmFieldCheckbox.php:39
2971
- #: classes/models/fields/FrmFieldRadio.php:46
2972
- #: classes/views/styles/_sample_form.php:62
2973
- #: classes/views/styles/_sample_form.php:70
2974
- msgid "Option 2"
2975
  msgstr ""
2976
 
2977
- #: classes/models/fields/FrmFieldNumber.php:65
2978
- msgid "Please select a higher number"
 
2979
  msgstr ""
2980
 
2981
- #: classes/models/fields/FrmFieldNumber.php:67
2982
- msgid "Please select a lower number"
 
2983
  msgstr ""
2984
 
2985
- #: classes/models/fields/FrmFieldType.php:334
2986
- msgid "Untitled"
 
2987
  msgstr ""
2988
 
2989
- #: classes/models/fields/FrmFieldUrl.php:34
2990
- msgid "Website"
2991
  msgstr ""
2992
 
2993
- #. translators: %1$s: Plugin name, %2$s: Start link HTML, %3$s: end link HTML
2994
- #: classes/models/FrmAddon.php:265
2995
- msgid "Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s."
2996
  msgstr ""
2997
 
2998
- #: classes/models/FrmAddon.php:454
2999
- msgid "Oops! You forgot to enter your license number."
3000
  msgstr ""
3001
 
3002
- #: classes/models/FrmAddon.php:530
3003
- msgid "Your license has been activated. Enjoy!"
3004
  msgstr ""
3005
 
3006
- #: classes/models/FrmAddon.php:531
3007
- #: classes/models/FrmAddon.php:536
3008
- msgid "That license key is invalid"
 
3009
  msgstr ""
3010
 
3011
- #: classes/models/FrmAddon.php:532
3012
- msgid "That license is expired"
3013
  msgstr ""
3014
 
3015
- #: classes/models/FrmAddon.php:533
3016
- msgid "That license has been refunded"
 
 
3017
  msgstr ""
3018
 
3019
- #: classes/models/FrmAddon.php:534
3020
- msgid "That license has been used on too many sites"
 
3021
  msgstr ""
3022
 
3023
- #: classes/models/FrmAddon.php:535
3024
- msgid "Oops! That is the wrong license key for this plugin."
3025
  msgstr ""
3026
 
3027
- #: classes/models/FrmAddon.php:558
3028
- msgid "That license was removed successfully"
3029
  msgstr ""
3030
 
3031
- #: classes/models/FrmAddon.php:560
3032
- msgid "There was an error deactivating your license."
3033
  msgstr ""
3034
 
3035
- #: classes/models/FrmAddon.php:593
3036
- msgid "Your License Key was invalid"
 
3037
  msgstr ""
3038
 
3039
- #. translators: %1$s: Start link HTML, %2$s: End link HTML
3040
- #: classes/models/FrmAddon.php:597
3041
- msgid "You had an error communicating with the Formidable API. %1$sClick here%2$s for more information."
3042
  msgstr ""
3043
 
3044
- #: classes/models/FrmAddon.php:600
3045
- msgid "You had an HTTP error connecting to the Formidable API"
 
3046
  msgstr ""
3047
 
3048
- #. translators: %1$s: Error code, %2$s: Error message
3049
- #: classes/models/FrmAddon.php:611
3050
- msgid "There was a %1$s error: %2$s"
3051
  msgstr ""
3052
 
3053
- #: classes/models/FrmDb.php:414
3054
- msgid "Use the query in an array format so it can be properly prepared."
3055
  msgstr ""
3056
 
3057
- #. translators: %1$s: Form name, %2$s: Site name
3058
- #: classes/models/FrmEmail.php:262
3059
- msgid "%1$s Form submitted on %2$s"
3060
  msgstr ""
3061
 
3062
- #: classes/models/FrmEmail.php:302
3063
- #: classes/views/frm-entries/sidebar-shared.php:72
3064
- msgid "User Information"
3065
  msgstr ""
3066
 
3067
- #: classes/models/FrmEmail.php:304
3068
- #: classes/models/FrmEntryValues.php:207
3069
- msgid "User-Agent (Browser/OS)"
3070
  msgstr ""
3071
 
3072
- #: classes/models/FrmEmail.php:305
3073
- #: classes/models/FrmEntryValues.php:212
3074
- #: classes/views/frm-entries/sidebar-shared.php:90
3075
- msgid "Referrer"
3076
  msgstr ""
3077
 
3078
- #: classes/models/FrmEmail.php:321
3079
- #: classes/models/FrmEntryValues.php:202
3080
- #: classes/views/frm-entries/sidebar-shared.php:76
3081
- msgid "IP Address"
3082
  msgstr ""
3083
 
3084
- #: classes/models/FrmEntryValidate.php:9
3085
- msgid "There was a problem with your submission. Please try again."
3086
  msgstr ""
3087
 
3088
- #: classes/models/FrmEntryValidate.php:223
3089
- #: classes/models/FrmEntryValidate.php:232
3090
- msgid "Your entry appears to be spam!"
3091
  msgstr ""
3092
 
3093
- #: classes/models/FrmEntryValidate.php:227
3094
- msgid "Your entry appears to be blacklist spam!"
3095
  msgstr ""
3096
 
3097
- #: classes/models/FrmField.php:14
3098
- #: classes/views/styles/_buttons.php:58
3099
- #: classes/views/styles/_buttons.php:102
3100
- #: classes/views/styles/_buttons.php:121
3101
- #: classes/views/styles/_field-colors.php:31
3102
- #: classes/views/styles/_field-colors.php:93
3103
- #: classes/views/styles/_field-colors.php:132
3104
- #: classes/views/styles/_form-messages.php:23
3105
- #: classes/views/styles/_form-messages.php:46
3106
- msgid "Text"
3107
  msgstr ""
3108
 
3109
- #: classes/models/FrmField.php:18
3110
- msgid "Paragraph"
3111
  msgstr ""
3112
 
3113
- #: classes/models/FrmField.php:22
3114
- msgid "Checkboxes"
3115
  msgstr ""
3116
 
3117
- #: classes/models/FrmField.php:26
3118
- msgid "Radio Button"
3119
  msgstr ""
3120
 
3121
- #: classes/models/FrmField.php:30
3122
- msgid "Dropdown"
3123
  msgstr ""
3124
 
3125
- #: classes/models/FrmField.php:38
3126
- msgid "Website/URL"
3127
  msgstr ""
3128
 
3129
- #: classes/models/FrmField.php:42
3130
- msgid "Number"
3131
  msgstr ""
3132
 
3133
- #: classes/models/FrmField.php:46
3134
- msgid "Phone"
3135
  msgstr ""
3136
 
3137
- #: classes/models/FrmField.php:50
3138
- msgid "HTML"
3139
  msgstr ""
3140
 
3141
- #: classes/models/FrmField.php:54
3142
- msgid "Hidden Field"
3143
  msgstr ""
3144
 
3145
- #: classes/models/FrmField.php:62
3146
- #: classes/views/frm-settings/form.php:99
3147
- msgid "reCAPTCHA"
3148
  msgstr ""
3149
 
3150
- #: classes/models/FrmField.php:73
3151
- msgid "File Upload"
3152
  msgstr ""
3153
 
3154
- #: classes/models/FrmField.php:77
3155
- msgid "Rich Text"
3156
  msgstr ""
3157
 
3158
- #: classes/models/FrmField.php:85
3159
- msgid "Time"
3160
  msgstr ""
3161
 
3162
- #: classes/models/FrmField.php:89
3163
- msgid "Scale"
3164
  msgstr ""
3165
 
3166
- #: classes/models/FrmField.php:93
3167
- msgid "Star Rating"
3168
  msgstr ""
3169
 
3170
- #: classes/models/FrmField.php:97
3171
- msgid "Slider"
3172
  msgstr ""
3173
 
3174
- #: classes/models/FrmField.php:101
3175
- msgid "Toggle"
3176
  msgstr ""
3177
 
3178
- #: classes/models/FrmField.php:105
3179
- msgid "Dynamic"
3180
  msgstr ""
3181
 
3182
- #: classes/models/FrmField.php:109
3183
- msgid "Lookup"
3184
  msgstr ""
3185
 
3186
- #: classes/models/FrmField.php:113
3187
- msgid "Repeater"
3188
  msgstr ""
3189
 
3190
- #: classes/models/FrmField.php:117
3191
- msgid "End Section"
3192
  msgstr ""
3193
 
3194
- #: classes/models/FrmField.php:121
3195
- msgid "Section"
3196
  msgstr ""
3197
 
3198
- #: classes/models/FrmField.php:125
3199
- msgid "Page Break"
3200
  msgstr ""
3201
 
3202
- #: classes/models/FrmField.php:129
3203
- msgid "Embed Form"
3204
  msgstr ""
3205
 
3206
- #: classes/models/FrmField.php:133
3207
- msgid "Password"
3208
  msgstr ""
3209
 
3210
- #: classes/models/FrmField.php:137
3211
- msgid "Tags"
3212
  msgstr ""
3213
 
3214
- #: classes/models/FrmField.php:141
3215
- msgid "Credit Card"
3216
  msgstr ""
3217
 
3218
- #: classes/models/FrmField.php:145
3219
- msgid "Address"
3220
  msgstr ""
3221
 
3222
- #: classes/models/FrmFieldValue.php:145
3223
- msgid "The display value has not been prepared. Please use the prepare_display_value() method before calling get_displayed_value()."
3224
  msgstr ""
3225
 
3226
- #: classes/models/FrmFormAction.php:37
3227
- msgid "There are no options for this action."
3228
  msgstr ""
3229
 
3230
- #: classes/models/FrmFormAction.php:740
3231
- #: classes/views/frm-forms/_publish_box.php:12
3232
- msgid "Save Draft"
3233
  msgstr ""
3234
 
3235
- #: classes/models/FrmFormAction.php:744
3236
- #: classes/views/xml/import_form.php:12
3237
- msgid "Import"
3238
  msgstr ""
3239
 
3240
- #: classes/models/FrmFormMigrator.php:137
3241
- msgid "No form fields found."
3242
  msgstr ""
3243
 
3244
- #: classes/models/FrmFormMigrator.php:229
3245
- msgid "There was an error while creating a new form."
3246
  msgstr ""
3247
 
3248
- #: classes/models/FrmFormMigrator.php:361
3249
- msgid "Default Form"
3250
  msgstr ""
3251
 
3252
- #: classes/models/FrmMigrate.php:506
3253
- msgid "Sending"
3254
  msgstr ""
3255
 
3256
- #: classes/models/FrmPersonalData.php:23
3257
- msgid "Formidable Forms Exporter"
3258
  msgstr ""
3259
 
3260
- #: classes/models/FrmPersonalData.php:38
3261
- msgid "Formidable Forms entries"
3262
  msgstr ""
3263
 
3264
- #: classes/models/FrmPersonalData.php:61
3265
- msgid "Form Submissions"
3266
  msgstr ""
3267
 
3268
- #: classes/models/FrmSettings.php:93
3269
- msgid "Your responses were successfully submitted. Thank you!"
3270
  msgstr ""
3271
 
3272
- #: classes/models/FrmSettings.php:94
3273
- msgid "This field cannot be blank."
3274
  msgstr ""
3275
 
3276
- #: classes/models/FrmSettings.php:95
3277
- msgid "This value must be unique."
3278
  msgstr ""
3279
 
3280
- #: classes/models/FrmSettings.php:96
3281
- msgid "There was a problem with your submission. Errors are marked below."
3282
  msgstr ""
3283
 
3284
- #: classes/models/FrmSettings.php:97
3285
- msgid "We're sorry. It looks like you've already submitted that."
3286
  msgstr ""
3287
 
3288
- #: classes/models/FrmSettings.php:98
3289
- #: classes/views/styles/_sample_form.php:77
3290
- msgid "Submit"
3291
  msgstr ""
3292
 
3293
- #: classes/models/FrmSettings.php:99
3294
- msgid "You do not have permission to view this form."
3295
  msgstr ""
3296
 
3297
- #: classes/models/FrmSettings.php:167
3298
- msgid "The reCAPTCHA was not entered correctly"
3299
  msgstr ""
3300
 
3301
- #: classes/models/FrmStyle.php:23
3302
- msgid "New Style"
3303
  msgstr ""
3304
 
3305
- #: classes/models/FrmStyle.php:149
3306
- msgid "WARNING: Any changes made to this file will be lost when your Formidable settings are updated"
3307
  msgstr ""
3308
 
3309
- #: classes/models/FrmStyle.php:228
3310
- msgid "Formidable Style"
3311
  msgstr ""
3312
 
3313
- #: classes/models/FrmStyle.php:463
3314
- #: classes/views/styles/_field-description.php:17
3315
- msgid "normal"
3316
  msgstr ""
3317
 
3318
- #: classes/models/FrmStyle.php:466
3319
- msgid "bold"
3320
  msgstr ""
3321
 
3322
- #: classes/views/addons/list.php:3
3323
- msgid "Formidable Add-Ons"
3324
  msgstr ""
3325
 
3326
- #: classes/views/addons/list.php:21
3327
- #: classes/views/addons/list.php:22
3328
- msgid "View Docs"
3329
  msgstr ""
3330
 
3331
- #: classes/views/addons/list.php:30
3332
- msgid "Status: %s"
3333
  msgstr ""
3334
 
3335
- #: classes/views/addons/list.php:37
3336
- #: classes/views/addons/settings.php:28
3337
- msgid "Activate"
 
 
 
3338
  msgstr ""
3339
 
3340
- #: classes/views/addons/list.php:45
3341
- #: classes/views/addons/list.php:46
3342
- #: classes/views/frm-forms/list-templates.php:137
3343
- #: classes/views/frm-forms/list-templates.php:138
3344
- msgid "Upgrade Now"
3345
  msgstr ""
3346
 
3347
- #: classes/views/addons/settings.php:20
3348
- msgid "Good to go!"
3349
  msgstr ""
3350
 
3351
- #: classes/views/addons/settings.php:22
3352
- msgid "Deactivate"
3353
  msgstr ""
3354
 
3355
- #: classes/views/addons/upgrade_to_pro.php:24
3356
- msgid "Get Started"
3357
  msgstr ""
3358
 
3359
- #: classes/views/frm-entries/_sidebar-shared-pub.php:9
3360
- msgid "M j, Y @ G:i"
3361
  msgstr ""
3362
 
3363
- #: classes/views/frm-entries/_sidebar-shared-pub.php:10
3364
- msgid "Published on: %1$s"
3365
  msgstr ""
3366
 
3367
- #: classes/views/frm-entries/_sidebar-shared-pub.php:17
3368
- msgid "Print"
3369
  msgstr ""
3370
 
3371
- #: classes/views/frm-entries/_sidebar-shared-pub.php:23
3372
- msgid "Updated on: %1$s"
3373
  msgstr ""
3374
 
3375
- #: classes/views/frm-entries/form.php:4
3376
- msgid "Oops!"
3377
  msgstr ""
3378
 
3379
- #: classes/views/frm-entries/form.php:4
3380
- msgid "You did not add any fields to your form. %1$sGo back%2$s and add some."
3381
  msgstr ""
3382
 
3383
- #: classes/views/frm-entries/form.php:29
3384
- msgid "If you are human, leave this field blank."
3385
  msgstr ""
3386
 
3387
- #: classes/views/frm-entries/no_entries.php:3
3388
- msgid "This form is not set to save any entries."
3389
  msgstr ""
3390
 
3391
- #: classes/views/frm-entries/no_entries.php:4
3392
- msgid "If you would like to save entries in this form, go to the %1$sform Settings%2$s page %3$s and uncheck the \"Do not store any entries submitted from this form\" box."
3393
  msgstr ""
3394
 
3395
- #: classes/views/frm-entries/no_entries.php:6
3396
- msgid "No Entries for form: %s"
3397
  msgstr ""
3398
 
3399
- #: classes/views/frm-entries/no_entries.php:7
3400
- msgid "See the %1$sform documentation%2$s for instructions on publishing your form"
3401
  msgstr ""
3402
 
3403
- #: classes/views/frm-entries/no_entries.php:9
3404
- #: classes/views/frm-forms/list-templates.php:48
3405
- msgid "You have not created any forms yet."
3406
  msgstr ""
3407
 
3408
- #: classes/views/frm-entries/no_entries.php:10
3409
- msgid "To view entries, you must first %1$sbuild a form%2$s"
3410
  msgstr ""
3411
 
3412
- #: classes/views/frm-entries/show.php:10
3413
- #: classes/views/frm-entries/sidebar-shared.php:7
3414
- msgid "View Entry"
3415
  msgstr ""
3416
 
3417
- #: classes/views/frm-entries/show.php:21
3418
- msgid "Entry"
3419
  msgstr ""
3420
 
3421
- #: classes/views/frm-entries/show.php:68
3422
- msgid "Parent Entry ID"
3423
  msgstr ""
3424
 
3425
- #: classes/views/frm-entries/sidebar-shared.php:4
3426
- msgid "Entry Details"
3427
  msgstr ""
3428
 
3429
- #: classes/views/frm-entries/sidebar-shared.php:17
3430
- msgid "Post"
3431
  msgstr ""
3432
 
3433
- #: classes/views/frm-entries/sidebar-shared.php:48
3434
- msgid "Created by: %1$s"
3435
  msgstr ""
3436
 
3437
- #: classes/views/frm-entries/sidebar-shared.php:60
3438
- msgid "Updated by: %1$s"
3439
  msgstr ""
3440
 
3441
- #: classes/views/frm-entries/sidebar-shared.php:83
3442
- msgid "Browser/OS"
3443
  msgstr ""
3444
 
3445
- #: classes/views/frm-fields/back-end/automatic-width.php:2
3446
- #: classes/views/frm-fields/back-end/pixels-wide.php:4
3447
- msgid "Field Size"
3448
  msgstr ""
3449
 
3450
- #: classes/views/frm-fields/back-end/automatic-width.php:6
3451
- msgid "automatic width"
3452
  msgstr ""
3453
 
3454
- #: classes/views/frm-fields/back-end/field-captcha.php:5
3455
- msgid "Your captcha will not appear on your form until you %1$sset up%2$s the Site and Secret Keys"
3456
  msgstr ""
3457
 
3458
- #: classes/views/frm-fields/back-end/field-hidden.php:3
3459
- msgid "Note: This field will not show in the form. Enter the value to be hidden."
3460
  msgstr ""
3461
 
3462
- #: classes/views/frm-fields/back-end/field-html.php:3
3463
- msgid "This is a placeholder for your custom HTML."
3464
  msgstr ""
3465
 
3466
- #: classes/views/frm-fields/back-end/field-html.php:4
3467
- msgid "You can edit this content in the field settings."
3468
  msgstr ""
3469
 
3470
- #: classes/views/frm-fields/back-end/field-user-id.php:2
3471
- msgid "Note: This field will not show in the form, but will link the user id to it as long as the user is logged in at the time of form submission."
3472
  msgstr ""
3473
 
3474
- #: classes/views/frm-fields/back-end/html-content.php:2
3475
- msgid "Content"
3476
  msgstr ""
3477
 
3478
- #: classes/views/frm-fields/back-end/max.php:1
3479
- msgid "rows high"
3480
  msgstr ""
3481
 
3482
- #: classes/views/frm-fields/back-end/max.php:1
3483
- msgid "characters maximum"
3484
  msgstr ""
3485
 
3486
- #: classes/views/frm-fields/back-end/number-range.php:3
3487
- msgid "Number Range"
3488
  msgstr ""
3489
 
3490
- #: classes/views/frm-fields/back-end/number-range.php:4
3491
- msgid "Set the number range the field validation should allow. Browsers that support the HTML5 number field require a number range to determine the numbers seen when clicking the arrows next to the field."
3492
  msgstr ""
3493
 
3494
- #: classes/views/frm-fields/back-end/number-range.php:9
3495
- msgid "minimum"
3496
  msgstr ""
3497
 
3498
- #: classes/views/frm-fields/back-end/number-range.php:11
3499
- msgid "maximum"
3500
  msgstr ""
3501
 
3502
- #: classes/views/frm-fields/back-end/number-range.php:13
3503
- msgid "step"
3504
  msgstr ""
3505
 
3506
- #: classes/views/frm-fields/back-end/pixels-wide.php:10
3507
- msgid "pixels wide"
3508
  msgstr ""
3509
 
3510
- #: classes/views/frm-fields/back-end/value-format.php:2
3511
- #: classes/views/xml/import_form.php:57
3512
- msgid "Format"
3513
  msgstr ""
3514
 
3515
- #: classes/views/frm-fields/back-end/value-format.php:3
3516
- msgid "Insert the format you would like to accept. Use a regular expression starting with ^ or an exact format like (999)999-9999."
3517
  msgstr ""
3518
 
3519
- #: classes/views/frm-fields/import_choices.php:22
3520
- msgid "Edit or add field options (one per line)"
3521
  msgstr ""
3522
 
3523
- #: classes/views/frm-fields/import_choices.php:56
3524
- msgid "Update Field Choices"
3525
  msgstr ""
3526
 
3527
- #: classes/views/frm-form-actions/_action_inside.php:7
3528
- msgid "Label"
3529
  msgstr ""
3530
 
3531
- #: classes/views/frm-form-actions/_action_inside.php:33
3532
- msgid "Action Triggers"
3533
  msgstr ""
3534
 
3535
- #: classes/views/frm-form-actions/_action_inside.php:35
3536
- msgid "Trigger this action after"
3537
  msgstr ""
3538
 
3539
- #: classes/views/frm-form-actions/_action_inside.php:59
3540
- msgid "Action ID: %1$s"
3541
  msgstr ""
3542
 
3543
- #: classes/views/frm-form-actions/_email_settings.php:4
3544
- msgid "To"
3545
  msgstr ""
3546
 
3547
- #: classes/views/frm-form-actions/_email_settings.php:10
3548
- #: classes/views/frm-form-actions/_email_settings.php:16
3549
- msgid "CC"
3550
  msgstr ""
3551
 
3552
- #: classes/views/frm-form-actions/_email_settings.php:11
3553
- #: classes/views/frm-form-actions/_email_settings.php:26
3554
- msgid "BCC"
3555
  msgstr ""
3556
 
3557
- #: classes/views/frm-form-actions/_email_settings.php:36
3558
- msgid "Reply to"
3559
  msgstr ""
3560
 
3561
- #: classes/views/frm-form-actions/_email_settings.php:47
3562
- msgid "From"
3563
  msgstr ""
3564
 
3565
- #: classes/views/frm-form-actions/_email_settings.php:54
3566
- msgid "Reply To"
3567
  msgstr ""
3568
 
3569
- #: classes/views/frm-form-actions/_email_settings.php:63
3570
- msgid "Subject"
3571
  msgstr ""
3572
 
3573
- #: classes/views/frm-form-actions/_email_settings.php:69
3574
- msgid "Message"
3575
  msgstr ""
3576
 
3577
- #: classes/views/frm-form-actions/_email_settings.php:77
3578
- msgid "Append IP Address, Browser, and Referring URL to message"
3579
  msgstr ""
3580
 
3581
- #: classes/views/frm-form-actions/_email_settings.php:79
3582
- msgid "Append Browser and Referring URL to message"
3583
  msgstr ""
3584
 
3585
- #: classes/views/frm-form-actions/_email_settings.php:85
3586
- msgid "Send Emails in Plain Text"
3587
  msgstr ""
3588
 
3589
- #: classes/views/frm-form-actions/default_actions.php:8
3590
- msgid "Create Post"
3591
  msgstr ""
3592
 
3593
- #: classes/views/frm-form-actions/default_actions.php:16
3594
- msgid "Register User"
3595
  msgstr ""
3596
 
3597
- #: classes/views/frm-form-actions/default_actions.php:24
3598
- msgid "PayPal Payment"
3599
  msgstr ""
3600
 
3601
- #: classes/views/frm-form-actions/default_actions.php:32
3602
- msgid "Aweber"
3603
  msgstr ""
3604
 
3605
- #: classes/views/frm-form-actions/default_actions.php:40
3606
- msgid "MailChimp"
3607
  msgstr ""
3608
 
3609
- #: classes/views/frm-form-actions/default_actions.php:48
3610
- msgid "Twilio SMS"
3611
  msgstr ""
3612
 
3613
- #: classes/views/frm-form-actions/default_actions.php:56
3614
- msgid "Credit Card Payment"
3615
  msgstr ""
3616
 
3617
- #: classes/views/frm-form-actions/form_action.php:17
3618
- msgid "Duplicate"
3619
  msgstr ""
3620
 
3621
- #: classes/views/frm-forms/_publish_box.php:31
3622
- msgid "On Blank Page"
3623
  msgstr ""
3624
 
3625
- #: classes/views/frm-forms/_publish_box.php:36
3626
- msgid "In Theme"
3627
  msgstr ""
3628
 
3629
- #: classes/views/frm-forms/actions-dropdown.php:2
3630
- msgid "Show options"
3631
  msgstr ""
3632
 
3633
- #: classes/views/frm-forms/add-new.php:5
3634
- #: classes/views/frm-forms/list-templates.php:5
3635
- msgid "Add new form"
3636
  msgstr ""
3637
 
3638
- #: classes/views/frm-forms/add-new.php:15
3639
- #: classes/views/frm-forms/add-new.php:22
3640
- msgid "Create Blank Form"
3641
  msgstr ""
3642
 
3643
- #: classes/views/frm-forms/add-new.php:17
3644
- msgid "Start with a blank form"
3645
  msgstr ""
3646
 
3647
- #: classes/views/frm-forms/add-new.php:18
3648
- msgid "Build anything you can imagine."
3649
  msgstr ""
3650
 
3651
- #: classes/views/frm-forms/add-new.php:30
3652
- #: classes/views/frm-forms/add-new.php:37
3653
- msgid "Choose Template"
3654
  msgstr ""
3655
 
3656
- #: classes/views/frm-forms/add-new.php:32
3657
- msgid "Start with a template"
3658
  msgstr ""
3659
 
3660
- #: classes/views/frm-forms/add-new.php:33
3661
- msgid "We've done the heavy lifting."
3662
  msgstr ""
3663
 
3664
- #: classes/views/frm-forms/add-new.php:45
3665
- #: classes/views/frm-forms/add-new.php:52
3666
- msgid "Import Form"
3667
  msgstr ""
3668
 
3669
- #: classes/views/frm-forms/add-new.php:47
3670
- msgid "Import your form"
3671
  msgstr ""
3672
 
3673
- #: classes/views/frm-forms/add-new.php:48
3674
- msgid "Import a form from an XML file."
3675
  msgstr ""
3676
 
3677
- #: classes/views/frm-forms/add_field.php:6
3678
- msgid "Move Field"
3679
  msgstr ""
3680
 
3681
- #: classes/views/frm-forms/add_field.php:7
3682
- msgid "Delete Field"
3683
  msgstr ""
3684
 
3685
- #: classes/views/frm-forms/add_field.php:8
3686
- msgid "Duplicate Section"
3687
  msgstr ""
3688
 
3689
- #: classes/views/frm-forms/add_field.php:8
3690
- msgid "Duplicate Field"
3691
  msgstr ""
3692
 
3693
- #: classes/views/frm-forms/add_field.php:74
3694
- msgid "Add Option"
3695
  msgstr ""
3696
 
3697
- #: classes/views/frm-forms/add_field.php:78
3698
- msgid "Add \"Other\""
3699
  msgstr ""
3700
 
3701
- #: classes/views/frm-forms/add_field.php:86
3702
- msgid "Field Choices"
3703
  msgstr ""
3704
 
3705
- #: classes/views/frm-forms/add_field.php:87
3706
- msgid "Bulk Edit Options"
3707
  msgstr ""
3708
 
3709
- #: classes/views/frm-forms/add_field.php:116
3710
- msgid "Field Type"
3711
  msgstr ""
3712
 
3713
- #: classes/views/frm-forms/add_field.php:132
3714
- #: classes/views/frm-forms/add_field.php:304
3715
- msgid "Required"
3716
  msgstr ""
3717
 
3718
- #: classes/views/frm-forms/add_field.php:142
3719
- msgid "Unique: Do not allow the same response multiple times. For example, if one user enters 'Joe', then no one else will be allowed to enter the same name."
3720
  msgstr ""
3721
 
3722
- #: classes/views/frm-forms/add_field.php:143
3723
- #: classes/views/frm-forms/add_field.php:323
3724
- msgid "Unique"
3725
  msgstr ""
3726
 
3727
- #: classes/views/frm-forms/add_field.php:153
3728
- msgid "Read Only: Show this field but do not allow the field value to be edited from the front-end."
3729
  msgstr ""
3730
 
3731
- #: classes/views/frm-forms/add_field.php:155
3732
- #: classes/views/styles/_field-colors.php:20
3733
- msgid "Read Only"
3734
  msgstr ""
3735
 
3736
- #: classes/views/frm-forms/add_field.php:165
3737
- msgid "Indicate required field with"
3738
  msgstr ""
3739
 
3740
- #: classes/views/frm-forms/add_field.php:173
3741
- msgid "The field key can be used as an alternative to the field ID in many cases."
3742
  msgstr ""
3743
 
3744
- #: classes/views/frm-forms/add_field.php:174
3745
- #: classes/views/frm-forms/mb_html_tab.php:11
3746
- msgid "Field Key"
3747
  msgstr ""
3748
 
3749
- #: classes/views/frm-forms/add_field.php:183
3750
- msgid "CSS layout classes"
3751
  msgstr ""
3752
 
3753
- #: classes/views/frm-forms/add_field.php:184
3754
- msgid "Add a CSS class to the field container. Use our predefined classes to align multiple fields in single row."
3755
  msgstr ""
3756
 
3757
- #: classes/views/frm-forms/add_field.php:193
3758
- #: classes/views/frm-forms/mb_html_tab.php:14
3759
- msgid "Label Position"
3760
  msgstr ""
3761
 
3762
- #: classes/views/frm-forms/add_field.php:232
3763
- msgid "Show URL image"
3764
  msgstr ""
3765
 
3766
- #: classes/views/frm-forms/add_field.php:237
3767
- msgid "If this URL points to an image, show to image on the entries listing page."
3768
  msgstr ""
3769
 
3770
- #: classes/views/frm-forms/add_field.php:246
3771
- msgid "ReCaptcha Type"
3772
  msgstr ""
3773
 
3774
- #: classes/views/frm-forms/add_field.php:247
3775
- msgid "Set the size of the captcha field. The compact option is best if your form is in a small area."
3776
  msgstr ""
3777
 
3778
- #: classes/views/frm-forms/add_field.php:252
3779
- msgid "Normal"
3780
  msgstr ""
3781
 
3782
- #: classes/views/frm-forms/add_field.php:255
3783
- msgid "Compact"
3784
  msgstr ""
3785
 
3786
- #: classes/views/frm-forms/add_field.php:263
3787
- msgid "reCAPTCHA Color"
3788
  msgstr ""
3789
 
3790
- #: classes/views/frm-forms/add_field.php:269
3791
- msgid "Light"
3792
  msgstr ""
3793
 
3794
- #: classes/views/frm-forms/add_field.php:272
3795
- msgid "Dark"
3796
  msgstr ""
3797
 
3798
- #: classes/views/frm-forms/add_field.php:298
3799
- msgid "Validation"
3800
  msgstr ""
3801
 
3802
- #: classes/views/frm-forms/add_field.php:314
3803
- msgid "Invalid Format"
3804
  msgstr ""
3805
 
3806
- #: classes/views/frm-forms/add_field.php:332
3807
- msgid "Confirmation"
3808
  msgstr ""
3809
 
3810
- #: classes/views/frm-forms/add_field.php:354
3811
- msgid "Drag fields from your form or the sidebar into this section"
3812
  msgstr ""
3813
 
3814
- #: classes/views/frm-forms/add_field_links.php:18
3815
- #: classes/views/shared/mb_adv_info.php:3
3816
- msgid "Fields"
3817
  msgstr ""
3818
 
3819
- #: classes/views/frm-forms/add_field_links.php:21
3820
- msgid "Open the Field Settings and click on the CSS Layout Classes option to enable this tab"
3821
  msgstr ""
3822
 
3823
- #: classes/views/frm-forms/add_field_links.php:22
3824
- msgid "Layout"
3825
  msgstr ""
3826
 
3827
- #: classes/views/frm-forms/add_field_links.php:87
3828
- msgid "%s fields"
3829
  msgstr ""
3830
 
3831
- #: classes/views/frm-forms/add_field_links.php:106
3832
- msgid "Click inside the \"CSS layout classes\" field option in any field to enable the options below."
3833
  msgstr ""
3834
 
3835
- #: classes/views/frm-forms/add_field_links.php:109
3836
- msgid "Click on any box below to set the width for your selected field."
3837
  msgstr ""
3838
 
3839
- #: classes/views/frm-forms/edit.php:10
3840
- #: classes/views/frm-forms/list.php:5
3841
- #: classes/views/frm-forms/new.php:10
3842
- msgid "Templates"
3843
  msgstr ""
3844
 
3845
- #: classes/views/frm-forms/edit.php:10
3846
- #: classes/views/frm-forms/new.php:10
3847
- msgid "Build Form"
3848
  msgstr ""
3849
 
3850
- #: classes/views/frm-forms/form.php:9
3851
- msgid "Enter title here"
3852
  msgstr ""
3853
 
3854
- #: classes/views/frm-forms/form.php:17
3855
- msgid "1. Name your form"
3856
  msgstr ""
3857
 
3858
- #: classes/views/frm-forms/form.php:21
3859
- msgid "2. Click or drag a field to add it to your form"
3860
  msgstr ""
3861
 
3862
- #: classes/views/frm-forms/form.php:27
3863
- msgid "Add Fields Here"
3864
  msgstr ""
3865
 
3866
- #: classes/views/frm-forms/form.php:30
3867
- msgid "3. Save your form"
3868
  msgstr ""
3869
 
3870
- #: classes/views/frm-forms/insert_form_popup.php:5
3871
- msgid "Close panel"
3872
  msgstr ""
3873
 
3874
- #: classes/views/frm-forms/insert_form_popup.php:40
3875
- msgid "Insert into Post"
3876
  msgstr ""
3877
 
3878
- #: classes/views/frm-forms/list-templates.php:11
3879
- msgid "Form templates"
3880
  msgstr ""
3881
 
3882
- #: classes/views/frm-forms/list-templates.php:16
3883
- msgid "Save time by starting from one of our pre-made templates. They are expertly designed and configured to work right out of the box. If you don't find a template you like, you can always start with a %1$sblank form%2$s."
3884
  msgstr ""
3885
 
3886
- #: classes/views/frm-forms/list-templates.php:23
3887
- msgid "Search Templates"
3888
  msgstr ""
3889
 
3890
- #: classes/views/frm-forms/list-templates.php:29
3891
- msgid "Create a Custom Template"
3892
  msgstr ""
3893
 
3894
- #: classes/views/frm-forms/list-templates.php:31
3895
- msgid "Build a form and setup form actions."
3896
  msgstr ""
3897
 
3898
- #: classes/views/frm-forms/list-templates.php:32
3899
- msgid "Select your form in the dropdown below."
3900
  msgstr ""
3901
 
3902
- #: classes/views/frm-forms/list-templates.php:33
3903
- msgid "Give your template a name and description."
3904
  msgstr ""
3905
 
3906
- #: classes/views/frm-forms/list-templates.php:34
3907
- msgid "Delete the original form. (optional)"
3908
  msgstr ""
3909
 
3910
- #: classes/views/frm-forms/list-templates.php:40
3911
- msgid "Select form for new template"
3912
  msgstr ""
3913
 
3914
- #: classes/views/frm-forms/list-templates.php:71
3915
- msgid "Blank Form"
3916
  msgstr ""
3917
 
3918
- #: classes/views/frm-forms/list-templates.php:72
3919
- msgid "Start from scratch and build exactly what you want. This option will not pre-load any fields."
3920
  msgstr ""
3921
 
3922
- #: classes/views/frm-forms/list-templates.php:76
3923
- #: classes/views/frm-forms/list-templates.php:130
3924
- #: classes/views/frm-forms/list-templates.php:132
3925
- #: classes/views/frm-forms/list-templates.php:134
3926
- msgid "Create Form"
3927
  msgstr ""
3928
 
3929
- #: classes/views/frm-forms/list-templates.php:102
3930
- msgid "License plan required: %s"
3931
  msgstr ""
3932
 
3933
- #: classes/views/frm-forms/mb_html_tab.php:3
3934
- msgid "Use the buttons below to help customize your form HTML."
3935
  msgstr ""
3936
 
3937
- #: classes/views/frm-forms/mb_html_tab.php:10
3938
- msgid "Field ID"
3939
  msgstr ""
3940
 
3941
- #: classes/views/frm-forms/mb_html_tab.php:12
3942
- msgid "Field Name"
3943
  msgstr ""
3944
 
3945
- #: classes/views/frm-forms/mb_html_tab.php:15
3946
- msgid "Required Label"
3947
  msgstr ""
3948
 
3949
- #: classes/views/frm-forms/mb_html_tab.php:16
3950
- msgid "Input Field"
3951
  msgstr ""
3952
 
3953
- #: classes/views/frm-forms/mb_html_tab.php:18
3954
- msgid "Single Option"
3955
  msgstr ""
3956
 
3957
- #: classes/views/frm-forms/mb_html_tab.php:19
3958
- msgid "Show a single radio or checkbox option by replacing 1 with the order of the option"
3959
  msgstr ""
3960
 
3961
- #: classes/views/frm-forms/mb_html_tab.php:21
3962
- msgid "Hide Option Label"
3963
  msgstr ""
3964
 
3965
- #: classes/views/frm-forms/mb_html_tab.php:23
3966
- msgid "Required Class"
3967
  msgstr ""
3968
 
3969
- #: classes/views/frm-forms/mb_html_tab.php:24
3970
- msgid "Add class name if field is required"
3971
  msgstr ""
3972
 
3973
- #: classes/views/frm-forms/mb_html_tab.php:27
3974
- msgid "Error Class"
3975
  msgstr ""
3976
 
3977
- #: classes/views/frm-forms/mb_html_tab.php:28
3978
- msgid "Add class name if field has an error on form submit"
3979
  msgstr ""
3980
 
3981
- #: classes/views/frm-forms/mb_html_tab.php:48
3982
- #: classes/views/frm-forms/template-name-overlay.php:9
3983
- #: classes/views/frm-forms/template-name-overlay.php:10
3984
- msgid "Form Name"
3985
  msgstr ""
3986
 
3987
- #: classes/views/frm-forms/mb_html_tab.php:50
3988
- #: classes/views/frm-forms/settings.php:240
3989
- msgid "Form Key"
3990
  msgstr ""
3991
 
3992
- #: classes/views/frm-forms/mb_html_tab.php:51
3993
- msgid "Delete Entry Link"
3994
  msgstr ""
3995
 
3996
- #: classes/views/frm-forms/mb_html_tab.php:63
3997
- msgid "Button Label"
3998
  msgstr ""
3999
 
4000
- #: classes/views/frm-forms/mb_html_tab.php:64
4001
- msgid "Button Hook"
4002
  msgstr ""
4003
 
4004
- #: classes/views/frm-forms/mb_insert_fields.php:3
4005
- msgid "Customization"
4006
  msgstr ""
4007
 
4008
- #: classes/views/frm-forms/settings.php:39
4009
- msgid "Customize HTML"
 
 
4010
  msgstr ""
4011
 
4012
- #: classes/views/frm-forms/settings.php:63
4013
- msgid "Form Shortcodes"
4014
  msgstr ""
4015
 
4016
- #: classes/views/frm-forms/settings.php:65
4017
- msgid "Show"
4018
  msgstr ""
4019
 
4020
- #: classes/views/frm-forms/settings.php:67
4021
- msgid "Insert on a page, post, or text widget"
 
 
4022
  msgstr ""
4023
 
4024
- #: classes/views/frm-forms/settings.php:72
4025
- msgid "Insert in a template"
4026
  msgstr ""
4027
 
4028
- #: classes/views/frm-forms/settings.php:75
4029
- msgid "Hide"
4030
  msgstr ""
4031
 
4032
- #: classes/views/frm-forms/settings.php:81
4033
- msgid "Form Settings"
4034
  msgstr ""
4035
 
4036
- #: classes/views/frm-forms/settings.php:92
4037
- #: classes/views/frm-forms/settings.php:228
4038
- msgid "On Submit"
4039
  msgstr ""
4040
 
4041
- #: classes/views/frm-forms/settings.php:93
4042
- msgid "Choose what will happen after the user submits this form."
4043
  msgstr ""
4044
 
4045
- #: classes/views/frm-forms/settings.php:102
4046
- msgid "Show Message"
4047
  msgstr ""
4048
 
4049
- #: classes/views/frm-forms/settings.php:105
4050
- msgid "Redirect to URL"
4051
  msgstr ""
4052
 
4053
- #: classes/views/frm-forms/settings.php:108
4054
- msgid "Show Page Content"
4055
  msgstr ""
4056
 
4057
- #: classes/views/frm-forms/settings.php:118
4058
- msgid "Use Content from Page"
4059
  msgstr ""
4060
 
4061
- #: classes/views/frm-forms/settings.php:128
4062
- msgid "Show the form with the confirmation message"
4063
  msgstr ""
4064
 
4065
- #: classes/views/frm-forms/settings.php:136
4066
- msgid "Do not store entries submitted from this form"
4067
  msgstr ""
4068
 
4069
- #: classes/views/frm-forms/settings.php:142
4070
- msgid "Use Akismet to check entries for spam for"
4071
  msgstr ""
4072
 
4073
- #: classes/views/frm-forms/settings.php:145
4074
- msgid "no one"
4075
  msgstr ""
4076
 
4077
- #: classes/views/frm-forms/settings.php:148
4078
- msgid "everyone"
4079
  msgstr ""
4080
 
4081
- #: classes/views/frm-forms/settings.php:151
4082
- msgid "visitors who are not logged in"
4083
  msgstr ""
4084
 
4085
- #: classes/views/frm-forms/settings.php:160
4086
- msgid "AJAX"
4087
  msgstr ""
4088
 
4089
- #: classes/views/frm-forms/settings.php:161
4090
- msgid "Make stuff happen in the background without a page refresh"
4091
  msgstr ""
4092
 
4093
- #: classes/views/frm-forms/settings.php:167
4094
- msgid "Load and save form builder page with AJAX"
4095
  msgstr ""
4096
 
4097
- #: classes/views/frm-forms/settings.php:169
4098
- msgid "Recommended for long forms."
 
4099
  msgstr ""
4100
 
4101
- #: classes/views/frm-forms/settings.php:177
4102
- msgid "Validate this form with javascript"
4103
  msgstr ""
4104
 
4105
- #: classes/views/frm-forms/settings.php:179
4106
- msgid "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."
4107
  msgstr ""
4108
 
4109
- #: classes/views/frm-forms/settings.php:189
4110
- msgid "Styling & Buttons"
4111
  msgstr ""
4112
 
4113
- #: classes/views/frm-forms/settings.php:190
4114
- msgid "Select a style for this form and set the text for your buttons."
4115
  msgstr ""
4116
 
4117
- #: classes/views/frm-forms/settings.php:195
4118
- msgid "Style Template"
4119
  msgstr ""
4120
 
4121
- #: classes/views/frm-forms/settings.php:199
4122
- msgid "Always use default"
4123
  msgstr ""
4124
 
4125
- #: classes/views/frm-forms/settings.php:203
4126
- #: classes/views/styles/manage.php:43
4127
- msgid "default"
4128
  msgstr ""
4129
 
4130
- #: classes/views/frm-forms/settings.php:207
4131
- msgid "Do not use Formidable styling"
4132
  msgstr ""
4133
 
4134
- #: classes/views/frm-forms/settings.php:212
4135
- #: classes/views/frm-settings/form.php:184
4136
- msgid "Submit Button Text"
4137
  msgstr ""
4138
 
4139
- #: classes/views/frm-forms/settings.php:222
4140
- msgid "Messages"
4141
  msgstr ""
4142
 
4143
- #: classes/views/frm-forms/settings.php:223
4144
- msgid "Set up your confirmation messages."
 
4145
  msgstr ""
4146
 
4147
- #: classes/views/frm-forms/settings.php:236
4148
- #: classes/views/frm-settings/form.php:192
4149
- msgid "Miscellaneous"
4150
- msgstr ""
 
4151
 
4152
- #: classes/views/frm-forms/settings.php:262
4153
- msgid "Add New Action"
 
4154
  msgstr ""
4155
 
4156
- #: classes/views/frm-forms/settings.php:276
4157
- msgid "%s form actions"
 
4158
  msgstr ""
4159
 
4160
- #: classes/views/frm-forms/settings.php:291
4161
- msgid "Click an action to add it to this form"
4162
  msgstr ""
4163
 
4164
- #: classes/views/frm-forms/settings.php:301
4165
- msgid "Form Classes"
4166
  msgstr ""
4167
 
4168
- #: classes/views/frm-forms/settings.php:307
4169
- msgid "Before Fields"
4170
  msgstr ""
4171
 
4172
- #: classes/views/frm-forms/settings.php:329
4173
- msgid "After Fields"
4174
  msgstr ""
4175
 
4176
- #: classes/views/frm-forms/settings.php:333
4177
- msgid "Submit Button"
4178
  msgstr ""
4179
 
4180
- #: classes/views/frm-forms/shortcode_opts.php:4
4181
- msgid "Select a form:"
 
4182
  msgstr ""
4183
 
4184
- #: classes/views/frm-forms/template-name-overlay.php:16
4185
- msgid "Template Description"
4186
  msgstr ""
4187
 
4188
- #: classes/views/frm-settings/form.php:9
4189
- msgid "License"
4190
  msgstr ""
4191
 
4192
- #: classes/views/frm-settings/form.php:11
4193
- msgid "Your license key provides access to automatic updates."
4194
  msgstr ""
4195
 
4196
- #: classes/views/frm-settings/form.php:48
4197
- #: classes/views/frm-settings/form.php:235
4198
- msgid "Update Options"
4199
  msgstr ""
4200
 
4201
- #: classes/views/frm-settings/form.php:51
4202
- msgid "Styling & Scripts"
4203
  msgstr ""
4204
 
4205
- #: classes/views/frm-settings/form.php:53
4206
- msgid "Load form styling"
4207
  msgstr ""
4208
 
4209
- #: classes/views/frm-settings/form.php:56
4210
- msgid "on every page of your site"
4211
  msgstr ""
4212
 
4213
- #: classes/views/frm-settings/form.php:59
4214
- msgid "only on applicable pages"
4215
  msgstr ""
4216
 
4217
- #: classes/views/frm-settings/form.php:62
4218
- msgid "Don't use form styling on any page"
4219
  msgstr ""
4220
 
4221
- #: classes/views/frm-settings/form.php:69
4222
- msgid "Use HTML5 in forms"
4223
  msgstr ""
4224
 
4225
- #: classes/views/frm-settings/form.php:71
4226
- msgid "We recommend using HTML 5 for your forms. It adds some nifty options like placeholders, patterns, and autocomplete."
4227
  msgstr ""
4228
 
4229
- #: classes/views/frm-settings/form.php:77
4230
- msgid "Do not use CSS Grids for form layouts"
4231
  msgstr ""
4232
 
4233
- #: classes/views/frm-settings/form.php:79
4234
- msgid "Form layouts built using CSS grids that are not fully supported by older browsers like Internet Explorer. Leave this box unchecked for your layouts to look best in current browsers, but show in a single column in older browsers."
4235
  msgstr ""
4236
 
4237
- #: classes/views/frm-settings/form.php:84
4238
- msgid "User Permissions"
4239
  msgstr ""
4240
 
4241
- #: classes/views/frm-settings/form.php:85
4242
- msgid "Select users that are allowed access to Formidable. Without access to View Forms, users will be unable to see the Formidable menu."
4243
  msgstr ""
4244
 
4245
- #: classes/views/frm-settings/form.php:100
4246
- msgid "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking spam on your blog. reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a human. This verifies that they are not a spambot."
4247
  msgstr ""
4248
 
4249
- #: classes/views/frm-settings/form.php:104
4250
- msgid "reCAPTCHA requires a Site and Private API key. Sign up for a %1$sfree reCAPTCHA key%2$s."
4251
  msgstr ""
4252
 
4253
- #: classes/views/frm-settings/form.php:107
4254
- msgid "Site Key"
4255
  msgstr ""
4256
 
4257
- #: classes/views/frm-settings/form.php:108
4258
- #: classes/views/frm-settings/form.php:111
4259
- msgid "Optional"
4260
  msgstr ""
4261
 
4262
- #: classes/views/frm-settings/form.php:110
4263
- msgid "Secret Key"
4264
  msgstr ""
4265
 
4266
- #: classes/views/frm-settings/form.php:113
4267
- msgid "reCAPTCHA Type"
4268
  msgstr ""
4269
 
4270
- #: classes/views/frm-settings/form.php:116
4271
- msgid "Checkbox (V2)"
4272
  msgstr ""
4273
 
4274
- #: classes/views/frm-settings/form.php:119
4275
- msgid "Invisible"
4276
  msgstr ""
4277
 
4278
- #: classes/views/frm-settings/form.php:123
4279
- msgid "reCAPTCHA Language"
4280
  msgstr ""
4281
 
4282
- #: classes/views/frm-settings/form.php:125
4283
- msgid "Browser Default"
4284
  msgstr ""
4285
 
4286
- #: classes/views/frm-settings/form.php:132
4287
- msgid "Multiple reCaptchas"
4288
  msgstr ""
4289
 
4290
- #: classes/views/frm-settings/form.php:135
4291
- msgid "Allow multiple reCaptchas to be used on a single page"
4292
  msgstr ""
4293
 
4294
- #: classes/views/frm-settings/form.php:139
4295
- msgid "Default Messages"
4296
  msgstr ""
4297
 
4298
- #: classes/views/frm-settings/form.php:140
4299
- msgid "You can override the success message and submit button settings on individual forms."
4300
  msgstr ""
4301
 
4302
- #: classes/views/frm-settings/form.php:144
4303
- msgid "Failed/Duplicate Entry"
4304
  msgstr ""
4305
 
4306
- #: classes/views/frm-settings/form.php:145
4307
- msgid "The message seen when a form is submitted and passes validation, but something goes wrong."
4308
  msgstr ""
4309
 
4310
- #: classes/views/frm-settings/form.php:151
4311
- msgid "Blank Field"
4312
  msgstr ""
4313
 
4314
- #: classes/views/frm-settings/form.php:152
4315
- msgid "The message seen when a required field is left blank."
4316
  msgstr ""
4317
 
4318
- #: classes/views/frm-settings/form.php:158
4319
- msgid "Incorrect Field"
4320
  msgstr ""
4321
 
4322
- #: classes/views/frm-settings/form.php:159
4323
- msgid "The message seen when a field response is either incorrect or missing."
4324
  msgstr ""
4325
 
4326
- #: classes/views/frm-settings/form.php:166
4327
- msgid "Unique Value"
 
4328
  msgstr ""
4329
 
4330
- #: classes/views/frm-settings/form.php:167
4331
- msgid "The message seen when a user selects a value in a unique field that has already been used."
4332
  msgstr ""
4333
 
4334
- #: classes/views/frm-settings/form.php:177
4335
- msgid "Success Message"
4336
  msgstr ""
4337
 
4338
- #: classes/views/frm-settings/form.php:178
4339
- msgid "The default message seen after a form is submitted."
4340
  msgstr ""
4341
 
4342
- #: classes/views/frm-settings/form.php:198
4343
- msgid "IP storage"
4344
  msgstr ""
4345
 
4346
- #: classes/views/frm-settings/form.php:201
4347
- msgid "Do not store IPs with form submissions. Check this box if you are in the UK."
4348
  msgstr ""
4349
 
4350
- #: classes/views/frm-settings/form.php:231
4351
- msgid "Uninstall Formidable"
4352
  msgstr ""
4353
 
4354
- #: classes/views/frm-settings/license_box.php:2
4355
- msgid "License Key"
4356
  msgstr ""
4357
 
4358
- #: classes/views/frm-settings/license_box.php:7
4359
- msgid "To unlock more features consider %1$supgrading to PRO%2$s."
4360
  msgstr ""
4361
 
4362
- #: classes/views/frm-settings/license_box.php:10
4363
- #: classes/views/shared/upgrade_overlay.php:38
4364
- msgid "Already purchased?"
4365
  msgstr ""
4366
 
4367
- #: classes/views/frm-settings/settings_cta.php:6
4368
- #: classes/views/shared/upgrade_overlay.php:4
4369
- msgid "Dismiss this message"
4370
  msgstr ""
4371
 
4372
- #: classes/views/frm-settings/settings_cta.php:7
4373
- msgid "Get Formidable Forms Pro and Unlock all the Powerful Features"
4374
  msgstr ""
4375
 
4376
- #: classes/views/frm-settings/settings_cta.php:9
4377
- 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."
4378
  msgstr ""
4379
 
4380
- #: classes/views/frm-settings/settings_cta.php:11
4381
- msgid "We know that you will truly love Formidable Forms."
 
4382
  msgstr ""
4383
 
4384
- #: classes/views/frm-settings/settings_cta.php:14
4385
- msgid "Pro Features"
4386
  msgstr ""
4387
 
4388
- #: classes/views/frm-settings/settings_cta.php:26
4389
- msgid "Get Formidable Forms Pro Today and Unlock all the Powerful Features »"
4390
  msgstr ""
4391
 
4392
- #: classes/views/shared/mb_adv_info.php:5
4393
- msgid "Conditionals"
4394
  msgstr ""
4395
 
4396
- #: classes/views/shared/mb_adv_info.php:7
4397
- msgid "Advanced"
4398
  msgstr ""
4399
 
4400
- #: classes/views/shared/mb_adv_info.php:9
4401
- msgid "HTML Tags"
4402
  msgstr ""
4403
 
4404
- #: classes/views/shared/mb_adv_info.php:15
4405
- #: classes/views/shared/mb_adv_info.php:90
4406
- msgid "IDs"
4407
  msgstr ""
4408
 
4409
- #: classes/views/shared/mb_adv_info.php:16
4410
- #: classes/views/shared/mb_adv_info.php:91
4411
- msgid "Keys"
4412
  msgstr ""
4413
 
4414
- #: classes/views/shared/mb_adv_info.php:18
4415
- #: classes/views/shared/mb_adv_info.php:93
4416
- msgid "Fields from your form"
4417
  msgstr ""
4418
 
4419
- #: classes/views/shared/mb_adv_info.php:56
4420
- msgid "Click a button below to insert extra values from form entries or your site settings."
4421
  msgstr ""
4422
 
4423
- #: classes/views/shared/mb_adv_info.php:59
4424
- msgid "Helpers"
4425
  msgstr ""
4426
 
4427
- #: classes/views/shared/mb_adv_info.php:103
4428
- msgid "Conditional text here"
4429
  msgstr ""
4430
 
4431
- #: classes/views/shared/mb_adv_info.php:114
4432
- msgid "Click a button below to insert sample logic into your view"
4433
  msgstr ""
4434
 
4435
- #: classes/views/shared/review.php:4
4436
- msgid "Congratulations%1$s! You have collected %2$d form submissions."
4437
  msgstr ""
4438
 
4439
- #: classes/views/shared/review.php:5
4440
- msgid "Are you enjoying Formidable Forms?"
4441
  msgstr ""
4442
 
4443
- #: classes/views/shared/review.php:9
4444
- msgid "Not Really"
4445
  msgstr ""
4446
 
4447
- #: classes/views/shared/review.php:12
4448
- msgid "Yes!"
4449
  msgstr ""
4450
 
4451
- #: classes/views/shared/review.php:16
4452
- msgid "Awesome! Could you do me a BIG favor and give Formidable Forms a review to help me grow my little business and boost our motivation?"
4453
  msgstr ""
4454
 
4455
- #: classes/views/shared/review.php:18
4456
- msgid "Founder and Lead Developer of Formidable Forms"
4457
  msgstr ""
4458
 
4459
- #: classes/views/shared/review.php:21
4460
- msgid "No thanks, maybe later"
4461
  msgstr ""
4462
 
4463
- #: classes/views/shared/review.php:24
4464
- msgid "Ok, you deserve it"
4465
  msgstr ""
4466
 
4467
- #: classes/views/shared/review.php:27
4468
- msgid "I already did"
 
4469
  msgstr ""
4470
 
4471
- #: classes/views/shared/review.php:31
4472
- msgid "Sorry to hear you aren't enjoying building with Formidable. We would love a chance to improve. Could you take a minute and let us know what we can do better?"
4473
  msgstr ""
4474
 
4475
- #: classes/views/shared/upgrade_overlay.php:11
4476
- msgid "%s are not installed"
 
4477
  msgstr ""
4478
 
4479
- #: classes/views/shared/upgrade_overlay.php:20
4480
- msgid "Please see the add-ons that are included with your plan."
4481
  msgstr ""
4482
 
4483
- #: classes/views/shared/upgrade_overlay.php:22
4484
- msgid "%s are not available on your plan. Please upgrade to PRO to unlock more awesome features."
4485
  msgstr ""
4486
 
4487
- #: classes/views/shared/upgrade_overlay.php:29
4488
- msgid "See My Add-Ons"
4489
  msgstr ""
4490
 
4491
- #: classes/views/styles/_buttons.php:4
4492
- msgid "Disable submit button styling"
4493
  msgstr ""
4494
 
4495
- #: classes/views/styles/_buttons.php:5
4496
- msgid "Note: If disabled, you may not see the change take effect until you make 2 more styling changes or click \"Update Options\"."
4497
  msgstr ""
4498
 
4499
- #: classes/views/styles/_buttons.php:15
4500
- msgid "Hover"
4501
  msgstr ""
4502
 
4503
- #: classes/views/styles/_buttons.php:18
4504
- msgid "Click"
4505
  msgstr ""
4506
 
4507
- #: classes/views/styles/_buttons.php:24
4508
- #: classes/views/styles/_check-box-radio-fields.php:40
4509
- #: classes/views/styles/_field-description.php:26
4510
- #: classes/views/styles/_field-labels.php:14
4511
- #: classes/views/styles/_field-sizes.php:2
4512
- #: classes/views/styles/_form-description.php:2
4513
- #: classes/views/styles/_form-messages.php:27
4514
- #: classes/views/styles/_form-messages.php:51
4515
- #: classes/views/styles/_form-title.php:2
4516
- msgid "Size"
4517
  msgstr ""
4518
 
4519
- #: classes/views/styles/_buttons.php:29
4520
- #: classes/views/styles/_field-labels.php:40
4521
- #: classes/views/styles/_field-sizes.php:12
4522
- msgid "Width"
4523
  msgstr ""
4524
 
4525
- #: classes/views/styles/_buttons.php:34
4526
- #: classes/views/styles/_field-sizes.php:7
4527
- msgid "Height"
4528
  msgstr ""
4529
 
4530
- #: classes/views/styles/_buttons.php:39
4531
- #: classes/views/styles/_check-box-radio-fields.php:30
4532
- #: classes/views/styles/_field-description.php:6
4533
- #: classes/views/styles/_field-labels.php:6
4534
- #: classes/views/styles/_field-labels.php:56
4535
- #: classes/views/styles/_field-sizes.php:38
4536
- msgid "Weight"
4537
  msgstr ""
4538
 
4539
- #: classes/views/styles/_buttons.php:48
4540
- #: classes/views/styles/_field-sizes.php:33
4541
- msgid "Corners"
4542
  msgstr ""
4543
 
4544
- #: classes/views/styles/_buttons.php:53
4545
- #: classes/views/styles/_buttons.php:97
4546
- #: classes/views/styles/_buttons.php:116
4547
- #: classes/views/styles/_field-colors.php:27
4548
- #: classes/views/styles/_field-colors.php:71
4549
- #: classes/views/styles/_field-colors.php:89
4550
- #: classes/views/styles/_field-colors.php:128
4551
- #: classes/views/styles/_form-messages.php:13
4552
- #: classes/views/styles/_form-messages.php:35
4553
- msgid "BG color"
4554
  msgstr ""
4555
 
4556
- #: classes/views/styles/_buttons.php:63
4557
- #: classes/views/styles/_buttons.php:107
4558
- #: classes/views/styles/_buttons.php:126
4559
- #: classes/views/styles/_field-colors.php:36
4560
- #: classes/views/styles/_field-colors.php:75
4561
- #: classes/views/styles/_field-colors.php:98
4562
- #: classes/views/styles/_field-colors.php:137
4563
- #: classes/views/styles/_form-messages.php:19
4564
- #: classes/views/styles/_form-messages.php:41
4565
- #: classes/views/styles/_general.php:33
4566
- msgid "Border"
4567
  msgstr ""
4568
 
4569
- #: classes/views/styles/_buttons.php:68
4570
- #: classes/views/styles/_field-colors.php:40
4571
- #: classes/views/styles/_field-colors.php:102
4572
- msgid "Thickness"
4573
  msgstr ""
4574
 
4575
- #: classes/views/styles/_buttons.php:73
4576
- msgid "Shadow"
4577
  msgstr ""
4578
 
4579
- #: classes/views/styles/_buttons.php:79
4580
- msgid "BG Image"
4581
  msgstr ""
4582
 
4583
- #: classes/views/styles/_buttons.php:84
4584
- #: classes/views/styles/_field-description.php:41
4585
- #: classes/views/styles/_field-sizes.php:28
4586
- msgid "Margin"
4587
  msgstr ""
4588
 
4589
- #: classes/views/styles/_buttons.php:89
4590
- #: classes/views/styles/_field-labels.php:45
4591
- #: classes/views/styles/_field-sizes.php:23
4592
- #: classes/views/styles/_general.php:43
4593
- msgid "Padding"
4594
  msgstr ""
4595
 
4596
- #: classes/views/styles/_check-box-radio-fields.php:2
4597
- msgid "Radio"
4598
  msgstr ""
4599
 
4600
- #: classes/views/styles/_check-box-radio-fields.php:5
4601
- #: classes/views/styles/_check-box-radio-fields.php:17
4602
- msgid "Multiple Rows"
4603
  msgstr ""
4604
 
4605
- #: classes/views/styles/_check-box-radio-fields.php:8
4606
- #: classes/views/styles/_check-box-radio-fields.php:20
4607
- msgid "Single Row"
4608
  msgstr ""
4609
 
4610
- #: classes/views/styles/_check-box-radio-fields.php:14
4611
- msgid "Check Box"
4612
  msgstr ""
4613
 
4614
- #: classes/views/styles/_check-box-radio-fields.php:26
4615
- #: classes/views/styles/_field-description.php:2
4616
- #: classes/views/styles/_field-labels.php:2
4617
- #: classes/views/styles/_field-labels.php:52
4618
- #: classes/views/styles/_form-description.php:7
4619
- #: classes/views/styles/_form-title.php:7
4620
- #: classes/views/styles/_general.php:38
4621
- msgid "Color"
4622
  msgstr ""
4623
 
4624
- #: classes/views/styles/_field-colors.php:15
4625
- #: classes/views/styles/_form-messages.php:7
4626
- #: deprecated/FrmEDD_SL_Plugin_Updater.php:315
4627
- msgid "Error"
4628
  msgstr ""
4629
 
4630
- #: classes/views/styles/_field-colors.php:47
4631
- #: classes/views/styles/_field-colors.php:109
4632
- msgid "solid"
4633
  msgstr ""
4634
 
4635
- #: classes/views/styles/_field-colors.php:50
4636
- #: classes/views/styles/_field-colors.php:112
4637
- msgid "dotted"
4638
  msgstr ""
4639
 
4640
- #: classes/views/styles/_field-colors.php:53
4641
- #: classes/views/styles/_field-colors.php:115
4642
- msgid "dashed"
4643
  msgstr ""
4644
 
4645
- #: classes/views/styles/_field-colors.php:56
4646
- #: classes/views/styles/_field-colors.php:118
4647
- msgid "double"
4648
  msgstr ""
4649
 
4650
- #: classes/views/styles/_field-colors.php:64
4651
- #: classes/views/styles/_field-colors.php:82
4652
- msgid "Remove box shadow"
4653
  msgstr ""
4654
 
4655
- #: classes/views/styles/_field-description.php:20
4656
- msgid "italic"
4657
  msgstr ""
4658
 
4659
- #: classes/views/styles/_field-description.php:30
4660
- #: classes/views/styles/_field-labels.php:28
4661
- msgid "Align"
4662
  msgstr ""
4663
 
4664
- #: classes/views/styles/_field-labels.php:19
4665
- msgid "Position"
4666
  msgstr ""
4667
 
4668
- #: classes/views/styles/_field-labels.php:50
4669
- msgid "Required Indicator"
4670
  msgstr ""
4671
 
4672
- #: classes/views/styles/_field-sizes.php:19
4673
- msgid "Automatic Width for drop-down fields"
4674
  msgstr ""
4675
 
4676
- #: classes/views/styles/_field-sizes.php:33
4677
- msgid "Formidable uses CSS3 border-radius for corner rounding, which is not currently supported by Internet Explorer."
4678
  msgstr ""
4679
 
4680
- #: classes/views/styles/_form-description.php:11
4681
- #: classes/views/styles/_form-title.php:11
4682
- msgid "Margin Top"
4683
  msgstr ""
4684
 
4685
- #: classes/views/styles/_form-description.php:15
4686
- #: classes/views/styles/_form-title.php:15
4687
- msgid "Margin Bottom"
4688
  msgstr ""
4689
 
4690
- #: classes/views/styles/_form-messages.php:4
4691
- msgid "Success"
4692
  msgstr ""
4693
 
4694
- #: classes/views/styles/_general.php:3
4695
- msgid "Center form on page"
4696
  msgstr ""
4697
 
4698
- #: classes/views/styles/_general.php:3
4699
- msgid "This will center your form on the page where it is published if the form width is less than the available width on the page."
4700
  msgstr ""
4701
 
4702
- #: classes/views/styles/_general.php:8
4703
- msgid "Alignment"
4704
  msgstr ""
4705
 
4706
- #: classes/views/styles/_general.php:17
4707
- msgid "center"
4708
  msgstr ""
4709
 
4710
- #: classes/views/styles/_general.php:23
4711
- msgid "Max Width"
4712
  msgstr ""
4713
 
4714
- #: classes/views/styles/_general.php:28
4715
- msgid "Background"
4716
  msgstr ""
4717
 
4718
- #: classes/views/styles/_general.php:48
4719
- msgid "Font Family"
4720
  msgstr ""
4721
 
4722
- #: classes/views/styles/_general.php:53
4723
- msgid "Direction"
4724
  msgstr ""
4725
 
4726
- #: classes/views/styles/_general.php:56
4727
- msgid "Left to Right"
4728
  msgstr ""
4729
 
4730
- #: classes/views/styles/_general.php:59
4731
- msgid "Right to Left"
4732
  msgstr ""
4733
 
4734
- #: classes/views/styles/_general.php:68
4735
- msgid "Override theme styling"
4736
  msgstr ""
4737
 
4738
- #: classes/views/styles/_general.php:68
4739
- msgid "This will add !important to many of the lines in the Formidable styling to make sure it will be used."
4740
  msgstr ""
4741
 
4742
- #: classes/views/styles/_sample_form.php:4
4743
- #: classes/views/styles/_sample_form.php:9
4744
- msgid "SAMPLE:"
4745
  msgstr ""
4746
 
4747
- #: classes/views/styles/_sample_form.php:18
4748
- msgid "This is an example form description for styling purposes."
4749
  msgstr ""
4750
 
4751
- #: classes/views/styles/_sample_form.php:22
4752
- msgid "Text field"
4753
  msgstr ""
4754
 
4755
- #: classes/views/styles/_sample_form.php:23
4756
- #: classes/views/styles/_sample_form.php:38
4757
- msgid "This is sample text"
4758
  msgstr ""
4759
 
4760
- #: classes/views/styles/_sample_form.php:24
4761
- msgid "A field with a description"
4762
  msgstr ""
4763
 
4764
- #: classes/views/styles/_sample_form.php:28
4765
- msgid "Drop-down Select"
4766
  msgstr ""
4767
 
4768
- #: classes/views/styles/_sample_form.php:37
4769
- msgid "Text field with error"
4770
  msgstr ""
4771
 
4772
- #: classes/views/styles/_sample_form.php:43
4773
- msgid "Text field in active state"
 
4774
  msgstr ""
4775
 
4776
- #: classes/views/styles/_sample_form.php:44
4777
- msgid "Active state will be seen when the field is clicked"
4778
  msgstr ""
4779
 
4780
- #: classes/views/styles/_sample_form.php:48
4781
- msgid "Read-only field"
4782
  msgstr ""
4783
 
4784
- #: classes/views/styles/_sample_form.php:49
4785
- msgid "This field is not editable"
4786
  msgstr ""
4787
 
4788
- #: classes/views/styles/_sample_form.php:53
4789
- msgid "Text Area"
4790
  msgstr ""
4791
 
4792
- #: classes/views/styles/_sample_form.php:55
4793
- msgid "Another field with a description"
4794
  msgstr ""
4795
 
4796
- #: classes/views/styles/_sample_form.php:59
4797
- msgid "Radio Buttons"
4798
  msgstr ""
4799
 
4800
- #: classes/views/styles/_sample_form.php:67
4801
- msgid "Check Boxes"
4802
  msgstr ""
4803
 
4804
- #: classes/views/styles/custom_css.php:5
4805
- msgid "You can add custom css here or in your theme style.css"
4806
  msgstr ""
4807
 
4808
- #: classes/views/styles/custom_css.php:39
4809
- #: classes/views/styles/manage.php:65
4810
- msgid "Save Changes"
4811
  msgstr ""
4812
 
4813
- #: classes/views/styles/manage.php:5
4814
- msgid "Easily change which template your forms are using by making changes below."
4815
  msgstr ""
4816
 
4817
- #: classes/views/styles/manage.php:19
4818
- msgid "Assigned Style Templates"
4819
  msgstr ""
4820
 
4821
- #: classes/views/styles/manage.php:47
4822
- msgid "Styling disabled"
4823
  msgstr ""
4824
 
4825
- #: classes/views/styles/manage.php:58
4826
- msgid "No Forms Found"
4827
  msgstr ""
4828
 
4829
- #: classes/views/styles/show.php:33
4830
- msgid "Style Name"
4831
  msgstr ""
4832
 
4833
- #: classes/views/styles/show.php:34
4834
- msgid "Enter style name here"
4835
  msgstr ""
4836
 
4837
- #: classes/views/styles/show.php:46
4838
- msgid "Make default style"
4839
  msgstr ""
4840
 
4841
- #: classes/views/styles/show.php:50
4842
- #: classes/views/styles/show.php:75
4843
- msgid "Save Style"
4844
  msgstr ""
4845
 
4846
- #: classes/views/styles/show.php:65
4847
- msgid "Delete Style"
 
4848
  msgstr ""
4849
 
4850
- #: classes/views/styles/show.php:74
4851
- msgid "Reset to Default"
4852
  msgstr ""
4853
 
4854
- #: classes/views/xml/import_form.php:13
4855
- msgid "Upload your Formidable XML file to import forms into this site. If your imported form key and creation date match a form on your site, that form will be updated."
4856
  msgstr ""
4857
 
4858
- #: classes/views/xml/import_form.php:20
4859
- msgid "Choose a Formidable XML file"
4860
  msgstr ""
4861
 
4862
- #: classes/views/xml/import_form.php:21
4863
- msgid "Maximum size: %s"
4864
  msgstr ""
4865
 
4866
- #: classes/views/xml/import_form.php:29
4867
- msgid "Upload file and import"
4868
  msgstr ""
4869
 
4870
- #: classes/views/xml/import_form.php:35
4871
- msgid "Export"
4872
  msgstr ""
4873
 
4874
- #: classes/views/xml/import_form.php:37
4875
- msgid "Export your forms, entries, views, and styles so you can easily import them on another site."
4876
  msgstr ""
4877
 
4878
- #: classes/views/xml/import_form.php:45
4879
- msgid "Export Format"
 
4880
  msgstr ""
4881
 
4882
- #: classes/views/xml/import_form.php:58
4883
- msgid "If your CSV special characters are not working correctly, try a different formatting option."
4884
  msgstr ""
4885
 
4886
- #: classes/views/xml/import_form.php:67
4887
- msgid "Column separation"
4888
  msgstr ""
4889
 
4890
- #: classes/views/xml/import_form.php:75
4891
- msgid "Data to Export"
4892
  msgstr ""
4893
 
4894
- #: classes/views/xml/import_form.php:77
4895
- msgid "Include the following in the export file"
 
4896
  msgstr ""
4897
 
4898
- #: classes/views/xml/import_form.php:89
4899
- msgid "Select Form(s)"
4900
  msgstr ""
4901
 
4902
- #: classes/views/xml/import_form.php:99
4903
- msgid "(template)"
4904
  msgstr ""
4905
 
4906
- #: classes/views/xml/import_form.php:101
4907
- msgid "(child)"
4908
  msgstr ""
4909
 
4910
- #: classes/views/xml/import_form.php:107
4911
- msgid "Hold down the CTRL/Command button to select multiple forms"
4912
  msgstr ""
4913
 
4914
- #: classes/views/xml/import_form.php:112
4915
- msgid "Export Selection"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4916
  msgstr ""
4917
 
4918
  #: classes/widgets/FrmShowForm.php:6
2
  # This file is distributed under the same license as the Formidable Forms plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Formidable Forms 3.06.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-02-22T01:30:29+01:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.1.0\n"
15
  "X-Domain: formidable\n"
60
  msgstr ""
61
 
62
  #: js/src/form/inspector.js:62
 
63
  #: classes/views/frm-forms/shortcode_opts.php:12
64
+ #: classes/views/frm-form-actions/_email_settings.php:73
65
  #: languages/formidable-js-strings.php:32
66
  msgid "Options"
67
  msgstr ""
103
  msgid "Strategy11"
104
  msgstr ""
105
 
106
+ #: classes/models/FrmMigrate.php:506
107
+ msgid "Sending"
108
  msgstr ""
109
 
110
+ #. translators: %1$s: Plugin name, %2$s: Start link HTML, %3$s: end link HTML
111
+ #: classes/models/FrmAddon.php:265
112
+ msgid "Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s."
113
  msgstr ""
114
 
115
+ #: classes/models/FrmAddon.php:454
116
+ msgid "Oops! You forgot to enter your license number."
117
  msgstr ""
118
 
119
+ #: classes/models/FrmAddon.php:530
120
+ msgid "Your license has been activated. Enjoy!"
121
  msgstr ""
122
 
123
+ #: classes/models/FrmAddon.php:531
124
+ #: classes/models/FrmAddon.php:536
125
+ msgid "That license key is invalid"
 
126
  msgstr ""
127
 
128
+ #: classes/models/FrmAddon.php:532
129
+ msgid "That license is expired"
130
  msgstr ""
131
 
132
+ #: classes/models/FrmAddon.php:533
133
+ msgid "That license has been refunded"
134
  msgstr ""
135
 
136
+ #: classes/models/FrmAddon.php:534
137
+ msgid "That license has been used on too many sites"
138
  msgstr ""
139
 
140
+ #: classes/models/FrmAddon.php:535
141
+ msgid "Oops! That is the wrong license key for this plugin."
 
 
142
  msgstr ""
143
 
144
+ #: classes/models/FrmAddon.php:558
145
+ msgid "That license was removed successfully"
 
 
 
 
 
146
  msgstr ""
147
 
148
+ #: classes/models/FrmAddon.php:560
149
+ msgid "There was an error deactivating your license."
150
  msgstr ""
151
 
152
+ #: classes/models/FrmAddon.php:593
153
+ msgid "Your License Key was invalid"
154
  msgstr ""
155
 
156
+ #. translators: %1$s: Start link HTML, %2$s: End link HTML
157
+ #: classes/models/FrmAddon.php:597
158
+ msgid "You had an error communicating with the Formidable API. %1$sClick here%2$s for more information."
159
  msgstr ""
160
 
161
+ #: classes/models/FrmAddon.php:600
162
+ msgid "You had an HTTP error connecting to the Formidable API"
163
  msgstr ""
164
 
165
+ #. translators: %1$s: Error code, %2$s: Error message
166
+ #: classes/models/FrmAddon.php:611
167
+ msgid "There was a %1$s error: %2$s"
168
  msgstr ""
169
 
170
+ #. translators: %1$s: Form name, %2$s: Site name
171
+ #: classes/models/FrmEmail.php:262
172
+ msgid "%1$s Form submitted on %2$s"
173
  msgstr ""
174
 
175
+ #: classes/models/FrmEmail.php:302
176
+ #: classes/views/frm-entries/sidebar-shared.php:72
177
+ msgid "User Information"
178
  msgstr ""
179
 
180
+ #: classes/models/FrmEmail.php:304
181
+ #: classes/models/FrmEntryValues.php:207
182
+ msgid "User-Agent (Browser/OS)"
183
  msgstr ""
184
 
185
+ #: classes/models/FrmEmail.php:305
186
+ #: classes/models/FrmEntryValues.php:212
187
+ #: classes/views/frm-entries/sidebar-shared.php:90
188
+ msgid "Referrer"
189
  msgstr ""
190
 
191
+ #: classes/models/FrmEmail.php:321
192
+ #: classes/models/FrmEntryValues.php:202
193
+ #: classes/views/frm-entries/sidebar-shared.php:76
194
+ msgid "IP Address"
 
195
  msgstr ""
196
 
197
+ #: classes/models/FrmFieldValue.php:145
198
+ msgid "The display value has not been prepared. Please use the prepare_display_value() method before calling get_displayed_value()."
 
 
199
  msgstr ""
200
 
201
+ #: classes/models/FrmPersonalData.php:23
202
+ msgid "Formidable Forms Exporter"
203
  msgstr ""
204
 
205
+ #: classes/models/FrmPersonalData.php:38
206
+ msgid "Formidable Forms entries"
 
207
  msgstr ""
208
 
209
+ #: classes/models/FrmPersonalData.php:61
210
+ msgid "Form Submissions"
211
  msgstr ""
212
 
213
+ #: classes/models/FrmField.php:14
214
+ #: classes/views/styles/_form-messages.php:23
215
+ #: classes/views/styles/_form-messages.php:46
216
+ #: classes/views/styles/_buttons.php:58
217
+ #: classes/views/styles/_buttons.php:102
218
+ #: classes/views/styles/_buttons.php:121
219
+ #: classes/views/styles/_field-colors.php:31
220
+ #: classes/views/styles/_field-colors.php:93
221
+ #: classes/views/styles/_field-colors.php:132
222
+ msgid "Text"
223
  msgstr ""
224
 
225
+ #: classes/models/FrmField.php:18
226
+ msgid "Paragraph"
227
  msgstr ""
228
 
229
+ #: classes/models/FrmField.php:22
230
+ msgid "Checkboxes"
231
  msgstr ""
232
 
233
+ #: classes/models/FrmField.php:26
234
+ msgid "Radio Button"
235
  msgstr ""
236
 
237
+ #: classes/models/FrmField.php:30
238
+ msgid "Dropdown"
239
  msgstr ""
240
 
241
+ #: classes/models/FrmField.php:34
242
+ #: classes/controllers/FrmFormsController.php:1001
243
+ msgid "Email"
244
  msgstr ""
245
 
246
+ #: classes/models/FrmField.php:38
247
+ msgid "Website/URL"
248
  msgstr ""
249
 
250
+ #: classes/models/FrmField.php:42
251
+ msgid "Number"
252
  msgstr ""
253
 
254
+ #: classes/models/FrmField.php:46
255
+ msgid "Phone"
256
  msgstr ""
257
 
258
+ #: classes/models/FrmField.php:50
259
+ msgid "HTML"
 
260
  msgstr ""
261
 
262
+ #: classes/models/FrmField.php:54
263
+ msgid "Hidden Field"
 
 
264
  msgstr ""
265
 
266
+ #: classes/models/FrmField.php:58
267
+ #: classes/controllers/FrmFormsController.php:996
268
+ msgid "User ID"
 
 
269
  msgstr ""
270
 
271
+ #: classes/models/FrmField.php:62
272
+ #: classes/views/frm-settings/form.php:99
273
+ msgid "reCAPTCHA"
274
  msgstr ""
275
 
276
+ #: classes/models/FrmField.php:73
277
+ msgid "File Upload"
 
278
  msgstr ""
279
 
280
+ #: classes/models/FrmField.php:77
281
+ msgid "Rich Text"
 
282
  msgstr ""
283
 
284
+ #: classes/models/FrmField.php:81
285
+ #: classes/controllers/FrmFormsController.php:737
286
+ msgid "Date"
287
  msgstr ""
288
 
289
+ #: classes/models/FrmField.php:85
290
+ msgid "Time"
291
  msgstr ""
292
 
293
+ #: classes/models/FrmField.php:89
294
+ msgid "Scale"
295
  msgstr ""
296
 
297
+ #: classes/models/FrmField.php:93
298
+ msgid "Star Rating"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
299
  msgstr ""
300
 
301
+ #: classes/models/FrmField.php:97
302
+ msgid "Slider"
303
  msgstr ""
304
 
305
+ #: classes/models/FrmField.php:101
306
+ msgid "Toggle"
 
307
  msgstr ""
308
 
309
+ #: classes/models/FrmField.php:105
310
+ msgid "Dynamic"
311
  msgstr ""
312
 
313
+ #: classes/models/FrmField.php:109
314
+ msgid "Lookup"
315
  msgstr ""
316
 
317
+ #: classes/models/FrmField.php:113
318
+ msgid "Repeater"
319
  msgstr ""
320
 
321
+ #: classes/models/FrmField.php:117
322
+ msgid "End Section"
 
323
  msgstr ""
324
 
325
+ #: classes/models/FrmField.php:121
326
+ msgid "Section"
327
  msgstr ""
328
 
329
+ #: classes/models/FrmField.php:125
330
+ msgid "Page Break"
 
 
331
  msgstr ""
332
 
333
+ #: classes/models/FrmField.php:129
334
+ msgid "Embed Form"
 
 
 
335
  msgstr ""
336
 
337
+ #: classes/models/FrmField.php:133
338
+ msgid "Password"
339
  msgstr ""
340
 
341
+ #: classes/models/FrmField.php:137
342
+ msgid "Tags"
 
343
  msgstr ""
344
 
345
+ #: classes/models/FrmField.php:141
346
+ msgid "Credit Card"
347
  msgstr ""
348
 
349
+ #: classes/models/FrmField.php:145
350
+ msgid "Address"
351
  msgstr ""
352
 
353
+ #: classes/models/FrmDb.php:414
354
+ msgid "Use the query in an array format so it can be properly prepared."
355
  msgstr ""
356
 
357
+ #: classes/models/FrmEntryValidate.php:9
358
+ msgid "There was a problem with your submission. Please try again."
359
  msgstr ""
360
 
361
+ #: classes/models/FrmEntryValidate.php:14
362
+ #: classes/models/FrmSettings.php:103
363
+ #: classes/controllers/FrmFormActionsController.php:214
364
+ msgid "You do not have permission to do that"
365
  msgstr ""
366
 
367
+ #: classes/models/FrmEntryValidate.php:223
368
+ #: classes/models/FrmEntryValidate.php:232
369
+ msgid "Your entry appears to be spam!"
370
  msgstr ""
371
 
372
+ #: classes/models/FrmEntryValidate.php:227
373
+ msgid "Your entry appears to be blacklist spam!"
374
  msgstr ""
375
 
376
+ #: classes/models/FrmSettings.php:96
377
+ msgid "Your responses were successfully submitted. Thank you!"
378
  msgstr ""
379
 
380
+ #: classes/models/FrmSettings.php:97
381
+ msgid "This field cannot be blank."
382
  msgstr ""
383
 
384
+ #: classes/models/FrmSettings.php:98
385
+ msgid "This value must be unique."
386
  msgstr ""
387
 
388
+ #: classes/models/FrmSettings.php:99
389
+ msgid "There was a problem with your submission. Errors are marked below."
390
  msgstr ""
391
 
392
+ #: classes/models/FrmSettings.php:100
393
+ msgid "We're sorry. It looks like you've already submitted that."
 
394
  msgstr ""
395
 
396
+ #: classes/models/FrmSettings.php:101
397
+ #: classes/views/styles/_sample_form.php:77
398
+ msgid "Submit"
399
  msgstr ""
400
 
401
+ #: classes/models/FrmSettings.php:102
402
+ msgid "You do not have permission to view this form."
403
  msgstr ""
404
 
405
+ #: classes/models/FrmSettings.php:170
406
+ msgid "The reCAPTCHA was not entered correctly"
407
  msgstr ""
408
 
409
+ #: classes/models/fields/FrmFieldType.php:348
410
+ #: classes/helpers/FrmFieldsHelper.php:278
411
+ msgid "This field is invalid"
412
  msgstr ""
413
 
414
+ #: classes/models/fields/FrmFieldType.php:350
415
+ #: classes/helpers/FrmFieldsHelper.php:163
416
+ #: classes/helpers/FrmFieldsHelper.php:279
417
+ #: classes/helpers/FrmXMLHelper.php:954
418
+ msgid "%s is invalid"
419
  msgstr ""
420
 
421
+ #: classes/models/fields/FrmFieldType.php:357
422
+ msgid "Untitled"
423
  msgstr ""
424
 
425
+ #: classes/models/fields/FrmFieldRadio.php:53
426
+ #: classes/models/fields/FrmFieldSelect.php:35
427
+ #: classes/models/fields/FrmFieldCheckbox.php:46
428
+ #: classes/views/styles/_sample_form.php:32
429
+ #: classes/views/styles/_sample_form.php:61
430
+ #: classes/views/styles/_sample_form.php:69
431
+ msgid "Option 1"
432
  msgstr ""
433
 
434
+ #: classes/models/fields/FrmFieldRadio.php:54
435
+ #: classes/models/fields/FrmFieldCheckbox.php:47
436
+ #: classes/views/styles/_sample_form.php:62
437
+ #: classes/views/styles/_sample_form.php:70
438
+ msgid "Option 2"
439
  msgstr ""
440
 
441
+ #: classes/models/fields/FrmFieldUrl.php:34
442
+ msgid "Website"
443
  msgstr ""
444
 
445
+ #: classes/models/fields/FrmFieldNumber.php:65
446
+ msgid "Please select a higher number"
447
  msgstr ""
448
 
449
+ #: classes/models/fields/FrmFieldNumber.php:67
450
+ msgid "Please select a lower number"
451
  msgstr ""
452
 
453
+ #: classes/models/fields/FrmFieldCaptcha.php:147
454
+ msgid "The captcha is missing from this form"
455
  msgstr ""
456
 
457
+ #: classes/models/fields/FrmFieldCaptcha.php:163
458
+ msgid "There was a problem verifying your recaptcha"
459
  msgstr ""
460
 
461
+ #: classes/models/FrmFormAction.php:37
462
+ msgid "There are no options for this action."
463
  msgstr ""
464
 
465
+ #: classes/models/FrmFormAction.php:740
466
+ #: classes/views/frm-forms/_publish_box.php:12
467
+ msgid "Save Draft"
468
  msgstr ""
469
 
470
+ #: classes/models/FrmFormAction.php:741
471
+ #: classes/views/frm-forms/template-name-overlay.php:25
472
+ #: classes/views/frm-forms/add_field_links.php:7
473
+ #: classes/helpers/FrmFormsHelper.php:129
474
+ msgid "Create"
475
  msgstr ""
476
 
477
+ #: classes/models/FrmFormAction.php:742
478
+ #: classes/views/frm-forms/_publish_box.php:16
479
+ #: classes/views/frm-forms/_publish_box.php:20
480
+ #: classes/views/frm-forms/settings.php:368
481
+ #: classes/views/frm-forms/edit.php:25
482
+ #: classes/views/frm-forms/add_field_links.php:7
483
+ #: classes/helpers/FrmFormsHelper.php:129
484
+ msgid "Update"
485
  msgstr ""
486
 
487
+ #: classes/models/FrmFormAction.php:743
488
+ #: classes/views/frm-forms/list-templates.php:129
489
+ #: classes/views/frm-form-actions/form_action.php:19
490
+ #: classes/helpers/FrmEntriesListHelper.php:257
491
+ #: classes/helpers/FrmFormsListHelper.php:121
492
+ #: classes/helpers/FrmEntriesHelper.php:541
493
+ #: classes/helpers/FrmFormsHelper.php:859
494
+ msgid "Delete"
495
  msgstr ""
496
 
497
+ #: classes/models/FrmFormAction.php:744
498
+ #: classes/views/xml/import_form.php:12
499
+ msgid "Import"
500
  msgstr ""
501
 
502
+ #: classes/models/FrmFormMigrator.php:137
503
+ msgid "No form fields found."
 
 
 
 
 
 
 
 
 
504
  msgstr ""
505
 
506
+ #: classes/models/FrmFormMigrator.php:229
507
+ msgid "There was an error while creating a new form."
 
508
  msgstr ""
509
 
510
+ #: classes/models/FrmFormMigrator.php:361
511
+ msgid "Default Form"
512
  msgstr ""
513
 
514
+ #. translators: %1$s - field type
515
+ #: classes/models/FrmFormMigrator.php:389
516
+ #: classes/helpers/FrmXMLHelper.php:866
517
+ msgid "%1$s Field"
518
+ msgid_plural "%1$s Fields"
519
+ msgstr[0] ""
520
 
521
+ #: classes/models/FrmStyle.php:23
522
+ msgid "New Style"
 
523
  msgstr ""
524
 
525
+ #: classes/models/FrmStyle.php:149
526
+ msgid "WARNING: Any changes made to this file will be lost when your Formidable settings are updated"
 
527
  msgstr ""
528
 
529
+ #: classes/models/FrmStyle.php:228
530
+ msgid "Formidable Style"
 
531
  msgstr ""
532
 
533
+ #: classes/models/FrmStyle.php:463
534
+ #: classes/views/styles/_field-description.php:17
535
+ msgid "normal"
536
  msgstr ""
537
 
538
+ #: classes/models/FrmStyle.php:466
539
+ msgid "bold"
540
  msgstr ""
541
 
542
+ #: classes/controllers/FrmAddonsController.php:10
543
+ msgid "Add-Ons"
544
  msgstr ""
545
 
546
+ #: classes/controllers/FrmAddonsController.php:13
547
+ #: classes/views/shared/upgrade_overlay.php:33
548
+ msgid "Upgrade to Pro"
549
  msgstr ""
550
 
551
+ #: classes/controllers/FrmAddonsController.php:37
552
+ msgid "There are no plugins on your site that require a license"
553
  msgstr ""
554
 
555
+ #: classes/controllers/FrmAddonsController.php:397
556
+ msgid "Installed"
557
  msgstr ""
558
 
559
+ #: classes/controllers/FrmAddonsController.php:402
560
+ #: classes/views/styles/_field-colors.php:10
561
+ #: classes/helpers/FrmAppHelper.php:1785
562
+ msgid "Active"
563
  msgstr ""
564
 
565
+ #: classes/controllers/FrmAddonsController.php:407
566
+ msgid "Not Installed"
567
  msgstr ""
568
 
569
+ #: classes/controllers/FrmAddonsController.php:491
570
+ msgid "Sorry, you're site requires FTP authentication. Please install plugins manaully."
571
  msgstr ""
572
 
573
+ #: classes/controllers/FrmAppController.php:97
574
+ msgid "Build"
575
  msgstr ""
576
 
577
+ #: classes/controllers/FrmAppController.php:104
578
+ #: classes/views/frm-forms/settings.php:10
579
+ #: classes/helpers/FrmFormsListHelper.php:282
580
+ msgid "Settings"
581
  msgstr ""
582
 
583
+ #: classes/controllers/FrmAppController.php:111
584
+ #: classes/controllers/FrmXMLController.php:131
585
+ #: classes/controllers/FrmFormsController.php:732
586
+ #: classes/controllers/FrmEntriesController.php:8
587
+ #: classes/controllers/FrmEntriesController.php:126
588
+ #: classes/views/frm-entries/list.php:5
589
+ msgid "Entries"
590
  msgstr ""
591
 
592
+ #: classes/controllers/FrmAppController.php:127
593
+ msgid "Build a Form"
594
  msgstr ""
595
 
596
+ #: classes/controllers/FrmAppController.php:169
597
+ 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."
598
  msgstr ""
599
 
600
+ #: classes/controllers/FrmAppController.php:534
601
+ msgid "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress.org%4$s. Thank you heaps!"
602
  msgstr ""
603
 
604
+ #: classes/controllers/FrmXMLController.php:6
605
+ #: classes/views/xml/import_form.php:5
606
+ msgid "Import/Export"
 
607
  msgstr ""
608
 
609
+ #: classes/controllers/FrmXMLController.php:49
610
+ msgid "There was an error reading the form template"
 
 
 
 
611
  msgstr ""
612
 
613
+ #: classes/controllers/FrmXMLController.php:69
614
+ msgid "There was an error importing form"
 
 
615
  msgstr ""
616
 
617
+ #: classes/controllers/FrmXMLController.php:130
618
+ #: classes/controllers/FrmFormsController.php:6
619
+ #: classes/controllers/FrmFormsController.php:742
620
+ #: classes/views/frm-forms/list.php:5
621
+ msgid "Forms"
622
+ msgstr ""
623
+
624
+ #: classes/controllers/FrmXMLController.php:164
625
+ msgid "Oops, you didn't select a file."
626
+ msgstr ""
627
+
628
+ #: classes/controllers/FrmXMLController.php:173
629
+ msgid "The file does not exist, please try again."
630
+ msgstr ""
631
+
632
+ #: classes/controllers/FrmXMLController.php:198
633
+ msgid "XML import is not enabled on your server with the libxml_disable_entity_loader function."
634
+ msgstr ""
635
+
636
+ #: classes/controllers/FrmXMLController.php:402
637
+ msgid "Please select a form"
638
+ msgstr ""
639
+
640
+ #: classes/controllers/FrmXMLController.php:459
641
+ msgid "There are no entries for that form."
642
+ msgstr ""
643
+
644
+ #: classes/controllers/FrmSettingsController.php:9
645
+ #: classes/views/frm-settings/form.php:2
646
+ msgid "Global Settings"
647
+ msgstr ""
648
+
649
+ #: classes/controllers/FrmSettingsController.php:50
650
+ #: classes/views/addons/settings.php:2
651
+ msgid "Plugin Licenses"
652
+ msgstr ""
653
+
654
+ #: classes/controllers/FrmSettingsController.php:100
655
+ #: classes/controllers/FrmSettingsController.php:103
656
+ msgid "Settings Saved"
657
+ msgstr ""
658
+
659
+ #: classes/controllers/FrmSettingsController.php:136
660
+ msgid "Extra form features like file uploads, pagination, etc"
661
+ msgstr ""
662
+
663
+ #: classes/controllers/FrmSettingsController.php:137
664
+ msgid "Repeaters & cascading fields for advanced forms"
665
+ msgstr ""
666
+
667
+ #: classes/controllers/FrmSettingsController.php:138
668
+ msgid "Flexibly view, search, edit, and delete entries anywhere"
669
+ msgstr ""
670
+
671
+ #: classes/controllers/FrmSettingsController.php:139
672
+ msgid "Display entries with virtually limitless Formidable views"
673
+ msgstr ""
674
+
675
+ #: classes/controllers/FrmSettingsController.php:140
676
+ msgid "Create surveys & polls"
677
+ msgstr ""
678
+
679
+ #: classes/controllers/FrmSettingsController.php:141
680
+ msgid "WordPress user registration and login forms"
681
+ msgstr ""
682
+
683
+ #: classes/controllers/FrmSettingsController.php:142
684
+ msgid "Create Stripe, PayPal or Authorize.net payment forms"
685
+ msgstr ""
686
+
687
+ #: classes/controllers/FrmSettingsController.php:143
688
+ msgid "Powerful conditional logic for smart forms"
689
+ msgstr ""
690
+
691
+ #: classes/controllers/FrmSettingsController.php:144
692
+ msgid "Integrations with 1000+ marketing & payment services"
693
+ msgstr ""
694
+
695
+ #: classes/controllers/FrmSettingsController.php:145
696
+ msgid "Collect digital signatures"
697
+ msgstr ""
698
+
699
+ #: classes/controllers/FrmSettingsController.php:146
700
+ msgid "Accept user-submitted content with Post submissions"
701
+ msgstr ""
702
+
703
+ #: classes/controllers/FrmSettingsController.php:147
704
+ msgid "Email routing"
705
+ msgstr ""
706
+
707
+ #: classes/controllers/FrmSettingsController.php:148
708
+ msgid "Create calculator forms"
709
+ msgstr ""
710
+
711
+ #: classes/controllers/FrmSettingsController.php:149
712
+ msgid "Save draft entries and return later"
713
+ msgstr ""
714
+
715
+ #: classes/controllers/FrmSettingsController.php:150
716
+ msgid "Analyze form data with graphs & stats"
717
+ msgstr ""
718
+
719
+ #: classes/controllers/FrmStylesController.php:17
720
+ #: classes/controllers/FrmStylesController.php:35
721
+ #: classes/controllers/FrmStylesController.php:47
722
+ msgid "Styles"
723
+ msgstr ""
724
+
725
+ #: classes/controllers/FrmStylesController.php:36
726
+ #: classes/controllers/FrmStylesController.php:37
727
+ #: classes/views/styles/_field-description.php:14
728
+ #: classes/views/styles/_field-colors.php:44
729
+ #: classes/views/styles/_field-colors.php:106
730
+ msgid "Style"
731
+ msgstr ""
732
+
733
+ #: classes/controllers/FrmStylesController.php:38
734
+ #: classes/views/frm-entries/sidebar-shared.php:21
735
+ #: classes/helpers/FrmFormsListHelper.php:281
736
+ msgid "Edit"
737
+ msgstr ""
738
+
739
+ #: classes/controllers/FrmStylesController.php:39
740
+ msgid "Create a New Style"
741
  msgstr ""
742
 
743
  #: classes/controllers/FrmStylesController.php:40
759
  msgid "General"
760
  msgstr ""
761
 
762
+ #: classes/controllers/FrmStylesController.php:376
763
+ #: classes/controllers/FrmFormsController.php:731
764
+ #: classes/views/styles/_sample_form.php:17
765
+ #: classes/views/styles/manage.php:16
766
+ msgid "Form Title"
767
+ msgstr ""
768
+
769
  #: classes/controllers/FrmStylesController.php:377
 
770
  #: classes/views/frm-forms/settings.php:248
771
  #: classes/views/frm-forms/template-name-overlay.php:16
772
  #: classes/views/frm-forms/template-name-overlay.php:17
773
+ #: classes/views/frm-forms/mb_html_tab.php:49
774
  msgid "Form Description"
775
  msgstr ""
776
 
809
  msgid "Click to toggle"
810
  msgstr ""
811
 
812
+ #: classes/controllers/FrmFormsController.php:187
813
+ msgid "Settings Successfully Updated"
 
814
  msgstr ""
815
 
816
+ #: classes/controllers/FrmFormsController.php:213
817
+ #: classes/controllers/FrmFormsController.php:865
818
+ msgid "Form was Successfully Updated"
819
  msgstr ""
820
 
821
+ #. translators: %1$s: Start link HTML, %2$s: end link HTML
822
+ #: classes/controllers/FrmFormsController.php:218
823
+ msgid "However, your form is very long and may be %1$sreaching server limits%2$s."
824
  msgstr ""
825
 
826
+ #: classes/controllers/FrmFormsController.php:271
827
+ #: deprecated/FrmDeprecated.php:342
828
+ msgid "Form template was Successfully Created"
829
  msgstr ""
830
 
831
+ #: classes/controllers/FrmFormsController.php:271
832
+ msgid "Form was Successfully Copied"
833
  msgstr ""
834
 
835
+ #: classes/controllers/FrmFormsController.php:275
836
+ msgid "There was a problem creating the new template."
837
  msgstr ""
838
 
839
+ #: classes/controllers/FrmFormsController.php:382
840
+ msgid "Form Preview"
841
  msgstr ""
842
 
843
+ #: classes/controllers/FrmFormsController.php:425
844
+ #: classes/controllers/FrmFormsController.php:484
845
+ msgid "%1$s form restored from the Trash."
846
+ msgid_plural "%1$s forms restored from the Trash."
847
+ msgstr[0] ""
848
 
849
+ #: classes/controllers/FrmFormsController.php:485
850
+ #: classes/controllers/FrmFormsController.php:509
851
+ msgid "%1$s form moved to the Trash. %2$sUndo%3$s"
852
+ msgid_plural "%1$s forms moved to the Trash. %2$sUndo%3$s"
853
+ msgstr[0] ""
854
 
855
+ #: classes/controllers/FrmFormsController.php:531
856
+ #: classes/controllers/FrmFormsController.php:547
857
+ #: classes/controllers/FrmFormsController.php:561
858
+ msgid "%1$s form permanently deleted."
859
+ msgid_plural "%1$s forms permanently deleted."
860
+ msgstr[0] ""
861
 
862
+ #: classes/controllers/FrmFormsController.php:581
863
+ msgid "There was an error creating a template."
864
  msgstr ""
865
 
866
+ #: classes/controllers/FrmFormsController.php:616
867
+ msgid "Add forms and content"
868
  msgstr ""
869
 
870
+ #: classes/controllers/FrmFormsController.php:632
871
+ #: classes/controllers/FrmEntriesController.php:110
872
+ #: classes/widgets/FrmShowForm.php:53
873
+ msgid "Form"
874
  msgstr ""
875
 
876
+ #: classes/controllers/FrmFormsController.php:633
877
+ #: classes/views/frm-forms/insert_form_popup.php:24
878
+ msgid "Insert a Form"
879
  msgstr ""
880
 
881
+ #: classes/controllers/FrmFormsController.php:663
882
+ msgid "Display form title"
883
  msgstr ""
884
 
885
+ #: classes/controllers/FrmFormsController.php:667
886
+ msgid "Display form description"
887
  msgstr ""
888
 
889
+ #: classes/controllers/FrmFormsController.php:671
890
+ msgid "Minimize form HTML"
891
  msgstr ""
892
 
893
+ #: classes/controllers/FrmFormsController.php:727
894
+ #: classes/views/frm-forms/template-name-overlay.php:9
895
+ msgid "Template Name"
896
  msgstr ""
897
 
898
+ #: classes/controllers/FrmFormsController.php:728
899
+ msgid "Type"
900
  msgstr ""
901
 
902
+ #: classes/controllers/FrmFormsController.php:729
903
+ #: classes/controllers/FrmFormsController.php:733
904
+ #: classes/helpers/FrmCSVExportHelper.php:151
905
+ msgid "Key"
906
  msgstr ""
907
 
908
+ #: classes/controllers/FrmFormsController.php:734
909
+ msgid "Shortcodes"
910
  msgstr ""
911
 
912
+ #: classes/controllers/FrmFormsController.php:841
913
+ msgid "You are trying to edit a form that does not exist."
 
914
  msgstr ""
915
 
916
+ #: classes/controllers/FrmFormsController.php:845
917
+ msgid "You are trying to edit a child form. Please edit from %1$shere%2$s"
918
  msgstr ""
919
 
920
+ #: classes/controllers/FrmFormsController.php:867
921
+ msgid "Template was Successfully Updated"
922
  msgstr ""
923
 
924
+ #: classes/controllers/FrmFormsController.php:938
925
+ msgid "Customize the field values with the following parameters. Click to see a sample."
926
  msgstr ""
927
 
928
+ #: classes/controllers/FrmFormsController.php:952
929
+ msgid "Insert user information"
930
  msgstr ""
931
 
932
+ #: classes/controllers/FrmFormsController.php:975
933
+ msgid "Separator"
934
  msgstr ""
935
 
936
+ #: classes/controllers/FrmFormsController.php:976
937
+ msgid "Use a different separator for checkbox fields"
938
  msgstr ""
939
 
940
+ #: classes/controllers/FrmFormsController.php:978
941
+ msgid "Date Format"
942
  msgstr ""
943
 
944
+ #: classes/controllers/FrmFormsController.php:979
945
+ msgid "Field Label"
946
  msgstr ""
947
 
948
+ #: classes/controllers/FrmFormsController.php:981
949
+ msgid "No Auto P"
950
  msgstr ""
951
 
952
+ #: classes/controllers/FrmFormsController.php:982
953
+ msgid "Do not automatically add any paragraphs or line breaks"
954
  msgstr ""
955
 
956
+ #: classes/controllers/FrmFormsController.php:997
957
+ msgid "First Name"
958
  msgstr ""
959
 
960
+ #: classes/controllers/FrmFormsController.php:998
961
+ msgid "Last Name"
962
  msgstr ""
963
 
964
+ #: classes/controllers/FrmFormsController.php:999
965
+ msgid "Display Name"
966
  msgstr ""
967
 
968
+ #: classes/controllers/FrmFormsController.php:1000
969
+ msgid "User Login"
970
  msgstr ""
971
 
972
+ #: classes/controllers/FrmFormsController.php:1002
973
+ msgid "Avatar"
974
  msgstr ""
975
 
976
+ #: classes/controllers/FrmFormsController.php:1003
977
+ msgid "Author Link"
978
  msgstr ""
979
 
980
+ #: classes/controllers/FrmFormsController.php:1015
981
+ #: classes/views/frm-entries/sidebar-shared.php:32
982
+ msgid "Entry ID"
983
  msgstr ""
984
 
985
+ #: classes/controllers/FrmFormsController.php:1016
986
+ #: classes/controllers/FrmEntriesController.php:105
987
+ #: classes/views/frm-entries/sidebar-shared.php:38
988
+ #: classes/views/frm-entries/form.php:43
989
+ msgid "Entry Key"
990
  msgstr ""
991
 
992
+ #: classes/controllers/FrmFormsController.php:1017
993
+ msgid "Post ID"
994
  msgstr ""
995
 
996
+ #: classes/controllers/FrmFormsController.php:1018
997
+ msgid "User IP"
998
  msgstr ""
999
 
1000
+ #: classes/controllers/FrmFormsController.php:1019
1001
+ msgid "Entry created"
 
1002
  msgstr ""
1003
 
1004
+ #: classes/controllers/FrmFormsController.php:1020
1005
+ msgid "Entry updated"
1006
  msgstr ""
1007
 
1008
+ #: classes/controllers/FrmFormsController.php:1022
1009
+ msgid "Site URL"
 
1010
  msgstr ""
1011
 
1012
+ #: classes/controllers/FrmFormsController.php:1023
1013
+ msgid "Site Name"
1014
  msgstr ""
1015
 
1016
+ #: classes/controllers/FrmFormsController.php:1031
1017
+ msgid "Default Msg"
 
1018
  msgstr ""
1019
 
1020
+ #: classes/controllers/FrmFormsController.php:1032
1021
+ msgid "Default HTML"
1022
  msgstr ""
1023
 
1024
+ #: classes/controllers/FrmFormsController.php:1033
1025
+ msgid "Default Plain"
1026
  msgstr ""
1027
 
1028
+ #: classes/controllers/FrmFormsController.php:1122
1029
+ msgid "No forms were specified"
1030
  msgstr ""
1031
 
1032
+ #: classes/controllers/FrmFormsController.php:1225
1033
+ msgid "Abnormal HTML characters prevented your form from saving correctly"
1034
  msgstr ""
1035
 
1036
+ #: classes/controllers/FrmFormsController.php:1294
1037
+ #: classes/views/frm-forms/list-templates.php:56
1038
+ #: classes/views/shared/admin-header.php:29
1039
+ #: classes/views/shared/form-nav.php:20
1040
+ #: classes/views/xml/import_form.php:96
1041
+ #: classes/views/styles/manage.php:36
1042
+ #: classes/helpers/FrmFormsListHelper.php:295
1043
+ #: classes/helpers/FrmFormsHelper.php:55
1044
+ #: classes/helpers/FrmFormsHelper.php:113
1045
+ #: classes/helpers/FrmFormsHelper.php:782
1046
+ msgid "(no title)"
1047
  msgstr ""
1048
 
1049
+ #: classes/controllers/FrmFormsController.php:1340
1050
+ #: classes/controllers/FrmFormsController.php:1354
1051
+ msgid "Please select a valid form"
 
1052
  msgstr ""
1053
 
1054
+ #: classes/controllers/FrmFormsController.php:1585
1055
+ msgid "Please wait while you are redirected."
 
 
1056
  msgstr ""
1057
 
1058
+ #: classes/controllers/FrmFormsController.php:1619
1059
+ msgid "%1$sClick here%2$s if you are not automatically redirected."
 
1060
  msgstr ""
1061
 
1062
+ #: classes/controllers/FrmFieldsController.php:249
1063
+ msgid "Other"
1064
  msgstr ""
1065
 
1066
+ #: classes/controllers/FrmFieldsController.php:252
1067
+ msgid "New Option"
1068
  msgstr ""
1069
 
1070
+ #: classes/controllers/FrmFormActionsController.php:17
1071
+ #: classes/views/frm-forms/settings.php:36
1072
+ msgid "Form Actions"
1073
  msgstr ""
1074
 
1075
+ #: classes/controllers/FrmEntriesController.php:67
1076
+ msgid "Overview"
 
 
1077
  msgstr ""
1078
 
1079
+ #: classes/controllers/FrmEntriesController.php:69
1080
+ msgid "This screen provides access to all of your entries. You can customize the display of this screen to suit your workflow."
 
 
 
1081
  msgstr ""
1082
 
1083
+ #: classes/controllers/FrmEntriesController.php:71
1084
+ msgid "Hovering over a row in the entries list will display action links that allow you to manage your entry."
 
1085
  msgstr ""
1086
 
1087
+ #: classes/controllers/FrmEntriesController.php:77
1088
+ msgid "For more information:"
 
1089
  msgstr ""
1090
 
1091
+ #: classes/controllers/FrmEntriesController.php:78
1092
+ msgid "Documentation on Entries"
 
1093
  msgstr ""
1094
 
1095
+ #: classes/controllers/FrmEntriesController.php:79
1096
+ msgid "Support"
 
1097
  msgstr ""
1098
 
1099
+ #: classes/controllers/FrmEntriesController.php:111
1100
+ msgid "Entry Name"
 
 
 
 
1101
  msgstr ""
1102
 
1103
+ #: classes/controllers/FrmEntriesController.php:112
1104
+ #: classes/helpers/FrmCSVExportHelper.php:146
1105
+ msgid "Created By"
1106
  msgstr ""
1107
 
1108
+ #: classes/controllers/FrmEntriesController.php:115
1109
+ msgid "Entry creation date"
1110
  msgstr ""
1111
 
1112
+ #: classes/controllers/FrmEntriesController.php:116
1113
+ msgid "Entry update date"
1114
  msgstr ""
1115
 
1116
+ #: classes/controllers/FrmEntriesController.php:416
1117
+ msgid "Your import is complete"
 
1118
  msgstr ""
1119
 
1120
+ #: classes/controllers/FrmEntriesController.php:426
1121
+ msgid "This form is in the trash and is scheduled to be deleted permanently in %s along with any entries."
1122
  msgstr ""
1123
 
1124
+ #: classes/controllers/FrmEntriesController.php:445
1125
+ msgid "You are trying to view an entry that does not exist."
1126
  msgstr ""
1127
 
1128
+ #: classes/controllers/FrmEntriesController.php:473
1129
+ msgid "Entry was Successfully Destroyed"
1130
  msgstr ""
1131
 
1132
+ #: classes/controllers/FrmEntriesController.php:505
1133
+ msgid "Entries were Successfully Destroyed"
1134
  msgstr ""
1135
 
1136
+ #: classes/controllers/FrmEntriesController.php:508
1137
+ msgid "No entries were specified"
1138
  msgstr ""
1139
 
1140
+ #: classes/views/frm-forms/actions-dropdown.php:2
1141
+ msgid "Show options"
1142
  msgstr ""
1143
 
1144
+ #: classes/views/frm-forms/_publish_box.php:26
1145
+ #: classes/views/frm-forms/list-templates.php:124
1146
+ #: classes/helpers/FrmFormsListHelper.php:286
1147
+ msgid "Preview"
1148
  msgstr ""
1149
 
1150
+ #: classes/views/frm-forms/_publish_box.php:31
1151
+ msgid "On Blank Page"
1152
  msgstr ""
1153
 
1154
+ #: classes/views/frm-forms/_publish_box.php:36
1155
+ msgid "In Theme"
1156
  msgstr ""
1157
 
1158
+ #: classes/views/frm-forms/settings.php:39
1159
+ msgid "Customize HTML"
1160
  msgstr ""
1161
 
1162
+ #: classes/views/frm-forms/settings.php:63
1163
+ msgid "Form Shortcodes"
1164
  msgstr ""
1165
 
1166
+ #: classes/views/frm-forms/settings.php:65
1167
+ msgid "Show"
1168
  msgstr ""
1169
 
1170
+ #: classes/views/frm-forms/settings.php:67
1171
+ msgid "Insert on a page, post, or text widget"
1172
  msgstr ""
1173
 
1174
+ #: classes/views/frm-forms/settings.php:72
1175
+ msgid "Insert in a template"
1176
  msgstr ""
1177
 
1178
+ #: classes/views/frm-forms/settings.php:75
1179
+ msgid "Hide"
 
 
1180
  msgstr ""
1181
 
1182
+ #: classes/views/frm-forms/settings.php:81
1183
+ msgid "Form Settings"
1184
  msgstr ""
1185
 
1186
+ #: classes/views/frm-forms/settings.php:92
1187
+ #: classes/views/frm-forms/settings.php:228
1188
+ msgid "On Submit"
1189
  msgstr ""
1190
 
1191
+ #: classes/views/frm-forms/settings.php:93
1192
+ msgid "Choose what will happen after the user submits this form."
1193
  msgstr ""
1194
 
1195
+ #: classes/views/frm-forms/settings.php:102
1196
+ msgid "Show Message"
1197
  msgstr ""
1198
 
1199
+ #: classes/views/frm-forms/settings.php:105
1200
+ msgid "Redirect to URL"
1201
  msgstr ""
1202
 
1203
+ #: classes/views/frm-forms/settings.php:108
1204
+ msgid "Show Page Content"
1205
  msgstr ""
1206
 
1207
+ #: classes/views/frm-forms/settings.php:118
1208
+ msgid "Use Content from Page"
1209
  msgstr ""
1210
 
1211
+ #: classes/views/frm-forms/settings.php:128
1212
+ msgid "Show the form with the confirmation message"
1213
  msgstr ""
1214
 
1215
+ #: classes/views/frm-forms/settings.php:136
1216
+ msgid "Do not store entries submitted from this form"
1217
  msgstr ""
1218
 
1219
+ #: classes/views/frm-forms/settings.php:142
1220
+ msgid "Use Akismet to check entries for spam for"
1221
  msgstr ""
1222
 
1223
+ #: classes/views/frm-forms/settings.php:145
1224
+ msgid "no one"
1225
  msgstr ""
1226
 
1227
+ #: classes/views/frm-forms/settings.php:148
1228
+ msgid "everyone"
1229
  msgstr ""
1230
 
1231
+ #: classes/views/frm-forms/settings.php:151
1232
+ msgid "visitors who are not logged in"
1233
  msgstr ""
1234
 
1235
+ #: classes/views/frm-forms/settings.php:160
1236
+ msgid "AJAX"
1237
  msgstr ""
1238
 
1239
+ #: classes/views/frm-forms/settings.php:161
1240
+ msgid "Make stuff happen in the background without a page refresh"
1241
  msgstr ""
1242
 
1243
+ #: classes/views/frm-forms/settings.php:167
1244
+ msgid "Load and save form builder page with AJAX"
1245
  msgstr ""
1246
 
1247
+ #: classes/views/frm-forms/settings.php:169
1248
+ msgid "Recommended for long forms."
1249
  msgstr ""
1250
 
1251
+ #: classes/views/frm-forms/settings.php:177
1252
+ msgid "Validate this form with javascript"
1253
  msgstr ""
1254
 
1255
+ #: classes/views/frm-forms/settings.php:179
1256
+ msgid "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."
1257
  msgstr ""
1258
 
1259
+ #: classes/views/frm-forms/settings.php:189
1260
+ msgid "Styling & Buttons"
1261
  msgstr ""
1262
 
1263
+ #: classes/views/frm-forms/settings.php:190
1264
+ msgid "Select a style for this form and set the text for your buttons."
1265
  msgstr ""
1266
 
1267
+ #: classes/views/frm-forms/settings.php:195
1268
+ msgid "Style Template"
1269
  msgstr ""
1270
 
1271
+ #: classes/views/frm-forms/settings.php:199
1272
+ msgid "Always use default"
1273
  msgstr ""
1274
 
1275
+ #: classes/views/frm-forms/settings.php:203
1276
+ #: classes/views/styles/manage.php:43
1277
+ msgid "default"
1278
  msgstr ""
1279
 
1280
+ #: classes/views/frm-forms/settings.php:207
1281
+ msgid "Do not use Formidable styling"
1282
  msgstr ""
1283
 
1284
+ #: classes/views/frm-forms/settings.php:212
1285
+ #: classes/views/frm-settings/form.php:184
1286
+ msgid "Submit Button Text"
1287
  msgstr ""
1288
 
1289
+ #: classes/views/frm-forms/settings.php:222
1290
+ msgid "Messages"
1291
  msgstr ""
1292
 
1293
+ #: classes/views/frm-forms/settings.php:223
1294
+ msgid "Set up your confirmation messages."
1295
  msgstr ""
1296
 
1297
+ #: classes/views/frm-forms/settings.php:236
1298
+ #: classes/views/frm-settings/form.php:192
1299
+ msgid "Miscellaneous"
1300
  msgstr ""
1301
 
1302
+ #: classes/views/frm-forms/settings.php:240
1303
+ #: classes/views/frm-forms/mb_html_tab.php:50
1304
+ msgid "Form Key"
1305
  msgstr ""
1306
 
1307
+ #: classes/views/frm-forms/settings.php:262
1308
+ msgid "Add New Action"
1309
  msgstr ""
1310
 
1311
+ #: classes/views/frm-forms/settings.php:276
1312
+ msgid "%s form actions"
1313
  msgstr ""
1314
 
1315
+ #: classes/views/frm-forms/settings.php:291
1316
+ msgid "Click an action to add it to this form"
1317
  msgstr ""
1318
 
1319
+ #: classes/views/frm-forms/settings.php:301
1320
+ msgid "Form Classes"
 
1321
  msgstr ""
1322
 
1323
+ #: classes/views/frm-forms/settings.php:307
1324
+ msgid "Before Fields"
1325
  msgstr ""
1326
 
1327
+ #: classes/views/frm-forms/settings.php:329
1328
+ msgid "After Fields"
1329
  msgstr ""
1330
 
1331
+ #: classes/views/frm-forms/settings.php:333
1332
+ msgid "Submit Button"
1333
  msgstr ""
1334
 
1335
+ #: classes/views/frm-forms/list.php:5
1336
+ #: classes/views/frm-forms/new.php:10
1337
+ #: classes/views/frm-forms/edit.php:10
1338
+ msgid "Templates"
1339
  msgstr ""
1340
 
1341
+ #: classes/views/frm-forms/list.php:21
1342
+ #: classes/views/shared/mb_adv_info.php:21
1343
+ #: classes/views/frm-entries/list.php:19
1344
+ #: classes/helpers/FrmAppHelper.php:658
1345
+ msgid "Search"
1346
  msgstr ""
1347
 
1348
+ #: classes/views/frm-forms/list-templates.php:5
1349
+ #: classes/views/frm-forms/add-new.php:5
1350
+ msgid "Add new form"
1351
  msgstr ""
1352
 
1353
+ #: classes/views/frm-forms/list-templates.php:11
1354
+ msgid "Form templates"
1355
  msgstr ""
1356
 
1357
+ #: classes/views/frm-forms/list-templates.php:16
1358
+ msgid "Save time by starting from one of our pre-made templates. They are expertly designed and configured to work right out of the box. If you don't find a template you like, you can always start with a %1$sblank form%2$s."
1359
  msgstr ""
1360
 
1361
+ #: classes/views/frm-forms/list-templates.php:23
1362
+ msgid "Search Templates"
1363
  msgstr ""
1364
 
1365
+ #: classes/views/frm-forms/list-templates.php:29
1366
+ msgid "Create a Custom Template"
1367
  msgstr ""
1368
 
1369
+ #: classes/views/frm-forms/list-templates.php:31
1370
+ msgid "Build a form and setup form actions."
1371
  msgstr ""
1372
 
1373
+ #: classes/views/frm-forms/list-templates.php:32
1374
+ msgid "Select your form in the dropdown below."
1375
  msgstr ""
1376
 
1377
+ #: classes/views/frm-forms/list-templates.php:33
1378
+ msgid "Give your template a name and description."
1379
  msgstr ""
1380
 
1381
+ #: classes/views/frm-forms/list-templates.php:34
1382
+ msgid "Delete the original form. (optional)"
1383
  msgstr ""
1384
 
1385
+ #: classes/views/frm-forms/list-templates.php:40
1386
+ msgid "Select form for new template"
1387
  msgstr ""
1388
 
1389
+ #: classes/views/frm-forms/list-templates.php:48
1390
+ #: classes/views/frm-entries/no_entries.php:9
1391
+ msgid "You have not created any forms yet."
1392
  msgstr ""
1393
 
1394
+ #: classes/views/frm-forms/list-templates.php:71
1395
+ msgid "Blank Form"
1396
  msgstr ""
1397
 
1398
+ #: classes/views/frm-forms/list-templates.php:72
1399
+ msgid "Start from scratch and build exactly what you want. This option will not pre-load any fields."
 
1400
  msgstr ""
1401
 
1402
+ #: classes/views/frm-forms/list-templates.php:76
1403
+ #: classes/views/frm-forms/list-templates.php:135
1404
+ #: classes/views/frm-forms/list-templates.php:137
1405
+ #: classes/views/frm-forms/list-templates.php:139
1406
+ msgid "Create Form"
1407
  msgstr ""
1408
 
1409
+ #: classes/views/frm-forms/list-templates.php:107
1410
+ msgid "License plan required: %s"
1411
  msgstr ""
1412
 
1413
+ #: classes/views/frm-forms/list-templates.php:128
1414
+ #: classes/views/styles/show.php:64
1415
+ #: classes/helpers/FrmEntriesListHelper.php:257
1416
+ #: classes/helpers/FrmFormsHelper.php:855
1417
+ #: classes/helpers/FrmAppHelper.php:1761
1418
+ msgid "Are you sure?"
1419
  msgstr ""
1420
 
1421
+ #: classes/views/frm-forms/list-templates.php:142
1422
+ #: classes/views/frm-forms/list-templates.php:143
1423
+ #: classes/views/addons/list.php:45
1424
+ #: classes/views/addons/list.php:46
1425
+ msgid "Upgrade Now"
1426
  msgstr ""
1427
 
1428
+ #: classes/views/frm-forms/shortcode_opts.php:4
1429
+ msgid "Select a form:"
1430
  msgstr ""
1431
 
1432
+ #: classes/views/frm-forms/add-new.php:15
1433
+ #: classes/views/frm-forms/add-new.php:22
1434
+ msgid "Create Blank Form"
1435
  msgstr ""
1436
 
1437
+ #: classes/views/frm-forms/add-new.php:17
1438
+ msgid "Start with a blank form"
1439
  msgstr ""
1440
 
1441
+ #: classes/views/frm-forms/add-new.php:18
1442
+ msgid "Build anything you can imagine."
 
1443
  msgstr ""
1444
 
1445
+ #: classes/views/frm-forms/add-new.php:30
1446
+ #: classes/views/frm-forms/add-new.php:37
1447
+ msgid "Choose Template"
1448
  msgstr ""
1449
 
1450
+ #: classes/views/frm-forms/add-new.php:32
1451
+ msgid "Start with a template"
1452
  msgstr ""
1453
 
1454
+ #: classes/views/frm-forms/add-new.php:33
1455
+ msgid "We've done the heavy lifting."
1456
  msgstr ""
1457
 
1458
+ #: classes/views/frm-forms/add-new.php:45
1459
+ #: classes/views/frm-forms/add-new.php:52
1460
+ msgid "Import Form"
1461
  msgstr ""
1462
 
1463
+ #: classes/views/frm-forms/add-new.php:47
1464
+ msgid "Import your form"
1465
  msgstr ""
1466
 
1467
+ #: classes/views/frm-forms/add-new.php:48
1468
+ msgid "Import a form from an XML file."
1469
  msgstr ""
1470
 
1471
+ #: classes/views/frm-forms/insert_form_popup.php:5
1472
+ msgid "Close panel"
1473
  msgstr ""
1474
 
1475
+ #: classes/views/frm-forms/insert_form_popup.php:40
1476
+ msgid "Insert into Post"
1477
  msgstr ""
1478
 
1479
+ #: classes/views/frm-forms/add_field.php:6
1480
+ msgid "Move Field"
1481
  msgstr ""
1482
 
1483
+ #: classes/views/frm-forms/add_field.php:7
1484
+ msgid "Delete Field"
 
 
1485
  msgstr ""
1486
 
1487
+ #: classes/views/frm-forms/add_field.php:8
1488
+ msgid "Duplicate Section"
1489
  msgstr ""
1490
 
1491
+ #: classes/views/frm-forms/add_field.php:8
1492
+ msgid "Duplicate Field"
1493
  msgstr ""
1494
 
1495
+ #: classes/views/frm-forms/add_field.php:17
1496
+ #: classes/helpers/FrmAppHelper.php:1751
1497
+ msgid "(no label)"
1498
  msgstr ""
1499
 
1500
+ #: classes/views/frm-forms/add_field.php:37
1501
+ #: classes/views/frm-forms/add_field.php:50
1502
+ #: classes/helpers/FrmAppHelper.php:1749
1503
+ msgid "(Click to add description)"
 
 
 
 
1504
  msgstr ""
1505
 
1506
+ #: classes/views/frm-forms/add_field.php:74
1507
+ msgid "Add Option"
1508
  msgstr ""
1509
 
1510
+ #: classes/views/frm-forms/add_field.php:78
1511
+ msgid "Add \"Other\""
1512
  msgstr ""
1513
 
1514
+ #: classes/views/frm-forms/add_field.php:86
1515
+ msgid "Field Choices"
1516
  msgstr ""
1517
 
1518
+ #: classes/views/frm-forms/add_field.php:87
1519
+ msgid "Bulk Edit Options"
1520
  msgstr ""
1521
 
1522
+ #: classes/views/frm-forms/add_field.php:116
1523
+ msgid "Field Type"
1524
  msgstr ""
1525
 
1526
+ #: classes/views/frm-forms/add_field.php:132
1527
+ #: classes/views/frm-forms/add_field.php:304
1528
+ msgid "Required"
1529
  msgstr ""
1530
 
1531
+ #: classes/views/frm-forms/add_field.php:142
1532
+ msgid "Unique: Do not allow the same response multiple times. For example, if one user enters 'Joe', then no one else will be allowed to enter the same name."
 
1533
  msgstr ""
1534
 
1535
+ #: classes/views/frm-forms/add_field.php:143
1536
+ #: classes/views/frm-forms/add_field.php:323
1537
+ msgid "Unique"
 
 
1538
  msgstr ""
1539
 
1540
+ #: classes/views/frm-forms/add_field.php:153
1541
+ msgid "Read Only: Show this field but do not allow the field value to be edited from the front-end."
1542
  msgstr ""
1543
 
1544
+ #: classes/views/frm-forms/add_field.php:155
1545
+ #: classes/views/styles/_field-colors.php:20
1546
+ msgid "Read Only"
1547
  msgstr ""
1548
 
1549
+ #: classes/views/frm-forms/add_field.php:165
1550
+ msgid "Indicate required field with"
1551
  msgstr ""
1552
 
1553
+ #: classes/views/frm-forms/add_field.php:173
1554
+ msgid "The field key can be used as an alternative to the field ID in many cases."
1555
  msgstr ""
1556
 
1557
+ #: classes/views/frm-forms/add_field.php:174
1558
+ #: classes/views/frm-forms/mb_html_tab.php:11
1559
+ msgid "Field Key"
1560
  msgstr ""
1561
 
1562
+ #: classes/views/frm-forms/add_field.php:183
1563
+ msgid "CSS layout classes"
1564
  msgstr ""
1565
 
1566
+ #: classes/views/frm-forms/add_field.php:184
1567
+ msgid "Add a CSS class to the field container. Use our predefined classes to align multiple fields in single row."
1568
  msgstr ""
1569
 
1570
+ #: classes/views/frm-forms/add_field.php:193
1571
+ #: classes/views/frm-forms/mb_html_tab.php:14
1572
+ msgid "Label Position"
1573
  msgstr ""
1574
 
1575
+ #: classes/views/frm-forms/add_field.php:197
1576
+ #: classes/views/styles/_buttons.php:12
1577
+ #: classes/views/styles/_field-colors.php:5
1578
+ #: classes/helpers/FrmAppHelper.php:1756
1579
+ msgid "Default"
1580
  msgstr ""
1581
 
1582
+ #: classes/views/frm-forms/add_field.php:232
1583
+ msgid "Show URL image"
1584
  msgstr ""
1585
 
1586
+ #: classes/views/frm-forms/add_field.php:237
1587
+ msgid "If this URL points to an image, show to image on the entries listing page."
1588
  msgstr ""
1589
 
1590
+ #: classes/views/frm-forms/add_field.php:246
1591
+ msgid "ReCaptcha Type"
1592
  msgstr ""
1593
 
1594
+ #: classes/views/frm-forms/add_field.php:247
1595
+ msgid "Set the size of the captcha field. The compact option is best if your form is in a small area."
1596
  msgstr ""
1597
 
1598
+ #: classes/views/frm-forms/add_field.php:252
1599
+ msgid "Normal"
1600
  msgstr ""
1601
 
1602
+ #: classes/views/frm-forms/add_field.php:255
1603
+ msgid "Compact"
1604
  msgstr ""
1605
 
1606
+ #: classes/views/frm-forms/add_field.php:263
1607
+ msgid "reCAPTCHA Color"
1608
  msgstr ""
1609
 
1610
+ #: classes/views/frm-forms/add_field.php:269
1611
+ msgid "Light"
1612
  msgstr ""
1613
 
1614
+ #: classes/views/frm-forms/add_field.php:272
1615
+ msgid "Dark"
1616
  msgstr ""
1617
 
1618
+ #: classes/views/frm-forms/add_field.php:298
1619
+ msgid "Validation"
1620
  msgstr ""
1621
 
1622
+ #: classes/views/frm-forms/add_field.php:314
1623
+ msgid "Invalid Format"
1624
  msgstr ""
1625
 
1626
+ #: classes/views/frm-forms/add_field.php:332
1627
+ msgid "Confirmation"
1628
  msgstr ""
1629
 
1630
+ #: classes/views/frm-forms/add_field.php:354
1631
+ msgid "Drag fields from your form or the sidebar into this section"
1632
  msgstr ""
1633
 
1634
+ #: classes/views/frm-forms/new.php:10
1635
+ #: classes/views/frm-forms/edit.php:10
1636
+ msgid "Build Form"
1637
  msgstr ""
1638
 
1639
+ #: classes/views/frm-forms/template-name-overlay.php:9
1640
+ #: classes/views/frm-forms/template-name-overlay.php:10
1641
+ #: classes/views/frm-forms/mb_html_tab.php:48
1642
+ msgid "Form Name"
1643
  msgstr ""
1644
 
1645
+ #: classes/views/frm-forms/template-name-overlay.php:16
1646
+ msgid "Template Description"
1647
  msgstr ""
1648
 
1649
+ #: classes/views/frm-forms/template-name-overlay.php:29
1650
+ #: classes/views/shared/admin-header.php:15
1651
+ #: classes/helpers/FrmAppHelper.php:1755
1652
+ msgid "Cancel"
1653
  msgstr ""
1654
 
1655
+ #: classes/views/frm-forms/form.php:9
1656
+ msgid "Enter title here"
1657
  msgstr ""
1658
 
1659
+ #: classes/views/frm-forms/form.php:17
1660
+ msgid "1. Name your form"
1661
  msgstr ""
1662
 
1663
+ #: classes/views/frm-forms/form.php:21
1664
+ msgid "2. Click or drag a field to add it to your form"
1665
  msgstr ""
1666
 
1667
+ #: classes/views/frm-forms/form.php:27
1668
+ msgid "Add Fields Here"
1669
  msgstr ""
1670
 
1671
+ #: classes/views/frm-forms/form.php:30
1672
+ msgid "3. Save your form"
1673
  msgstr ""
1674
 
1675
+ #: classes/views/frm-forms/add_field_links.php:18
1676
+ #: classes/views/shared/mb_adv_info.php:3
1677
+ msgid "Fields"
1678
  msgstr ""
1679
 
1680
+ #: classes/views/frm-forms/add_field_links.php:21
1681
+ msgid "Open the Field Settings and click on the CSS Layout Classes option to enable this tab"
1682
  msgstr ""
1683
 
1684
+ #: classes/views/frm-forms/add_field_links.php:22
1685
+ msgid "Layout"
1686
  msgstr ""
1687
 
1688
+ #: classes/views/frm-forms/add_field_links.php:87
1689
+ msgid "%s fields"
1690
  msgstr ""
1691
 
1692
+ #: classes/views/frm-forms/add_field_links.php:106
1693
+ msgid "Click inside the \"CSS layout classes\" field option in any field to enable the options below."
1694
  msgstr ""
1695
 
1696
+ #: classes/views/frm-forms/add_field_links.php:109
1697
+ msgid "Click on any box below to set the width for your selected field."
1698
  msgstr ""
1699
 
1700
+ #: classes/views/frm-forms/mb_insert_fields.php:3
1701
+ msgid "Customization"
1702
  msgstr ""
1703
 
1704
+ #: classes/views/frm-forms/mb_html_tab.php:3
1705
+ msgid "Use the buttons below to help customize your form HTML."
1706
  msgstr ""
1707
 
1708
+ #: classes/views/frm-forms/mb_html_tab.php:10
1709
+ msgid "Field ID"
1710
  msgstr ""
1711
 
1712
+ #: classes/views/frm-forms/mb_html_tab.php:12
1713
+ msgid "Field Name"
1714
  msgstr ""
1715
 
1716
+ #: classes/views/frm-forms/mb_html_tab.php:15
1717
+ msgid "Required Label"
1718
  msgstr ""
1719
 
1720
+ #: classes/views/frm-forms/mb_html_tab.php:16
1721
+ msgid "Input Field"
1722
  msgstr ""
1723
 
1724
+ #: classes/views/frm-forms/mb_html_tab.php:18
1725
+ msgid "Single Option"
1726
  msgstr ""
1727
 
1728
+ #: classes/views/frm-forms/mb_html_tab.php:19
1729
+ msgid "Show a single radio or checkbox option by replacing 1 with the order of the option"
1730
  msgstr ""
1731
 
1732
+ #: classes/views/frm-forms/mb_html_tab.php:21
1733
+ msgid "Hide Option Label"
1734
  msgstr ""
1735
 
1736
+ #: classes/views/frm-forms/mb_html_tab.php:23
1737
+ msgid "Required Class"
1738
  msgstr ""
1739
 
1740
+ #: classes/views/frm-forms/mb_html_tab.php:24
1741
+ msgid "Add class name if field is required"
1742
  msgstr ""
1743
 
1744
+ #: classes/views/frm-forms/mb_html_tab.php:27
1745
+ msgid "Error Class"
1746
  msgstr ""
1747
 
1748
+ #: classes/views/frm-forms/mb_html_tab.php:28
1749
+ msgid "Add class name if field has an error on form submit"
1750
  msgstr ""
1751
 
1752
+ #: classes/views/frm-forms/mb_html_tab.php:51
1753
+ msgid "Delete Entry Link"
1754
  msgstr ""
1755
 
1756
+ #: classes/views/frm-forms/mb_html_tab.php:63
1757
+ msgid "Button Label"
1758
  msgstr ""
1759
 
1760
+ #: classes/views/frm-forms/mb_html_tab.php:64
1761
+ msgid "Button Hook"
1762
  msgstr ""
1763
 
1764
+ #: classes/views/frm-form-actions/default_actions.php:8
1765
+ msgid "Create Post"
1766
  msgstr ""
1767
 
1768
+ #: classes/views/frm-form-actions/default_actions.php:16
1769
+ msgid "Register User"
1770
  msgstr ""
1771
 
1772
+ #: classes/views/frm-form-actions/default_actions.php:24
1773
+ msgid "PayPal Payment"
1774
  msgstr ""
1775
 
1776
+ #: classes/views/frm-form-actions/default_actions.php:32
1777
+ msgid "Aweber"
1778
  msgstr ""
1779
 
1780
+ #: classes/views/frm-form-actions/default_actions.php:40
1781
+ msgid "MailChimp"
1782
  msgstr ""
1783
 
1784
+ #: classes/views/frm-form-actions/default_actions.php:48
1785
+ msgid "Twilio SMS"
1786
  msgstr ""
1787
 
1788
+ #: classes/views/frm-form-actions/default_actions.php:56
1789
+ msgid "Credit Card Payment"
1790
  msgstr ""
1791
 
1792
+ #: classes/views/frm-form-actions/_email_settings.php:4
1793
+ msgid "To"
1794
  msgstr ""
1795
 
1796
+ #: classes/views/frm-form-actions/_email_settings.php:10
1797
+ #: classes/views/frm-form-actions/_email_settings.php:16
1798
+ msgid "CC"
1799
  msgstr ""
1800
 
1801
+ #: classes/views/frm-form-actions/_email_settings.php:11
1802
+ #: classes/views/frm-form-actions/_email_settings.php:26
1803
+ msgid "BCC"
1804
  msgstr ""
1805
 
1806
+ #: classes/views/frm-form-actions/_email_settings.php:36
1807
+ msgid "Reply to"
 
 
 
 
1808
  msgstr ""
1809
 
1810
+ #: classes/views/frm-form-actions/_email_settings.php:47
1811
+ msgid "From"
1812
  msgstr ""
1813
 
1814
+ #: classes/views/frm-form-actions/_email_settings.php:54
1815
+ msgid "Reply To"
1816
  msgstr ""
1817
 
1818
+ #: classes/views/frm-form-actions/_email_settings.php:63
1819
+ msgid "Subject"
1820
  msgstr ""
1821
 
1822
+ #: classes/views/frm-form-actions/_email_settings.php:69
1823
+ msgid "Message"
1824
  msgstr ""
1825
 
1826
+ #: classes/views/frm-form-actions/_email_settings.php:77
1827
+ msgid "Append IP Address, Browser, and Referring URL to message"
1828
  msgstr ""
1829
 
1830
+ #: classes/views/frm-form-actions/_email_settings.php:79
1831
+ msgid "Append Browser and Referring URL to message"
1832
  msgstr ""
1833
 
1834
+ #: classes/views/frm-form-actions/_email_settings.php:85
1835
+ msgid "Send Emails in Plain Text"
1836
  msgstr ""
1837
 
1838
+ #: classes/views/frm-form-actions/form_action.php:17
1839
+ msgid "Duplicate"
1840
  msgstr ""
1841
 
1842
+ #: classes/views/frm-form-actions/_action_inside.php:7
1843
+ msgid "Label"
1844
  msgstr ""
1845
 
1846
+ #: classes/views/frm-form-actions/_action_inside.php:33
1847
+ msgid "Action Triggers"
1848
  msgstr ""
1849
 
1850
+ #: classes/views/frm-form-actions/_action_inside.php:35
1851
+ msgid "Trigger this action after"
1852
  msgstr ""
1853
 
1854
+ #: classes/views/frm-form-actions/_action_inside.php:59
1855
+ msgid "Action ID: %1$s"
1856
  msgstr ""
1857
 
1858
+ #: classes/views/frm-form-actions/email_action.php:16
1859
+ #: classes/helpers/FrmXMLHelper.php:1171
1860
+ msgid "Email Notification"
1861
  msgstr ""
1862
 
1863
+ #: classes/views/addons/settings.php:20
1864
+ msgid "Good to go!"
1865
  msgstr ""
1866
 
1867
+ #: classes/views/addons/settings.php:22
1868
+ msgid "Deactivate"
1869
  msgstr ""
1870
 
1871
+ #: classes/views/addons/settings.php:28
1872
+ #: classes/views/addons/list.php:37
1873
+ msgid "Activate"
1874
  msgstr ""
1875
 
1876
+ #: classes/views/addons/upgrade_to_pro.php:24
1877
+ msgid "Get Started"
1878
  msgstr ""
1879
 
1880
+ #: classes/views/addons/list.php:3
1881
+ msgid "Formidable Add-Ons"
1882
  msgstr ""
1883
 
1884
+ #: classes/views/addons/list.php:21
1885
+ #: classes/views/addons/list.php:22
1886
+ msgid "View Docs"
1887
  msgstr ""
1888
 
1889
+ #: classes/views/addons/list.php:30
1890
+ msgid "Status: %s"
1891
  msgstr ""
1892
 
1893
+ #: classes/views/addons/list.php:40
1894
+ #: classes/views/addons/list.php:41
1895
+ #: classes/helpers/FrmAppHelper.php:1784
1896
+ msgid "Install"
1897
  msgstr ""
1898
 
1899
+ #: classes/views/shared/upgrade_overlay.php:4
1900
+ #: classes/views/frm-settings/settings_cta.php:6
1901
+ msgid "Dismiss this message"
1902
  msgstr ""
1903
 
1904
+ #: classes/views/shared/upgrade_overlay.php:11
1905
+ msgid "%s are not installed"
1906
  msgstr ""
1907
 
1908
+ #: classes/views/shared/upgrade_overlay.php:20
1909
+ msgid "Please see the add-ons that are included with your plan."
1910
  msgstr ""
1911
 
1912
+ #: classes/views/shared/upgrade_overlay.php:22
1913
+ msgid "%s are not available on your plan. Please upgrade to PRO to unlock more awesome features."
1914
  msgstr ""
1915
 
1916
+ #: classes/views/shared/upgrade_overlay.php:29
1917
+ msgid "See My Add-Ons"
1918
  msgstr ""
1919
 
1920
+ #: classes/views/shared/upgrade_overlay.php:38
1921
+ #: classes/views/frm-settings/license_box.php:10
1922
+ msgid "Already purchased?"
1923
  msgstr ""
1924
 
1925
+ #: classes/views/shared/review.php:4
1926
+ msgid "Congratulations%1$s! You have collected %2$d form submissions."
1927
  msgstr ""
1928
 
1929
+ #: classes/views/shared/review.php:5
1930
+ msgid "Are you enjoying Formidable Forms?"
1931
  msgstr ""
1932
 
1933
+ #: classes/views/shared/review.php:9
1934
+ msgid "Not Really"
1935
  msgstr ""
1936
 
1937
+ #: classes/views/shared/review.php:12
1938
+ msgid "Yes!"
1939
  msgstr ""
1940
 
1941
+ #: classes/views/shared/review.php:16
1942
+ msgid "Awesome! Could you do me a BIG favor and give Formidable Forms a review to help me grow my little business and boost our motivation?"
1943
  msgstr ""
1944
 
1945
+ #: classes/views/shared/review.php:18
1946
+ msgid "Founder and Lead Developer of Formidable Forms"
1947
  msgstr ""
1948
 
1949
+ #: classes/views/shared/review.php:21
1950
+ msgid "No thanks, maybe later"
1951
  msgstr ""
1952
 
1953
+ #: classes/views/shared/review.php:24
1954
+ msgid "Ok, you deserve it"
1955
  msgstr ""
1956
 
1957
+ #: classes/views/shared/review.php:27
1958
+ msgid "I already did"
1959
  msgstr ""
1960
 
1961
+ #: classes/views/shared/review.php:31
1962
+ msgid "Sorry to hear you aren't enjoying building with Formidable. We would love a chance to improve. Could you take a minute and let us know what we can do better?"
1963
  msgstr ""
1964
 
1965
+ #: classes/views/shared/mb_adv_info.php:5
1966
+ msgid "Conditionals"
1967
  msgstr ""
1968
 
1969
+ #: classes/views/shared/mb_adv_info.php:7
1970
+ msgid "Advanced"
1971
  msgstr ""
1972
 
1973
+ #: classes/views/shared/mb_adv_info.php:9
1974
+ msgid "HTML Tags"
1975
  msgstr ""
1976
 
1977
+ #: classes/views/shared/mb_adv_info.php:15
1978
+ #: classes/views/shared/mb_adv_info.php:90
1979
+ msgid "IDs"
1980
  msgstr ""
1981
 
1982
+ #: classes/views/shared/mb_adv_info.php:16
1983
+ #: classes/views/shared/mb_adv_info.php:91
1984
+ msgid "Keys"
1985
  msgstr ""
1986
 
1987
+ #: classes/views/shared/mb_adv_info.php:18
1988
+ #: classes/views/shared/mb_adv_info.php:93
1989
+ msgid "Fields from your form"
1990
  msgstr ""
1991
 
1992
+ #: classes/views/shared/mb_adv_info.php:56
1993
+ msgid "Click a button below to insert extra values from form entries or your site settings."
1994
  msgstr ""
1995
 
1996
+ #: classes/views/shared/mb_adv_info.php:59
1997
+ msgid "Helpers"
1998
  msgstr ""
1999
 
2000
+ #: classes/views/shared/mb_adv_info.php:103
2001
+ msgid "Conditional text here"
2002
  msgstr ""
2003
 
2004
+ #: classes/views/shared/mb_adv_info.php:114
2005
+ msgid "Click a button below to insert sample logic into your view"
2006
  msgstr ""
2007
 
2008
+ #: classes/views/xml/import_form.php:13
2009
+ msgid "Upload your Formidable XML file to import forms into this site. If your imported form key and creation date match a form on your site, that form will be updated."
2010
  msgstr ""
2011
 
2012
+ #: classes/views/xml/import_form.php:20
2013
+ msgid "Choose a Formidable XML file"
2014
  msgstr ""
2015
 
2016
+ #: classes/views/xml/import_form.php:21
2017
+ msgid "Maximum size: %s"
2018
  msgstr ""
2019
 
2020
+ #: classes/views/xml/import_form.php:29
2021
+ msgid "Upload file and import"
2022
  msgstr ""
2023
 
2024
+ #: classes/views/xml/import_form.php:35
2025
+ msgid "Export"
2026
  msgstr ""
2027
 
2028
+ #: classes/views/xml/import_form.php:37
2029
+ msgid "Export your forms, entries, views, and styles so you can easily import them on another site."
2030
  msgstr ""
2031
 
2032
+ #: classes/views/xml/import_form.php:45
2033
+ msgid "Export Format"
2034
  msgstr ""
2035
 
2036
+ #: classes/views/xml/import_form.php:57
2037
+ #: classes/views/frm-fields/back-end/value-format.php:2
2038
+ msgid "Format"
2039
  msgstr ""
2040
 
2041
+ #: classes/views/xml/import_form.php:58
2042
+ msgid "If your CSV special characters are not working correctly, try a different formatting option."
2043
  msgstr ""
2044
 
2045
+ #: classes/views/xml/import_form.php:67
2046
+ msgid "Column separation"
2047
  msgstr ""
2048
 
2049
+ #: classes/views/xml/import_form.php:75
2050
+ msgid "Data to Export"
2051
  msgstr ""
2052
 
2053
+ #: classes/views/xml/import_form.php:77
2054
+ msgid "Include the following in the export file"
2055
  msgstr ""
2056
 
2057
+ #: classes/views/xml/import_form.php:89
2058
+ msgid "Select Form(s)"
2059
  msgstr ""
2060
 
2061
+ #: classes/views/xml/import_form.php:99
2062
+ msgid "(template)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2063
  msgstr ""
2064
 
2065
+ #: classes/views/xml/import_form.php:101
2066
+ msgid "(child)"
2067
  msgstr ""
2068
 
2069
+ #: classes/views/xml/import_form.php:107
2070
+ msgid "Hold down the CTRL/Command button to select multiple forms"
2071
  msgstr ""
2072
 
2073
+ #: classes/views/xml/import_form.php:112
2074
+ msgid "Export Selection"
2075
  msgstr ""
2076
 
2077
+ #: classes/views/styles/_field-labels.php:2
2078
+ #: classes/views/styles/_field-labels.php:52
2079
+ #: classes/views/styles/_form-title.php:7
2080
+ #: classes/views/styles/_check-box-radio-fields.php:26
2081
+ #: classes/views/styles/_field-description.php:2
2082
+ #: classes/views/styles/_general.php:38
2083
+ #: classes/views/styles/_form-description.php:7
2084
+ msgid "Color"
2085
  msgstr ""
2086
 
2087
+ #: classes/views/styles/_field-labels.php:6
2088
+ #: classes/views/styles/_field-labels.php:56
2089
+ #: classes/views/styles/_field-sizes.php:38
2090
+ #: classes/views/styles/_check-box-radio-fields.php:30
2091
+ #: classes/views/styles/_field-description.php:6
2092
+ #: classes/views/styles/_buttons.php:39
2093
+ msgid "Weight"
2094
  msgstr ""
2095
 
2096
+ #: classes/views/styles/_field-labels.php:14
2097
+ #: classes/views/styles/_field-sizes.php:2
2098
+ #: classes/views/styles/_form-messages.php:27
2099
+ #: classes/views/styles/_form-messages.php:51
2100
+ #: classes/views/styles/_form-title.php:2
2101
+ #: classes/views/styles/_check-box-radio-fields.php:40
2102
+ #: classes/views/styles/_field-description.php:26
2103
+ #: classes/views/styles/_buttons.php:24
2104
+ #: classes/views/styles/_form-description.php:2
2105
+ msgid "Size"
2106
  msgstr ""
2107
 
2108
+ #: classes/views/styles/_field-labels.php:19
2109
+ msgid "Position"
2110
  msgstr ""
2111
 
2112
+ #: classes/views/styles/_field-labels.php:28
2113
+ #: classes/views/styles/_field-description.php:30
2114
+ msgid "Align"
2115
  msgstr ""
2116
 
2117
+ #: classes/views/styles/_field-labels.php:31
2118
+ #: classes/views/styles/_field-description.php:33
2119
+ #: classes/views/styles/_general.php:11
2120
+ #: classes/helpers/FrmStylesHelper.php:29
2121
+ msgid "left"
2122
  msgstr ""
2123
 
2124
+ #: classes/views/styles/_field-labels.php:34
2125
+ #: classes/views/styles/_field-description.php:36
2126
+ #: classes/views/styles/_general.php:14
2127
+ #: classes/helpers/FrmStylesHelper.php:30
2128
+ msgid "right"
2129
  msgstr ""
2130
 
2131
+ #: classes/views/styles/_field-labels.php:40
2132
+ #: classes/views/styles/_field-sizes.php:12
2133
+ #: classes/views/styles/_buttons.php:29
2134
+ msgid "Width"
2135
  msgstr ""
2136
 
2137
+ #: classes/views/styles/_field-labels.php:45
2138
+ #: classes/views/styles/_field-sizes.php:23
2139
+ #: classes/views/styles/_buttons.php:89
2140
+ #: classes/views/styles/_general.php:43
2141
+ msgid "Padding"
2142
  msgstr ""
2143
 
2144
+ #: classes/views/styles/_field-labels.php:50
2145
+ msgid "Required Indicator"
2146
  msgstr ""
2147
 
2148
+ #: classes/views/styles/_field-sizes.php:7
2149
+ #: classes/views/styles/_buttons.php:34
2150
+ msgid "Height"
2151
  msgstr ""
2152
 
2153
+ #: classes/views/styles/_field-sizes.php:19
2154
+ msgid "Automatic Width for drop-down fields"
2155
  msgstr ""
2156
 
2157
+ #: classes/views/styles/_field-sizes.php:28
2158
+ #: classes/views/styles/_field-description.php:41
2159
+ #: classes/views/styles/_buttons.php:84
2160
+ msgid "Margin"
2161
  msgstr ""
2162
 
2163
+ #: classes/views/styles/_field-sizes.php:33
2164
+ #: classes/views/styles/_buttons.php:48
2165
+ msgid "Corners"
2166
  msgstr ""
2167
 
2168
+ #: classes/views/styles/_field-sizes.php:33
2169
+ msgid "Formidable uses CSS3 border-radius for corner rounding, which is not currently supported by Internet Explorer."
2170
  msgstr ""
2171
 
2172
+ #: classes/views/styles/_form-messages.php:4
2173
+ msgid "Success"
2174
  msgstr ""
2175
 
2176
+ #: classes/views/styles/_form-messages.php:7
2177
+ #: classes/views/styles/_field-colors.php:15
2178
+ #: deprecated/FrmEDD_SL_Plugin_Updater.php:315
2179
+ msgid "Error"
2180
  msgstr ""
2181
 
2182
+ #: classes/views/styles/_form-messages.php:13
2183
+ #: classes/views/styles/_form-messages.php:35
2184
+ #: classes/views/styles/_buttons.php:53
2185
+ #: classes/views/styles/_buttons.php:97
2186
+ #: classes/views/styles/_buttons.php:116
2187
+ #: classes/views/styles/_field-colors.php:27
2188
+ #: classes/views/styles/_field-colors.php:71
2189
+ #: classes/views/styles/_field-colors.php:89
2190
+ #: classes/views/styles/_field-colors.php:128
2191
+ msgid "BG color"
2192
  msgstr ""
2193
 
2194
+ #: classes/views/styles/_form-messages.php:19
2195
+ #: classes/views/styles/_form-messages.php:41
2196
+ #: classes/views/styles/_buttons.php:63
2197
+ #: classes/views/styles/_buttons.php:107
2198
+ #: classes/views/styles/_buttons.php:126
2199
+ #: classes/views/styles/_field-colors.php:36
2200
+ #: classes/views/styles/_field-colors.php:75
2201
+ #: classes/views/styles/_field-colors.php:98
2202
+ #: classes/views/styles/_field-colors.php:137
2203
+ #: classes/views/styles/_general.php:33
2204
+ msgid "Border"
2205
  msgstr ""
2206
 
2207
+ #: classes/views/styles/show.php:33
2208
+ msgid "Style Name"
2209
  msgstr ""
2210
 
2211
+ #: classes/views/styles/show.php:34
2212
+ msgid "Enter style name here"
2213
  msgstr ""
2214
 
2215
+ #: classes/views/styles/show.php:46
2216
+ msgid "Make default style"
2217
  msgstr ""
2218
 
2219
+ #: classes/views/styles/show.php:50
2220
+ #: classes/views/styles/show.php:75
2221
+ msgid "Save Style"
2222
  msgstr ""
2223
 
2224
+ #: classes/views/styles/show.php:65
2225
+ msgid "Delete Style"
2226
  msgstr ""
2227
 
2228
+ #: classes/views/styles/show.php:74
2229
+ msgid "Reset to Default"
2230
  msgstr ""
2231
 
2232
+ #: classes/views/styles/_sample_form.php:4
2233
+ #: classes/views/styles/_sample_form.php:9
2234
+ msgid "SAMPLE:"
2235
  msgstr ""
2236
 
2237
+ #: classes/views/styles/_sample_form.php:18
2238
+ msgid "This is an example form description for styling purposes."
2239
  msgstr ""
2240
 
2241
+ #: classes/views/styles/_sample_form.php:22
2242
+ msgid "Text field"
2243
  msgstr ""
2244
 
2245
+ #: classes/views/styles/_sample_form.php:23
2246
+ #: classes/views/styles/_sample_form.php:38
2247
+ msgid "This is sample text"
2248
  msgstr ""
2249
 
2250
+ #: classes/views/styles/_sample_form.php:24
2251
+ msgid "A field with a description"
2252
  msgstr ""
2253
 
2254
+ #: classes/views/styles/_sample_form.php:28
2255
+ msgid "Drop-down Select"
2256
  msgstr ""
2257
 
2258
+ #: classes/views/styles/_sample_form.php:37
2259
+ msgid "Text field with error"
2260
  msgstr ""
2261
 
2262
+ #: classes/views/styles/_sample_form.php:43
2263
+ msgid "Text field in active state"
2264
  msgstr ""
2265
 
2266
+ #: classes/views/styles/_sample_form.php:44
2267
+ msgid "Active state will be seen when the field is clicked"
2268
  msgstr ""
2269
 
2270
+ #: classes/views/styles/_sample_form.php:48
2271
+ msgid "Read-only field"
2272
  msgstr ""
2273
 
2274
+ #: classes/views/styles/_sample_form.php:49
2275
+ msgid "This field is not editable"
2276
  msgstr ""
2277
 
2278
+ #: classes/views/styles/_sample_form.php:53
2279
+ msgid "Text Area"
2280
  msgstr ""
2281
 
2282
+ #: classes/views/styles/_sample_form.php:55
2283
+ msgid "Another field with a description"
2284
  msgstr ""
2285
 
2286
+ #: classes/views/styles/_sample_form.php:59
2287
+ msgid "Radio Buttons"
2288
  msgstr ""
2289
 
2290
+ #: classes/views/styles/_sample_form.php:67
2291
+ msgid "Check Boxes"
2292
  msgstr ""
2293
 
2294
+ #: classes/views/styles/_form-title.php:11
2295
+ #: classes/views/styles/_form-description.php:11
2296
+ msgid "Margin Top"
2297
  msgstr ""
2298
+
2299
+ #: classes/views/styles/_form-title.php:15
2300
+ #: classes/views/styles/_form-description.php:15
2301
+ msgid "Margin Bottom"
2302
  msgstr ""
2303
 
2304
+ #: classes/views/styles/manage.php:5
2305
+ msgid "Easily change which template your forms are using by making changes below."
2306
  msgstr ""
2307
 
2308
+ #: classes/views/styles/manage.php:19
2309
+ msgid "Assigned Style Templates"
2310
  msgstr ""
2311
 
2312
+ #: classes/views/styles/manage.php:47
2313
+ msgid "Styling disabled"
2314
  msgstr ""
2315
 
2316
+ #: classes/views/styles/manage.php:58
2317
+ msgid "No Forms Found"
2318
  msgstr ""
2319
 
2320
+ #: classes/views/styles/manage.php:65
2321
+ #: classes/views/styles/custom_css.php:39
2322
+ msgid "Save Changes"
2323
  msgstr ""
2324
 
2325
+ #: classes/views/styles/_check-box-radio-fields.php:2
2326
+ msgid "Radio"
2327
  msgstr ""
2328
 
2329
+ #: classes/views/styles/_check-box-radio-fields.php:5
2330
+ #: classes/views/styles/_check-box-radio-fields.php:17
2331
+ msgid "Multiple Rows"
2332
  msgstr ""
2333
 
2334
+ #: classes/views/styles/_check-box-radio-fields.php:8
2335
+ #: classes/views/styles/_check-box-radio-fields.php:20
2336
+ msgid "Single Row"
2337
  msgstr ""
2338
 
2339
+ #: classes/views/styles/_check-box-radio-fields.php:14
2340
+ msgid "Check Box"
2341
  msgstr ""
2342
 
2343
+ #: classes/views/styles/_field-description.php:20
2344
+ msgid "italic"
2345
  msgstr ""
2346
 
2347
+ #: classes/views/styles/_buttons.php:4
2348
+ msgid "Disable submit button styling"
2349
  msgstr ""
2350
 
2351
+ #: classes/views/styles/_buttons.php:5
2352
+ msgid "Note: If disabled, you may not see the change take effect until you make 2 more styling changes or click \"Update Options\"."
2353
  msgstr ""
2354
 
2355
+ #: classes/views/styles/_buttons.php:15
2356
+ msgid "Hover"
2357
  msgstr ""
2358
 
2359
+ #: classes/views/styles/_buttons.php:18
2360
+ msgid "Click"
2361
  msgstr ""
2362
 
2363
+ #: classes/views/styles/_buttons.php:68
2364
+ #: classes/views/styles/_field-colors.php:40
2365
+ #: classes/views/styles/_field-colors.php:102
2366
+ msgid "Thickness"
2367
  msgstr ""
2368
 
2369
+ #: classes/views/styles/_buttons.php:73
2370
+ msgid "Shadow"
2371
  msgstr ""
2372
 
2373
+ #: classes/views/styles/_buttons.php:79
2374
+ msgid "BG Image"
2375
  msgstr ""
2376
 
2377
+ #: classes/views/styles/_field-colors.php:47
2378
+ #: classes/views/styles/_field-colors.php:109
2379
+ msgid "solid"
2380
  msgstr ""
2381
 
2382
+ #: classes/views/styles/_field-colors.php:50
2383
+ #: classes/views/styles/_field-colors.php:112
2384
+ msgid "dotted"
2385
  msgstr ""
2386
 
2387
+ #: classes/views/styles/_field-colors.php:53
2388
+ #: classes/views/styles/_field-colors.php:115
2389
+ msgid "dashed"
2390
  msgstr ""
2391
 
2392
+ #: classes/views/styles/_field-colors.php:56
2393
+ #: classes/views/styles/_field-colors.php:118
2394
+ msgid "double"
2395
  msgstr ""
2396
 
2397
+ #: classes/views/styles/_field-colors.php:64
2398
+ #: classes/views/styles/_field-colors.php:82
2399
+ msgid "Remove box shadow"
2400
  msgstr ""
2401
 
2402
+ #: classes/views/styles/custom_css.php:5
2403
+ msgid "You can add custom css here or in your theme style.css"
2404
  msgstr ""
2405
 
2406
+ #: classes/views/styles/_general.php:3
2407
+ msgid "Center form on page"
2408
  msgstr ""
2409
 
2410
+ #: classes/views/styles/_general.php:3
2411
+ msgid "This will center your form on the page where it is published if the form width is less than the available width on the page."
2412
  msgstr ""
2413
 
2414
+ #: classes/views/styles/_general.php:8
2415
+ msgid "Alignment"
2416
  msgstr ""
2417
 
2418
+ #: classes/views/styles/_general.php:17
2419
+ msgid "center"
2420
  msgstr ""
2421
 
2422
+ #: classes/views/styles/_general.php:23
2423
+ msgid "Max Width"
2424
  msgstr ""
2425
 
2426
+ #: classes/views/styles/_general.php:28
2427
+ msgid "Background"
2428
  msgstr ""
2429
 
2430
+ #: classes/views/styles/_general.php:48
2431
+ msgid "Font Family"
2432
  msgstr ""
2433
 
2434
+ #: classes/views/styles/_general.php:53
2435
+ msgid "Direction"
2436
  msgstr ""
2437
 
2438
+ #: classes/views/styles/_general.php:56
2439
+ msgid "Left to Right"
2440
  msgstr ""
2441
 
2442
+ #: classes/views/styles/_general.php:59
2443
+ msgid "Right to Left"
2444
  msgstr ""
2445
 
2446
+ #: classes/views/styles/_general.php:68
2447
+ msgid "Override theme styling"
2448
  msgstr ""
2449
 
2450
+ #: classes/views/styles/_general.php:68
2451
+ msgid "This will add !important to many of the lines in the Formidable styling to make sure it will be used."
2452
  msgstr ""
2453
 
2454
+ #: classes/views/frm-fields/single-option.php:8
2455
+ #: classes/views/frm-fields/single-option.php:14
2456
+ #: classes/helpers/FrmAppHelper.php:1750
2457
+ msgid "(Blank)"
2458
  msgstr ""
2459
 
2460
+ #: classes/views/frm-fields/import_choices.php:22
2461
+ msgid "Edit or add field options (one per line)"
2462
  msgstr ""
2463
 
2464
+ #: classes/views/frm-fields/import_choices.php:56
2465
+ msgid "Update Field Choices"
2466
  msgstr ""
2467
 
2468
+ #: classes/views/frm-fields/back-end/pixels-wide.php:4
2469
+ #: classes/views/frm-fields/back-end/automatic-width.php:2
2470
+ msgid "Field Size"
2471
  msgstr ""
2472
 
2473
+ #: classes/views/frm-fields/back-end/pixels-wide.php:10
2474
+ msgid "pixels wide"
2475
  msgstr ""
2476
 
2477
+ #: classes/views/frm-fields/back-end/field-html.php:3
2478
+ msgid "This is a placeholder for your custom HTML."
2479
  msgstr ""
2480
 
2481
+ #: classes/views/frm-fields/back-end/field-html.php:4
2482
+ msgid "You can edit this content in the field settings."
2483
  msgstr ""
2484
 
2485
+ #: classes/views/frm-fields/back-end/field-hidden.php:3
2486
+ msgid "Note: This field will not show in the form. Enter the value to be hidden."
2487
  msgstr ""
2488
 
2489
+ #: classes/views/frm-fields/back-end/number-range.php:3
2490
+ msgid "Number Range"
 
 
2491
  msgstr ""
2492
 
2493
+ #: classes/views/frm-fields/back-end/number-range.php:4
2494
+ msgid "Set the number range the field validation should allow. Browsers that support the HTML5 number field require a number range to determine the numbers seen when clicking the arrows next to the field."
2495
  msgstr ""
2496
 
2497
+ #: classes/views/frm-fields/back-end/number-range.php:9
2498
+ msgid "minimum"
2499
  msgstr ""
2500
 
2501
+ #: classes/views/frm-fields/back-end/number-range.php:11
2502
+ msgid "maximum"
 
 
2503
  msgstr ""
2504
 
2505
+ #: classes/views/frm-fields/back-end/number-range.php:13
2506
+ msgid "step"
2507
  msgstr ""
2508
 
2509
+ #: classes/views/frm-fields/back-end/max.php:1
2510
+ msgid "rows high"
2511
  msgstr ""
2512
 
2513
+ #: classes/views/frm-fields/back-end/max.php:1
2514
+ msgid "characters maximum"
2515
  msgstr ""
2516
 
2517
+ #: classes/views/frm-fields/back-end/field-user-id.php:2
2518
+ msgid "Note: This field will not show in the form, but will link the user id to it as long as the user is logged in at the time of form submission."
2519
  msgstr ""
2520
 
2521
+ #: classes/views/frm-fields/back-end/field-captcha.php:5
2522
+ msgid "Your captcha will not appear on your form until you %1$sset up%2$s the Site and Secret Keys"
2523
  msgstr ""
2524
 
2525
+ #: classes/views/frm-fields/back-end/value-format.php:3
2526
+ msgid "Insert the format you would like to accept. Use a regular expression starting with ^ or an exact format like (999)999-9999."
2527
  msgstr ""
2528
 
2529
+ #: classes/views/frm-fields/back-end/automatic-width.php:6
2530
+ msgid "automatic width"
2531
  msgstr ""
2532
 
2533
+ #: classes/views/frm-fields/back-end/html-content.php:2
2534
+ msgid "Content"
2535
  msgstr ""
2536
 
2537
+ #: classes/views/frm-settings/settings_cta.php:7
2538
+ msgid "Get Formidable Forms Pro and Unlock all the Powerful Features"
2539
  msgstr ""
2540
 
2541
+ #: classes/views/frm-settings/settings_cta.php:9
2542
+ 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."
2543
  msgstr ""
2544
 
2545
+ #: classes/views/frm-settings/settings_cta.php:11
2546
+ msgid "We know that you will truly love Formidable Forms."
2547
  msgstr ""
2548
 
2549
+ #: classes/views/frm-settings/settings_cta.php:14
2550
+ msgid "Pro Features"
2551
  msgstr ""
2552
 
2553
+ #: classes/views/frm-settings/settings_cta.php:26
2554
+ msgid "Get Formidable Forms Pro Today and Unlock all the Powerful Features »"
 
 
 
 
 
 
2555
  msgstr ""
2556
 
2557
+ #: classes/views/frm-settings/license_box.php:2
2558
+ msgid "License Key"
 
 
 
2559
  msgstr ""
2560
 
2561
+ #: classes/views/frm-settings/license_box.php:7
2562
+ msgid "To unlock more features consider %1$supgrading to PRO%2$s."
2563
  msgstr ""
2564
 
2565
+ #: classes/views/frm-settings/form.php:9
2566
+ msgid "License"
2567
  msgstr ""
2568
 
2569
+ #: classes/views/frm-settings/form.php:11
2570
+ msgid "Your license key provides access to automatic updates."
2571
  msgstr ""
2572
 
2573
+ #: classes/views/frm-settings/form.php:48
2574
+ #: classes/views/frm-settings/form.php:235
2575
+ msgid "Update Options"
2576
  msgstr ""
2577
 
2578
+ #: classes/views/frm-settings/form.php:51
2579
+ msgid "Styling & Scripts"
2580
  msgstr ""
2581
 
2582
+ #: classes/views/frm-settings/form.php:53
2583
+ msgid "Load form styling"
 
 
2584
  msgstr ""
2585
 
2586
+ #: classes/views/frm-settings/form.php:56
2587
+ msgid "on every page of your site"
 
2588
  msgstr ""
2589
 
2590
+ #: classes/views/frm-settings/form.php:59
2591
+ msgid "only on applicable pages"
2592
  msgstr ""
2593
 
2594
+ #: classes/views/frm-settings/form.php:62
2595
+ msgid "Don't use form styling on any page"
2596
  msgstr ""
2597
 
2598
+ #: classes/views/frm-settings/form.php:69
2599
+ msgid "Use HTML5 in forms"
2600
  msgstr ""
2601
 
2602
+ #: classes/views/frm-settings/form.php:71
2603
+ msgid "We recommend using HTML 5 for your forms. It adds some nifty options like placeholders, patterns, and autocomplete."
2604
  msgstr ""
2605
 
2606
+ #: classes/views/frm-settings/form.php:77
2607
+ msgid "Do not use CSS Grids for form layouts"
 
2608
  msgstr ""
2609
 
2610
+ #: classes/views/frm-settings/form.php:79
2611
+ msgid "Form layouts built using CSS grids that are not fully supported by older browsers like Internet Explorer. Leave this box unchecked for your layouts to look best in current browsers, but show in a single column in older browsers."
2612
  msgstr ""
2613
 
2614
+ #: classes/views/frm-settings/form.php:84
2615
+ msgid "User Permissions"
2616
  msgstr ""
2617
 
2618
+ #: classes/views/frm-settings/form.php:85
2619
+ msgid "Select users that are allowed access to Formidable. Without access to View Forms, users will be unable to see the Formidable menu."
2620
  msgstr ""
2621
 
2622
+ #: classes/views/frm-settings/form.php:100
2623
+ msgid "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking spam on your blog. reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a human. This verifies that they are not a spambot."
2624
  msgstr ""
2625
 
2626
+ #: classes/views/frm-settings/form.php:104
2627
+ msgid "reCAPTCHA requires a Site and Private API key. Sign up for a %1$sfree reCAPTCHA key%2$s."
2628
  msgstr ""
2629
 
2630
+ #: classes/views/frm-settings/form.php:107
2631
+ msgid "Site Key"
2632
  msgstr ""
2633
 
2634
+ #: classes/views/frm-settings/form.php:108
2635
+ #: classes/views/frm-settings/form.php:111
2636
+ msgid "Optional"
2637
  msgstr ""
2638
 
2639
+ #: classes/views/frm-settings/form.php:110
2640
+ msgid "Secret Key"
2641
  msgstr ""
2642
 
2643
+ #: classes/views/frm-settings/form.php:113
2644
+ msgid "reCAPTCHA Type"
2645
  msgstr ""
2646
 
2647
+ #: classes/views/frm-settings/form.php:116
2648
+ msgid "Checkbox (V2)"
2649
  msgstr ""
2650
 
2651
+ #: classes/views/frm-settings/form.php:119
2652
+ msgid "Invisible"
2653
  msgstr ""
2654
 
2655
+ #: classes/views/frm-settings/form.php:123
2656
+ msgid "reCAPTCHA Language"
2657
  msgstr ""
2658
 
2659
+ #: classes/views/frm-settings/form.php:125
2660
+ msgid "Browser Default"
2661
  msgstr ""
2662
 
2663
+ #: classes/views/frm-settings/form.php:132
2664
+ msgid "Multiple reCaptchas"
2665
  msgstr ""
2666
 
2667
+ #: classes/views/frm-settings/form.php:135
2668
+ msgid "Allow multiple reCaptchas to be used on a single page"
2669
  msgstr ""
2670
 
2671
+ #: classes/views/frm-settings/form.php:139
2672
+ msgid "Default Messages"
2673
  msgstr ""
2674
 
2675
+ #: classes/views/frm-settings/form.php:140
2676
+ msgid "You can override the success message and submit button settings on individual forms."
2677
  msgstr ""
2678
 
2679
+ #: classes/views/frm-settings/form.php:144
2680
+ msgid "Failed/Duplicate Entry"
2681
  msgstr ""
2682
 
2683
+ #: classes/views/frm-settings/form.php:145
2684
+ msgid "The message seen when a form is submitted and passes validation, but something goes wrong."
2685
  msgstr ""
2686
 
2687
+ #: classes/views/frm-settings/form.php:151
2688
+ msgid "Blank Field"
2689
  msgstr ""
2690
 
2691
+ #: classes/views/frm-settings/form.php:152
2692
+ msgid "The message seen when a required field is left blank."
2693
  msgstr ""
2694
 
2695
+ #: classes/views/frm-settings/form.php:158
2696
+ msgid "Incorrect Field"
2697
  msgstr ""
2698
 
2699
+ #: classes/views/frm-settings/form.php:159
2700
+ msgid "The message seen when a field response is either incorrect or missing."
 
 
2701
  msgstr ""
2702
 
2703
+ #: classes/views/frm-settings/form.php:166
2704
+ msgid "Unique Value"
2705
  msgstr ""
2706
 
2707
+ #: classes/views/frm-settings/form.php:167
2708
+ msgid "The message seen when a user selects a value in a unique field that has already been used."
2709
  msgstr ""
2710
 
2711
+ #: classes/views/frm-settings/form.php:177
2712
+ msgid "Success Message"
2713
  msgstr ""
2714
 
2715
+ #: classes/views/frm-settings/form.php:178
2716
+ msgid "The default message seen after a form is submitted."
2717
  msgstr ""
2718
 
2719
+ #: classes/views/frm-settings/form.php:198
2720
+ msgid "IP storage"
2721
  msgstr ""
2722
 
2723
+ #: classes/views/frm-settings/form.php:201
2724
+ msgid "Do not store IPs with form submissions. Check this box if you are in the UK."
2725
  msgstr ""
2726
 
2727
+ #: classes/views/frm-settings/form.php:231
2728
+ msgid "Uninstall Formidable"
 
2729
  msgstr ""
2730
 
2731
+ #: classes/views/frm-entries/_sidebar-shared-pub.php:9
2732
+ msgid "M j, Y @ G:i"
 
 
 
 
 
 
 
2733
  msgstr ""
2734
 
2735
+ #: classes/views/frm-entries/_sidebar-shared-pub.php:10
2736
+ msgid "Published on: %1$s"
 
2737
  msgstr ""
2738
 
2739
+ #: classes/views/frm-entries/_sidebar-shared-pub.php:17
2740
+ msgid "Print"
2741
  msgstr ""
2742
 
2743
+ #: classes/views/frm-entries/_sidebar-shared-pub.php:23
2744
+ msgid "Updated on: %1$s"
2745
  msgstr ""
2746
 
2747
+ #: classes/views/frm-entries/show.php:10
2748
+ #: classes/views/frm-entries/sidebar-shared.php:7
2749
+ msgid "View Entry"
2750
  msgstr ""
2751
 
2752
+ #: classes/views/frm-entries/show.php:21
2753
+ msgid "Entry"
2754
  msgstr ""
2755
 
2756
+ #: classes/views/frm-entries/show.php:68
2757
+ msgid "Parent Entry ID"
2758
  msgstr ""
2759
 
2760
+ #: classes/views/frm-entries/sidebar-shared.php:4
2761
+ msgid "Entry Details"
2762
  msgstr ""
2763
 
2764
+ #: classes/views/frm-entries/sidebar-shared.php:17
2765
+ msgid "Post"
2766
  msgstr ""
2767
 
2768
+ #: classes/views/frm-entries/sidebar-shared.php:24
2769
+ #: classes/helpers/FrmEntriesListHelper.php:253
2770
+ msgid "View"
2771
  msgstr ""
2772
 
2773
+ #: classes/views/frm-entries/sidebar-shared.php:48
2774
+ msgid "Created by: %1$s"
2775
  msgstr ""
2776
 
2777
+ #: classes/views/frm-entries/sidebar-shared.php:60
2778
+ msgid "Updated by: %1$s"
 
 
 
2779
  msgstr ""
2780
 
2781
+ #: classes/views/frm-entries/sidebar-shared.php:83
2782
+ msgid "Browser/OS"
 
 
 
2783
  msgstr ""
2784
 
2785
+ #: classes/views/frm-entries/form.php:4
2786
+ msgid "Oops!"
2787
  msgstr ""
2788
 
2789
+ #: classes/views/frm-entries/form.php:4
2790
+ msgid "You did not add any fields to your form. %1$sGo back%2$s and add some."
2791
  msgstr ""
2792
 
2793
+ #: classes/views/frm-entries/form.php:29
2794
+ msgid "If you are human, leave this field blank."
2795
  msgstr ""
2796
 
2797
+ #: classes/views/frm-entries/no_entries.php:3
2798
+ msgid "This form is not set to save any entries."
2799
  msgstr ""
2800
 
2801
+ #: classes/views/frm-entries/no_entries.php:4
2802
+ msgid "If you would like to save entries in this form, go to the %1$sform Settings%2$s page %3$s and uncheck the \"Do not store any entries submitted from this form\" box."
2803
  msgstr ""
2804
 
2805
+ #: classes/views/frm-entries/no_entries.php:6
2806
+ msgid "No Entries for form: %s"
2807
  msgstr ""
2808
 
2809
+ #: classes/views/frm-entries/no_entries.php:7
2810
+ msgid "See the %1$sform documentation%2$s for instructions on publishing your form"
2811
  msgstr ""
2812
 
2813
+ #: classes/views/frm-entries/no_entries.php:10
2814
+ msgid "To view entries, you must first %1$sbuild a form%2$s"
2815
  msgstr ""
2816
 
2817
+ #: classes/helpers/FrmTipsHelper.php:28
2818
  msgid "Pro Tip:"
2819
  msgstr ""
2820
 
2821
+ #: classes/helpers/FrmTipsHelper.php:48
2822
  msgid "Use conditional logic to shorten your forms and increase conversions."
2823
  msgstr ""
2824
 
2825
+ #: classes/helpers/FrmTipsHelper.php:49
2826
+ #: classes/helpers/FrmTipsHelper.php:73
2827
+ #: classes/helpers/FrmTipsHelper.php:141
2828
+ #: classes/helpers/FrmTipsHelper.php:149
2829
+ #: classes/helpers/FrmTipsHelper.php:250
2830
+ #: classes/helpers/FrmTipsHelper.php:265
2831
  msgid "Upgrade to Pro."
2832
  msgstr ""
2833
 
2834
+ #: classes/helpers/FrmTipsHelper.php:56
2835
  msgid "Stop intimidating users with long forms."
2836
  msgstr ""
2837
 
2838
+ #: classes/helpers/FrmTipsHelper.php:57
2839
  msgid "Use page breaks."
2840
  msgstr ""
2841
 
2842
+ #: classes/helpers/FrmTipsHelper.php:64
2843
  msgid "Cut down on back-and-forth with clients."
2844
  msgstr ""
2845
 
2846
+ #: classes/helpers/FrmTipsHelper.php:65
2847
  msgid "Allow file uploads in your form."
2848
  msgstr ""
2849
 
2850
+ #: classes/helpers/FrmTipsHelper.php:72
2851
  msgid "Need to calculate a total?"
2852
  msgstr ""
2853
 
2854
+ #: classes/helpers/FrmTipsHelper.php:80
2855
  msgid "Save time."
2856
  msgstr ""
2857
 
2858
+ #: classes/helpers/FrmTipsHelper.php:81
2859
  msgid "Prefill fields with user info."
2860
  msgstr ""
2861
 
2862
+ #: classes/helpers/FrmTipsHelper.php:95
2863
+ #: classes/helpers/FrmTipsHelper.php:103
2864
  msgid "A site with dynamic, user-generated content is within reach."
2865
  msgstr ""
2866
 
2867
+ #: classes/helpers/FrmTipsHelper.php:96
2868
+ #: classes/helpers/FrmTipsHelper.php:104
2869
  msgid "Add front-end editing."
2870
  msgstr ""
2871
 
2872
+ #: classes/helpers/FrmTipsHelper.php:111
2873
  msgid "Have a long form that takes time to complete?"
2874
  msgstr ""
2875
 
2876
+ #: classes/helpers/FrmTipsHelper.php:112
2877
  msgid "Let logged-in users save a draft and return later."
2878
  msgstr ""
2879
 
2880
+ #: classes/helpers/FrmTipsHelper.php:118
2881
  msgid "Want to submit forms without reloading the page?"
2882
  msgstr ""
2883
 
2884
+ #: classes/helpers/FrmTipsHelper.php:119
2885
  msgid "Get ajax form submit."
2886
  msgstr ""
2887
 
2888
+ #: classes/helpers/FrmTipsHelper.php:132
2889
  msgid "Save time by sending the email to the right person automatically."
2890
  msgstr ""
2891
 
2892
+ #: classes/helpers/FrmTipsHelper.php:133
2893
  msgid "Add email routing."
2894
  msgstr ""
2895
 
2896
+ #: classes/helpers/FrmTipsHelper.php:140
2897
  msgid "Create blog posts or pages from the front-end."
2898
  msgstr ""
2899
 
2900
+ #: classes/helpers/FrmTipsHelper.php:148
2901
  msgid "Make front-end posting easy."
2902
  msgstr ""
2903
 
2904
+ #: classes/helpers/FrmTipsHelper.php:156
2905
  msgid "Grow your business with automated email follow-up."
2906
  msgstr ""
2907
 
2908
+ #: classes/helpers/FrmTipsHelper.php:157
2909
  msgid "Send leads straight to MailChimp."
2910
  msgstr ""
2911
 
2912
+ #: classes/helpers/FrmTipsHelper.php:164
2913
  msgid "Save hours and increase revenue by collecting payments with every submission."
2914
  msgstr ""
2915
 
2916
+ #: classes/helpers/FrmTipsHelper.php:165
2917
+ #: classes/helpers/FrmTipsHelper.php:173
2918
  msgid "Use PayPal with this form."
2919
  msgstr ""
2920
 
2921
+ #: classes/helpers/FrmTipsHelper.php:172
2922
  msgid "Increase revenue."
2923
  msgstr ""
2924
 
2925
+ #: classes/helpers/FrmTipsHelper.php:180
2926
  msgid "Get paid more quickly."
2927
  msgstr ""
2928
 
2929
+ #: classes/helpers/FrmTipsHelper.php:181
2930
  msgid "Use Paypal with this form."
2931
  msgstr ""
2932
 
2933
+ #: classes/helpers/FrmTipsHelper.php:188
2934
  msgid "Boost your site membership."
2935
  msgstr ""
2936
 
2937
+ #: classes/helpers/FrmTipsHelper.php:189
2938
  msgid "Automatically create user accounts."
2939
  msgstr ""
2940
 
2941
+ #: classes/helpers/FrmTipsHelper.php:196
2942
  msgid "Make front-end profile editing possible."
2943
  msgstr ""
2944
 
2945
+ #: classes/helpers/FrmTipsHelper.php:197
2946
  msgid "Add user registration."
2947
  msgstr ""
2948
 
2949
+ #: classes/helpers/FrmTipsHelper.php:204
2950
  msgid "Want a text when this form is submitted or when a payment is received?"
2951
  msgstr ""
2952
 
2953
+ #: classes/helpers/FrmTipsHelper.php:205
2954
  msgid "Use Twilio with this form."
2955
  msgstr ""
2956
 
2957
+ #: classes/helpers/FrmTipsHelper.php:212
2958
  msgid "Send a text when this form is submitted."
2959
  msgstr ""
2960
 
2961
+ #: classes/helpers/FrmTipsHelper.php:213
2962
  msgid "Get Twilio."
2963
  msgstr ""
2964
 
2965
+ #: classes/helpers/FrmTipsHelper.php:227
2966
  msgid "Make your sidebar or footer form stand out."
2967
  msgstr ""
2968
 
2969
+ #: classes/helpers/FrmTipsHelper.php:228
2970
  msgid "Use multiple style templates."
2971
  msgstr ""
2972
 
2973
+ #: classes/helpers/FrmTipsHelper.php:241
2974
  msgid "Want to edit or delete form submissions?"
2975
  msgstr ""
2976
 
2977
+ #: classes/helpers/FrmTipsHelper.php:242
2978
  msgid "Add entry management."
2979
  msgstr ""
2980
 
2981
+ #: classes/helpers/FrmTipsHelper.php:249
2982
  msgid "Want to search submitted entries?"
2983
  msgstr ""
2984
 
2985
+ #: classes/helpers/FrmTipsHelper.php:264
2986
  msgid "Want to import entries into your forms?"
2987
  msgstr ""
2988
 
2989
+ #: classes/helpers/FrmTipsHelper.php:278
2990
  msgid "Looking for more ways to get professional results?"
2991
  msgstr ""
2992
 
2993
+ #: classes/helpers/FrmTipsHelper.php:279
2994
  msgid "Take your forms to the next level."
2995
  msgstr ""
2996
 
2997
+ #: classes/helpers/FrmTipsHelper.php:286
2998
  msgid "Increase conversions in long forms."
2999
  msgstr ""
3000
 
3001
+ #: classes/helpers/FrmTipsHelper.php:287
3002
  msgid "Add conditional logic, page breaks, and section headings."
3003
  msgstr ""
3004
 
3005
+ #: classes/helpers/FrmTipsHelper.php:294
3006
  msgid "Automate your business and increase revenue."
3007
  msgstr ""
3008
 
3009
+ #: classes/helpers/FrmTipsHelper.php:295
3010
  msgid "Collect instant payments, and send leads to MailChimp."
3011
  msgstr ""
3012
 
3013
+ #: classes/helpers/FrmEntriesListHelper.php:90
3014
+ msgid "No Entries Found"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3015
  msgstr ""
3016
 
3017
+ #: classes/helpers/FrmEntriesListHelper.php:113
3018
+ msgid "View all forms"
 
3019
  msgstr ""
3020
 
3021
+ #: classes/helpers/FrmEntriesListHelper.php:114
3022
+ msgid "Filter"
3023
  msgstr ""
3024
 
3025
+ #: classes/helpers/FrmEntriesListHelper.php:224
3026
+ msgid "No"
3027
  msgstr ""
3028
 
3029
+ #: classes/helpers/FrmEntriesListHelper.php:224
3030
+ msgid "Yes"
 
 
 
 
 
3031
  msgstr ""
3032
 
3033
+ #: classes/helpers/FrmFormsListHelper.php:99
3034
+ msgid "No Forms Found."
 
 
 
3035
  msgstr ""
3036
 
3037
+ #: classes/helpers/FrmFormsListHelper.php:102
3038
+ #: classes/helpers/FrmAppHelper.php:639
3039
+ msgid "Add New"
3040
  msgstr ""
3041
 
3042
+ #: classes/helpers/FrmFormsListHelper.php:112
3043
+ #: classes/helpers/FrmFormsHelper.php:847
3044
+ msgid "Restore"
3045
  msgstr ""
3046
 
3047
+ #: classes/helpers/FrmFormsListHelper.php:116
3048
+ #: classes/helpers/FrmFormsHelper.php:858
3049
+ msgid "Delete Permanently"
3050
  msgstr ""
3051
 
3052
+ #: classes/helpers/FrmFormsListHelper.php:119
3053
+ msgid "Move to Trash"
3054
  msgstr ""
3055
 
3056
+ #: classes/helpers/FrmFormsListHelper.php:135
3057
+ msgid "Empty Trash"
 
3058
  msgstr ""
3059
 
3060
+ #: classes/helpers/FrmFormsListHelper.php:144
3061
+ msgid "My Forms"
3062
  msgstr ""
3063
 
3064
+ #: classes/helpers/FrmFormsListHelper.php:145
3065
+ msgid "Drafts"
3066
  msgstr ""
3067
 
3068
+ #: classes/helpers/FrmFormsListHelper.php:146
3069
+ #: classes/helpers/FrmFormsHelper.php:852
3070
+ #: classes/helpers/FrmFormsHelper.php:970
3071
+ msgid "Trash"
3072
  msgstr ""
3073
 
3074
+ #: classes/helpers/FrmFormsListHelper.php:167
3075
+ msgid "%1$s <span class=\"count\">(%2$s)</span>"
3076
  msgstr ""
3077
 
3078
+ #: classes/helpers/FrmFormsListHelper.php:322
3079
+ #: classes/helpers/FrmFormsHelper.php:969
3080
+ #: classes/helpers/FrmCSVExportHelper.php:148
3081
+ msgid "Draft"
3082
  msgstr ""
3083
 
3084
+ #: classes/helpers/FrmFieldsHelper.php:271
3085
+ #: classes/helpers/FrmAppHelper.php:1766
3086
+ msgid "The entered values do not match"
3087
  msgstr ""
3088
 
3089
+ #: classes/helpers/FrmFieldsHelper.php:275
3090
+ msgid "%s must be unique"
3091
  msgstr ""
3092
 
3093
+ #: classes/helpers/FrmFieldsHelper.php:440
3094
+ msgid "Please add options from the WordPress \"%1$s\" page"
3095
  msgstr ""
3096
 
3097
+ #: classes/helpers/FrmFieldsHelper.php:441
3098
+ msgid "Categories"
3099
  msgstr ""
3100
 
3101
+ #: classes/helpers/FrmFieldsHelper.php:1120
3102
+ #: classes/helpers/FrmAppHelper.php:1757
3103
+ msgid "Clear default value when typing"
3104
  msgstr ""
3105
 
3106
+ #: classes/helpers/FrmFieldsHelper.php:1120
3107
+ #: classes/helpers/FrmAppHelper.php:1758
3108
+ msgid "Do not clear default value when typing"
3109
  msgstr ""
3110
 
3111
+ #: classes/helpers/FrmFieldsHelper.php:1130
3112
+ #: classes/helpers/FrmAppHelper.php:1760
3113
+ msgid "Default value will NOT pass form validation"
3114
  msgstr ""
3115
 
3116
+ #: classes/helpers/FrmFieldsHelper.php:1130
3117
+ #: classes/helpers/FrmAppHelper.php:1759
3118
+ msgid "Default value will pass form validation"
3119
  msgstr ""
3120
 
3121
+ #: classes/helpers/FrmFieldsHelper.php:1236
3122
+ msgid "Afghanistan"
3123
  msgstr ""
3124
 
3125
+ #: classes/helpers/FrmFieldsHelper.php:1236
3126
+ msgid "Albania"
 
3127
  msgstr ""
3128
 
3129
+ #: classes/helpers/FrmFieldsHelper.php:1236
3130
+ msgid "Algeria"
 
3131
  msgstr ""
3132
 
3133
+ #: classes/helpers/FrmFieldsHelper.php:1236
3134
+ msgid "American Samoa"
 
3135
  msgstr ""
3136
 
3137
+ #: classes/helpers/FrmFieldsHelper.php:1236
3138
+ msgid "Andorra"
 
 
3139
  msgstr ""
3140
 
3141
+ #: classes/helpers/FrmFieldsHelper.php:1236
3142
+ msgid "Angola"
 
 
3143
  msgstr ""
3144
 
3145
+ #: classes/helpers/FrmFieldsHelper.php:1236
3146
+ msgid "Anguilla"
3147
  msgstr ""
3148
 
3149
+ #: classes/helpers/FrmFieldsHelper.php:1236
3150
+ msgid "Antarctica"
 
3151
  msgstr ""
3152
 
3153
+ #: classes/helpers/FrmFieldsHelper.php:1236
3154
+ msgid "Antigua and Barbuda"
3155
  msgstr ""
3156
 
3157
+ #: classes/helpers/FrmFieldsHelper.php:1236
3158
+ msgid "Argentina"
 
 
 
 
 
 
 
 
3159
  msgstr ""
3160
 
3161
+ #: classes/helpers/FrmFieldsHelper.php:1236
3162
+ msgid "Armenia"
3163
  msgstr ""
3164
 
3165
+ #: classes/helpers/FrmFieldsHelper.php:1236
3166
+ msgid "Aruba"
3167
  msgstr ""
3168
 
3169
+ #: classes/helpers/FrmFieldsHelper.php:1236
3170
+ msgid "Australia"
3171
  msgstr ""
3172
 
3173
+ #: classes/helpers/FrmFieldsHelper.php:1236
3174
+ msgid "Austria"
3175
  msgstr ""
3176
 
3177
+ #: classes/helpers/FrmFieldsHelper.php:1236
3178
+ msgid "Azerbaijan"
3179
  msgstr ""
3180
 
3181
+ #: classes/helpers/FrmFieldsHelper.php:1236
3182
+ msgid "Bahamas"
3183
  msgstr ""
3184
 
3185
+ #: classes/helpers/FrmFieldsHelper.php:1236
3186
+ msgid "Bahrain"
3187
  msgstr ""
3188
 
3189
+ #: classes/helpers/FrmFieldsHelper.php:1236
3190
+ msgid "Bangladesh"
3191
  msgstr ""
3192
 
3193
+ #: classes/helpers/FrmFieldsHelper.php:1236
3194
+ msgid "Barbados"
3195
  msgstr ""
3196
 
3197
+ #: classes/helpers/FrmFieldsHelper.php:1236
3198
+ msgid "Belarus"
 
3199
  msgstr ""
3200
 
3201
+ #: classes/helpers/FrmFieldsHelper.php:1236
3202
+ msgid "Belgium"
3203
  msgstr ""
3204
 
3205
+ #: classes/helpers/FrmFieldsHelper.php:1236
3206
+ msgid "Belize"
3207
  msgstr ""
3208
 
3209
+ #: classes/helpers/FrmFieldsHelper.php:1236
3210
+ msgid "Benin"
3211
  msgstr ""
3212
 
3213
+ #: classes/helpers/FrmFieldsHelper.php:1236
3214
+ msgid "Bermuda"
3215
  msgstr ""
3216
 
3217
+ #: classes/helpers/FrmFieldsHelper.php:1236
3218
+ msgid "Bhutan"
3219
  msgstr ""
3220
 
3221
+ #: classes/helpers/FrmFieldsHelper.php:1236
3222
+ msgid "Bolivia"
3223
  msgstr ""
3224
 
3225
+ #: classes/helpers/FrmFieldsHelper.php:1236
3226
+ msgid "Bosnia and Herzegovina"
3227
  msgstr ""
3228
 
3229
+ #: classes/helpers/FrmFieldsHelper.php:1236
3230
+ msgid "Botswana"
3231
  msgstr ""
3232
 
3233
+ #: classes/helpers/FrmFieldsHelper.php:1236
3234
+ msgid "Brazil"
3235
  msgstr ""
3236
 
3237
+ #: classes/helpers/FrmFieldsHelper.php:1236
3238
+ msgid "Brunei"
3239
  msgstr ""
3240
 
3241
+ #: classes/helpers/FrmFieldsHelper.php:1236
3242
+ msgid "Bulgaria"
3243
  msgstr ""
3244
 
3245
+ #: classes/helpers/FrmFieldsHelper.php:1236
3246
+ msgid "Burkina Faso"
3247
  msgstr ""
3248
 
3249
+ #: classes/helpers/FrmFieldsHelper.php:1236
3250
+ msgid "Burundi"
3251
  msgstr ""
3252
 
3253
+ #: classes/helpers/FrmFieldsHelper.php:1236
3254
+ msgid "Cambodia"
3255
  msgstr ""
3256
 
3257
+ #: classes/helpers/FrmFieldsHelper.php:1236
3258
+ msgid "Cameroon"
3259
  msgstr ""
3260
 
3261
+ #: classes/helpers/FrmFieldsHelper.php:1236
3262
+ msgid "Canada"
3263
  msgstr ""
3264
 
3265
+ #: classes/helpers/FrmFieldsHelper.php:1236
3266
+ msgid "Cape Verde"
3267
  msgstr ""
3268
 
3269
+ #: classes/helpers/FrmFieldsHelper.php:1236
3270
+ msgid "Cayman Islands"
3271
  msgstr ""
3272
 
3273
+ #: classes/helpers/FrmFieldsHelper.php:1236
3274
+ msgid "Central African Republic"
3275
  msgstr ""
3276
 
3277
+ #: classes/helpers/FrmFieldsHelper.php:1236
3278
+ msgid "Chad"
3279
  msgstr ""
3280
 
3281
+ #: classes/helpers/FrmFieldsHelper.php:1236
3282
+ msgid "Chile"
 
3283
  msgstr ""
3284
 
3285
+ #: classes/helpers/FrmFieldsHelper.php:1236
3286
+ msgid "China"
 
3287
  msgstr ""
3288
 
3289
+ #: classes/helpers/FrmFieldsHelper.php:1236
3290
+ msgid "Colombia"
3291
  msgstr ""
3292
 
3293
+ #: classes/helpers/FrmFieldsHelper.php:1236
3294
+ msgid "Comoros"
3295
  msgstr ""
3296
 
3297
+ #: classes/helpers/FrmFieldsHelper.php:1236
3298
+ msgid "Congo"
3299
  msgstr ""
3300
 
3301
+ #: classes/helpers/FrmFieldsHelper.php:1236
3302
+ msgid "Costa Rica"
3303
  msgstr ""
3304
 
3305
+ #: classes/helpers/FrmFieldsHelper.php:1236
3306
+ msgid "C&ocirc;te d'Ivoire"
3307
  msgstr ""
3308
 
3309
+ #: classes/helpers/FrmFieldsHelper.php:1236
3310
+ msgid "Croatia"
3311
  msgstr ""
3312
 
3313
+ #: classes/helpers/FrmFieldsHelper.php:1236
3314
+ msgid "Cuba"
3315
  msgstr ""
3316
 
3317
+ #: classes/helpers/FrmFieldsHelper.php:1236
3318
+ msgid "Cyprus"
3319
  msgstr ""
3320
 
3321
+ #: classes/helpers/FrmFieldsHelper.php:1236
3322
+ msgid "Czech Republic"
3323
  msgstr ""
3324
 
3325
+ #: classes/helpers/FrmFieldsHelper.php:1236
3326
+ msgid "Denmark"
3327
  msgstr ""
3328
 
3329
+ #: classes/helpers/FrmFieldsHelper.php:1236
3330
+ msgid "Djibouti"
3331
  msgstr ""
3332
 
3333
+ #: classes/helpers/FrmFieldsHelper.php:1236
3334
+ msgid "Dominica"
3335
  msgstr ""
3336
 
3337
+ #: classes/helpers/FrmFieldsHelper.php:1236
3338
+ msgid "Dominican Republic"
 
3339
  msgstr ""
3340
 
3341
+ #: classes/helpers/FrmFieldsHelper.php:1236
3342
+ msgid "East Timor"
3343
  msgstr ""
3344
 
3345
+ #: classes/helpers/FrmFieldsHelper.php:1236
3346
+ msgid "Ecuador"
3347
  msgstr ""
3348
 
3349
+ #: classes/helpers/FrmFieldsHelper.php:1236
3350
+ msgid "Egypt"
3351
  msgstr ""
3352
 
3353
+ #: classes/helpers/FrmFieldsHelper.php:1236
3354
+ msgid "El Salvador"
3355
  msgstr ""
3356
 
3357
+ #: classes/helpers/FrmFieldsHelper.php:1236
3358
+ msgid "Equatorial Guinea"
3359
  msgstr ""
3360
 
3361
+ #: classes/helpers/FrmFieldsHelper.php:1236
3362
+ msgid "Eritrea"
 
3363
  msgstr ""
3364
 
3365
+ #: classes/helpers/FrmFieldsHelper.php:1236
3366
+ msgid "Estonia"
3367
  msgstr ""
3368
 
3369
+ #: classes/helpers/FrmFieldsHelper.php:1236
3370
+ msgid "Ethiopia"
3371
  msgstr ""
3372
 
3373
+ #: classes/helpers/FrmFieldsHelper.php:1236
3374
+ msgid "Fiji"
 
3375
  msgstr ""
3376
 
3377
+ #: classes/helpers/FrmFieldsHelper.php:1236
3378
+ msgid "Finland"
3379
  msgstr ""
3380
 
3381
+ #: classes/helpers/FrmFieldsHelper.php:1236
3382
+ msgid "France"
3383
+ msgstr ""
3384
+
3385
+ #: classes/helpers/FrmFieldsHelper.php:1236
3386
+ msgid "French Guiana"
3387
  msgstr ""
3388
 
3389
+ #: classes/helpers/FrmFieldsHelper.php:1236
3390
+ msgid "French Polynesia"
 
 
 
3391
  msgstr ""
3392
 
3393
+ #: classes/helpers/FrmFieldsHelper.php:1236
3394
+ msgid "Gabon"
3395
  msgstr ""
3396
 
3397
+ #: classes/helpers/FrmFieldsHelper.php:1236
3398
+ msgid "Gambia"
3399
  msgstr ""
3400
 
3401
+ #: classes/helpers/FrmFieldsHelper.php:1236
3402
+ msgid "Georgia"
3403
  msgstr ""
3404
 
3405
+ #: classes/helpers/FrmFieldsHelper.php:1236
3406
+ msgid "Germany"
3407
  msgstr ""
3408
 
3409
+ #: classes/helpers/FrmFieldsHelper.php:1236
3410
+ msgid "Ghana"
3411
  msgstr ""
3412
 
3413
+ #: classes/helpers/FrmFieldsHelper.php:1236
3414
+ msgid "Gibraltar"
3415
  msgstr ""
3416
 
3417
+ #: classes/helpers/FrmFieldsHelper.php:1236
3418
+ msgid "Greece"
3419
  msgstr ""
3420
 
3421
+ #: classes/helpers/FrmFieldsHelper.php:1236
3422
+ msgid "Greenland"
3423
  msgstr ""
3424
 
3425
+ #: classes/helpers/FrmFieldsHelper.php:1236
3426
+ msgid "Grenada"
3427
  msgstr ""
3428
 
3429
+ #: classes/helpers/FrmFieldsHelper.php:1236
3430
+ msgid "Guam"
3431
  msgstr ""
3432
 
3433
+ #: classes/helpers/FrmFieldsHelper.php:1236
3434
+ msgid "Guatemala"
3435
  msgstr ""
3436
 
3437
+ #: classes/helpers/FrmFieldsHelper.php:1236
3438
+ msgid "Guinea"
3439
  msgstr ""
3440
 
3441
+ #: classes/helpers/FrmFieldsHelper.php:1236
3442
+ msgid "Guinea-Bissau"
3443
  msgstr ""
3444
 
3445
+ #: classes/helpers/FrmFieldsHelper.php:1236
3446
+ msgid "Guyana"
3447
  msgstr ""
3448
 
3449
+ #: classes/helpers/FrmFieldsHelper.php:1236
3450
+ msgid "Haiti"
 
3451
  msgstr ""
3452
 
3453
+ #: classes/helpers/FrmFieldsHelper.php:1236
3454
+ msgid "Honduras"
3455
  msgstr ""
3456
 
3457
+ #: classes/helpers/FrmFieldsHelper.php:1236
3458
+ msgid "Hong Kong"
 
3459
  msgstr ""
3460
 
3461
+ #: classes/helpers/FrmFieldsHelper.php:1236
3462
+ msgid "Hungary"
3463
  msgstr ""
3464
 
3465
+ #: classes/helpers/FrmFieldsHelper.php:1236
3466
+ msgid "Iceland"
3467
  msgstr ""
3468
 
3469
+ #: classes/helpers/FrmFieldsHelper.php:1236
3470
+ msgid "India"
3471
  msgstr ""
3472
 
3473
+ #: classes/helpers/FrmFieldsHelper.php:1236
3474
+ msgid "Indonesia"
3475
  msgstr ""
3476
 
3477
+ #: classes/helpers/FrmFieldsHelper.php:1236
3478
+ msgid "Iran"
3479
  msgstr ""
3480
 
3481
+ #: classes/helpers/FrmFieldsHelper.php:1236
3482
+ msgid "Iraq"
3483
  msgstr ""
3484
 
3485
+ #: classes/helpers/FrmFieldsHelper.php:1236
3486
+ msgid "Ireland"
3487
  msgstr ""
3488
 
3489
+ #: classes/helpers/FrmFieldsHelper.php:1236
3490
+ msgid "Israel"
 
3491
  msgstr ""
3492
 
3493
+ #: classes/helpers/FrmFieldsHelper.php:1236
3494
+ msgid "Italy"
3495
  msgstr ""
3496
 
3497
+ #: classes/helpers/FrmFieldsHelper.php:1236
3498
+ msgid "Jamaica"
3499
  msgstr ""
3500
 
3501
+ #: classes/helpers/FrmFieldsHelper.php:1236
3502
+ msgid "Japan"
3503
  msgstr ""
3504
 
3505
+ #: classes/helpers/FrmFieldsHelper.php:1236
3506
+ msgid "Jordan"
3507
  msgstr ""
3508
 
3509
+ #: classes/helpers/FrmFieldsHelper.php:1236
3510
+ msgid "Kazakhstan"
3511
  msgstr ""
3512
 
3513
+ #: classes/helpers/FrmFieldsHelper.php:1236
3514
+ msgid "Kenya"
3515
  msgstr ""
3516
 
3517
+ #: classes/helpers/FrmFieldsHelper.php:1236
3518
+ msgid "Kiribati"
3519
  msgstr ""
3520
 
3521
+ #: classes/helpers/FrmFieldsHelper.php:1236
3522
+ msgid "North Korea"
3523
  msgstr ""
3524
 
3525
+ #: classes/helpers/FrmFieldsHelper.php:1236
3526
+ msgid "South Korea"
3527
  msgstr ""
3528
 
3529
+ #: classes/helpers/FrmFieldsHelper.php:1236
3530
+ msgid "Kuwait"
3531
  msgstr ""
3532
 
3533
+ #: classes/helpers/FrmFieldsHelper.php:1236
3534
+ msgid "Kyrgyzstan"
3535
  msgstr ""
3536
 
3537
+ #: classes/helpers/FrmFieldsHelper.php:1236
3538
+ msgid "Laos"
3539
  msgstr ""
3540
 
3541
+ #: classes/helpers/FrmFieldsHelper.php:1236
3542
+ msgid "Latvia"
3543
  msgstr ""
3544
 
3545
+ #: classes/helpers/FrmFieldsHelper.php:1236
3546
+ msgid "Lebanon"
3547
  msgstr ""
3548
 
3549
+ #: classes/helpers/FrmFieldsHelper.php:1236
3550
+ msgid "Lesotho"
3551
  msgstr ""
3552
 
3553
+ #: classes/helpers/FrmFieldsHelper.php:1236
3554
+ msgid "Liberia"
 
3555
  msgstr ""
3556
 
3557
+ #: classes/helpers/FrmFieldsHelper.php:1236
3558
+ msgid "Libya"
3559
  msgstr ""
3560
 
3561
+ #: classes/helpers/FrmFieldsHelper.php:1236
3562
+ msgid "Liechtenstein"
3563
  msgstr ""
3564
 
3565
+ #: classes/helpers/FrmFieldsHelper.php:1236
3566
+ msgid "Lithuania"
3567
  msgstr ""
3568
 
3569
+ #: classes/helpers/FrmFieldsHelper.php:1236
3570
+ msgid "Luxembourg"
3571
  msgstr ""
3572
 
3573
+ #: classes/helpers/FrmFieldsHelper.php:1236
3574
+ msgid "Macedonia"
3575
  msgstr ""
3576
 
3577
+ #: classes/helpers/FrmFieldsHelper.php:1236
3578
+ msgid "Madagascar"
3579
  msgstr ""
3580
 
3581
+ #: classes/helpers/FrmFieldsHelper.php:1236
3582
+ msgid "Malawi"
3583
  msgstr ""
3584
 
3585
+ #: classes/helpers/FrmFieldsHelper.php:1236
3586
+ msgid "Malaysia"
3587
  msgstr ""
3588
 
3589
+ #: classes/helpers/FrmFieldsHelper.php:1236
3590
+ msgid "Maldives"
 
3591
  msgstr ""
3592
 
3593
+ #: classes/helpers/FrmFieldsHelper.php:1236
3594
+ msgid "Mali"
 
3595
  msgstr ""
3596
 
3597
+ #: classes/helpers/FrmFieldsHelper.php:1236
3598
+ msgid "Malta"
3599
  msgstr ""
3600
 
3601
+ #: classes/helpers/FrmFieldsHelper.php:1236
3602
+ msgid "Marshall Islands"
3603
  msgstr ""
3604
 
3605
+ #: classes/helpers/FrmFieldsHelper.php:1236
3606
+ msgid "Mauritania"
3607
  msgstr ""
3608
 
3609
+ #: classes/helpers/FrmFieldsHelper.php:1236
3610
+ msgid "Mauritius"
3611
  msgstr ""
3612
 
3613
+ #: classes/helpers/FrmFieldsHelper.php:1236
3614
+ msgid "Mexico"
3615
  msgstr ""
3616
 
3617
+ #: classes/helpers/FrmFieldsHelper.php:1236
3618
+ msgid "Micronesia"
3619
  msgstr ""
3620
 
3621
+ #: classes/helpers/FrmFieldsHelper.php:1236
3622
+ msgid "Moldova"
3623
  msgstr ""
3624
 
3625
+ #: classes/helpers/FrmFieldsHelper.php:1236
3626
+ msgid "Monaco"
3627
  msgstr ""
3628
 
3629
+ #: classes/helpers/FrmFieldsHelper.php:1236
3630
+ msgid "Mongolia"
3631
  msgstr ""
3632
 
3633
+ #: classes/helpers/FrmFieldsHelper.php:1236
3634
+ msgid "Montenegro"
3635
  msgstr ""
3636
 
3637
+ #: classes/helpers/FrmFieldsHelper.php:1236
3638
+ msgid "Montserrat"
3639
  msgstr ""
3640
 
3641
+ #: classes/helpers/FrmFieldsHelper.php:1236
3642
+ msgid "Morocco"
3643
  msgstr ""
3644
 
3645
+ #: classes/helpers/FrmFieldsHelper.php:1236
3646
+ msgid "Mozambique"
3647
  msgstr ""
3648
 
3649
+ #: classes/helpers/FrmFieldsHelper.php:1236
3650
+ msgid "Myanmar"
3651
  msgstr ""
3652
 
3653
+ #: classes/helpers/FrmFieldsHelper.php:1236
3654
+ msgid "Namibia"
3655
  msgstr ""
3656
 
3657
+ #: classes/helpers/FrmFieldsHelper.php:1236
3658
+ msgid "Nauru"
3659
  msgstr ""
3660
 
3661
+ #: classes/helpers/FrmFieldsHelper.php:1236
3662
+ msgid "Nepal"
3663
  msgstr ""
3664
 
3665
+ #: classes/helpers/FrmFieldsHelper.php:1236
3666
+ msgid "Netherlands"
3667
  msgstr ""
3668
 
3669
+ #: classes/helpers/FrmFieldsHelper.php:1236
3670
+ msgid "New Zealand"
3671
  msgstr ""
3672
 
3673
+ #: classes/helpers/FrmFieldsHelper.php:1236
3674
+ msgid "Nicaragua"
 
3675
  msgstr ""
3676
 
3677
+ #: classes/helpers/FrmFieldsHelper.php:1236
3678
+ msgid "Niger"
 
3679
  msgstr ""
3680
 
3681
+ #: classes/helpers/FrmFieldsHelper.php:1236
3682
+ msgid "Nigeria"
3683
  msgstr ""
3684
 
3685
+ #: classes/helpers/FrmFieldsHelper.php:1236
3686
+ msgid "Norway"
3687
  msgstr ""
3688
 
3689
+ #: classes/helpers/FrmFieldsHelper.php:1236
3690
+ msgid "Northern Mariana Islands"
 
3691
  msgstr ""
3692
 
3693
+ #: classes/helpers/FrmFieldsHelper.php:1236
3694
+ msgid "Oman"
3695
  msgstr ""
3696
 
3697
+ #: classes/helpers/FrmFieldsHelper.php:1236
3698
+ msgid "Pakistan"
3699
  msgstr ""
3700
 
3701
+ #: classes/helpers/FrmFieldsHelper.php:1236
3702
+ msgid "Palau"
 
3703
  msgstr ""
3704
 
3705
+ #: classes/helpers/FrmFieldsHelper.php:1236
3706
+ msgid "Palestine"
3707
  msgstr ""
3708
 
3709
+ #: classes/helpers/FrmFieldsHelper.php:1236
3710
+ msgid "Panama"
3711
  msgstr ""
3712
 
3713
+ #: classes/helpers/FrmFieldsHelper.php:1236
3714
+ msgid "Papua New Guinea"
3715
  msgstr ""
3716
 
3717
+ #: classes/helpers/FrmFieldsHelper.php:1236
3718
+ msgid "Paraguay"
3719
  msgstr ""
3720
 
3721
+ #: classes/helpers/FrmFieldsHelper.php:1236
3722
+ msgid "Peru"
3723
  msgstr ""
3724
 
3725
+ #: classes/helpers/FrmFieldsHelper.php:1236
3726
+ msgid "Philippines"
3727
  msgstr ""
3728
 
3729
+ #: classes/helpers/FrmFieldsHelper.php:1236
3730
+ msgid "Poland"
3731
  msgstr ""
3732
 
3733
+ #: classes/helpers/FrmFieldsHelper.php:1236
3734
+ msgid "Portugal"
3735
  msgstr ""
3736
 
3737
+ #: classes/helpers/FrmFieldsHelper.php:1236
3738
+ msgid "Puerto Rico"
3739
  msgstr ""
3740
 
3741
+ #: classes/helpers/FrmFieldsHelper.php:1236
3742
+ msgid "Qatar"
3743
  msgstr ""
3744
 
3745
+ #: classes/helpers/FrmFieldsHelper.php:1236
3746
+ msgid "Romania"
3747
  msgstr ""
3748
 
3749
+ #: classes/helpers/FrmFieldsHelper.php:1236
3750
+ msgid "Russia"
 
3751
  msgstr ""
3752
 
3753
+ #: classes/helpers/FrmFieldsHelper.php:1236
3754
+ msgid "Rwanda"
3755
  msgstr ""
3756
 
3757
+ #: classes/helpers/FrmFieldsHelper.php:1236
3758
+ msgid "Saint Kitts and Nevis"
 
3759
  msgstr ""
3760
 
3761
+ #: classes/helpers/FrmFieldsHelper.php:1236
3762
+ msgid "Saint Lucia"
3763
  msgstr ""
3764
 
3765
+ #: classes/helpers/FrmFieldsHelper.php:1236
3766
+ msgid "Saint Vincent and the Grenadines"
 
3767
  msgstr ""
3768
 
3769
+ #: classes/helpers/FrmFieldsHelper.php:1236
3770
+ msgid "Samoa"
3771
  msgstr ""
3772
 
3773
+ #: classes/helpers/FrmFieldsHelper.php:1236
3774
+ msgid "San Marino"
3775
  msgstr ""
3776
 
3777
+ #: classes/helpers/FrmFieldsHelper.php:1236
3778
+ msgid "Sao Tome and Principe"
 
3779
  msgstr ""
3780
 
3781
+ #: classes/helpers/FrmFieldsHelper.php:1236
3782
+ msgid "Saudi Arabia"
3783
  msgstr ""
3784
 
3785
+ #: classes/helpers/FrmFieldsHelper.php:1236
3786
+ msgid "Senegal"
3787
  msgstr ""
3788
 
3789
+ #: classes/helpers/FrmFieldsHelper.php:1236
3790
+ msgid "Serbia and Montenegro"
 
3791
  msgstr ""
3792
 
3793
+ #: classes/helpers/FrmFieldsHelper.php:1236
3794
+ msgid "Seychelles"
3795
  msgstr ""
3796
 
3797
+ #: classes/helpers/FrmFieldsHelper.php:1236
3798
+ msgid "Sierra Leone"
3799
  msgstr ""
3800
 
3801
+ #: classes/helpers/FrmFieldsHelper.php:1236
3802
+ msgid "Singapore"
3803
  msgstr ""
3804
 
3805
+ #: classes/helpers/FrmFieldsHelper.php:1236
3806
+ msgid "Slovakia"
3807
  msgstr ""
3808
 
3809
+ #: classes/helpers/FrmFieldsHelper.php:1236
3810
+ msgid "Slovenia"
3811
  msgstr ""
3812
 
3813
+ #: classes/helpers/FrmFieldsHelper.php:1236
3814
+ msgid "Solomon Islands"
3815
  msgstr ""
3816
 
3817
+ #: classes/helpers/FrmFieldsHelper.php:1236
3818
+ msgid "Somalia"
3819
  msgstr ""
3820
 
3821
+ #: classes/helpers/FrmFieldsHelper.php:1236
3822
+ msgid "South Africa"
3823
  msgstr ""
3824
 
3825
+ #: classes/helpers/FrmFieldsHelper.php:1236
3826
+ msgid "South Sudan"
3827
  msgstr ""
3828
 
3829
+ #: classes/helpers/FrmFieldsHelper.php:1236
3830
+ msgid "Spain"
3831
  msgstr ""
3832
 
3833
+ #: classes/helpers/FrmFieldsHelper.php:1236
3834
+ msgid "Sri Lanka"
3835
  msgstr ""
3836
 
3837
+ #: classes/helpers/FrmFieldsHelper.php:1236
3838
+ msgid "Sudan"
3839
  msgstr ""
3840
 
3841
+ #: classes/helpers/FrmFieldsHelper.php:1236
3842
+ msgid "Suriname"
3843
  msgstr ""
3844
 
3845
+ #: classes/helpers/FrmFieldsHelper.php:1236
3846
+ msgid "Swaziland"
 
3847
  msgstr ""
3848
 
3849
+ #: classes/helpers/FrmFieldsHelper.php:1236
3850
+ msgid "Sweden"
3851
  msgstr ""
3852
 
3853
+ #: classes/helpers/FrmFieldsHelper.php:1236
3854
+ msgid "Switzerland"
3855
  msgstr ""
3856
 
3857
+ #: classes/helpers/FrmFieldsHelper.php:1236
3858
+ msgid "Syria"
3859
  msgstr ""
3860
 
3861
+ #: classes/helpers/FrmFieldsHelper.php:1236
3862
+ msgid "Taiwan"
3863
  msgstr ""
3864
 
3865
+ #: classes/helpers/FrmFieldsHelper.php:1236
3866
+ msgid "Tajikistan"
3867
  msgstr ""
3868
 
3869
+ #: classes/helpers/FrmFieldsHelper.php:1236
3870
+ msgid "Tanzania"
 
 
3871
  msgstr ""
3872
 
3873
+ #: classes/helpers/FrmFieldsHelper.php:1236
3874
+ msgid "Thailand"
 
3875
  msgstr ""
3876
 
3877
+ #: classes/helpers/FrmFieldsHelper.php:1236
3878
+ msgid "Togo"
3879
  msgstr ""
3880
 
3881
+ #: classes/helpers/FrmFieldsHelper.php:1236
3882
+ msgid "Tonga"
3883
  msgstr ""
3884
 
3885
+ #: classes/helpers/FrmFieldsHelper.php:1236
3886
+ msgid "Trinidad and Tobago"
3887
  msgstr ""
3888
 
3889
+ #: classes/helpers/FrmFieldsHelper.php:1236
3890
+ msgid "Tunisia"
3891
  msgstr ""
3892
 
3893
+ #: classes/helpers/FrmFieldsHelper.php:1236
3894
+ msgid "Turkey"
3895
  msgstr ""
3896
 
3897
+ #: classes/helpers/FrmFieldsHelper.php:1236
3898
+ msgid "Turkmenistan"
3899
  msgstr ""
3900
 
3901
+ #: classes/helpers/FrmFieldsHelper.php:1236
3902
+ msgid "Tuvalu"
3903
  msgstr ""
3904
 
3905
+ #: classes/helpers/FrmFieldsHelper.php:1236
3906
+ msgid "Uganda"
3907
  msgstr ""
3908
 
3909
+ #: classes/helpers/FrmFieldsHelper.php:1236
3910
+ msgid "Ukraine"
3911
  msgstr ""
3912
 
3913
+ #: classes/helpers/FrmFieldsHelper.php:1236
3914
+ msgid "United Arab Emirates"
3915
  msgstr ""
3916
 
3917
+ #: classes/helpers/FrmFieldsHelper.php:1236
3918
+ msgid "United Kingdom"
3919
  msgstr ""
3920
 
3921
+ #: classes/helpers/FrmFieldsHelper.php:1236
3922
+ msgid "United States"
3923
  msgstr ""
3924
 
3925
+ #: classes/helpers/FrmFieldsHelper.php:1236
3926
+ msgid "Uruguay"
3927
  msgstr ""
3928
 
3929
+ #: classes/helpers/FrmFieldsHelper.php:1236
3930
+ msgid "Uzbekistan"
3931
  msgstr ""
3932
 
3933
+ #: classes/helpers/FrmFieldsHelper.php:1236
3934
+ msgid "Vanuatu"
3935
  msgstr ""
3936
 
3937
+ #: classes/helpers/FrmFieldsHelper.php:1236
3938
+ msgid "Vatican City"
3939
  msgstr ""
3940
 
3941
+ #: classes/helpers/FrmFieldsHelper.php:1236
3942
+ msgid "Venezuela"
3943
  msgstr ""
3944
 
3945
+ #: classes/helpers/FrmFieldsHelper.php:1236
3946
+ msgid "Vietnam"
3947
  msgstr ""
3948
 
3949
+ #: classes/helpers/FrmFieldsHelper.php:1236
3950
+ msgid "Virgin Islands, British"
 
 
 
3951
  msgstr ""
3952
 
3953
+ #: classes/helpers/FrmFieldsHelper.php:1236
3954
+ msgid "Virgin Islands, U.S."
3955
  msgstr ""
3956
 
3957
+ #: classes/helpers/FrmFieldsHelper.php:1236
3958
+ msgid "Yemen"
3959
  msgstr ""
3960
 
3961
+ #: classes/helpers/FrmFieldsHelper.php:1236
3962
+ msgid "Zambia"
3963
  msgstr ""
3964
 
3965
+ #: classes/helpers/FrmFieldsHelper.php:1236
3966
+ msgid "Zimbabwe"
3967
  msgstr ""
3968
 
3969
+ #: classes/helpers/FrmFieldsHelper.php:1240
3970
+ msgid "Countries"
3971
  msgstr ""
3972
 
3973
+ #: classes/helpers/FrmFieldsHelper.php:1245
3974
+ msgid "U.S. State Abbreviations"
3975
  msgstr ""
3976
 
3977
+ #: classes/helpers/FrmFieldsHelper.php:1249
3978
+ msgid "U.S. States"
3979
  msgstr ""
3980
 
3981
+ #: classes/helpers/FrmFieldsHelper.php:1252
3982
+ msgid "Age"
3983
  msgstr ""
3984
 
3985
+ #: classes/helpers/FrmFieldsHelper.php:1253
3986
+ msgid "Under 18"
3987
  msgstr ""
3988
 
3989
+ #: classes/helpers/FrmFieldsHelper.php:1254
3990
+ msgid "18-24"
3991
  msgstr ""
3992
 
3993
+ #: classes/helpers/FrmFieldsHelper.php:1255
3994
+ msgid "25-34"
3995
  msgstr ""
3996
 
3997
+ #: classes/helpers/FrmFieldsHelper.php:1256
3998
+ msgid "35-44"
3999
  msgstr ""
4000
 
4001
+ #: classes/helpers/FrmFieldsHelper.php:1257
4002
+ msgid "45-54"
4003
  msgstr ""
4004
 
4005
+ #: classes/helpers/FrmFieldsHelper.php:1258
4006
+ msgid "55-64"
 
 
4007
  msgstr ""
4008
 
4009
+ #: classes/helpers/FrmFieldsHelper.php:1259
4010
+ msgid "65 or Above"
 
4011
  msgstr ""
4012
 
4013
+ #: classes/helpers/FrmFieldsHelper.php:1260
4014
+ msgid "Prefer Not to Answer"
4015
  msgstr ""
4016
 
4017
+ #: classes/helpers/FrmFieldsHelper.php:1263
4018
+ msgid "Satisfaction"
4019
  msgstr ""
4020
 
4021
+ #: classes/helpers/FrmFieldsHelper.php:1264
4022
+ msgid "Very Satisfied"
4023
  msgstr ""
4024
 
4025
+ #: classes/helpers/FrmFieldsHelper.php:1265
4026
+ msgid "Satisfied"
4027
  msgstr ""
4028
 
4029
+ #: classes/helpers/FrmFieldsHelper.php:1266
4030
+ #: classes/helpers/FrmFieldsHelper.php:1275
4031
+ #: classes/helpers/FrmFieldsHelper.php:1284
4032
+ msgid "Neutral"
4033
  msgstr ""
4034
 
4035
+ #: classes/helpers/FrmFieldsHelper.php:1267
4036
+ msgid "Unsatisfied"
4037
  msgstr ""
4038
 
4039
+ #: classes/helpers/FrmFieldsHelper.php:1268
4040
+ msgid "Very Unsatisfied"
4041
  msgstr ""
4042
 
4043
+ #: classes/helpers/FrmFieldsHelper.php:1269
4044
+ #: classes/helpers/FrmFieldsHelper.php:1278
4045
+ #: classes/helpers/FrmFieldsHelper.php:1287
4046
+ msgid "N/A"
4047
  msgstr ""
4048
 
4049
+ #: classes/helpers/FrmFieldsHelper.php:1272
4050
+ msgid "Importance"
4051
  msgstr ""
4052
 
4053
+ #: classes/helpers/FrmFieldsHelper.php:1273
4054
+ msgid "Very Important"
4055
  msgstr ""
4056
 
4057
+ #: classes/helpers/FrmFieldsHelper.php:1274
4058
+ msgid "Important"
4059
  msgstr ""
4060
 
4061
+ #: classes/helpers/FrmFieldsHelper.php:1276
4062
+ msgid "Somewhat Important"
 
4063
  msgstr ""
4064
 
4065
+ #: classes/helpers/FrmFieldsHelper.php:1277
4066
+ msgid "Not at all Important"
4067
  msgstr ""
4068
 
4069
+ #: classes/helpers/FrmFieldsHelper.php:1281
4070
+ msgid "Agreement"
4071
  msgstr ""
4072
 
4073
+ #: classes/helpers/FrmFieldsHelper.php:1282
4074
+ msgid "Strongly Agree"
4075
  msgstr ""
4076
 
4077
+ #: classes/helpers/FrmFieldsHelper.php:1283
4078
+ msgid "Agree"
4079
  msgstr ""
4080
 
4081
+ #: classes/helpers/FrmFieldsHelper.php:1285
4082
+ msgid "Disagree"
4083
  msgstr ""
4084
 
4085
+ #: classes/helpers/FrmFieldsHelper.php:1286
4086
+ msgid "Strongly Disagree"
4087
  msgstr ""
4088
 
4089
+ #: classes/helpers/FrmStylesHelper.php:16
4090
+ msgid "Edit Styles"
4091
  msgstr ""
4092
 
4093
+ #: classes/helpers/FrmStylesHelper.php:17
4094
+ msgid "Manage Form Styles"
4095
  msgstr ""
4096
 
4097
+ #: classes/helpers/FrmStylesHelper.php:18
4098
+ msgid "Custom CSS"
4099
  msgstr ""
4100
 
4101
+ #: classes/helpers/FrmStylesHelper.php:28
4102
+ msgid "top"
4103
  msgstr ""
4104
 
4105
+ #: classes/helpers/FrmStylesHelper.php:31
4106
+ msgid "none"
4107
  msgstr ""
4108
 
4109
+ #: classes/helpers/FrmStylesHelper.php:32
4110
+ msgid "inside"
4111
  msgstr ""
4112
 
4113
+ #: classes/helpers/FrmStylesHelper.php:38
4114
+ msgid "Top"
4115
  msgstr ""
4116
 
4117
+ #: classes/helpers/FrmStylesHelper.php:39
4118
+ msgid "Left"
4119
  msgstr ""
4120
 
4121
+ #: classes/helpers/FrmStylesHelper.php:40
4122
+ #: classes/helpers/FrmFormsHelper.php:877
4123
+ msgid "Right"
4124
  msgstr ""
4125
 
4126
+ #: classes/helpers/FrmStylesHelper.php:41
4127
+ msgid "Inline (left without a set width)"
4128
  msgstr ""
4129
 
4130
+ #: classes/helpers/FrmStylesHelper.php:42
4131
+ msgid "None"
4132
  msgstr ""
4133
 
4134
+ #: classes/helpers/FrmStylesHelper.php:43
4135
+ msgid "Hidden (but leave the space)"
4136
  msgstr ""
4137
 
4138
+ #: classes/helpers/FrmStylesHelper.php:44
4139
+ msgid "Placeholder inside the field"
4140
  msgstr ""
4141
 
4142
+ #: classes/helpers/FrmListHelper.php:123
4143
+ msgid "List View"
4144
  msgstr ""
4145
 
4146
+ #: classes/helpers/FrmListHelper.php:124
4147
+ msgid "Excerpt View"
4148
  msgstr ""
4149
 
4150
+ #: classes/helpers/FrmListHelper.php:240
4151
+ msgid "No items found."
 
4152
  msgstr ""
4153
 
4154
+ #: classes/helpers/FrmListHelper.php:365
4155
+ msgid "Select bulk action"
4156
  msgstr ""
4157
 
4158
+ #: classes/helpers/FrmListHelper.php:367
4159
+ msgid "Bulk Actions"
 
4160
  msgstr ""
4161
 
4162
+ #: classes/helpers/FrmListHelper.php:377
4163
+ msgid "Apply"
4164
  msgstr ""
4165
 
4166
+ #: classes/helpers/FrmListHelper.php:442
4167
+ #: classes/helpers/FrmListHelper.php:1095
4168
+ msgid "Show more details"
4169
  msgstr ""
4170
 
4171
+ #: classes/helpers/FrmListHelper.php:548
4172
+ #: classes/helpers/FrmListHelper.php:1120
4173
+ msgid "%s item"
4174
+ msgid_plural "%s items"
4175
+ msgstr[0] ""
4176
 
4177
+ #: classes/helpers/FrmListHelper.php:579
4178
+ #: classes/helpers/FrmListHelper.php:583
4179
+ msgid "Current Page"
4180
  msgstr ""
4181
 
4182
+ #: classes/helpers/FrmListHelper.php:589
4183
+ msgctxt "paging"
4184
+ msgid "%1$s of %2$s"
4185
  msgstr ""
4186
 
4187
+ #: classes/helpers/FrmListHelper.php:653
4188
+ msgid "First page"
4189
  msgstr ""
4190
 
4191
+ #: classes/helpers/FrmListHelper.php:654
4192
+ msgid "Last page"
4193
  msgstr ""
4194
 
4195
+ #: classes/helpers/FrmListHelper.php:655
4196
+ msgid "Previous page"
4197
  msgstr ""
4198
 
4199
+ #: classes/helpers/FrmListHelper.php:656
4200
+ msgid "Next page"
4201
  msgstr ""
4202
 
4203
+ #: classes/helpers/FrmListHelper.php:871
4204
+ msgid "Select All"
4205
  msgstr ""
4206
 
4207
+ #: classes/helpers/FrmEntriesHelper.php:456
4208
+ #: classes/helpers/FrmEntriesHelper.php:457
4209
+ msgid "Unknown"
4210
  msgstr ""
4211
 
4212
+ #: classes/helpers/FrmEntriesHelper.php:543
4213
+ msgid "Really delete?"
4214
  msgstr ""
4215
 
4216
+ #: classes/helpers/FrmFormsHelper.php:55
4217
+ msgid " (child)"
4218
  msgstr ""
4219
 
4220
+ #: classes/helpers/FrmFormsHelper.php:102
4221
+ msgid "Switch Form"
4222
  msgstr ""
4223
 
4224
+ #: classes/helpers/FrmFormsHelper.php:755
4225
+ msgid "Create Form from Template"
 
4226
  msgstr ""
4227
 
4228
+ #: classes/helpers/FrmFormsHelper.php:761
4229
+ msgid "Duplicate Form"
4230
  msgstr ""
4231
 
4232
+ #: classes/helpers/FrmFormsHelper.php:846
4233
+ msgid "Restore from Trash"
4234
  msgstr ""
4235
 
4236
+ #: classes/helpers/FrmFormsHelper.php:851
4237
+ msgid "Move Form to Trash"
4238
  msgstr ""
4239
 
4240
+ #: classes/helpers/FrmFormsHelper.php:861
4241
+ msgid "Are you sure you want to delete this form and all its entries?"
4242
  msgstr ""
4243
 
4244
+ #: classes/helpers/FrmFormsHelper.php:863
4245
+ msgid "Delete form & entries?"
4246
  msgstr ""
4247
 
4248
+ #: classes/helpers/FrmFormsHelper.php:874
4249
+ msgid "First"
4250
  msgstr ""
4251
 
4252
+ #: classes/helpers/FrmFormsHelper.php:875
4253
+ msgid "Add this to the first field in each row along with a width. ie frm_first frm4"
4254
  msgstr ""
4255
 
4256
+ #: classes/helpers/FrmFormsHelper.php:879
4257
+ msgid "Total"
4258
  msgstr ""
4259
 
4260
+ #: classes/helpers/FrmFormsHelper.php:880
4261
+ msgid "Add this to a read-only field to display the text in bold without a border or background."
4262
  msgstr ""
4263
 
4264
+ #: classes/helpers/FrmFormsHelper.php:882
4265
+ msgid "First Grid Row"
4266
  msgstr ""
4267
 
4268
+ #: classes/helpers/FrmFormsHelper.php:883
4269
+ msgid "Even Grid Row"
4270
  msgstr ""
4271
 
4272
+ #: classes/helpers/FrmFormsHelper.php:884
4273
+ msgid "Odd Grid Row"
4274
  msgstr ""
4275
 
4276
+ #: classes/helpers/FrmFormsHelper.php:886
4277
+ msgid "2 Col Options"
4278
  msgstr ""
4279
 
4280
+ #: classes/helpers/FrmFormsHelper.php:887
4281
+ msgid "Put your radio button or checkbox options into two columns."
4282
  msgstr ""
4283
 
4284
+ #: classes/helpers/FrmFormsHelper.php:890
4285
+ msgid "3 Col Options"
 
4286
  msgstr ""
4287
 
4288
+ #: classes/helpers/FrmFormsHelper.php:891
4289
+ msgid "Put your radio button or checkbox options into three columns."
4290
  msgstr ""
4291
 
4292
+ #: classes/helpers/FrmFormsHelper.php:894
4293
+ msgid "4 Col Options"
4294
  msgstr ""
4295
 
4296
+ #: classes/helpers/FrmFormsHelper.php:895
4297
+ msgid "Put your radio button or checkbox options into four columns."
4298
  msgstr ""
4299
 
4300
+ #: classes/helpers/FrmFormsHelper.php:898
4301
+ msgid "Scroll Box"
4302
  msgstr ""
4303
 
4304
+ #: classes/helpers/FrmFormsHelper.php:899
4305
+ msgid "If you have many checkbox or radio button options, you may add this class to allow your user to easily scroll through the options. Or add a scrolling area around content in an HTML field."
4306
  msgstr ""
4307
 
4308
+ #: classes/helpers/FrmFormsHelper.php:902
4309
+ msgid "Capitalize"
4310
  msgstr ""
4311
 
4312
+ #: classes/helpers/FrmFormsHelper.php:903
4313
+ msgid "Automatically capitalize the first letter in each word."
4314
  msgstr ""
4315
 
4316
+ #: classes/helpers/FrmFormsHelper.php:971
4317
+ msgid "Published"
4318
  msgstr ""
4319
 
4320
+ #: classes/helpers/FrmCSVExportHelper.php:121
4321
+ msgid "(label)"
4322
  msgstr ""
4323
 
4324
+ #: classes/helpers/FrmCSVExportHelper.php:137
4325
+ msgid "Comment"
4326
  msgstr ""
4327
 
4328
+ #: classes/helpers/FrmCSVExportHelper.php:138
4329
+ msgid "Comment User"
4330
  msgstr ""
4331
 
4332
+ #: classes/helpers/FrmCSVExportHelper.php:139
4333
+ msgid "Comment Date"
4334
  msgstr ""
4335
 
4336
+ #: classes/helpers/FrmCSVExportHelper.php:144
4337
+ msgid "Timestamp"
4338
  msgstr ""
4339
 
4340
+ #: classes/helpers/FrmCSVExportHelper.php:145
4341
+ msgid "Last Updated"
4342
  msgstr ""
4343
 
4344
+ #: classes/helpers/FrmCSVExportHelper.php:147
4345
+ msgid "Updated By"
4346
  msgstr ""
4347
 
4348
+ #: classes/helpers/FrmCSVExportHelper.php:149
4349
+ msgid "IP"
4350
  msgstr ""
4351
 
4352
+ #: classes/helpers/FrmCSVExportHelper.php:150
4353
+ #: classes/helpers/FrmAppHelper.php:1737
4354
+ msgid "ID"
4355
  msgstr ""
4356
 
4357
+ #: classes/helpers/FrmCSVExportHelper.php:153
4358
+ msgid "Parent ID"
4359
  msgstr ""
4360
 
4361
+ #: classes/helpers/FrmAppHelper.php:786
4362
+ msgid "View Forms and Templates"
4363
  msgstr ""
4364
 
4365
+ #: classes/helpers/FrmAppHelper.php:787
4366
+ msgid "Add/Edit Forms and Templates"
4367
  msgstr ""
4368
 
4369
+ #: classes/helpers/FrmAppHelper.php:788
4370
+ msgid "Delete Forms and Templates"
4371
  msgstr ""
4372
 
4373
+ #: classes/helpers/FrmAppHelper.php:789
4374
+ msgid "Access this Settings Page"
4375
  msgstr ""
4376
 
4377
+ #: classes/helpers/FrmAppHelper.php:790
4378
+ msgid "View Entries from Admin Area"
4379
  msgstr ""
4380
 
4381
+ #: classes/helpers/FrmAppHelper.php:791
4382
+ msgid "Delete Entries from Admin Area"
4383
  msgstr ""
4384
 
4385
+ #: classes/helpers/FrmAppHelper.php:798
4386
+ msgid "Add Entries from Admin Area"
4387
  msgstr ""
4388
 
4389
+ #: classes/helpers/FrmAppHelper.php:799
4390
+ msgid "Edit Entries from Admin Area"
 
4391
  msgstr ""
4392
 
4393
+ #: classes/helpers/FrmAppHelper.php:800
4394
+ msgid "View Reports"
 
4395
  msgstr ""
4396
 
4397
+ #: classes/helpers/FrmAppHelper.php:801
4398
+ msgid "Add/Edit Views"
4399
  msgstr ""
4400
 
4401
+ #: classes/helpers/FrmAppHelper.php:1405
4402
+ msgid "at"
4403
  msgstr ""
4404
 
4405
+ #: classes/helpers/FrmAppHelper.php:1454
4406
+ #: classes/helpers/FrmAppHelper.php:1473
4407
+ msgid "seconds"
4408
  msgstr ""
4409
 
4410
+ #: classes/helpers/FrmAppHelper.php:1467
4411
+ msgid "year"
4412
  msgstr ""
4413
 
4414
+ #: classes/helpers/FrmAppHelper.php:1467
4415
+ msgid "years"
4416
  msgstr ""
4417
 
4418
+ #: classes/helpers/FrmAppHelper.php:1468
4419
+ msgid "month"
4420
  msgstr ""
4421
 
4422
+ #: classes/helpers/FrmAppHelper.php:1468
4423
+ msgid "months"
4424
  msgstr ""
4425
 
4426
+ #: classes/helpers/FrmAppHelper.php:1469
4427
+ msgid "week"
4428
  msgstr ""
4429
 
4430
+ #: classes/helpers/FrmAppHelper.php:1469
4431
+ msgid "weeks"
 
4432
  msgstr ""
4433
 
4434
+ #: classes/helpers/FrmAppHelper.php:1470
4435
+ msgid "day"
 
4436
  msgstr ""
4437
 
4438
+ #: classes/helpers/FrmAppHelper.php:1470
4439
+ msgid "days"
 
4440
  msgstr ""
4441
 
4442
+ #: classes/helpers/FrmAppHelper.php:1471
4443
+ msgid "hour"
4444
  msgstr ""
4445
 
4446
+ #: classes/helpers/FrmAppHelper.php:1471
4447
+ msgid "hours"
4448
  msgstr ""
4449
 
4450
+ #: classes/helpers/FrmAppHelper.php:1472
4451
+ msgid "minute"
4452
  msgstr ""
4453
 
4454
+ #: classes/helpers/FrmAppHelper.php:1472
4455
+ msgid "minutes"
4456
  msgstr ""
4457
 
4458
+ #: classes/helpers/FrmAppHelper.php:1473
4459
+ msgid "second"
4460
  msgstr ""
4461
 
4462
+ #: classes/helpers/FrmAppHelper.php:1565
4463
+ msgid "Give this action a label for easy reference."
4464
  msgstr ""
4465
 
4466
+ #: classes/helpers/FrmAppHelper.php:1566
4467
+ 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."
4468
  msgstr ""
4469
 
4470
+ #: classes/helpers/FrmAppHelper.php:1567
4471
+ msgid "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
4472
  msgstr ""
4473
 
4474
+ #: classes/helpers/FrmAppHelper.php:1568
4475
+ msgid "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or name@email.com."
4476
  msgstr ""
4477
 
4478
+ #: classes/helpers/FrmAppHelper.php:1569
4479
+ 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."
4480
  msgstr ""
4481
 
4482
+ #: classes/helpers/FrmAppHelper.php:1570
4483
+ msgid "Enter the name and/or email address of the sender. FORMAT: John Bates <john@example.com> or john@example.com."
4484
  msgstr ""
4485
 
4486
+ #: classes/helpers/FrmAppHelper.php:1571
4487
+ msgid "If you leave the subject blank, the default will be used: %1$s Form submitted on %2$s"
4488
  msgstr ""
4489
 
4490
+ #: classes/helpers/FrmAppHelper.php:1703
4491
+ #: classes/helpers/FrmAppHelper.php:1773
4492
+ msgid "Please wait while your site updates."
4493
  msgstr ""
4494
 
4495
+ #: classes/helpers/FrmAppHelper.php:1704
4496
+ msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
4497
  msgstr ""
4498
 
4499
+ #: classes/helpers/FrmAppHelper.php:1706
4500
+ #: classes/helpers/FrmAppHelper.php:1733
4501
+ msgid "Loading&hellip;"
4502
  msgstr ""
4503
 
4504
+ #: classes/helpers/FrmAppHelper.php:1734
4505
+ msgid "Remove"
4506
  msgstr ""
4507
 
4508
+ #: classes/helpers/FrmAppHelper.php:1738
4509
+ msgid "No results match"
4510
  msgstr ""
4511
 
4512
+ #: classes/helpers/FrmAppHelper.php:1739
4513
+ msgid "That file looks like Spam."
4514
  msgstr ""
4515
 
4516
+ #: classes/helpers/FrmAppHelper.php:1740
4517
+ msgid "There is an error in the calculation in the field with key"
4518
  msgstr ""
4519
 
4520
+ #: classes/helpers/FrmAppHelper.php:1741
4521
+ msgid "Please complete the preceding required fields before uploading a file."
4522
  msgstr ""
4523
 
4524
+ #: classes/helpers/FrmAppHelper.php:1748
4525
+ msgid "Are you sure you want to do this? Clicking OK will delete all forms, form data, and all other Formidable data. There is no Undo."
4526
  msgstr ""
4527
 
4528
+ #: classes/helpers/FrmAppHelper.php:1752
4529
+ msgid "Saving"
4530
  msgstr ""
4531
 
4532
+ #: classes/helpers/FrmAppHelper.php:1753
4533
+ msgid "Saved"
 
 
 
 
 
 
 
 
4534
  msgstr ""
4535
 
4536
+ #: classes/helpers/FrmAppHelper.php:1754
4537
+ msgid "OK"
 
 
4538
  msgstr ""
4539
 
4540
+ #: classes/helpers/FrmAppHelper.php:1762
4541
+ msgid "Are you sure you want to delete this field and all data associated with it?"
 
4542
  msgstr ""
4543
 
4544
+ #: classes/helpers/FrmAppHelper.php:1763
4545
+ msgid "WARNING: This will delete all fields inside of the section as well."
 
 
 
 
 
4546
  msgstr ""
4547
 
4548
+ #: classes/helpers/FrmAppHelper.php:1764
4549
+ msgid "Warning: If you have entries with multiple rows, all but the first row will be lost."
 
4550
  msgstr ""
4551
 
4552
+ #: classes/helpers/FrmAppHelper.php:1767
4553
+ msgid "Enter Email"
 
 
 
 
 
 
 
 
4554
  msgstr ""
4555
 
4556
+ #: classes/helpers/FrmAppHelper.php:1768
4557
+ msgid "Confirm Email"
 
 
 
 
 
 
 
 
 
4558
  msgstr ""
4559
 
4560
+ #: classes/helpers/FrmAppHelper.php:1769
4561
+ 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."
 
 
4562
  msgstr ""
4563
 
4564
+ #: classes/helpers/FrmAppHelper.php:1770
4565
+ msgid "Enter Password"
4566
  msgstr ""
4567
 
4568
+ #: classes/helpers/FrmAppHelper.php:1771
4569
+ msgid "Confirm Password"
4570
  msgstr ""
4571
 
4572
+ #: classes/helpers/FrmAppHelper.php:1772
4573
+ msgid "Import Complete"
 
 
4574
  msgstr ""
4575
 
4576
+ #: classes/helpers/FrmAppHelper.php:1774
4577
+ msgid "Warning: There is no way to retrieve unsaved entries."
 
 
 
4578
  msgstr ""
4579
 
4580
+ #: classes/helpers/FrmAppHelper.php:1775
4581
+ msgid "Private"
4582
  msgstr ""
4583
 
4584
+ #: classes/helpers/FrmAppHelper.php:1778
4585
+ msgid "No new licenses were found"
 
4586
  msgstr ""
4587
 
4588
+ #: classes/helpers/FrmAppHelper.php:1779
4589
+ msgid "This calculation has at least one unmatched ( ) { } [ ]."
 
4590
  msgstr ""
4591
 
4592
+ #: classes/helpers/FrmAppHelper.php:1780
4593
+ msgid "This calculation may have shortcodes that work in Views but not forms."
4594
  msgstr ""
4595
 
4596
+ #: classes/helpers/FrmAppHelper.php:1781
4597
+ msgid "This calculation may have shortcodes that work in text calculations but not numeric calculations."
 
 
 
 
 
 
4598
  msgstr ""
4599
 
4600
+ #: classes/helpers/FrmAppHelper.php:1782
4601
+ msgid "Please enter a Repeat Limit that is greater than 1."
 
 
4602
  msgstr ""
4603
 
4604
+ #: classes/helpers/FrmAppHelper.php:1783
4605
+ msgid "Installing"
 
4606
  msgstr ""
4607
 
4608
+ #: classes/helpers/FrmAppHelper.php:1808
4609
+ msgid "You are running an outdated version of Formidable. This plugin may not work correctly if you do not update Formidable."
 
4610
  msgstr ""
4611
 
4612
+ #: classes/helpers/FrmAppHelper.php:1814
4613
+ msgid "English"
 
4614
  msgstr ""
4615
 
4616
+ #: classes/helpers/FrmAppHelper.php:1815
4617
+ msgid "Afrikaans"
 
4618
  msgstr ""
4619
 
4620
+ #: classes/helpers/FrmAppHelper.php:1816
4621
+ msgid "Albanian"
 
4622
  msgstr ""
4623
 
4624
+ #: classes/helpers/FrmAppHelper.php:1817
4625
+ msgid "Arabic"
4626
  msgstr ""
4627
 
4628
+ #: classes/helpers/FrmAppHelper.php:1818
4629
+ msgid "Armenian"
 
4630
  msgstr ""
4631
 
4632
+ #: classes/helpers/FrmAppHelper.php:1819
4633
+ msgid "Azerbaijani"
4634
  msgstr ""
4635
 
4636
+ #: classes/helpers/FrmAppHelper.php:1820
4637
+ msgid "Basque"
4638
  msgstr ""
4639
 
4640
+ #: classes/helpers/FrmAppHelper.php:1821
4641
+ msgid "Bosnian"
4642
  msgstr ""
4643
 
4644
+ #: classes/helpers/FrmAppHelper.php:1822
4645
+ msgid "Bulgarian"
4646
  msgstr ""
4647
 
4648
+ #: classes/helpers/FrmAppHelper.php:1823
4649
+ msgid "Catalan"
 
4650
  msgstr ""
4651
 
4652
+ #: classes/helpers/FrmAppHelper.php:1824
4653
+ msgid "Chinese Hong Kong"
 
4654
  msgstr ""
4655
 
4656
+ #: classes/helpers/FrmAppHelper.php:1825
4657
+ msgid "Chinese Simplified"
4658
  msgstr ""
4659
 
4660
+ #: classes/helpers/FrmAppHelper.php:1826
4661
+ msgid "Chinese Traditional"
4662
  msgstr ""
4663
 
4664
+ #: classes/helpers/FrmAppHelper.php:1827
4665
+ msgid "Croatian"
4666
  msgstr ""
4667
 
4668
+ #: classes/helpers/FrmAppHelper.php:1828
4669
+ msgid "Czech"
4670
  msgstr ""
4671
 
4672
+ #: classes/helpers/FrmAppHelper.php:1829
4673
+ msgid "Danish"
4674
  msgstr ""
4675
 
4676
+ #: classes/helpers/FrmAppHelper.php:1830
4677
+ msgid "Dutch"
4678
  msgstr ""
4679
 
4680
+ #: classes/helpers/FrmAppHelper.php:1831
4681
+ msgid "English/UK"
4682
  msgstr ""
4683
 
4684
+ #: classes/helpers/FrmAppHelper.php:1832
4685
+ msgid "Esperanto"
4686
  msgstr ""
4687
 
4688
+ #: classes/helpers/FrmAppHelper.php:1833
4689
+ msgid "Estonian"
4690
  msgstr ""
4691
 
4692
+ #: classes/helpers/FrmAppHelper.php:1834
4693
+ msgid "Faroese"
4694
  msgstr ""
4695
 
4696
+ #: classes/helpers/FrmAppHelper.php:1835
4697
+ msgid "Farsi/Persian"
4698
  msgstr ""
4699
 
4700
+ #: classes/helpers/FrmAppHelper.php:1836
4701
+ msgid "Filipino"
4702
  msgstr ""
4703
 
4704
+ #: classes/helpers/FrmAppHelper.php:1837
4705
+ msgid "Finnish"
4706
  msgstr ""
4707
 
4708
+ #: classes/helpers/FrmAppHelper.php:1838
4709
+ msgid "French"
 
4710
  msgstr ""
4711
 
4712
+ #: classes/helpers/FrmAppHelper.php:1839
4713
+ msgid "French/Canadian"
4714
  msgstr ""
4715
 
4716
+ #: classes/helpers/FrmAppHelper.php:1840
4717
+ msgid "French/Swiss"
4718
  msgstr ""
4719
 
4720
+ #: classes/helpers/FrmAppHelper.php:1841
4721
+ msgid "German"
 
4722
  msgstr ""
4723
 
4724
+ #: classes/helpers/FrmAppHelper.php:1842
4725
+ msgid "German/Austria"
4726
  msgstr ""
4727
 
4728
+ #: classes/helpers/FrmAppHelper.php:1843
4729
+ msgid "German/Switzerland"
4730
  msgstr ""
4731
 
4732
+ #: classes/helpers/FrmAppHelper.php:1844
4733
+ msgid "Greek"
4734
  msgstr ""
4735
 
4736
+ #: classes/helpers/FrmAppHelper.php:1845
4737
+ #: classes/helpers/FrmAppHelper.php:1846
4738
+ msgid "Hebrew"
4739
  msgstr ""
4740
 
4741
+ #: classes/helpers/FrmAppHelper.php:1847
4742
+ msgid "Hindi"
4743
  msgstr ""
4744
 
4745
+ #: classes/helpers/FrmAppHelper.php:1848
4746
+ msgid "Hungarian"
4747
  msgstr ""
4748
 
4749
+ #: classes/helpers/FrmAppHelper.php:1849
4750
+ msgid "Icelandic"
4751
  msgstr ""
4752
 
4753
+ #: classes/helpers/FrmAppHelper.php:1850
4754
+ msgid "Indonesian"
4755
  msgstr ""
4756
 
4757
+ #: classes/helpers/FrmAppHelper.php:1851
4758
+ msgid "Italian"
4759
  msgstr ""
4760
 
4761
+ #: classes/helpers/FrmAppHelper.php:1852
4762
+ msgid "Japanese"
4763
  msgstr ""
4764
 
4765
+ #: classes/helpers/FrmAppHelper.php:1853
4766
+ msgid "Korean"
4767
  msgstr ""
4768
 
4769
+ #: classes/helpers/FrmAppHelper.php:1854
4770
+ msgid "Latvian"
4771
  msgstr ""
4772
 
4773
+ #: classes/helpers/FrmAppHelper.php:1855
4774
+ msgid "Lithuanian"
 
4775
  msgstr ""
4776
 
4777
+ #: classes/helpers/FrmAppHelper.php:1856
4778
+ msgid "Malaysian"
4779
  msgstr ""
4780
 
4781
+ #: classes/helpers/FrmAppHelper.php:1857
4782
+ msgid "Norwegian"
4783
  msgstr ""
4784
 
4785
+ #: classes/helpers/FrmAppHelper.php:1858
4786
+ msgid "Polish"
4787
  msgstr ""
4788
 
4789
+ #: classes/helpers/FrmAppHelper.php:1859
4790
+ msgid "Portuguese"
4791
  msgstr ""
4792
 
4793
+ #: classes/helpers/FrmAppHelper.php:1860
4794
+ msgid "Portuguese/Brazilian"
4795
  msgstr ""
4796
 
4797
+ #: classes/helpers/FrmAppHelper.php:1861
4798
+ msgid "Portuguese/Portugal"
4799
  msgstr ""
4800
 
4801
+ #: classes/helpers/FrmAppHelper.php:1862
4802
+ msgid "Romanian"
4803
  msgstr ""
4804
 
4805
+ #: classes/helpers/FrmAppHelper.php:1863
4806
+ msgid "Russian"
 
4807
  msgstr ""
4808
 
4809
+ #: classes/helpers/FrmAppHelper.php:1864
4810
+ #: classes/helpers/FrmAppHelper.php:1865
4811
+ msgid "Serbian"
4812
  msgstr ""
4813
 
4814
+ #: classes/helpers/FrmAppHelper.php:1866
4815
+ msgid "Slovak"
4816
  msgstr ""
4817
 
4818
+ #: classes/helpers/FrmAppHelper.php:1867
4819
+ msgid "Slovenian"
4820
  msgstr ""
4821
 
4822
+ #: classes/helpers/FrmAppHelper.php:1868
4823
+ msgid "Spanish"
4824
  msgstr ""
4825
 
4826
+ #: classes/helpers/FrmAppHelper.php:1869
4827
+ msgid "Spanish/Latin America"
4828
  msgstr ""
4829
 
4830
+ #: classes/helpers/FrmAppHelper.php:1870
4831
+ msgid "Swedish"
4832
  msgstr ""
4833
 
4834
+ #: classes/helpers/FrmAppHelper.php:1871
4835
+ msgid "Tamil"
4836
  msgstr ""
4837
 
4838
+ #: classes/helpers/FrmAppHelper.php:1872
4839
+ msgid "Thai"
4840
  msgstr ""
4841
 
4842
+ #: classes/helpers/FrmAppHelper.php:1873
4843
+ #: classes/helpers/FrmAppHelper.php:1874
4844
+ msgid "Turkish"
4845
  msgstr ""
4846
 
4847
+ #: classes/helpers/FrmAppHelper.php:1875
4848
+ msgid "Ukranian"
4849
  msgstr ""
4850
 
4851
+ #: classes/helpers/FrmAppHelper.php:1876
4852
+ msgid "Vietnamese"
4853
  msgstr ""
4854
 
4855
+ #: classes/helpers/FrmXMLHelper.php:31
4856
+ msgid "Your server does not have XML enabled"
4857
  msgstr ""
4858
 
4859
+ #: classes/helpers/FrmXMLHelper.php:37
4860
+ #: classes/helpers/FrmXMLHelper.php:49
4861
+ msgid "There was an error when reading this XML file"
4862
  msgstr ""
4863
 
4864
+ #: classes/helpers/FrmXMLHelper.php:41
4865
+ msgid "Your server is missing the simplexml_import_dom function"
4866
  msgstr ""
4867
 
4868
+ #: classes/helpers/FrmXMLHelper.php:827
4869
+ msgid "Imported"
4870
  msgstr ""
4871
 
4872
+ #: classes/helpers/FrmXMLHelper.php:828
4873
+ msgid "Updated"
4874
  msgstr ""
4875
 
4876
+ #: classes/helpers/FrmXMLHelper.php:853
4877
+ msgid "Nothing was imported or updated"
4878
  msgstr ""
4879
 
4880
+ #: classes/helpers/FrmXMLHelper.php:865
4881
+ msgid "%1$s Form"
4882
+ msgid_plural "%1$s Forms"
4883
+ msgstr[0] ""
4884
+
4885
+ #: classes/helpers/FrmXMLHelper.php:867
4886
+ msgid "%1$s Entry"
4887
+ msgid_plural "%1$s Entries"
4888
+ msgstr[0] ""
4889
+
4890
+ #: classes/helpers/FrmXMLHelper.php:868
4891
+ msgid "%1$s View"
4892
+ msgid_plural "%1$s Views"
4893
+ msgstr[0] ""
4894
+
4895
+ #: classes/helpers/FrmXMLHelper.php:869
4896
+ msgid "%1$s Post"
4897
+ msgid_plural "%1$s Posts"
4898
+ msgstr[0] ""
4899
+
4900
+ #: classes/helpers/FrmXMLHelper.php:870
4901
+ msgid "%1$s Style"
4902
+ msgid_plural "%1$s Styles"
4903
+ msgstr[0] ""
4904
+
4905
+ #: classes/helpers/FrmXMLHelper.php:871
4906
+ msgid "%1$s Term"
4907
+ msgid_plural "%1$s Terms"
4908
+ msgstr[0] ""
4909
+
4910
+ #: classes/helpers/FrmXMLHelper.php:872
4911
+ msgid "%1$s Form Action"
4912
+ msgid_plural "%1$s Form Actions"
4913
+ msgstr[0] ""
4914
+
4915
+ #: classes/helpers/FrmXMLHelper.php:1064
4916
+ msgid "Create Posts"
4917
  msgstr ""
4918
 
4919
  #: classes/widgets/FrmShowForm.php:6
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: formidableforms, sswells, srwells, jamie.wahlin
3
  Tags: forms, contact form, form builder, survey, form maker, form, form creator
4
  Requires at least: 4.5
5
- Tested up to: 5.0
6
  Requires PHP: 5.3
7
- Stable tag: 3.06
8
 
9
  The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder for surveys, quiz forms, and more.
10
 
@@ -374,6 +374,21 @@ Formidable Forms drag & drop form builder combined with our add-ons is the most
374
  To get access to more features, integrations, and support, <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">upgrade to Formidable Forms Pro</a>. A Pro license gives you access to the full version of Formidable Forms for more advanced contact forms, Formidable Views, graphs and stats, priority support, and Formidable Forms Add-ons!
375
 
376
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
377
  = 3.06 =
378
  * New: Add one-click form creation from a form template and adjust the way a new form is created
379
  * New: Add a new process for creating a custom form template
@@ -384,8 +399,4 @@ To get access to more features, integrations, and support, <a href="https://form
384
  * Fix: Some users were seeing PHP error messages in PHP 5.2
385
  * Fix: XML form exports set to use the default style were not correctly setting the style on import
386
 
387
- = 3.05 =
388
- * New: Add a new Forms block for use with the new WP editor
389
- * Fix: A false number was showing for number of plugin updates available when add-ons were not installed
390
-
391
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>
2
  Contributors: formidableforms, sswells, srwells, jamie.wahlin
3
  Tags: forms, contact form, form builder, survey, form maker, form, form creator
4
  Requires at least: 4.5
5
+ Tested up to: 5.1
6
  Requires PHP: 5.3
7
+ Stable tag: 3.06.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
  To get access to more features, integrations, and support, <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">upgrade to Formidable Forms Pro</a>. A Pro license gives you access to the full version of Formidable Forms for more advanced contact forms, Formidable Views, graphs and stats, priority support, and Formidable Forms Add-ons!
375
 
376
  == Changelog ==
377
+ = 3.06.01 =
378
+ * Notice: The default HTML for field types with multiple inputs now use div instead of label for the field label for WCAG compliance. This will only affect new fields.
379
+ * New: When saving a form, check if it is too long for the server settings. If so, show a notice along with information on how to fix it.
380
+ * New: Better WCAG compliance. Added aria-required to required fields and aria-invalid when javascript validation is turned on.
381
+ * New: Add functions to get a list of field, form, and global settings to translate for multilingual add-ons. This will make maintaining strings much easier without a delay.
382
+ * New: Added frm_form_strings, frm_global_setting, frm_global_invalid_msg, frm_global_failed_msg, and frm_global_login_msg hooks for making adjustments to messages.
383
+ * New: Add frm_field filter when a field is fetched individually with FrmField::getOne( x, true )
384
+ * New: Allow the frm_scroll_box class to work on HTML fields instead of only accepting frm_html_scroll_box
385
+ * Fix: The pagination lost styling in WP 5.1.
386
+ * Fix: The saved CSS string was being autoloaded by WordPress since the transient didn't have an expiration.
387
+ * Fix: Prevent the invisible recaptcha from adding empty space in some forms.
388
+ * Fix: Form layouts with a long section of options in a radio or checkbox were adding extra spacing.
389
+ * Fix: The templates page was showing a blank tile for expired licenses.
390
+ * Fix: Submit button remained disabled after when the invisible reCaptcha validation failed.
391
+
392
  = 3.06 =
393
  * New: Add one-click form creation from a form template and adjust the way a new form is created
394
  * New: Add a new process for creating a custom form template
399
  * Fix: Some users were seeing PHP error messages in PHP 5.2
400
  * Fix: XML form exports set to use the default style were not correctly setting the style on import
401
 
 
 
 
 
402
  <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>