Form Maker by WD – user-friendly drag & drop Form Builder plugin - Version 1.14.0

Version Description

  • Added: Moosend integration.
  • Added: An option to show the choice label or value.
  • Added: An option to send email to the admin after payment.
  • Added: Whole address fields in condition.
  • Improved: Changed DB structure.
  • Improved: Export as csv from front.
  • Fixed: Added validation for Date field.
  • Fixed: Date of birth field error messages.
  • Fixed: PHP Validation for address fields.
  • Fixed: Minor issue with cookies.
  • Fixed: Conditional fields after adding a new option.
Download this release

Release Info

Developer 10web
Plugin Icon 128x128 Form Maker by WD – user-friendly drag & drop Form Builder plugin
Version 1.14.0
Comparing to
See all releases

Code changes from version 1.13.58 to 1.14.0

admin/controllers/Checkpaypal.php CHANGED
@@ -188,7 +188,33 @@ class FMControllerCheckpaypal extends FMAdminController {
188
  $header_arr = array();
189
  $header_arr['content_type'] = "text/html";
190
  $header_arr['charset'] = 'UTF-8';
191
- WDW_FM_Library(self::PLUGIN)->mail($recipient, $subject, $message, $header_arr);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
  }
193
  }
194
 
188
  $header_arr = array();
189
  $header_arr['content_type'] = "text/html";
190
  $header_arr['charset'] = 'UTF-8';
191
+ if ( strpos($recipient, '{adminemail}') >-1 || strpos($recipient, '%adminemail%') >-1 ) {
192
+ $adminemail = get_option( 'admin_email' );
193
+ $recipient = str_replace(
194
+ array("{adminemail}", '%adminemail%'),
195
+ array($adminemail, $adminemail),
196
+ $recipient
197
+ );
198
+ }
199
+
200
+ if ( !empty($form->mail_send_email_payment_user) && $form->mail_send_email_payment_user == 2 ) {
201
+ $email_data_key = 'fm_email_data_user_' . $group_id;
202
+ $email_data = get_option($email_data_key);
203
+ if ( !empty($email_data) ) {
204
+ WDW_FM_Library(self::PLUGIN)->mail($email_data['recipient'], $email_data['subject'], $email_data['body'], $email_data['header_arr'], $email_data['attachment'], $email_data['save_uploads']);
205
+ delete_option( $email_data_key );
206
+ }
207
+ }
208
+
209
+ if ( !empty($form->mail_send_email_payment) && $form->mail_send_email_payment == 2 ) {
210
+ $email_data_key = 'fm_email_data_' . $group_id;
211
+ $email_data = get_option($email_data_key);
212
+ if ( !empty($email_data) ) {
213
+ WDW_FM_Library(self::PLUGIN)->mail($email_data['recipient'], $email_data['subject'], $email_data['body'], $email_data['header_arr'], $email_data['attachment'], $email_data['save_uploads']);
214
+ delete_option( $email_data_key );
215
+ }
216
+ WDW_FM_Library(self::PLUGIN)->mail($recipient, $subject, $message, $header_arr);
217
+ }
218
  }
219
  }
220
 
admin/controllers/Generete_csv.php CHANGED
@@ -39,7 +39,6 @@ class FMControllerGenerete_csv extends FMAdminController {
39
  $title = $params[1];
40
  if ( !empty( $data ) ) {
41
  $labels_parameters = WDW_FM_Library(self::PLUGIN)->get_labels_parameters( $form_id );
42
-
43
  $sorted_label_names_original = $labels_parameters[4];
44
  $sorted_label_names_original = array_merge(array(
45
  'ID',
39
  $title = $params[1];
40
  if ( !empty( $data ) ) {
41
  $labels_parameters = WDW_FM_Library(self::PLUGIN)->get_labels_parameters( $form_id );
 
42
  $sorted_label_names_original = $labels_parameters[4];
43
  $sorted_label_names_original = array_merge(array(
44
  'ID',
admin/controllers/Generete_xml.php CHANGED
@@ -14,61 +14,61 @@ class FMControllerGenerete_xml extends FMAdminController {
14
  }
15
 
16
  public function display() {
17
- // Get form maker settings
18
- $fm_settings = WDFMInstance(self::PLUGIN)->fm_settings;
19
- // Update export per_page.
20
- $page_num_update = WDW_FM_Library(self::PLUGIN)->get('page_num_update');
21
- $option_key = (WDFMInstance(self::PLUGIN)->is_free == 2 ? 'fmc_settings' : 'fm_settings');
22
- if ( $page_num_update ) {
23
- $fm_settings['ajax_export_per_page'] = WDW_FM_Library(self::PLUGIN)->get('page_num');
24
- update_option( $option_key, $fm_settings );
25
- }
26
  $form_id = WDW_FM_Library(self::PLUGIN)->get( 'form_id', 0, 'intval' );
27
  $limitstart = WDW_FM_Library(self::PLUGIN)->get( 'limitstart', 0, 'intval' );
28
  $send_header = WDW_FM_Library(self::PLUGIN)->get( 'send_header', 0, 'intval' );
29
  $params = WDW_FM_Library(self::PLUGIN)->get_submissions_to_export();
30
- if (!empty($params) ) {
31
- $data = $params[0];
32
- $title = $params[1];
33
- define('PHP_TAB', "\t");
34
- $upload_dir = wp_upload_dir();
35
- $file_path = $upload_dir['basedir'] . '/form-maker';
36
- if ( !is_dir($file_path) ) {
37
- mkdir($file_path, 0777);
38
- }
39
- $tempfile = $file_path . '/export' . $form_id . '.txt';
40
- if ( $limitstart == 0 && file_exists($tempfile) ) {
41
- unlink($tempfile);
42
- }
43
- $output = fopen($tempfile, "a");
44
- if ( $limitstart == 0 ) {
45
- fwrite($output, '<?xml version="1.0" encoding="utf-8" ?>' . PHP_EOL);
46
- fwrite($output, '<form title="' . $title . '">' . PHP_EOL);
47
- }
48
- foreach ( $data as $key1 => $value1 ) {
49
- if ( !empty($key1) ) {
50
- fwrite($output, PHP_TAB . '<submission id="' . $key1 . '">' . PHP_EOL);
51
- foreach ( $value1 as $key => $value ) {
52
- fwrite($output, PHP_TAB . PHP_TAB . '<field title="' . $key . '">' . PHP_EOL);
53
- fwrite($output, PHP_TAB . PHP_TAB . PHP_TAB . '<![CDATA[' . $value . ']]>' . PHP_EOL);
54
- fwrite($output, PHP_TAB . PHP_TAB . '</field>' . PHP_EOL);
55
- }
56
- fwrite($output, PHP_TAB . '</submission>' . PHP_EOL);
57
- }
58
- }
59
- if ( $send_header == 1 ) {
60
- fwrite($output, '</form>');
61
- fclose($output);
62
- $txtfile = fopen($tempfile, "r");
63
- $txtfilecontent = fread($txtfile, filesize($tempfile));
64
- fclose($txtfile);
65
- $filename = $title . "_" . date('Ymd') . ".xml";
66
- header('Content-Encoding: Windows-1252');
67
- header('Content-type: text/xml; charset=utf-8');
68
- header("Content-Disposition: attachment; filename=\"$filename\"");
69
- echo $txtfilecontent;
70
- unlink($tempfile);
71
- }
72
  }
73
  }
74
  }
14
  }
15
 
16
  public function display() {
17
+ // Get form maker settings
18
+ $fm_settings = WDFMInstance(self::PLUGIN)->fm_settings;
19
+ // Update export per_page.
20
+ $page_num_update = WDW_FM_Library(self::PLUGIN)->get('page_num_update');
21
+ $option_key = (WDFMInstance(self::PLUGIN)->is_free == 2 ? 'fmc_settings' : 'fm_settings');
22
+ if ( $page_num_update ) {
23
+ $fm_settings['ajax_export_per_page'] = WDW_FM_Library(self::PLUGIN)->get('page_num');
24
+ update_option( $option_key, $fm_settings );
25
+ }
26
  $form_id = WDW_FM_Library(self::PLUGIN)->get( 'form_id', 0, 'intval' );
27
  $limitstart = WDW_FM_Library(self::PLUGIN)->get( 'limitstart', 0, 'intval' );
28
  $send_header = WDW_FM_Library(self::PLUGIN)->get( 'send_header', 0, 'intval' );
29
  $params = WDW_FM_Library(self::PLUGIN)->get_submissions_to_export();
30
+ if (!empty($params) ) {
31
+ $data = $params[0];
32
+ $title = $params[1];
33
+ define('PHP_TAB', "\t");
34
+ $upload_dir = wp_upload_dir();
35
+ $file_path = $upload_dir['basedir'] . '/form-maker';
36
+ if ( !is_dir($file_path) ) {
37
+ mkdir($file_path, 0777);
38
+ }
39
+ $tempfile = $file_path . '/export' . $form_id . '.txt';
40
+ if ( $limitstart == 0 && file_exists($tempfile) ) {
41
+ unlink($tempfile);
42
+ }
43
+ $output = fopen($tempfile, "a");
44
+ if ( $limitstart == 0 ) {
45
+ fwrite($output, '<?xml version="1.0" encoding="utf-8" ?>' . PHP_EOL);
46
+ fwrite($output, '<form title="' . $title . '">' . PHP_EOL);
47
+ }
48
+ foreach ( $data as $key1 => $value1 ) {
49
+ if ( !empty($key1) ) {
50
+ fwrite($output, PHP_TAB . '<submission id="' . $key1 . '">' . PHP_EOL);
51
+ foreach ( $value1 as $key => $value ) {
52
+ fwrite($output, PHP_TAB . PHP_TAB . '<field title="' . $key . '">' . PHP_EOL);
53
+ fwrite($output, PHP_TAB . PHP_TAB . PHP_TAB . '<![CDATA[' . $value . ']]>' . PHP_EOL);
54
+ fwrite($output, PHP_TAB . PHP_TAB . '</field>' . PHP_EOL);
55
+ }
56
+ fwrite($output, PHP_TAB . '</submission>' . PHP_EOL);
57
+ }
58
+ }
59
+ if ( $send_header == 1 ) {
60
+ fwrite($output, '</form>');
61
+ fclose($output);
62
+ $txtfile = fopen($tempfile, "r");
63
+ $txtfilecontent = fread($txtfile, filesize($tempfile));
64
+ fclose($txtfile);
65
+ $filename = $title . "_" . date('Ymd') . ".xml";
66
+ header('Content-Encoding: Windows-1252');
67
+ header('Content-type: text/xml; charset=utf-8');
68
+ header("Content-Disposition: attachment; filename=\"$filename\"");
69
+ echo $txtfilecontent;
70
+ unlink($tempfile);
71
+ }
72
  }
73
  }
74
  }
admin/controllers/Manage_fm.php CHANGED
@@ -99,7 +99,7 @@ class FMControllerManage_fm extends FMAdminController {
99
  if ( $action != -1 ) {
100
  $this->$block_action($action);
101
  }
102
- else {
103
  $this->$task($id);
104
  }
105
  }
@@ -121,7 +121,6 @@ class FMControllerManage_fm extends FMAdminController {
121
  $params['items_per_page'] = $this->items_per_page;
122
 
123
  $params['rows_data'] = $this->model->get_rows_data($params);
124
-
125
  $params['total'] = $this->model->total();
126
 
127
  $params['actions'] = $this->actions;
@@ -219,7 +218,7 @@ class FMControllerManage_fm extends FMAdminController {
219
  * @return int
220
  */
221
  public function publish( $id = 0, $bulk = FALSE ) {
222
- $updated = $this->model->update_data("formmaker", array('published' => 1), array('id' => $id));
223
  if ( $updated !== FALSE ) {
224
  $message = 9;
225
  }
@@ -248,7 +247,7 @@ class FMControllerManage_fm extends FMAdminController {
248
  * @return int
249
  */
250
  public function unpublish( $id = 0, $bulk = FALSE ) {
251
- $updated = $this->model->update_data("formmaker", array('published' => 0), array('id' => $id));
252
  if ( $updated !== FALSE ) {
253
  $message = 10;
254
  }
@@ -283,14 +282,12 @@ class FMControllerManage_fm extends FMAdminController {
283
  "table" => "formmaker",
284
  "where" => "id=" . (int) $id,
285
  ));
286
-
287
  if ( $row ) {
288
  $row = (array) $row;
289
  unset($row['id']);
290
- $row['title'] = $row['title'] . ' - ' . __('Copy', WDFMInstance(self::PLUGIN)->prefix);
291
  $inserted = $this->model->insert_data_to_db("formmaker", (array) $row);
292
  $new_id = (int) $this->model->get_max_row('formmaker', 'id');
293
-
294
  $row_display_options = $this->model->select_rows("get_row", array(
295
  "selection" => "*",
296
  "table" => "formmaker_display_options",
@@ -302,22 +299,20 @@ class FMControllerManage_fm extends FMAdminController {
302
  $row_display_options['form_id'] = $new_id;
303
  $inserted = $this->model->insert_data_to_db("formmaker_display_options", (array) $row_display_options);
304
  }
305
-
306
  $row_query = $this->model->select_rows("get_results", array(
307
  "selection" => "*",
308
  "table" => "formmaker_query",
309
  "where" => "form_id=" . (int) $id,
310
  ));
311
  if ( $row_query ) {
312
- foreach ($row_query as $query) {
313
- $query = (array)$query;
314
  unset($query['id']);
315
  $query['form_id'] = $new_id;
316
- $inserted = $this->model->insert_data_to_db("formmaker_query", (array)$query);
317
  }
318
  }
319
-
320
- if (WDFMInstance(self::PLUGIN)->is_free == 2) {
321
  update_option('contact_form_forms', ((get_option('contact_form_forms')) ? (get_option('contact_form_forms')) . ',' . $new_id : $new_id));
322
  }
323
  else {
@@ -328,16 +323,15 @@ class FMControllerManage_fm extends FMAdminController {
328
  $message = 11;
329
  }
330
  }
331
-
332
  if ( $bulk ) {
333
  return $message;
334
  }
335
  else {
336
  WDW_FM_Library(self::PLUGIN)->fm_redirect(add_query_arg(array(
337
- 'page' => $this->page,
338
- 'task' => 'display',
339
- 'message' => $message,
340
- ), admin_url('admin.php')));
341
  }
342
  }
343
 
@@ -386,7 +380,7 @@ class FMControllerManage_fm extends FMAdminController {
386
 
387
  $params['page_title'] = __('Create new form', WDFMInstance(self::PLUGIN)->prefix);
388
  $params['animation_effects'] = $this->animation_effects;
389
-
390
  $this->view->edit($params);
391
  }
392
 
@@ -410,7 +404,7 @@ class FMControllerManage_fm extends FMAdminController {
410
  "table" => "formmaker_backup",
411
  "where" => "cur=1 and id=" . $id,
412
  ));
413
-
414
  if ( !$backup_id ) {
415
  $backup_id = $this->model->get_max_row("formmaker_backup", "backup_id");
416
  if ( $backup_id ) {
@@ -420,7 +414,7 @@ class FMControllerManage_fm extends FMAdminController {
420
  $backup_id = 1;
421
  }
422
  $this->model->insert_formmaker_backup($backup_id, $id);
423
- }
424
  }
425
 
426
  $params = array();
@@ -694,7 +688,8 @@ class FMControllerManage_fm extends FMAdminController {
694
  */
695
  public function apply_form_options( $id = 0 ) {
696
  $fieldset_id = WDW_FM_Library(self::PLUGIN)->get('fieldset_id', 'general');
697
- $message = $this->save_db_form_options( $id );
 
698
  WDW_FM_Library(self::PLUGIN)->fm_redirect(add_query_arg(array(
699
  'page' => $this->page,
700
  'task' => 'edit',
@@ -714,26 +709,32 @@ class FMControllerManage_fm extends FMAdminController {
714
  * return int field id or empty if not exists
715
  */
716
  public function check_mail_field_exists( $id, $field_id, $fields = '' ) {
717
- if( $fields === '' ) {
718
- $fields = $this->model->select_rows('get_var', array(
719
- 'selection' => 'form_fields',
720
- 'table' => 'formmaker',
721
- 'where' => 'id=' . $id
722
- ));
723
- }
724
- if( strpos( $fields, $field_id."*:*id*" ) > -1 ) {
 
 
 
 
 
725
  return $field_id;
726
  }
727
- return '';
728
  }
729
 
730
  /**
731
  * Save db Email options.
732
  *
733
- * @param int $id
 
 
734
  * @return int $id_message
735
  */
736
- public function save_db_email_options( $id = 0 ) {
737
  $sendemail = stripslashes(WDW_FM_Library(self::PLUGIN)->get('sendemail', ''));
738
  $mail = stripslashes(WDW_FM_Library(self::PLUGIN)->get('mail', ''));
739
  $from_mail = stripslashes(WDW_FM_Library(self::PLUGIN)->get('from_mail', ''));
@@ -761,6 +762,7 @@ class FMControllerManage_fm extends FMAdminController {
761
  $mail_subject_user = WDW_FM_Library(self::PLUGIN)->get('mail_subject_user', '');
762
  $mail_mode = WDW_FM_Library(self::PLUGIN)->get('mail_mode', '');
763
  $mail_send_email_payment = WDW_FM_Library(self::PLUGIN)->get('mail_send_email_payment', '');
 
764
  $mail_mode_user = WDW_FM_Library(self::PLUGIN)->get('mail_mode_user', '');
765
  $mail_attachment = WDW_FM_Library(self::PLUGIN)->get('mail_attachment', '');
766
  $mail_attachment_user = WDW_FM_Library(self::PLUGIN)->get('mail_attachment_user', '');
@@ -777,10 +779,8 @@ class FMControllerManage_fm extends FMAdminController {
777
  foreach ( $multiple_user_mail as $value ) {
778
  $send_to .= '*' . $value . '*';
779
  }
780
-
781
  $mail_verification_post_id = (int) $this->model->get_mail_verification_post_id();
782
 
783
-
784
  if ( $mail_verify ) {
785
  $email_verification_post = array(
786
  'post_title' => 'Email Verification',
@@ -794,7 +794,7 @@ class FMControllerManage_fm extends FMAdminController {
794
  }
795
  }
796
 
797
- $data = array(
798
  'sendemail' => $sendemail,
799
  'mail' => $mail,
800
  'from_mail' => $from_mail,
@@ -813,6 +813,7 @@ class FMControllerManage_fm extends FMAdminController {
813
  'mail_mode' => $mail_mode,
814
  'mail_mode_user' => $mail_mode_user,
815
  'mail_send_email_payment' => $mail_send_email_payment,
 
816
  'mail_attachment' => $mail_attachment,
817
  'mail_attachment_user' => $mail_attachment_user,
818
  'script_mail_user' => $script_mail_user,
@@ -820,21 +821,19 @@ class FMControllerManage_fm extends FMAdminController {
820
  'mail_emptyfields' => $mail_emptyfields,
821
  'mail_verify' => $mail_verify,
822
  'mail_verify_expiretime' => $mail_verify_expiretime,
823
- 'mail_verification_post_id' => $mail_verification_post_id,
824
  );
825
 
826
  $message_id = 2;
827
- $save = $this->model->update_data('formmaker', $data, array( 'id' => $id ));
828
- if ( $save !== FALSE ) {
 
 
 
829
  $this->model->create_js($id);
830
  $message_id = 8;
831
  }
832
 
833
  return $message_id;
834
-
835
-
836
-
837
-
838
  }
839
 
840
  /**
@@ -843,7 +842,7 @@ class FMControllerManage_fm extends FMAdminController {
843
  * @param int $id
844
  * @return int $id_message
845
  */
846
- public function save_db_form_options( $id = 0 ) {
847
  $javascript = "// Occurs before the form is loaded
848
  function before_load() {
849
 
@@ -860,7 +859,7 @@ function before_reset() {
860
  function after_submit() {
861
 
862
  }";
863
-
864
  $published = stripslashes(WDW_FM_Library(self::PLUGIN)->get('published', ''));
865
  $savedb = stripslashes(WDW_FM_Library(self::PLUGIN)->get('savedb', ''));
866
  $requiredmark = stripslashes(WDW_FM_Library(self::PLUGIN)->get('requiredmark', '*'));
@@ -886,7 +885,7 @@ function after_submit() {
886
  }
887
 
888
  $javascript = stripslashes(WDW_FM_Library(self::PLUGIN)->get('javascript', $javascript, false));
889
- $condition = WDW_FM_Library(self::PLUGIN)->get('condition', '');
890
  $user_id_wd = stripslashes(WDW_FM_Library(self::PLUGIN)->get('user_id_wd', 'administrator,'));
891
  $frontend_submit_fields = stripslashes(WDW_FM_Library(self::PLUGIN)->get('frontend_submit_fields', ''));
892
  $frontend_submit_stat_fields = stripslashes(WDW_FM_Library(self::PLUGIN)->get('frontend_submit_stat_fields', ''));
@@ -914,8 +913,7 @@ function after_submit() {
914
 
915
  $privacy = json_encode($privacy_arr);
916
 
917
- $data = array(
918
- 'published' => $published,
919
  'savedb' => $savedb,
920
  'requiredmark' => $requiredmark,
921
  'submissions_limit' => $submissions_limit,
@@ -937,10 +935,16 @@ function after_submit() {
937
  'frontend_submit_stat_fields' => $frontend_submit_stat_fields,
938
  'privacy' => $privacy,
939
  );
 
 
 
 
 
940
  $message_id = 2;
941
- $save = $this->model->update_data('formmaker', $data, array( 'id' => $id ));
942
- if ( $save !== FALSE ) {
943
- $this->model->update_data( 'formmaker_backup', $data, array( 'id' => $id ) );
 
944
  //save theme in backup
945
  if ( WDFMInstance(self::PLUGIN)->is_free != 2 ) {
946
  $save_addon = do_action('fm_save_addon_init', $id);
@@ -956,13 +960,13 @@ function after_submit() {
956
  * Form layout.
957
  *
958
  * @param int $id
959
- */
960
  public function form_layout( $id = 0 ) {
961
  $ids = array();
962
  $types = array();
963
  $labels = array();
964
 
965
- $row = $this->model->get_row_data( $id );
966
  if ( empty($row) ) {
967
  WDW_FM_Library(self::PLUGIN)->fm_redirect( add_query_arg( array('page' => $this->page, 'task' => 'display'), admin_url('admin.php') ) );
968
  }
@@ -1009,12 +1013,12 @@ function after_submit() {
1009
  */
1010
  public function save_db_layout( $id = 0 ) {
1011
  $custom_front = WDW_FM_Library(self::PLUGIN)->get('custom_front', '', false);
1012
- $autogen_layout = WDW_FM_Library(self::PLUGIN)->get('autogen_layout', '');
1013
-
1014
- $update = $this->model->update_data('formmaker', array(
1015
  'custom_front' => $custom_front,
1016
  'autogen_layout' => $autogen_layout,
1017
- ), array( 'id' => $id ));
 
1018
  if ( $update !== FALSE ) {
1019
  return 1;
1020
  }
@@ -1026,12 +1030,15 @@ function after_submit() {
1026
  public function display_options() {
1027
  $id = (int) WDW_FM_Library(self::PLUGIN)->get('current_id', $this->model->get_max_row("formmaker", "id"));
1028
  $params = array();
1029
- $params['row_form'] = $this->model->get_row_data($id);
1030
- if ( empty($params['row_form']) ) {
1031
  WDW_FM_Library(self::PLUGIN)->fm_redirect( add_query_arg( array('page' => $this->page, 'task' => 'display'), admin_url('admin.php') ) );
1032
  }
 
 
1033
  $params['row'] = $this->model->get_display_options($id);
1034
- $row_data = $this->model->get_row_data( $id );
 
1035
  $params['row']->theme = $row_data->theme;
1036
  $params['page_title'] = '"'. $params['row_form']->title . '" ' . __('display options', WDFMInstance(self::PLUGIN)->prefix);
1037
  $params['animation_effects'] = $this->animation_effects;
@@ -1081,7 +1088,7 @@ function after_submit() {
1081
  'message' => $message,
1082
  ), admin_url('admin.php')));
1083
  }
1084
-
1085
  /**
1086
  * Remove query for MySQL Mapping.
1087
  * @param int $id
@@ -1116,45 +1123,50 @@ function after_submit() {
1116
 
1117
  public function save_dis_options() {
1118
  $theme = (int) WDW_FM_Library(self::PLUGIN)->get('theme', $this->model->get_default_theme_id());
1119
-
1120
- $option_data = array(
1121
- 'form_id' => (int) WDW_FM_Library(self::PLUGIN)->get('current_id', 0),
1122
- 'scrollbox_loading_delay' => $this->set_delay_freq_positive_val( WDW_FM_Library(self::PLUGIN)->get('scrollbox_loading_delay', 0) ),
1123
- 'popover_animate_effect' => WDW_FM_Library(self::PLUGIN)->get('popover_animate_effect', ''),
1124
- 'popover_loading_delay' => $this->set_delay_freq_positive_val( WDW_FM_Library(self::PLUGIN)->get('popover_loading_delay', 0) ),
1125
- 'popover_frequency' => $this->set_delay_freq_positive_val( WDW_FM_Library(self::PLUGIN)->get('popover_frequency', 0) ),
1126
- 'topbar_position' => WDW_FM_Library(self::PLUGIN)->get('topbar_position', 1),
1127
- 'topbar_remain_top' => WDW_FM_Library(self::PLUGIN)->get('topbar_remain_top', 1),
1128
- 'topbar_closing' => WDW_FM_Library(self::PLUGIN)->get('topbar_closing', 1),
1129
- 'topbar_hide_duration' => $this->set_delay_freq_positive_val( WDW_FM_Library(self::PLUGIN)->get('topbar_hide_duration', 0) ),
1130
- 'scrollbox_position' => WDW_FM_Library(self::PLUGIN)->get('scrollbox_position', 1),
1131
- 'scrollbox_trigger_point' => WDW_FM_Library(self::PLUGIN)->get('scrollbox_trigger_point', 20),
1132
- 'scrollbox_hide_duration' => $this->set_delay_freq_positive_val( WDW_FM_Library(self::PLUGIN)->get('scrollbox_hide_duration', 0)),
1133
- 'scrollbox_auto_hide' => WDW_FM_Library(self::PLUGIN)->get('scrollbox_auto_hide', 1),
1134
- 'hide_mobile' => WDW_FM_Library(self::PLUGIN)->get('hide_mobile', 0),
1135
- 'scrollbox_closing' => WDW_FM_Library(self::PLUGIN)->get('scrollbox_closing', 1),
1136
- 'scrollbox_minimize' => WDW_FM_Library(self::PLUGIN)->get('scrollbox_minimize', 1),
1137
- 'scrollbox_minimize_text' => WDW_FM_Library(self::PLUGIN)->get('scrollbox_minimize_text', ''),
1138
- 'type' => WDW_FM_Library(self::PLUGIN)->get('form_type', 'embadded'),
1139
- 'display_on' => implode(',', WDW_FM_Library(self::PLUGIN)->get('display_on', array())),
1140
- 'posts_include' => WDW_FM_Library(self::PLUGIN)->get('posts_include', ''),
1141
- 'pages_include' => WDW_FM_Library(self::PLUGIN)->get('pages_include', ''),
1142
- 'display_on_categories' => implode(',', WDW_FM_Library(self::PLUGIN)->get('display_on_categories', array())),
1143
- 'current_categories' => WDW_FM_Library(self::PLUGIN)->get('current_categories', ''),
1144
- 'show_for_admin' => WDW_FM_Library(self::PLUGIN)->get('show_for_admin', 0),
1145
  );
1146
 
1147
- $save = $this->model->replace_display_options($option_data);
 
 
1148
  if ( $save !== FALSE ) {
 
1149
  $this->model->update_data('formmaker_backup', array(
1150
- 'type' => $option_data['type'],
1151
  'theme' => $theme,
1152
- ), array( 'id' => $option_data['form_id'] ));
 
1153
  $this->model->update_data('formmaker', array(
1154
- 'type' => $option_data['type'],
1155
  'theme' => $theme,
1156
- ), array( 'id' => $option_data['form_id'] ));
1157
- $this->model->create_js($option_data['form_id']);
 
1158
 
1159
  return 8;
1160
  }
@@ -1180,8 +1192,9 @@ function after_submit() {
1180
  if ( !$current_id ) {
1181
  $current_id = (int) $this->model->get_max_row('formmaker', 'id');
1182
  }
 
1183
  if (array_search('form_options_tab', $tabs_loaded) !== false) {
1184
- $this->save_db_form_options($current_id);
1185
  }
1186
  if (array_search('form_display_tab', $tabs_loaded) !== false) {
1187
  $this->save_dis_options();
@@ -1190,7 +1203,7 @@ function after_submit() {
1190
  $this->save_db_layout($current_id);
1191
  }
1192
  if (array_search('form_email_options_tab', $tabs_loaded) !== false) {
1193
- $this->save_db_email_options($current_id);
1194
  }
1195
  $active_tab = WDW_FM_Library(self::PLUGIN)->get('fm_tab_active', 0);
1196
  $fieldset_id = WDW_FM_Library(self::PLUGIN)->get('fieldset_id', 'general');
@@ -1226,10 +1239,9 @@ function after_submit() {
1226
  $form_front = WDW_FM_Library(self::PLUGIN)->get('form_front', '', false);
1227
  $form_front = str_replace('onerror', '', html_entity_decode(base64_decode($form_front)));
1228
  $form_front = preg_replace('#<script(.*?)>(.*?)</script>#is', '', $form_front);
1229
-
1230
  $sortable = WDW_FM_Library(self::PLUGIN)->get('sortable', 0);
1231
  $counter = WDW_FM_Library(self::PLUGIN)->get('counter', 0);
1232
-
1233
  $label_order = WDW_FM_Library(self::PLUGIN)->get('label_order', '');
1234
  $label_order = html_entity_decode(base64_decode($label_order));
1235
  $label_order = str_replace('onerror', '', $label_order);
@@ -1265,6 +1277,7 @@ function after_submit() {
1265
  $save = $this->model->update_data('formmaker', array(
1266
  'title' => $title,
1267
  'form_front' => $form_front,
 
1268
  'sortable' => $sortable,
1269
  'counter' => $counter,
1270
  'label_order' => $label_order,
@@ -1285,51 +1298,37 @@ function after_submit() {
1285
  ), array( 'id' => $id ));
1286
  }
1287
  else {
1288
- $theme = (int) WDW_FM_Library(self::PLUGIN)->get('theme', $this->model->get_default_theme_id());
1289
- $this->model->insert_data_to_db('formmaker', array(
1290
- 'title' => $title,
1291
- 'type' => $type,
1292
- 'mail' => '{adminemail}',
1293
- 'form_front' => $form_front,
1294
- 'theme' => $theme,
1295
- 'counter' => $counter,
1296
- 'label_order' => $label_order,
1297
- 'pagination' => $pagination,
1298
- 'show_title' => $show_title,
1299
- 'show_numbers' => $show_numbers,
1300
- 'public_key' => $public_key,
1301
- 'private_key' => $private_key,
1302
- 'recaptcha_theme' => $recaptcha_theme,
1303
- 'javascript' => $javascript,
1304
  'submit_text' => '',
1305
  'url' => '',
1306
- 'article_id' => 0,
1307
  'submit_text_type' => 1,
1308
- 'script_mail' => '{all}',
1309
- 'script_mail_user' => '{all}',
1310
- 'label_order_current' => $label_order_current,
1311
  'tax' => 0,
1312
  'payment_currency' => '',
1313
  'paypal_email' => '',
1314
  'checkout_mode' => 'testmode',
1315
  'paypal_mode' => 0,
1316
- 'published' => 1,
1317
- 'form_fields' => $form_fields,
1318
- 'savedb' => 1,
 
 
 
 
 
1319
  'sendemail' => 1,
1320
- 'requiredmark' => '*',
1321
- 'submissions_limit' => 0,
1322
- 'submissions_limit_text' => __('The limit of submissions for this form has been reached.', WDFMInstance(self::PLUGIN)->prefix),
1323
  'from_mail' => '',
1324
  'from_name' => '',
1325
  'reply_to' => '',
1326
  'send_to' => '',
1327
- 'autogen_layout' => 1,
1328
- 'custom_front' => '',
1329
  'mail_from_user' => '',
1330
  'mail_from_name_user' => '',
1331
  'reply_to_user' => '',
1332
- 'condition' => '',
1333
  'mail_cc' => '',
1334
  'mail_cc_user' => '',
1335
  'mail_bcc' => '',
@@ -1339,13 +1338,35 @@ function after_submit() {
1339
  'mail_mode' => 1,
1340
  'mail_mode_user' => 1,
1341
  'mail_send_email_payment' => 1,
 
1342
  'mail_attachment' => 1,
1343
  'mail_attachment_user' => 1,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1344
  'sortable' => $sortable,
1345
- 'user_id_wd' => 'administrator,',
1346
- 'frontend_submit_fields' => '',
1347
- 'frontend_submit_stat_fields' => '',
1348
- 'save_uploads' => 1,
1349
  'header_title' => $header_title,
1350
  'header_description' => $header_description,
1351
  'header_image_url' => $header_image_url,
@@ -1353,42 +1374,49 @@ function after_submit() {
1353
  'header_hide_image' => $header_hide_image,
1354
  'header_hide' => $header_hide,
1355
  'privacy' => '',
 
1356
  ));
1357
  $id = (int) $this->model->get_max_row('formmaker', 'id');
1358
  if (WDFMInstance(self::PLUGIN)->is_free == 2) {
1359
  update_option('contact_form_forms', ((get_option('contact_form_forms')) ? (get_option('contact_form_forms')) . ',' . $id : $id));
1360
  }
1361
- $this->model->insert_data_to_db('formmaker_display_options', array(
1362
- 'form_id' => $id,
1363
  'type' => $type,
1364
  'scrollbox_loading_delay' => 0,
1365
- 'popover_animate_effect' => '',
1366
- 'popover_loading_delay' => 0,
1367
- 'popover_frequency' => 0,
1368
- 'topbar_position' => 1,
1369
- 'topbar_remain_top' => 1,
1370
- 'topbar_closing' => 1,
1371
- 'topbar_hide_duration' => 0,
1372
  'scrollbox_position' => 1,
1373
  'scrollbox_trigger_point' => 20,
1374
  'scrollbox_hide_duration' => 0,
1375
  'scrollbox_auto_hide' => 1,
1376
- 'hide_mobile' => 0,
1377
  'scrollbox_closing' => 1,
1378
  'scrollbox_minimize' => 1,
1379
  'scrollbox_minimize_text' => $scrollbox_minimize_text,
 
 
 
 
 
 
 
1380
  'display_on' => 'home,post,page',
1381
  'posts_include' => '',
1382
  'pages_include' => '',
1383
  'display_on_categories' => 'select_all_categories',
1384
  'current_categories' => 'select_all_categories',
1385
  'show_for_admin' => 0,
 
 
 
 
 
 
1386
  ));
 
1387
  $this->model->insert_data_to_db('formmaker_views', array(
1388
  'form_id' => $id,
1389
  'views' => 0,
1390
  ));
1391
  }
 
1392
  $backup_id = (int) WDW_FM_Library(self::PLUGIN)->get('backup_id', '');
1393
  if ( $backup_id ) {
1394
  // Set cur 0 before add new current
@@ -1403,7 +1431,9 @@ function after_submit() {
1403
  $save = $this->model->update_data('formmaker_backup', array(
1404
  'cur' => 1,
1405
  'title' => $title,
 
1406
  'form_front' => $form_front,
 
1407
  'sortable' => $sortable,
1408
  'counter' => $counter,
1409
  'label_order' => $label_order,
@@ -1434,50 +1464,39 @@ function after_submit() {
1434
  }
1435
  $this->model->update_data('formmaker_backup', array( 'cur' => 0 ), array( 'id' => $id ));
1436
  $fm_cur_date = current_time('timestamp');
1437
- $message_id = $this->model->insert_data_to_db('formmaker_backup', array(
1438
- 'cur' => 1,
1439
- 'id' => $id,
1440
- 'title' => $title,
1441
- 'mail' => '',
1442
- 'form_front' => $form_front,
1443
- 'counter' => $counter,
1444
- 'label_order' => $label_order,
1445
- 'pagination' => $pagination,
1446
- 'show_title' => $show_title,
1447
- 'show_numbers' => $show_numbers,
1448
- 'public_key' => $public_key,
1449
- 'private_key' => $private_key,
1450
- 'recaptcha_theme' => $recaptcha_theme,
1451
- 'javascript' => $javascript,
1452
  'submit_text' => '',
1453
  'url' => '',
1454
- 'article_id' => 0,
1455
  'submit_text_type' => 1,
1456
- 'script_mail' => '{all}',
1457
- 'script_mail_user' => '{all}',
1458
- 'label_order_current' => $label_order_current,
1459
  'tax' => 0,
1460
  'payment_currency' => '',
1461
  'paypal_email' => '',
1462
  'checkout_mode' => 'testmode',
1463
  'paypal_mode' => 0,
1464
- 'published' => 1,
1465
- 'form_fields' => $form_fields,
1466
- 'savedb' => 1,
 
 
 
 
 
1467
  'sendemail' => 1,
1468
- 'requiredmark' => '*',
1469
- 'submissions_limit' => 0,
1470
- 'submissions_limit_text' => __('The limit of submissions for this form has been reached.', WDFMInstance(self::PLUGIN)->prefix),
1471
  'from_mail' => '',
1472
  'from_name' => '',
1473
  'reply_to' => '',
1474
  'send_to' => '',
1475
- 'autogen_layout' => 1,
1476
- 'custom_front' => '',
1477
  'mail_from_user' => '',
1478
  'mail_from_name_user' => '',
1479
  'reply_to_user' => '',
1480
- 'condition' => '',
1481
  'mail_cc' => '',
1482
  'mail_cc_user' => '',
1483
  'mail_bcc' => '',
@@ -1487,12 +1506,37 @@ function after_submit() {
1487
  'mail_mode' => 1,
1488
  'mail_mode_user' => 1,
1489
  'mail_send_email_payment' => 1,
 
1490
  'mail_attachment' => 1,
1491
  'mail_attachment_user' => 1,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1492
  'sortable' => $sortable,
1493
- 'user_id_wd' => 'administrator,',
1494
- 'frontend_submit_fields' => '',
1495
- 'frontend_submit_stat_fields' => '',
1496
  'header_title' => $header_title,
1497
  'header_description' => $header_description,
1498
  'header_image_url' => $header_image_url,
@@ -1501,10 +1545,10 @@ function after_submit() {
1501
  'header_hide' => $header_hide,
1502
  'privacy' => '',
1503
  'date' => $fm_cur_date,
 
1504
  ));
1505
-
1506
  if ( $message_id !== FALSE ) {
1507
- $this->model->create_js($id);
1508
  return 1;
1509
  }
1510
  else {
@@ -1585,7 +1629,7 @@ function after_submit() {
1585
 
1586
  // check id for db
1587
  if(isset($id) && $id != "") {
1588
- $id = intval($id);
1589
  $update = $this->model->update_data( "forms", array('title' => $form_name,), array('id' => $id) );
1590
  if( !$update ){
1591
  $message = 2;
@@ -1614,7 +1658,7 @@ function after_submit() {
1614
  *
1615
  * @param int $id
1616
  * @return array $data
1617
- */
1618
  private function get_stripe_addon( $id = 0 ) {
1619
  return apply_filters('fm_stripe_display_init', array('form_id' => $id) );
1620
  }
99
  if ( $action != -1 ) {
100
  $this->$block_action($action);
101
  }
102
+ else {
103
  $this->$task($id);
104
  }
105
  }
121
  $params['items_per_page'] = $this->items_per_page;
122
 
123
  $params['rows_data'] = $this->model->get_rows_data($params);
 
124
  $params['total'] = $this->model->total();
125
 
126
  $params['actions'] = $this->actions;
218
  * @return int
219
  */
220
  public function publish( $id = 0, $bulk = FALSE ) {
221
+ $updated = $this->model->update_data('formmaker', array('published' => 1), array('id' => $id));
222
  if ( $updated !== FALSE ) {
223
  $message = 9;
224
  }
247
  * @return int
248
  */
249
  public function unpublish( $id = 0, $bulk = FALSE ) {
250
+ $updated = $this->model->update_data('formmaker', array('published' => 0), array('id' => $id));
251
  if ( $updated !== FALSE ) {
252
  $message = 10;
253
  }
282
  "table" => "formmaker",
283
  "where" => "id=" . (int) $id,
284
  ));
 
285
  if ( $row ) {
286
  $row = (array) $row;
287
  unset($row['id']);
288
+ $row['title'] = $row['title'] . ' - ' . __('Copy', WDFMInstance(self::PLUGIN)->prefix);
289
  $inserted = $this->model->insert_data_to_db("formmaker", (array) $row);
290
  $new_id = (int) $this->model->get_max_row('formmaker', 'id');
 
291
  $row_display_options = $this->model->select_rows("get_row", array(
292
  "selection" => "*",
293
  "table" => "formmaker_display_options",
299
  $row_display_options['form_id'] = $new_id;
300
  $inserted = $this->model->insert_data_to_db("formmaker_display_options", (array) $row_display_options);
301
  }
 
302
  $row_query = $this->model->select_rows("get_results", array(
303
  "selection" => "*",
304
  "table" => "formmaker_query",
305
  "where" => "form_id=" . (int) $id,
306
  ));
307
  if ( $row_query ) {
308
+ foreach ( $row_query as $query ) {
309
+ $query = (array) $query;
310
  unset($query['id']);
311
  $query['form_id'] = $new_id;
312
+ $inserted = $this->model->insert_data_to_db("formmaker_query", (array) $query);
313
  }
314
  }
315
+ if ( WDFMInstance(self::PLUGIN)->is_free == 2 ) {
 
316
  update_option('contact_form_forms', ((get_option('contact_form_forms')) ? (get_option('contact_form_forms')) . ',' . $new_id : $new_id));
317
  }
318
  else {
323
  $message = 11;
324
  }
325
  }
 
326
  if ( $bulk ) {
327
  return $message;
328
  }
329
  else {
330
  WDW_FM_Library(self::PLUGIN)->fm_redirect(add_query_arg(array(
331
+ 'page' => $this->page,
332
+ 'task' => 'display',
333
+ 'message' => $message,
334
+ ), admin_url('admin.php')));
335
  }
336
  }
337
 
380
 
381
  $params['page_title'] = __('Create new form', WDFMInstance(self::PLUGIN)->prefix);
382
  $params['animation_effects'] = $this->animation_effects;
383
+
384
  $this->view->edit($params);
385
  }
386
 
404
  "table" => "formmaker_backup",
405
  "where" => "cur=1 and id=" . $id,
406
  ));
407
+
408
  if ( !$backup_id ) {
409
  $backup_id = $this->model->get_max_row("formmaker_backup", "backup_id");
410
  if ( $backup_id ) {
414
  $backup_id = 1;
415
  }
416
  $this->model->insert_formmaker_backup($backup_id, $id);
417
+ }
418
  }
419
 
420
  $params = array();
688
  */
689
  public function apply_form_options( $id = 0 ) {
690
  $fieldset_id = WDW_FM_Library(self::PLUGIN)->get('fieldset_id', 'general');
691
+ $backup_id = (int) $this->model->get_max_row('formmaker_backup', 'backup_id');
692
+ $message = $this->save_db_form_options( $id, $backup_id );
693
  WDW_FM_Library(self::PLUGIN)->fm_redirect(add_query_arg(array(
694
  'page' => $this->page,
695
  'task' => 'edit',
709
  * return int field id or empty if not exists
710
  */
711
  public function check_mail_field_exists( $id, $field_id, $fields = '' ) {
712
+ if (is_numeric($field_id)) {
713
+ if( $fields === '' ) {
714
+ $fields = $this->model->select_rows('get_var', array(
715
+ 'selection' => 'form_fields',
716
+ 'table' => 'formmaker',
717
+ 'where' => 'id=' . $id
718
+ ));
719
+ }
720
+ if( strpos( $fields, $field_id."*:*id*" ) > -1 ) {
721
+ return $field_id;
722
+ }
723
+ return '';
724
+ } else {
725
  return $field_id;
726
  }
 
727
  }
728
 
729
  /**
730
  * Save db Email options.
731
  *
732
+ * @param int $id
733
+ * @param int $backup_id
734
+ *
735
  * @return int $id_message
736
  */
737
+ public function save_db_email_options( $id = 0, $backup_id = 0 ) {
738
  $sendemail = stripslashes(WDW_FM_Library(self::PLUGIN)->get('sendemail', ''));
739
  $mail = stripslashes(WDW_FM_Library(self::PLUGIN)->get('mail', ''));
740
  $from_mail = stripslashes(WDW_FM_Library(self::PLUGIN)->get('from_mail', ''));
762
  $mail_subject_user = WDW_FM_Library(self::PLUGIN)->get('mail_subject_user', '');
763
  $mail_mode = WDW_FM_Library(self::PLUGIN)->get('mail_mode', '');
764
  $mail_send_email_payment = WDW_FM_Library(self::PLUGIN)->get('mail_send_email_payment', '');
765
+ $mail_send_email_payment_user = WDW_FM_Library(self::PLUGIN)->get('mail_send_email_payment_user', '');
766
  $mail_mode_user = WDW_FM_Library(self::PLUGIN)->get('mail_mode_user', '');
767
  $mail_attachment = WDW_FM_Library(self::PLUGIN)->get('mail_attachment', '');
768
  $mail_attachment_user = WDW_FM_Library(self::PLUGIN)->get('mail_attachment_user', '');
779
  foreach ( $multiple_user_mail as $value ) {
780
  $send_to .= '*' . $value . '*';
781
  }
 
782
  $mail_verification_post_id = (int) $this->model->get_mail_verification_post_id();
783
 
 
784
  if ( $mail_verify ) {
785
  $email_verification_post = array(
786
  'post_title' => 'Email Verification',
794
  }
795
  }
796
 
797
+ $form_options = array(
798
  'sendemail' => $sendemail,
799
  'mail' => $mail,
800
  'from_mail' => $from_mail,
813
  'mail_mode' => $mail_mode,
814
  'mail_mode_user' => $mail_mode_user,
815
  'mail_send_email_payment' => $mail_send_email_payment,
816
+ 'mail_send_email_payment_user' => $mail_send_email_payment_user,
817
  'mail_attachment' => $mail_attachment,
818
  'mail_attachment_user' => $mail_attachment_user,
819
  'script_mail_user' => $script_mail_user,
821
  'mail_emptyfields' => $mail_emptyfields,
822
  'mail_verify' => $mail_verify,
823
  'mail_verify_expiretime' => $mail_verify_expiretime,
 
824
  );
825
 
826
  $message_id = 2;
827
+ $data = array('mail_verification_post_id' => $mail_verification_post_id,);
828
+
829
+ $save_fm = WDW_FM_Library::update_columns_and_json_column('formmaker', $data, 'form_options', $form_options, array('id' => $id));
830
+ $save_fm_backup = WDW_FM_Library::update_columns_and_json_column('formmaker_backup', $data, 'form_options', $form_options, array('backup_id' => $backup_id));
831
+ if ( $save_fm !== FALSE && $save_fm_backup !== FALSE ) {
832
  $this->model->create_js($id);
833
  $message_id = 8;
834
  }
835
 
836
  return $message_id;
 
 
 
 
837
  }
838
 
839
  /**
842
  * @param int $id
843
  * @return int $id_message
844
  */
845
+ public function save_db_form_options( $id = 0, $backup_id = 0 ) {
846
  $javascript = "// Occurs before the form is loaded
847
  function before_load() {
848
 
859
  function after_submit() {
860
 
861
  }";
862
+
863
  $published = stripslashes(WDW_FM_Library(self::PLUGIN)->get('published', ''));
864
  $savedb = stripslashes(WDW_FM_Library(self::PLUGIN)->get('savedb', ''));
865
  $requiredmark = stripslashes(WDW_FM_Library(self::PLUGIN)->get('requiredmark', '*'));
885
  }
886
 
887
  $javascript = stripslashes(WDW_FM_Library(self::PLUGIN)->get('javascript', $javascript, false));
888
+ $condition = WDW_FM_Library(self::PLUGIN)->get('condition', '', 'strip_tags');
889
  $user_id_wd = stripslashes(WDW_FM_Library(self::PLUGIN)->get('user_id_wd', 'administrator,'));
890
  $frontend_submit_fields = stripslashes(WDW_FM_Library(self::PLUGIN)->get('frontend_submit_fields', ''));
891
  $frontend_submit_stat_fields = stripslashes(WDW_FM_Library(self::PLUGIN)->get('frontend_submit_stat_fields', ''));
913
 
914
  $privacy = json_encode($privacy_arr);
915
 
916
+ $form_options = array(
 
917
  'savedb' => $savedb,
918
  'requiredmark' => $requiredmark,
919
  'submissions_limit' => $submissions_limit,
935
  'frontend_submit_stat_fields' => $frontend_submit_stat_fields,
936
  'privacy' => $privacy,
937
  );
938
+
939
+ $data = array();
940
+
941
+ $data['privacy'] = $privacy;
942
+ $data['published'] = $published;
943
  $message_id = 2;
944
+
945
+ $save = WDW_FM_Library::update_columns_and_json_column( 'formmaker', $data, 'form_options', $form_options, array( 'id' => $id ));
946
+ $save_backup = WDW_FM_Library::update_columns_and_json_column('formmaker_backup', $data, 'form_options', $form_options, array( 'backup_id' => $backup_id ));
947
+ if ( $save !== FALSE && $save_backup !== FALSE) {
948
  //save theme in backup
949
  if ( WDFMInstance(self::PLUGIN)->is_free != 2 ) {
950
  $save_addon = do_action('fm_save_addon_init', $id);
960
  * Form layout.
961
  *
962
  * @param int $id
963
+ */
964
  public function form_layout( $id = 0 ) {
965
  $ids = array();
966
  $types = array();
967
  $labels = array();
968
 
969
+ $row = $this->model->get_row_data( $id );
970
  if ( empty($row) ) {
971
  WDW_FM_Library(self::PLUGIN)->fm_redirect( add_query_arg( array('page' => $this->page, 'task' => 'display'), admin_url('admin.php') ) );
972
  }
1013
  */
1014
  public function save_db_layout( $id = 0 ) {
1015
  $custom_front = WDW_FM_Library(self::PLUGIN)->get('custom_front', '', false);
1016
+ $autogen_layout = WDW_FM_Library(self::PLUGIN)->get('autogen_layout', '0');
1017
+ $form_options = array(
 
1018
  'custom_front' => $custom_front,
1019
  'autogen_layout' => $autogen_layout,
1020
+ );
1021
+ $update = WDW_FM_Library::update_json_column('formmaker', 'form_options', $form_options, array('id' => $id));
1022
  if ( $update !== FALSE ) {
1023
  return 1;
1024
  }
1030
  public function display_options() {
1031
  $id = (int) WDW_FM_Library(self::PLUGIN)->get('current_id', $this->model->get_max_row("formmaker", "id"));
1032
  $params = array();
1033
+ $row_data = $this->model->get_row_data( $id );
1034
+ if ( empty($row_data) ) {
1035
  WDW_FM_Library(self::PLUGIN)->fm_redirect( add_query_arg( array('page' => $this->page, 'task' => 'display'), admin_url('admin.php') ) );
1036
  }
1037
+
1038
+ $params['row_form'] = $row_data;
1039
  $params['row'] = $this->model->get_display_options($id);
1040
+ $params['row'] = WDW_FM_Library::convert_json_options_to_old($params['row'], 'display_options');
1041
+
1042
  $params['row']->theme = $row_data->theme;
1043
  $params['page_title'] = '"'. $params['row_form']->title . '" ' . __('display options', WDFMInstance(self::PLUGIN)->prefix);
1044
  $params['animation_effects'] = $this->animation_effects;
1088
  'message' => $message,
1089
  ), admin_url('admin.php')));
1090
  }
1091
+
1092
  /**
1093
  * Remove query for MySQL Mapping.
1094
  * @param int $id
1123
 
1124
  public function save_dis_options() {
1125
  $theme = (int) WDW_FM_Library(self::PLUGIN)->get('theme', $this->model->get_default_theme_id());
1126
+ $where = array('form_id' => (int) WDW_FM_Library(self::PLUGIN)->get('current_id', 0));
1127
+
1128
+ $display_options = array(
1129
+ 'type' => WDW_FM_Library(self::PLUGIN)->get('form_type', 'embedded'),
1130
+ 'scrollbox_loading_delay' => (int) $this->set_delay_freq_positive_val(WDW_FM_Library(self::PLUGIN)->get('scrollbox_loading_delay', 0)),
1131
+ 'scrollbox_position' => (int) WDW_FM_Library(self::PLUGIN)->get('scrollbox_position', 1),
1132
+ 'scrollbox_trigger_point' => (int) WDW_FM_Library(self::PLUGIN)->get('scrollbox_trigger_point', 20),
1133
+ 'scrollbox_hide_duration' => (int) $this->set_delay_freq_positive_val(WDW_FM_Library(self::PLUGIN)->get('scrollbox_hide_duration', 0)),
1134
+ 'scrollbox_auto_hide' => (int) WDW_FM_Library(self::PLUGIN)->get('scrollbox_auto_hide', 1),
1135
+ 'scrollbox_closing' => (int) WDW_FM_Library(self::PLUGIN)->get('scrollbox_closing', 1),
1136
+ 'scrollbox_minimize' => (int) WDW_FM_Library(self::PLUGIN)->get('scrollbox_minimize', 1),
1137
+ 'scrollbox_minimize_text' => WDW_FM_Library(self::PLUGIN)->get('scrollbox_minimize_text', ''),
1138
+ 'popover_animate_effect' => WDW_FM_Library(self::PLUGIN)->get('popover_animate_effect', ''),
1139
+ 'popover_loading_delay' => (int) $this->set_delay_freq_positive_val(WDW_FM_Library(self::PLUGIN)->get('popover_loading_delay', 0)),
1140
+ 'popover_frequency' => (int) $this->set_delay_freq_positive_val(WDW_FM_Library(self::PLUGIN)->get('popover_frequency', 0)),
1141
+ 'topbar_position' => (int) WDW_FM_Library(self::PLUGIN)->get('topbar_position', 1),
1142
+ 'topbar_remain_top' => (int) WDW_FM_Library(self::PLUGIN)->get('topbar_remain_top', 1),
1143
+ 'topbar_closing' => (int) WDW_FM_Library(self::PLUGIN)->get('topbar_closing', 1),
1144
+ 'topbar_hide_duration' => (int) $this->set_delay_freq_positive_val(WDW_FM_Library(self::PLUGIN)->get('topbar_hide_duration', 0)),
1145
+ 'display_on' => implode(',', WDW_FM_Library(self::PLUGIN)->get('display_on', array())),
1146
+ 'posts_include' => WDW_FM_Library(self::PLUGIN)->get('posts_include', ''),
1147
+ 'pages_include' => WDW_FM_Library(self::PLUGIN)->get('pages_include', ''),
1148
+ 'display_on_categories' => implode(',', WDW_FM_Library(self::PLUGIN)->get('display_on_categories', array())),
1149
+ 'current_categories' => WDW_FM_Library(self::PLUGIN)->get('current_categories', ''),
1150
+ 'show_for_admin' => (int) WDW_FM_Library(self::PLUGIN)->get('show_for_admin', 0),
1151
+ 'hide_mobile' => (int) WDW_FM_Library(self::PLUGIN)->get('hide_mobile', 0),
1152
  );
1153
 
1154
+ $save = WDW_FM_Library::update_columns_and_json_column('formmaker_display_options', $where, 'display_options', $display_options, $where, 'replace');
1155
+
1156
+ //success
1157
  if ( $save !== FALSE ) {
1158
+
1159
  $this->model->update_data('formmaker_backup', array(
1160
+ 'type' => $display_options['type'],
1161
  'theme' => $theme,
1162
+ ), array( 'id' => $where['form_id'] ));
1163
+
1164
  $this->model->update_data('formmaker', array(
1165
+ 'type' => $display_options['type'],
1166
  'theme' => $theme,
1167
+ ), array( 'id' => $where['form_id'] ));
1168
+
1169
+ $this->model->create_js($where['form_id']);
1170
 
1171
  return 8;
1172
  }
1192
  if ( !$current_id ) {
1193
  $current_id = (int) $this->model->get_max_row('formmaker', 'id');
1194
  }
1195
+ $backup_id = (int) $this->model->get_max_row('formmaker_backup', 'backup_id');
1196
  if (array_search('form_options_tab', $tabs_loaded) !== false) {
1197
+ $this->save_db_form_options($current_id, $backup_id);
1198
  }
1199
  if (array_search('form_display_tab', $tabs_loaded) !== false) {
1200
  $this->save_dis_options();
1203
  $this->save_db_layout($current_id);
1204
  }
1205
  if (array_search('form_email_options_tab', $tabs_loaded) !== false) {
1206
+ $this->save_db_email_options($current_id, $backup_id);
1207
  }
1208
  $active_tab = WDW_FM_Library(self::PLUGIN)->get('fm_tab_active', 0);
1209
  $fieldset_id = WDW_FM_Library(self::PLUGIN)->get('fieldset_id', 'general');
1239
  $form_front = WDW_FM_Library(self::PLUGIN)->get('form_front', '', false);
1240
  $form_front = str_replace('onerror', '', html_entity_decode(base64_decode($form_front)));
1241
  $form_front = preg_replace('#<script(.*?)>(.*?)</script>#is', '', $form_front);
1242
+ $theme = (int) WDW_FM_Library(self::PLUGIN)->get('theme', $this->model->get_default_theme_id());
1243
  $sortable = WDW_FM_Library(self::PLUGIN)->get('sortable', 0);
1244
  $counter = WDW_FM_Library(self::PLUGIN)->get('counter', 0);
 
1245
  $label_order = WDW_FM_Library(self::PLUGIN)->get('label_order', '');
1246
  $label_order = html_entity_decode(base64_decode($label_order));
1247
  $label_order = str_replace('onerror', '', $label_order);
1277
  $save = $this->model->update_data('formmaker', array(
1278
  'title' => $title,
1279
  'form_front' => $form_front,
1280
+ 'theme' => $theme,
1281
  'sortable' => $sortable,
1282
  'counter' => $counter,
1283
  'label_order' => $label_order,
1298
  ), array( 'id' => $id ));
1299
  }
1300
  else {
1301
+ $form_options = array(
1302
+ 'savedb' => 1,
1303
+ 'requiredmark' => '*',
1304
+ 'submissions_limit' => 0,
1305
+ 'submissions_limit_text' => __('The limit of submissions for this form has been reached.', WDFMInstance(self::PLUGIN)->prefix),
1306
+ 'save_uploads' => 1,
 
 
 
 
 
 
 
 
 
 
1307
  'submit_text' => '',
1308
  'url' => '',
 
1309
  'submit_text_type' => 1,
1310
+ 'article_id' => 0,
 
 
1311
  'tax' => 0,
1312
  'payment_currency' => '',
1313
  'paypal_email' => '',
1314
  'checkout_mode' => 'testmode',
1315
  'paypal_mode' => 0,
1316
+ 'javascript' => $javascript,
1317
+ 'condition' => '',
1318
+ 'user_id_wd' => 'administrator,',
1319
+ 'frontend_submit_fields' => '',
1320
+ 'frontend_submit_stat_fields' => '',
1321
+ 'autogen_layout' => 1,
1322
+ 'custom_front' => '',
1323
+ 'mail' => '{adminemail}',
1324
  'sendemail' => 1,
 
 
 
1325
  'from_mail' => '',
1326
  'from_name' => '',
1327
  'reply_to' => '',
1328
  'send_to' => '',
 
 
1329
  'mail_from_user' => '',
1330
  'mail_from_name_user' => '',
1331
  'reply_to_user' => '',
 
1332
  'mail_cc' => '',
1333
  'mail_cc_user' => '',
1334
  'mail_bcc' => '',
1338
  'mail_mode' => 1,
1339
  'mail_mode_user' => 1,
1340
  'mail_send_email_payment' => 1,
1341
+ 'mail_send_email_payment_user' => 1,
1342
  'mail_attachment' => 1,
1343
  'mail_attachment_user' => 1,
1344
+ 'mail_emptyfields' => 0,
1345
+ 'mail_verify' => 0,
1346
+ 'mail_verify_expiretime' => 0,
1347
+ 'mail_verification_post_id' => 0,
1348
+ 'script_mail' => '{all}',
1349
+ 'script_mail_user' => '{all}',
1350
+ );
1351
+ $form_options = json_encode($form_options);
1352
+
1353
+ $theme = (int) WDW_FM_Library(self::PLUGIN)->get('theme', $this->model->get_default_theme_id());
1354
+ $this->model->insert_data_to_db('formmaker', array(
1355
+ 'title' => $title,
1356
+ 'type' => $type,
1357
+ 'form_front' => $form_front,
1358
+ 'theme' => $theme,
1359
+ 'counter' => $counter,
1360
+ 'label_order' => $label_order,
1361
+ 'pagination' => $pagination,
1362
+ 'show_title' => $show_title,
1363
+ 'show_numbers' => $show_numbers,
1364
+ 'public_key' => $public_key,
1365
+ 'private_key' => $private_key,
1366
+ 'recaptcha_theme' => $recaptcha_theme,
1367
+ 'label_order_current' => $label_order_current,
1368
+ 'form_fields' => $form_fields,
1369
  'sortable' => $sortable,
 
 
 
 
1370
  'header_title' => $header_title,
1371
  'header_description' => $header_description,
1372
  'header_image_url' => $header_image_url,
1374
  'header_hide_image' => $header_hide_image,
1375
  'header_hide' => $header_hide,
1376
  'privacy' => '',
1377
+ 'form_options' => $form_options
1378
  ));
1379
  $id = (int) $this->model->get_max_row('formmaker', 'id');
1380
  if (WDFMInstance(self::PLUGIN)->is_free == 2) {
1381
  update_option('contact_form_forms', ((get_option('contact_form_forms')) ? (get_option('contact_form_forms')) . ',' . $id : $id));
1382
  }
1383
+ $display_options = array(
 
1384
  'type' => $type,
1385
  'scrollbox_loading_delay' => 0,
 
 
 
 
 
 
 
1386
  'scrollbox_position' => 1,
1387
  'scrollbox_trigger_point' => 20,
1388
  'scrollbox_hide_duration' => 0,
1389
  'scrollbox_auto_hide' => 1,
 
1390
  'scrollbox_closing' => 1,
1391
  'scrollbox_minimize' => 1,
1392
  'scrollbox_minimize_text' => $scrollbox_minimize_text,
1393
+ 'popover_animate_effect' => '',
1394
+ 'popover_loading_delay' => 0,
1395
+ 'popover_frequency' => 0,
1396
+ 'topbar_position' => 1,
1397
+ 'topbar_remain_top' => 1,
1398
+ 'topbar_closing' => 1,
1399
+ 'topbar_hide_duration' => 0,
1400
  'display_on' => 'home,post,page',
1401
  'posts_include' => '',
1402
  'pages_include' => '',
1403
  'display_on_categories' => 'select_all_categories',
1404
  'current_categories' => 'select_all_categories',
1405
  'show_for_admin' => 0,
1406
+ 'hide_mobile' => 0,
1407
+ );
1408
+ $display_options = json_encode($display_options);
1409
+ $this->model->insert_data_to_db('formmaker_display_options', array(
1410
+ 'form_id' => $id,
1411
+ 'display_options' => $display_options,
1412
  ));
1413
+
1414
  $this->model->insert_data_to_db('formmaker_views', array(
1415
  'form_id' => $id,
1416
  'views' => 0,
1417
  ));
1418
  }
1419
+
1420
  $backup_id = (int) WDW_FM_Library(self::PLUGIN)->get('backup_id', '');
1421
  if ( $backup_id ) {
1422
  // Set cur 0 before add new current
1431
  $save = $this->model->update_data('formmaker_backup', array(
1432
  'cur' => 1,
1433
  'title' => $title,
1434
+ 'type' => $type,
1435
  'form_front' => $form_front,
1436
+ 'theme' => $theme,
1437
  'sortable' => $sortable,
1438
  'counter' => $counter,
1439
  'label_order' => $label_order,
1464
  }
1465
  $this->model->update_data('formmaker_backup', array( 'cur' => 0 ), array( 'id' => $id ));
1466
  $fm_cur_date = current_time('timestamp');
1467
+
1468
+
1469
+ $form_options = array(
1470
+ 'savedb' => 1,
1471
+ 'requiredmark' => '*',
1472
+ 'submissions_limit' => 0,
1473
+ 'submissions_limit_text' => __('The limit of submissions for this form has been reached.', WDFMInstance(self::PLUGIN)->prefix),
1474
+ 'save_uploads' => 1,
 
 
 
 
 
 
 
1475
  'submit_text' => '',
1476
  'url' => '',
 
1477
  'submit_text_type' => 1,
1478
+ 'article_id' => 0,
 
 
1479
  'tax' => 0,
1480
  'payment_currency' => '',
1481
  'paypal_email' => '',
1482
  'checkout_mode' => 'testmode',
1483
  'paypal_mode' => 0,
1484
+ 'javascript' => $javascript,
1485
+ 'condition' => '',
1486
+ 'user_id_wd' => 'administrator,',
1487
+ 'frontend_submit_fields' => '',
1488
+ 'frontend_submit_stat_fields' => '',
1489
+ 'autogen_layout' => 1,
1490
+ 'custom_front' => '',
1491
+ 'mail' => '{adminemail}',
1492
  'sendemail' => 1,
 
 
 
1493
  'from_mail' => '',
1494
  'from_name' => '',
1495
  'reply_to' => '',
1496
  'send_to' => '',
 
 
1497
  'mail_from_user' => '',
1498
  'mail_from_name_user' => '',
1499
  'reply_to_user' => '',
 
1500
  'mail_cc' => '',
1501
  'mail_cc_user' => '',
1502
  'mail_bcc' => '',
1506
  'mail_mode' => 1,
1507
  'mail_mode_user' => 1,
1508
  'mail_send_email_payment' => 1,
1509
+ 'mail_send_email_payment_user' => 1,
1510
  'mail_attachment' => 1,
1511
  'mail_attachment_user' => 1,
1512
+ 'mail_emptyfields' => 0,
1513
+ 'mail_verify' => 0,
1514
+ 'mail_verify_expiretime' => 0,
1515
+ 'mail_verification_post_id' => 0,
1516
+ 'script_mail' => '{all}',
1517
+ 'script_mail_user' => '{all}',
1518
+ );
1519
+ $form_options = json_encode($form_options);
1520
+
1521
+ $message_id = $this->model->insert_data_to_db('formmaker_backup', array(
1522
+ 'cur' => 1,
1523
+ 'id' => $id,
1524
+ 'title' => $title,
1525
+ 'type' => $type,
1526
+ 'form_front' => $form_front,
1527
+ 'theme' => $theme,
1528
+ 'counter' => $counter,
1529
+ 'published' => 1,
1530
+ 'label_order' => $label_order,
1531
+ 'pagination' => $pagination,
1532
+ 'show_title' => $show_title,
1533
+ 'show_numbers' => $show_numbers,
1534
+ 'public_key' => $public_key,
1535
+ 'private_key' => $private_key,
1536
+ 'recaptcha_theme' => $recaptcha_theme,
1537
+ 'label_order_current' => $label_order_current,
1538
+ 'form_fields' => $form_fields,
1539
  'sortable' => $sortable,
 
 
 
1540
  'header_title' => $header_title,
1541
  'header_description' => $header_description,
1542
  'header_image_url' => $header_image_url,
1545
  'header_hide' => $header_hide,
1546
  'privacy' => '',
1547
  'date' => $fm_cur_date,
1548
+ 'form_options' => $form_options
1549
  ));
 
1550
  if ( $message_id !== FALSE ) {
1551
+ $this->model->create_js($id);
1552
  return 1;
1553
  }
1554
  else {
1629
 
1630
  // check id for db
1631
  if(isset($id) && $id != "") {
1632
+ $id = intval($id);
1633
  $update = $this->model->update_data( "forms", array('title' => $form_name,), array('id' => $id) );
1634
  if( !$update ){
1635
  $message = 2;
1658
  *
1659
  * @param int $id
1660
  * @return array $data
1661
+ */
1662
  private function get_stripe_addon( $id = 0 ) {
1663
  return apply_filters('fm_stripe_display_init', array('form_id' => $id) );
1664
  }
admin/controllers/Submissions_fm.php CHANGED
@@ -212,8 +212,8 @@ class FMControllerSubmissions_fm extends FMAdminController {
212
  $params['style_useremail'] = $this->model->hide_or_not($lists['hide_label_list'], '@submitteremail@');
213
  $params['style_payment_info'] = $this->model->hide_or_not($lists['hide_label_list'], '@payment_info@');
214
 
215
- $params['oder_class_default'] = "manage-column column-autor sortable desc";
216
- $params['oder_class'] = "manage-column column-autor column-title sorted " . $params['asc_or_desc'];
217
  $params['m'] = count($params['sorted_label_names']);
218
  /* sort/filter logics */
219
  $is_sort = false;
@@ -233,16 +233,16 @@ class FMControllerSubmissions_fm extends FMAdminController {
233
  $asc_or_desc = ($_POST['asc_or_desc'] == 'desc' ? 'desc' : 'asc');
234
  }
235
  if ( !empty($is_search) || $is_sort || isset($_POST['current_page']) ) {
236
- $post_url_args['paged'] = WDW_FM_Library(self::PLUGIN)->get('current_page', 1, 'intval');
237
- if ( !empty($_POST['fm_is_search']) ) {
238
- $post_url_args['paged'] = 1;
239
- }
240
- $url_args = array_merge(
241
- array('page' => $this->page, 'task' => 'display', 'current_id' => $id, 'order_by' => $order_by, 'asc_or_desc' => $asc_or_desc),
242
- $post_url_args
243
- );
244
- $redirect = add_query_arg( $url_args, admin_url('admin.php') );
245
- WDW_FM_Library(self::PLUGIN)->fm_redirect( $redirect, false );
246
  }
247
 
248
  $pagination_url_args = array();
212
  $params['style_useremail'] = $this->model->hide_or_not($lists['hide_label_list'], '@submitteremail@');
213
  $params['style_payment_info'] = $this->model->hide_or_not($lists['hide_label_list'], '@payment_info@');
214
 
215
+ $params['oder_class_default'] = "manage-column column-author sortable desc";
216
+ $params['oder_class'] = "manage-column column-author column-title sorted " . $params['asc_or_desc'];
217
  $params['m'] = count($params['sorted_label_names']);
218
  /* sort/filter logics */
219
  $is_sort = false;
233
  $asc_or_desc = ($_POST['asc_or_desc'] == 'desc' ? 'desc' : 'asc');
234
  }
235
  if ( !empty($is_search) || $is_sort || isset($_POST['current_page']) ) {
236
+ $post_url_args['paged'] = WDW_FM_Library(self::PLUGIN)->get('current_page', 1, 'intval');
237
+ if ( !empty($_POST['fm_is_search']) ) {
238
+ $post_url_args['paged'] = 1;
239
+ }
240
+ $url_args = array_merge(
241
+ array('page' => $this->page, 'task' => 'display', 'current_id' => $id, 'order_by' => $order_by, 'asc_or_desc' => $asc_or_desc),
242
+ $post_url_args
243
+ );
244
+ $redirect = add_query_arg( $url_args, admin_url('admin.php') );
245
+ WDW_FM_Library(self::PLUGIN)->fm_redirect( $redirect, false );
246
  }
247
 
248
  $pagination_url_args = array();
admin/controllers/Themes_fm.php CHANGED
@@ -188,7 +188,7 @@ class FMControllerThemes_fm extends FMAdminController {
188
  if ( $row ) {
189
  $row = (array) $row;
190
  unset($row['id']);
191
- $row['title'] = $row['title'] . ' - ' . __('Copy', WDFMInstance(self::PLUGIN)->prefix);
192
  $row['default'] = 0;
193
  $inserted = $this->model->insert_data_to_db($table, (array) $row);
194
  if ( $inserted !== FALSE ) {
@@ -200,10 +200,10 @@ class FMControllerThemes_fm extends FMAdminController {
200
  }
201
  else {
202
  WDW_FM_Library(self::PLUGIN)->fm_redirect(add_query_arg(array(
203
- 'page' => $this->page,
204
- 'task' => 'display',
205
- 'message' => $message,
206
- ), admin_url('admin.php')));
207
  }
208
  }
209
 
188
  if ( $row ) {
189
  $row = (array) $row;
190
  unset($row['id']);
191
+ $row['title'] = $row['title'] . ' - ' . __('Copy', WDFMInstance(self::PLUGIN)->prefix);
192
  $row['default'] = 0;
193
  $inserted = $this->model->insert_data_to_db($table, (array) $row);
194
  if ( $inserted !== FALSE ) {
200
  }
201
  else {
202
  WDW_FM_Library(self::PLUGIN)->fm_redirect(add_query_arg(array(
203
+ 'page' => $this->page,
204
+ 'task' => 'display',
205
+ 'message' => $message,
206
+ ), admin_url('admin.php')));
207
  }
208
  }
209
 
admin/controllers/Uninstall_fm.php CHANGED
@@ -100,6 +100,8 @@ class FMControllerUninstall_fm extends FMAdminController {
100
  $wpdb->prefix . 'formmaker_gdrive_int',
101
  $wpdb->prefix . 'formmaker_display_options',
102
  $wpdb->prefix . 'formmaker_cookies',
 
 
103
  );
104
  }
105
 
100
  $wpdb->prefix . 'formmaker_gdrive_int',
101
  $wpdb->prefix . 'formmaker_display_options',
102
  $wpdb->prefix . 'formmaker_cookies',
103
+ $wpdb->prefix . 'formmaker_webhooks',
104
+ $wpdb->prefix . 'formmaker_webhooks_status',
105
  );
106
  }
107
 
admin/controllers/elementorWidget.php CHANGED
@@ -21,7 +21,7 @@ class FMElementor extends \Elementor\Widget_Base {
21
  * @return string Widget title.
22
  */
23
  public function get_title() {
24
- return __('Form', WDFMInstance(self::PLUGIN)->prefix);
25
  }
26
 
27
  /**
21
  * @return string Widget title.
22
  */
23
  public function get_title() {
24
+ return __('Form Maker', WDFMInstance(self::PLUGIN)->prefix);
25
  }
26
 
27
  /**
admin/models/Checkpaypal.php CHANGED
@@ -13,6 +13,7 @@ class FMModelCheckpaypal extends FMAdminModel {
13
  public function get_form_by_id( $id = 0 ) {
14
  global $wpdb;
15
  $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $id));
 
16
 
17
  return $row;
18
  }
@@ -41,9 +42,9 @@ class FMModelCheckpaypal extends FMAdminModel {
41
  $wpdb->update($wpdb->prefix . "formmaker_submits", array(
42
  'element_value' => $payment_status,
43
  ), array(
44
- 'group_id' => $group_id,
45
- 'element_label' => 0,
46
- ));
47
 
48
  return;
49
  }
13
  public function get_form_by_id( $id = 0 ) {
14
  global $wpdb;
15
  $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $id));
16
+ $row = WDW_FM_Library::convert_json_options_to_old( $row, 'form_options' );
17
 
18
  return $row;
19
  }
42
  $wpdb->update($wpdb->prefix . "formmaker_submits", array(
43
  'element_value' => $payment_status,
44
  ), array(
45
+ 'group_id' => $group_id,
46
+ 'element_label' => 0,
47
+ ));
48
 
49
  return;
50
  }
admin/models/Manage_fm.php CHANGED
@@ -30,12 +30,13 @@ class FMModelManage_fm extends FMAdminModel {
30
  $query .= " LIMIT " . $limit . "," . $items_per_page;
31
  $rows = $wpdb->get_results($query);
32
  if ( !empty($rows) ) {
33
- foreach ( $rows as $row ) {
34
  if ( !isset($row->header_hide) ) {
35
  $row->header_hide = 1;
36
  }
37
- $query = "SELECT count(DISTINCT group_id) FROM " . $wpdb->prefix . "formmaker_submits WHERE form_id=" . (int) $row->id . "";
38
  $row->submission_count = $wpdb->get_var($query);
 
39
  }
40
  }
41
 
@@ -53,6 +54,7 @@ class FMModelManage_fm extends FMAdminModel {
53
  if ( $id != 0 ) {
54
  $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $id));
55
  if ( $row ) {
 
56
  $row->gdpr_checkbox = 0;
57
  $row->gdpr_checkbox_text = __('I consent collecting this data and processing it according to {{privacy_policy}} of this website.', WDFMInstance(self::PLUGIN)->prefix);
58
  $row->save_ip = 1;
@@ -146,6 +148,7 @@ class FMModelManage_fm extends FMAdminModel {
146
  if ( $id != 0 ) {
147
  $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_backup WHERE backup_id="%d"', $id));
148
  if ( $row ) {
 
149
  $row->gdpr_checkbox = 0;
150
  $row->gdpr_checkbox_text = __('I consent collecting this data and processing it according to {{privacy_policy}} of this website.', WDFMInstance(self::PLUGIN)->prefix);
151
  $row->save_ip = 1;
@@ -229,6 +232,7 @@ class FMModelManage_fm extends FMAdminModel {
229
  $row->mail_mode = 1;
230
  $row->mail_mode_user = 1;
231
  $row->mail_send_email_payment = 1;
 
232
  $row->mail_attachment = 1;
233
  $row->mail_attachment_user = 1;
234
  $row->user_id_wd = '';
@@ -1097,6 +1101,7 @@ class FMModelManage_fm extends FMAdminModel {
1097
  'w_allow_other',
1098
  'w_allow_other_num',
1099
  'w_value_disabled',
 
1100
  'w_choices_value',
1101
  'w_choices_params',
1102
  'w_class',
@@ -1117,6 +1122,7 @@ class FMModelManage_fm extends FMAdminModel {
1117
  'w_allow_other',
1118
  'w_allow_other_num',
1119
  'w_value_disabled',
 
1120
  'w_choices_value',
1121
  'w_choices_params',
1122
  'w_class',
@@ -1139,6 +1145,7 @@ class FMModelManage_fm extends FMAdminModel {
1139
  'w_allow_other',
1140
  'w_allow_other_num',
1141
  'w_value_disabled',
 
1142
  'w_choices_value',
1143
  'w_choices_params',
1144
  'w_class',
@@ -1180,7 +1187,7 @@ class FMModelManage_fm extends FMAdminModel {
1180
  $param['w_choices_checked'][$key] = '';
1181
  }
1182
  }
1183
- $rep = '<div id="wdform_field' . $id . '" type="type_checkbox" class="wdform_field" style="display: table-cell;">' . $arrows . '<div align="left" id="' . $id . '_label_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $display_label . '; width: ' . $param['w_field_label_size'] . 'px;"><span id="' . $id . '_element_labelform_id_temp" class="label" style="vertical-align: top;">' . $label . '</span><span id="' . $id . '_required_elementform_id_temp" class="required" style="vertical-align: top;">' . $required_sym . '</span></div><div align="left" id="' . $id . '_element_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $param['w_field_label_pos'] . ';"><input type="hidden" value="type_checkbox" name="' . $id . '_typeform_id_temp" id="' . $id . '_typeform_id_temp"><input type="hidden" value="' . $param['w_required'] . '" name="' . $id . '_requiredform_id_temp" id="' . $id . '_requiredform_id_temp"><input type="hidden" value="' . $param['w_hide_label'] . '" name="' . $id . '_hide_labelform_id_temp" id="' . $id . '_hide_labelform_id_temp"/><input type="hidden" value="' . $param['w_randomize'] . '" name="' . $id . '_randomizeform_id_temp" id="' . $id . '_randomizeform_id_temp"><input type="hidden" value="' . $param['w_allow_other'] . '" name="' . $id . '_allow_otherform_id_temp" id="' . $id . '_allow_otherform_id_temp"><input type="hidden" value="' . $param['w_allow_other_num'] . '" name="' . $id . '_allow_other_numform_id_temp" id="' . $id . '_allow_other_numform_id_temp"><input type="hidden" value="' . $param['w_rowcol'] . '" name="' . $id . '_rowcol_numform_id_temp" id="' . $id . '_rowcol_numform_id_temp"><input type="hidden" value="' . $param['w_limit_choice'] . '" name="' . $id . '_limitchoice_numform_id_temp" id="' . $id . '_limitchoice_numform_id_temp"><input type="hidden" value="' . $param['w_limit_choice_alert'] . '" name="' . $id . '_limitchoicealert_numform_id_temp" id="' . $id . '_limitchoicealert_numform_id_temp"><input type="hidden" value="' . $param['w_field_option_pos'] . '" id="' . $id . '_option_left_right"><input type="hidden" value="' . $param['w_value_disabled'] . '" name="' . $id . '_value_disabledform_id_temp" id="' . $id . '_value_disabledform_id_temp"><div style="display: table;"><div id="' . $id . '_table_little" style="display: table-row-group;" ' . ($param['w_flow'] == 'hor' ? 'for_hor="' . $id . '_hor"' : '') . '>';
1184
  if ( $param['w_flow'] == 'hor' ) {
1185
  $j = 0;
1186
  for ( $i = 0; $i < (int) $param['w_rowcol']; $i++ ) {
@@ -1340,6 +1347,7 @@ class FMModelManage_fm extends FMAdminModel {
1340
  'w_allow_other',
1341
  'w_allow_other_num',
1342
  'w_value_disabled',
 
1343
  'w_choices_value',
1344
  'w_choices_params',
1345
  'w_class',
@@ -1360,6 +1368,7 @@ class FMModelManage_fm extends FMAdminModel {
1360
  'w_allow_other',
1361
  'w_allow_other_num',
1362
  'w_value_disabled',
 
1363
  'w_choices_value',
1364
  'w_choices_params',
1365
  'w_class',
@@ -1401,7 +1410,7 @@ class FMModelManage_fm extends FMAdminModel {
1401
  $param['w_choices_checked'][$key] = '';
1402
  }
1403
  }
1404
- $rep = '<div id="wdform_field' . $id . '" type="type_radio" class="wdform_field" style="display: table-cell;">' . $arrows . '<div align="left" id="' . $id . '_label_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $display_label . '; width: ' . $param['w_field_label_size'] . 'px;"><span id="' . $id . '_element_labelform_id_temp" class="label" style="vertical-align: top;">' . $label . '</span><span id="' . $id . '_required_elementform_id_temp" class="required" style="vertical-align: top;">' . $required_sym . '</span></div><div align="left" id="' . $id . '_element_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $param['w_field_label_pos'] . ';"><input type="hidden" value="type_radio" name="' . $id . '_typeform_id_temp" id="' . $id . '_typeform_id_temp"><input type="hidden" value="' . $param['w_required'] . '" name="' . $id . '_requiredform_id_temp" id="' . $id . '_requiredform_id_temp"><input type="hidden" value="' . $param['w_hide_label'] . '" name="' . $id . '_hide_labelform_id_temp" id="' . $id . '_hide_labelform_id_temp"/><input type="hidden" value="' . $param['w_randomize'] . '" name="' . $id . '_randomizeform_id_temp" id="' . $id . '_randomizeform_id_temp"><input type="hidden" value="' . $param['w_allow_other'] . '" name="' . $id . '_allow_otherform_id_temp" id="' . $id . '_allow_otherform_id_temp"><input type="hidden" value="' . $param['w_allow_other_num'] . '" name="' . $id . '_allow_other_numform_id_temp" id="' . $id . '_allow_other_numform_id_temp"><input type="hidden" value="' . $param['w_rowcol'] . '" name="' . $id . '_rowcol_numform_id_temp" id="' . $id . '_rowcol_numform_id_temp"><input type="hidden" value="' . $param['w_field_option_pos'] . '" id="' . $id . '_option_left_right"><input type="hidden" value="' . $param['w_value_disabled'] . '" name="' . $id . '_value_disabledform_id_temp" id="' . $id . '_value_disabledform_id_temp"><div style="display: table;"><div id="' . $id . '_table_little" style="display: table-row-group;" ' . ($param['w_flow'] == 'hor' ? 'for_hor="' . $id . '_hor"' : '') . '>';
1405
  if ( $param['w_flow'] == 'hor' ) {
1406
  $j = 0;
1407
  for ( $i = 0; $i < (int) $param['w_rowcol']; $i++ ) {
@@ -1554,6 +1563,7 @@ class FMModelManage_fm extends FMAdminModel {
1554
  'w_choices_disabled',
1555
  'w_required',
1556
  'w_value_disabled',
 
1557
  'w_choices_value',
1558
  'w_choices_params',
1559
  'w_class',
@@ -1570,6 +1580,7 @@ class FMModelManage_fm extends FMAdminModel {
1570
  'w_choices_disabled',
1571
  'w_required',
1572
  'w_value_disabled',
 
1573
  'w_choices_value',
1574
  'w_choices_params',
1575
  'w_class',
@@ -1609,7 +1620,7 @@ class FMModelManage_fm extends FMAdminModel {
1609
  $param['w_choices_checked'][$key] = '';
1610
  }
1611
  }
1612
- $rep = '<div id="wdform_field' . $id . '" type="type_own_select" class="wdform_field" style="display: table-cell;">' . $arrows . '<div align="left" id="' . $id . '_label_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $display_label . '; width: ' . $param['w_field_label_size'] . 'px;"><span id="' . $id . '_element_labelform_id_temp" class="label" style="vertical-align: top;">' . $label . '</span><span id="' . $id . '_required_elementform_id_temp" class="required" style="vertical-align: top;">' . $required_sym . '</span></div><div align="left" id="' . $id . '_element_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $param['w_field_label_pos'] . '; "><input type="hidden" value="type_own_select" name="' . $id . '_typeform_id_temp" id="' . $id . '_typeform_id_temp"><input type="hidden" value="' . $param['w_hide_label'] . '" name="' . $id . '_hide_labelform_id_temp" id="' . $id . '_hide_labelform_id_temp"/><input type="hidden" value="' . $param['w_required'] . '" name="' . $id . '_requiredform_id_temp" id="' . $id . '_requiredform_id_temp"><input type="hidden" value="' . $param['w_value_disabled'] . '" name="' . $id . '_value_disabledform_id_temp" id="' . $id . '_value_disabledform_id_temp"><select id="' . $id . '_elementform_id_temp" name="' . $id . '_elementform_id_temp" onchange="set_select(this)" style="width: ' . $param['w_size'] . 'px;" ' . $param['attributes'] . ' disabled>';
1613
  foreach ( $param['w_choices'] as $key => $choice ) {
1614
  $where = '';
1615
  $order_by = '';
@@ -3659,32 +3670,35 @@ class FMModelManage_fm extends FMAdminModel {
3659
  if ( !$row ) {
3660
  $row = new stdClass();
3661
  $row->form_id = $id;
3662
- $row->type = 'embedded';
3663
- $row->scrollbox_loading_delay = 0;
3664
- $row->popover_animate_effect = '';
3665
- $row->popover_loading_delay = 0;
3666
- $row->popover_frequency = 0;
3667
- $row->topbar_position = 1;
3668
- $row->topbar_remain_top = 1;
3669
- $row->topbar_closing = 1;
3670
- $row->topbar_hide_duration = 0;
3671
- $row->scrollbox_position = 1;
3672
- $row->scrollbox_trigger_point = 20;
3673
- $row->scrollbox_hide_duration = 0;
3674
- $row->scrollbox_auto_hide = 1;
3675
- $row->hide_mobile = 0;
3676
- $row->scrollbox_closing = 1;
3677
- $row->scrollbox_minimize = 1;
3678
- $row->scrollbox_minimize_text = 'The form is minimized';
3679
- $row->display_on = 'home,post,page';
3680
- $row->posts_include = '';
3681
- $row->pages_include = '';
3682
- $row->display_on_categories = 'select_all_categories';
3683
- $row->current_categories = 'select_all_categories';
3684
- $row->show_for_admin = 0;
 
 
 
3685
  }
3686
 
3687
- return $row;
3688
  }
3689
 
3690
  public function fm_posts_query() {
@@ -3823,6 +3837,20 @@ class FMModelManage_fm extends FMAdminModel {
3823
  return $wpdb->update($wpdb->prefix . $table, $data_params, $where_data_params);
3824
  }
3825
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3826
  /**
3827
  * Get request value.
3828
  *
@@ -3903,7 +3931,8 @@ class FMModelManage_fm extends FMAdminModel {
3903
 
3904
  public function get_autogen_layout( $id = 0 ) {
3905
  global $wpdb;
3906
- $autogen_layout = $wpdb->get_var($wpdb->prepare('SELECT autogen_layout FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $id));
 
3907
  return $autogen_layout == '1';
3908
  }
3909
 
@@ -4005,7 +4034,9 @@ class FMModelManage_fm extends FMAdminModel {
4005
  */
4006
  public function insert_formmaker_backup( $backup_id = 0, $id = 0 ) {
4007
  global $wpdb;
4008
- $query = "INSERT INTO " . $wpdb->prefix . "formmaker_backup (backup_id, cur, id, title, `type`, mail, form_front, theme, javascript, submit_text, url, submit_text_type, script_mail, script_mail_user, counter, published, label_order, label_order_current, article_id, pagination, show_title, show_numbers, public_key, private_key, recaptcha_theme, paypal_mode, checkout_mode, paypal_email, payment_currency, tax, form_fields, savedb, sendemail, requiredmark, submissions_limit, submissions_limit_text, from_mail, from_name, reply_to, send_to, autogen_layout, custom_front, mail_from_user, mail_from_name_user, reply_to_user, `condition`, mail_cc, mail_cc_user, mail_bcc, mail_bcc_user, mail_subject, mail_subject_user, mail_mode, mail_mode_user, mail_send_email_payment, mail_attachment, mail_attachment_user, user_id_wd, sortable, frontend_submit_fields, frontend_submit_stat_fields, mail_emptyfields, mail_verify, mail_verify_expiretime, mail_verification_post_id, save_uploads, header_title, header_description, header_image_url, header_image_animation, header_hide_image, header_hide, privacy, date) SELECT " . $backup_id . ", 1, formmakerbkup.id, formmakerbkup.title, formmakerbkup.type, formmakerbkup.mail, formmakerbkup.form_front, formmakerbkup.theme, formmakerbkup.javascript, formmakerbkup.submit_text, formmakerbkup.url, formmakerbkup.submit_text_type, formmakerbkup.script_mail, formmakerbkup.script_mail_user, formmakerbkup.counter, formmakerbkup.published, formmakerbkup.label_order, formmakerbkup.label_order_current, formmakerbkup.article_id, formmakerbkup.pagination, formmakerbkup.show_title, formmakerbkup.show_numbers, formmakerbkup.public_key, formmakerbkup.private_key, formmakerbkup.recaptcha_theme, formmakerbkup.paypal_mode, formmakerbkup.checkout_mode, formmakerbkup.paypal_email, formmakerbkup.payment_currency, formmakerbkup.tax, formmakerbkup.form_fields, formmakerbkup.savedb, formmakerbkup.sendemail, formmakerbkup.requiredmark, formmakerbkup.submissions_limit, formmakerbkup.submissions_limit_text, formmakerbkup.from_mail, formmakerbkup.from_name, formmakerbkup.reply_to, formmakerbkup.send_to, formmakerbkup.autogen_layout, formmakerbkup.custom_front, formmakerbkup.mail_from_user, formmakerbkup.mail_from_name_user, formmakerbkup.reply_to_user, formmakerbkup.condition, formmakerbkup.mail_cc, formmakerbkup.mail_cc_user, formmakerbkup.mail_bcc, formmakerbkup.mail_bcc_user, formmakerbkup.mail_subject, formmakerbkup.mail_subject_user, formmakerbkup.mail_mode, formmakerbkup.mail_mode_user, formmakerbkup.mail_send_email_payment, formmakerbkup.mail_attachment, formmakerbkup.mail_attachment_user, formmakerbkup.user_id_wd, formmakerbkup.sortable, formmakerbkup.frontend_submit_fields, formmakerbkup.frontend_submit_stat_fields, formmakerbkup.mail_emptyfields, formmakerbkup.mail_verify, formmakerbkup.mail_verify_expiretime, formmakerbkup.mail_verification_post_id, formmakerbkup.save_uploads, formmakerbkup.header_title, formmakerbkup.header_description, formmakerbkup.header_image_url, formmakerbkup.header_image_animation, formmakerbkup.header_hide_image, formmakerbkup.header_hide, formmakerbkup.privacy, '".current_time('timestamp')."' FROM " . $wpdb->prefix . "formmaker as formmakerbkup WHERE id=" . $id;
 
 
4009
  return $wpdb->query($query);
4010
  }
4011
 
30
  $query .= " LIMIT " . $limit . "," . $items_per_page;
31
  $rows = $wpdb->get_results($query);
32
  if ( !empty($rows) ) {
33
+ foreach ( $rows as $key => $row ) {
34
  if ( !isset($row->header_hide) ) {
35
  $row->header_hide = 1;
36
  }
37
+ $query = "SELECT count(DISTINCT group_id) FROM " . $wpdb->prefix . "formmaker_submits WHERE form_id=" . (int) $row->id;
38
  $row->submission_count = $wpdb->get_var($query);
39
+ $rows[$key] = WDW_FM_Library::convert_json_options_to_old( $row, 'form_options');
40
  }
41
  }
42
 
54
  if ( $id != 0 ) {
55
  $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker WHERE id="%d"', $id));
56
  if ( $row ) {
57
+ $row = WDW_FM_Library::convert_json_options_to_old( $row, 'form_options' );
58
  $row->gdpr_checkbox = 0;
59
  $row->gdpr_checkbox_text = __('I consent collecting this data and processing it according to {{privacy_policy}} of this website.', WDFMInstance(self::PLUGIN)->prefix);
60
  $row->save_ip = 1;
148
  if ( $id != 0 ) {
149
  $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_backup WHERE backup_id="%d"', $id));
150
  if ( $row ) {
151
+ $row = WDW_FM_Library::convert_json_options_to_old( $row, 'form_options' );
152
  $row->gdpr_checkbox = 0;
153
  $row->gdpr_checkbox_text = __('I consent collecting this data and processing it according to {{privacy_policy}} of this website.', WDFMInstance(self::PLUGIN)->prefix);
154
  $row->save_ip = 1;
232
  $row->mail_mode = 1;
233
  $row->mail_mode_user = 1;
234
  $row->mail_send_email_payment = 1;
235
+ $row->mail_send_email_payment_user = 1;
236
  $row->mail_attachment = 1;
237
  $row->mail_attachment_user = 1;
238
  $row->user_id_wd = '';
1101
  'w_allow_other',
1102
  'w_allow_other_num',
1103
  'w_value_disabled',
1104
+ 'w_use_for_submission',
1105
  'w_choices_value',
1106
  'w_choices_params',
1107
  'w_class',
1122
  'w_allow_other',
1123
  'w_allow_other_num',
1124
  'w_value_disabled',
1125
+ 'w_use_for_submission',
1126
  'w_choices_value',
1127
  'w_choices_params',
1128
  'w_class',
1145
  'w_allow_other',
1146
  'w_allow_other_num',
1147
  'w_value_disabled',
1148
+ 'w_use_for_submission',
1149
  'w_choices_value',
1150
  'w_choices_params',
1151
  'w_class',
1187
  $param['w_choices_checked'][$key] = '';
1188
  }
1189
  }
1190
+ $rep = '<div id="wdform_field' . $id . '" type="type_checkbox" class="wdform_field" style="display: table-cell;">' . $arrows . '<div align="left" id="' . $id . '_label_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $display_label . '; width: ' . $param['w_field_label_size'] . 'px;"><span id="' . $id . '_element_labelform_id_temp" class="label" style="vertical-align: top;">' . $label . '</span><span id="' . $id . '_required_elementform_id_temp" class="required" style="vertical-align: top;">' . $required_sym . '</span></div><div align="left" id="' . $id . '_element_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $param['w_field_label_pos'] . ';"><input type="hidden" value="type_checkbox" name="' . $id . '_typeform_id_temp" id="' . $id . '_typeform_id_temp"><input type="hidden" value="' . $param['w_required'] . '" name="' . $id . '_requiredform_id_temp" id="' . $id . '_requiredform_id_temp"><input type="hidden" value="' . $param['w_hide_label'] . '" name="' . $id . '_hide_labelform_id_temp" id="' . $id . '_hide_labelform_id_temp"/><input type="hidden" value="' . $param['w_randomize'] . '" name="' . $id . '_randomizeform_id_temp" id="' . $id . '_randomizeform_id_temp"><input type="hidden" value="' . $param['w_allow_other'] . '" name="' . $id . '_allow_otherform_id_temp" id="' . $id . '_allow_otherform_id_temp"><input type="hidden" value="' . $param['w_allow_other_num'] . '" name="' . $id . '_allow_other_numform_id_temp" id="' . $id . '_allow_other_numform_id_temp"><input type="hidden" value="' . $param['w_rowcol'] . '" name="' . $id . '_rowcol_numform_id_temp" id="' . $id . '_rowcol_numform_id_temp"><input type="hidden" value="' . $param['w_limit_choice'] . '" name="' . $id . '_limitchoice_numform_id_temp" id="' . $id . '_limitchoice_numform_id_temp"><input type="hidden" value="' . $param['w_limit_choice_alert'] . '" name="' . $id . '_limitchoicealert_numform_id_temp" id="' . $id . '_limitchoicealert_numform_id_temp"><input type="hidden" value="' . $param['w_field_option_pos'] . '" id="' . $id . '_option_left_right"><input type="hidden" value="' . $param['w_value_disabled'] . '" name="' . $id . '_value_disabledform_id_temp" id="' . $id . '_value_disabledform_id_temp"><input type="hidden" value="' . $param['w_use_for_submission'] . '" name="' . $id . '_use_for_submissionform_id_temp" id="' . $id . '_use_for_submissionform_id_temp"><div style="display: table;"><div id="' . $id . '_table_little" style="display: table-row-group;" ' . ($param['w_flow'] == 'hor' ? 'for_hor="' . $id . '_hor"' : '') . '>';
1191
  if ( $param['w_flow'] == 'hor' ) {
1192
  $j = 0;
1193
  for ( $i = 0; $i < (int) $param['w_rowcol']; $i++ ) {
1347
  'w_allow_other',
1348
  'w_allow_other_num',
1349
  'w_value_disabled',
1350
+ 'w_use_for_submission',
1351
  'w_choices_value',
1352
  'w_choices_params',
1353
  'w_class',
1368
  'w_allow_other',
1369
  'w_allow_other_num',
1370
  'w_value_disabled',
1371
+ 'w_use_for_submission',
1372
  'w_choices_value',
1373
  'w_choices_params',
1374
  'w_class',
1410
  $param['w_choices_checked'][$key] = '';
1411
  }
1412
  }
1413
+ $rep = '<div id="wdform_field' . $id . '" type="type_radio" class="wdform_field" style="display: table-cell;">' . $arrows . '<div align="left" id="' . $id . '_label_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $display_label . '; width: ' . $param['w_field_label_size'] . 'px;"><span id="' . $id . '_element_labelform_id_temp" class="label" style="vertical-align: top;">' . $label . '</span><span id="' . $id . '_required_elementform_id_temp" class="required" style="vertical-align: top;">' . $required_sym . '</span></div><div align="left" id="' . $id . '_element_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $param['w_field_label_pos'] . ';"><input type="hidden" value="type_radio" name="' . $id . '_typeform_id_temp" id="' . $id . '_typeform_id_temp"><input type="hidden" value="' . $param['w_required'] . '" name="' . $id . '_requiredform_id_temp" id="' . $id . '_requiredform_id_temp"><input type="hidden" value="' . $param['w_hide_label'] . '" name="' . $id . '_hide_labelform_id_temp" id="' . $id . '_hide_labelform_id_temp"/><input type="hidden" value="' . $param['w_randomize'] . '" name="' . $id . '_randomizeform_id_temp" id="' . $id . '_randomizeform_id_temp"><input type="hidden" value="' . $param['w_allow_other'] . '" name="' . $id . '_allow_otherform_id_temp" id="' . $id . '_allow_otherform_id_temp"><input type="hidden" value="' . $param['w_allow_other_num'] . '" name="' . $id . '_allow_other_numform_id_temp" id="' . $id . '_allow_other_numform_id_temp"><input type="hidden" value="' . $param['w_rowcol'] . '" name="' . $id . '_rowcol_numform_id_temp" id="' . $id . '_rowcol_numform_id_temp"><input type="hidden" value="' . $param['w_field_option_pos'] . '" id="' . $id . '_option_left_right"><input type="hidden" value="' . $param['w_value_disabled'] . '" name="' . $id . '_value_disabledform_id_temp" id="' . $id . '_value_disabledform_id_temp"><input type="hidden" value="' . $param['w_use_for_submission'] . '" name="' . $id . '_use_for_submissionform_id_temp" id="' . $id . '_use_for_submissionform_id_temp"><div style="display: table;"><div id="' . $id . '_table_little" style="display: table-row-group;" ' . ($param['w_flow'] == 'hor' ? 'for_hor="' . $id . '_hor"' : '') . '>';
1414
  if ( $param['w_flow'] == 'hor' ) {
1415
  $j = 0;
1416
  for ( $i = 0; $i < (int) $param['w_rowcol']; $i++ ) {
1563
  'w_choices_disabled',
1564
  'w_required',
1565
  'w_value_disabled',
1566
+ 'w_use_for_submission',
1567
  'w_choices_value',
1568
  'w_choices_params',
1569
  'w_class',
1580
  'w_choices_disabled',
1581
  'w_required',
1582
  'w_value_disabled',
1583
+ 'w_use_for_submission',
1584
  'w_choices_value',
1585
  'w_choices_params',
1586
  'w_class',
1620
  $param['w_choices_checked'][$key] = '';
1621
  }
1622
  }
1623
+ $rep = '<div id="wdform_field' . $id . '" type="type_own_select" class="wdform_field" style="display: table-cell;">' . $arrows . '<div align="left" id="' . $id . '_label_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $display_label . '; width: ' . $param['w_field_label_size'] . 'px;"><span id="' . $id . '_element_labelform_id_temp" class="label" style="vertical-align: top;">' . $label . '</span><span id="' . $id . '_required_elementform_id_temp" class="required" style="vertical-align: top;">' . $required_sym . '</span></div><div align="left" id="' . $id . '_element_sectionform_id_temp" class="' . $param['w_class'] . '" style="display: ' . $param['w_field_label_pos'] . '; "><input type="hidden" value="type_own_select" name="' . $id . '_typeform_id_temp" id="' . $id . '_typeform_id_temp"><input type="hidden" value="' . $param['w_hide_label'] . '" name="' . $id . '_hide_labelform_id_temp" id="' . $id . '_hide_labelform_id_temp"/><input type="hidden" value="' . $param['w_required'] . '" name="' . $id . '_requiredform_id_temp" id="' . $id . '_requiredform_id_temp"><input type="hidden" value="' . $param['w_value_disabled'] . '" name="' . $id . '_value_disabledform_id_temp" id="' . $id . '_value_disabledform_id_temp"><input type="hidden" value="' . $param['w_use_for_submission'] . '" name="' . $id . '_use_for_submissionform_id_temp" id="' . $id . '_use_for_submissionform_id_temp"><select id="' . $id . '_elementform_id_temp" name="' . $id . '_elementform_id_temp" onchange="set_select(this)" style="width: ' . $param['w_size'] . 'px;" ' . $param['attributes'] . ' disabled>';
1624
  foreach ( $param['w_choices'] as $key => $choice ) {
1625
  $where = '';
1626
  $order_by = '';
3670
  if ( !$row ) {
3671
  $row = new stdClass();
3672
  $row->form_id = $id;
3673
+ $display_options = array(
3674
+ 'type' => 'embedded',
3675
+ 'scrollbox_loading_delay' => 0,
3676
+ 'scrollbox_position' => 1,
3677
+ 'scrollbox_trigger_point' => 20,
3678
+ 'scrollbox_hide_duration' => 0,
3679
+ 'scrollbox_auto_hide' => 1,
3680
+ 'scrollbox_closing' => 1,
3681
+ 'scrollbox_minimize' => 1,
3682
+ 'scrollbox_minimize_text' => 'The form is minimized',
3683
+ 'popover_animate_effect' => '',
3684
+ 'popover_loading_delay' => 0,
3685
+ 'popover_frequency' => 0,
3686
+ 'topbar_position' => 1,
3687
+ 'topbar_remain_top' => 1,
3688
+ 'topbar_closing' => 1,
3689
+ 'topbar_hide_duration' => 0,
3690
+ 'display_on' => 'home,post,page',
3691
+ 'posts_include' => '',
3692
+ 'pages_include' => '',
3693
+ 'display_on_categories' => 'select_all_categories',
3694
+ 'current_categories' => 'select_all_categories',
3695
+ 'show_for_admin' => 0,
3696
+ 'hide_mobile' => 0,
3697
+ );
3698
+ $row->display_options = json_encode($display_options);
3699
  }
3700
 
3701
+ return WDW_FM_Library::convert_json_options_to_old($row, 'display_options');
3702
  }
3703
 
3704
  public function fm_posts_query() {
3837
  return $wpdb->update($wpdb->prefix . $table, $data_params, $where_data_params);
3838
  }
3839
 
3840
+ /**
3841
+ * Get form option
3842
+ *
3843
+ * @param $table
3844
+ * @param $id
3845
+ *
3846
+ * @return mixed
3847
+ */
3848
+ public function get_form_options($table, $id) {
3849
+ global $wpdb;
3850
+ $query = "SELECT form_options FROM " . $wpdb->prefix . $table . " WHERE id = '" . $id . "'";
3851
+ return $wpdb->get_var($query);
3852
+ }
3853
+
3854
  /**
3855
  * Get request value.
3856
  *
3931
 
3932
  public function get_autogen_layout( $id = 0 ) {
3933
  global $wpdb;
3934
+ $form_options = WDW_FM_Library::get_form_options_json('formmaker', $id);
3935
+ $autogen_layout = isset($form_options['autogen_layout']) ? $form_options['autogen_layout'] : 1;
3936
  return $autogen_layout == '1';
3937
  }
3938
 
4034
  */
4035
  public function insert_formmaker_backup( $backup_id = 0, $id = 0 ) {
4036
  global $wpdb;
4037
+ $query = "INSERT INTO " . $wpdb->prefix . "formmaker_backup
4038
+ (backup_id, cur, id, title, `type`, form_front, theme, counter, published, label_order, label_order_current, pagination, show_title, show_numbers, public_key, private_key, recaptcha_theme, form_fields, sortable, header_title, header_description, header_image_url, header_image_animation, header_hide_image, header_hide, privacy, date, form_options)
4039
+ SELECT " . $backup_id . ", 1, formmakerbkup.id, formmakerbkup.title, formmakerbkup.type, formmakerbkup.form_front, formmakerbkup.theme, formmakerbkup.counter, formmakerbkup.published, formmakerbkup.label_order, formmakerbkup.label_order_current, formmakerbkup.pagination, formmakerbkup.show_title, formmakerbkup.show_numbers, formmakerbkup.public_key, formmakerbkup.private_key, formmakerbkup.recaptcha_theme, formmakerbkup.form_fields, formmakerbkup.sortable, formmakerbkup.header_title, formmakerbkup.header_description, formmakerbkup.header_image_url, formmakerbkup.header_image_animation, formmakerbkup.header_hide_image, formmakerbkup.header_hide, formmakerbkup.privacy, '" . current_time('timestamp') . "', formmakerbkup.form_options FROM " . $wpdb->prefix . "formmaker as formmakerbkup WHERE id=" . $id;
4040
  return $wpdb->query($query);
4041
  }
4042
 
admin/models/Submissions_fm.php CHANGED
@@ -19,8 +19,11 @@ class FMModelSubmissions_fm extends FMAdminModel {
19
  */
20
  public function get_forms() {
21
  global $wpdb;
22
- $query = "SELECT `id`, `title`, `published` FROM " . $wpdb->prefix . "formmaker " . (!WDFMInstance(self::PLUGIN)->is_free ? '' : ' WHERE id' . (WDFMInstance(self::PLUGIN)->is_free == 1 ? ' NOT ' : ' ') . 'IN (' . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ')') . " ORDER BY `title`";
23
  $results = $wpdb->get_results($query);
 
 
 
24
  $forms = array();
25
  if( !empty($results) ) {
26
  foreach($results as $row) {
@@ -105,19 +108,20 @@ class FMModelSubmissions_fm extends FMAdminModel {
105
  $join_where = array();
106
  $join_verified = array();
107
  $rows_ord = array();
 
108
  $join = '';
109
  $query = $wpdb->prepare("SELECT `group_id`,`element_value` FROM " . $wpdb->prefix . "formmaker_submits WHERE `form_id`='%d' and `element_label` = 'verifyinfo' ", $form_id);
110
  $ver_emails_data = $wpdb->get_results($query);
111
  $ver_emails_array = array();
112
  if ( $ver_emails_data ) {
113
  foreach ( $ver_emails_data as $ver_email ) {
114
- $elem_label = str_replace('verified**', '', $ver_email->element_value);
115
- $query = $wpdb->prepare("SELECT `element_value` FROM " . $wpdb->prefix . "formmaker_submits WHERE `form_id`='%d' AND `group_id` = '%d' AND `element_label` = '%s' ", $form_id, (int) $ver_email->group_id, $elem_label);
116
- if ( !isset($ver_emails_array[$elem_label]) ) {
117
- $ver_emails_array[$elem_label] = array();
118
  }
119
- if ( !in_array($wpdb->get_var($query), $ver_emails_array[$elem_label]) ) {
120
- $ver_emails_array[$elem_label][] = $wpdb->get_var($query);
121
  }
122
  }
123
  }
@@ -128,16 +132,15 @@ class FMModelSubmissions_fm extends FMAdminModel {
128
  $sorted_label_names_original = array();
129
  $where_labels = array();
130
  $where2 = array();
131
-
132
- $order_by = WDW_FM_Library(self::PLUGIN)->get('order_by', 'group_id');
133
- $asc_or_desc = (WDW_FM_Library(self::PLUGIN)->get('asc_or_desc', 'desc') == 'desc' ? 'desc' : 'asc');
134
- $lists['hide_label_list'] = WDW_FM_Library(self::PLUGIN)->get('hide_label_list');
135
- $lists['startdate'] = WDW_FM_Library(self::PLUGIN)->get('startdate');
136
- $lists['enddate'] = WDW_FM_Library(self::PLUGIN)->get('enddate');
137
- $lists['ip_search'] = WDW_FM_Library(self::PLUGIN)->get('ip_search');
138
- $lists['username_search'] = WDW_FM_Library(self::PLUGIN)->get('username_search');
139
- $lists['useremail_search'] = WDW_FM_Library(self::PLUGIN)->get('useremail_search');
140
- $lists['id_search'] = WDW_FM_Library(self::PLUGIN)->get('id_search');
141
  if ( $lists['ip_search'] ) {
142
  $where[] = 'ip LIKE "%' . $lists['ip_search'] . '%"';
143
  }
@@ -177,12 +180,13 @@ class FMModelSubmissions_fm extends FMAdminModel {
177
  array_push($labels, $results[$i]->element_label);
178
  }
179
  $form = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id='%d'", $form_id));
 
180
  if ( !empty($form->label_order) && strpos($form->label_order, 'type_paypal_') ) {
181
  $form->label_order = $form->label_order . "item_total#**id**#Item Total#**label**#type_paypal_payment_total#****#total#**id**#Total#**label**#type_paypal_payment_total#****#0#**id**#Payment Status#**label**#type_paypal_payment_status#****#";
182
  }
183
- if ( !empty($form->label_order)) {
184
- $form_labels = explode('#****#', $form->label_order);
185
- }
186
  $form_labels = array_slice($form_labels, 0, count($form_labels) - 1);
187
  foreach ( $form_labels as $key => $form_label ) {
188
  $label_id = explode('#**id**#', $form_label);
@@ -203,32 +207,34 @@ class FMModelSubmissions_fm extends FMAdminModel {
203
  array_push($sorted_label_names, $label_names[$key]);
204
  array_push($sorted_label_types, $label_types[$key]);
205
  array_push($sorted_label_names_original, $label_names_original[$key]);
206
- $search_temp = '';
207
- $_search_key = $form_id . '_' . $label_id . '_search';
208
- if ( WDW_FM_Library(self::PLUGIN)->get( $_search_key ) ) {
209
- $search_temp = WDW_FM_Library(self::PLUGIN)->get( $_search_key );
210
  }
211
- $search_temp = urldecode($search_temp);
212
- /* TODO conflict other DB version
213
- $search_temp = html_entity_decode($search_temp, ENT_QUOTES);
214
- */
215
-
216
  $lists[$form_id . '_' . $label_id . '_search'] = $search_temp;
217
  if ( $search_temp ) {
218
  $join_query[] = 'search';
219
  $join_where[] = array( 'label' => $label_id, 'search' => $search_temp );
220
  }
221
  $search_verified = '';
222
- if ( isset($_POST[$form_id . '_' . $label_id . '_search_verified']) ) {
223
- $search_verified = WDW_FM_Library(self::PLUGIN)->get( $form_id . '_' . $label_id . '_search_verified' );
224
  $lists[$form_id . '_' . $label_id . '_search_verified'] = $search_verified;
225
  }
226
- if ( $search_verified && isset($ver_emails_array[$label_id]) ) {
227
  $join_query[] = 'search';
228
  $join_where[] = NULL;
 
 
 
229
  $join_verified[] = array(
230
  'label' => $label_id,
231
- 'ver_search' => implode('|', $ver_emails_array[$label_id]),
232
  );
233
  }
234
  }
@@ -246,7 +252,7 @@ class FMModelSubmissions_fm extends FMAdminModel {
246
  $ver_where = '';
247
  if ( !empty($join_verified) ) {
248
  foreach ( $join_verified as $key_ver => $join_ver ) {
249
- $ver_where .= '(element_label="' . $join_ver['label'] . '" AND element_value REGEXP "' . $join_ver['ver_search'] . '" ) AND';
250
  }
251
  }
252
  switch ( count($join_query) ) {
@@ -307,8 +313,8 @@ class FMModelSubmissions_fm extends FMAdminModel {
307
  }
308
  $total = $wpdb->get_var($query);
309
  $query_sub_count = "SELECT count(distinct group_id) from " . $wpdb->prefix . "formmaker_submits";
310
- $sub_count = (int) $wpdb->get_var($query_sub_count);
311
- $query = $join . ' ' . $orderby . ' LIMIT ' . $page_num . ', '. $per_num;
312
  $results = $wpdb->get_results($query);
313
  for ( $i = 0; $i < count($results); $i++ ) {
314
  array_push($rows_ord, $results[$i]->group_id);
@@ -325,7 +331,7 @@ class FMModelSubmissions_fm extends FMAdminModel {
325
  $where2[] = "group_id='" . $rows_ordd . "'";
326
  }
327
  $where2 = (count($where2) ? ' WHERE ' . implode(' OR ', $where2) . '' : '');
328
- $query = 'SELECT * FROM ' . $wpdb->prefix . 'formmaker_submits ' . $where2;
329
  $rows = $wpdb->get_results($query);
330
  $group_ids = $rows_ord;
331
  $lists['total'] = $total;
@@ -421,10 +427,10 @@ class FMModelSubmissions_fm extends FMAdminModel {
421
  * @return array
422
  */
423
  public function sort_group_ids( $sorted_label_names_count = 0, $group_ids = array() ) {
424
- $count_labe = $sorted_label_names_count;
425
  $group_id_s = array();
426
  $l = 0;
427
- if ( count($group_ids) > 0 and $count_labe ) {
428
  for ( $i = 0; $i < count($group_ids); $i++ ) {
429
  if ( !in_array($group_ids[$i], $group_id_s) ) {
430
  array_push($group_id_s, $group_ids[$i]);
@@ -543,6 +549,7 @@ class FMModelSubmissions_fm extends FMAdminModel {
543
  $query = "SELECT * FROM " . $wpdb->prefix . "formmaker_submits WHERE group_id=" . $id;
544
  $rows = $wpdb->get_results($query);
545
  $form = $wpdb->get_row("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id=" . $rows[0]->form_id);
 
546
  $params = array();
547
  $label_id = array();
548
  $label_order_original = array();
@@ -1128,7 +1135,8 @@ class FMModelSubmissions_fm extends FMAdminModel {
1128
  */
1129
  public function get_all( $id = 0 ) {
1130
  global $wpdb;
1131
-
1132
- return $wpdb->get_row("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id='" . $id . "'");
 
1133
  }
1134
  }
19
  */
20
  public function get_forms() {
21
  global $wpdb;
22
+ $query = "SELECT `id`, `title`, `published`, `form_options` FROM " . $wpdb->prefix . "formmaker " . (!WDFMInstance(self::PLUGIN)->is_free ? '' : ' WHERE id' . (WDFMInstance(self::PLUGIN)->is_free == 1 ? ' NOT ' : ' ') . 'IN (' . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ')') . " ORDER BY `title`";
23
  $results = $wpdb->get_results($query);
24
+ foreach ($results as $key => $result) {
25
+ $results[$key] = WDW_FM_Library::convert_json_options_to_old($result, 'form_options');
26
+ }
27
  $forms = array();
28
  if( !empty($results) ) {
29
  foreach($results as $row) {
108
  $join_where = array();
109
  $join_verified = array();
110
  $rows_ord = array();
111
+ $ver_email_keys_for_regex = array();
112
  $join = '';
113
  $query = $wpdb->prepare("SELECT `group_id`,`element_value` FROM " . $wpdb->prefix . "formmaker_submits WHERE `form_id`='%d' and `element_label` = 'verifyinfo' ", $form_id);
114
  $ver_emails_data = $wpdb->get_results($query);
115
  $ver_emails_array = array();
116
  if ( $ver_emails_data ) {
117
  foreach ( $ver_emails_data as $ver_email ) {
118
+ $element_label_new = explode('verified**', $ver_email->element_value)[1];
119
+ $query = $wpdb->prepare("SELECT `element_value` FROM " . $wpdb->prefix . "formmaker_submits WHERE `form_id`='%d' AND `group_id` = '%d' AND `element_label` = '%s' ", $form_id, (int) $ver_email->group_id, $element_label_new);
120
+ if ( !isset($ver_emails_array[$ver_email->group_id]) ) {
121
+ $ver_emails_array[$ver_email->group_id] = array();
122
  }
123
+ if ( !in_array($wpdb->get_var($query), $ver_emails_array[$ver_email->group_id]) ) {
124
+ $ver_emails_array[$ver_email->group_id][] = $wpdb->get_var($query);
125
  }
126
  }
127
  }
132
  $sorted_label_names_original = array();
133
  $where_labels = array();
134
  $where2 = array();
135
+ $order_by = WDW_FM_Library(self::PLUGIN)->get('order_by', 'group_id');
136
+ $asc_or_desc = (WDW_FM_Library(self::PLUGIN)->get('asc_or_desc', 'desc') == 'desc' ? 'desc' : 'asc');
137
+ $lists['hide_label_list'] = WDW_FM_Library(self::PLUGIN)->get('hide_label_list');
138
+ $lists['startdate'] = WDW_FM_Library(self::PLUGIN)->get('startdate');
139
+ $lists['enddate'] = WDW_FM_Library(self::PLUGIN)->get('enddate');
140
+ $lists['ip_search'] = WDW_FM_Library(self::PLUGIN)->get('ip_search');
141
+ $lists['username_search'] = WDW_FM_Library(self::PLUGIN)->get('username_search');
142
+ $lists['useremail_search'] = WDW_FM_Library(self::PLUGIN)->get('useremail_search');
143
+ $lists['id_search'] = WDW_FM_Library(self::PLUGIN)->get('id_search');
 
144
  if ( $lists['ip_search'] ) {
145
  $where[] = 'ip LIKE "%' . $lists['ip_search'] . '%"';
146
  }
180
  array_push($labels, $results[$i]->element_label);
181
  }
182
  $form = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id='%d'", $form_id));
183
+ $form = WDW_FM_Library::convert_json_options_to_old( $form, 'form_options');
184
  if ( !empty($form->label_order) && strpos($form->label_order, 'type_paypal_') ) {
185
  $form->label_order = $form->label_order . "item_total#**id**#Item Total#**label**#type_paypal_payment_total#****#total#**id**#Total#**label**#type_paypal_payment_total#****#0#**id**#Payment Status#**label**#type_paypal_payment_status#****#";
186
  }
187
+ if ( !empty($form->label_order) ) {
188
+ $form_labels = explode('#****#', $form->label_order);
189
+ }
190
  $form_labels = array_slice($form_labels, 0, count($form_labels) - 1);
191
  foreach ( $form_labels as $key => $form_label ) {
192
  $label_id = explode('#**id**#', $form_label);
207
  array_push($sorted_label_names, $label_names[$key]);
208
  array_push($sorted_label_types, $label_types[$key]);
209
  array_push($sorted_label_names_original, $label_names_original[$key]);
210
+ $search_temp = '';
211
+ $_search_key = $form_id . '_' . $label_id . '_search';
212
+ if ( WDW_FM_Library(self::PLUGIN)->get($_search_key) ) {
213
+ $search_temp = WDW_FM_Library(self::PLUGIN)->get($_search_key);
214
  }
215
+ $search_temp = urldecode($search_temp);
216
+ /* TODO conflict other DB version
217
+ $search_temp = html_entity_decode($search_temp, ENT_QUOTES);
218
+ */
 
219
  $lists[$form_id . '_' . $label_id . '_search'] = $search_temp;
220
  if ( $search_temp ) {
221
  $join_query[] = 'search';
222
  $join_where[] = array( 'label' => $label_id, 'search' => $search_temp );
223
  }
224
  $search_verified = '';
225
+ if ( WDW_FM_Library(self::PLUGIN)->get($form_id . '_' . $label_id . '_search_verified') ) {
226
+ $search_verified = WDW_FM_Library(self::PLUGIN)->get($form_id . '_' . $label_id . '_search_verified');
227
  $lists[$form_id . '_' . $label_id . '_search_verified'] = $search_verified;
228
  }
229
+ if ( $search_verified ) {
230
  $join_query[] = 'search';
231
  $join_where[] = NULL;
232
+ foreach (array_keys($ver_emails_array) as $key => $value) {
233
+ $ver_email_keys_for_regex[$key] = '^' . $value . '$';
234
+ }
235
  $join_verified[] = array(
236
  'label' => $label_id,
237
+ 'ver_search' => implode('|', $ver_email_keys_for_regex),
238
  );
239
  }
240
  }
252
  $ver_where = '';
253
  if ( !empty($join_verified) ) {
254
  foreach ( $join_verified as $key_ver => $join_ver ) {
255
+ $ver_where .= '(element_label ="' . $join_ver['label'] . '" AND group_id REGEXP "' . $join_ver['ver_search'] . '" ) AND';
256
  }
257
  }
258
  switch ( count($join_query) ) {
313
  }
314
  $total = $wpdb->get_var($query);
315
  $query_sub_count = "SELECT count(distinct group_id) from " . $wpdb->prefix . "formmaker_submits";
316
+ $sub_count = (int) $wpdb->get_var($query_sub_count);
317
+ $query = $join . ' ' . $orderby . ' LIMIT ' . $page_num . ', ' . $per_num;
318
  $results = $wpdb->get_results($query);
319
  for ( $i = 0; $i < count($results); $i++ ) {
320
  array_push($rows_ord, $results[$i]->group_id);
331
  $where2[] = "group_id='" . $rows_ordd . "'";
332
  }
333
  $where2 = (count($where2) ? ' WHERE ' . implode(' OR ', $where2) . '' : '');
334
+ $query = 'SELECT * FROM ' . $wpdb->prefix . 'formmaker_submits ' . $where2;
335
  $rows = $wpdb->get_results($query);
336
  $group_ids = $rows_ord;
337
  $lists['total'] = $total;
427
  * @return array
428
  */
429
  public function sort_group_ids( $sorted_label_names_count = 0, $group_ids = array() ) {
430
+ $count_label = $sorted_label_names_count;
431
  $group_id_s = array();
432
  $l = 0;
433
+ if ( count($group_ids) > 0 and $count_label ) {
434
  for ( $i = 0; $i < count($group_ids); $i++ ) {
435
  if ( !in_array($group_ids[$i], $group_id_s) ) {
436
  array_push($group_id_s, $group_ids[$i]);
549
  $query = "SELECT * FROM " . $wpdb->prefix . "formmaker_submits WHERE group_id=" . $id;
550
  $rows = $wpdb->get_results($query);
551
  $form = $wpdb->get_row("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id=" . $rows[0]->form_id);
552
+ $form = WDW_FM_Library::convert_json_options_to_old( $form, 'form_options');
553
  $params = array();
554
  $label_id = array();
555
  $label_order_original = array();
1135
  */
1136
  public function get_all( $id = 0 ) {
1137
  global $wpdb;
1138
+ $row = $wpdb->get_row("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE id='" . $id . "'");
1139
+ $row = WDW_FM_Library::convert_json_options_to_old( $row, 'form_options');
1140
+ return $row;
1141
  }
1142
  }
admin/models/Widget.php CHANGED
@@ -18,6 +18,9 @@ class FMModelWidget {
18
  $query .= ' order by `title`';
19
  $rows = $wpdb->get_results($query);
20
 
 
 
 
21
  return $rows;
22
  }
23
  }
18
  $query .= ' order by `title`';
19
  $rows = $wpdb->get_results($query);
20
 
21
+ foreach ( $rows as $key => $value ) {
22
+ $rows[$key] = WDW_FM_Library::convert_json_options_to_old( $rows[$key], 'form_options' );
23
+ }
24
  return $rows;
25
  }
26
  }
admin/views/FMPaypalInfo.php CHANGED
@@ -61,11 +61,11 @@ class FMViewPaypal_info extends FMAdminView {
61
  <td class="key"><?php _e('Status', WDFMInstance(self::PLUGIN)->prefix); ?></td>
62
  <td>
63
  <?php
64
- if($row->status == "requires_capture" ){
65
  echo $row->status = "Requires capture";
66
- }elseif($row->status == "succeeded" ){
67
  echo $row->status = "Succeeded";
68
- }else {
69
  echo $row->status = $row->status;
70
  }
71
  ?>
61
  <td class="key"><?php _e('Status', WDFMInstance(self::PLUGIN)->prefix); ?></td>
62
  <td>
63
  <?php
64
+ if ( $row->status == "requires_capture" ){
65
  echo $row->status = "Requires capture";
66
+ } elseif ( $row->status == "succeeded" ) {
67
  echo $row->status = "Succeeded";
68
+ } else {
69
  echo $row->status = $row->status;
70
  }
71
  ?>
admin/views/Manage_fm.php CHANGED
@@ -327,7 +327,7 @@ class FMViewManage_fm extends FMAdminView {
327
  <div class="fm-page-header">
328
  <div class="wd-page-title wd-header">
329
  <h1 class="wp-heading-inline"><?php _e('Form Title', WDFMInstance(self::PLUGIN)->prefix); ?></h1>
330
- <input id="title" name="title" value="<?php echo $row->title; ?>" data-initial-value="<?php echo $row->title; ?>" class="fm-check-change" type="text" />
331
  <div class="fm-page-actions">
332
  <?php
333
  if ( isset($params['revisions_total']) && $params['revisions_total'] > 1 ) {
@@ -776,6 +776,19 @@ class FMViewManage_fm extends FMAdminView {
776
  <span class="dashicons dashicons-list-view" data-id="mail"></span>
777
  <p class="description"><?php _e('Specify the email address(es), to which submitted form information will be sent. For multiple email addresses separate with commas.', WDFMInstance(self::PLUGIN)->prefix); ?></p>
778
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
779
  <div class="wd-group">
780
  <label class="wd-label"><?php _e('Email From', WDFMInstance(self::PLUGIN)->prefix); ?></label>
781
  <?php
@@ -945,17 +958,16 @@ class FMViewManage_fm extends FMAdminView {
945
  ?>
946
  <p class="description"><?php _e('Use this setting to select the email field of your form, to which the submissions will be sent.', WDFMInstance(self::PLUGIN)->prefix); ?></p>
947
  </div>
948
- <?php
949
- if ($payment_method !== 0) { ?>
950
  <div class="wd-group">
951
  <label class="wd-label"><?php _e('Send Email', WDFMInstance(self::PLUGIN)->prefix); ?></label>
952
  <div class="fm-row">
953
- <input type="radio" name="mail_send_email_payment" <?php echo $row->mail_send_email_payment == 1 ? 'checked="checked"' : '' ?> id="fm_send_email_payment-1" class="wd-radio" value="1">
954
- <label class="wd-label-radio" for="fm_send_email_payment-1"><?php _e('Before completion of payment', WDFMInstance(self::PLUGIN)->prefix); ?></label>
955
  </div>
956
  <div class="fm-row">
957
- <input type="radio" name="mail_send_email_payment" <?php echo $row->mail_send_email_payment == 0 ? 'checked="checked"' : '' ?> id="fm_send_email_payment-0" class="wd-radio" value="0">
958
- <label class="wd-label-radio" for="fm_send_email_payment-0"><?php _e('After payment has been successfully completed', WDFMInstance(self::PLUGIN)->prefix); ?></label>
959
  </div>
960
  </div>
961
  <?php } ?>
@@ -1339,13 +1351,17 @@ class FMViewManage_fm extends FMAdminView {
1339
  <input type="radio" name="published" <?php echo $row->published == 0 ? 'checked="checked"' : '' ?> id="fm_go-published-0" class="wd-radio" value="0">
1340
  <label class="wd-label-radio" for="fm_go-published-0"><?php _e('No', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1341
  </span>
1342
- <span class="wd-group">
1343
  <label class="wd-label"><?php _e('Save data(to database)', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1344
- <input type="radio" name="savedb" <?php echo $row->savedb == 1 ? 'checked="checked"' : '' ?> id="fm_go-savedb-1" class="wd-radio" value="1">
1345
- <label class="wd-label-radio" for="fm_go-savedb-1"><?php _e('Yes', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1346
- <input type="radio" name="savedb" <?php echo $row->savedb == 0 ? 'checked="checked"' : '' ?> id="fm_go-savedb-0" class="wd-radio" value="0">
1347
- <label class="wd-label-radio" for="fm_go-savedb-0"><?php _e('No', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1348
- <p class="description"><?php _e('IMPORTANT! If you disable this option, the information submitted through this form will not be saved in the database and will not be displayed on the Submissions page.', WDFMInstance(self::PLUGIN)->prefix); ?></p>
 
 
 
 
1349
  </span>
1350
  <span class="wd-group">
1351
  <label class="wd-label" for="requiredmark"><?php _e('Required fields mark', WDFMInstance(self::PLUGIN)->prefix); ?></label>
@@ -1596,9 +1612,9 @@ class FMViewManage_fm extends FMAdminView {
1596
  </div>
1597
  <div class="wd-group <?php if(WDFMInstance(self::PLUGIN)->is_free) { echo 'fm-free-option'; } ?>">
1598
  <label class="wd-label"><?php _e('Checkout Mode', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1599
- <input type="radio" name="checkout_mode" <?php echo $row->checkout_mode == 1 ? 'checked="checked"' : '' ?> id="checkout_mode-1" class="wd-radio" value="1" <?php disabled(WDFMInstance(self::PLUGIN)->is_free, true) ?> />
1600
  <label class="wd-label-radio" for="checkout_mode-1"><?php _e('Production', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1601
- <input type="radio" name="checkout_mode" <?php echo $row->checkout_mode == 0 ? 'checked="checked"' : '' ?> id="checkout_mode-0" class="wd-radio" value="0" <?php disabled(WDFMInstance(self::PLUGIN)->is_free, true) ?> />
1602
  <label class="wd-label-radio" for="checkout_mode-0"><?php _e('Testmode', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1603
  </div>
1604
  <div class="wd-group <?php if(WDFMInstance(self::PLUGIN)->is_free) { echo 'fm-free-option'; } ?>">
@@ -1677,7 +1693,8 @@ class FMViewManage_fm extends FMAdminView {
1677
  "type_paypal_radio",
1678
  "type_paypal_shipping",
1679
  "type_date_new",
1680
- "type_time"
 
1681
  );
1682
  $select_type_fields = array(
1683
  "type_address",
@@ -1703,9 +1720,9 @@ class FMViewManage_fm extends FMAdminView {
1703
  }
1704
  array_push($types, $temp[0]);
1705
  $temp = explode('*:*w_field_label*:*', $temp[1]);
1706
- array_push($labels, str_replace(array("'", '"'), array('',''), $temp[0]));
1707
- array_push($all_labels, str_replace(array("'", '"'), array('',''), $temp[0]));
1708
- array_push($paramss, str_replace(array("'", '"'), array('',''), $temp[1]));
1709
  }
1710
  $params_names = array();
1711
  $address_params_names = array(
@@ -1736,11 +1753,13 @@ class FMViewManage_fm extends FMAdminView {
1736
  foreach ( $address_mini_labels as $i => $label ) {
1737
  $key = $val['id'] . '_address_' . $i;
1738
  $type_key = ($i < 5) ? 'type_text' : 'type_address';
 
 
1739
  $value = $val['w_field_label'] . ' (' . $label . ')';
1740
  array_push($ids, $key);
1741
  array_push($all_ids, $key);
1742
- array_push($labels, str_replace(array("'", '"'), array('',''), $value));
1743
- array_push($all_labels, str_replace(array("'", '"'), array('',''), $value));
1744
  array_push($types, $type_key);
1745
  }
1746
  }
@@ -1762,23 +1781,14 @@ class FMViewManage_fm extends FMAdminView {
1762
  unset($paramss[$key]);
1763
  }
1764
  }
1765
- if ( !empty($address_fields_array) ) {
1766
- foreach ( $address_fields_array as $key => $val ) {
1767
- unset($ids[$key]);
1768
- unset($all_ids[$key]);
1769
- unset($labels[$key]);
1770
- unset($all_labels[$key]);
1771
- unset($types[$key]);
1772
- }
1773
- }
1774
  $json_conditions_data = json_encode(array(
1775
  'ids_index' => $ids_index,
1776
  'ids' => $ids,
1777
  'all_ids' => $all_ids,
1778
- 'labels' => $labels,
1779
- 'all_labels' => $all_labels,
1780
  'types' => $types,
1781
- 'params' => $paramss));
1782
 
1783
  $show_hide = array();
1784
  $field_label = array();
@@ -1834,9 +1844,9 @@ class FMViewManage_fm extends FMAdminView {
1834
  </select>
1835
  <select id="fields<?php echo $k; ?>" name="fields<?php echo $k; ?>" class="fm_condition_fields">
1836
  <?php
1837
- foreach ( $all_labels as $key => $value ) {
1838
  $selected = ( $field_label[$k] == $all_ids[$key] ) ? 'selected="selected"' : '';
1839
- echo '<option value="' . $all_ids[$key] . '" ' . $selected . '>' . $value . '</option>';
1840
  }
1841
  ?>
1842
  </select>
@@ -1882,7 +1892,7 @@ class FMViewManage_fm extends FMAdminView {
1882
  $multiple = ($types[$key_select_or_input] == "type_checkbox" || $types[$key_select_or_input] == "type_paypal_checkbox") ? 'multiple="multiple" class="multiple_select"' : '';
1883
  }
1884
  if ( $field_label[$k] != $ids[$key_label] ) {
1885
- echo '<option id="' . $k . '_' . $key_label . '" value="' . $ids[$key_label] . '" ' . $selected . '>' . $value_label . '</option>';
1886
  }
1887
  }
1888
  ?>
@@ -1927,26 +1937,34 @@ class FMViewManage_fm extends FMAdminView {
1927
  $w_size = explode('*:*w_flow*:*', $paramss[$key_select_or_input]);
1928
  break;
1929
  }
1930
- $w_choices = explode('*:*w_choices*:*', $w_size[1]);
1931
- $w_choices_array = explode('***', $w_choices[0]);
1932
- if ( $types[$key_select_or_input] == 'type_radio' || $types[$key_select_or_input] == 'type_checkbox' || $types[$key_select_or_input] == 'type_own_select' ) {
1933
- if ( strpos($w_choices[1], 'w_value_disabled') > -1 ) {
1934
- $w_value_disabled = explode('*:*w_value_disabled*:*', $w_choices[1]);
1935
- $w_choices_value = explode('*:*w_choices_value*:*', $w_value_disabled[1]);
1936
- $w_choices_value = $w_choices_value[0];
1937
- }
1938
- if ( isset($w_choices_value) ) {
1939
- $w_choices_value_array = explode('***', $w_choices_value);
 
 
 
 
 
 
 
 
 
 
 
1940
  }
1941
  else {
1942
- $w_choices_value_array = $w_choices_array;
 
 
1943
  }
1944
  }
1945
- else {
1946
- $w_choices_price = explode('*:*w_choices_price*:*', $w_choices[1]);
1947
- $w_choices_value = $w_choices_price[0];
1948
- $w_choices_value_array = explode('***', $w_choices_value);
1949
- }
1950
  ?>
1951
  <?php if ( $key_select_or_input !== '' && in_array($types[$key_select_or_input], $select_type_fields) ) { ?>
1952
  <select id="field_value<?php echo $k; ?>_<?php echo $key; ?>" <?php echo $multiple; ?> class="fm_condition_field_select_value">
@@ -1960,7 +1978,7 @@ class FMViewManage_fm extends FMAdminView {
1960
  }
1961
  $selected = ( in_array($w_choice, $multiselect) ) ? 'selected="selected"' : '';
1962
  if ( strpos($w_choices_array[$m], '[') === FALSE && strpos($w_choices_array[$m], ']') === FALSE ) {
1963
- echo '<option id="choise_' . $k . '_' . $m . '" value="' . $w_choice . '" ' . $selected . '>' . $w_choices_array[$m] . '</option>';
1964
  }
1965
  }
1966
  if ( $types[$key_select_or_input] == 'type_address' ) {
327
  <div class="fm-page-header">
328
  <div class="wd-page-title wd-header">
329
  <h1 class="wp-heading-inline"><?php _e('Form Title', WDFMInstance(self::PLUGIN)->prefix); ?></h1>
330
+ <input id="title" name="title" value="<?php echo esc_attr($row->title); ?>" data-initial-value="<?php echo esc_attr($row->title); ?>" class="fm-check-change" type="text" />
331
  <div class="fm-page-actions">
332
  <?php
333
  if ( isset($params['revisions_total']) && $params['revisions_total'] > 1 ) {
776
  <span class="dashicons dashicons-list-view" data-id="mail"></span>
777
  <p class="description"><?php _e('Specify the email address(es), to which submitted form information will be sent. For multiple email addresses separate with commas.', WDFMInstance(self::PLUGIN)->prefix); ?></p>
778
  </div>
779
+ <?php if ( !empty($payment_method) ) { ?>
780
+ <div class="wd-group">
781
+ <label class="wd-label"><?php _e('Send Email', WDFMInstance(self::PLUGIN)->prefix); ?></label>
782
+ <div class="fm-row">
783
+ <input type="radio" name="mail_send_email_payment" <?php echo $row->mail_send_email_payment == 1 ? 'checked="checked"' : '' ?> id="fm_send_email_payment-1" class="wd-radio" value="1">
784
+ <label class="wd-label-radio" for="fm_send_email_payment-1"><?php _e('Before completion of payment', WDFMInstance(self::PLUGIN)->prefix); ?></label>
785
+ </div>
786
+ <div class="fm-row">
787
+ <input type="radio" name="mail_send_email_payment" <?php echo $row->mail_send_email_payment == 2 ? 'checked="checked"' : '' ?> id="fm_send_email_payment-2" class="wd-radio" value="2">
788
+ <label class="wd-label-radio" for="fm_send_email_payment-2"><?php _e('After payment has been successfully completed', WDFMInstance(self::PLUGIN)->prefix); ?></label>
789
+ </div>
790
+ </div>
791
+ <?php } ?>
792
  <div class="wd-group">
793
  <label class="wd-label"><?php _e('Email From', WDFMInstance(self::PLUGIN)->prefix); ?></label>
794
  <?php
958
  ?>
959
  <p class="description"><?php _e('Use this setting to select the email field of your form, to which the submissions will be sent.', WDFMInstance(self::PLUGIN)->prefix); ?></p>
960
  </div>
961
+ <?php if ( !empty($payment_method) ) { ?>
 
962
  <div class="wd-group">
963
  <label class="wd-label"><?php _e('Send Email', WDFMInstance(self::PLUGIN)->prefix); ?></label>
964
  <div class="fm-row">
965
+ <input type="radio" name="mail_send_email_payment_user" <?php echo $row->mail_send_email_payment_user == 1 ? 'checked="checked"' : '' ?> id="fm_send_email_payment_user-1" class="wd-radio" value="1">
966
+ <label class="wd-label-radio" for="fm_send_email_payment_user-1"><?php _e('Before completion of payment', WDFMInstance(self::PLUGIN)->prefix); ?></label>
967
  </div>
968
  <div class="fm-row">
969
+ <input type="radio" name="mail_send_email_payment_user" <?php echo $row->mail_send_email_payment_user == 2 ? 'checked="checked"' : '' ?> id="fm_send_email_payment_user-2" class="wd-radio" value="2">
970
+ <label class="wd-label-radio" for="fm_send_email_payment_user-2"><?php _e('After payment has been successfully completed', WDFMInstance(self::PLUGIN)->prefix); ?></label>
971
  </div>
972
  </div>
973
  <?php } ?>
1351
  <input type="radio" name="published" <?php echo $row->published == 0 ? 'checked="checked"' : '' ?> id="fm_go-published-0" class="wd-radio" value="0">
1352
  <label class="wd-label-radio" for="fm_go-published-0"><?php _e('No', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1353
  </span>
1354
+ <span class="wd-group">
1355
  <label class="wd-label"><?php _e('Save data(to database)', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1356
+ <input type="radio" name="savedb" <?php echo ( $row->savedb == 1 || $payment_method != "paypal" ) ? 'checked="checked"' : '' ?> id="fm_go-savedb-1" class="wd-radio" value="1">
1357
+ <label class="wd-label-radio" for="fm_go-savedb-1"><?php echo $payment_method != "paypal" ? __('Yes', WDFMInstance(self::PLUGIN)->prefix) : __('Before completion of payment.', WDFMInstance(self::PLUGIN)->prefix); ?></label> <?php echo $payment_method == "paypal" ? "<br>" : ""; ?>
1358
+ <?php if ( $payment_method == "paypal" ) { ?>
1359
+ <p><input type="radio" name="savedb" <?php echo $row->savedb == 2 ? 'checked="checked"' : '' ?> id="fm_go-savedb-2" class="wd-radio" value="2">
1360
+ <label class="wd-label-radio" for="fm_go-savedb-2"><?php _e('After payment has been successfully completed.', WDFMInstance(self::PLUGIN)->prefix); ?></label></p>
1361
+ <?php } ?>
1362
+ <input type="radio" name="savedb" <?php echo $row->savedb == 0 ? 'checked="checked"' : '' ?> id="fm_go-savedb-0" class="wd-radio" value="0">
1363
+ <label class="wd-label-radio" for="fm_go-savedb-0"><?php echo $payment_method != "paypal" ? __('No', WDFMInstance(self::PLUGIN)->prefix) : __('Do not save', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1364
+ <p class="description"><?php _e('IMPORTANT! If you disable this option, the information submitted through this form will not be saved in the database and will not be displayed on the Submissions page.', WDFMInstance(self::PLUGIN)->prefix); ?></p>
1365
  </span>
1366
  <span class="wd-group">
1367
  <label class="wd-label" for="requiredmark"><?php _e('Required fields mark', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1612
  </div>
1613
  <div class="wd-group <?php if(WDFMInstance(self::PLUGIN)->is_free) { echo 'fm-free-option'; } ?>">
1614
  <label class="wd-label"><?php _e('Checkout Mode', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1615
+ <input type="radio" name="checkout_mode" <?php echo ( isset($row->checkout_mode) && $row->checkout_mode == 1) ? 'checked="checked"' : '' ?> id="checkout_mode-1" class="wd-radio" value="1" <?php disabled(WDFMInstance(self::PLUGIN)->is_free, true) ?> />
1616
  <label class="wd-label-radio" for="checkout_mode-1"><?php _e('Production', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1617
+ <input type="radio" name="checkout_mode" <?php echo ( !isset($row->checkout_mode) || $row->checkout_mode == 0 || $row->checkout_mode == 'testmode') ? 'checked="checked"' : '' ?> id="checkout_mode-0" class="wd-radio" value="0" <?php disabled(WDFMInstance(self::PLUGIN)->is_free, true) ?> />
1618
  <label class="wd-label-radio" for="checkout_mode-0"><?php _e('Testmode', WDFMInstance(self::PLUGIN)->prefix); ?></label>
1619
  </div>
1620
  <div class="wd-group <?php if(WDFMInstance(self::PLUGIN)->is_free) { echo 'fm-free-option'; } ?>">
1693
  "type_paypal_radio",
1694
  "type_paypal_shipping",
1695
  "type_date_new",
1696
+ "type_time",
1697
+ "type_editor"
1698
  );
1699
  $select_type_fields = array(
1700
  "type_address",
1720
  }
1721
  array_push($types, $temp[0]);
1722
  $temp = explode('*:*w_field_label*:*', $temp[1]);
1723
+ array_push($labels, str_replace(array("'",'"'),array('%quot%','%dquot%'), $temp[0]));
1724
+ array_push($all_labels, str_replace(array("'",'"'),array('%quot%','%dquot%'), $temp[0]));
1725
+ array_push($paramss, str_replace(array("'",'"'),array('%quot%','%dquot%'), $temp[1]));
1726
  }
1727
  $params_names = array();
1728
  $address_params_names = array(
1753
  foreach ( $address_mini_labels as $i => $label ) {
1754
  $key = $val['id'] . '_address_' . $i;
1755
  $type_key = ($i < 5) ? 'type_text' : 'type_address';
1756
+ $val['w_field_label'] = str_replace(array("'",'"'),array('%quot%','%dquot%'), htmlspecialchars_decode($val['w_field_label']));
1757
+ $label = str_replace(array("'",'"'),array('%quot%','%dquot%'), htmlspecialchars_decode($label));
1758
  $value = $val['w_field_label'] . ' (' . $label . ')';
1759
  array_push($ids, $key);
1760
  array_push($all_ids, $key);
1761
+ array_push($labels, $value);
1762
+ array_push($all_labels, $value);
1763
  array_push($types, $type_key);
1764
  }
1765
  }
1781
  unset($paramss[$key]);
1782
  }
1783
  }
 
 
 
 
 
 
 
 
 
1784
  $json_conditions_data = json_encode(array(
1785
  'ids_index' => $ids_index,
1786
  'ids' => $ids,
1787
  'all_ids' => $all_ids,
1788
+ 'labels' => str_replace(array("'",'"'), array('%quot%','%dquot%'),$labels),
1789
+ 'all_labels' => str_replace(array("'",'"'), array('%quot%','%dquot%'),$all_labels),
1790
  'types' => $types,
1791
+ 'params' => str_replace(array("'",'"'), array('%quot%','%dquot%'),$paramss)));
1792
 
1793
  $show_hide = array();
1794
  $field_label = array();
1844
  </select>
1845
  <select id="fields<?php echo $k; ?>" name="fields<?php echo $k; ?>" class="fm_condition_fields">
1846
  <?php
1847
+ foreach ( $labels as $key => $value ) {
1848
  $selected = ( $field_label[$k] == $all_ids[$key] ) ? 'selected="selected"' : '';
1849
+ echo '<option value="' . $all_ids[$key] . '" ' . $selected . '>' . str_replace(array('%quot%','%dquot%'),array("'",'"'),$value) . '</option>';
1850
  }
1851
  ?>
1852
  </select>
1892
  $multiple = ($types[$key_select_or_input] == "type_checkbox" || $types[$key_select_or_input] == "type_paypal_checkbox") ? 'multiple="multiple" class="multiple_select"' : '';
1893
  }
1894
  if ( $field_label[$k] != $ids[$key_label] ) {
1895
+ echo '<option id="' . $k . '_' . $key_label . '" value="' . $ids[$key_label] . '" ' . $selected . '>' . str_replace(array('%quot%','%dquot%'),array("'",'"'),$value_label) . '</option>';
1896
  }
1897
  }
1898
  ?>
1937
  $w_size = explode('*:*w_flow*:*', $paramss[$key_select_or_input]);
1938
  break;
1939
  }
1940
+ if ( !empty($w_size) ) {
1941
+ $w_choices = explode('*:*w_choices*:*', $w_size[1]);
1942
+ $w_choices_array = explode('***', $w_choices[0]);
1943
+ if ( $types[$key_select_or_input] == 'type_radio' || $types[$key_select_or_input] == 'type_checkbox' || $types[$key_select_or_input] == 'type_own_select' ) {
1944
+ if ( strpos($w_choices[1], 'w_value_disabled') > -1 ) {
1945
+ // case for enabled use_for_submission
1946
+ if ( strpos($w_choices[1], 'w_use_for_submission') === FALSE ) {
1947
+ $w_value_disabled = explode('*:*w_value_disabled*:*', $w_choices[1]);
1948
+ }
1949
+ else {
1950
+ $w_value_disabled = explode('*:*w_use_for_submission*:*', $w_choices[1]);
1951
+ }
1952
+ $w_choices_value = explode('*:*w_choices_value*:*', $w_value_disabled[1]);
1953
+ $w_choices_value = $w_choices_value[0];
1954
+ }
1955
+ if ( isset($w_choices_value) ) {
1956
+ $w_choices_value_array = explode('***', $w_choices_value);
1957
+ }
1958
+ else {
1959
+ $w_choices_value_array = $w_choices_array;
1960
+ }
1961
  }
1962
  else {
1963
+ $w_choices_price = explode('*:*w_choices_price*:*', $w_choices[1]);
1964
+ $w_choices_value = $w_choices_price[0];
1965
+ $w_choices_value_array = explode('***', $w_choices_value);
1966
  }
1967
  }
 
 
 
 
 
1968
  ?>
1969
  <?php if ( $key_select_or_input !== '' && in_array($types[$key_select_or_input], $select_type_fields) ) { ?>
1970
  <select id="field_value<?php echo $k; ?>_<?php echo $key; ?>" <?php echo $multiple; ?> class="fm_condition_field_select_value">
1978
  }
1979
  $selected = ( in_array($w_choice, $multiselect) ) ? 'selected="selected"' : '';
1980
  if ( strpos($w_choices_array[$m], '[') === FALSE && strpos($w_choices_array[$m], ']') === FALSE ) {
1981
+ echo '<option id="choise_' . $k . '_' . $m . '" value="' . $w_choice . '" ' . $selected . '>' . str_replace(array('%quot%','%dquot%'),array("'",'"'),$w_choices_array[$m]) . '</option>';
1982
  }
1983
  }
1984
  if ( $types[$key_select_or_input] == 'type_address' ) {
admin/views/Submissions_fm.php CHANGED
@@ -70,7 +70,7 @@ class FMViewSubmissions_fm extends FMAdminView {
70
  <br>
71
  <div class="tablenav top">
72
  <div class="alignleft">
73
- <?php echo $this->saelect_form( array('id' => $id, 'forms' => $forms, 'page' => $page, 'page_url' => $page_url, 'order_by' => $order_by, 'asc_or_desc' => $asc_or_desc) ); ?>
74
  </div>
75
  <div class="fm-export-tools">
76
  <?php $blocked_ips_link = add_query_arg(array( 'page' => 'blocked_ips' . WDFMInstance(self::PLUGIN)->menu_postfix ), $page_url); ?>
@@ -108,7 +108,7 @@ class FMViewSubmissions_fm extends FMAdminView {
108
  echo $this->body($params);
109
  // Pass the content to form.
110
  $action = add_query_arg( array_merge(
111
- array('page' => $page, 'task' => 'display', 'current_id' => $id, 'paged' => $page_number, 'order_by' => $order_by, 'asc_or_desc' => $asc_or_desc ),
112
  $pagination_url_args
113
  ), $page_url);
114
  $form_attr = array(
@@ -178,16 +178,19 @@ class FMViewSubmissions_fm extends FMAdminView {
178
  $subs_count = $params['subs_count'];
179
  $pdf_data = $params['pdf_data'];
180
 
 
 
181
  $verified_emails = array();
182
 
183
- echo $this->title(array(
184
- 'title' => $page_title,
185
- 'title_class' => 'wd-header',
186
- ));
 
187
  ?>
188
  <br>
189
  <div>
190
- <?php echo $this->saelect_form( array('id' => $form_id, 'forms' => $forms, 'page' => $page, 'page_url' => $page_url, 'order_by' => $order_by, 'asc_or_desc' => $asc_or_desc) ); ?>
191
  <div class="fm-reports">
192
  <div class="fm-tools-button">
193
  <div class="fm-total_entries"><?php echo $statistics["total_entries"]; ?></div>
@@ -362,7 +365,7 @@ class FMViewSubmissions_fm extends FMAdminView {
362
  }
363
  }
364
  if( $stripe_paypal ) { ?>
365
- <th id="payment_info_fc" class="column-autor payment_info_fc" <?php echo $style_payment_info; ?> data-colname="<?php _e('Payment Info', WDFMInstance(self::PLUGIN)->prefix); ?>"><?php _e('Payment Info', WDFMInstance(self::PLUGIN)->prefix); ?></th>
366
  <?php } ?>
367
  </tr>
368
  <tr id="fm-fields-filter" style="display: none;">
@@ -372,7 +375,7 @@ class FMViewSubmissions_fm extends FMAdminView {
372
  <input type="hidden" name="fm_is_search" id="fm_is_search" value="0" />
373
  </th>
374
  <th class="submitdate_fc fm-column-not-hide" <?php echo $style_date; ?>>
375
- <table align="center" style="margin:auto" class="simple_table">
376
  <tr class="simple_table">
377
  <td class="simple_table fm-column-not-hide" style="text-align: left;">From:</td>
378
  <td class="simple_table fm-column-not-hide" style="text-align: center;">
@@ -446,13 +449,13 @@ class FMViewSubmissions_fm extends FMAdminView {
446
  </th>
447
  <th class="table_large_col payment_info_fc" <?php echo $style_payment_info; ?>>&nbsp;</th>
448
  <?php
449
- break;
450
  case 'type_submitter_mail':
451
  $query = $wpdb->prepare('SELECT id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE form_id ="%d" AND element_label="verifyInfo" AND element_value="verified**%d"', $form_id, $sorted_labels_id[$i]);
452
  $is_verified_exist = $wpdb->get_var($query);
453
  ?>
454
  <th class="<?php echo $sorted_labels_id[$i]; ?>_fc" <?php echo $styleStr; ?>>
455
- <div style="width:220px;">
456
  <input name="<?php echo $form_id . '_' . $sorted_labels_id[$i] . '_search'; ?>" id="<?php echo $form_id . '_' . $sorted_labels_id[$i] . '_search'; ?>" type="text" value="<?php echo $lists[$form_id . '_' . $sorted_labels_id[$i] . '_search']; ?>">
457
  <?php if ( $is_verified_exist ) { ?>
458
  <label for="<?php echo $form_id . '_' . $sorted_labels_id[$i] . '_search_verified'; ?>">Verified</label>
@@ -464,7 +467,7 @@ class FMViewSubmissions_fm extends FMAdminView {
464
  </th>
465
  <?php
466
  break;
467
- default: ?>
468
  <th class="<?php echo $sorted_labels_id[$i]; ?>_fc" <?php echo $styleStr; ?>>
469
  <input name="<?php echo $form_id . '_' . $sorted_labels_id[$i] . '_search'; ?>" id="<?php echo $form_id . '_' . $sorted_labels_id[$i] . '_search'; ?>" type="text" value="<?php echo stripslashes( htmlspecialchars( urldecode($lists[$form_id . '_' . $sorted_labels_id[$i] . '_search'] ) ) ); ?>">
470
  </th>
@@ -488,7 +491,7 @@ class FMViewSubmissions_fm extends FMAdminView {
488
  $userinfo = get_userdata($data->user_id_wd);
489
  $useremail = $userinfo ? $userinfo->user_email : "";
490
  $username = $userinfo ? $userinfo->display_name : "";
491
- ?>
492
  <tr id="tr_<?php echo $data->group_id; ?>" class="<?php echo $alternate; ?>">
493
  <th class="check-column fm-column-not-hide">
494
  <input type="checkbox" id="check_<?php echo $data->group_id; ?>" name="check[<?php echo $data->group_id; ?>]">
@@ -552,92 +555,93 @@ class FMViewSubmissions_fm extends FMAdminView {
552
  <td id="submitteremail_fc" class="table_large_col submitteremail_fc sub-align" <?php echo $style_useremail; ?> data-colname="<?php _e('Submitter\'s Email Address', WDFMInstance(self::PLUGIN)->prefix);?>">
553
  <p><?php echo $useremail; ?></p>
554
  </td>
555
- <?php
556
- if( !empty($params['webhook_data']) && gettype($params['webhook_data']) == 'array' ) {
557
- ?>
558
- <td id="webhook_fc" class="table_large_col webhook_fc sub-align" data-colname="<?php _e('Webhook Status', WDFMInstance(self::PLUGIN)->prefix);?>">
559
- <?php
560
- if( isset($params['webhook_data'][$data->group_id]) && $params['webhook_data'][$data->group_id] ) {
561
- echo '<div class="fm_wh_status_row"><p>' . __('Successfully Sent', WDFMInstance(self::PLUGIN)->prefix). '</p></div>';
562
- }
563
- elseif ( isset($params['webhook_data'][$data->group_id]) && !$params['webhook_data'][$data->group_id] ) {
564
- ?>
565
- <div class="fm_wh_status_row">
566
- <p><?php echo __('Failed', WDFMInstance(self::PLUGIN)->prefix); ?></p>
567
- <p>|</p>
568
- <p>
569
- <a href="#" onclick="fm_wh_resend(this); return false" data-form_id = "<?php echo $form_id; ?>" data-group_id = "<?php echo $data->group_id; ?>" data-formtitle = "<?php echo $params['forms'][$form_id]->title; ?>">
570
- <?php _e('Resend', WDFMInstance(self::PLUGIN)->prefix); ?>
571
- <img src="<?php echo WDFMInstance(self::PLUGIN)->plugin_url ?>/images/arrow_right.svg" alt="">
572
- </a>
573
- </p>
574
- <span class="fm_wh_spinner hidden"></span>
575
- </div>
576
- <?php
577
- }
578
- ?>
579
- </td>
580
- <?php
581
- }
582
-
583
- for ( $h = 0; $h < $m; $h++ ) {
584
- $ispaypal = false;
585
- if ( $sorted_label_types[$h] == 'type_stripe' ) {
586
- continue;
587
- }
588
- $not_label = TRUE;
589
- for ( $g = 0; $g < count($temp); $g++ ) {
590
- if ( !isset($sorted_label_types[$g]) ) {
 
591
  continue;
592
  }
593
  $styleStr = $this->model->hide_or_not($lists['hide_label_list'], $sorted_labels_id[$h]);
594
  $temp[$g]->element_value = $sorted_label_types[$g] != 'type_file_upload' ? esc_html($temp[$g]->element_value) : $temp[$g]->element_value;
595
  if ( $temp[$g]->element_label == $sorted_labels_id[$h] ) {
596
  if ( strpos($temp[$g]->element_value, "***map***") ) {
597
- $map_params = explode('***map***', $temp[$g]->element_value);
598
- ?>
599
- <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="table_large_col <?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php _e('Show on Map', WDFMInstance(self::PLUGIN)->prefix);?>">
600
- <a class="thickbox-preview" href="<?php echo add_query_arg(array(
601
- 'action' => 'FormMakerMapEditinPopup' . WDFMInstance(self::PLUGIN)->plugin_postfix,
602
- 'long' => $map_params[0],
603
- 'lat' => $map_params[1],
604
- 'width' => '620',
605
- 'height' => '550',
606
- 'nonce' => $this->fm_nonce,
607
- 'TB_iframe' => '1',
608
- ), admin_url('admin-ajax.php')); ?>" title="<?php _e("Show on Map", WDFMInstance(self::PLUGIN)->prefix); ?>"><?php _e("Show on Map", WDFMInstance(self::PLUGIN)->prefix); ?></a>
609
- </td>
610
  <?php
611
  }
612
  elseif ( strpos($temp[$g]->element_value, "*@@url@@*") ) {
613
  ?>
614
- <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php _e('URL', WDFMInstance(self::PLUGIN)->prefix);?>">
615
- <?php
616
- $new_files = explode("*@@url@@*", $temp[$g]->element_value);
617
- foreach ( $new_files as $new_file ) {
618
- if ( $new_file ) {
619
- $new_filename = explode('/', $new_file);
620
- $new_filename = $new_filename[count($new_filename) - 1];
621
- $get_file_type = strstr($new_filename, ".");
622
- if($get_file_type == ".jpg" || $get_file_type == ".jpeg" || $get_file_type == ".png" || $get_file_type == ".bmp" || $get_file_type == ".svg"){
623
- $fm_fancybox_class = "fm_fancybox";
624
- }else {
625
- $fm_fancybox_class = "";
626
- }?>
627
- <a target="_blank" class="<?php echo $fm_fancybox_class;?>" rel="group_<?php echo $www; ?>" href="<?php echo $new_file; ?>"><?php echo $new_filename; ?></a>
628
- <br />
629
- <?php
630
- }
631
- }
632
- ?>
633
- </td>
634
  <?php
635
  }
636
  elseif ( strpos($temp[$g]->element_value, "***star_rating***") ) {
637
- $view_star_rating_array = $this->model->view_for_star_rating($temp[$g]->element_value, $temp[$g]->element_label);
638
- $stars = $view_star_rating_array[0];
639
- ?>
640
- <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" align="center" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php _e('Star rating', WDFMInstance(self::PLUGIN)->prefix);?>"><?php echo $stars; ?></td>
641
  <?php
642
  }
643
  elseif ( strpos($temp[$g]->element_value, "***matrix***") ) {
@@ -648,7 +652,7 @@ class FMViewSubmissions_fm extends FMAdminView {
648
  'matrix_params' => str_replace('#', '%23', urlencode($temp[$g]->element_value)),
649
  'width' => '620',
650
  'height' => '550',
651
- 'nonce' => $this->fm_nonce,
652
  'TB_iframe' => '1',
653
  ), admin_url('admin-ajax.php')); ?>" title="<?php _e("Show Matrix", WDFMInstance(self::PLUGIN)->prefix); ?>"><?php _e("Show Matrix", WDFMInstance(self::PLUGIN)->prefix); ?></a>
654
  </td>
@@ -656,104 +660,107 @@ class FMViewSubmissions_fm extends FMAdminView {
656
  }
657
  elseif ( strpos($temp[$g]->element_value, "@@@") !== FALSE || $temp[$g]->element_value == "@@@" || $temp[$g]->element_value == "@@@@@@@@@" ) {
658
  ?>
659
- <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php echo !empty($label_name_ids[$sorted_labels_id[$h]]) ? $label_name_ids[$sorted_labels_id[$h]] : ''; ?>">
660
- <p><?php echo str_replace("@@@", " ", $temp[$g]->element_value); ?></p>
661
- </td>
662
  <?php
663
  }
664
  elseif ( strpos($temp[$g]->element_value, "***grading***") ) {
665
- $view_grading_array = $this->model->view_for_grading($temp[$g]->element_value);
666
- $items = $view_grading_array[0];
667
- ?>
668
- <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php _e('Grading', WDFMInstance(self::PLUGIN)->prefix);?>">
669
- <p><?php echo $items; ?></p>
670
- </td>
671
  <?php
672
  }
673
  else {
674
- // check is paypal status
675
- if($sorted_labels_id[$h] == 0 && !empty($temp[$g]->element_value) ) {
676
- $ispaypal = true;
677
- }
678
-
679
- if ( strpos($temp[$g]->element_value, "***quantity***") ) {
680
- $temp[$g]->element_value = str_replace("***quantity***", " ", $temp[$g]->element_value);
681
- }
682
- if ( strpos($temp[$g]->element_value, "***property***") ) {
683
- $temp[$g]->element_value = str_replace("***property***", " ", $temp[$g]->element_value);
684
- }
685
- if ( $sorted_label_types[$h] == "type_submitter_mail" ) {
686
- $query = $wpdb->prepare('SELECT id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE form_id ="%d" AND group_id="%d" AND element_value="verified**%d"', $form_id, $i, $sorted_labels_id[$h]);
687
- $isverified = $wpdb->get_var($query);
688
- if ( $isverified ) {
689
- if ( !isset($verified_emails[$sorted_labels_id[$h]]) ) {
690
- $verified_emails[$sorted_labels_id[$h]] = array();
691
  }
692
- $verified_emails[$sorted_labels_id[$h]][] = $i;
693
- ?>
694
- <td class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?> data-colname="<?php echo !empty($label_name_ids[$sorted_labels_id[$h]]) ? $label_name_ids[$sorted_labels_id[$h]] : ''; ?>">
695
- <p><?php echo $temp[$g]->element_value; ?>
696
- <div style="color:#2DA068;">( <?php _e("Verified", WDFMInstance(self::PLUGIN)->prefix); ?> <img src="<?php echo WDFMInstance(self::PLUGIN)->plugin_url . '/images/verified.png'; ?>" /> )</div>
697
- </p>
698
- </td>
699
- <?php }
700
- else { ?>
701
- <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php echo !empty($label_name_ids[$sorted_labels_id[$h]]) ? $label_name_ids[$sorted_labels_id[$h]] : ''; ?>">
702
- <p><?php echo $temp[$g]->element_value; ?></p>
703
- </td>
704
- <?php }
705
- }
706
- else if ( $sorted_label_types[$h] == "type_password" ) {
707
- $element_value = '***';
708
- ?>
709
- <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php echo !empty($label_name_ids[$sorted_labels_id[$h]]) ? $label_name_ids[$sorted_labels_id[$h]] : ''; ?>">
710
- <p><?php echo $element_value; ?></p>
711
- </td>
712
- <?php
713
- }
714
- else {
715
- $element_value = str_replace("***br***", '<br>', $temp[$g]->element_value );
716
- $textdata = $this->gen_shorter_text($element_value, 100);
717
- if($textdata['text'] == "requires_capture" ){
718
- $textdata['text'] = "Requires capture";
719
  }
720
- elseif($textdata['text'] == "succeeded" ){
721
- $textdata['text'] = "Succeeded";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
722
  }
723
  else {
724
- $textdata['text'] = $textdata['text'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
725
  }
726
- ?>
727
- <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php echo !empty($label_name_ids[$sorted_labels_id[$h]]) ? $label_name_ids[$sorted_labels_id[$h]] : ''; ?>">
728
- <?php if ( $sorted_label_types[$h] == 'type_signature' ) {
729
- ?>
730
- <img src="<?php echo $textdata['text']; ?>" style="width:50px; border: 1px solid #ddd;"/>
731
- <?php
732
- }
733
- else {
734
- ?>
735
- <p><?php echo $textdata['text']; ?></p>
736
- <?php
737
- }
738
- ?>
739
- </td>
740
- <?php
741
- }
742
  }
743
  $not_label = FALSE;
744
  }
745
  }
746
-
747
- if ( $not_label ) {
748
- ?>
749
  <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?>>
750
  <p>&nbsp;</p>
751
  </td>
752
  <?php
753
- }
754
  }
755
- if ( $ispaypal ) {
756
- ?>
757
  <td id="payment_info_fc" class="payment_info_fc sub-align" <?php echo $style_payment_info; ?> data-colname="<?php _e('Payment information', WDFMInstance(self::PLUGIN)->prefix); ?>">
758
  <a class="thickbox-preview" href="<?php echo add_query_arg(array(
759
  'action' => 'paypal_info' . WDFMInstance(self::PLUGIN)->plugin_postfix,
@@ -766,10 +773,9 @@ class FMViewSubmissions_fm extends FMAdminView {
766
  <img src="<?php echo WDFMInstance(self::PLUGIN)->plugin_url . '/images/info.png'; ?>" />
767
  </a>
768
  </td>
769
- <?php
770
  }
771
-
772
- ?>
773
  </tr>
774
  <?php
775
  $k = 1 - $k;
@@ -788,59 +794,59 @@ class FMViewSubmissions_fm extends FMAdminView {
788
  <?php echo $this->pagination($pagination_url, $subs_count, $page_per_num); ?>
789
  </div>
790
  <?php
791
- if ( $sorted_label_types ) {
792
- foreach ( $sorted_label_types as $key => $sorted_label_type ) {
793
- if ( $this->model->check_radio_type($sorted_label_type) ) {
794
- $is_stats = TRUE;
795
- break;
796
- }
797
- }
798
- if ( $is_stats ) {
799
- $ajax_nonce = wp_create_nonce( WDFMInstance(self::PLUGIN)->nonce );
800
- ?>
801
- <div class="fm-statistics">
802
- <h2><?php echo _e('Statistics', WDFMInstance(self::PLUGIN)->prefix);?></h2>
803
- <table class="stats">
804
- <tr>
805
- <td colspan="3">
806
- <select id="sorted_label_key">
807
- <option value=""><?php echo _e('- Select -', WDFMInstance(self::PLUGIN)->prefix);?></option>
808
- <?php
809
- foreach ( $sorted_label_types as $key => $sorted_label_type ) {
810
- if ( $sorted_label_type == "type_checkbox" || $sorted_label_type == "type_radio" || $sorted_label_type == "type_own_select" || $sorted_label_type == "type_country" || $sorted_label_type == "type_paypal_select" || $sorted_label_type == "type_paypal_radio" || $sorted_label_type == "type_paypal_checkbox" || $sorted_label_type == "type_paypal_shipping" ) {
811
- ?>
812
- <option value="<?php echo $key; ?>"><?php echo $sorted_label_names_original[$key]; ?></option>
813
- <?php
814
- }
815
- }
816
- ?>
817
- </select>
818
- <p class="fm_error_sorted_label_key"><?php echo _e('Please select the field!', WDFMInstance(self::PLUGIN)->prefix);?></p>
819
- </td>
820
- </tr>
821
- <tr>
822
- <td>
823
- <label style="margin-left: 7px;"><?php echo _e('Date From:', WDFMInstance(self::PLUGIN)->prefix);?></label>
824
- </td>
825
- <td>
826
- <input class="inputbox" type="text" name="startstats" id="startstats" size="9" maxlength="9" />
827
- <?php echo _e('To:', WDFMInstance(self::PLUGIN)->prefix);?>
828
- <input class="inputbox" type="text" name="endstats" id="endstats" size="9" maxlength="9" />
829
- </td>
830
- <td>
831
- <span class="fm-div_stats-loading spinner"></span>
832
- <button class="button" onclick="show_stats(); return false;"><?php _e('Show', WDFMInstance(self::PLUGIN)->prefix); ?></button>
833
- </td>
834
- </tr>
835
- </table>
836
- <div id="div_stats"></div>
837
- </div>
838
- <script>
839
- show_stats_url = "<?php echo add_query_arg( array('action' => 'get_stats' . WDFMInstance(self::PLUGIN)->plugin_postfix, 'task' => 'show_stats', 'nonce' => $this->fm_nonce, 'current_id' => $form_id ), $page_url); ?>";
840
- </script>
841
- <?php
842
- }
843
- }
844
  ?>
845
  <div class="fm_modal">
846
  <div id="fm-progressbar">
@@ -850,7 +856,7 @@ class FMViewSubmissions_fm extends FMAdminView {
850
  <div class="export_progress">
851
  <span class="exp_count"><?php echo $subs_count; ?></span> left from <?php echo $subs_count; ?>
852
  </div>
853
- <div id="sbox-overlay" onclick="toggleChBDiv(false);"></div>
854
  <script>
855
  <?php
856
  if ( isset($sorted_label_names) ) {
@@ -1163,7 +1169,7 @@ class FMViewSubmissions_fm extends FMAdminView {
1163
  <tr>
1164
  <th width="20%"><?php _e('Choices', WDFMInstance(self::PLUGIN)->prefix); ?></th>
1165
  <th><?php _e('Percentage', WDFMInstance(self::PLUGIN)->prefix); ?></th>
1166
- <th width="10%" style="text-align: left;"><?php _e('Count', WDFMInstance(self::PLUGIN)->prefix); ?></th>
1167
  </tr>
1168
  </thead>
1169
  <?php
@@ -1526,7 +1532,7 @@ class FMViewSubmissions_fm extends FMAdminView {
1526
  *
1527
  * @param array $params
1528
  */
1529
- private function saelect_form( $params = array() ) {
1530
  if ( !empty($params['forms']) ) {
1531
  $page = $params['page'];
1532
  $page_url = $params['page_url'];
70
  <br>
71
  <div class="tablenav top">
72
  <div class="alignleft">
73
+ <?php echo $this->select_form( array('id' => $id, 'forms' => $forms, 'page' => $page, 'page_url' => $page_url, 'order_by' => $order_by, 'asc_or_desc' => $asc_or_desc) ); ?>
74
  </div>
75
  <div class="fm-export-tools">
76
  <?php $blocked_ips_link = add_query_arg(array( 'page' => 'blocked_ips' . WDFMInstance(self::PLUGIN)->menu_postfix ), $page_url); ?>
108
  echo $this->body($params);
109
  // Pass the content to form.
110
  $action = add_query_arg( array_merge(
111
+ array('page' => $page, 'task' => 'display', 'current_id' => $id, 'paged' => $page_number ),
112
  $pagination_url_args
113
  ), $page_url);
114
  $form_attr = array(
178
  $subs_count = $params['subs_count'];
179
  $pdf_data = $params['pdf_data'];
180
 
181
+ $savedb = isset($forms[$form_id]->savedb) ? $forms[$form_id]->savedb : 1;
182
+
183
  $verified_emails = array();
184
 
185
+ echo $this->title(array(
186
+ 'title' => $page_title,
187
+ 'title_class' => 'wd-header',
188
+ ));
189
+
190
  ?>
191
  <br>
192
  <div>
193
+ <?php echo $this->select_form( array('id' => $form_id, 'forms' => $forms, 'page' => $page, 'page_url' => $page_url, 'order_by' => $order_by, 'asc_or_desc' => $asc_or_desc) ); ?>
194
  <div class="fm-reports">
195
  <div class="fm-tools-button">
196
  <div class="fm-total_entries"><?php echo $statistics["total_entries"]; ?></div>
365
  }
366
  }
367
  if( $stripe_paypal ) { ?>
368
+ <th id="payment_info_fc" class="column-author payment_info_fc" <?php echo $style_payment_info; ?> data-colname="<?php _e('Payment Info', WDFMInstance(self::PLUGIN)->prefix); ?>"><?php _e('Payment Info', WDFMInstance(self::PLUGIN)->prefix); ?></th>
369
  <?php } ?>
370
  </tr>
371
  <tr id="fm-fields-filter" style="display: none;">
375
  <input type="hidden" name="fm_is_search" id="fm_is_search" value="0" />
376
  </th>
377
  <th class="submitdate_fc fm-column-not-hide" <?php echo $style_date; ?>>
378
+ <table align="center" style="margin:unset" class="simple_table">
379
  <tr class="simple_table">
380
  <td class="simple_table fm-column-not-hide" style="text-align: left;">From:</td>
381
  <td class="simple_table fm-column-not-hide" style="text-align: center;">
449
  </th>
450
  <th class="table_large_col payment_info_fc" <?php echo $style_payment_info; ?>>&nbsp;</th>
451
  <?php
452
+ break;
453
  case 'type_submitter_mail':
454
  $query = $wpdb->prepare('SELECT id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE form_id ="%d" AND element_label="verifyInfo" AND element_value="verified**%d"', $form_id, $sorted_labels_id[$i]);
455
  $is_verified_exist = $wpdb->get_var($query);
456
  ?>
457
  <th class="<?php echo $sorted_labels_id[$i]; ?>_fc" <?php echo $styleStr; ?>>
458
+ <div>
459
  <input name="<?php echo $form_id . '_' . $sorted_labels_id[$i] . '_search'; ?>" id="<?php echo $form_id . '_' . $sorted_labels_id[$i] . '_search'; ?>" type="text" value="<?php echo $lists[$form_id . '_' . $sorted_labels_id[$i] . '_search']; ?>">
460
  <?php if ( $is_verified_exist ) { ?>
461
  <label for="<?php echo $form_id . '_' . $sorted_labels_id[$i] . '_search_verified'; ?>">Verified</label>
467
  </th>
468
  <?php
469
  break;
470
+ default: ?>
471
  <th class="<?php echo $sorted_labels_id[$i]; ?>_fc" <?php echo $styleStr; ?>>
472
  <input name="<?php echo $form_id . '_' . $sorted_labels_id[$i] . '_search'; ?>" id="<?php echo $form_id . '_' . $sorted_labels_id[$i] . '_search'; ?>" type="text" value="<?php echo stripslashes( htmlspecialchars( urldecode($lists[$form_id . '_' . $sorted_labels_id[$i] . '_search'] ) ) ); ?>">
473
  </th>
491
  $userinfo = get_userdata($data->user_id_wd);
492
  $useremail = $userinfo ? $userinfo->user_email : "";
493
  $username = $userinfo ? $userinfo->display_name : "";
494
+ ?>
495
  <tr id="tr_<?php echo $data->group_id; ?>" class="<?php echo $alternate; ?>">
496
  <th class="check-column fm-column-not-hide">
497
  <input type="checkbox" id="check_<?php echo $data->group_id; ?>" name="check[<?php echo $data->group_id; ?>]">
555
  <td id="submitteremail_fc" class="table_large_col submitteremail_fc sub-align" <?php echo $style_useremail; ?> data-colname="<?php _e('Submitter\'s Email Address', WDFMInstance(self::PLUGIN)->prefix);?>">
556
  <p><?php echo $useremail; ?></p>
557
  </td>
558
+ <?php
559
+ if ( !empty($params['webhook_data']) && gettype($params['webhook_data']) == 'array' ) {
560
+ ?>
561
+ <td id="webhook_fc" class="table_large_col webhook_fc sub-align" data-colname="<?php _e('Webhook Status', WDFMInstance(self::PLUGIN)->prefix);?>">
562
+ <?php
563
+ if( isset($params['webhook_data'][$data->group_id]) && $params['webhook_data'][$data->group_id] == '1' ) {
564
+ echo '<div class="fm_wh_status_row"><p>' . __('Successfully Sent', WDFMInstance(self::PLUGIN)->prefix). '</p></div>';
565
+ } elseif ( isset($params['webhook_data'][$data->group_id]) && $params['webhook_data'][$data->group_id] == '2' ) {
566
+ echo '<div class="fm_wh_status_row"><p>' . __('Unpublished', WDFMInstance(self::PLUGIN)->prefix). '</p></div>';
567
+ }
568
+ elseif ( isset($params['webhook_data'][$data->group_id]) && !$params['webhook_data'][$data->group_id] ) {
569
+ ?>
570
+ <div class="fm_wh_status_row">
571
+ <p><?php echo __('Failed', WDFMInstance(self::PLUGIN)->prefix); ?></p>
572
+ <p>|</p>
573
+ <p>
574
+ <a href="#" onclick="fm_wh_resend(this); return false" data-form_id = "<?php echo $form_id; ?>" data-group_id = "<?php echo $data->group_id; ?>" data-formtitle = "<?php echo $params['forms'][$form_id]->title; ?>">
575
+ <?php _e('Resend', WDFMInstance(self::PLUGIN)->prefix); ?>
576
+ <img src="<?php echo WDFMInstance(self::PLUGIN)->plugin_url ?>/images/arrow_right.svg" alt="">
577
+ </a>
578
+ </p>
579
+ <span class="fm_wh_spinner hidden"></span>
580
+ </div>
581
+ <?php
582
+ }
583
+ ?>
584
+ </td>
585
+ <?php
586
+ }
587
+ for ( $h = 0; $h < $m; $h++ ) {
588
+ $ispaypal = false;
589
+ if ( $sorted_label_types[$h] == 'type_stripe' ) {
590
+ continue;
591
+ }
592
+ $not_label = TRUE;
593
+ for ( $g = 0; $g < count($temp); $g++ ) {
594
+ if ( !isset($sorted_label_types[$g]) ) {
595
  continue;
596
  }
597
  $styleStr = $this->model->hide_or_not($lists['hide_label_list'], $sorted_labels_id[$h]);
598
  $temp[$g]->element_value = $sorted_label_types[$g] != 'type_file_upload' ? esc_html($temp[$g]->element_value) : $temp[$g]->element_value;
599
  if ( $temp[$g]->element_label == $sorted_labels_id[$h] ) {
600
  if ( strpos($temp[$g]->element_value, "***map***") ) {
601
+ $map_params = explode('***map***', $temp[$g]->element_value);
602
+ ?>
603
+ <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="table_large_col <?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php _e('Show on Map', WDFMInstance(self::PLUGIN)->prefix);?>">
604
+ <a class="thickbox-preview" href="<?php echo add_query_arg(array(
605
+ 'action' => 'FormMakerMapEditinPopup' . WDFMInstance(self::PLUGIN)->plugin_postfix,
606
+ 'long' => $map_params[0],
607
+ 'lat' => $map_params[1],
608
+ 'width' => '620',
609
+ 'height' => '550',
610
+ 'nonce' => $this->fm_nonce,
611
+ 'TB_iframe' => '1',
612
+ ), admin_url('admin-ajax.php')); ?>" title="<?php _e("Show on Map", WDFMInstance(self::PLUGIN)->prefix); ?>"><?php _e("Show on Map", WDFMInstance(self::PLUGIN)->prefix); ?></a>
613
+ </td>
614
  <?php
615
  }
616
  elseif ( strpos($temp[$g]->element_value, "*@@url@@*") ) {
617
  ?>
618
+ <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php _e('URL', WDFMInstance(self::PLUGIN)->prefix);?>">
619
+ <?php
620
+ $new_files = explode("*@@url@@*", $temp[$g]->element_value);
621
+ foreach ( $new_files as $new_file ) {
622
+ if ( $new_file ) {
623
+ $new_filename = explode('/', $new_file);
624
+ $new_filename = $new_filename[count($new_filename) - 1];
625
+ $get_file_type = strstr($new_filename, ".");
626
+ if ( $get_file_type == ".jpg" || $get_file_type == ".jpeg" || $get_file_type == ".png" || $get_file_type == ".bmp" || $get_file_type == ".svg" ) {
627
+ $fm_fancybox_class = "fm_fancybox";
628
+ } else {
629
+ $fm_fancybox_class = "";
630
+ } ?>
631
+ <a target="_blank" class="<?php echo $fm_fancybox_class;?>" rel="group_<?php echo $www; ?>" href="<?php echo $new_file; ?>"><?php echo $new_filename; ?></a>
632
+ <br />
633
+ <?php
634
+ }
635
+ }
636
+ ?>
637
+ </td>
638
  <?php
639
  }
640
  elseif ( strpos($temp[$g]->element_value, "***star_rating***") ) {
641
+ $view_star_rating_array = $this->model->view_for_star_rating($temp[$g]->element_value, $temp[$g]->element_label);
642
+ $stars = $view_star_rating_array[0];
643
+ ?>
644
+ <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" align="center" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php _e('Star rating', WDFMInstance(self::PLUGIN)->prefix);?>"><?php echo $stars; ?></td>
645
  <?php
646
  }
647
  elseif ( strpos($temp[$g]->element_value, "***matrix***") ) {
652
  'matrix_params' => str_replace('#', '%23', urlencode($temp[$g]->element_value)),
653
  'width' => '620',
654
  'height' => '550',
655
+ 'nonce' => $this->fm_nonce,
656
  'TB_iframe' => '1',
657
  ), admin_url('admin-ajax.php')); ?>" title="<?php _e("Show Matrix", WDFMInstance(self::PLUGIN)->prefix); ?>"><?php _e("Show Matrix", WDFMInstance(self::PLUGIN)->prefix); ?></a>
658
  </td>
660
  }
661
  elseif ( strpos($temp[$g]->element_value, "@@@") !== FALSE || $temp[$g]->element_value == "@@@" || $temp[$g]->element_value == "@@@@@@@@@" ) {
662
  ?>
663
+ <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php echo !empty($label_name_ids[$sorted_labels_id[$h]]) ? $label_name_ids[$sorted_labels_id[$h]] : ''; ?>">
664
+ <p><?php echo str_replace("@@@", " ", $temp[$g]->element_value); ?></p>
665
+ </td>
666
  <?php
667
  }
668
  elseif ( strpos($temp[$g]->element_value, "***grading***") ) {
669
+ $view_grading_array = $this->model->view_for_grading($temp[$g]->element_value);
670
+ $items = $view_grading_array[0];
671
+ ?>
672
+ <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php _e('Grading', WDFMInstance(self::PLUGIN)->prefix);?>">
673
+ <p><?php echo $items; ?></p>
674
+ </td>
675
  <?php
676
  }
677
  else {
678
+ // check is paypal status
679
+ if ( $sorted_labels_id[$h] == 0 && !empty($temp[$g]->element_value) ) {
680
+ $ispaypal = true;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
681
  }
682
+ if ( strpos($temp[$g]->element_value, "***quantity***") ) {
683
+ $temp[$g]->element_value = str_replace("***quantity***", " ", $temp[$g]->element_value);
684
+ }
685
+ if ( strpos($temp[$g]->element_value, "***property***") ) {
686
+ $temp[$g]->element_value = str_replace("***property***", " ", $temp[$g]->element_value);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
687
  }
688
+ if ( $sorted_label_types[$h] == "type_submitter_mail" ) {
689
+ $query = $wpdb->prepare('SELECT id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE form_id ="%d" AND group_id="%d" AND element_value="verified**%d"', $form_id, $i, $sorted_labels_id[$h]);
690
+ $isverified = $wpdb->get_var($query);
691
+ if ( $isverified ) {
692
+ if ( !isset($verified_emails[$sorted_labels_id[$h]]) ) {
693
+ $verified_emails[$sorted_labels_id[$h]] = array();
694
+ }
695
+ $verified_emails[$sorted_labels_id[$h]][] = $i;
696
+ ?>
697
+ <td class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" id="<?php echo $sorted_labels_id[$h]; ?>_fc" <?php echo $styleStr; ?> data-colname="<?php echo !empty($label_name_ids[$sorted_labels_id[$h]]) ? $label_name_ids[$sorted_labels_id[$h]] : ''; ?>">
698
+ <p><?php echo $temp[$g]->element_value; ?>
699
+ <div style="color:#2DA068;">( <?php _e("Verified", WDFMInstance(self::PLUGIN)->prefix); ?> <img src="<?php echo WDFMInstance(self::PLUGIN)->plugin_url . '/images/verified.png'; ?>" /> )</div>
700
+ </p>
701
+ </td>
702
+ <?php
703
+ }
704
+ else { ?>
705
+ <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php echo !empty($label_name_ids[$sorted_labels_id[$h]]) ? $label_name_ids[$sorted_labels_id[$h]] : ''; ?>">
706
+ <p><?php echo $temp[$g]->element_value; ?></p>
707
+ </td>
708
+ <?php
709
+ }
710
+ }
711
+ elseif ( $sorted_label_types[$h] == "type_password" ) {
712
+ $element_value = '***';
713
+ ?>
714
+ <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php echo !empty($label_name_ids[$sorted_labels_id[$h]]) ? $label_name_ids[$sorted_labels_id[$h]] : ''; ?>">
715
+ <p><?php echo $element_value; ?></p>
716
+ </td>
717
+ <?php
718
  }
719
  else {
720
+ $element_value = str_replace("***br***", '<br>', $temp[$g]->element_value );
721
+ $textdata = $this->gen_shorter_text($element_value, 100);
722
+ $status_column_width = ( $sorted_label_types[$h] == 'type_paypal_payment_status' ) ? '300px' : '';
723
+
724
+ /* Don't show payments with not succeeded status in Submissions table, when "After payment has been successfully completed." option is enabled */
725
+ if ( $textdata['text'] != "succeeded" && $textdata['text'] != "requires_capture" && $textdata['text'] != "Completed" ) {
726
+ $check_payment_status = 'data-status = "0"';
727
+ }
728
+ else {
729
+ $check_payment_status = 'data-status = "1"';
730
+ }
731
+ ?>
732
+ <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?> data-colname="<?php echo !empty($label_name_ids[$sorted_labels_id[$h]]) ? $label_name_ids[$sorted_labels_id[$h]] : ''; ?>" <?php echo ($savedb == 2 && $sorted_label_types[$h] == "type_paypal_payment_status") ? $check_payment_status : ""; ?> style="width:<?php echo $status_column_width; ?>; max-width:<?php echo $status_column_width; ?>;">
733
+ <?php if ( $sorted_label_types[$h] == 'type_signature' ) { ?>
734
+ <img src="<?php echo $textdata['text']; ?>" style="width:50px; border: 1px solid #ddd;"/>
735
+ <?php
736
+ }
737
+ else {
738
+ /* Check for Stripe case */
739
+ if ( $sorted_label_types[$h] == "type_paypal_payment_status" && $textdata['text'] == "requires_capture" ) {
740
+ ?>
741
+ <button class="wd-button button-primary" onclick="change_stripe_status(this); return false;"><?php _e('Capture', WDFMInstance(self::PLUGIN)->prefix); ?></button><img src="<?php echo WDFM()->plugin_url ?>/images/loading.gif" class="fm-capture-loading fm-hidden">
742
+ <?php
743
+ } else { ?>
744
+ <p><?php echo $textdata['text']; ?></p>
745
+ <?php
746
+ }
747
+ }
748
+ ?>
749
+ </td>
750
+ <?php
751
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
752
  }
753
  $not_label = FALSE;
754
  }
755
  }
756
+ if ( $not_label ) { ?>
 
 
757
  <td id="<?php echo $sorted_labels_id[$h]; ?>_fc" class="<?php echo $sorted_labels_id[$h]; ?>_fc sub-align" <?php echo $styleStr; ?>>
758
  <p>&nbsp;</p>
759
  </td>
760
  <?php
761
+ }
762
  }
763
+ if ( $ispaypal ) { ?>
 
764
  <td id="payment_info_fc" class="payment_info_fc sub-align" <?php echo $style_payment_info; ?> data-colname="<?php _e('Payment information', WDFMInstance(self::PLUGIN)->prefix); ?>">
765
  <a class="thickbox-preview" href="<?php echo add_query_arg(array(
766
  'action' => 'paypal_info' . WDFMInstance(self::PLUGIN)->plugin_postfix,
773
  <img src="<?php echo WDFMInstance(self::PLUGIN)->plugin_url . '/images/info.png'; ?>" />
774
  </a>
775
  </td>
776
+ <?php
777
  }
778
+ ?>
 
779
  </tr>
780
  <?php
781
  $k = 1 - $k;
794
  <?php echo $this->pagination($pagination_url, $subs_count, $page_per_num); ?>
795
  </div>
796
  <?php
797
+ if ( $sorted_label_types ) {
798
+ foreach ( $sorted_label_types as $key => $sorted_label_type ) {
799
+ if ( $this->model->check_radio_type($sorted_label_type) ) {
800
+ $is_stats = TRUE;
801
+ break;
802
+ }
803
+ }
804
+ if ( $is_stats ) {
805
+ $ajax_nonce = wp_create_nonce( WDFMInstance(self::PLUGIN)->nonce );
806
+ ?>
807
+ <div class="fm-statistics">
808
+ <h2><?php echo _e('Statistics', WDFMInstance(self::PLUGIN)->prefix);?></h2>
809
+ <table class="stats">
810
+ <tr>
811
+ <td colspan="3">
812
+ <select id="sorted_label_key">
813
+ <option value=""><?php echo _e('- Select -', WDFMInstance(self::PLUGIN)->prefix);?></option>
814
+ <?php
815
+ foreach ( $sorted_label_types as $key => $sorted_label_type ) {
816
+ if ( $sorted_label_type == "type_checkbox" || $sorted_label_type == "type_radio" || $sorted_label_type == "type_own_select" || $sorted_label_type == "type_country" || $sorted_label_type == "type_paypal_select" || $sorted_label_type == "type_paypal_radio" || $sorted_label_type == "type_paypal_checkbox" || $sorted_label_type == "type_paypal_shipping" ) {
817
+ ?>
818
+ <option value="<?php echo $key; ?>"><?php echo $sorted_label_names_original[$key]; ?></option>
819
+ <?php
820
+ }
821
+ }
822
+ ?>
823
+ </select>
824
+ <p class="fm_error_sorted_label_key"><?php echo _e('Please select the field!', WDFMInstance(self::PLUGIN)->prefix);?></p>
825
+ </td>
826
+ </tr>
827
+ <tr>
828
+ <td>
829
+ <label style="margin-left: 7px;"><?php echo _e('Date From:', WDFMInstance(self::PLUGIN)->prefix);?></label>
830
+ </td>
831
+ <td>
832
+ <input class="inputbox" type="text" name="startstats" id="startstats" size="9" maxlength="9" />
833
+ <?php echo _e('To:', WDFMInstance(self::PLUGIN)->prefix);?>
834
+ <input class="inputbox" type="text" name="endstats" id="endstats" size="9" maxlength="9" />
835
+ </td>
836
+ <td>
837
+ <span class="fm-div_stats-loading spinner"></span>
838
+ <button class="button" onclick="show_stats(); return false;"><?php _e('Show', WDFMInstance(self::PLUGIN)->prefix); ?></button>
839
+ </td>
840
+ </tr>
841
+ </table>
842
+ <div id="div_stats"></div>
843
+ </div>
844
+ <script>
845
+ show_stats_url = "<?php echo add_query_arg( array('action' => 'get_stats' . WDFMInstance(self::PLUGIN)->plugin_postfix, 'task' => 'show_stats', 'nonce' => $this->fm_nonce, 'current_id' => $form_id ), $page_url); ?>";
846
+ </script>
847
+ <?php
848
+ }
849
+ }
850
  ?>
851
  <div class="fm_modal">
852
  <div id="fm-progressbar">
856
  <div class="export_progress">
857
  <span class="exp_count"><?php echo $subs_count; ?></span> left from <?php echo $subs_count; ?>
858
  </div>
859
+ <div id="sbox-overlay" onclick="toggleChBDiv(false);"></div>
860
  <script>
861
  <?php
862
  if ( isset($sorted_label_names) ) {
1169
  <tr>
1170
  <th width="20%"><?php _e('Choices', WDFMInstance(self::PLUGIN)->prefix); ?></th>
1171
  <th><?php _e('Percentage', WDFMInstance(self::PLUGIN)->prefix); ?></th>
1172
+ <th class="fm-statCount"><?php _e('Count', WDFMInstance(self::PLUGIN)->prefix); ?></th>
1173
  </tr>
1174
  </thead>
1175
  <?php
1532
  *
1533
  * @param array $params
1534
  */
1535
+ private function select_form( $params = array() ) {
1536
  if ( !empty($params['forms']) ) {
1537
  $page = $params['page'];
1538
  $page_url = $params['page_url'];
css/fm-styles.min.css CHANGED
@@ -1 +1 @@
1
- @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.wdsignature:before{content:"\f12e"}.wdstripe:before{content:"S";font-weight:bolder;font-size:13px!important}#manage_form .wd-header{padding:10px}#manage_form .wd-page-title #title{padding:3px 8px;font-size:1.5em;line-height:100%;height:1.5em;width:30%;outline:0;margin:0 0 3px;background-color:#fff}#fm_admin_container h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.field_options h2.hndle,.field_types_cont h2.hndle,.placeholders_cont h2.hndle{background-color:#f1f1f1}.field-types-filter_header{border:1px solid #eee}.field-types-filter,.placeholders-filter{webkit-box-shadow:0 1px 4px rgba(0,0,0,.07)!important;box-shadow:0 1px 4px rgba(0,0,0,.07)!important}#manage_form .first-time-use{background-color:#fff;border:1px dashed #0085ba;border-radius:3px;bottom:115px;color:#0085ba;display:none;font-size:14px;height:auto;padding:5px;right:0;width:250px;position:absolute;bottom:32px}#manage_form .first-time-use-close{background-color:#fff;border-radius:50%;box-sizing:content-box;cursor:pointer;font-size:17px;margin:0;padding:0;position:absolute;right:-9px;top:-9px}#manage_form .first-time-use-close:before{margin:1px 0 0 3px}#add_field{position:relative}.hide_number_arrow{-moz-appearance:textfield;line-height:normal!important}.hide_number_arrow::-webkit-inner-spin-button,.hide_number_arrow::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.fm-edit-content #add_field_cont{animation-duration:1.5s;animation-iteration-count:1;animation-fill-mode:both;color:#0085ba;position:absolute;top:10px;right:10px;min-width:50px;height:auto;width:initial;padding:0!important;z-index:10}#add_field_cont .wdform_field{display:table-cell;cursor:move;background-color:transparent!important;border:none;padding:0}#add_field_cont .add-new-button{cursor:move;padding:5px 15px 5px 5px;color:#fff;font-size:16px;line-height:16px;vertical-align:middle;font-weight:400;height:30px}#add_field_cont .add-new-button .fm-ico-draggable{padding:5px 5px 5px 15px;font-size:12px}@-webkit-keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);-ms-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);-ms-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);-ms-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.animated{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}.field_types .postbox button.wd-button.wd-pro-fields{background-color:#ccc;border-color:#ccc;box-shadow:0 1px 0 #ccc;text-shadow:0 -1px 1px #ccc,1px 0 1px #ccc,0 1px 1px #ccc,-1px 0 1px #ccc}.field_types .postbox h2.hndle,.placeholders .postbox h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.add-popup .postbox .inside{margin:12px 0 0 0}.add-popup .postbox .handlediv{margin:0}.postbox .handlediv{float:right}.postbox .hndle,.stuffbox .hndle{border-bottom:1px solid #ccd0d4}.js .postbox .hndle{cursor:pointer}.field_types .postbox,.placeholders .postbox{margin-bottom:0}.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{margin:5px 0;white-space:normal;width:48%;word-wrap:break-word;word-break:break-all;overflow:hidden;padding:8px;height:auto}.add-popup .field-types-filter,.placeholder-popup .placeholders-filter{line-height:25px;margin:15px;width:calc(100% - 45px);padding-left:30px;background-color:#f5f5f5}.add-popup .field-types-filter-cont,.placeholder-popup .placeholders-filter-cont{position:relative;height:25px;width:100%}.add-popup .field-types-filter-cont:before,.placeholder-popup .placeholders-filter-cont:before{font-family:Dashicons;content:"\f179";font-size:25px;height:25px;left:18px;position:absolute;top:0;width:25px;color:#757575}.hide{display:none}.fm-hide{display:none!important}.fm-hidden{visibility:hidden;height:0;display:block;border:none}.fm-add-new{cursor:pointer}.pagination-links a{cursor:pointer}#fm_admin_container .adminlist th{font-size:13px}#fm_admin_container .pagination-links .tablenav-pages-navspan,#fm_admin_container .pagination-links a,#fm_admin_container .pagination-links a span{font-size:initial}#fm_admin_container .search-box{margin-bottom:5px}#fm_admin_container .tablenav .tablenav-pages a,#fm_admin_container .tablenav-pages-navspan{min-width:28px;margin:0}div.wd-buttons{clear:both;display:inline-block;float:right;margin-top:2px}div.wd-buttons .wd-button{margin:0 3px}div .wd-button:last-child{margin-right:0}div .wd-button:first-child{margin-left:0}.wd-table{clear:both;display:table;margin:0;padding:10px 0;position:relative;table-layout:fixed;width:100%}.wd-table-col{display:table-cell;position:relative;vertical-align:top}.wd-table-col-50{width:50%}.wd-table-col-60{width:60%}.wd-table-col-70{width:70%}@media screen and (max-width:782px){.wd-table-col{display:block}.wd-table-col-50,.wd-table-col-60,.wd-table-col-70{width:100%;float:none}}.wd-table-col-100{width:100%}.wd-table-col-left .wd-box-section{margin-right:5px}.wd-table-col-right .wd-box-section{margin-left:5px}.wd-box-section{background-color:#fff;border:1px solid #e5e5e5;border-radius:6px;margin:5px 0}.wd-box-title{border-bottom:1px solid #eaeaea;height:inherit;margin:0;padding:15px 30px}.wd-box-content{overflow-wrap:break-word;padding:20px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.wd-box-content-shortcode{padding-top:0;padding-bottom:0}.wd-label{display:block;font-size:15px;font-weight:700;line-height:20px;margin-bottom:10px;padding:0}#form_email_options_tab_content .fm-row .wd-label-radio{width:auto}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:26px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-notice{display:flex;justify-content:space-between}.fm-notice-dismiss-button{border:none;margin:0;padding:9px;background:0 0;color:#72777c;cursor:pointer}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.fm-free-message-upgrade-button,.fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}#fm-tabs .fm-free-message-promo-button,#fm-tabs .fm-free-message-promo-button:focus,.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px;color:#fff}.fm-promo-message{align-items:center;display:flex;flex-direction:column;padding:8px 20px}.fm-free-message-huge{font-size:30px;line-height:39px;margin:10px 0 0 0}.fm-head{margin-top:15px;text-align:center}.fm-head .fm-breadcrumbs li{display:inline-block;margin:0 10px 0 0;padding-top:10px;vertical-align:baseline}.fm-head .fm-breadcrumbs li:last-child{margin-right:0}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link{text-decoration:none;font-family:Roboto;font-weight:500;font-size:18px;color:#32373c}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link-active{color:#0073aa}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-upgrade{position:relative;top:.5px;display:inline-block;margin-left:10px;padding:1px 22px;background-color:#29b311;text-transform:uppercase;border-radius:10px;font-weight:700;font-size:12px;color:#fff}.fm-limitation-alert-container{display:flex;align-items:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100050}.fm-limitation-alert-overlay{background-color:#ffffffcc;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.fm-limitation-alert{background-color:#fff;box-shadow:#0000001a 0 0 10px;display:flex;flex-direction:column;color:#000;font-family:Roboto;justify-content:space-between;margin:0 auto;padding:30px 20px;position:relative;max-width:430px;max-height:311px;width:100%;height:100%;text-align:center}.fm-limitation-alert span.fm-ico-delete{cursor:pointer;position:absolute;top:10px;right:10px;color:#000;font-size:10px;opacity:.3}.fm-hidden{display:none}.fm-limitation-alert-header{color:#32373c;font-size:16px;font-weight:500;line-height:21px}.fm-limitation-alert-body{margin-top:20px}.fm-limitation-alert-body ul{display:inline-block;list-style:disc;text-align:left}.fm-limitation-alert-body ul li{font-size:16px;font-weight:700;line-height:26px}.fm-add-ons{display:flex;flex-wrap:wrap;justify-content:center;margin-top:20px;margin-bottom:10px;font-family:Roboto}.fm-add-ons .fm-add-on{max-width:300px;max-height:300px;width:100%;height:100%;margin-right:10px;margin-bottom:10px;padding:20px 20px 15px;transition-delay:0s;transition-duration:0s;transition-property:all;transition-timing-function:ease;background-color:#fff;border-radius:1px;text-align:center;font-family:Roboto;font-weight:300;font-size:16px;color:#323a45}.fm-add-ons .fm-add-on:hover{box-shadow:1px 1px 6px rgba(52,52,52,.16)}.fm-add-ons .fm-add-on .fm-add-on-img{width:72px;height:72px;margin:0 auto}.fm-add-ons .fm-add-on a{text-decoration:none}.fm-add-ons .fm-add-on .fm-add-on-name{margin:15px 0}.fm-add-ons .fm-add-on .fm-add-on-name,.fm-add-ons .fm-add-on .fm-add-on-name a{font-family:Roboto;font-weight:400;font-size:20px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-premium-version{margin:4px 0;height:16px;line-height:16px;font-weight:400;font-size:14px;color:#29b311}.fm-add-ons .fm-add-on .fm-add-on-desc{max-height:65px;height:100%;line-height:20px;font-size:16px}.fm-add-ons .fm-add-on .fm-add-on-desc-more-wrap{position:relative}.fm-add-ons .fm-add-on .fm-add-on-desc-more{position:absolute;z-index:1;left:0;bottom:65px;opacity:0;visibility:hidden;transition:opacity .4s linear;padding:10px 10px;background-color:#32373c;border-radius:6px;line-height:20px;font-weight:400;font-size:14px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-desc:hover+.fm-add-on-desc-more{opacity:1;visibility:visible}.fm-add-ons .fm-add-on .fm-add-on-buy{width:155px;height:30px;display:block;margin:10px auto;padding-top:7px;background-color:#0c4d68;border:.7px solid #0c4d68;border-radius:15px;line-height:16px;font-family:Roboto;font-weight:400;font-size:13px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-buy:hover{background-color:rgba(12,77,104,.8)}.fm-add-ons .fm-add-on.fm-add-on-activated .fm-add-on-buy{text-transform:uppercase;background-color:#fff;font-size:13px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-learn-more{line-height:16px;font-family:Roboto;font-weight:300;font-size:14px;color:#0073aa}.fm-add-ons .fm-add-on .fm-add-on-learn-more:hover{color:rgba(0,115,170,.8)}@media screen and (max-width:450px){.fm-topbar_cont{display:block}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{margin-left:0}}
1
+ @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.wdsignature:before{content:"\f12e"}.wdstripe:before{content:"S";font-weight:bolder;font-size:13px!important}#manage_form .wd-header{padding:10px}#manage_form .wd-page-title #title{padding:3px 8px;font-size:1.5em;line-height:100%;height:1.5em;width:30%;outline:0;margin:0 0 3px;background-color:#fff}#fm_admin_container h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.field_options h2.hndle,.field_types_cont h2.hndle,.placeholders_cont h2.hndle{background-color:#f1f1f1}.field-types-filter_header{border:1px solid #eee}.field-types-filter,.placeholders-filter{webkit-box-shadow:0 1px 4px rgba(0,0,0,.07)!important;box-shadow:0 1px 4px rgba(0,0,0,.07)!important}#manage_form .first-time-use{background-color:#fff;border:1px dashed #0085ba;border-radius:3px;bottom:115px;color:#0085ba;display:none;font-size:14px;height:auto;padding:5px;right:0;width:250px;position:absolute;bottom:32px}#manage_form .first-time-use-close{background-color:#fff;border-radius:50%;box-sizing:content-box;cursor:pointer;font-size:17px;margin:0;padding:0;position:absolute;right:-9px;top:-9px}#manage_form .first-time-use-close:before{margin:1px 0 0 3px}#add_field{position:relative}.hide_number_arrow{-moz-appearance:textfield;line-height:normal!important}.hide_number_arrow::-webkit-inner-spin-button,.hide_number_arrow::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.fm-edit-content #add_field_cont{animation-duration:1.5s;animation-iteration-count:1;animation-fill-mode:both;color:#0085ba;position:absolute;top:10px;right:10px;min-width:50px;height:auto;width:initial;padding:0!important;z-index:10}#add_field_cont .wdform_field{display:table-cell;cursor:move;background-color:transparent!important;border:none;padding:0}#add_field_cont .add-new-button{cursor:move;padding:5px 15px 5px 5px;color:#fff;font-size:16px;line-height:16px;vertical-align:middle;font-weight:400;height:30px}#add_field_cont .add-new-button .fm-ico-draggable{padding:5px 5px 5px 15px;font-size:12px}@-webkit-keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);-ms-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);-ms-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);-ms-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.animated{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}.field_types .postbox button.wd-button.wd-pro-fields{background-color:#ccc;border-color:#ccc;box-shadow:0 1px 0 #ccc;text-shadow:0 -1px 1px #ccc,1px 0 1px #ccc,0 1px 1px #ccc,-1px 0 1px #ccc}.field_types .postbox h2.hndle,.placeholders .postbox h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.add-popup .postbox .inside{margin:12px 0 0 0}.add-popup .postbox .handlediv{margin:0}.postbox .handlediv{float:right}.postbox .hndle,.stuffbox .hndle{border-bottom:1px solid #ccd0d4}.js .postbox .hndle{cursor:pointer}.field_types .postbox,.placeholders .postbox{margin-bottom:0}.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{margin:5px 0;white-space:normal;width:48%;word-wrap:break-word;word-break:break-all;overflow:hidden;padding:8px;height:auto}.add-popup .field-types-filter,.placeholder-popup .placeholders-filter{line-height:25px;margin:15px;width:calc(100% - 45px);padding-left:30px;background-color:#f5f5f5}.add-popup .field-types-filter-cont,.placeholder-popup .placeholders-filter-cont{position:relative;height:25px;width:100%}.add-popup .field-types-filter-cont:before,.placeholder-popup .placeholders-filter-cont:before{font-family:Dashicons;content:"\f179";font-size:25px;height:25px;left:18px;position:absolute;top:0;width:25px;color:#757575}.hide{display:none}.fm-hide{display:none!important}.fm-hidden{visibility:hidden;height:0;display:block;border:none}.fm-add-new{cursor:pointer}.pagination-links a{cursor:pointer}#fm_admin_container .adminlist th{font-size:13px}#fm_admin_container .pagination-links .tablenav-pages-navspan,#fm_admin_container .pagination-links a,#fm_admin_container .pagination-links a span{font-size:initial}#fm_admin_container .search-box{margin-bottom:5px}#fm_admin_container .tablenav .tablenav-pages a,#fm_admin_container .tablenav-pages-navspan{min-width:28px;margin:0}div.wd-buttons{clear:both;display:inline-block;float:right;margin-top:2px}div.wd-buttons .wd-button{margin:0 3px}div .wd-button:last-child{margin-right:0}div .wd-button:first-child{margin-left:0}.wd-table{clear:both;display:table;margin:0;padding:10px 0;position:relative;table-layout:fixed;width:100%}.wd-table-col{display:table-cell;position:relative;vertical-align:top}.wd-table-col-50{width:50%}.wd-table-col-60{width:60%}.wd-table-col-70{width:70%}@media screen and (max-width:782px){.wd-table-col{display:block}.wd-table-col-50,.wd-table-col-60,.wd-table-col-70{width:100%;float:none}}.wd-table-col-100{width:100%}.wd-table-col-left .wd-box-section{margin-right:5px}.wd-table-col-right .wd-box-section{margin-left:5px}.wd-box-section{background-color:#fff;border:1px solid #e5e5e5;border-radius:6px;margin:5px 0}.wd-box-title{border-bottom:1px solid #eaeaea;height:inherit;margin:0;padding:15px 30px}.wd-box-content{overflow-wrap:break-word;padding:20px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.wd-box-content-shortcode{padding-top:0;padding-bottom:0}.wd-label{display:block;font-size:15px;font-weight:700;line-height:20px;margin-bottom:10px;padding:0}#form_email_options_tab_content .fm-row .wd-label-radio{width:auto}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;text-align:center;margin-left:8px;color:#fff}.fm-statCount{width:10%;text-align:left}@media screen and (max-width:782px){.fm-statCount{width:20%}}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.change_payment_status{margin:0 0 5px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:baseline}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-author{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}tbody tr td[data-colname="Payment Status"]{text-transform:capitalize!important}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-notice{display:flex;justify-content:space-between}.fm-notice-dismiss-button{border:none;margin:0;padding:9px;background:0 0;color:#72777c;cursor:pointer}.fm-error{color:#cc0c0c;margin-left:5px;font-weight:600}.fm-capture-loading{margin-left:5px}.fm-double-option-container{display:flex}.fm-option-wrapper1{width:calc(30% + .25rem + 16px);display:flex;justify-content:space-between}.fm-option-wrapper1 .fm-label-container,.fm-option-wrapper2 .fm-label-container{width:100%}.fm-option-wrapper2 .fm-label-container{text-align:end}.fm-option-wrapper2{width:calc(70% - .25rem - 16px);display:flex;justify-content:flex-end}.fm-option-wrapper1 .fm-input-container,.fm-option-wrapper2 .fm-input-container{width:unset}@media screen and (max-width:782px){.fm-option-wrapper1{width:calc(30% + .25rem + 25px)}.fm-option-wrapper2{width:calc(70% - .25rem - 25px)}}@media screen and (max-width:370px){.fm-option-wrapper2 .fm-label-container{text-align:start;width:65%}}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.ui-widget-content .fm-free-message-upgrade-button,.ui-widget-content .fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none}#fm-tabs .fm-free-message-promo-button,#fm-tabs .fm-free-message-promo-button:focus,.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px;color:#fff}.fm-promo-message{align-items:center;display:flex;flex-direction:column;padding:8px 20px}.fm-free-message-huge{font-size:30px;line-height:39px;margin:10px 0 0 0}.fm-head{margin-top:15px;text-align:center}.fm-head .fm-breadcrumbs li{display:inline-block;margin:0 10px 0 0;padding-top:10px;vertical-align:baseline}.fm-head .fm-breadcrumbs li:last-child{margin-right:0}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link{text-decoration:none;font-family:Roboto;font-weight:500;font-size:18px;color:#32373c}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link-active{color:#0073aa}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-upgrade{position:relative;top:.5px;display:inline-block;margin-left:10px;padding:1px 22px;background-color:#29b311;text-transform:uppercase;border-radius:10px;font-weight:700;font-size:12px;color:#fff}.fm-limitation-alert-container{display:flex;align-items:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100050}.fm-limitation-alert-overlay{background-color:#ffffffcc;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.fm-limitation-alert{background-color:#fff;box-shadow:#0000001a 0 0 10px;display:flex;flex-direction:column;color:#000;font-family:Roboto;justify-content:space-between;margin:0 auto;padding:30px 20px;position:relative;max-width:430px;max-height:311px;width:100%;height:100%;text-align:center}.fm-limitation-alert span.fm-ico-delete{cursor:pointer;position:absolute;top:10px;right:10px;color:#000;font-size:10px;opacity:.3}.fm-hidden{display:none}.fm-limitation-alert-header{color:#32373c;font-size:16px;font-weight:500;line-height:21px}.fm-limitation-alert-body{margin-top:20px}.fm-limitation-alert-body ul{display:inline-block;list-style:disc;text-align:left}.fm-limitation-alert-body ul li{font-size:16px;font-weight:700;line-height:26px}.fm-add-ons{display:flex;flex-wrap:wrap;justify-content:center;margin-top:20px;margin-bottom:10px;font-family:Roboto}.fm-add-ons .fm-add-on{max-width:300px;max-height:300px;width:100%;height:100%;margin-right:10px;margin-bottom:10px;padding:20px 20px 15px;transition-delay:0s;transition-duration:0s;transition-property:all;transition-timing-function:ease;background-color:#fff;border-radius:1px;text-align:center;font-family:Roboto;font-weight:300;font-size:16px;color:#323a45}.fm-add-ons .fm-add-on:hover{box-shadow:1px 1px 6px rgba(52,52,52,.16)}.fm-add-ons .fm-add-on .fm-add-on-img{width:72px;height:72px;margin:0 auto}.fm-add-ons .fm-add-on a{text-decoration:none}.fm-add-ons .fm-add-on .fm-add-on-name{margin:15px 0}.fm-add-ons .fm-add-on .fm-add-on-name,.fm-add-ons .fm-add-on .fm-add-on-name a{font-family:Roboto;font-weight:400;font-size:20px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-premium-version{margin:4px 0;height:16px;line-height:16px;font-weight:400;font-size:14px;color:#29b311}.fm-add-ons .fm-add-on .fm-add-on-desc{max-height:65px;height:100%;line-height:20px;font-size:16px}.fm-add-ons .fm-add-on .fm-add-on-desc-more-wrap{position:relative}.fm-add-ons .fm-add-on .fm-add-on-desc-more{position:absolute;z-index:1;left:0;bottom:65px;opacity:0;visibility:hidden;transition:opacity .4s linear;padding:10px 10px;background-color:#32373c;border-radius:6px;line-height:20px;font-weight:400;font-size:14px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-desc:hover+.fm-add-on-desc-more{opacity:1;visibility:visible}.fm-add-ons .fm-add-on .fm-add-on-buy{width:155px;height:30px;display:block;margin:10px auto;padding-top:7px;background-color:#0c4d68;border:.7px solid #0c4d68;border-radius:15px;line-height:16px;font-family:Roboto;font-weight:400;font-size:13px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-buy:hover{background-color:rgba(12,77,104,.8)}.fm-add-ons .fm-add-on.fm-add-on-activated .fm-add-on-buy{text-transform:uppercase;background-color:#fff;font-size:13px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-learn-more{line-height:16px;font-family:Roboto;font-weight:300;font-size:14px;color:#0073aa}.fm-add-ons .fm-add-on .fm-add-on-learn-more:hover{color:rgba(0,115,170,.8)}@media screen and (max-width:450px){.fm-topbar_cont{display:block}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{margin-left:0}}
css/form_maker_tables.css CHANGED
@@ -1150,13 +1150,21 @@ div.error_fm {
1150
  }
1151
  .fm-statistics .fm-bordered-count {
1152
  height:20px;
1153
- width:26px;
1154
- text-align:
1155
- center;
1156
  margin-left:8px;
1157
  color: #fff;
1158
  }
1159
 
 
 
 
 
 
 
 
 
 
 
1160
  .fm-statistics .adminlist {
1161
  border-collapse: separate;
1162
  font-size: 14px;
@@ -1482,6 +1490,9 @@ table.admintable {
1482
  width: 72px;
1483
  }
1484
 
 
 
 
1485
  .sub-align {
1486
  vertical-align: top !important;
1487
  }
@@ -1509,7 +1520,7 @@ table.admintable {
1509
  font-size: 12px;
1510
  margin: 0 !important;
1511
  border: none;
1512
- vertical-align: middle;
1513
  }
1514
 
1515
  .submitdate_fc * {
@@ -1533,7 +1544,7 @@ table.admintable {
1533
  min-height:30px;
1534
  }
1535
 
1536
- .submit_content .column-autor {
1537
  min-width: 130px;
1538
  max-width: 200px;
1539
  }
@@ -1554,9 +1565,15 @@ table.admintable {
1554
  }
1555
  #fm-submission-lists .fm-show-column {
1556
  }
 
1557
  #fm-submission-lists .fm-hide-column {
1558
  display:none;
1559
  }
 
 
 
 
 
1560
  .submitid_fc a {
1561
  padding-left: 2px;
1562
  }
@@ -5517,11 +5534,6 @@ a.fm_not-active {
5517
  #wpbody-content>div:not(.wrap), .wrap .notice:not(.wd-notice) {
5518
  display: none;
5519
  }
5520
-
5521
- .ei_buttons {
5522
- margin-top: 3px;
5523
- }
5524
-
5525
  .wdform_field[type="type_date_new"] div[id$="_element_sectionform_id_temp"]{
5526
  position: relative;
5527
  }
@@ -5557,4 +5569,59 @@ a.fm_not-active {
5557
  background: 0 0;
5558
  color: #72777c;
5559
  cursor: pointer;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5560
  }
1150
  }
1151
  .fm-statistics .fm-bordered-count {
1152
  height:20px;
1153
+ text-align: center;
 
 
1154
  margin-left:8px;
1155
  color: #fff;
1156
  }
1157
 
1158
+ .fm-statCount {
1159
+ width: 10%;
1160
+ text-align: left;
1161
+ }
1162
+ @media screen and (max-width: 782px) {
1163
+ .fm-statCount {
1164
+ width: 20%;
1165
+ }
1166
+ }
1167
+
1168
  .fm-statistics .adminlist {
1169
  border-collapse: separate;
1170
  font-size: 14px;
1490
  width: 72px;
1491
  }
1492
 
1493
+ .change_payment_status {
1494
+ margin: 0px 0px 5px;
1495
+ }
1496
  .sub-align {
1497
  vertical-align: top !important;
1498
  }
1520
  font-size: 12px;
1521
  margin: 0 !important;
1522
  border: none;
1523
+ vertical-align: baseline;
1524
  }
1525
 
1526
  .submitdate_fc * {
1544
  min-height:30px;
1545
  }
1546
 
1547
+ .submit_content .column-author {
1548
  min-width: 130px;
1549
  max-width: 200px;
1550
  }
1565
  }
1566
  #fm-submission-lists .fm-show-column {
1567
  }
1568
+
1569
  #fm-submission-lists .fm-hide-column {
1570
  display:none;
1571
  }
1572
+
1573
+ tbody tr td[data-colname="Payment Status"]{
1574
+ text-transform: capitalize!important;
1575
+ }
1576
+
1577
  .submitid_fc a {
1578
  padding-left: 2px;
1579
  }
5534
  #wpbody-content>div:not(.wrap), .wrap .notice:not(.wd-notice) {
5535
  display: none;
5536
  }
 
 
 
 
 
5537
  .wdform_field[type="type_date_new"] div[id$="_element_sectionform_id_temp"]{
5538
  position: relative;
5539
  }
5569
  background: 0 0;
5570
  color: #72777c;
5571
  cursor: pointer;
5572
+ }
5573
+
5574
+ .fm-error {
5575
+ color: #CC0C0C;
5576
+ margin-left: 5px;
5577
+ font-weight: 600;
5578
+ }
5579
+
5580
+ .fm-capture-loading {
5581
+ margin-left: 5px;
5582
+ }
5583
+
5584
+ .fm-double-option-container {
5585
+ display: flex;
5586
+ }
5587
+
5588
+ .fm-option-wrapper1 {
5589
+ width: calc(30% + 0.25rem + 16px);
5590
+ display: flex;
5591
+ justify-content: space-between;
5592
+ }
5593
+
5594
+ .fm-option-wrapper1 .fm-label-container,.fm-option-wrapper2 .fm-label-container {
5595
+ width: 100%;
5596
+ }
5597
+
5598
+ .fm-option-wrapper2 .fm-label-container {
5599
+ text-align: end;
5600
+ }
5601
+
5602
+ .fm-option-wrapper2 {
5603
+ width: calc(70% - 0.25rem - 16px);
5604
+ display: flex;
5605
+ justify-content: flex-end;
5606
+ }
5607
+
5608
+ .fm-option-wrapper1 .fm-input-container,
5609
+ .fm-option-wrapper2 .fm-input-container {
5610
+ width: unset;
5611
+ }
5612
+
5613
+ @media screen and (max-width: 782px) {
5614
+ .fm-option-wrapper1 {
5615
+ width: calc(30% + 0.25rem + 25px);
5616
+ }
5617
+ .fm-option-wrapper2 {
5618
+ width: calc(70% - 0.25rem - 25px);
5619
+ }
5620
+ }
5621
+
5622
+ @media screen and (max-width: 370px) {
5623
+ .fm-option-wrapper2 .fm-label-container {
5624
+ text-align: start;
5625
+ width: 65%;
5626
+ }
5627
  }
css/manage-edit-styles.min.css CHANGED
@@ -1,4 +1,4 @@
1
- @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.wdsignature:before{content:"\f12e"}.wdstripe:before{content:"S";font-weight:bolder;font-size:13px!important}#manage_form .wd-header{padding:10px}#manage_form .wd-page-title #title{padding:3px 8px;font-size:1.5em;line-height:100%;height:1.5em;width:30%;outline:0;margin:0 0 3px;background-color:#fff}#fm_admin_container h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.field_options h2.hndle,.field_types_cont h2.hndle,.placeholders_cont h2.hndle{background-color:#f1f1f1}.field-types-filter_header{border:1px solid #eee}.field-types-filter,.placeholders-filter{webkit-box-shadow:0 1px 4px rgba(0,0,0,.07)!important;box-shadow:0 1px 4px rgba(0,0,0,.07)!important}#manage_form .first-time-use{background-color:#fff;border:1px dashed #0085ba;border-radius:3px;bottom:115px;color:#0085ba;display:none;font-size:14px;height:auto;padding:5px;right:0;width:250px;position:absolute;bottom:32px}#manage_form .first-time-use-close{background-color:#fff;border-radius:50%;box-sizing:content-box;cursor:pointer;font-size:17px;margin:0;padding:0;position:absolute;right:-9px;top:-9px}#manage_form .first-time-use-close:before{margin:1px 0 0 3px}#add_field{position:relative}.hide_number_arrow{-moz-appearance:textfield;line-height:normal!important}.hide_number_arrow::-webkit-inner-spin-button,.hide_number_arrow::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.fm-edit-content #add_field_cont{animation-duration:1.5s;animation-iteration-count:1;animation-fill-mode:both;color:#0085ba;position:absolute;top:10px;right:10px;min-width:50px;height:auto;width:initial;padding:0!important;z-index:10}#add_field_cont .wdform_field{display:table-cell;cursor:move;background-color:transparent!important;border:none;padding:0}#add_field_cont .add-new-button{cursor:move;padding:5px 15px 5px 5px;color:#fff;font-size:16px;line-height:16px;vertical-align:middle;font-weight:400;height:30px}#add_field_cont .add-new-button .fm-ico-draggable{padding:5px 5px 5px 15px;font-size:12px}@-webkit-keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);-ms-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);-ms-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);-ms-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.animated{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}.field_types .postbox button.wd-button.wd-pro-fields{background-color:#ccc;border-color:#ccc;box-shadow:0 1px 0 #ccc;text-shadow:0 -1px 1px #ccc,1px 0 1px #ccc,0 1px 1px #ccc,-1px 0 1px #ccc}.field_types .postbox h2.hndle,.placeholders .postbox h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.add-popup .postbox .inside{margin:12px 0 0 0}.add-popup .postbox .handlediv{margin:0}.postbox .handlediv{float:right}.postbox .hndle,.stuffbox .hndle{border-bottom:1px solid #ccd0d4}.js .postbox .hndle{cursor:pointer}.field_types .postbox,.placeholders .postbox{margin-bottom:0}.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{margin:5px 0;white-space:normal;width:48%;word-wrap:break-word;word-break:break-all;overflow:hidden;padding:8px;height:auto}.add-popup .field-types-filter,.placeholder-popup .placeholders-filter{line-height:25px;margin:15px;width:calc(100% - 45px);padding-left:30px;background-color:#f5f5f5}.add-popup .field-types-filter-cont,.placeholder-popup .placeholders-filter-cont{position:relative;height:25px;width:100%}.add-popup .field-types-filter-cont:before,.placeholder-popup .placeholders-filter-cont:before{font-family:Dashicons;content:"\f179";font-size:25px;height:25px;left:18px;position:absolute;top:0;width:25px;color:#757575}.hide{display:none}.fm-hide{display:none!important}.fm-hidden{visibility:hidden;height:0;display:block;border:none}.fm-add-new{cursor:pointer}.pagination-links a{cursor:pointer}#fm_admin_container .adminlist th{font-size:13px}#fm_admin_container .pagination-links .tablenav-pages-navspan,#fm_admin_container .pagination-links a,#fm_admin_container .pagination-links a span{font-size:initial}#fm_admin_container .search-box{margin-bottom:5px}#fm_admin_container .tablenav .tablenav-pages a,#fm_admin_container .tablenav-pages-navspan{min-width:28px;margin:0}div.wd-buttons{clear:both;display:inline-block;float:right;margin-top:2px}div.wd-buttons .wd-button{margin:0 3px}div .wd-button:last-child{margin-right:0}div .wd-button:first-child{margin-left:0}.wd-table{clear:both;display:table;margin:0;padding:10px 0;position:relative;table-layout:fixed;width:100%}.wd-table-col{display:table-cell;position:relative;vertical-align:top}.wd-table-col-50{width:50%}.wd-table-col-60{width:60%}.wd-table-col-70{width:70%}@media screen and (max-width:782px){.wd-table-col{display:block}.wd-table-col-50,.wd-table-col-60,.wd-table-col-70{width:100%;float:none}}.wd-table-col-100{width:100%}.wd-table-col-left .wd-box-section{margin-right:5px}.wd-table-col-right .wd-box-section{margin-left:5px}.wd-box-section{background-color:#fff;border:1px solid #e5e5e5;border-radius:6px;margin:5px 0}.wd-box-title{border-bottom:1px solid #eaeaea;height:inherit;margin:0;padding:15px 30px}.wd-box-content{overflow-wrap:break-word;padding:20px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.wd-box-content-shortcode{padding-top:0;padding-bottom:0}.wd-label{display:block;font-size:15px;font-weight:700;line-height:20px;margin-bottom:10px;padding:0}#form_email_options_tab_content .fm-row .wd-label-radio{width:auto}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:26px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-notice{display:flex;justify-content:space-between}.fm-notice-dismiss-button{border:none;margin:0;padding:9px;background:0 0;color:#72777c;cursor:pointer}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.fm-free-message-upgrade-button,.fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}#fm-tabs .fm-free-message-promo-button,#fm-tabs .fm-free-message-promo-button:focus,.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px;color:#fff}.fm-promo-message{align-items:center;display:flex;flex-direction:column;padding:8px 20px}.fm-free-message-huge{font-size:30px;line-height:39px;margin:10px 0 0 0}.fm-head{margin-top:15px;text-align:center}.fm-head .fm-breadcrumbs li{display:inline-block;margin:0 10px 0 0;padding-top:10px;vertical-align:baseline}.fm-head .fm-breadcrumbs li:last-child{margin-right:0}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link{text-decoration:none;font-family:Roboto;font-weight:500;font-size:18px;color:#32373c}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link-active{color:#0073aa}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-upgrade{position:relative;top:.5px;display:inline-block;margin-left:10px;padding:1px 22px;background-color:#29b311;text-transform:uppercase;border-radius:10px;font-weight:700;font-size:12px;color:#fff}.fm-limitation-alert-container{display:flex;align-items:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100050}.fm-limitation-alert-overlay{background-color:#ffffffcc;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.fm-limitation-alert{background-color:#fff;box-shadow:#0000001a 0 0 10px;display:flex;flex-direction:column;color:#000;font-family:Roboto;justify-content:space-between;margin:0 auto;padding:30px 20px;position:relative;max-width:430px;max-height:311px;width:100%;height:100%;text-align:center}.fm-limitation-alert span.fm-ico-delete{cursor:pointer;position:absolute;top:10px;right:10px;color:#000;font-size:10px;opacity:.3}.fm-hidden{display:none}.fm-limitation-alert-header{color:#32373c;font-size:16px;font-weight:500;line-height:21px}.fm-limitation-alert-body{margin-top:20px}.fm-limitation-alert-body ul{display:inline-block;list-style:disc;text-align:left}.fm-limitation-alert-body ul li{font-size:16px;font-weight:700;line-height:26px}.fm-add-ons{display:flex;flex-wrap:wrap;justify-content:center;margin-top:20px;margin-bottom:10px;font-family:Roboto}.fm-add-ons .fm-add-on{max-width:300px;max-height:300px;width:100%;height:100%;margin-right:10px;margin-bottom:10px;padding:20px 20px 15px;transition-delay:0s;transition-duration:0s;transition-property:all;transition-timing-function:ease;background-color:#fff;border-radius:1px;text-align:center;font-family:Roboto;font-weight:300;font-size:16px;color:#323a45}.fm-add-ons .fm-add-on:hover{box-shadow:1px 1px 6px rgba(52,52,52,.16)}.fm-add-ons .fm-add-on .fm-add-on-img{width:72px;height:72px;margin:0 auto}.fm-add-ons .fm-add-on a{text-decoration:none}.fm-add-ons .fm-add-on .fm-add-on-name{margin:15px 0}.fm-add-ons .fm-add-on .fm-add-on-name,.fm-add-ons .fm-add-on .fm-add-on-name a{font-family:Roboto;font-weight:400;font-size:20px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-premium-version{margin:4px 0;height:16px;line-height:16px;font-weight:400;font-size:14px;color:#29b311}.fm-add-ons .fm-add-on .fm-add-on-desc{max-height:65px;height:100%;line-height:20px;font-size:16px}.fm-add-ons .fm-add-on .fm-add-on-desc-more-wrap{position:relative}.fm-add-ons .fm-add-on .fm-add-on-desc-more{position:absolute;z-index:1;left:0;bottom:65px;opacity:0;visibility:hidden;transition:opacity .4s linear;padding:10px 10px;background-color:#32373c;border-radius:6px;line-height:20px;font-weight:400;font-size:14px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-desc:hover+.fm-add-on-desc-more{opacity:1;visibility:visible}.fm-add-ons .fm-add-on .fm-add-on-buy{width:155px;height:30px;display:block;margin:10px auto;padding-top:7px;background-color:#0c4d68;border:.7px solid #0c4d68;border-radius:15px;line-height:16px;font-family:Roboto;font-weight:400;font-size:13px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-buy:hover{background-color:rgba(12,77,104,.8)}.fm-add-ons .fm-add-on.fm-add-on-activated .fm-add-on-buy{text-transform:uppercase;background-color:#fff;font-size:13px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-learn-more{line-height:16px;font-family:Roboto;font-weight:300;font-size:14px;color:#0073aa}.fm-add-ons .fm-add-on .fm-add-on-learn-more:hover{color:rgba(0,115,170,.8)}@media screen and (max-width:450px){.fm-topbar_cont{display:block}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{margin-left:0}}.intl-tel-input{position:relative;display:inline-block}.intl-tel-input *{box-sizing:border-box;-moz-box-sizing:border-box}.intl-tel-input .hide{display:none}.intl-tel-input .v-hide{visibility:hidden}.intl-tel-input input,.intl-tel-input input[type=tel],.intl-tel-input input[type=text]{position:relative;z-index:0;margin-top:0!important;margin-bottom:0!important;padding-right:36px;margin-right:0}.intl-tel-input .flag-container{position:absolute;top:0;bottom:0;right:0;padding:1px}.intl-tel-input .selected-flag{z-index:1;position:relative;width:36px;height:100%;padding:0 0 0 8px}.intl-tel-input .selected-flag .iti-flag{position:absolute;top:0;bottom:0;margin:auto}.intl-tel-input .selected-flag .iti-arrow{position:absolute;top:50%;margin-top:-2px;right:6px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.rtl .intl-tel-input .selected-flag .iti-arrow{left:6px;right:auto}.intl-tel-input .selected-flag .iti-arrow.up{border-top:none;border-bottom:4px solid #555}.intl-tel-input .country-list{position:absolute;z-index:2;list-style:none;text-align:left;padding:0;margin:0 0 0 -1px;box-shadow:1px 1px 4px rgba(0,0,0,.2);background-color:#fff;border:1px solid #ccc;white-space:nowrap;max-height:200px;overflow-y:scroll}.intl-tel-input .country-list.dropup{bottom:100%;margin-bottom:-1px}.intl-tel-input .country-list .flag-box{display:inline-block;width:20px}@media (max-width:500px){.intl-tel-input .country-list{white-space:normal}}.intl-tel-input .country-list .divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.intl-tel-input .country-list .country{padding:5px 10px}.intl-tel-input .country-list .country .dial-code{color:#999}.intl-tel-input .country-list .country.highlight{background-color:rgba(0,0,0,.05)}.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .dial-code,.intl-tel-input .country-list .flag-box{vertical-align:middle}.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .flag-box{margin-right:6px}.intl-tel-input.allow-dropdown input,.intl-tel-input.allow-dropdown input[type=tel],.intl-tel-input.allow-dropdown input[type=text],.intl-tel-input.separate-dial-code input,.intl-tel-input.separate-dial-code input[type=tel],.intl-tel-input.separate-dial-code input[type=text]{padding-right:6px;padding-left:52px;margin-left:0}.intl-tel-input.allow-dropdown .flag-container,.intl-tel-input.separate-dial-code .flag-container{right:auto;left:0}.rtl .intl-tel-input.allow-dropdown .flag-container,.rtl .intl-tel-input.separate-dial-code .flag-container{left:auto;right:0}.intl-tel-input.allow-dropdown .selected-flag,.intl-tel-input.separate-dial-code .selected-flag{width:46px}.intl-tel-input.allow-dropdown .flag-container:hover{cursor:pointer}.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag{background-color:rgba(0,0,0,.05)}.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover,.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover{cursor:default}.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover .selected-flag,.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover .selected-flag{background-color:transparent}.intl-tel-input.separate-dial-code .selected-flag{background-color:rgba(0,0,0,.05);display:table}.intl-tel-input.separate-dial-code .selected-dial-code{display:table-cell;vertical-align:middle;padding-left:28px}.intl-tel-input.separate-dial-code.iti-sdc-2 input,.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text]{padding-left:66px}.intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag{width:60px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text]{padding-left:76px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag{width:70px}.intl-tel-input.separate-dial-code.iti-sdc-3 input,.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text]{padding-left:74px}.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag{width:68px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text]{padding-left:84px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag{width:78px}.intl-tel-input.separate-dial-code.iti-sdc-4 input,.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text]{padding-left:82px}.intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag{width:76px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text]{padding-left:92px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag{width:86px}.intl-tel-input.separate-dial-code.iti-sdc-5 input,.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text]{padding-left:90px}.intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag{width:84px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text]{padding-left:100px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag{width:94px}.intl-tel-input.iti-container{position:absolute;top:-1000px;left:-1000px;z-index:1060;padding:1px}.intl-tel-input.iti-container:hover{cursor:pointer}.iti-mobile .intl-tel-input.iti-container{top:30px;bottom:30px;left:30px;right:30px;position:fixed}.iti-mobile .intl-tel-input .country-list{max-height:100%;width:100%}.iti-mobile .intl-tel-input .country-list .country{padding:10px 10px;line-height:1.5em}.iti-flag{width:20px}.iti-flag.be{width:18px}.iti-flag.ch{width:15px}.iti-flag.mc{width:19px}.iti-flag.ne{width:18px}.iti-flag.np{width:13px}.iti-flag.va{width:15px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2 / 1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.iti-flag{background-size:5630px 15px}}.iti-flag.ac{height:10px;background-position:0 0}.iti-flag.ad{height:14px;background-position:-22px 0}.iti-flag.ae{height:10px;background-position:-44px 0}.iti-flag.af{height:14px;background-position:-66px 0}.iti-flag.ag{height:14px;background-position:-88px 0}.iti-flag.ai{height:10px;background-position:-110px 0}.iti-flag.al{height:15px;background-position:-132px 0}.iti-flag.am{height:10px;background-position:-154px 0}.iti-flag.ao{height:14px;background-position:-176px 0}.iti-flag.aq{height:14px;background-position:-198px 0}.iti-flag.ar{height:13px;background-position:-220px 0}.iti-flag.as{height:10px;background-position:-242px 0}.iti-flag.at{height:14px;background-position:-264px 0}.iti-flag.au{height:10px;background-position:-286px 0}.iti-flag.aw{height:14px;background-position:-308px 0}.iti-flag.ax{height:13px;background-position:-330px 0}.iti-flag.az{height:10px;background-position:-352px 0}.iti-flag.ba{height:10px;background-position:-374px 0}.iti-flag.bb{height:14px;background-position:-396px 0}.iti-flag.bd{height:12px;background-position:-418px 0}.iti-flag.be{height:15px;background-position:-440px 0}.iti-flag.bf{height:14px;background-position:-460px 0}.iti-flag.bg{height:12px;background-position:-482px 0}.iti-flag.bh{height:12px;background-position:-504px 0}.iti-flag.bi{height:12px;background-position:-526px 0}.iti-flag.bj{height:14px;background-position:-548px 0}.iti-flag.bl{height:14px;background-position:-570px 0}.iti-flag.bm{height:10px;background-position:-592px 0}.iti-flag.bn{height:10px;background-position:-614px 0}.iti-flag.bo{height:14px;background-position:-636px 0}.iti-flag.bq{height:14px;background-position:-658px 0}.iti-flag.br{height:14px;background-position:-680px 0}.iti-flag.bs{height:10px;background-position:-702px 0}.iti-flag.bt{height:14px;background-position:-724px 0}.iti-flag.bv{height:15px;background-position:-746px 0}.iti-flag.bw{height:14px;background-position:-768px 0}.iti-flag.by{height:10px;background-position:-790px 0}.iti-flag.bz{height:14px;background-position:-812px 0}.iti-flag.ca{height:10px;background-position:-834px 0}.iti-flag.cc{height:10px;background-position:-856px 0}.iti-flag.cd{height:15px;background-position:-878px 0}.iti-flag.cf{height:14px;background-position:-900px 0}.iti-flag.cg{height:14px;background-position:-922px 0}.iti-flag.ch{height:15px;background-position:-944px 0}.iti-flag.ci{height:14px;background-position:-961px 0}.iti-flag.ck{height:10px;background-position:-983px 0}.iti-flag.cl{height:14px;background-position:-1005px 0}.iti-flag.cm{height:14px;background-position:-1027px 0}.iti-flag.cn{height:14px;background-position:-1049px 0}.iti-flag.co{height:14px;background-position:-1071px 0}.iti-flag.cp{height:14px;background-position:-1093px 0}.iti-flag.cr{height:12px;background-position:-1115px 0}.iti-flag.cu{height:10px;background-position:-1137px 0}.iti-flag.cv{height:12px;background-position:-1159px 0}.iti-flag.cw{height:14px;background-position:-1181px 0}.iti-flag.cx{height:10px;background-position:-1203px 0}.iti-flag.cy{height:13px;background-position:-1225px 0}.iti-flag.cz{height:14px;background-position:-1247px 0}.iti-flag.de{height:12px;background-position:-1269px 0}.iti-flag.dg{height:10px;background-position:-1291px 0}.iti-flag.dj{height:14px;background-position:-1313px 0}.iti-flag.dk{height:15px;background-position:-1335px 0}.iti-flag.dm{height:10px;background-position:-1357px 0}.iti-flag.do{height:13px;background-position:-1379px 0}.iti-flag.dz{height:14px;background-position:-1401px 0}.iti-flag.ea{height:14px;background-position:-1423px 0}.iti-flag.ec{height:14px;background-position:-1445px 0}.iti-flag.ee{height:13px;background-position:-1467px 0}.iti-flag.eg{height:14px;background-position:-1489px 0}.iti-flag.eh{height:10px;background-position:-1511px 0}.iti-flag.er{height:10px;background-position:-1533px 0}.iti-flag.es{height:14px;background-position:-1555px 0}.iti-flag.et{height:10px;background-position:-1577px 0}.iti-flag.eu{height:14px;background-position:-1599px 0}.iti-flag.fi{height:12px;background-position:-1621px 0}.iti-flag.fj{height:10px;background-position:-1643px 0}.iti-flag.fk{height:10px;background-position:-1665px 0}.iti-flag.fm{height:11px;background-position:-1687px 0}.iti-flag.fo{height:15px;background-position:-1709px 0}.iti-flag.fr{height:14px;background-position:-1731px 0}.iti-flag.ga{height:15px;background-position:-1753px 0}.iti-flag.gb{height:10px;background-position:-1775px 0}.iti-flag.gd{height:12px;background-position:-1797px 0}.iti-flag.ge{height:14px;background-position:-1819px 0}.iti-flag.gf{height:14px;background-position:-1841px 0}.iti-flag.gg{height:14px;background-position:-1863px 0}.iti-flag.gh{height:14px;background-position:-1885px 0}.iti-flag.gi{height:10px;background-position:-1907px 0}.iti-flag.gl{height:14px;background-position:-1929px 0}.iti-flag.gm{height:14px;background-position:-1951px 0}.iti-flag.gn{height:14px;background-position:-1973px 0}.iti-flag.gp{height:14px;background-position:-1995px 0}.iti-flag.gq{height:14px;background-position:-2017px 0}.iti-flag.gr{height:14px;background-position:-2039px 0}.iti-flag.gs{height:10px;background-position:-2061px 0}.iti-flag.gt{height:13px;background-position:-2083px 0}.iti-flag.gu{height:11px;background-position:-2105px 0}.iti-flag.gw{height:10px;background-position:-2127px 0}.iti-flag.gy{height:12px;background-position:-2149px 0}.iti-flag.hk{height:14px;background-position:-2171px 0}.iti-flag.hm{height:10px;background-position:-2193px 0}.iti-flag.hn{height:10px;background-position:-2215px 0}.iti-flag.hr{height:10px;background-position:-2237px 0}.iti-flag.ht{height:12px;background-position:-2259px 0}.iti-flag.hu{height:10px;background-position:-2281px 0}.iti-flag.ic{height:14px;background-position:-2303px 0}.iti-flag.ia{height:14px;background-position:-2325px 0}.iti-flag.ie{height:10px;background-position:-2347px 0}.iti-flag.il{height:15px;background-position:-2369px 0}.iti-flag.im{height:10px;background-position:-2391px 0}.iti-flag.in{height:14px;background-position:-2413px 0}.iti-flag.io{height:10px;background-position:-2435px 0}.iti-flag.iq{height:14px;background-position:-2457px 0}.iti-flag.ir{height:12px;background-position:-2479px 0}.iti-flag.is{height:15px;background-position:-2501px 0}.iti-flag.it{height:14px;background-position:-2523px 0}.iti-flag.je{height:12px;background-position:-2545px 0}.iti-flag.jm{height:10px;background-position:-2567px 0}.iti-flag.jo{height:10px;background-position:-2589px 0}.iti-flag.jp{height:14px;background-position:-2611px 0}.iti-flag.ke{height:14px;background-position:-2633px 0}.iti-flag.kg{height:12px;background-position:-2655px 0}.iti-flag.kh{height:13px;background-position:-2677px 0}.iti-flag.ki{height:10px;background-position:-2699px 0}.iti-flag.km{height:12px;background-position:-2721px 0}.iti-flag.kn{height:14px;background-position:-2743px 0}.iti-flag.kp{height:10px;background-position:-2765px 0}.iti-flag.kr{height:14px;background-position:-2787px 0}.iti-flag.kw{height:10px;background-position:-2809px 0}.iti-flag.ky{height:10px;background-position:-2831px 0}.iti-flag.kz{height:10px;background-position:-2853px 0}.iti-flag.la{height:14px;background-position:-2875px 0}.iti-flag.lb{height:14px;background-position:-2897px 0}.iti-flag.lc{height:10px;background-position:-2919px 0}.iti-flag.li{height:12px;background-position:-2941px 0}.iti-flag.lk{height:10px;background-position:-2963px 0}.iti-flag.lr{height:11px;background-position:-2985px 0}.iti-flag.ls{height:14px;background-position:-3007px 0}.iti-flag.lt{height:12px;background-position:-3029px 0}.iti-flag.lu{height:12px;background-position:-3051px 0}.iti-flag.lv{height:10px;background-position:-3073px 0}.iti-flag.ly{height:10px;background-position:-3095px 0}.iti-flag.ma{height:14px;background-position:-3117px 0}.iti-flag.mc{height:15px;background-position:-3139px 0}.iti-flag.md{height:10px;background-position:-3160px 0}.iti-flag.me{height:10px;background-position:-3182px 0}.iti-flag.mf{height:14px;background-position:-3204px 0}.iti-flag.mg{height:14px;background-position:-3226px 0}.iti-flag.mh{height:11px;background-position:-3248px 0}.iti-flag.mk{height:10px;background-position:-3270px 0}.iti-flag.ml{height:14px;background-position:-3292px 0}.iti-flag.mm{height:14px;background-position:-3314px 0}.iti-flag.mn{height:10px;background-position:-3336px 0}.iti-flag.mo{height:14px;background-position:-3358px 0}.iti-flag.mp{height:10px;background-position:-3380px 0}.iti-flag.mq{height:14px;background-position:-3402px 0}.iti-flag.mr{height:14px;background-position:-3424px 0}.iti-flag.ms{height:10px;background-position:-3446px 0}.iti-flag.mt{height:14px;background-position:-3468px 0}.iti-flag.mu{height:14px;background-position:-3490px 0}.iti-flag.mv{height:14px;background-position:-3512px 0}.iti-flag.mw{height:14px;background-position:-3534px 0}.iti-flag.mx{height:12px;background-position:-3556px 0}.iti-flag.my{height:10px;background-position:-3578px 0}.iti-flag.mz{height:14px;background-position:-3600px 0}.iti-flag.na{height:14px;background-position:-3622px 0}.iti-flag.nc{height:10px;background-position:-3644px 0}.iti-flag.ne{height:15px;background-position:-3666px 0}.iti-flag.nf{height:10px;background-position:-3686px 0}.iti-flag.ng{height:10px;background-position:-3708px 0}.iti-flag.ni{height:12px;background-position:-3730px 0}.iti-flag.nl{height:14px;background-position:-3752px 0}.iti-flag.no{height:15px;background-position:-3774px 0}.iti-flag.np{height:15px;background-position:-3796px 0}.iti-flag.nr{height:10px;background-position:-3811px 0}.iti-flag.nu{height:10px;background-position:-3833px 0}.iti-flag.nz{height:10px;background-position:-3855px 0}.iti-flag.om{height:10px;background-position:-3877px 0}.iti-flag.pa{height:14px;background-position:-3899px 0}.iti-flag.pe{height:14px;background-position:-3921px 0}.iti-flag.pf{height:14px;background-position:-3943px 0}.iti-flag.pg{height:15px;background-position:-3965px 0}.iti-flag.ph{height:10px;background-position:-3987px 0}.iti-flag.pk{height:14px;background-position:-4009px 0}.iti-flag.pl{height:13px;background-position:-4031px 0}.iti-flag.pm{height:14px;background-position:-4053px 0}.iti-flag.pn{height:10px;background-position:-4075px 0}.iti-flag.pr{height:14px;background-position:-4097px 0}.iti-flag.ps{height:10px;background-position:-4119px 0}.iti-flag.pt{height:14px;background-position:-4141px 0}.iti-flag.pw{height:13px;background-position:-4163px 0}.iti-flag.py{height:11px;background-position:-4185px 0}.iti-flag.qa{height:8px;background-position:-4207px 0}.iti-flag.re{height:14px;background-position:-4229px 0}.iti-flag.ro{height:14px;background-position:-4251px 0}.iti-flag.rs{height:14px;background-position:-4273px 0}.iti-flag.ru{height:14px;background-position:-4295px 0}.iti-flag.rw{height:14px;background-position:-4317px 0}.iti-flag.sa{height:14px;background-position:-4339px 0}.iti-flag.sb{height:10px;background-position:-4361px 0}.iti-flag.sc{height:10px;background-position:-4383px 0}.iti-flag.sd{height:10px;background-position:-4405px 0}.iti-flag.se{height:13px;background-position:-4427px 0}.iti-flag.sg{height:14px;background-position:-4449px 0}.iti-flag.sh{height:10px;background-position:-4471px 0}.iti-flag.si{height:10px;background-position:-4493px 0}.iti-flag.sj{height:15px;background-position:-4515px 0}.iti-flag.sk{height:14px;background-position:-4537px 0}.iti-flag.sl{height:14px;background-position:-4559px 0}.iti-flag.sm{height:15px;background-position:-4581px 0}.iti-flag.sn{height:14px;background-position:-4603px 0}.iti-flag.so{height:14px;background-position:-4625px 0}.iti-flag.sr{height:14px;background-position:-4647px 0}.iti-flag.ss{height:10px;background-position:-4669px 0}.iti-flag.st{height:10px;background-position:-4691px 0}.iti-flag.sv{height:12px;background-position:-4713px 0}.iti-flag.sx{height:14px;background-position:-4735px 0}.iti-flag.sy{height:14px;background-position:-4757px 0}.iti-flag.sz{height:14px;background-position:-4779px 0}.iti-flag.ta{height:10px;background-position:-4801px 0}.iti-flag.tc{height:10px;background-position:-4823px 0}.iti-flag.td{height:14px;background-position:-4845px 0}.iti-flag.tf{height:14px;background-position:-4867px 0}.iti-flag.tg{height:13px;background-position:-4889px 0}.iti-flag.th{height:14px;background-position:-4911px 0}.iti-flag.tj{height:10px;background-position:-4933px 0}.iti-flag.tk{height:10px;background-position:-4955px 0}.iti-flag.tl{height:10px;background-position:-4977px 0}.iti-flag.tm{height:14px;background-position:-4999px 0}.iti-flag.tn{height:14px;background-position:-5021px 0}.iti-flag.to{height:10px;background-position:-5043px 0}.iti-flag.tr{height:14px;background-position:-5065px 0}.iti-flag.tt{height:12px;background-position:-5087px 0}.iti-flag.tv{height:10px;background-position:-5109px 0}.iti-flag.tw{height:14px;background-position:-5131px 0}.iti-flag.tz{height:14px;background-position:-5153px 0}.iti-flag.ua{height:14px;background-position:-5175px 0}.iti-flag.ug{height:14px;background-position:-5197px 0}.iti-flag.um{height:11px;background-position:-5219px 0}.iti-flag.us{height:11px;background-position:-5241px 0}.iti-flag.uy{height:14px;background-position:-5263px 0}.iti-flag.uz{height:10px;background-position:-5285px 0}.iti-flag.va{height:15px;background-position:-5307px 0}.iti-flag.vc{height:14px;background-position:-5324px 0}.iti-flag.ve{height:14px;background-position:-5346px 0}.iti-flag.vg{height:10px;background-position:-5368px 0}.iti-flag.vi{height:14px;background-position:-5390px 0}.iti-flag.vn{height:14px;background-position:-5412px 0}.iti-flag.vu{height:12px;background-position:-5434px 0}.iti-flag.wf{height:14px;background-position:-5456px 0}.iti-flag.ws{height:10px;background-position:-5478px 0}.iti-flag.xk{height:15px;background-position:-5500px 0}.iti-flag.ye{height:14px;background-position:-5522px 0}.iti-flag.yt{height:14px;background-position:-5544px 0}.iti-flag.za{height:14px;background-position:-5566px 0}.iti-flag.zm{height:14px;background-position:-5588px 0}.iti-flag.zw{height:10px;background-position:-5610px 0}.iti-flag{width:20px;height:15px;box-shadow:0 0 1px 0 #888;background-image:url(../images/flags.png);background-repeat:no-repeat;background-color:#dbdbdb;background-position:20px 0}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2 / 1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.iti-flag{background-image:url(../images/flags@2x.png)}}.iti-flag.np{background-color:transparent}/*! jQuery UI - v1.12.1 - 2020-11-29
2
  * http://jqueryui.com
3
  * Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
4
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
1
+ @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.wdsignature:before{content:"\f12e"}.wdstripe:before{content:"S";font-weight:bolder;font-size:13px!important}#manage_form .wd-header{padding:10px}#manage_form .wd-page-title #title{padding:3px 8px;font-size:1.5em;line-height:100%;height:1.5em;width:30%;outline:0;margin:0 0 3px;background-color:#fff}#fm_admin_container h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.field_options h2.hndle,.field_types_cont h2.hndle,.placeholders_cont h2.hndle{background-color:#f1f1f1}.field-types-filter_header{border:1px solid #eee}.field-types-filter,.placeholders-filter{webkit-box-shadow:0 1px 4px rgba(0,0,0,.07)!important;box-shadow:0 1px 4px rgba(0,0,0,.07)!important}#manage_form .first-time-use{background-color:#fff;border:1px dashed #0085ba;border-radius:3px;bottom:115px;color:#0085ba;display:none;font-size:14px;height:auto;padding:5px;right:0;width:250px;position:absolute;bottom:32px}#manage_form .first-time-use-close{background-color:#fff;border-radius:50%;box-sizing:content-box;cursor:pointer;font-size:17px;margin:0;padding:0;position:absolute;right:-9px;top:-9px}#manage_form .first-time-use-close:before{margin:1px 0 0 3px}#add_field{position:relative}.hide_number_arrow{-moz-appearance:textfield;line-height:normal!important}.hide_number_arrow::-webkit-inner-spin-button,.hide_number_arrow::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.fm-edit-content #add_field_cont{animation-duration:1.5s;animation-iteration-count:1;animation-fill-mode:both;color:#0085ba;position:absolute;top:10px;right:10px;min-width:50px;height:auto;width:initial;padding:0!important;z-index:10}#add_field_cont .wdform_field{display:table-cell;cursor:move;background-color:transparent!important;border:none;padding:0}#add_field_cont .add-new-button{cursor:move;padding:5px 15px 5px 5px;color:#fff;font-size:16px;line-height:16px;vertical-align:middle;font-weight:400;height:30px}#add_field_cont .add-new-button .fm-ico-draggable{padding:5px 5px 5px 15px;font-size:12px}@-webkit-keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);-ms-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);-ms-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);-ms-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.animated{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}.field_types .postbox button.wd-button.wd-pro-fields{background-color:#ccc;border-color:#ccc;box-shadow:0 1px 0 #ccc;text-shadow:0 -1px 1px #ccc,1px 0 1px #ccc,0 1px 1px #ccc,-1px 0 1px #ccc}.field_types .postbox h2.hndle,.placeholders .postbox h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.add-popup .postbox .inside{margin:12px 0 0 0}.add-popup .postbox .handlediv{margin:0}.postbox .handlediv{float:right}.postbox .hndle,.stuffbox .hndle{border-bottom:1px solid #ccd0d4}.js .postbox .hndle{cursor:pointer}.field_types .postbox,.placeholders .postbox{margin-bottom:0}.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{margin:5px 0;white-space:normal;width:48%;word-wrap:break-word;word-break:break-all;overflow:hidden;padding:8px;height:auto}.add-popup .field-types-filter,.placeholder-popup .placeholders-filter{line-height:25px;margin:15px;width:calc(100% - 45px);padding-left:30px;background-color:#f5f5f5}.add-popup .field-types-filter-cont,.placeholder-popup .placeholders-filter-cont{position:relative;height:25px;width:100%}.add-popup .field-types-filter-cont:before,.placeholder-popup .placeholders-filter-cont:before{font-family:Dashicons;content:"\f179";font-size:25px;height:25px;left:18px;position:absolute;top:0;width:25px;color:#757575}.hide{display:none}.fm-hide{display:none!important}.fm-hidden{visibility:hidden;height:0;display:block;border:none}.fm-add-new{cursor:pointer}.pagination-links a{cursor:pointer}#fm_admin_container .adminlist th{font-size:13px}#fm_admin_container .pagination-links .tablenav-pages-navspan,#fm_admin_container .pagination-links a,#fm_admin_container .pagination-links a span{font-size:initial}#fm_admin_container .search-box{margin-bottom:5px}#fm_admin_container .tablenav .tablenav-pages a,#fm_admin_container .tablenav-pages-navspan{min-width:28px;margin:0}div.wd-buttons{clear:both;display:inline-block;float:right;margin-top:2px}div.wd-buttons .wd-button{margin:0 3px}div .wd-button:last-child{margin-right:0}div .wd-button:first-child{margin-left:0}.wd-table{clear:both;display:table;margin:0;padding:10px 0;position:relative;table-layout:fixed;width:100%}.wd-table-col{display:table-cell;position:relative;vertical-align:top}.wd-table-col-50{width:50%}.wd-table-col-60{width:60%}.wd-table-col-70{width:70%}@media screen and (max-width:782px){.wd-table-col{display:block}.wd-table-col-50,.wd-table-col-60,.wd-table-col-70{width:100%;float:none}}.wd-table-col-100{width:100%}.wd-table-col-left .wd-box-section{margin-right:5px}.wd-table-col-right .wd-box-section{margin-left:5px}.wd-box-section{background-color:#fff;border:1px solid #e5e5e5;border-radius:6px;margin:5px 0}.wd-box-title{border-bottom:1px solid #eaeaea;height:inherit;margin:0;padding:15px 30px}.wd-box-content{overflow-wrap:break-word;padding:20px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.wd-box-content-shortcode{padding-top:0;padding-bottom:0}.wd-label{display:block;font-size:15px;font-weight:700;line-height:20px;margin-bottom:10px;padding:0}#form_email_options_tab_content .fm-row .wd-label-radio{width:auto}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;text-align:center;margin-left:8px;color:#fff}.fm-statCount{width:10%;text-align:left}@media screen and (max-width:782px){.fm-statCount{width:20%}}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.change_payment_status{margin:0 0 5px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:baseline}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-author{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}tbody tr td[data-colname="Payment Status"]{text-transform:capitalize!important}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-notice{display:flex;justify-content:space-between}.fm-notice-dismiss-button{border:none;margin:0;padding:9px;background:0 0;color:#72777c;cursor:pointer}.fm-error{color:#cc0c0c;margin-left:5px;font-weight:600}.fm-capture-loading{margin-left:5px}.fm-double-option-container{display:flex}.fm-option-wrapper1{width:calc(30% + .25rem + 16px);display:flex;justify-content:space-between}.fm-option-wrapper1 .fm-label-container,.fm-option-wrapper2 .fm-label-container{width:100%}.fm-option-wrapper2 .fm-label-container{text-align:end}.fm-option-wrapper2{width:calc(70% - .25rem - 16px);display:flex;justify-content:flex-end}.fm-option-wrapper1 .fm-input-container,.fm-option-wrapper2 .fm-input-container{width:unset}@media screen and (max-width:782px){.fm-option-wrapper1{width:calc(30% + .25rem + 25px)}.fm-option-wrapper2{width:calc(70% - .25rem - 25px)}}@media screen and (max-width:370px){.fm-option-wrapper2 .fm-label-container{text-align:start;width:65%}}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.ui-widget-content .fm-free-message-upgrade-button,.ui-widget-content .fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none}#fm-tabs .fm-free-message-promo-button,#fm-tabs .fm-free-message-promo-button:focus,.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px;color:#fff}.fm-promo-message{align-items:center;display:flex;flex-direction:column;padding:8px 20px}.fm-free-message-huge{font-size:30px;line-height:39px;margin:10px 0 0 0}.fm-head{margin-top:15px;text-align:center}.fm-head .fm-breadcrumbs li{display:inline-block;margin:0 10px 0 0;padding-top:10px;vertical-align:baseline}.fm-head .fm-breadcrumbs li:last-child{margin-right:0}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link{text-decoration:none;font-family:Roboto;font-weight:500;font-size:18px;color:#32373c}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link-active{color:#0073aa}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-upgrade{position:relative;top:.5px;display:inline-block;margin-left:10px;padding:1px 22px;background-color:#29b311;text-transform:uppercase;border-radius:10px;font-weight:700;font-size:12px;color:#fff}.fm-limitation-alert-container{display:flex;align-items:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100050}.fm-limitation-alert-overlay{background-color:#ffffffcc;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.fm-limitation-alert{background-color:#fff;box-shadow:#0000001a 0 0 10px;display:flex;flex-direction:column;color:#000;font-family:Roboto;justify-content:space-between;margin:0 auto;padding:30px 20px;position:relative;max-width:430px;max-height:311px;width:100%;height:100%;text-align:center}.fm-limitation-alert span.fm-ico-delete{cursor:pointer;position:absolute;top:10px;right:10px;color:#000;font-size:10px;opacity:.3}.fm-hidden{display:none}.fm-limitation-alert-header{color:#32373c;font-size:16px;font-weight:500;line-height:21px}.fm-limitation-alert-body{margin-top:20px}.fm-limitation-alert-body ul{display:inline-block;list-style:disc;text-align:left}.fm-limitation-alert-body ul li{font-size:16px;font-weight:700;line-height:26px}.fm-add-ons{display:flex;flex-wrap:wrap;justify-content:center;margin-top:20px;margin-bottom:10px;font-family:Roboto}.fm-add-ons .fm-add-on{max-width:300px;max-height:300px;width:100%;height:100%;margin-right:10px;margin-bottom:10px;padding:20px 20px 15px;transition-delay:0s;transition-duration:0s;transition-property:all;transition-timing-function:ease;background-color:#fff;border-radius:1px;text-align:center;font-family:Roboto;font-weight:300;font-size:16px;color:#323a45}.fm-add-ons .fm-add-on:hover{box-shadow:1px 1px 6px rgba(52,52,52,.16)}.fm-add-ons .fm-add-on .fm-add-on-img{width:72px;height:72px;margin:0 auto}.fm-add-ons .fm-add-on a{text-decoration:none}.fm-add-ons .fm-add-on .fm-add-on-name{margin:15px 0}.fm-add-ons .fm-add-on .fm-add-on-name,.fm-add-ons .fm-add-on .fm-add-on-name a{font-family:Roboto;font-weight:400;font-size:20px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-premium-version{margin:4px 0;height:16px;line-height:16px;font-weight:400;font-size:14px;color:#29b311}.fm-add-ons .fm-add-on .fm-add-on-desc{max-height:65px;height:100%;line-height:20px;font-size:16px}.fm-add-ons .fm-add-on .fm-add-on-desc-more-wrap{position:relative}.fm-add-ons .fm-add-on .fm-add-on-desc-more{position:absolute;z-index:1;left:0;bottom:65px;opacity:0;visibility:hidden;transition:opacity .4s linear;padding:10px 10px;background-color:#32373c;border-radius:6px;line-height:20px;font-weight:400;font-size:14px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-desc:hover+.fm-add-on-desc-more{opacity:1;visibility:visible}.fm-add-ons .fm-add-on .fm-add-on-buy{width:155px;height:30px;display:block;margin:10px auto;padding-top:7px;background-color:#0c4d68;border:.7px solid #0c4d68;border-radius:15px;line-height:16px;font-family:Roboto;font-weight:400;font-size:13px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-buy:hover{background-color:rgba(12,77,104,.8)}.fm-add-ons .fm-add-on.fm-add-on-activated .fm-add-on-buy{text-transform:uppercase;background-color:#fff;font-size:13px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-learn-more{line-height:16px;font-family:Roboto;font-weight:300;font-size:14px;color:#0073aa}.fm-add-ons .fm-add-on .fm-add-on-learn-more:hover{color:rgba(0,115,170,.8)}@media screen and (max-width:450px){.fm-topbar_cont{display:block}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{margin-left:0}}.intl-tel-input{position:relative;display:inline-block}.intl-tel-input *{box-sizing:border-box;-moz-box-sizing:border-box}.intl-tel-input .hide{display:none}.intl-tel-input .v-hide{visibility:hidden}.intl-tel-input input,.intl-tel-input input[type=tel],.intl-tel-input input[type=text]{position:relative;z-index:0;margin-top:0!important;margin-bottom:0!important;padding-right:36px;margin-right:0}.intl-tel-input .flag-container{position:absolute;top:0;bottom:0;right:0;padding:1px}.intl-tel-input .selected-flag{z-index:1;position:relative;width:36px;height:100%;padding:0 0 0 8px}.intl-tel-input .selected-flag .iti-flag{position:absolute;top:0;bottom:0;margin:auto}.intl-tel-input .selected-flag .iti-arrow{position:absolute;top:50%;margin-top:-2px;right:6px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.rtl .intl-tel-input .selected-flag .iti-arrow{left:6px;right:auto}.intl-tel-input .selected-flag .iti-arrow.up{border-top:none;border-bottom:4px solid #555}.intl-tel-input .country-list{position:absolute;z-index:2;list-style:none;text-align:left;padding:0;margin:0 0 0 -1px;box-shadow:1px 1px 4px rgba(0,0,0,.2);background-color:#fff;border:1px solid #ccc;white-space:nowrap;max-height:200px;overflow-y:scroll}.intl-tel-input .country-list.dropup{bottom:100%;margin-bottom:-1px}.intl-tel-input .country-list .flag-box{display:inline-block;width:20px}@media (max-width:500px){.intl-tel-input .country-list{white-space:normal}}.intl-tel-input .country-list .divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.intl-tel-input .country-list .country{padding:5px 10px}.intl-tel-input .country-list .country .dial-code{color:#999}.intl-tel-input .country-list .country.highlight{background-color:rgba(0,0,0,.05)}.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .dial-code,.intl-tel-input .country-list .flag-box{vertical-align:middle}.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .flag-box{margin-right:6px}.intl-tel-input.allow-dropdown input,.intl-tel-input.allow-dropdown input[type=tel],.intl-tel-input.allow-dropdown input[type=text],.intl-tel-input.separate-dial-code input,.intl-tel-input.separate-dial-code input[type=tel],.intl-tel-input.separate-dial-code input[type=text]{padding-right:6px;padding-left:52px;margin-left:0}.intl-tel-input.allow-dropdown .flag-container,.intl-tel-input.separate-dial-code .flag-container{right:auto;left:0}.rtl .intl-tel-input.allow-dropdown .flag-container,.rtl .intl-tel-input.separate-dial-code .flag-container{left:auto;right:0}.intl-tel-input.allow-dropdown .selected-flag,.intl-tel-input.separate-dial-code .selected-flag{width:46px}.intl-tel-input.allow-dropdown .flag-container:hover{cursor:pointer}.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag{background-color:rgba(0,0,0,.05)}.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover,.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover{cursor:default}.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover .selected-flag,.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover .selected-flag{background-color:transparent}.intl-tel-input.separate-dial-code .selected-flag{background-color:rgba(0,0,0,.05);display:table}.intl-tel-input.separate-dial-code .selected-dial-code{display:table-cell;vertical-align:middle;padding-left:28px}.intl-tel-input.separate-dial-code.iti-sdc-2 input,.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text]{padding-left:66px}.intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag{width:60px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text]{padding-left:76px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag{width:70px}.intl-tel-input.separate-dial-code.iti-sdc-3 input,.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text]{padding-left:74px}.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag{width:68px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text]{padding-left:84px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag{width:78px}.intl-tel-input.separate-dial-code.iti-sdc-4 input,.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text]{padding-left:82px}.intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag{width:76px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text]{padding-left:92px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag{width:86px}.intl-tel-input.separate-dial-code.iti-sdc-5 input,.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text]{padding-left:90px}.intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag{width:84px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text]{padding-left:100px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag{width:94px}.intl-tel-input.iti-container{position:absolute;top:-1000px;left:-1000px;z-index:1060;padding:1px}.intl-tel-input.iti-container:hover{cursor:pointer}.iti-mobile .intl-tel-input.iti-container{top:30px;bottom:30px;left:30px;right:30px;position:fixed}.iti-mobile .intl-tel-input .country-list{max-height:100%;width:100%}.iti-mobile .intl-tel-input .country-list .country{padding:10px 10px;line-height:1.5em}.iti-flag{width:20px}.iti-flag.be{width:18px}.iti-flag.ch{width:15px}.iti-flag.mc{width:19px}.iti-flag.ne{width:18px}.iti-flag.np{width:13px}.iti-flag.va{width:15px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2 / 1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.iti-flag{background-size:5630px 15px}}.iti-flag.ac{height:10px;background-position:0 0}.iti-flag.ad{height:14px;background-position:-22px 0}.iti-flag.ae{height:10px;background-position:-44px 0}.iti-flag.af{height:14px;background-position:-66px 0}.iti-flag.ag{height:14px;background-position:-88px 0}.iti-flag.ai{height:10px;background-position:-110px 0}.iti-flag.al{height:15px;background-position:-132px 0}.iti-flag.am{height:10px;background-position:-154px 0}.iti-flag.ao{height:14px;background-position:-176px 0}.iti-flag.aq{height:14px;background-position:-198px 0}.iti-flag.ar{height:13px;background-position:-220px 0}.iti-flag.as{height:10px;background-position:-242px 0}.iti-flag.at{height:14px;background-position:-264px 0}.iti-flag.au{height:10px;background-position:-286px 0}.iti-flag.aw{height:14px;background-position:-308px 0}.iti-flag.ax{height:13px;background-position:-330px 0}.iti-flag.az{height:10px;background-position:-352px 0}.iti-flag.ba{height:10px;background-position:-374px 0}.iti-flag.bb{height:14px;background-position:-396px 0}.iti-flag.bd{height:12px;background-position:-418px 0}.iti-flag.be{height:15px;background-position:-440px 0}.iti-flag.bf{height:14px;background-position:-460px 0}.iti-flag.bg{height:12px;background-position:-482px 0}.iti-flag.bh{height:12px;background-position:-504px 0}.iti-flag.bi{height:12px;background-position:-526px 0}.iti-flag.bj{height:14px;background-position:-548px 0}.iti-flag.bl{height:14px;background-position:-570px 0}.iti-flag.bm{height:10px;background-position:-592px 0}.iti-flag.bn{height:10px;background-position:-614px 0}.iti-flag.bo{height:14px;background-position:-636px 0}.iti-flag.bq{height:14px;background-position:-658px 0}.iti-flag.br{height:14px;background-position:-680px 0}.iti-flag.bs{height:10px;background-position:-702px 0}.iti-flag.bt{height:14px;background-position:-724px 0}.iti-flag.bv{height:15px;background-position:-746px 0}.iti-flag.bw{height:14px;background-position:-768px 0}.iti-flag.by{height:10px;background-position:-790px 0}.iti-flag.bz{height:14px;background-position:-812px 0}.iti-flag.ca{height:10px;background-position:-834px 0}.iti-flag.cc{height:10px;background-position:-856px 0}.iti-flag.cd{height:15px;background-position:-878px 0}.iti-flag.cf{height:14px;background-position:-900px 0}.iti-flag.cg{height:14px;background-position:-922px 0}.iti-flag.ch{height:15px;background-position:-944px 0}.iti-flag.ci{height:14px;background-position:-961px 0}.iti-flag.ck{height:10px;background-position:-983px 0}.iti-flag.cl{height:14px;background-position:-1005px 0}.iti-flag.cm{height:14px;background-position:-1027px 0}.iti-flag.cn{height:14px;background-position:-1049px 0}.iti-flag.co{height:14px;background-position:-1071px 0}.iti-flag.cp{height:14px;background-position:-1093px 0}.iti-flag.cr{height:12px;background-position:-1115px 0}.iti-flag.cu{height:10px;background-position:-1137px 0}.iti-flag.cv{height:12px;background-position:-1159px 0}.iti-flag.cw{height:14px;background-position:-1181px 0}.iti-flag.cx{height:10px;background-position:-1203px 0}.iti-flag.cy{height:13px;background-position:-1225px 0}.iti-flag.cz{height:14px;background-position:-1247px 0}.iti-flag.de{height:12px;background-position:-1269px 0}.iti-flag.dg{height:10px;background-position:-1291px 0}.iti-flag.dj{height:14px;background-position:-1313px 0}.iti-flag.dk{height:15px;background-position:-1335px 0}.iti-flag.dm{height:10px;background-position:-1357px 0}.iti-flag.do{height:13px;background-position:-1379px 0}.iti-flag.dz{height:14px;background-position:-1401px 0}.iti-flag.ea{height:14px;background-position:-1423px 0}.iti-flag.ec{height:14px;background-position:-1445px 0}.iti-flag.ee{height:13px;background-position:-1467px 0}.iti-flag.eg{height:14px;background-position:-1489px 0}.iti-flag.eh{height:10px;background-position:-1511px 0}.iti-flag.er{height:10px;background-position:-1533px 0}.iti-flag.es{height:14px;background-position:-1555px 0}.iti-flag.et{height:10px;background-position:-1577px 0}.iti-flag.eu{height:14px;background-position:-1599px 0}.iti-flag.fi{height:12px;background-position:-1621px 0}.iti-flag.fj{height:10px;background-position:-1643px 0}.iti-flag.fk{height:10px;background-position:-1665px 0}.iti-flag.fm{height:11px;background-position:-1687px 0}.iti-flag.fo{height:15px;background-position:-1709px 0}.iti-flag.fr{height:14px;background-position:-1731px 0}.iti-flag.ga{height:15px;background-position:-1753px 0}.iti-flag.gb{height:10px;background-position:-1775px 0}.iti-flag.gd{height:12px;background-position:-1797px 0}.iti-flag.ge{height:14px;background-position:-1819px 0}.iti-flag.gf{height:14px;background-position:-1841px 0}.iti-flag.gg{height:14px;background-position:-1863px 0}.iti-flag.gh{height:14px;background-position:-1885px 0}.iti-flag.gi{height:10px;background-position:-1907px 0}.iti-flag.gl{height:14px;background-position:-1929px 0}.iti-flag.gm{height:14px;background-position:-1951px 0}.iti-flag.gn{height:14px;background-position:-1973px 0}.iti-flag.gp{height:14px;background-position:-1995px 0}.iti-flag.gq{height:14px;background-position:-2017px 0}.iti-flag.gr{height:14px;background-position:-2039px 0}.iti-flag.gs{height:10px;background-position:-2061px 0}.iti-flag.gt{height:13px;background-position:-2083px 0}.iti-flag.gu{height:11px;background-position:-2105px 0}.iti-flag.gw{height:10px;background-position:-2127px 0}.iti-flag.gy{height:12px;background-position:-2149px 0}.iti-flag.hk{height:14px;background-position:-2171px 0}.iti-flag.hm{height:10px;background-position:-2193px 0}.iti-flag.hn{height:10px;background-position:-2215px 0}.iti-flag.hr{height:10px;background-position:-2237px 0}.iti-flag.ht{height:12px;background-position:-2259px 0}.iti-flag.hu{height:10px;background-position:-2281px 0}.iti-flag.ic{height:14px;background-position:-2303px 0}.iti-flag.ia{height:14px;background-position:-2325px 0}.iti-flag.ie{height:10px;background-position:-2347px 0}.iti-flag.il{height:15px;background-position:-2369px 0}.iti-flag.im{height:10px;background-position:-2391px 0}.iti-flag.in{height:14px;background-position:-2413px 0}.iti-flag.io{height:10px;background-position:-2435px 0}.iti-flag.iq{height:14px;background-position:-2457px 0}.iti-flag.ir{height:12px;background-position:-2479px 0}.iti-flag.is{height:15px;background-position:-2501px 0}.iti-flag.it{height:14px;background-position:-2523px 0}.iti-flag.je{height:12px;background-position:-2545px 0}.iti-flag.jm{height:10px;background-position:-2567px 0}.iti-flag.jo{height:10px;background-position:-2589px 0}.iti-flag.jp{height:14px;background-position:-2611px 0}.iti-flag.ke{height:14px;background-position:-2633px 0}.iti-flag.kg{height:12px;background-position:-2655px 0}.iti-flag.kh{height:13px;background-position:-2677px 0}.iti-flag.ki{height:10px;background-position:-2699px 0}.iti-flag.km{height:12px;background-position:-2721px 0}.iti-flag.kn{height:14px;background-position:-2743px 0}.iti-flag.kp{height:10px;background-position:-2765px 0}.iti-flag.kr{height:14px;background-position:-2787px 0}.iti-flag.kw{height:10px;background-position:-2809px 0}.iti-flag.ky{height:10px;background-position:-2831px 0}.iti-flag.kz{height:10px;background-position:-2853px 0}.iti-flag.la{height:14px;background-position:-2875px 0}.iti-flag.lb{height:14px;background-position:-2897px 0}.iti-flag.lc{height:10px;background-position:-2919px 0}.iti-flag.li{height:12px;background-position:-2941px 0}.iti-flag.lk{height:10px;background-position:-2963px 0}.iti-flag.lr{height:11px;background-position:-2985px 0}.iti-flag.ls{height:14px;background-position:-3007px 0}.iti-flag.lt{height:12px;background-position:-3029px 0}.iti-flag.lu{height:12px;background-position:-3051px 0}.iti-flag.lv{height:10px;background-position:-3073px 0}.iti-flag.ly{height:10px;background-position:-3095px 0}.iti-flag.ma{height:14px;background-position:-3117px 0}.iti-flag.mc{height:15px;background-position:-3139px 0}.iti-flag.md{height:10px;background-position:-3160px 0}.iti-flag.me{height:10px;background-position:-3182px 0}.iti-flag.mf{height:14px;background-position:-3204px 0}.iti-flag.mg{height:14px;background-position:-3226px 0}.iti-flag.mh{height:11px;background-position:-3248px 0}.iti-flag.mk{height:10px;background-position:-3270px 0}.iti-flag.ml{height:14px;background-position:-3292px 0}.iti-flag.mm{height:14px;background-position:-3314px 0}.iti-flag.mn{height:10px;background-position:-3336px 0}.iti-flag.mo{height:14px;background-position:-3358px 0}.iti-flag.mp{height:10px;background-position:-3380px 0}.iti-flag.mq{height:14px;background-position:-3402px 0}.iti-flag.mr{height:14px;background-position:-3424px 0}.iti-flag.ms{height:10px;background-position:-3446px 0}.iti-flag.mt{height:14px;background-position:-3468px 0}.iti-flag.mu{height:14px;background-position:-3490px 0}.iti-flag.mv{height:14px;background-position:-3512px 0}.iti-flag.mw{height:14px;background-position:-3534px 0}.iti-flag.mx{height:12px;background-position:-3556px 0}.iti-flag.my{height:10px;background-position:-3578px 0}.iti-flag.mz{height:14px;background-position:-3600px 0}.iti-flag.na{height:14px;background-position:-3622px 0}.iti-flag.nc{height:10px;background-position:-3644px 0}.iti-flag.ne{height:15px;background-position:-3666px 0}.iti-flag.nf{height:10px;background-position:-3686px 0}.iti-flag.ng{height:10px;background-position:-3708px 0}.iti-flag.ni{height:12px;background-position:-3730px 0}.iti-flag.nl{height:14px;background-position:-3752px 0}.iti-flag.no{height:15px;background-position:-3774px 0}.iti-flag.np{height:15px;background-position:-3796px 0}.iti-flag.nr{height:10px;background-position:-3811px 0}.iti-flag.nu{height:10px;background-position:-3833px 0}.iti-flag.nz{height:10px;background-position:-3855px 0}.iti-flag.om{height:10px;background-position:-3877px 0}.iti-flag.pa{height:14px;background-position:-3899px 0}.iti-flag.pe{height:14px;background-position:-3921px 0}.iti-flag.pf{height:14px;background-position:-3943px 0}.iti-flag.pg{height:15px;background-position:-3965px 0}.iti-flag.ph{height:10px;background-position:-3987px 0}.iti-flag.pk{height:14px;background-position:-4009px 0}.iti-flag.pl{height:13px;background-position:-4031px 0}.iti-flag.pm{height:14px;background-position:-4053px 0}.iti-flag.pn{height:10px;background-position:-4075px 0}.iti-flag.pr{height:14px;background-position:-4097px 0}.iti-flag.ps{height:10px;background-position:-4119px 0}.iti-flag.pt{height:14px;background-position:-4141px 0}.iti-flag.pw{height:13px;background-position:-4163px 0}.iti-flag.py{height:11px;background-position:-4185px 0}.iti-flag.qa{height:8px;background-position:-4207px 0}.iti-flag.re{height:14px;background-position:-4229px 0}.iti-flag.ro{height:14px;background-position:-4251px 0}.iti-flag.rs{height:14px;background-position:-4273px 0}.iti-flag.ru{height:14px;background-position:-4295px 0}.iti-flag.rw{height:14px;background-position:-4317px 0}.iti-flag.sa{height:14px;background-position:-4339px 0}.iti-flag.sb{height:10px;background-position:-4361px 0}.iti-flag.sc{height:10px;background-position:-4383px 0}.iti-flag.sd{height:10px;background-position:-4405px 0}.iti-flag.se{height:13px;background-position:-4427px 0}.iti-flag.sg{height:14px;background-position:-4449px 0}.iti-flag.sh{height:10px;background-position:-4471px 0}.iti-flag.si{height:10px;background-position:-4493px 0}.iti-flag.sj{height:15px;background-position:-4515px 0}.iti-flag.sk{height:14px;background-position:-4537px 0}.iti-flag.sl{height:14px;background-position:-4559px 0}.iti-flag.sm{height:15px;background-position:-4581px 0}.iti-flag.sn{height:14px;background-position:-4603px 0}.iti-flag.so{height:14px;background-position:-4625px 0}.iti-flag.sr{height:14px;background-position:-4647px 0}.iti-flag.ss{height:10px;background-position:-4669px 0}.iti-flag.st{height:10px;background-position:-4691px 0}.iti-flag.sv{height:12px;background-position:-4713px 0}.iti-flag.sx{height:14px;background-position:-4735px 0}.iti-flag.sy{height:14px;background-position:-4757px 0}.iti-flag.sz{height:14px;background-position:-4779px 0}.iti-flag.ta{height:10px;background-position:-4801px 0}.iti-flag.tc{height:10px;background-position:-4823px 0}.iti-flag.td{height:14px;background-position:-4845px 0}.iti-flag.tf{height:14px;background-position:-4867px 0}.iti-flag.tg{height:13px;background-position:-4889px 0}.iti-flag.th{height:14px;background-position:-4911px 0}.iti-flag.tj{height:10px;background-position:-4933px 0}.iti-flag.tk{height:10px;background-position:-4955px 0}.iti-flag.tl{height:10px;background-position:-4977px 0}.iti-flag.tm{height:14px;background-position:-4999px 0}.iti-flag.tn{height:14px;background-position:-5021px 0}.iti-flag.to{height:10px;background-position:-5043px 0}.iti-flag.tr{height:14px;background-position:-5065px 0}.iti-flag.tt{height:12px;background-position:-5087px 0}.iti-flag.tv{height:10px;background-position:-5109px 0}.iti-flag.tw{height:14px;background-position:-5131px 0}.iti-flag.tz{height:14px;background-position:-5153px 0}.iti-flag.ua{height:14px;background-position:-5175px 0}.iti-flag.ug{height:14px;background-position:-5197px 0}.iti-flag.um{height:11px;background-position:-5219px 0}.iti-flag.us{height:11px;background-position:-5241px 0}.iti-flag.uy{height:14px;background-position:-5263px 0}.iti-flag.uz{height:10px;background-position:-5285px 0}.iti-flag.va{height:15px;background-position:-5307px 0}.iti-flag.vc{height:14px;background-position:-5324px 0}.iti-flag.ve{height:14px;background-position:-5346px 0}.iti-flag.vg{height:10px;background-position:-5368px 0}.iti-flag.vi{height:14px;background-position:-5390px 0}.iti-flag.vn{height:14px;background-position:-5412px 0}.iti-flag.vu{height:12px;background-position:-5434px 0}.iti-flag.wf{height:14px;background-position:-5456px 0}.iti-flag.ws{height:10px;background-position:-5478px 0}.iti-flag.xk{height:15px;background-position:-5500px 0}.iti-flag.ye{height:14px;background-position:-5522px 0}.iti-flag.yt{height:14px;background-position:-5544px 0}.iti-flag.za{height:14px;background-position:-5566px 0}.iti-flag.zm{height:14px;background-position:-5588px 0}.iti-flag.zw{height:10px;background-position:-5610px 0}.iti-flag{width:20px;height:15px;box-shadow:0 0 1px 0 #888;background-image:url(../images/flags.png);background-repeat:no-repeat;background-color:#dbdbdb;background-position:20px 0}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2 / 1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.iti-flag{background-image:url(../images/flags@2x.png)}}.iti-flag.np{background-color:transparent}/*! jQuery UI - v1.12.1 - 2020-11-29
2
  * http://jqueryui.com
3
  * Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
4
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
css/manage-styles.min.css CHANGED
@@ -1 +1 @@
1
- @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.wdsignature:before{content:"\f12e"}.wdstripe:before{content:"S";font-weight:bolder;font-size:13px!important}#manage_form .wd-header{padding:10px}#manage_form .wd-page-title #title{padding:3px 8px;font-size:1.5em;line-height:100%;height:1.5em;width:30%;outline:0;margin:0 0 3px;background-color:#fff}#fm_admin_container h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.field_options h2.hndle,.field_types_cont h2.hndle,.placeholders_cont h2.hndle{background-color:#f1f1f1}.field-types-filter_header{border:1px solid #eee}.field-types-filter,.placeholders-filter{webkit-box-shadow:0 1px 4px rgba(0,0,0,.07)!important;box-shadow:0 1px 4px rgba(0,0,0,.07)!important}#manage_form .first-time-use{background-color:#fff;border:1px dashed #0085ba;border-radius:3px;bottom:115px;color:#0085ba;display:none;font-size:14px;height:auto;padding:5px;right:0;width:250px;position:absolute;bottom:32px}#manage_form .first-time-use-close{background-color:#fff;border-radius:50%;box-sizing:content-box;cursor:pointer;font-size:17px;margin:0;padding:0;position:absolute;right:-9px;top:-9px}#manage_form .first-time-use-close:before{margin:1px 0 0 3px}#add_field{position:relative}.hide_number_arrow{-moz-appearance:textfield;line-height:normal!important}.hide_number_arrow::-webkit-inner-spin-button,.hide_number_arrow::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.fm-edit-content #add_field_cont{animation-duration:1.5s;animation-iteration-count:1;animation-fill-mode:both;color:#0085ba;position:absolute;top:10px;right:10px;min-width:50px;height:auto;width:initial;padding:0!important;z-index:10}#add_field_cont .wdform_field{display:table-cell;cursor:move;background-color:transparent!important;border:none;padding:0}#add_field_cont .add-new-button{cursor:move;padding:5px 15px 5px 5px;color:#fff;font-size:16px;line-height:16px;vertical-align:middle;font-weight:400;height:30px}#add_field_cont .add-new-button .fm-ico-draggable{padding:5px 5px 5px 15px;font-size:12px}@-webkit-keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);-ms-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);-ms-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);-ms-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.animated{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}.field_types .postbox button.wd-button.wd-pro-fields{background-color:#ccc;border-color:#ccc;box-shadow:0 1px 0 #ccc;text-shadow:0 -1px 1px #ccc,1px 0 1px #ccc,0 1px 1px #ccc,-1px 0 1px #ccc}.field_types .postbox h2.hndle,.placeholders .postbox h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.add-popup .postbox .inside{margin:12px 0 0 0}.add-popup .postbox .handlediv{margin:0}.postbox .handlediv{float:right}.postbox .hndle,.stuffbox .hndle{border-bottom:1px solid #ccd0d4}.js .postbox .hndle{cursor:pointer}.field_types .postbox,.placeholders .postbox{margin-bottom:0}.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{margin:5px 0;white-space:normal;width:48%;word-wrap:break-word;word-break:break-all;overflow:hidden;padding:8px;height:auto}.add-popup .field-types-filter,.placeholder-popup .placeholders-filter{line-height:25px;margin:15px;width:calc(100% - 45px);padding-left:30px;background-color:#f5f5f5}.add-popup .field-types-filter-cont,.placeholder-popup .placeholders-filter-cont{position:relative;height:25px;width:100%}.add-popup .field-types-filter-cont:before,.placeholder-popup .placeholders-filter-cont:before{font-family:Dashicons;content:"\f179";font-size:25px;height:25px;left:18px;position:absolute;top:0;width:25px;color:#757575}.hide{display:none}.fm-hide{display:none!important}.fm-hidden{visibility:hidden;height:0;display:block;border:none}.fm-add-new{cursor:pointer}.pagination-links a{cursor:pointer}#fm_admin_container .adminlist th{font-size:13px}#fm_admin_container .pagination-links .tablenav-pages-navspan,#fm_admin_container .pagination-links a,#fm_admin_container .pagination-links a span{font-size:initial}#fm_admin_container .search-box{margin-bottom:5px}#fm_admin_container .tablenav .tablenav-pages a,#fm_admin_container .tablenav-pages-navspan{min-width:28px;margin:0}div.wd-buttons{clear:both;display:inline-block;float:right;margin-top:2px}div.wd-buttons .wd-button{margin:0 3px}div .wd-button:last-child{margin-right:0}div .wd-button:first-child{margin-left:0}.wd-table{clear:both;display:table;margin:0;padding:10px 0;position:relative;table-layout:fixed;width:100%}.wd-table-col{display:table-cell;position:relative;vertical-align:top}.wd-table-col-50{width:50%}.wd-table-col-60{width:60%}.wd-table-col-70{width:70%}@media screen and (max-width:782px){.wd-table-col{display:block}.wd-table-col-50,.wd-table-col-60,.wd-table-col-70{width:100%;float:none}}.wd-table-col-100{width:100%}.wd-table-col-left .wd-box-section{margin-right:5px}.wd-table-col-right .wd-box-section{margin-left:5px}.wd-box-section{background-color:#fff;border:1px solid #e5e5e5;border-radius:6px;margin:5px 0}.wd-box-title{border-bottom:1px solid #eaeaea;height:inherit;margin:0;padding:15px 30px}.wd-box-content{overflow-wrap:break-word;padding:20px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.wd-box-content-shortcode{padding-top:0;padding-bottom:0}.wd-label{display:block;font-size:15px;font-weight:700;line-height:20px;margin-bottom:10px;padding:0}#form_email_options_tab_content .fm-row .wd-label-radio{width:auto}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:26px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-notice{display:flex;justify-content:space-between}.fm-notice-dismiss-button{border:none;margin:0;padding:9px;background:0 0;color:#72777c;cursor:pointer}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.fm-free-message-upgrade-button,.fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}#fm-tabs .fm-free-message-promo-button,#fm-tabs .fm-free-message-promo-button:focus,.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px;color:#fff}.fm-promo-message{align-items:center;display:flex;flex-direction:column;padding:8px 20px}.fm-free-message-huge{font-size:30px;line-height:39px;margin:10px 0 0 0}.fm-head{margin-top:15px;text-align:center}.fm-head .fm-breadcrumbs li{display:inline-block;margin:0 10px 0 0;padding-top:10px;vertical-align:baseline}.fm-head .fm-breadcrumbs li:last-child{margin-right:0}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link{text-decoration:none;font-family:Roboto;font-weight:500;font-size:18px;color:#32373c}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link-active{color:#0073aa}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-upgrade{position:relative;top:.5px;display:inline-block;margin-left:10px;padding:1px 22px;background-color:#29b311;text-transform:uppercase;border-radius:10px;font-weight:700;font-size:12px;color:#fff}.fm-limitation-alert-container{display:flex;align-items:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100050}.fm-limitation-alert-overlay{background-color:#ffffffcc;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.fm-limitation-alert{background-color:#fff;box-shadow:#0000001a 0 0 10px;display:flex;flex-direction:column;color:#000;font-family:Roboto;justify-content:space-between;margin:0 auto;padding:30px 20px;position:relative;max-width:430px;max-height:311px;width:100%;height:100%;text-align:center}.fm-limitation-alert span.fm-ico-delete{cursor:pointer;position:absolute;top:10px;right:10px;color:#000;font-size:10px;opacity:.3}.fm-hidden{display:none}.fm-limitation-alert-header{color:#32373c;font-size:16px;font-weight:500;line-height:21px}.fm-limitation-alert-body{margin-top:20px}.fm-limitation-alert-body ul{display:inline-block;list-style:disc;text-align:left}.fm-limitation-alert-body ul li{font-size:16px;font-weight:700;line-height:26px}.fm-add-ons{display:flex;flex-wrap:wrap;justify-content:center;margin-top:20px;margin-bottom:10px;font-family:Roboto}.fm-add-ons .fm-add-on{max-width:300px;max-height:300px;width:100%;height:100%;margin-right:10px;margin-bottom:10px;padding:20px 20px 15px;transition-delay:0s;transition-duration:0s;transition-property:all;transition-timing-function:ease;background-color:#fff;border-radius:1px;text-align:center;font-family:Roboto;font-weight:300;font-size:16px;color:#323a45}.fm-add-ons .fm-add-on:hover{box-shadow:1px 1px 6px rgba(52,52,52,.16)}.fm-add-ons .fm-add-on .fm-add-on-img{width:72px;height:72px;margin:0 auto}.fm-add-ons .fm-add-on a{text-decoration:none}.fm-add-ons .fm-add-on .fm-add-on-name{margin:15px 0}.fm-add-ons .fm-add-on .fm-add-on-name,.fm-add-ons .fm-add-on .fm-add-on-name a{font-family:Roboto;font-weight:400;font-size:20px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-premium-version{margin:4px 0;height:16px;line-height:16px;font-weight:400;font-size:14px;color:#29b311}.fm-add-ons .fm-add-on .fm-add-on-desc{max-height:65px;height:100%;line-height:20px;font-size:16px}.fm-add-ons .fm-add-on .fm-add-on-desc-more-wrap{position:relative}.fm-add-ons .fm-add-on .fm-add-on-desc-more{position:absolute;z-index:1;left:0;bottom:65px;opacity:0;visibility:hidden;transition:opacity .4s linear;padding:10px 10px;background-color:#32373c;border-radius:6px;line-height:20px;font-weight:400;font-size:14px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-desc:hover+.fm-add-on-desc-more{opacity:1;visibility:visible}.fm-add-ons .fm-add-on .fm-add-on-buy{width:155px;height:30px;display:block;margin:10px auto;padding-top:7px;background-color:#0c4d68;border:.7px solid #0c4d68;border-radius:15px;line-height:16px;font-family:Roboto;font-weight:400;font-size:13px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-buy:hover{background-color:rgba(12,77,104,.8)}.fm-add-ons .fm-add-on.fm-add-on-activated .fm-add-on-buy{text-transform:uppercase;background-color:#fff;font-size:13px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-learn-more{line-height:16px;font-family:Roboto;font-weight:300;font-size:14px;color:#0073aa}.fm-add-ons .fm-add-on .fm-add-on-learn-more:hover{color:rgba(0,115,170,.8)}@media screen and (max-width:450px){.fm-topbar_cont{display:block}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{margin-left:0}}
1
+ @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.wdsignature:before{content:"\f12e"}.wdstripe:before{content:"S";font-weight:bolder;font-size:13px!important}#manage_form .wd-header{padding:10px}#manage_form .wd-page-title #title{padding:3px 8px;font-size:1.5em;line-height:100%;height:1.5em;width:30%;outline:0;margin:0 0 3px;background-color:#fff}#fm_admin_container h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.field_options h2.hndle,.field_types_cont h2.hndle,.placeholders_cont h2.hndle{background-color:#f1f1f1}.field-types-filter_header{border:1px solid #eee}.field-types-filter,.placeholders-filter{webkit-box-shadow:0 1px 4px rgba(0,0,0,.07)!important;box-shadow:0 1px 4px rgba(0,0,0,.07)!important}#manage_form .first-time-use{background-color:#fff;border:1px dashed #0085ba;border-radius:3px;bottom:115px;color:#0085ba;display:none;font-size:14px;height:auto;padding:5px;right:0;width:250px;position:absolute;bottom:32px}#manage_form .first-time-use-close{background-color:#fff;border-radius:50%;box-sizing:content-box;cursor:pointer;font-size:17px;margin:0;padding:0;position:absolute;right:-9px;top:-9px}#manage_form .first-time-use-close:before{margin:1px 0 0 3px}#add_field{position:relative}.hide_number_arrow{-moz-appearance:textfield;line-height:normal!important}.hide_number_arrow::-webkit-inner-spin-button,.hide_number_arrow::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.fm-edit-content #add_field_cont{animation-duration:1.5s;animation-iteration-count:1;animation-fill-mode:both;color:#0085ba;position:absolute;top:10px;right:10px;min-width:50px;height:auto;width:initial;padding:0!important;z-index:10}#add_field_cont .wdform_field{display:table-cell;cursor:move;background-color:transparent!important;border:none;padding:0}#add_field_cont .add-new-button{cursor:move;padding:5px 15px 5px 5px;color:#fff;font-size:16px;line-height:16px;vertical-align:middle;font-weight:400;height:30px}#add_field_cont .add-new-button .fm-ico-draggable{padding:5px 5px 5px 15px;font-size:12px}@-webkit-keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);-ms-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);-ms-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);-ms-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.animated{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}.field_types .postbox button.wd-button.wd-pro-fields{background-color:#ccc;border-color:#ccc;box-shadow:0 1px 0 #ccc;text-shadow:0 -1px 1px #ccc,1px 0 1px #ccc,0 1px 1px #ccc,-1px 0 1px #ccc}.field_types .postbox h2.hndle,.placeholders .postbox h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.add-popup .postbox .inside{margin:12px 0 0 0}.add-popup .postbox .handlediv{margin:0}.postbox .handlediv{float:right}.postbox .hndle,.stuffbox .hndle{border-bottom:1px solid #ccd0d4}.js .postbox .hndle{cursor:pointer}.field_types .postbox,.placeholders .postbox{margin-bottom:0}.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{margin:5px 0;white-space:normal;width:48%;word-wrap:break-word;word-break:break-all;overflow:hidden;padding:8px;height:auto}.add-popup .field-types-filter,.placeholder-popup .placeholders-filter{line-height:25px;margin:15px;width:calc(100% - 45px);padding-left:30px;background-color:#f5f5f5}.add-popup .field-types-filter-cont,.placeholder-popup .placeholders-filter-cont{position:relative;height:25px;width:100%}.add-popup .field-types-filter-cont:before,.placeholder-popup .placeholders-filter-cont:before{font-family:Dashicons;content:"\f179";font-size:25px;height:25px;left:18px;position:absolute;top:0;width:25px;color:#757575}.hide{display:none}.fm-hide{display:none!important}.fm-hidden{visibility:hidden;height:0;display:block;border:none}.fm-add-new{cursor:pointer}.pagination-links a{cursor:pointer}#fm_admin_container .adminlist th{font-size:13px}#fm_admin_container .pagination-links .tablenav-pages-navspan,#fm_admin_container .pagination-links a,#fm_admin_container .pagination-links a span{font-size:initial}#fm_admin_container .search-box{margin-bottom:5px}#fm_admin_container .tablenav .tablenav-pages a,#fm_admin_container .tablenav-pages-navspan{min-width:28px;margin:0}div.wd-buttons{clear:both;display:inline-block;float:right;margin-top:2px}div.wd-buttons .wd-button{margin:0 3px}div .wd-button:last-child{margin-right:0}div .wd-button:first-child{margin-left:0}.wd-table{clear:both;display:table;margin:0;padding:10px 0;position:relative;table-layout:fixed;width:100%}.wd-table-col{display:table-cell;position:relative;vertical-align:top}.wd-table-col-50{width:50%}.wd-table-col-60{width:60%}.wd-table-col-70{width:70%}@media screen and (max-width:782px){.wd-table-col{display:block}.wd-table-col-50,.wd-table-col-60,.wd-table-col-70{width:100%;float:none}}.wd-table-col-100{width:100%}.wd-table-col-left .wd-box-section{margin-right:5px}.wd-table-col-right .wd-box-section{margin-left:5px}.wd-box-section{background-color:#fff;border:1px solid #e5e5e5;border-radius:6px;margin:5px 0}.wd-box-title{border-bottom:1px solid #eaeaea;height:inherit;margin:0;padding:15px 30px}.wd-box-content{overflow-wrap:break-word;padding:20px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.wd-box-content-shortcode{padding-top:0;padding-bottom:0}.wd-label{display:block;font-size:15px;font-weight:700;line-height:20px;margin-bottom:10px;padding:0}#form_email_options_tab_content .fm-row .wd-label-radio{width:auto}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;text-align:center;margin-left:8px;color:#fff}.fm-statCount{width:10%;text-align:left}@media screen and (max-width:782px){.fm-statCount{width:20%}}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.change_payment_status{margin:0 0 5px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:baseline}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-author{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}tbody tr td[data-colname="Payment Status"]{text-transform:capitalize!important}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-notice{display:flex;justify-content:space-between}.fm-notice-dismiss-button{border:none;margin:0;padding:9px;background:0 0;color:#72777c;cursor:pointer}.fm-error{color:#cc0c0c;margin-left:5px;font-weight:600}.fm-capture-loading{margin-left:5px}.fm-double-option-container{display:flex}.fm-option-wrapper1{width:calc(30% + .25rem + 16px);display:flex;justify-content:space-between}.fm-option-wrapper1 .fm-label-container,.fm-option-wrapper2 .fm-label-container{width:100%}.fm-option-wrapper2 .fm-label-container{text-align:end}.fm-option-wrapper2{width:calc(70% - .25rem - 16px);display:flex;justify-content:flex-end}.fm-option-wrapper1 .fm-input-container,.fm-option-wrapper2 .fm-input-container{width:unset}@media screen and (max-width:782px){.fm-option-wrapper1{width:calc(30% + .25rem + 25px)}.fm-option-wrapper2{width:calc(70% - .25rem - 25px)}}@media screen and (max-width:370px){.fm-option-wrapper2 .fm-label-container{text-align:start;width:65%}}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.ui-widget-content .fm-free-message-upgrade-button,.ui-widget-content .fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none}#fm-tabs .fm-free-message-promo-button,#fm-tabs .fm-free-message-promo-button:focus,.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px;color:#fff}.fm-promo-message{align-items:center;display:flex;flex-direction:column;padding:8px 20px}.fm-free-message-huge{font-size:30px;line-height:39px;margin:10px 0 0 0}.fm-head{margin-top:15px;text-align:center}.fm-head .fm-breadcrumbs li{display:inline-block;margin:0 10px 0 0;padding-top:10px;vertical-align:baseline}.fm-head .fm-breadcrumbs li:last-child{margin-right:0}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link{text-decoration:none;font-family:Roboto;font-weight:500;font-size:18px;color:#32373c}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link-active{color:#0073aa}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-upgrade{position:relative;top:.5px;display:inline-block;margin-left:10px;padding:1px 22px;background-color:#29b311;text-transform:uppercase;border-radius:10px;font-weight:700;font-size:12px;color:#fff}.fm-limitation-alert-container{display:flex;align-items:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100050}.fm-limitation-alert-overlay{background-color:#ffffffcc;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.fm-limitation-alert{background-color:#fff;box-shadow:#0000001a 0 0 10px;display:flex;flex-direction:column;color:#000;font-family:Roboto;justify-content:space-between;margin:0 auto;padding:30px 20px;position:relative;max-width:430px;max-height:311px;width:100%;height:100%;text-align:center}.fm-limitation-alert span.fm-ico-delete{cursor:pointer;position:absolute;top:10px;right:10px;color:#000;font-size:10px;opacity:.3}.fm-hidden{display:none}.fm-limitation-alert-header{color:#32373c;font-size:16px;font-weight:500;line-height:21px}.fm-limitation-alert-body{margin-top:20px}.fm-limitation-alert-body ul{display:inline-block;list-style:disc;text-align:left}.fm-limitation-alert-body ul li{font-size:16px;font-weight:700;line-height:26px}.fm-add-ons{display:flex;flex-wrap:wrap;justify-content:center;margin-top:20px;margin-bottom:10px;font-family:Roboto}.fm-add-ons .fm-add-on{max-width:300px;max-height:300px;width:100%;height:100%;margin-right:10px;margin-bottom:10px;padding:20px 20px 15px;transition-delay:0s;transition-duration:0s;transition-property:all;transition-timing-function:ease;background-color:#fff;border-radius:1px;text-align:center;font-family:Roboto;font-weight:300;font-size:16px;color:#323a45}.fm-add-ons .fm-add-on:hover{box-shadow:1px 1px 6px rgba(52,52,52,.16)}.fm-add-ons .fm-add-on .fm-add-on-img{width:72px;height:72px;margin:0 auto}.fm-add-ons .fm-add-on a{text-decoration:none}.fm-add-ons .fm-add-on .fm-add-on-name{margin:15px 0}.fm-add-ons .fm-add-on .fm-add-on-name,.fm-add-ons .fm-add-on .fm-add-on-name a{font-family:Roboto;font-weight:400;font-size:20px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-premium-version{margin:4px 0;height:16px;line-height:16px;font-weight:400;font-size:14px;color:#29b311}.fm-add-ons .fm-add-on .fm-add-on-desc{max-height:65px;height:100%;line-height:20px;font-size:16px}.fm-add-ons .fm-add-on .fm-add-on-desc-more-wrap{position:relative}.fm-add-ons .fm-add-on .fm-add-on-desc-more{position:absolute;z-index:1;left:0;bottom:65px;opacity:0;visibility:hidden;transition:opacity .4s linear;padding:10px 10px;background-color:#32373c;border-radius:6px;line-height:20px;font-weight:400;font-size:14px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-desc:hover+.fm-add-on-desc-more{opacity:1;visibility:visible}.fm-add-ons .fm-add-on .fm-add-on-buy{width:155px;height:30px;display:block;margin:10px auto;padding-top:7px;background-color:#0c4d68;border:.7px solid #0c4d68;border-radius:15px;line-height:16px;font-family:Roboto;font-weight:400;font-size:13px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-buy:hover{background-color:rgba(12,77,104,.8)}.fm-add-ons .fm-add-on.fm-add-on-activated .fm-add-on-buy{text-transform:uppercase;background-color:#fff;font-size:13px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-learn-more{line-height:16px;font-family:Roboto;font-weight:300;font-size:14px;color:#0073aa}.fm-add-ons .fm-add-on .fm-add-on-learn-more:hover{color:rgba(0,115,170,.8)}@media screen and (max-width:450px){.fm-topbar_cont{display:block}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{margin-left:0}}
css/submission-styles.min.css CHANGED
@@ -1,6 +1,6 @@
1
- @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.wdsignature:before{content:"\f12e"}.wdstripe:before{content:"S";font-weight:bolder;font-size:13px!important}#manage_form .wd-header{padding:10px}#manage_form .wd-page-title #title{padding:3px 8px;font-size:1.5em;line-height:100%;height:1.5em;width:30%;outline:0;margin:0 0 3px;background-color:#fff}#fm_admin_container h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.field_options h2.hndle,.field_types_cont h2.hndle,.placeholders_cont h2.hndle{background-color:#f1f1f1}.field-types-filter_header{border:1px solid #eee}.field-types-filter,.placeholders-filter{webkit-box-shadow:0 1px 4px rgba(0,0,0,.07)!important;box-shadow:0 1px 4px rgba(0,0,0,.07)!important}#manage_form .first-time-use{background-color:#fff;border:1px dashed #0085ba;border-radius:3px;bottom:115px;color:#0085ba;display:none;font-size:14px;height:auto;padding:5px;right:0;width:250px;position:absolute;bottom:32px}#manage_form .first-time-use-close{background-color:#fff;border-radius:50%;box-sizing:content-box;cursor:pointer;font-size:17px;margin:0;padding:0;position:absolute;right:-9px;top:-9px}#manage_form .first-time-use-close:before{margin:1px 0 0 3px}#add_field{position:relative}.hide_number_arrow{-moz-appearance:textfield;line-height:normal!important}.hide_number_arrow::-webkit-inner-spin-button,.hide_number_arrow::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.fm-edit-content #add_field_cont{animation-duration:1.5s;animation-iteration-count:1;animation-fill-mode:both;color:#0085ba;position:absolute;top:10px;right:10px;min-width:50px;height:auto;width:initial;padding:0!important;z-index:10}#add_field_cont .wdform_field{display:table-cell;cursor:move;background-color:transparent!important;border:none;padding:0}#add_field_cont .add-new-button{cursor:move;padding:5px 15px 5px 5px;color:#fff;font-size:16px;line-height:16px;vertical-align:middle;font-weight:400;height:30px}#add_field_cont .add-new-button .fm-ico-draggable{padding:5px 5px 5px 15px;font-size:12px}@-webkit-keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);-ms-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);-ms-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);-ms-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.animated{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}.field_types .postbox button.wd-button.wd-pro-fields{background-color:#ccc;border-color:#ccc;box-shadow:0 1px 0 #ccc;text-shadow:0 -1px 1px #ccc,1px 0 1px #ccc,0 1px 1px #ccc,-1px 0 1px #ccc}.field_types .postbox h2.hndle,.placeholders .postbox h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.add-popup .postbox .inside{margin:12px 0 0 0}.add-popup .postbox .handlediv{margin:0}.postbox .handlediv{float:right}.postbox .hndle,.stuffbox .hndle{border-bottom:1px solid #ccd0d4}.js .postbox .hndle{cursor:pointer}.field_types .postbox,.placeholders .postbox{margin-bottom:0}.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{margin:5px 0;white-space:normal;width:48%;word-wrap:break-word;word-break:break-all;overflow:hidden;padding:8px;height:auto}.add-popup .field-types-filter,.placeholder-popup .placeholders-filter{line-height:25px;margin:15px;width:calc(100% - 45px);padding-left:30px;background-color:#f5f5f5}.add-popup .field-types-filter-cont,.placeholder-popup .placeholders-filter-cont{position:relative;height:25px;width:100%}.add-popup .field-types-filter-cont:before,.placeholder-popup .placeholders-filter-cont:before{font-family:Dashicons;content:"\f179";font-size:25px;height:25px;left:18px;position:absolute;top:0;width:25px;color:#757575}.hide{display:none}.fm-hide{display:none!important}.fm-hidden{visibility:hidden;height:0;display:block;border:none}.fm-add-new{cursor:pointer}.pagination-links a{cursor:pointer}#fm_admin_container .adminlist th{font-size:13px}#fm_admin_container .pagination-links .tablenav-pages-navspan,#fm_admin_container .pagination-links a,#fm_admin_container .pagination-links a span{font-size:initial}#fm_admin_container .search-box{margin-bottom:5px}#fm_admin_container .tablenav .tablenav-pages a,#fm_admin_container .tablenav-pages-navspan{min-width:28px;margin:0}div.wd-buttons{clear:both;display:inline-block;float:right;margin-top:2px}div.wd-buttons .wd-button{margin:0 3px}div .wd-button:last-child{margin-right:0}div .wd-button:first-child{margin-left:0}.wd-table{clear:both;display:table;margin:0;padding:10px 0;position:relative;table-layout:fixed;width:100%}.wd-table-col{display:table-cell;position:relative;vertical-align:top}.wd-table-col-50{width:50%}.wd-table-col-60{width:60%}.wd-table-col-70{width:70%}@media screen and (max-width:782px){.wd-table-col{display:block}.wd-table-col-50,.wd-table-col-60,.wd-table-col-70{width:100%;float:none}}.wd-table-col-100{width:100%}.wd-table-col-left .wd-box-section{margin-right:5px}.wd-table-col-right .wd-box-section{margin-left:5px}.wd-box-section{background-color:#fff;border:1px solid #e5e5e5;border-radius:6px;margin:5px 0}.wd-box-title{border-bottom:1px solid #eaeaea;height:inherit;margin:0;padding:15px 30px}.wd-box-content{overflow-wrap:break-word;padding:20px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.wd-box-content-shortcode{padding-top:0;padding-bottom:0}.wd-label{display:block;font-size:15px;font-weight:700;line-height:20px;margin-bottom:10px;padding:0}#form_email_options_tab_content .fm-row .wd-label-radio{width:auto}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:26px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-notice{display:flex;justify-content:space-between}.fm-notice-dismiss-button{border:none;margin:0;padding:9px;background:0 0;color:#72777c;cursor:pointer}/*! jQuery UI - v1.12.1 - 2020-11-29
2
  * http://jqueryui.com
3
  * Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
4
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
5
  * Copyright jQuery Foundation and other contributors; Licensed MIT
6
- * Customized by Form maker - 2017-10-26 */.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-active,.ui-menu .ui-state-focus{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:active,.ui-button:hover,.ui-button:link,.ui-button:visited{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}button.ui-button::-moz-focus-inner,input.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup>.ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus,.ui-controlgroup>.ui-controlgroup-item:focus{z-index:9999}.ui-controlgroup-vertical>.ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc(100% - 2.4em)}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0 0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw,.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url(data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==);height:100%;opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:700;line-height:1.5;padding:2px .4em;margin:.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:0 0;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0 0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:700}.ui-widget-header a{color:#333}.ui-button,.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,html .ui-button.ui-state-disabled:active,html .ui-button.ui-state-disabled:hover{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:400;color:#454545}.ui-button,.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button{color:#454545;text-decoration:none}.ui-button:focus,.ui-button:hover,.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #ccc;background:#ededed;font-weight:400;color:#2b2b2b}.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,a.ui-button:focus,a.ui-button:hover{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px #5e9ed6}.ui-button.ui-state-active:hover,.ui-button:active,.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active{border:1px solid #003eff;background:#007fff;font-weight:400;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_444444_256x240.png)}.ui-widget-header .ui-icon{background-image:url(images/ui-icons_444444_256x240.png)}.ui-button:focus .ui-icon,.ui-button:hover .ui-icon,.ui-state-focus .ui-icon,.ui-state-hover .ui-icon{background-image:url(images/ui-icons_555555_256x240.png)}.ui-button:active .ui-icon,.ui-state-active .ui-icon{background-image:url(images/ui-icons_ffffff_256x240.png)}.ui-button .ui-state-highlight.ui-icon,.ui-state-highlight .ui-icon{background-image:url(images/ui-icons_777620_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(images/ui-icons_cc0000_256x240.png)}.ui-button .ui-icon{background-image:url(images/ui-icons_777777_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-left-radius:3px}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}.fm_modal .ui-progressbar{height:2em;text-align:left;overflow:hidden;position:relative}.fm_modal .ui-progressbar .ui-progressbar-value{height:100%}.fm_modal .fm-progress-label{position:absolute;left:46%;top:4px}.fm_modal #fm-progressbar{position:fixed;z-index:1003;width:35%;left:0;top:0;bottom:0;right:0;margin:auto;font-size:14px;color:#444}.fm-form-container .ui-slider{position:relative;text-align:left}.fm-form-container .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em!important;cursor:default}.fm-form-container .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.fm-form-container .ui-slider-horizontal{height:.8em!important}.fm-form-container .ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.fm-form-container .ui-slider-horizontal .ui-slider-range{top:0;height:100%!important}.fm-form-container .ui-slider-horizontal .ui-slider-range-min{left:0}.fm-form-container .ui-slider-horizontal .ui-slider-range-max{right:0}.fm-form-container .ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.fm-form-container .ui-spinner-input{border:none}.fm-form-container .ui-spinner-input{padding-right:20px!important}.fm-form-container .ui-slider-handle,.fm-form-container .ui-slider-horizontal,.fm-form-container .ui-slider-range,.fm-form-container .ui-spinner-input{margin:0!important}.fm-form-container .ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.fm-form-container .ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.fm-form-container .ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.fm-form-container .ui-spinner-up{top:0}.fm-form-container .ui-spinner-down{bottom:0}.fm-form-container .ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.fm-form-container .ui-widget .ui-widget{font-size:1em}.fm-form-container .ui-widget-content{border:1px solid #ddd}.fm-form-container .ui-widget-header{border:1px solid #e2e2e2;background:#e6e6e6;color:#cc0c0c;font-weight:700}.fm-form-container .ui-widget-header a{color:#fff}.fm-form-container #take .ui-widget-content{border-style:unset}.fm-form-container .ui-state-default a,.fm-form-container .ui-state-default a:link,.fm-form-container .ui-state-default a:visited{color:#1c94c4;text-decoration:none}.fm-form-container .ui-priority-secondary,.fm-form-container .ui-widget-content .ui-priority-secondary,.fm-form-container .ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.fm-form-container .ui-button .ui-button-text{display:block;line-height:normal}.fm-form-container .ui-button-text-only .ui-button-text{padding:.4em 1em}.fm-form-container .ui-button-icon-only .ui-icon{margin-left:0}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.fm-free-message-upgrade-button,.fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}#fm-tabs .fm-free-message-promo-button,#fm-tabs .fm-free-message-promo-button:focus,.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px;color:#fff}.fm-promo-message{align-items:center;display:flex;flex-direction:column;padding:8px 20px}.fm-free-message-huge{font-size:30px;line-height:39px;margin:10px 0 0 0}.fm-head{margin-top:15px;text-align:center}.fm-head .fm-breadcrumbs li{display:inline-block;margin:0 10px 0 0;padding-top:10px;vertical-align:baseline}.fm-head .fm-breadcrumbs li:last-child{margin-right:0}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link{text-decoration:none;font-family:Roboto;font-weight:500;font-size:18px;color:#32373c}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link-active{color:#0073aa}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-upgrade{position:relative;top:.5px;display:inline-block;margin-left:10px;padding:1px 22px;background-color:#29b311;text-transform:uppercase;border-radius:10px;font-weight:700;font-size:12px;color:#fff}.fm-limitation-alert-container{display:flex;align-items:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100050}.fm-limitation-alert-overlay{background-color:#ffffffcc;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.fm-limitation-alert{background-color:#fff;box-shadow:#0000001a 0 0 10px;display:flex;flex-direction:column;color:#000;font-family:Roboto;justify-content:space-between;margin:0 auto;padding:30px 20px;position:relative;max-width:430px;max-height:311px;width:100%;height:100%;text-align:center}.fm-limitation-alert span.fm-ico-delete{cursor:pointer;position:absolute;top:10px;right:10px;color:#000;font-size:10px;opacity:.3}.fm-hidden{display:none}.fm-limitation-alert-header{color:#32373c;font-size:16px;font-weight:500;line-height:21px}.fm-limitation-alert-body{margin-top:20px}.fm-limitation-alert-body ul{display:inline-block;list-style:disc;text-align:left}.fm-limitation-alert-body ul li{font-size:16px;font-weight:700;line-height:26px}.fm-add-ons{display:flex;flex-wrap:wrap;justify-content:center;margin-top:20px;margin-bottom:10px;font-family:Roboto}.fm-add-ons .fm-add-on{max-width:300px;max-height:300px;width:100%;height:100%;margin-right:10px;margin-bottom:10px;padding:20px 20px 15px;transition-delay:0s;transition-duration:0s;transition-property:all;transition-timing-function:ease;background-color:#fff;border-radius:1px;text-align:center;font-family:Roboto;font-weight:300;font-size:16px;color:#323a45}.fm-add-ons .fm-add-on:hover{box-shadow:1px 1px 6px rgba(52,52,52,.16)}.fm-add-ons .fm-add-on .fm-add-on-img{width:72px;height:72px;margin:0 auto}.fm-add-ons .fm-add-on a{text-decoration:none}.fm-add-ons .fm-add-on .fm-add-on-name{margin:15px 0}.fm-add-ons .fm-add-on .fm-add-on-name,.fm-add-ons .fm-add-on .fm-add-on-name a{font-family:Roboto;font-weight:400;font-size:20px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-premium-version{margin:4px 0;height:16px;line-height:16px;font-weight:400;font-size:14px;color:#29b311}.fm-add-ons .fm-add-on .fm-add-on-desc{max-height:65px;height:100%;line-height:20px;font-size:16px}.fm-add-ons .fm-add-on .fm-add-on-desc-more-wrap{position:relative}.fm-add-ons .fm-add-on .fm-add-on-desc-more{position:absolute;z-index:1;left:0;bottom:65px;opacity:0;visibility:hidden;transition:opacity .4s linear;padding:10px 10px;background-color:#32373c;border-radius:6px;line-height:20px;font-weight:400;font-size:14px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-desc:hover+.fm-add-on-desc-more{opacity:1;visibility:visible}.fm-add-ons .fm-add-on .fm-add-on-buy{width:155px;height:30px;display:block;margin:10px auto;padding-top:7px;background-color:#0c4d68;border:.7px solid #0c4d68;border-radius:15px;line-height:16px;font-family:Roboto;font-weight:400;font-size:13px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-buy:hover{background-color:rgba(12,77,104,.8)}.fm-add-ons .fm-add-on.fm-add-on-activated .fm-add-on-buy{text-transform:uppercase;background-color:#fff;font-size:13px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-learn-more{line-height:16px;font-family:Roboto;font-weight:300;font-size:14px;color:#0073aa}.fm-add-ons .fm-add-on .fm-add-on-learn-more:hover{color:rgba(0,115,170,.8)}@media screen and (max-width:450px){.fm-topbar_cont{display:block}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{margin-left:0}}
1
+ @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.wdsignature:before{content:"\f12e"}.wdstripe:before{content:"S";font-weight:bolder;font-size:13px!important}#manage_form .wd-header{padding:10px}#manage_form .wd-page-title #title{padding:3px 8px;font-size:1.5em;line-height:100%;height:1.5em;width:30%;outline:0;margin:0 0 3px;background-color:#fff}#fm_admin_container h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.field_options h2.hndle,.field_types_cont h2.hndle,.placeholders_cont h2.hndle{background-color:#f1f1f1}.field-types-filter_header{border:1px solid #eee}.field-types-filter,.placeholders-filter{webkit-box-shadow:0 1px 4px rgba(0,0,0,.07)!important;box-shadow:0 1px 4px rgba(0,0,0,.07)!important}#manage_form .first-time-use{background-color:#fff;border:1px dashed #0085ba;border-radius:3px;bottom:115px;color:#0085ba;display:none;font-size:14px;height:auto;padding:5px;right:0;width:250px;position:absolute;bottom:32px}#manage_form .first-time-use-close{background-color:#fff;border-radius:50%;box-sizing:content-box;cursor:pointer;font-size:17px;margin:0;padding:0;position:absolute;right:-9px;top:-9px}#manage_form .first-time-use-close:before{margin:1px 0 0 3px}#add_field{position:relative}.hide_number_arrow{-moz-appearance:textfield;line-height:normal!important}.hide_number_arrow::-webkit-inner-spin-button,.hide_number_arrow::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.fm-edit-content #add_field_cont{animation-duration:1.5s;animation-iteration-count:1;animation-fill-mode:both;color:#0085ba;position:absolute;top:10px;right:10px;min-width:50px;height:auto;width:initial;padding:0!important;z-index:10}#add_field_cont .wdform_field{display:table-cell;cursor:move;background-color:transparent!important;border:none;padding:0}#add_field_cont .add-new-button{cursor:move;padding:5px 15px 5px 5px;color:#fff;font-size:16px;line-height:16px;vertical-align:middle;font-weight:400;height:30px}#add_field_cont .add-new-button .fm-ico-draggable{padding:5px 5px 5px 15px;font-size:12px}@-webkit-keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);-ms-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);-ms-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);-ms-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.animated{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}.field_types .postbox button.wd-button.wd-pro-fields{background-color:#ccc;border-color:#ccc;box-shadow:0 1px 0 #ccc;text-shadow:0 -1px 1px #ccc,1px 0 1px #ccc,0 1px 1px #ccc,-1px 0 1px #ccc}.field_types .postbox h2.hndle,.placeholders .postbox h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.add-popup .postbox .inside{margin:12px 0 0 0}.add-popup .postbox .handlediv{margin:0}.postbox .handlediv{float:right}.postbox .hndle,.stuffbox .hndle{border-bottom:1px solid #ccd0d4}.js .postbox .hndle{cursor:pointer}.field_types .postbox,.placeholders .postbox{margin-bottom:0}.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{margin:5px 0;white-space:normal;width:48%;word-wrap:break-word;word-break:break-all;overflow:hidden;padding:8px;height:auto}.add-popup .field-types-filter,.placeholder-popup .placeholders-filter{line-height:25px;margin:15px;width:calc(100% - 45px);padding-left:30px;background-color:#f5f5f5}.add-popup .field-types-filter-cont,.placeholder-popup .placeholders-filter-cont{position:relative;height:25px;width:100%}.add-popup .field-types-filter-cont:before,.placeholder-popup .placeholders-filter-cont:before{font-family:Dashicons;content:"\f179";font-size:25px;height:25px;left:18px;position:absolute;top:0;width:25px;color:#757575}.hide{display:none}.fm-hide{display:none!important}.fm-hidden{visibility:hidden;height:0;display:block;border:none}.fm-add-new{cursor:pointer}.pagination-links a{cursor:pointer}#fm_admin_container .adminlist th{font-size:13px}#fm_admin_container .pagination-links .tablenav-pages-navspan,#fm_admin_container .pagination-links a,#fm_admin_container .pagination-links a span{font-size:initial}#fm_admin_container .search-box{margin-bottom:5px}#fm_admin_container .tablenav .tablenav-pages a,#fm_admin_container .tablenav-pages-navspan{min-width:28px;margin:0}div.wd-buttons{clear:both;display:inline-block;float:right;margin-top:2px}div.wd-buttons .wd-button{margin:0 3px}div .wd-button:last-child{margin-right:0}div .wd-button:first-child{margin-left:0}.wd-table{clear:both;display:table;margin:0;padding:10px 0;position:relative;table-layout:fixed;width:100%}.wd-table-col{display:table-cell;position:relative;vertical-align:top}.wd-table-col-50{width:50%}.wd-table-col-60{width:60%}.wd-table-col-70{width:70%}@media screen and (max-width:782px){.wd-table-col{display:block}.wd-table-col-50,.wd-table-col-60,.wd-table-col-70{width:100%;float:none}}.wd-table-col-100{width:100%}.wd-table-col-left .wd-box-section{margin-right:5px}.wd-table-col-right .wd-box-section{margin-left:5px}.wd-box-section{background-color:#fff;border:1px solid #e5e5e5;border-radius:6px;margin:5px 0}.wd-box-title{border-bottom:1px solid #eaeaea;height:inherit;margin:0;padding:15px 30px}.wd-box-content{overflow-wrap:break-word;padding:20px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.wd-box-content-shortcode{padding-top:0;padding-bottom:0}.wd-label{display:block;font-size:15px;font-weight:700;line-height:20px;margin-bottom:10px;padding:0}#form_email_options_tab_content .fm-row .wd-label-radio{width:auto}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;text-align:center;margin-left:8px;color:#fff}.fm-statCount{width:10%;text-align:left}@media screen and (max-width:782px){.fm-statCount{width:20%}}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.change_payment_status{margin:0 0 5px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:baseline}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-author{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}tbody tr td[data-colname="Payment Status"]{text-transform:capitalize!important}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-notice{display:flex;justify-content:space-between}.fm-notice-dismiss-button{border:none;margin:0;padding:9px;background:0 0;color:#72777c;cursor:pointer}.fm-error{color:#cc0c0c;margin-left:5px;font-weight:600}.fm-capture-loading{margin-left:5px}.fm-double-option-container{display:flex}.fm-option-wrapper1{width:calc(30% + .25rem + 16px);display:flex;justify-content:space-between}.fm-option-wrapper1 .fm-label-container,.fm-option-wrapper2 .fm-label-container{width:100%}.fm-option-wrapper2 .fm-label-container{text-align:end}.fm-option-wrapper2{width:calc(70% - .25rem - 16px);display:flex;justify-content:flex-end}.fm-option-wrapper1 .fm-input-container,.fm-option-wrapper2 .fm-input-container{width:unset}@media screen and (max-width:782px){.fm-option-wrapper1{width:calc(30% + .25rem + 25px)}.fm-option-wrapper2{width:calc(70% - .25rem - 25px)}}@media screen and (max-width:370px){.fm-option-wrapper2 .fm-label-container{text-align:start;width:65%}}/*! jQuery UI - v1.12.1 - 2020-11-29
2
  * http://jqueryui.com
3
  * Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
4
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
5
  * Copyright jQuery Foundation and other contributors; Licensed MIT
6
+ * Customized by Form maker - 2017-10-26 */.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-active,.ui-menu .ui-state-focus{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:active,.ui-button:hover,.ui-button:link,.ui-button:visited{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}button.ui-button::-moz-focus-inner,input.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup>.ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus,.ui-controlgroup>.ui-controlgroup-item:focus{z-index:9999}.ui-controlgroup-vertical>.ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc(100% - 2.4em)}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-prev-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td a,.ui-datepicker td span{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0 0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw,.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url(data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==);height:100%;opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:700;line-height:1.5;padding:2px .4em;margin:.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:0 0;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0 0}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget button,.ui-widget input,.ui-widget select,.ui-widget textarea{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:700}.ui-widget-header a{color:#333}.ui-button,.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,html .ui-button.ui-state-disabled:active,html .ui-button.ui-state-disabled:hover{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:400;color:#454545}.ui-button,.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button{color:#454545;text-decoration:none}.ui-button:focus,.ui-button:hover,.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #ccc;background:#ededed;font-weight:400;color:#2b2b2b}.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,a.ui-button:focus,a.ui-button:hover{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px #5e9ed6}.ui-button.ui-state-active:hover,.ui-button:active,.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active{border:1px solid #003eff;background:#007fff;font-weight:400;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_444444_256x240.png)}.ui-widget-header .ui-icon{background-image:url(images/ui-icons_444444_256x240.png)}.ui-button:focus .ui-icon,.ui-button:hover .ui-icon,.ui-state-focus .ui-icon,.ui-state-hover .ui-icon{background-image:url(images/ui-icons_555555_256x240.png)}.ui-button:active .ui-icon,.ui-state-active .ui-icon{background-image:url(images/ui-icons_ffffff_256x240.png)}.ui-button .ui-state-highlight.ui-icon,.ui-state-highlight .ui-icon{background-image:url(images/ui-icons_777620_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(images/ui-icons_cc0000_256x240.png)}.ui-button .ui-icon{background-image:url(images/ui-icons_777777_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-left-radius:3px}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}.fm_modal .ui-progressbar{height:2em;text-align:left;overflow:hidden;position:relative}.fm_modal .ui-progressbar .ui-progressbar-value{height:100%}.fm_modal .fm-progress-label{position:absolute;left:46%;top:4px}.fm_modal #fm-progressbar{position:fixed;z-index:1003;width:35%;left:0;top:0;bottom:0;right:0;margin:auto;font-size:14px;color:#444}.fm-form-container .ui-slider{position:relative;text-align:left}.fm-form-container .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em!important;cursor:default}.fm-form-container .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.fm-form-container .ui-slider-horizontal{height:.8em!important}.fm-form-container .ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.fm-form-container .ui-slider-horizontal .ui-slider-range{top:0;height:100%!important}.fm-form-container .ui-slider-horizontal .ui-slider-range-min{left:0}.fm-form-container .ui-slider-horizontal .ui-slider-range-max{right:0}.fm-form-container .ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.fm-form-container .ui-spinner-input{border:none}.fm-form-container .ui-spinner-input{padding-right:20px!important}.fm-form-container .ui-slider-handle,.fm-form-container .ui-slider-horizontal,.fm-form-container .ui-slider-range,.fm-form-container .ui-spinner-input{margin:0!important}.fm-form-container .ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.fm-form-container .ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.fm-form-container .ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.fm-form-container .ui-spinner-up{top:0}.fm-form-container .ui-spinner-down{bottom:0}.fm-form-container .ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.fm-form-container .ui-widget .ui-widget{font-size:1em}.fm-form-container .ui-widget-content{border:1px solid #ddd}.fm-form-container .ui-widget-header{border:1px solid #e2e2e2;background:#e6e6e6;color:#cc0c0c;font-weight:700}.fm-form-container .ui-widget-header a{color:#fff}.fm-form-container #take .ui-widget-content{border-style:unset}.fm-form-container .ui-state-default a,.fm-form-container .ui-state-default a:link,.fm-form-container .ui-state-default a:visited{color:#1c94c4;text-decoration:none}.fm-form-container .ui-priority-secondary,.fm-form-container .ui-widget-content .ui-priority-secondary,.fm-form-container .ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.fm-form-container .ui-button .ui-button-text{display:block;line-height:normal}.fm-form-container .ui-button-text-only .ui-button-text{padding:.4em 1em}.fm-form-container .ui-button-icon-only .ui-icon{margin-left:0}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.ui-widget-content .fm-free-message-upgrade-button,.ui-widget-content .fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none}#fm-tabs .fm-free-message-promo-button,#fm-tabs .fm-free-message-promo-button:focus,.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px;color:#fff}.fm-promo-message{align-items:center;display:flex;flex-direction:column;padding:8px 20px}.fm-free-message-huge{font-size:30px;line-height:39px;margin:10px 0 0 0}.fm-head{margin-top:15px;text-align:center}.fm-head .fm-breadcrumbs li{display:inline-block;margin:0 10px 0 0;padding-top:10px;vertical-align:baseline}.fm-head .fm-breadcrumbs li:last-child{margin-right:0}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link{text-decoration:none;font-family:Roboto;font-weight:500;font-size:18px;color:#32373c}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link-active{color:#0073aa}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-upgrade{position:relative;top:.5px;display:inline-block;margin-left:10px;padding:1px 22px;background-color:#29b311;text-transform:uppercase;border-radius:10px;font-weight:700;font-size:12px;color:#fff}.fm-limitation-alert-container{display:flex;align-items:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100050}.fm-limitation-alert-overlay{background-color:#ffffffcc;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.fm-limitation-alert{background-color:#fff;box-shadow:#0000001a 0 0 10px;display:flex;flex-direction:column;color:#000;font-family:Roboto;justify-content:space-between;margin:0 auto;padding:30px 20px;position:relative;max-width:430px;max-height:311px;width:100%;height:100%;text-align:center}.fm-limitation-alert span.fm-ico-delete{cursor:pointer;position:absolute;top:10px;right:10px;color:#000;font-size:10px;opacity:.3}.fm-hidden{display:none}.fm-limitation-alert-header{color:#32373c;font-size:16px;font-weight:500;line-height:21px}.fm-limitation-alert-body{margin-top:20px}.fm-limitation-alert-body ul{display:inline-block;list-style:disc;text-align:left}.fm-limitation-alert-body ul li{font-size:16px;font-weight:700;line-height:26px}.fm-add-ons{display:flex;flex-wrap:wrap;justify-content:center;margin-top:20px;margin-bottom:10px;font-family:Roboto}.fm-add-ons .fm-add-on{max-width:300px;max-height:300px;width:100%;height:100%;margin-right:10px;margin-bottom:10px;padding:20px 20px 15px;transition-delay:0s;transition-duration:0s;transition-property:all;transition-timing-function:ease;background-color:#fff;border-radius:1px;text-align:center;font-family:Roboto;font-weight:300;font-size:16px;color:#323a45}.fm-add-ons .fm-add-on:hover{box-shadow:1px 1px 6px rgba(52,52,52,.16)}.fm-add-ons .fm-add-on .fm-add-on-img{width:72px;height:72px;margin:0 auto}.fm-add-ons .fm-add-on a{text-decoration:none}.fm-add-ons .fm-add-on .fm-add-on-name{margin:15px 0}.fm-add-ons .fm-add-on .fm-add-on-name,.fm-add-ons .fm-add-on .fm-add-on-name a{font-family:Roboto;font-weight:400;font-size:20px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-premium-version{margin:4px 0;height:16px;line-height:16px;font-weight:400;font-size:14px;color:#29b311}.fm-add-ons .fm-add-on .fm-add-on-desc{max-height:65px;height:100%;line-height:20px;font-size:16px}.fm-add-ons .fm-add-on .fm-add-on-desc-more-wrap{position:relative}.fm-add-ons .fm-add-on .fm-add-on-desc-more{position:absolute;z-index:1;left:0;bottom:65px;opacity:0;visibility:hidden;transition:opacity .4s linear;padding:10px 10px;background-color:#32373c;border-radius:6px;line-height:20px;font-weight:400;font-size:14px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-desc:hover+.fm-add-on-desc-more{opacity:1;visibility:visible}.fm-add-ons .fm-add-on .fm-add-on-buy{width:155px;height:30px;display:block;margin:10px auto;padding-top:7px;background-color:#0c4d68;border:.7px solid #0c4d68;border-radius:15px;line-height:16px;font-family:Roboto;font-weight:400;font-size:13px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-buy:hover{background-color:rgba(12,77,104,.8)}.fm-add-ons .fm-add-on.fm-add-on-activated .fm-add-on-buy{text-transform:uppercase;background-color:#fff;font-size:13px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-learn-more{line-height:16px;font-family:Roboto;font-weight:300;font-size:14px;color:#0073aa}.fm-add-ons .fm-add-on .fm-add-on-learn-more:hover{color:rgba(0,115,170,.8)}@media screen and (max-width:450px){.fm-topbar_cont{display:block}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{margin-left:0}}
css/theme-edit-styles.min.css CHANGED
@@ -1,5 +1,5 @@
1
- @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.wdsignature:before{content:"\f12e"}.wdstripe:before{content:"S";font-weight:bolder;font-size:13px!important}#manage_form .wd-header{padding:10px}#manage_form .wd-page-title #title{padding:3px 8px;font-size:1.5em;line-height:100%;height:1.5em;width:30%;outline:0;margin:0 0 3px;background-color:#fff}#fm_admin_container h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.field_options h2.hndle,.field_types_cont h2.hndle,.placeholders_cont h2.hndle{background-color:#f1f1f1}.field-types-filter_header{border:1px solid #eee}.field-types-filter,.placeholders-filter{webkit-box-shadow:0 1px 4px rgba(0,0,0,.07)!important;box-shadow:0 1px 4px rgba(0,0,0,.07)!important}#manage_form .first-time-use{background-color:#fff;border:1px dashed #0085ba;border-radius:3px;bottom:115px;color:#0085ba;display:none;font-size:14px;height:auto;padding:5px;right:0;width:250px;position:absolute;bottom:32px}#manage_form .first-time-use-close{background-color:#fff;border-radius:50%;box-sizing:content-box;cursor:pointer;font-size:17px;margin:0;padding:0;position:absolute;right:-9px;top:-9px}#manage_form .first-time-use-close:before{margin:1px 0 0 3px}#add_field{position:relative}.hide_number_arrow{-moz-appearance:textfield;line-height:normal!important}.hide_number_arrow::-webkit-inner-spin-button,.hide_number_arrow::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.fm-edit-content #add_field_cont{animation-duration:1.5s;animation-iteration-count:1;animation-fill-mode:both;color:#0085ba;position:absolute;top:10px;right:10px;min-width:50px;height:auto;width:initial;padding:0!important;z-index:10}#add_field_cont .wdform_field{display:table-cell;cursor:move;background-color:transparent!important;border:none;padding:0}#add_field_cont .add-new-button{cursor:move;padding:5px 15px 5px 5px;color:#fff;font-size:16px;line-height:16px;vertical-align:middle;font-weight:400;height:30px}#add_field_cont .add-new-button .fm-ico-draggable{padding:5px 5px 5px 15px;font-size:12px}@-webkit-keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);-ms-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);-ms-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);-ms-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.animated{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}.field_types .postbox button.wd-button.wd-pro-fields{background-color:#ccc;border-color:#ccc;box-shadow:0 1px 0 #ccc;text-shadow:0 -1px 1px #ccc,1px 0 1px #ccc,0 1px 1px #ccc,-1px 0 1px #ccc}.field_types .postbox h2.hndle,.placeholders .postbox h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.add-popup .postbox .inside{margin:12px 0 0 0}.add-popup .postbox .handlediv{margin:0}.postbox .handlediv{float:right}.postbox .hndle,.stuffbox .hndle{border-bottom:1px solid #ccd0d4}.js .postbox .hndle{cursor:pointer}.field_types .postbox,.placeholders .postbox{margin-bottom:0}.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{margin:5px 0;white-space:normal;width:48%;word-wrap:break-word;word-break:break-all;overflow:hidden;padding:8px;height:auto}.add-popup .field-types-filter,.placeholder-popup .placeholders-filter{line-height:25px;margin:15px;width:calc(100% - 45px);padding-left:30px;background-color:#f5f5f5}.add-popup .field-types-filter-cont,.placeholder-popup .placeholders-filter-cont{position:relative;height:25px;width:100%}.add-popup .field-types-filter-cont:before,.placeholder-popup .placeholders-filter-cont:before{font-family:Dashicons;content:"\f179";font-size:25px;height:25px;left:18px;position:absolute;top:0;width:25px;color:#757575}.hide{display:none}.fm-hide{display:none!important}.fm-hidden{visibility:hidden;height:0;display:block;border:none}.fm-add-new{cursor:pointer}.pagination-links a{cursor:pointer}#fm_admin_container .adminlist th{font-size:13px}#fm_admin_container .pagination-links .tablenav-pages-navspan,#fm_admin_container .pagination-links a,#fm_admin_container .pagination-links a span{font-size:initial}#fm_admin_container .search-box{margin-bottom:5px}#fm_admin_container .tablenav .tablenav-pages a,#fm_admin_container .tablenav-pages-navspan{min-width:28px;margin:0}div.wd-buttons{clear:both;display:inline-block;float:right;margin-top:2px}div.wd-buttons .wd-button{margin:0 3px}div .wd-button:last-child{margin-right:0}div .wd-button:first-child{margin-left:0}.wd-table{clear:both;display:table;margin:0;padding:10px 0;position:relative;table-layout:fixed;width:100%}.wd-table-col{display:table-cell;position:relative;vertical-align:top}.wd-table-col-50{width:50%}.wd-table-col-60{width:60%}.wd-table-col-70{width:70%}@media screen and (max-width:782px){.wd-table-col{display:block}.wd-table-col-50,.wd-table-col-60,.wd-table-col-70{width:100%;float:none}}.wd-table-col-100{width:100%}.wd-table-col-left .wd-box-section{margin-right:5px}.wd-table-col-right .wd-box-section{margin-left:5px}.wd-box-section{background-color:#fff;border:1px solid #e5e5e5;border-radius:6px;margin:5px 0}.wd-box-title{border-bottom:1px solid #eaeaea;height:inherit;margin:0;padding:15px 30px}.wd-box-content{overflow-wrap:break-word;padding:20px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.wd-box-content-shortcode{padding-top:0;padding-bottom:0}.wd-label{display:block;font-size:15px;font-weight:700;line-height:20px;margin-bottom:10px;padding:0}#form_email_options_tab_content .fm-row .wd-label-radio{width:auto}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:26px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-notice{display:flex;justify-content:space-between}.fm-notice-dismiss-button{border:none;margin:0;padding:9px;background:0 0;color:#72777c;cursor:pointer}/*!
1
+ @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.wdsignature:before{content:"\f12e"}.wdstripe:before{content:"S";font-weight:bolder;font-size:13px!important}#manage_form .wd-header{padding:10px}#manage_form .wd-page-title #title{padding:3px 8px;font-size:1.5em;line-height:100%;height:1.5em;width:30%;outline:0;margin:0 0 3px;background-color:#fff}#fm_admin_container h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.field_options h2.hndle,.field_types_cont h2.hndle,.placeholders_cont h2.hndle{background-color:#f1f1f1}.field-types-filter_header{border:1px solid #eee}.field-types-filter,.placeholders-filter{webkit-box-shadow:0 1px 4px rgba(0,0,0,.07)!important;box-shadow:0 1px 4px rgba(0,0,0,.07)!important}#manage_form .first-time-use{background-color:#fff;border:1px dashed #0085ba;border-radius:3px;bottom:115px;color:#0085ba;display:none;font-size:14px;height:auto;padding:5px;right:0;width:250px;position:absolute;bottom:32px}#manage_form .first-time-use-close{background-color:#fff;border-radius:50%;box-sizing:content-box;cursor:pointer;font-size:17px;margin:0;padding:0;position:absolute;right:-9px;top:-9px}#manage_form .first-time-use-close:before{margin:1px 0 0 3px}#add_field{position:relative}.hide_number_arrow{-moz-appearance:textfield;line-height:normal!important}.hide_number_arrow::-webkit-inner-spin-button,.hide_number_arrow::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.fm-edit-content #add_field_cont{animation-duration:1.5s;animation-iteration-count:1;animation-fill-mode:both;color:#0085ba;position:absolute;top:10px;right:10px;min-width:50px;height:auto;width:initial;padding:0!important;z-index:10}#add_field_cont .wdform_field{display:table-cell;cursor:move;background-color:transparent!important;border:none;padding:0}#add_field_cont .add-new-button{cursor:move;padding:5px 15px 5px 5px;color:#fff;font-size:16px;line-height:16px;vertical-align:middle;font-weight:400;height:30px}#add_field_cont .add-new-button .fm-ico-draggable{padding:5px 5px 5px 15px;font-size:12px}@-webkit-keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);-ms-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);-ms-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);-ms-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.animated{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}.field_types .postbox button.wd-button.wd-pro-fields{background-color:#ccc;border-color:#ccc;box-shadow:0 1px 0 #ccc;text-shadow:0 -1px 1px #ccc,1px 0 1px #ccc,0 1px 1px #ccc,-1px 0 1px #ccc}.field_types .postbox h2.hndle,.placeholders .postbox h2.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.add-popup .postbox .inside{margin:12px 0 0 0}.add-popup .postbox .handlediv{margin:0}.postbox .handlediv{float:right}.postbox .hndle,.stuffbox .hndle{border-bottom:1px solid #ccd0d4}.js .postbox .hndle{cursor:pointer}.field_types .postbox,.placeholders .postbox{margin-bottom:0}.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{margin:5px 0;white-space:normal;width:48%;word-wrap:break-word;word-break:break-all;overflow:hidden;padding:8px;height:auto}.add-popup .field-types-filter,.placeholder-popup .placeholders-filter{line-height:25px;margin:15px;width:calc(100% - 45px);padding-left:30px;background-color:#f5f5f5}.add-popup .field-types-filter-cont,.placeholder-popup .placeholders-filter-cont{position:relative;height:25px;width:100%}.add-popup .field-types-filter-cont:before,.placeholder-popup .placeholders-filter-cont:before{font-family:Dashicons;content:"\f179";font-size:25px;height:25px;left:18px;position:absolute;top:0;width:25px;color:#757575}.hide{display:none}.fm-hide{display:none!important}.fm-hidden{visibility:hidden;height:0;display:block;border:none}.fm-add-new{cursor:pointer}.pagination-links a{cursor:pointer}#fm_admin_container .adminlist th{font-size:13px}#fm_admin_container .pagination-links .tablenav-pages-navspan,#fm_admin_container .pagination-links a,#fm_admin_container .pagination-links a span{font-size:initial}#fm_admin_container .search-box{margin-bottom:5px}#fm_admin_container .tablenav .tablenav-pages a,#fm_admin_container .tablenav-pages-navspan{min-width:28px;margin:0}div.wd-buttons{clear:both;display:inline-block;float:right;margin-top:2px}div.wd-buttons .wd-button{margin:0 3px}div .wd-button:last-child{margin-right:0}div .wd-button:first-child{margin-left:0}.wd-table{clear:both;display:table;margin:0;padding:10px 0;position:relative;table-layout:fixed;width:100%}.wd-table-col{display:table-cell;position:relative;vertical-align:top}.wd-table-col-50{width:50%}.wd-table-col-60{width:60%}.wd-table-col-70{width:70%}@media screen and (max-width:782px){.wd-table-col{display:block}.wd-table-col-50,.wd-table-col-60,.wd-table-col-70{width:100%;float:none}}.wd-table-col-100{width:100%}.wd-table-col-left .wd-box-section{margin-right:5px}.wd-table-col-right .wd-box-section{margin-left:5px}.wd-box-section{background-color:#fff;border:1px solid #e5e5e5;border-radius:6px;margin:5px 0}.wd-box-title{border-bottom:1px solid #eaeaea;height:inherit;margin:0;padding:15px 30px}.wd-box-content{overflow-wrap:break-word;padding:20px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.wd-box-content-shortcode{padding-top:0;padding-bottom:0}.wd-label{display:block;font-size:15px;font-weight:700;line-height:20px;margin-bottom:10px;padding:0}#form_email_options_tab_content .fm-row .wd-label-radio{width:auto}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px so