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

Version Description

  • Improved: Updated js libs.
  • Improved: Show Stripe payment transaction ID on submissions page.
  • Fixed: Allow all fields in conditional fields list.
  • Fixed: Conditional fields logic issue.
  • Fixed: Condition with "Send a copy" field.
  • Fixed: Issue with Product quantity default value.
  • Fixed: Saving email in conditional emails.
  • Fixed: Do not pass invalid card data to Stripe.
  • Fixed: Save user email and pas to Stripe.
  • Fixed: Saving email in conditional emails.
  • Fixed: Added all fields to Calculator extension.
Download this release

Release Info

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

Code changes from version 1.14.5 to 1.14.6

admin/controllers/Manage_fm.php CHANGED
@@ -591,6 +591,10 @@ class FMControllerManage_fm extends FMAdminController {
591
  if ( strpos( $params['row']->label_order, 'type_paypal_' ) ) {
592
  $params['row']->label_order = $params[ 'row' ]->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#****#";
593
  }
 
 
 
 
594
  $label_all_for_submissions = explode( '#****#', $params[ 'row' ]->label_order );
595
  $label_all_for_submissions = array_slice( $label_all_for_submissions, 0, count( $label_all_for_submissions ) - 1 );
596
  foreach ( $label_all_for_submissions as $key => $label_each ) {
@@ -1153,6 +1157,72 @@ class FMControllerManage_fm extends FMAdminController {
1153
  ), admin_url('admin.php')));
1154
  }
1155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1156
  public function apply() {
1157
  $tabs_loaded = json_decode(WDW_FM_Library(self::PLUGIN)->get('fm_tabs_loaded', '[]', false));
1158
  $message = $this->save_db();
@@ -1162,7 +1232,12 @@ class FMControllerManage_fm extends FMAdminController {
1162
  }
1163
  $backup_id = $this->model->get_max_row('formmaker_backup', 'backup_id', 'intval');
1164
  if (array_search('form_options_tab', $tabs_loaded) !== false) {
1165
- $this->save_db_form_options($current_id, $backup_id);
 
 
 
 
 
1166
  }
1167
  if (array_search('form_display_tab', $tabs_loaded) !== false) {
1168
  $this->save_dis_options();
591
  if ( strpos( $params['row']->label_order, 'type_paypal_' ) ) {
592
  $params['row']->label_order = $params[ 'row' ]->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#****#";
593
  }
594
+ if ( strpos($params['row']->label_order, 'type_submitter_mail') ) {
595
+ $params['row']->label_order = $params['row']->label_order . 'user_email#**id**#user_email#**label**#type_submitter_mail#****';
596
+ $params['row']->label_order = $params['row']->label_order . 'verifyInfo#**id**#verify_info#**label**#type_user_email_verify#****#';
597
+ }
598
  $label_all_for_submissions = explode( '#****#', $params[ 'row' ]->label_order );
599
  $label_all_for_submissions = array_slice( $label_all_for_submissions, 0, count( $label_all_for_submissions ) - 1 );
600
  foreach ( $label_all_for_submissions as $key => $label_each ) {
1157
  ), admin_url('admin.php')));
1158
  }
1159
 
1160
+ /**
1161
+ * Add form options field if it is empty
1162
+ * usable for old forms
1163
+ *
1164
+ * @param $form_id
1165
+ */
1166
+ public function set_form_options_for_old( $form_id ) {
1167
+ $result = $this->model->get_row_data( $form_id );
1168
+ $res = (array) $result;
1169
+ if( !empty($res['form_options']) ) {
1170
+ return;
1171
+ }
1172
+ $form_options = array(
1173
+ 'savedb' => $res['savedb'],
1174
+ 'requiredmark' => $res['requiredmark'],
1175
+ 'submissions_limit' => $res['submissions_limit'],
1176
+ 'submissions_limit_text' => $res['submissions_limit_text'],
1177
+ 'save_uploads' => $res['save_uploads'],
1178
+ 'submit_text' => $res['submit_text'],
1179
+ 'url' => $res['url'],
1180
+ 'submit_text_type' => $res['submit_text_type'],
1181
+ 'article_id' => $res['article_id'],
1182
+ 'tax' => $res['tax'],
1183
+ 'payment_currency' => $res['payment_currency'],
1184
+ 'paypal_email' => $res['paypal_email'],
1185
+ 'checkout_mode' => $res['checkout_mode'],
1186
+ 'paypal_mode' => $res['paypal_mode'],
1187
+ 'javascript' => $res['javascript'],
1188
+ 'condition' => $res['condition'],
1189
+ 'user_id_wd' => $res['user_id_wd'],
1190
+ 'frontend_submit_fields' => $res['frontend_submit_fields'],
1191
+ 'frontend_submit_stat_fields' => $res['frontend_submit_stat_fields'],
1192
+ 'autogen_layout' => $res['autogen_layout'],
1193
+ 'custom_front' => $res['custom_front'],
1194
+ 'mail' => $res['mail'],
1195
+ 'sendemail' => $res['sendemail'],
1196
+ 'from_mail' => $res['from_mail'],
1197
+ 'from_name' => $res['from_name'],
1198
+ 'reply_to' => $res['reply_to'],
1199
+ 'send_to' => $res['send_to'],
1200
+ 'mail_from_user' => $res['mail_from_user'],
1201
+ 'mail_from_name_user' => $res['mail_from_name_user'],
1202
+ 'reply_to_user' => $res['reply_to_user'],
1203
+ 'mail_cc' => $res['mail_cc'],
1204
+ 'mail_cc_user' => $res['mail_cc_user'],
1205
+ 'mail_bcc' => $res['mail_bcc'],
1206
+ 'mail_bcc_user' => $res['mail_bcc_user'],
1207
+ 'mail_subject' => $res['mail_subject'],
1208
+ 'mail_subject_user' => $res['mail_subject_user'],
1209
+ 'mail_mode' => $res['mail_mode'],
1210
+ 'mail_mode_user' => $res['mail_mode_user'],
1211
+ 'mail_send_email_payment' => $res['mail_send_email_payment'],
1212
+ 'mail_send_email_payment_user' => $res['mail_send_email_payment_user'],
1213
+ 'mail_attachment' => $res['mail_attachment'],
1214
+ 'mail_attachment_user' => $res['mail_attachment_user'],
1215
+ 'mail_emptyfields' => $res['mail_emptyfields'],
1216
+ 'mail_verify' => $res['mail_verify'],
1217
+ 'mail_verify_expiretime' => $res['mail_verify_expiretime'],
1218
+ 'mail_verification_post_id' => $res['mail_verification_post_id'],
1219
+ 'script_mail' => $res['script_mail'],
1220
+ 'script_mail_user' => $res['script_mail_user'],
1221
+ );
1222
+ $form_options = json_encode($form_options);
1223
+ $this->model->add_form_options($form_options, $form_id);
1224
+ }
1225
+
1226
  public function apply() {
1227
  $tabs_loaded = json_decode(WDW_FM_Library(self::PLUGIN)->get('fm_tabs_loaded', '[]', false));
1228
  $message = $this->save_db();
1232
  }
1233
  $backup_id = $this->model->get_max_row('formmaker_backup', 'backup_id', 'intval');
1234
  if (array_search('form_options_tab', $tabs_loaded) !== false) {
1235
+ $this->save_db_form_options($current_id, $backup_id);
1236
+ } else {
1237
+ /* Case is working when settings tab not opened and form_options field json data is empty
1238
+ * For old forms where form_options field is empty yet
1239
+ */
1240
+ $this->set_form_options_for_old( $current_id );
1241
  }
1242
  if (array_search('form_display_tab', $tabs_loaded) !== false) {
1243
  $this->save_dis_options();
admin/models/FMPaypalInfo.php CHANGED
@@ -7,12 +7,31 @@ class FMModelPaypal_info extends FMAdminModel {
7
  /**
8
  * Get form session.
9
  *
10
- * @param int $id
 
11
  * @return object $row
12
  */
13
  public function get_form_session( $id = 0 ) {
14
  global $wpdb;
15
  $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_sessions WHERE group_id="%d"', $id));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  return $row;
18
  }
7
  /**
8
  * Get form session.
9
  *
10
+ * @param int $id
11
+ *
12
  * @return object $row
13
  */
14
  public function get_form_session( $id = 0 ) {
15
  global $wpdb;
16
  $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_sessions WHERE group_id="%d"', $id));
17
+ $stripe_transaction = $this->get_stripe_transaction_id($id);
18
+ if ( !empty($stripe_transaction) ) {
19
+ $row->transaction_id = $stripe_transaction->transaction_id;
20
+ }
21
+
22
+ return $row;
23
+ }
24
+
25
+ /**
26
+ * Get stripe transaction id.
27
+ *
28
+ * @param int $id
29
+ *
30
+ * @return array|object|void|null
31
+ */
32
+ public function get_stripe_transaction_id( $id = 0 ) {
33
+ global $wpdb;
34
+ $row = $wpdb->get_row($wpdb->prepare('SELECT element_value AS transaction_id FROM ' . $wpdb->prefix . 'formmaker_submits WHERE element_label = "%s" AND group_id="%d"', 'stripeToken', $id));
35
 
36
  return $row;
37
  }
admin/models/Manage_fm.php CHANGED
@@ -3934,6 +3934,20 @@ class FMModelManage_fm extends FMAdminModel {
3934
  return $wpdb->get_var($query);
3935
  }
3936
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3937
  /**
3938
  * Get request value.
3939
  *
3934
  return $wpdb->get_var($query);
3935
  }
3936
 
3937
+ /**
3938
+ * Add form options to db
3939
+ *
3940
+ * @param $json_data
3941
+ * @param $id form id
3942
+ *
3943
+ * @return bool
3944
+ */
3945
+ public function add_form_options( $json_data, $id ) {
3946
+ global $wpdb;
3947
+ $update = $wpdb->update($wpdb->prefix."formmaker", array("form_options" => $json_data), array("id" => $id));
3948
+ return $update;
3949
+ }
3950
+
3951
  /**
3952
  * Get request value.
3953
  *
admin/models/Submissions_fm.php CHANGED
@@ -19,7 +19,7 @@ class FMModelSubmissions_fm extends FMAdminModel {
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');
@@ -181,6 +181,10 @@ class FMModelSubmissions_fm extends FMAdminModel {
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
  }
19
  */
20
  public function get_forms() {
21
  global $wpdb;
22
+ $query = "SELECT `id`, `title`, `published`, `form_fields`, `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');
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_submitter_mail') ) {
185
+ $form->label_order = $form->label_order . 'user_email#**id**#user_email#**label**#type_user_email#****#';
186
+ $form->label_order = $form->label_order . 'verifyInfo#**id**#verify_info#**label**#type_user_email_verify#****#';
187
+ }
188
  if ( !empty($form->label_order) && strpos($form->label_order, 'type_paypal_') ) {
189
  $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#****#";
190
  }
admin/views/FMPaypalInfo.php CHANGED
@@ -35,6 +35,14 @@ class FMViewPaypal_info extends FMAdminView {
35
  <h2><?php _e('Payment Info', WDFMInstance(self::PLUGIN)->prefix); ?></h2>
36
  <table class="admintable">
37
  <?php
 
 
 
 
 
 
 
 
38
  if ( $row->currency ) {
39
  ?>
40
  <tr>
35
  <h2><?php _e('Payment Info', WDFMInstance(self::PLUGIN)->prefix); ?></h2>
36
  <table class="admintable">
37
  <?php
38
+ if ( !empty($row->transaction_id) ) {
39
+ ?>
40
+ <tr>
41
+ <td class="key"><?php _e('Transaction ID', WDFMInstance(self::PLUGIN)->prefix); ?></td>
42
+ <td><?php echo $row->transaction_id; ?></td>
43
+ </tr>
44
+ <?php
45
+ }
46
  if ( $row->currency ) {
47
  ?>
48
  <tr>
admin/views/Manage_fm.php CHANGED
@@ -263,7 +263,6 @@ class FMViewManage_fm extends FMAdminView {
263
  wp_enqueue_media();
264
  wp_enqueue_script('google-maps');
265
  wp_enqueue_script(WDFMInstance(self::PLUGIN)->handle_prefix . '-codemirror');
266
- wp_enqueue_script(WDFMInstance(self::PLUGIN)->handle_prefix . '-codemirror');
267
  wp_enqueue_script(WDFMInstance(self::PLUGIN)->handle_prefix . '-formatting');
268
  wp_enqueue_script(WDFMInstance(self::PLUGIN)->handle_prefix . '-clike');
269
  wp_enqueue_script(WDFMInstance(self::PLUGIN)->handle_prefix . '-css');
@@ -710,6 +709,13 @@ class FMViewManage_fm extends FMAdminView {
710
  jQuery( '.fm-topbar_user_guid' ).attr( 'href','https://help.10web.io/hc/en-us/articles/'+ ui.newTab.data( 'help-url' ) + '?utm_source=form_maker&utm_medium=free_plugin' );
711
  },
712
  beforeActivate: function( event, ui ) {
 
 
 
 
 
 
 
713
  if (ui.newTab.index() != 0) {
714
  jQuery('.button_revisions').addClass('fm-hide');
715
  }
@@ -1656,9 +1662,9 @@ class FMViewManage_fm extends FMAdminView {
1656
  <div class="wd-table-col-100">
1657
  <div class="wd-box-section">
1658
  <div class="wd-box-content">
1659
- <span class="wd-group">
1660
- <textarea cols="60" rows="30" name="javascript" id="form_javascript"><?php echo $row->javascript; ?></textarea>
1661
- </span>
1662
  </div>
1663
  </div>
1664
  </div>
@@ -1673,42 +1679,25 @@ class FMViewManage_fm extends FMAdminView {
1673
  $paramss = array();
1674
  $all_ids = array();
1675
  $all_labels = array();
1676
- // has logic to show/hide other fields
1677
- $has_condition_logic = array(
1678
- "type_text",
1679
- "type_password",
1680
- "type_textarea",
1681
- "type_name",
1682
- "type_star_rating",
1683
- "type_number",
1684
- "type_phone",
1685
- "type_phone_new",
1686
- "type_submitter_mail",
1687
- "type_address",
1688
- "type_spinner",
1689
- "type_checkbox",
1690
- "type_radio",
1691
- "type_own_select",
1692
- "type_paypal_price",
1693
- "type_paypal_price_new",
1694
- "type_paypal_select",
1695
- "type_paypal_checkbox",
1696
- "type_paypal_radio",
1697
- "type_paypal_shipping",
1698
- "type_date_new",
1699
- "type_time",
1700
- "type_editor",
1701
- "type_file_upload",
1702
- "type_slider",
1703
- );
1704
- // show/hide state should never change
1705
- $not_unconcealed = array(
1706
  "type_recaptcha",
1707
  "type_captcha",
1708
  "type_arithmetic_captcha",
1709
- "type_hidden",
 
 
 
 
 
 
 
 
 
 
1710
  );
1711
  $select_type_fields = array(
 
1712
  "type_address",
1713
  "type_checkbox",
1714
  "type_radio",
@@ -1727,20 +1716,28 @@ class FMViewManage_fm extends FMAdminView {
1727
  array_push($ids, $id_field);
1728
  array_push($all_ids, $id_field);
1729
  $temp = explode('*:*type*:*', $temp[1]);
1730
- if ( $temp[0] == 'type_address') {
 
1731
  $address_fields_array[$i] = $field;
1732
  }
1733
- array_push($types, $temp[0]);
1734
- if ($temp[0] != 'type_submit_reset') {
 
1735
  $temp = explode('*:*w_field_label*:*', $temp[1]);
 
 
 
 
 
1736
  }
1737
  else {
1738
  // Submit button case.
1739
  $temp = explode('*:*w_field_label*:*', $temp[1]);
1740
  $temp = explode('*:*w_submit_title*:*', $temp[1]);
 
1741
  }
1742
- array_push($labels, str_replace(array("'",'"'),array('%quot%','%dquot%'), $temp[0]));
1743
- array_push($all_labels, str_replace(array("'",'"'),array('%quot%','%dquot%'), $temp[0]));
1744
  array_push($paramss, str_replace(array("'",'"'),array('%quot%','%dquot%'), $temp[1]));
1745
  }
1746
  $params_names = array();
@@ -1799,21 +1796,13 @@ class FMViewManage_fm extends FMAdminView {
1799
  $paramss_for_match = $paramss;
1800
  $types_for_match = $types;
1801
  foreach ( $types as $key => $value ) {
1802
- if ( !in_array($value, $has_condition_logic) ) {
1803
  unset($ids_for_match[$key]);
1804
  unset($labels_for_match[$key]);
1805
  unset($types_for_match[$key]);
1806
  unset($paramss_for_match[$key]);
1807
  }
1808
  }
1809
- foreach ( $types as $key => $value ) {
1810
- if ( in_array($value, $not_unconcealed) ) {
1811
- unset($ids[$key]);
1812
- unset($labels[$key]);
1813
- unset($types[$key]);
1814
- unset($paramss[$key]);
1815
- }
1816
- }
1817
  if ( !empty($address_fields_array) ) {
1818
  foreach ( $address_fields_array as $key => $val ) {
1819
  unset($ids_for_match[$key]);
@@ -1836,8 +1825,7 @@ class FMViewManage_fm extends FMAdminView {
1836
  'types' => $types,
1837
  'types_for_match' => $types_for_match,
1838
  'params' => str_replace(array("'",'"'), array('%quot%','%dquot%'),$paramss),
1839
- 'params_for_match' => str_replace(array("'",'"'), array('%quot%','%dquot%'),$paramss_for_match),
1840
- ));
1841
 
1842
  $show_hide = array();
1843
  $field_label = array();
@@ -1879,186 +1867,185 @@ class FMViewManage_fm extends FMAdminView {
1879
  <button class="wd-button button-primary" onclick="add_condition(); return false;"><?php _e('Add Condition', WDFMInstance(self::PLUGIN)->prefix); ?></button>
1880
  </div>
1881
  <?php
1882
- for ( $k = 0; $k < $count_of_conditions; $k++ ) {
1883
- if ( in_array($field_label[$k], $all_ids) ) { ?>
1884
- <div id="condition<?php echo $k; ?>" class="fm_condition">
1885
- <div id="conditional_fileds<?php echo $k; ?>">
1886
- <select id="show_hide<?php echo $k; ?>" name="show_hide<?php echo $k; ?>" class="fm_condition_show_hide">
1887
- <option value="1" <?php if ( $show_hide[$k] == 1 ) {
1888
- echo 'selected="selected"';
1889
- } ?>><?php _e('Show', WDFMInstance(self::PLUGIN)->prefix); ?></option>
1890
- <option value="0" <?php if ( $show_hide[$k] == 0 ) {
1891
- echo 'selected="selected"';
1892
- } ?>><?php _e('Hide', WDFMInstance(self::PLUGIN)->prefix); ?></option>
1893
- </select>
1894
- <select id="fields<?php echo $k; ?>" name="fields<?php echo $k; ?>" class="fm_condition_fields">
1895
  <?php
1896
- foreach ( $labels as $key => $value ) {
1897
- $selected = ( $field_label[$k] == $all_ids[$key] ) ? 'selected="selected"' : '';
1898
- echo '<option value="' . $all_ids[$key] . '" ' . $selected . '>' . str_replace(array('%quot%','%dquot%'),array("'",'"'),$value) . '</option>';
1899
- }
1900
  ?>
1901
- </select>
1902
- <span>if</span>
1903
- <select id="all_any<?php echo $k; ?>" name="all_any<?php echo $k; ?>" class="fm_condition_all_any">
1904
- <option value="and" <?php if ( $all_any[$k] == "and" ) {
1905
- echo 'selected="selected"';
1906
- } ?>><?php _e('all', WDFMInstance(self::PLUGIN)->prefix); ?></option>
1907
- <option value="or" <?php if ( $all_any[$k] == "or" ) {
1908
- echo 'selected="selected"';
1909
- } ?>><?php _e('any', WDFMInstance(self::PLUGIN)->prefix); ?></option>
1910
- </select>
1911
- <span style="display: inline-block; width: 100%; max-width: 235px;"><?php _e('of the following match:', WDFMInstance(self::PLUGIN)->prefix); ?></span>
1912
- <span class="dashicons dashicons-trash" onclick="delete_condition('<?php echo $k; ?>')"></span>
1913
- <span id="fm-condition-fields-<?php echo $k; ?>"
1914
- data-conditions-field-ids='<?php echo json_encode($ids);?>'
1915
- data-conditions-field-labels='<?php echo json_encode($labels);?>'
1916
- data-conditions-field-types='<?php echo json_encode($types);?>'
1917
- data-conditions-field-params='<?php echo json_encode($paramss);?>'
1918
- data-conditions-field-ids_for_match='<?php echo json_encode($ids_for_match);?>'
1919
- data-conditions-field-labels_for_match='<?php echo json_encode($labels_for_match);?>'
1920
- data-conditions-field-types_for_match='<?php echo json_encode($types_for_match);?>'
1921
- data-conditions-field-params_for_match='<?php echo json_encode($paramss_for_match);?>'
1922
- ></span>
1923
- <span class="dashicons dashicons-plus-alt" onclick="add_condition_fields(<?php echo $k; ?>)"></span>
1924
- </div>
1925
- <?php
1926
- if ( $condition_params[$k] ) {
1927
- $_params = explode('*:*next_condition*:*', $condition_params[$k]);
1928
- $_params = array_slice($_params, 0, count($_params) - 1);
1929
- foreach ( $_params as $key => $_param ) {
1930
- $key_select_or_input = '';
1931
- $param_values = explode('***', $_param);
1932
- $multiselect = explode('@@@', $param_values[2]);
1933
- // To remove the last element from array we are using array_pop() function
1934
- if ( count( $multiselect ) > 1 ) {
1935
- array_pop( $multiselect );
1936
- }
1937
- if ( in_array($param_values[0], $ids) ) { ?>
1938
- <div id="condition_div<?php echo $k; ?>_<?php echo $key; ?>">
1939
- <select id="field_labels<?php echo $k; ?>_<?php echo $key; ?>" class="fm_condition_field_labels" onchange="change_choices(this.options[this.selectedIndex].id+'_<?php echo $key; ?>')">
1940
- <?php
1941
- foreach ( $labels_for_match as $key_label => $value_label ) {
1942
- $selected = '';
1943
- if ( $param_values[0] == $ids[$key_label] ) {
1944
- $key_select_or_input = $ids_index[$param_values[0]];
1945
- $selected = 'selected="selected"';
1946
- $multiple = ($types[$key_select_or_input] == "type_checkbox" || $types[$key_select_or_input] == "type_paypal_checkbox") ? 'multiple="multiple" class="multiple_select"' : '';
 
 
 
 
 
 
 
 
 
 
 
1947
  }
1948
- if ( $field_label[$k] != $ids[$key_label] ) {
1949
- echo '<option id="' . $k . '_' . $key_label . '" value="' . $ids[$key_label] . '" ' . $selected . '>' . str_replace(array('%quot%','%dquot%'),array("'",'"'),$value_label) . '</option>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1950
  }
1951
- }
1952
- ?>
1953
- </select>
1954
- <?php
1955
- WDW_FM_Library::is_select_condition_HTML($types[$key_select_or_input], $k, $key, $param_values[1]);
1956
- switch ( $types[$key_select_or_input] ) {
1957
- case "type_own_select":
1958
- case "type_paypal_select":
1959
- $w_size = explode('*:*w_size*:*', $paramss[$key_select_or_input]);
1960
- break;
1961
- case "type_radio":
1962
- case "type_checkbox":
1963
- case "type_paypal_radio":
1964
- case "type_paypal_checkbox":
1965
- case "type_paypal_shipping":
1966
- $w_size = explode('*:*w_flow*:*', $paramss[$key_select_or_input]);
1967
- break;
1968
- }
1969
- if ( !empty($w_size) ) {
1970
- $w_choices = explode('*:*w_choices*:*', $w_size[1]);
1971
- $w_choices_array = explode('***', $w_choices[0]);
1972
- if ( $types[$key_select_or_input] == 'type_radio' || $types[$key_select_or_input] == 'type_checkbox' || $types[$key_select_or_input] == 'type_own_select' ) {
1973
- if ( strpos($w_choices[1], 'w_value_disabled') > -1 ) {
1974
- // case for enabled use_for_submission
1975
- if ( strpos($w_choices[1], 'w_use_for_submission') === FALSE ) {
1976
- $w_value_disabled = explode('*:*w_value_disabled*:*', $w_choices[1]);
1977
  }
1978
  else {
1979
- $w_value_disabled = explode('*:*w_use_for_submission*:*', $w_choices[1]);
1980
  }
1981
- $w_choices_value = explode('*:*w_choices_value*:*', $w_value_disabled[1]);
1982
- $w_choices_value = $w_choices_value[0];
1983
- }
1984
- if ( isset($w_choices_value) ) {
1985
- $w_choices_value_array = explode('***', $w_choices_value);
1986
  }
1987
  else {
1988
- $w_choices_value_array = $w_choices_array;
 
 
1989
  }
1990
  }
1991
- else {
1992
- $w_choices_price = explode('*:*w_choices_price*:*', $w_choices[1]);
1993
- $w_choices_value = $w_choices_price[0];
1994
- $w_choices_value_array = explode('***', $w_choices_value);
1995
- }
1996
- }
1997
- else {
1998
- $w_choices_price = explode('*:*w_choices_price*:*', $w_choices[1]);
1999
- $w_choices_value = $w_choices_price[0];
2000
- $w_choices_value_array = explode('***', $w_choices_value);
2001
- }
2002
- $showHide = $param_values[1] == '=' || $param_values[1] == '!' ? 'style="display:none"' : '';
2003
- ?>
2004
- <?php if ( $key_select_or_input !== '' && in_array($types[$key_select_or_input], $select_type_fields) ) { ?>
2005
- <select id="field_value<?php echo $k; ?>_<?php echo $key; ?>" <?php echo $multiple; echo $showHide?> class="fm_condition_field_select_value">
2006
- <?php
2007
- for ( $m = 0; $m < count($w_choices_array); $m++ ) {
2008
- if ( $types[$key_select_or_input] == "type_paypal_checkbox" || $types[$key_select_or_input] == "type_paypal_radio" || $types[$key_select_or_input] == "type_paypal_shipping" || $types[$key_select_or_input] == "type_paypal_select" ) {
2009
- $w_choice = $w_choices_array[$m] . '*:*value*:*' . $w_choices_value_array[$m];
2010
- }
2011
- else {
2012
- $w_choice = $w_choices_value_array[$m];
2013
- }
2014
- $selected = ( in_array($w_choice, $multiselect) ) ? 'selected="selected"' : '';
2015
- if ( strpos($w_choices_array[$m], '[') === FALSE && strpos($w_choices_array[$m], ']') === FALSE ) {
2016
- echo '<option id="choise_' . $k . '_' . $m . '" value="' . $w_choice . '" ' . $selected . '>' . str_replace(array('%quot%','%dquot%'),array("'",'"'),$w_choices_array[$m]) . '</option>';
2017
  }
2018
- }
2019
- if ( $types[$key_select_or_input] == 'type_address' ) {
2020
- $w_countries = WDW_FM_Library(self::PLUGIN)->get_countries();
2021
- foreach ( $w_countries as $w_country ) {
2022
- $selected = ( in_array($w_country, $multiselect) ) ? 'selected="selected"' : '';
2023
- echo '<option value="' . $w_country . '" ' . $selected . '>' . $w_country . '</option>';
2024
  }
2025
- }
2026
- ?>
2027
- </select>
2028
- <?php }
2029
- else {
2030
- if ( $key_select_or_input != '' && ($types[$key_select_or_input] == "type_number" || $types[$key_select_or_input] == "type_phone") ) {
2031
- $onkeypress_function = "onkeypress='return check_isnum_space(event)'";
2032
- }
2033
- else {
2034
- if ( $key_select_or_input != '' && ($types[$key_select_or_input] == "type_paypal_price" || $types[$key_select_or_input] == "type_paypal_price_new") ) {
2035
- $onkeypress_function = "onkeypress='return check_isnum_point(event)'";
2036
  }
2037
  else {
2038
- $onkeypress_function = "";
 
 
 
 
 
2039
  }
2040
- }
2041
- ?>
2042
- <input <?php echo $showHide; ?> id="field_value<?php echo $k; ?>_<?php echo $key; ?>" type="text" value="<?php echo $param_values[2]; ?>" <?php echo $onkeypress_function; ?> class="fm_condition_field_input_value">
2043
- <?php
2044
- if($types[$key_select_or_input] == 'type_time') {
2045
  ?>
2046
- <label>Please use HH:MM format for 24-hour time (e.g. 22:15), and HH:MM:AM or HH:MM:PM for 12-hour time (e.g. 05:20:AM / 07:30:PM).</label>
2047
  <?php
2048
- }
2049
- ?>
2050
- <?php } ?>
2051
- <span class="dashicons dashicons-trash" id="delete_condition<?php echo $k; ?>_<?php echo $key; ?>" onclick="delete_field_condition('<?php echo $k; ?>_<?php echo $key; ?>')"></span>
2052
- </div>
2053
- <?php
 
 
 
 
 
2054
  }
2055
  }
2056
  }
2057
- }
2058
- ?>
2059
- </div>
2060
- <?php
2061
- }
2062
  ?>
2063
  </div>
2064
  </div>
263
  wp_enqueue_media();
264
  wp_enqueue_script('google-maps');
265
  wp_enqueue_script(WDFMInstance(self::PLUGIN)->handle_prefix . '-codemirror');
 
266
  wp_enqueue_script(WDFMInstance(self::PLUGIN)->handle_prefix . '-formatting');
267
  wp_enqueue_script(WDFMInstance(self::PLUGIN)->handle_prefix . '-clike');
268
  wp_enqueue_script(WDFMInstance(self::PLUGIN)->handle_prefix . '-css');
709
  jQuery( '.fm-topbar_user_guid' ).attr( 'href','https://help.10web.io/hc/en-us/articles/'+ ui.newTab.data( 'help-url' ) + '?utm_source=form_maker&utm_medium=free_plugin' );
710
  },
711
  beforeActivate: function( event, ui ) {
712
+ var uri = window.location.toString();
713
+ if ( uri.indexOf('fieldset_id') && typeof ui.newTab.attr('id') != 'undefined' && ui.newTab.attr('id') != 'form_options_tab' ) {
714
+ var regex = /(&fieldset_id=(.*)&)/;
715
+ var new_url = uri.replace(regex, '&', uri );
716
+ window.history.replaceState({}, document.title, new_url);
717
+ form_maker_options_tabs('general');
718
+ }
719
  if (ui.newTab.index() != 0) {
720
  jQuery('.button_revisions').addClass('fm-hide');
721
  }
1662
  <div class="wd-table-col-100">
1663
  <div class="wd-box-section">
1664
  <div class="wd-box-content">
1665
+ <span class="wd-group">
1666
+ <textarea cols="60" rows="30" name="javascript" id="form_javascript"><?php echo $row->javascript; ?></textarea>
1667
+ </span>
1668
  </div>
1669
  </div>
1670
  </div>
1679
  $paramss = array();
1680
  $all_ids = array();
1681
  $all_labels = array();
1682
+ // Can not be selected as a condition value
1683
+ $not_has_condition_logic = array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1684
  "type_recaptcha",
1685
  "type_captcha",
1686
  "type_arithmetic_captcha",
1687
+ "type_submit_reset",
1688
+ "type_mark_map",
1689
+ "type_editor",
1690
+ "type_map",
1691
+ "type_grading",
1692
+ "type_matrix",
1693
+ "type_button",
1694
+ "type_password",
1695
+ "type_signature",
1696
+ "type_paypal_total",
1697
+ "type_stripe"
1698
  );
1699
  $select_type_fields = array(
1700
+ "type_country",
1701
  "type_address",
1702
  "type_checkbox",
1703
  "type_radio",
1716
  array_push($ids, $id_field);
1717
  array_push($all_ids, $id_field);
1718
  $temp = explode('*:*type*:*', $temp[1]);
1719
+ $type = $temp[0];
1720
+ if ( $type == 'type_address') {
1721
  $address_fields_array[$i] = $field;
1722
  }
1723
+ array_push($types, $type);
1724
+ // The label name is formed by type.
1725
+ if ($type != 'type_submit_reset') {
1726
  $temp = explode('*:*w_field_label*:*', $temp[1]);
1727
+ $label_name = $temp[0];
1728
+ if ( $type == 'type_button' ) {
1729
+ $temp = explode('*:*w_title*:*', $temp[1]);
1730
+ $label_name = $temp[0];
1731
+ }
1732
  }
1733
  else {
1734
  // Submit button case.
1735
  $temp = explode('*:*w_field_label*:*', $temp[1]);
1736
  $temp = explode('*:*w_submit_title*:*', $temp[1]);
1737
+ $label_name = $temp[0];
1738
  }
1739
+ array_push($labels, str_replace(array("'",'"'),array('%quot%','%dquot%'), $label_name));
1740
+ array_push($all_labels, str_replace(array("'",'"'),array('%quot%','%dquot%'), $label_name));
1741
  array_push($paramss, str_replace(array("'",'"'),array('%quot%','%dquot%'), $temp[1]));
1742
  }
1743
  $params_names = array();
1796
  $paramss_for_match = $paramss;
1797
  $types_for_match = $types;
1798
  foreach ( $types as $key => $value ) {
1799
+ if ( in_array($value, $not_has_condition_logic) ) {
1800
  unset($ids_for_match[$key]);
1801
  unset($labels_for_match[$key]);
1802
  unset($types_for_match[$key]);
1803
  unset($paramss_for_match[$key]);
1804
  }
1805
  }
 
 
 
 
 
 
 
 
1806
  if ( !empty($address_fields_array) ) {
1807
  foreach ( $address_fields_array as $key => $val ) {
1808
  unset($ids_for_match[$key]);
1825
  'types' => $types,
1826
  'types_for_match' => $types_for_match,
1827
  'params' => str_replace(array("'",'"'), array('%quot%','%dquot%'),$paramss),
1828
+ 'params_for_match' => str_replace(array("'",'"'), array('%quot%','%dquot%'),$paramss_for_match)));
 
1829
 
1830
  $show_hide = array();
1831
  $field_label = array();
1867
  <button class="wd-button button-primary" onclick="add_condition(); return false;"><?php _e('Add Condition', WDFMInstance(self::PLUGIN)->prefix); ?></button>
1868
  </div>
1869
  <?php
1870
+ for ( $k = 0; $k < $count_of_conditions; $k++ ) {
1871
+ if ( in_array($field_label[$k], $all_ids) ) { ?>
1872
+ <div id="condition<?php echo $k; ?>" class="fm_condition">
1873
+ <div id="conditional_fileds<?php echo $k; ?>">
1874
+ <select id="show_hide<?php echo $k; ?>" name="show_hide<?php echo $k; ?>" class="fm_condition_show_hide">
1875
+ <option value="1" <?php if ( $show_hide[$k] == 1 ) {
1876
+ echo 'selected="selected"';
1877
+ } ?>><?php _e('Show', WDFMInstance(self::PLUGIN)->prefix); ?></option>
1878
+ <option value="0" <?php if ( $show_hide[$k] == 0 ) {
1879
+ echo 'selected="selected"';
1880
+ } ?>><?php _e('Hide', WDFMInstance(self::PLUGIN)->prefix); ?></option>
1881
+ </select>
 
1882
  <?php
1883
+ $disabled = ( !empty($condition_params[$k]) ) ? 'disabled="disabled"' : '';
 
 
 
1884
  ?>
1885
+ <select id="fields<?php echo $k; ?>" name="fields<?php echo $k; ?>" class="fm_condition_fields" <?php echo $disabled?>>
1886
+ <?php
1887
+ foreach ( $labels as $key => $value ) {
1888
+ $selected = ( $field_label[$k] == $all_ids[$key] ) ? 'selected="selected"' : '';
1889
+ echo '<option value="' . $all_ids[$key] . '" ' . $selected . '>' . str_replace(array('%quot%','%dquot%'),array("'",'"'),$value) . '</option>';
1890
+ }
1891
+ ?>
1892
+ </select>
1893
+ <span>if</span>
1894
+ <select id="all_any<?php echo $k; ?>" name="all_any<?php echo $k; ?>" class="fm_condition_all_any">
1895
+ <option value="and" <?php if ( $all_any[$k] == "and" ) {
1896
+ echo 'selected="selected"';
1897
+ } ?>><?php _e('all', WDFMInstance(self::PLUGIN)->prefix); ?></option>
1898
+ <option value="or" <?php if ( $all_any[$k] == "or" ) {
1899
+ echo 'selected="selected"';
1900
+ } ?>><?php _e('any', WDFMInstance(self::PLUGIN)->prefix); ?></option>
1901
+ </select>
1902
+ <span style="display: inline-block; width: 100%; max-width: 235px;"><?php _e('of the following match:', WDFMInstance(self::PLUGIN)->prefix); ?></span>
1903
+ <span class="dashicons dashicons-trash" onclick="delete_condition('<?php echo $k; ?>')"></span>
1904
+ <span id="fm-condition-fields-<?php echo $k; ?>"
1905
+ data-conditions-field-ids='<?php echo json_encode($ids);?>'
1906
+ data-conditions-field-labels='<?php echo json_encode($labels);?>'
1907
+ data-conditions-field-types='<?php echo json_encode($types);?>'
1908
+ data-conditions-field-params='<?php echo json_encode($paramss);?>'
1909
+ data-conditions-field-ids_for_match='<?php echo json_encode($ids_for_match);?>'
1910
+ data-conditions-field-labels_for_match='<?php echo json_encode($labels_for_match);?>'
1911
+ data-conditions-field-types_for_match='<?php echo json_encode($types_for_match);?>'
1912
+ data-conditions-field-params_for_match='<?php echo json_encode($paramss_for_match);?>'
1913
+ ></span>
1914
+ <span class="dashicons dashicons-plus-alt" onclick="add_condition_fields(<?php echo $k; ?>)"></span>
1915
+ </div>
1916
+ <?php
1917
+ if ( $condition_params[$k] ) {
1918
+ $_params = explode('*:*next_condition*:*', $condition_params[$k]);
1919
+ $_params = array_slice($_params, 0, count($_params) - 1);
1920
+ foreach ( $_params as $key => $_param ) {
1921
+ $key_select_or_input = '';
1922
+ $param_values = explode('***', $_param);
1923
+ $multiselect = explode('@@@', $param_values[2]);
1924
+ // To remove the last element from array we are using array_pop() function
1925
+ if ( count( $multiselect ) > 1 ) {
1926
+ array_pop( $multiselect );
1927
+ }
1928
+ if ( in_array($param_values[0], $ids) ) { ?>
1929
+ <div id="condition_div<?php echo $k; ?>_<?php echo $key; ?>" class="fm_condition_div">
1930
+ <select id="field_labels<?php echo $k; ?>_<?php echo $key; ?>" class="fm_condition_field_labels" onchange="change_choices(this.options[this.selectedIndex].id+'_<?php echo $key; ?>')">
1931
+ <?php
1932
+ foreach ( $labels_for_match as $key_label => $value_label ) {
1933
+ $selected = '';
1934
+ if ( $param_values[0] == $ids[$key_label] ) {
1935
+ $key_select_or_input = $ids_index[$param_values[0]];
1936
+ $selected = 'selected="selected"';
1937
+ $multiple = ($types[$key_select_or_input] == "type_checkbox" || $types[$key_select_or_input] == "type_paypal_checkbox") ? 'multiple="multiple" class="multiple_select"' : '';
1938
+ }
1939
+ if ( $field_label[$k] != $ids[$key_label] ) {
1940
+ echo '<option id="' . $k . '_' . $key_label . '" value="' . $ids[$key_label] . '" ' . $selected . '>' . str_replace(array('%quot%','%dquot%'),array("'",'"'),$value_label) . '</option>';
1941
+ }
1942
  }
1943
+ ?>
1944
+ </select>
1945
+ <?php
1946
+ WDW_FM_Library::is_select_condition_HTML($types[$key_select_or_input], $k, $key, $param_values[1]);
1947
+ switch ( $types[$key_select_or_input] ) {
1948
+ case "type_own_select":
1949
+ case "type_paypal_select":
1950
+ $w_size = explode('*:*w_size*:*', $paramss[$key_select_or_input]);
1951
+ break;
1952
+ case "type_radio":
1953
+ case "type_checkbox":
1954
+ case "type_paypal_radio":
1955
+ case "type_paypal_checkbox":
1956
+ case "type_paypal_shipping":
1957
+ $w_size = explode('*:*w_flow*:*', $paramss[$key_select_or_input]);
1958
+ break;
1959
  }
1960
+ if ( !empty($w_size) ) {
1961
+ $w_choices = explode('*:*w_choices*:*', $w_size[1]);
1962
+ $w_choices_array = explode('***', $w_choices[0]);
1963
+ if ( $types[$key_select_or_input] == 'type_radio' || $types[$key_select_or_input] == 'type_checkbox' || $types[$key_select_or_input] == 'type_own_select' ) {
1964
+ if ( strpos($w_choices[1], 'w_value_disabled') > -1 ) {
1965
+ // case for enabled use_for_submission
1966
+ if ( strpos($w_choices[1], 'w_use_for_submission') === FALSE ) {
1967
+ $w_value_disabled = explode('*:*w_value_disabled*:*', $w_choices[1]);
1968
+ }
1969
+ else {
1970
+ $w_value_disabled = explode('*:*w_use_for_submission*:*', $w_choices[1]);
1971
+ }
1972
+ $w_choices_value = explode('*:*w_choices_value*:*', $w_value_disabled[1]);
1973
+ $w_choices_value = $w_choices_value[0];
1974
+ }
1975
+ if ( isset($w_choices_value) ) {
1976
+ $w_choices_value_array = explode('***', $w_choices_value);
 
 
 
 
 
 
 
 
 
1977
  }
1978
  else {
1979
+ $w_choices_value_array = $w_choices_array;
1980
  }
 
 
 
 
 
1981
  }
1982
  else {
1983
+ $w_choices_price = explode('*:*w_choices_price*:*', $w_choices[1]);
1984
+ $w_choices_value = $w_choices_price[0];
1985
+ $w_choices_value_array = explode('***', $w_choices_value);
1986
  }
1987
  }
1988
+ // Hides fields for which the 'conditionfield_select_value' field is not applicable.
1989
+ $showHide = ( in_array( $param_values[1], array('empty', 'checked', 'unchecked', '=', '!') ) ) ? 'style="display:none"' : '';
1990
+ ?>
1991
+ <?php if ( $key_select_or_input !== '' && in_array($types[$key_select_or_input], $select_type_fields) ) { ?>
1992
+ <select id="field_value<?php echo $k; ?>_<?php echo $key; ?>" <?php echo $multiple; echo $showHide?> class="fm_condition_field_select_value">
1993
+ <?php
1994
+ for ( $m = 0; $m < count($w_choices_array); $m++ ) {
1995
+ if ( $types[$key_select_or_input] == "type_paypal_checkbox" || $types[$key_select_or_input] == "type_paypal_radio" || $types[$key_select_or_input] == "type_paypal_shipping" || $types[$key_select_or_input] == "type_paypal_select" ) {
1996
+ $w_choice = $w_choices_array[$m] . '*:*value*:*' . $w_choices_value_array[$m];
1997
+ }
1998
+ else {
1999
+ $w_choice = $w_choices_value_array[$m];
2000
+ }
2001
+ $selected = ( in_array($w_choice, $multiselect) ) ? 'selected="selected"' : '';
2002
+ if ( strpos($w_choices_array[$m], '[') === FALSE && strpos($w_choices_array[$m], ']') === FALSE ) {
2003
+ echo '<option id="choise_' . $k . '_' . $m . '" value="' . $w_choice . '" ' . $selected . '>' . str_replace(array('%quot%','%dquot%'),array("'",'"'),$w_choices_array[$m]) . '</option>';
2004
+ }
 
 
 
 
 
 
 
 
 
2005
  }
2006
+ if ( in_array($types[$key_select_or_input], array('type_address', 'type_country')) ) {
2007
+ $w_countries = WDW_FM_Library(self::PLUGIN)::get_countries();
2008
+ foreach ( $w_countries as $w_country ) {
2009
+ $selected = ( in_array($w_country, $multiselect) ) ? 'selected="selected"' : '';
2010
+ echo '<option value="' . $w_country . '" ' . $selected . '>' . $w_country . '</option>';
2011
+ }
2012
  }
2013
+ ?>
2014
+ </select>
2015
+ <?php }
2016
+ else {
2017
+ if ( $key_select_or_input != '' && ($types[$key_select_or_input] == "type_number" || $types[$key_select_or_input] == "type_phone") ) {
2018
+ $onkeypress_function = "onkeypress='return check_isnum_space(event)'";
 
 
 
 
 
2019
  }
2020
  else {
2021
+ if ( $key_select_or_input != '' && ($types[$key_select_or_input] == "type_paypal_price" || $types[$key_select_or_input] == "type_paypal_price_new") ) {
2022
+ $onkeypress_function = "onkeypress='return check_isnum_point(event)'";
2023
+ }
2024
+ else {
2025
+ $onkeypress_function = "";
2026
+ }
2027
  }
 
 
 
 
 
2028
  ?>
2029
+ <input <?php echo $showHide; ?> id="field_value<?php echo $k; ?>_<?php echo $key; ?>" type="text" value="<?php echo $param_values[2]; ?>" <?php echo $onkeypress_function; ?> class="fm_condition_field_input_value">
2030
  <?php
2031
+ if($types[$key_select_or_input] == 'type_time') {
2032
+ ?>
2033
+ <label>Please use HH:MM format for 24-hour time (e.g. 22:15), and HH:MM:AM or HH:MM:PM for 12-hour time (e.g. 05:20:AM / 07:30:PM).</label>
2034
+ <?php
2035
+ }
2036
+ ?>
2037
+ <?php } ?>
2038
+ <span class="dashicons dashicons-trash" id="delete_condition<?php echo $k; ?>_<?php echo $key; ?>" onclick="delete_field_condition('<?php echo $k; ?>_<?php echo $key; ?>')"></span>
2039
+ </div>
2040
+ <?php
2041
+ }
2042
  }
2043
  }
2044
  }
2045
+ ?>
2046
+ </div>
2047
+ <?php
2048
+ }
 
2049
  ?>
2050
  </div>
2051
  </div>
admin/views/Submissions_fm.php CHANGED
@@ -346,7 +346,10 @@ class FMViewSubmissions_fm extends FMAdminView {
346
  <?php
347
  }
348
  }
349
- else {
 
 
 
350
  ?>
351
  <th <?php echo $styleStr; ?> id="<?php echo $sorted_labels_id[$i] . '_fc'; ?>" class="<?php echo ($sorted_label_types[$i] == 'type_mark_map' || $sorted_label_types[$i] == 'type_matrix') ? 'table_large_col ' : '';
352
  echo $sorted_labels_id[$i] . '_fc ';
@@ -402,20 +405,21 @@ class FMViewSubmissions_fm extends FMAdminView {
402
  <?php
403
  $column_count = 0;
404
  for ( $i = 0; $i < count($sorted_label_names); $i++ ) {
405
- if ( $sorted_label_types[$i] == 'type_stripe' ) {
406
- continue;
407
- }
 
408
  $styleStr = $this->model->hide_or_not($lists['hide_label_list'], $sorted_labels_id[$i]);
409
  if ( !$is_search ) {
410
  if ( $lists[$form_id . '_' . $sorted_labels_id[$i] . '_search'] || isset($lists[$form_id . '_' . $sorted_labels_id[$i] . '_search_verified']) ) {
411
- $is_search = TRUE;
412
  }
413
  }
414
  switch ( $sorted_label_types[$i] ) {
415
  case 'type_mark_map': ?>
416
  <th class="table_large_col <?php echo $sorted_labels_id[$i]; ?>_fc" <?php echo $styleStr; ?>></th>
417
  <?php
418
- break;
419
  case 'type_paypal_payment_status': ?>
420
  <th class="table_large_col <?php echo $sorted_labels_id[$i]; ?>_fc" <?php echo $styleStr; ?>>
421
  <select style="font-size: 11px; margin: 0; padding: 0; height: inherit;" name="<?php echo $form_id . '_' . $sorted_labels_id[$i]; ?>_search" id="<?php echo $form_id . '_' . $sorted_labels_id[$i]; ?>_search" value="<?php echo $lists[$form_id . '_' . $sorted_labels_id[$i] . '_search']; ?>">
@@ -483,14 +487,34 @@ class FMViewSubmissions_fm extends FMAdminView {
483
  <?php
484
  $k = 0;
485
  if( !empty($group_id_s) ) {
486
- for ( $www = 0, $qqq = count($group_id_s); $www < $qqq; $www++ ) {
487
- $i = $group_id_s[$www];
488
- $alternate = (!isset($alternate) || $alternate == 'alternate') ? '' : 'alternate';
489
- $temp = $this->model->array_for_group_id($group_id_s[$www], $rows);
490
- $data = $temp[0];
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">
@@ -586,9 +610,9 @@ class FMViewSubmissions_fm extends FMAdminView {
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]) ) {
@@ -686,13 +710,13 @@ class FMViewSubmissions_fm extends FMAdminView {
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; ?>
@@ -762,16 +786,17 @@ class FMViewSubmissions_fm extends FMAdminView {
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,
767
- 'id' => $i,
768
- 'width' => '600',
769
- 'height' => '500',
770
- 'nonce' => $this->fm_nonce,
771
- 'TB_iframe' => '1',
772
- ), admin_url('admin-ajax.php')); ?>" title="<?php _e("Payment information", WDFMInstance(self::PLUGIN)->prefix); ?>">
773
- <img src="<?php echo WDFMInstance(self::PLUGIN)->plugin_url . '/images/info.png'; ?>" />
774
- </a>
 
775
  </td>
776
  <?php
777
  }
@@ -919,6 +944,10 @@ class FMViewSubmissions_fm extends FMAdminView {
919
  <label for="ChBAll"><?php _e('All', WDFMInstance(self::PLUGIN)->prefix); ?></label>
920
  </div>
921
  <?php foreach ( $templabels as $key => $curlabel ) {
 
 
 
 
922
  if ( strpos($lists['hide_label_list'], '@' . $curlabel . '@') === FALSE ) {
923
  ?>
924
  <div class="fm_check_labels">
346
  <?php
347
  }
348
  }
349
+ //remove followed types columns from submissions
350
+ elseif ($sorted_label_types[$i] == 'type_user_email' || $sorted_label_types[$i] == 'type_user_email_verify' ) {
351
+ continue;
352
+ } else {
353
  ?>
354
  <th <?php echo $styleStr; ?> id="<?php echo $sorted_labels_id[$i] . '_fc'; ?>" class="<?php echo ($sorted_label_types[$i] == 'type_mark_map' || $sorted_label_types[$i] == 'type_matrix') ? 'table_large_col ' : '';
355
  echo $sorted_labels_id[$i] . '_fc ';
405
  <?php
406
  $column_count = 0;
407
  for ( $i = 0; $i < count($sorted_label_names); $i++ ) {
408
+ //remove input from search row
409
+ if ( $sorted_label_types[$i] == 'type_stripe' || $sorted_label_types[$i] == 'type_user_email' || $sorted_label_types[$i] == 'type_user_email_verify' ) {
410
+ continue;
411
+ }
412
  $styleStr = $this->model->hide_or_not($lists['hide_label_list'], $sorted_labels_id[$i]);
413
  if ( !$is_search ) {
414
  if ( $lists[$form_id . '_' . $sorted_labels_id[$i] . '_search'] || isset($lists[$form_id . '_' . $sorted_labels_id[$i] . '_search_verified']) ) {
415
+ $is_search = TRUE;
416
  }
417
  }
418
  switch ( $sorted_label_types[$i] ) {
419
  case 'type_mark_map': ?>
420
  <th class="table_large_col <?php echo $sorted_labels_id[$i]; ?>_fc" <?php echo $styleStr; ?>></th>
421
  <?php
422
+ break;
423
  case 'type_paypal_payment_status': ?>
424
  <th class="table_large_col <?php echo $sorted_labels_id[$i]; ?>_fc" <?php echo $styleStr; ?>>
425
  <select style="font-size: 11px; margin: 0; padding: 0; height: inherit;" name="<?php echo $form_id . '_' . $sorted_labels_id[$i]; ?>_search" id="<?php echo $form_id . '_' . $sorted_labels_id[$i]; ?>_search" value="<?php echo $lists[$form_id . '_' . $sorted_labels_id[$i] . '_search']; ?>">
487
  <?php
488
  $k = 0;
489
  if( !empty($group_id_s) ) {
490
+ $data_array = array();
491
+ for ( $i = 0; $i < count( $sorted_label_types ); $i++ ) {
492
+ $data_array[ $sorted_labels_id[ $i ] ] = $sorted_label_types[ $i ];
493
+ }
494
+ for ( $www = 0, $qqq = count( $group_id_s ); $www < $qqq; $www ++ ) {
495
+ $i = $group_id_s[ $www ];
496
+ $alternate = ( ! isset( $alternate ) || $alternate == 'alternate' ) ? '' : 'alternate';
497
+ $temp = $this->model->array_for_group_id( $group_id_s[ $www ], $rows );
498
+ $data = $temp[0];
499
+ $user_email = '';
500
+ $userinfo = get_userdata($data->user_id_wd);
501
+ for ( $i = 0; $i < count($temp); $i++ ) {
502
+ if ( $temp[$i]->element_label === 'user_email' ) {
503
+ $user_email = $temp[$i]->element_value;
504
+ break;
505
+ }
506
+ }
507
+ if ( $user_email ) {
508
+ $useremail = $user_email;
509
+ }
510
+ else {
511
+ if ( $userinfo ) {
512
+ $useremail = $userinfo->user_email;
513
+ } else {
514
+ $useremail = '';
515
+ }
516
+ }
517
+ $username = $userinfo ? $userinfo->display_name : "";
518
  ?>
519
  <tr id="tr_<?php echo $data->group_id; ?>" class="<?php echo $alternate; ?>">
520
  <th class="check-column fm-column-not-hide">
610
  }
611
  for ( $h = 0; $h < $m; $h++ ) {
612
  $ispaypal = false;
613
+ if ( $sorted_label_types[$h] == 'type_stripe' || $sorted_label_types[$h] == 'type_user_email' || $sorted_label_types[$h] == 'type_user_email_verify' ) {
614
+ continue;
615
+ }
616
  $not_label = TRUE;
617
  for ( $g = 0; $g < count($temp); $g++ ) {
618
  if ( !isset($sorted_label_types[$g]) ) {
710
  $temp[$g]->element_value = str_replace("***property***", " ", $temp[$g]->element_value);
711
  }
712
  if ( $sorted_label_types[$h] == "type_submitter_mail" ) {
713
+ $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, $data->group_id, $sorted_labels_id[$h]);
714
  $isverified = $wpdb->get_var($query);
715
  if ( $isverified ) {
716
  if ( !isset($verified_emails[$sorted_labels_id[$h]]) ) {
717
  $verified_emails[$sorted_labels_id[$h]] = array();
718
  }
719
+ $verified_emails[$sorted_labels_id[$h]][] = $data->group_id;
720
  ?>
721
  <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]] : ''; ?>">
722
  <p><?php echo $temp[$g]->element_value; ?>
786
  }
787
  if ( $ispaypal ) { ?>
788
  <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); ?>">
789
+ <a class="thickbox-preview" href="<?php echo add_query_arg(array(
790
+ 'action' => 'paypal_info' . WDFMInstance(self::PLUGIN)->plugin_postfix,
791
+ 'id' => $data->group_id,
792
+ 'width' => '600',
793
+ 'height' => '500',
794
+ 'nonce' => $this->fm_nonce,
795
+ 'TB_iframe' => '1',
796
+ ), admin_url('admin-ajax.php')); ?>"
797
+ title="<?php _e("Payment information", WDFMInstance(self::PLUGIN)->prefix); ?>">
798
+ <img src="<?php echo WDFMInstance(self::PLUGIN)->plugin_url . '/images/info.png'; ?>"/>
799
+ </a>
800
  </td>
801
  <?php
802
  }
944
  <label for="ChBAll"><?php _e('All', WDFMInstance(self::PLUGIN)->prefix); ?></label>
945
  </div>
946
  <?php foreach ( $templabels as $key => $curlabel ) {
947
+ //remove user_email and verifyInfo from add/remove column list
948
+ if ( $curlabel == 'user_email' || $curlabel == 'verifyInfo' ) {
949
+ continue;
950
+ }
951
  if ( strpos($lists['hide_label_list'], '@' . $curlabel . '@') === FALSE ) {
952
  ?>
953
  <div class="fm_check_labels">
css/codemirror.css CHANGED
@@ -1,168 +1,349 @@
 
 
1
  .CodeMirror {
2
- line-height: 1em;
3
  font-family: monospace;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
- /* Necessary so the scrollbar can be absolutely positioned within the wrapper on Lion. */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  position: relative;
7
- /* This prevents unwanted scrollbars from showing up on the body and wrapper in IE. */
8
  overflow: hidden;
 
9
  }
10
 
11
  .CodeMirror-scroll {
12
- overflow-x: auto;
13
- overflow-y: hidden;
14
- height: 400px;
15
- /* This is needed to prevent an IE[67] bug where the scrolled content
16
- is visible outside of the scrolling box. */
 
 
17
  position: relative;
18
- outline: none;
 
 
 
19
  }
20
 
21
- /* Vertical scrollbar */
22
- .CodeMirror-scrollbar {
23
- float: right;
 
 
 
 
 
 
 
 
24
  overflow-x: hidden;
25
  overflow-y: scroll;
26
-
27
- /* This corrects for the 1px gap introduced to the left of the scrollbar
28
- by the rule for .CodeMirror-scrollbar-inner. */
29
- margin-left: -1px;
30
  }
31
- .CodeMirror-scrollbar-inner {
32
- /* This needs to have a nonzero width in order for the scrollbar to appear
33
- in Firefox and IE9. */
34
- width: 1px;
35
- }
36
- .CodeMirror-scrollbar.cm-sb-overlap {
37
- /* Ensure that the scrollbar appears in Lion, and that it overlaps the content
38
- rather than sitting to the right of it. */
39
- position: absolute;
40
- z-index: 1;
41
- float: none;
42
- right: 0;
43
- min-width: 12px;
44
  }
45
- .CodeMirror-scrollbar.cm-sb-nonoverlap {
46
- min-width: 12px;
47
  }
48
- .CodeMirror-scrollbar.cm-sb-ie7 {
49
- min-width: 18px;
50
  }
51
 
52
- .CodeMirror-gutter {
53
  position: absolute; left: 0; top: 0;
54
- z-index: 10;
55
- background-color: #f7f7f7;
56
- border-right: 1px solid #eee;
57
- min-width: 2em;
 
58
  height: 100%;
 
 
 
59
  }
60
- .CodeMirror-gutter-text {
61
- color: #aaa;
62
- text-align: right;
63
- padding: .4em .2em .4em .4em;
64
- white-space: pre !important;
65
  }
66
- .CodeMirror-lines {
67
- padding: .4em;
68
- white-space: pre;
69
- cursor: text;
70
  }
71
- .CodeMirror-lines * {
72
- /* Necessary for throw-scrolling to decelerate properly on Safari. */
73
- pointer-events: none;
 
74
  }
 
 
75
 
76
- .CodeMirror pre {
77
- -moz-border-radius: 0;
78
- -webkit-border-radius: 0;
79
- -o-border-radius: 0;
80
- border-radius: 0;
81
- border-width: 0; margin: 0; padding: 0; background: transparent;
 
 
 
 
82
  font-family: inherit;
83
  font-size: inherit;
84
- padding: 0; margin: 0;
85
  white-space: pre;
86
  word-wrap: normal;
87
  line-height: inherit;
88
  color: inherit;
 
 
 
 
 
 
89
  }
90
-
91
- .CodeMirror-wrap pre {
92
  word-wrap: break-word;
93
  white-space: pre-wrap;
94
  word-break: normal;
95
  }
96
- .CodeMirror-wrap .CodeMirror-scroll {
97
- overflow-x: hidden;
 
 
 
98
  }
99
 
100
- .CodeMirror textarea {
101
- outline: none !important;
 
 
102
  }
103
 
104
- .CodeMirror pre.CodeMirror-cursor {
105
- z-index: 10;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  position: absolute;
 
 
 
107
  visibility: hidden;
108
- border-left: 1px solid black;
109
- border-right: none;
110
- width: 0;
111
  }
112
- .cm-keymap-fat-cursor pre.CodeMirror-cursor {
113
- width: auto;
114
- border: 0;
115
- background: transparent;
116
- background: rgba(0, 200, 0, .4);
117
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#6600c800, endColorstr=#4c00c800);
118
  }
119
- /* Kludge to turn off filter in ie9+, which also accepts rgba */
120
- .cm-keymap-fat-cursor pre.CodeMirror-cursor:not(#nonsense_id) {
121
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
 
 
 
122
  }
123
- .CodeMirror pre.CodeMirror-cursor.CodeMirror-overwrite {}
124
- .CodeMirror-focused pre.CodeMirror-cursor {
 
 
 
125
  visibility: visible;
126
  }
127
 
128
- div.CodeMirror-selected { background: #d9d9d9; }
129
- .CodeMirror-focused div.CodeMirror-selected { background: #d7d4f0; }
130
-
131
- .CodeMirror-searching {
132
- background: #ffa;
133
- background: rgba(255, 255, 0, .4);
134
- }
135
-
136
- /* Default theme */
137
-
138
- span.cm-keyword {color: #708;}
139
- span.cm-atom {color: #219;}
140
- span.cm-number {color: #164;}
141
- span.cm-def {color: #00f;}
142
- span.cm-variable {color: black;}
143
- span.cm-variable-2 {color: #05a;}
144
- span.cm-variable-3 {color: #085;}
145
- span.cm-property {color: black;}
146
- span.cm-operator {color: black;}
147
- span.cm-comment {color: #a50;}
148
- span.cm-string {color: #a11;}
149
- span.cm-string-2 {color: #f50;}
150
- span.cm-meta {color: #555;}
151
- span.cm-error {color: #f00;}
152
- span.cm-qualifier {color: #555;}
153
- span.cm-builtin {color: #30a;}
154
- span.cm-bracket {color: #cc7;}
155
- span.cm-tag {color: #170;}
156
- span.cm-attribute {color: #00c;}
157
- span.cm-header {color: blue;}
158
- span.cm-quote {color: #090;}
159
- span.cm-hr {color: #999;}
160
- span.cm-link {color: #00c;}
161
-
162
- span.cm-header, span.cm-strong {font-weight: bold;}
163
- span.cm-em {font-style: italic;}
164
- span.cm-emstrong {font-style: italic; font-weight: bold;}
165
- span.cm-link {text-decoration: underline;}
166
-
167
- div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
168
- div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
1
+ /* BASICS */
2
+
3
  .CodeMirror {
4
+ /* Set height, width, borders, and global font properties here */
5
  font-family: monospace;
6
+ height: 300px;
7
+ color: black;
8
+ direction: ltr;
9
+ }
10
+
11
+ /* PADDING */
12
+
13
+ .CodeMirror-lines {
14
+ padding: 4px 0; /* Vertical padding around content */
15
+ }
16
+ .CodeMirror pre.CodeMirror-line,
17
+ .CodeMirror pre.CodeMirror-line-like {
18
+ padding: 0 4px; /* Horizontal padding of content */
19
+ }
20
+
21
+ .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
22
+ background-color: white; /* The little square between H and V scrollbars */
23
+ }
24
+
25
+ /* GUTTER */
26
+
27
+ .CodeMirror-gutters {
28
+ border-right: 1px solid #ddd;
29
+ background-color: #f7f7f7;
30
+ white-space: nowrap;
31
+ }
32
+ .CodeMirror-linenumbers {}
33
+ .CodeMirror-linenumber {
34
+ padding: 0 3px 0 5px;
35
+ min-width: 20px;
36
+ text-align: right;
37
+ color: #999;
38
+ white-space: nowrap;
39
+ }
40
+
41
+ .CodeMirror-guttermarker { color: black; }
42
+ .CodeMirror-guttermarker-subtle { color: #999; }
43
+
44
+ /* CURSOR */
45
+
46
+ .CodeMirror-cursor {
47
+ border-left: 1px solid black;
48
+ border-right: none;
49
+ width: 0;
50
+ }
51
+ /* Shown when moving in bi-directional text */
52
+ .CodeMirror div.CodeMirror-secondarycursor {
53
+ border-left: 1px solid silver;
54
+ }
55
+ .cm-fat-cursor .CodeMirror-cursor {
56
+ width: auto;
57
+ border: 0 !important;
58
+ background: #7e7;
59
+ }
60
+ .cm-fat-cursor div.CodeMirror-cursors {
61
+ z-index: 1;
62
+ }
63
+ .cm-fat-cursor-mark {
64
+ background-color: rgba(20, 255, 20, 0.5);
65
+ -webkit-animation: blink 1.06s steps(1) infinite;
66
+ -moz-animation: blink 1.06s steps(1) infinite;
67
+ animation: blink 1.06s steps(1) infinite;
68
+ }
69
+ .cm-animate-fat-cursor {
70
+ width: auto;
71
+ -webkit-animation: blink 1.06s steps(1) infinite;
72
+ -moz-animation: blink 1.06s steps(1) infinite;
73
+ animation: blink 1.06s steps(1) infinite;
74
+ background-color: #7e7;
75
+ }
76
+ @-moz-keyframes blink {
77
+ 0% {}
78
+ 50% { background-color: transparent; }
79
+ 100% {}
80
+ }
81
+ @-webkit-keyframes blink {
82
+ 0% {}
83
+ 50% { background-color: transparent; }
84
+ 100% {}
85
+ }
86
+ @keyframes blink {
87
+ 0% {}
88
+ 50% { background-color: transparent; }
89
+ 100% {}
90
+ }
91
+
92
+ /* Can style cursor different in overwrite (non-insert) mode */
93
+ .CodeMirror-overwrite .CodeMirror-cursor {}
94
+
95
+ .cm-tab { display: inline-block; text-decoration: inherit; }
96
+
97
+ .CodeMirror-rulers {
98
+ position: absolute;
99
+ left: 0; right: 0; top: -50px; bottom: 0;
100
+ overflow: hidden;
101
+ }
102
+ .CodeMirror-ruler {
103
+ border-left: 1px solid #ccc;
104
+ top: 0; bottom: 0;
105
+ position: absolute;
106
+ }
107
+
108
+ /* DEFAULT THEME */
109
+
110
+ .cm-s-default .cm-header {color: blue;}
111
+ .cm-s-default .cm-quote {color: #090;}
112
+ .cm-negative {color: #d44;}
113
+ .cm-positive {color: #292;}
114
+ .cm-header, .cm-strong {font-weight: bold;}
115
+ .cm-em {font-style: italic;}
116
+ .cm-link {text-decoration: underline;}
117
+ .cm-strikethrough {text-decoration: line-through;}
118
+
119
+ .cm-s-default .cm-keyword {color: #708;}
120
+ .cm-s-default .cm-atom {color: #219;}
121
+ .cm-s-default .cm-number {color: #164;}
122
+ .cm-s-default .cm-def {color: #00f;}
123
+ .cm-s-default .cm-variable,
124
+ .cm-s-default .cm-punctuation,
125
+ .cm-s-default .cm-property,
126
+ .cm-s-default .cm-operator {}
127
+ .cm-s-default .cm-variable-2 {color: #05a;}
128
+ .cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
129
+ .cm-s-default .cm-comment {color: #a50;}
130
+ .cm-s-default .cm-string {color: #a11;}
131
+ .cm-s-default .cm-string-2 {color: #f50;}
132
+ .cm-s-default .cm-meta {color: #555;}
133
+ .cm-s-default .cm-qualifier {color: #555;}
134
+ .cm-s-default .cm-builtin {color: #30a;}
135
+ .cm-s-default .cm-bracket {color: #997;}
136
+ .cm-s-default .cm-tag {color: #170;}
137
+ .cm-s-default .cm-attribute {color: #00c;}
138
+ .cm-s-default .cm-hr {color: #999;}
139
+ .cm-s-default .cm-link {color: #00c;}
140
 
141
+ .cm-s-default .cm-error {color: #f00;}
142
+ .cm-invalidchar {color: #f00;}
143
+
144
+ .CodeMirror-composing { border-bottom: 2px solid; }
145
+
146
+ /* Default styles for common addons */
147
+
148
+ div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
149
+ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
150
+ .CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
151
+ .CodeMirror-activeline-background {background: #e8f2ff;}
152
+
153
+ /* STOP */
154
+
155
+ /* The rest of this file contains styles related to the mechanics of
156
+ the editor. You probably shouldn't touch them. */
157
+
158
+ .CodeMirror {
159
  position: relative;
 
160
  overflow: hidden;
161
+ background: white;
162
  }
163
 
164
  .CodeMirror-scroll {
165
+ overflow: scroll !important; /* Things will break if this is overridden */
166
+ /* 50px is the magic margin used to hide the element's real scrollbars */
167
+ /* See overflow: hidden in .CodeMirror */
168
+ margin-bottom: -50px; margin-right: -50px;
169
+ padding-bottom: 50px;
170
+ height: 100%;
171
+ outline: none; /* Prevent dragging from highlighting the element */
172
  position: relative;
173
+ }
174
+ .CodeMirror-sizer {
175
+ position: relative;
176
+ border-right: 50px solid transparent;
177
  }
178
 
179
+ /* The fake, visible scrollbars. Used to force redraw during scrolling
180
+ before actual scrolling happens, thus preventing shaking and
181
+ flickering artifacts. */
182
+ .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
183
+ position: absolute;
184
+ z-index: 6;
185
+ display: none;
186
+ outline: none;
187
+ }
188
+ .CodeMirror-vscrollbar {
189
+ right: 0; top: 0;
190
  overflow-x: hidden;
191
  overflow-y: scroll;
 
 
 
 
192
  }
193
+ .CodeMirror-hscrollbar {
194
+ bottom: 0; left: 0;
195
+ overflow-y: hidden;
196
+ overflow-x: scroll;
 
 
 
 
 
 
 
 
 
197
  }
198
+ .CodeMirror-scrollbar-filler {
199
+ right: 0; bottom: 0;
200
  }
201
+ .CodeMirror-gutter-filler {
202
+ left: 0; bottom: 0;
203
  }
204
 
205
+ .CodeMirror-gutters {
206
  position: absolute; left: 0; top: 0;
207
+ min-height: 100%;
208
+ z-index: 3;
209
+ }
210
+ .CodeMirror-gutter {
211
+ white-space: normal;
212
  height: 100%;
213
+ display: inline-block;
214
+ vertical-align: top;
215
+ margin-bottom: -50px;
216
  }
217
+ .CodeMirror-gutter-wrapper {
218
+ position: absolute;
219
+ z-index: 4;
220
+ background: none !important;
221
+ border: none !important;
222
  }
223
+ .CodeMirror-gutter-background {
224
+ position: absolute;
225
+ top: 0; bottom: 0;
226
+ z-index: 4;
227
  }
228
+ .CodeMirror-gutter-elt {
229
+ position: absolute;
230
+ cursor: default;
231
+ z-index: 4;
232
  }
233
+ .CodeMirror-gutter-wrapper ::selection { background-color: transparent }
234
+ .CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
235
 
236
+ .CodeMirror-lines {
237
+ cursor: text;
238
+ min-height: 1px; /* prevents collapsing before first draw */
239
+ }
240
+ .CodeMirror pre.CodeMirror-line,
241
+ .CodeMirror pre.CodeMirror-line-like {
242
+ /* Reset some styles that the rest of the page might have set */
243
+ -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
244
+ border-width: 0;
245
+ background: transparent;
246
  font-family: inherit;
247
  font-size: inherit;
248
+ margin: 0;
249
  white-space: pre;
250
  word-wrap: normal;
251
  line-height: inherit;
252
  color: inherit;
253
+ z-index: 2;
254
+ position: relative;
255
+ overflow: visible;
256
+ -webkit-tap-highlight-color: transparent;
257
+ -webkit-font-variant-ligatures: contextual;
258
+ font-variant-ligatures: contextual;
259
  }
260
+ .CodeMirror-wrap pre.CodeMirror-line,
261
+ .CodeMirror-wrap pre.CodeMirror-line-like {
262
  word-wrap: break-word;
263
  white-space: pre-wrap;
264
  word-break: normal;
265
  }
266
+
267
+ .CodeMirror-linebackground {
268
+ position: absolute;
269
+ left: 0; right: 0; top: 0; bottom: 0;
270
+ z-index: 0;
271
  }
272
 
273
+ .CodeMirror-linewidget {
274
+ position: relative;
275
+ z-index: 2;
276
+ padding: 0.1px; /* Force widget margins to stay inside of the container */
277
  }
278
 
279
+ .CodeMirror-widget {}
280
+
281
+ .CodeMirror-rtl pre { direction: rtl; }
282
+
283
+ .CodeMirror-code {
284
+ outline: none;
285
+ }
286
+
287
+ /* Force content-box sizing for the elements where we expect it */
288
+ .CodeMirror-scroll,
289
+ .CodeMirror-sizer,
290
+ .CodeMirror-gutter,
291
+ .CodeMirror-gutters,
292
+ .CodeMirror-linenumber {
293
+ -moz-box-sizing: content-box;
294
+ box-sizing: content-box;
295
+ }
296
+
297
+ .CodeMirror-measure {
298
  position: absolute;
299
+ width: 100%;
300
+ height: 0;
301
+ overflow: hidden;
302
  visibility: hidden;
 
 
 
303
  }
304
+
305
+ .CodeMirror-cursor {
306
+ position: absolute;
307
+ pointer-events: none;
 
 
308
  }
309
+ .CodeMirror-measure pre { position: static; }
310
+
311
+ div.CodeMirror-cursors {
312
+ visibility: hidden;
313
+ position: relative;
314
+ z-index: 3;
315
  }
316
+ div.CodeMirror-dragcursors {
317
+ visibility: visible;
318
+ }
319
+
320
+ .CodeMirror-focused div.CodeMirror-cursors {
321
  visibility: visible;
322
  }
323
 
324
+ .CodeMirror-selected { background: #d9d9d9; }
325
+ .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
326
+ .CodeMirror-crosshair { cursor: crosshair; }
327
+ .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
328
+ .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
329
+
330
+ .cm-searching {
331
+ background-color: #ffa;
332
+ background-color: rgba(255, 255, 0, .4);
333
+ }
334
+
335
+ /* Used to force a border model for a node */
336
+ .cm-force-border { padding-right: .1px; }
337
+
338
+ @media print {
339
+ /* Hide the cursor when printing */
340
+ .CodeMirror div.CodeMirror-cursors {
341
+ visibility: hidden;
342
+ }
343
+ }
344
+
345
+ /* See issue #2901 */
346
+ .cm-tab-wrap-hack:after { content: ''; }
347
+
348
+ /* Help users use markselection to safely style text background */
349
+ span.CodeMirror-selectedtext { background: none; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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}.wd-form .tablenav.top{margin-bottom:16px}#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"]:first-letter{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}}
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}.wd-form .tablenav.top{margin-bottom:16px}#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"]:first-letter{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 select:disabled{background-repeat:no-repeat;background-position:top right;cursor:not-allowed}.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-item *{width:auto!important}.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
@@ -2451,6 +2451,11 @@ button:focus {
2451
  max-width: 300px;
2452
  margin-bottom: 5px;
2453
  }
 
 
 
 
 
2454
 
2455
  .fm_form_options .fm_condition .fm_condition_show_hide {
2456
  width: 100%;
2451
  max-width: 300px;
2452
  margin-bottom: 5px;
2453
  }
2454
+ .fm_form_options .fm_condition select:disabled {
2455
+ background-repeat: no-repeat;
2456
+ background-position: top right;
2457
+ cursor: not-allowed;
2458
+ }
2459
 
2460
  .fm_form_options .fm_condition .fm_condition_show_hide {
2461
  width: 100%;
css/intlTelInput.css CHANGED
@@ -1 +1,928 @@
1
- .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=text],.intl-tel-input input[type=tel]{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,0.2);background-color:white;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,0.05)}.intl-tel-input .country-list .flag-box,.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .dial-code{vertical-align:middle}.intl-tel-input .country-list .flag-box,.intl-tel-input .country-list .country-name{margin-right:6px}.intl-tel-input.allow-dropdown input,.intl-tel-input.allow-dropdown input[type=text],.intl-tel-input.allow-dropdown input[type=tel],.intl-tel-input.separate-dial-code input,.intl-tel-input.separate-dial-code input[type=text],.intl-tel-input.separate-dial-code input[type=tel]{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,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,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=text],.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel]{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=text],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel]{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=text],.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel]{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=text],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel]{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=text],.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel]{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=text],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel]{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=text],.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel]{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=text],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel]{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:0px 0px}.iti-flag.ad{height:14px;background-position:-22px 0px}.iti-flag.ae{height:10px;background-position:-44px 0px}.iti-flag.af{height:14px;background-position:-66px 0px}.iti-flag.ag{height:14px;background-position:-88px 0px}.iti-flag.ai{height:10px;background-position:-110px 0px}.iti-flag.al{height:15px;background-position:-132px 0px}.iti-flag.am{height:10px;background-position:-154px 0px}.iti-flag.ao{height:14px;background-position:-176px 0px}.iti-flag.aq{height:14px;background-position:-198px 0px}.iti-flag.ar{height:13px;background-position:-220px 0px}.iti-flag.as{height:10px;background-position:-242px 0px}.iti-flag.at{height:14px;background-position:-264px 0px}.iti-flag.au{height:10px;background-position:-286px 0px}.iti-flag.aw{height:14px;background-position:-308px 0px}.iti-flag.ax{height:13px;background-position:-330px 0px}.iti-flag.az{height:10px;background-position:-352px 0px}.iti-flag.ba{height:10px;background-position:-374px 0px}.iti-flag.bb{height:14px;background-position:-396px 0px}.iti-flag.bd{height:12px;background-position:-418px 0px}.iti-flag.be{height:15px;background-position:-440px 0px}.iti-flag.bf{height:14px;background-position:-460px 0px}.iti-flag.bg{height:12px;background-position:-482px 0px}.iti-flag.bh{height:12px;background-position:-504px 0px}.iti-flag.bi{height:12px;background-position:-526px 0px}.iti-flag.bj{height:14px;background-position:-548px 0px}.iti-flag.bl{height:14px;background-position:-570px 0px}.iti-flag.bm{height:10px;background-position:-592px 0px}.iti-flag.bn{height:10px;background-position:-614px 0px}.iti-flag.bo{height:14px;background-position:-636px 0px}.iti-flag.bq{height:14px;background-position:-658px 0px}.iti-flag.br{height:14px;background-position:-680px 0px}.iti-flag.bs{height:10px;background-position:-702px 0px}.iti-flag.bt{height:14px;background-position:-724px 0px}.iti-flag.bv{height:15px;background-position:-746px 0px}.iti-flag.bw{height:14px;background-position:-768px 0px}.iti-flag.by{height:10px;background-position:-790px 0px}.iti-flag.bz{height:14px;background-position:-812px 0px}.iti-flag.ca{height:10px;background-position:-834px 0px}.iti-flag.cc{height:10px;background-position:-856px 0px}.iti-flag.cd{height:15px;background-position:-878px 0px}.iti-flag.cf{height:14px;background-position:-900px 0px}.iti-flag.cg{height:14px;background-position:-922px 0px}.iti-flag.ch{height:15px;background-position:-944px 0px}.iti-flag.ci{height:14px;background-position:-961px 0px}.iti-flag.ck{height:10px;background-position:-983px 0px}.iti-flag.cl{height:14px;background-position:-1005px 0px}.iti-flag.cm{height:14px;background-position:-1027px 0px}.iti-flag.cn{height:14px;background-position:-1049px 0px}.iti-flag.co{height:14px;background-position:-1071px 0px}.iti-flag.cp{height:14px;background-position:-1093px 0px}.iti-flag.cr{height:12px;background-position:-1115px 0px}.iti-flag.cu{height:10px;background-position:-1137px 0px}.iti-flag.cv{height:12px;background-position:-1159px 0px}.iti-flag.cw{height:14px;background-position:-1181px 0px}.iti-flag.cx{height:10px;background-position:-1203px 0px}.iti-flag.cy{height:13px;background-position:-1225px 0px}.iti-flag.cz{height:14px;background-position:-1247px 0px}.iti-flag.de{height:12px;background-position:-1269px 0px}.iti-flag.dg{height:10px;background-position:-1291px 0px}.iti-flag.dj{height:14px;background-position:-1313px 0px}.iti-flag.dk{height:15px;background-position:-1335px 0px}.iti-flag.dm{height:10px;background-position:-1357px 0px}.iti-flag.do{height:13px;background-position:-1379px 0px}.iti-flag.dz{height:14px;background-position:-1401px 0px}.iti-flag.ea{height:14px;background-position:-1423px 0px}.iti-flag.ec{height:14px;background-position:-1445px 0px}.iti-flag.ee{height:13px;background-position:-1467px 0px}.iti-flag.eg{height:14px;background-position:-1489px 0px}.iti-flag.eh{height:10px;background-position:-1511px 0px}.iti-flag.er{height:10px;background-position:-1533px 0px}.iti-flag.es{height:14px;background-position:-1555px 0px}.iti-flag.et{height:10px;background-position:-1577px 0px}.iti-flag.eu{height:14px;background-position:-1599px 0px}.iti-flag.fi{height:12px;background-position:-1621px 0px}.iti-flag.fj{height:10px;background-position:-1643px 0px}.iti-flag.fk{height:10px;background-position:-1665px 0px}.iti-flag.fm{height:11px;background-position:-1687px 0px}.iti-flag.fo{height:15px;background-position:-1709px 0px}.iti-flag.fr{height:14px;background-position:-1731px 0px}.iti-flag.ga{height:15px;background-position:-1753px 0px}.iti-flag.gb{height:10px;background-position:-1775px 0px}.iti-flag.gd{height:12px;background-position:-1797px 0px}.iti-flag.ge{height:14px;background-position:-1819px 0px}.iti-flag.gf{height:14px;background-position:-1841px 0px}.iti-flag.gg{height:14px;background-position:-1863px 0px}.iti-flag.gh{height:14px;background-position:-1885px 0px}.iti-flag.gi{height:10px;background-position:-1907px 0px}.iti-flag.gl{height:14px;background-position:-1929px 0px}.iti-flag.gm{height:14px;background-position:-1951px 0px}.iti-flag.gn{height:14px;background-position:-1973px 0px}.iti-flag.gp{height:14px;background-position:-1995px 0px}.iti-flag.gq{height:14px;background-position:-2017px 0px}.iti-flag.gr{height:14px;background-position:-2039px 0px}.iti-flag.gs{height:10px;background-position:-2061px 0px}.iti-flag.gt{height:13px;background-position:-2083px 0px}.iti-flag.gu{height:11px;background-position:-2105px 0px}.iti-flag.gw{height:10px;background-position:-2127px 0px}.iti-flag.gy{height:12px;background-position:-2149px 0px}.iti-flag.hk{height:14px;background-position:-2171px 0px}.iti-flag.hm{height:10px;background-position:-2193px 0px}.iti-flag.hn{height:10px;background-position:-2215px 0px}.iti-flag.hr{height:10px;background-position:-2237px 0px}.iti-flag.ht{height:12px;background-position:-2259px 0px}.iti-flag.hu{height:10px;background-position:-2281px 0px}.iti-flag.ic{height:14px;background-position:-2303px 0px}.iti-flag.ia{height:14px;background-position:-2325px 0px}.iti-flag.ie{height:10px;background-position:-2347px 0px}.iti-flag.il{height:15px;background-position:-2369px 0px}.iti-flag.im{height:10px;background-position:-2391px 0px}.iti-flag.in{height:14px;background-position:-2413px 0px}.iti-flag.io{height:10px;background-position:-2435px 0px}.iti-flag.iq{height:14px;background-position:-2457px 0px}.iti-flag.ir{height:12px;background-position:-2479px 0px}.iti-flag.is{height:15px;background-position:-2501px 0px}.iti-flag.it{height:14px;background-position:-2523px 0px}.iti-flag.je{height:12px;background-position:-2545px 0px}.iti-flag.jm{height:10px;background-position:-2567px 0px}.iti-flag.jo{height:10px;background-position:-2589px 0px}.iti-flag.jp{height:14px;background-position:-2611px 0px}.iti-flag.ke{height:14px;background-position:-2633px 0px}.iti-flag.kg{height:12px;background-position:-2655px 0px}.iti-flag.kh{height:13px;background-position:-2677px 0px}.iti-flag.ki{height:10px;background-position:-2699px 0px}.iti-flag.km{height:12px;background-position:-2721px 0px}.iti-flag.kn{height:14px;background-position:-2743px 0px}.iti-flag.kp{height:10px;background-position:-2765px 0px}.iti-flag.kr{height:14px;background-position:-2787px 0px}.iti-flag.kw{height:10px;background-position:-2809px 0px}.iti-flag.ky{height:10px;background-position:-2831px 0px}.iti-flag.kz{height:10px;background-position:-2853px 0px}.iti-flag.la{height:14px;background-position:-2875px 0px}.iti-flag.lb{height:14px;background-position:-2897px 0px}.iti-flag.lc{height:10px;background-position:-2919px 0px}.iti-flag.li{height:12px;background-position:-2941px 0px}.iti-flag.lk{height:10px;background-position:-2963px 0px}.iti-flag.lr{height:11px;background-position:-2985px 0px}.iti-flag.ls{height:14px;background-position:-3007px 0px}.iti-flag.lt{height:12px;background-position:-3029px 0px}.iti-flag.lu{height:12px;background-position:-3051px 0px}.iti-flag.lv{height:10px;background-position:-3073px 0px}.iti-flag.ly{height:10px;background-position:-3095px 0px}.iti-flag.ma{height:14px;background-position:-3117px 0px}.iti-flag.mc{height:15px;background-position:-3139px 0px}.iti-flag.md{height:10px;background-position:-3160px 0px}.iti-flag.me{height:10px;background-position:-3182px 0px}.iti-flag.mf{height:14px;background-position:-3204px 0px}.iti-flag.mg{height:14px;background-position:-3226px 0px}.iti-flag.mh{height:11px;background-position:-3248px 0px}.iti-flag.mk{height:10px;background-position:-3270px 0px}.iti-flag.ml{height:14px;background-position:-3292px 0px}.iti-flag.mm{height:14px;background-position:-3314px 0px}.iti-flag.mn{height:10px;background-position:-3336px 0px}.iti-flag.mo{height:14px;background-position:-3358px 0px}.iti-flag.mp{height:10px;background-position:-3380px 0px}.iti-flag.mq{height:14px;background-position:-3402px 0px}.iti-flag.mr{height:14px;background-position:-3424px 0px}.iti-flag.ms{height:10px;background-position:-3446px 0px}.iti-flag.mt{height:14px;background-position:-3468px 0px}.iti-flag.mu{height:14px;background-position:-3490px 0px}.iti-flag.mv{height:14px;background-position:-3512px 0px}.iti-flag.mw{height:14px;background-position:-3534px 0px}.iti-flag.mx{height:12px;background-position:-3556px 0px}.iti-flag.my{height:10px;background-position:-3578px 0px}.iti-flag.mz{height:14px;background-position:-3600px 0px}.iti-flag.na{height:14px;background-position:-3622px 0px}.iti-flag.nc{height:10px;background-position:-3644px 0px}.iti-flag.ne{height:15px;background-position:-3666px 0px}.iti-flag.nf{height:10px;background-position:-3686px 0px}.iti-flag.ng{height:10px;background-position:-3708px 0px}.iti-flag.ni{height:12px;background-position:-3730px 0px}.iti-flag.nl{height:14px;background-position:-3752px 0px}.iti-flag.no{height:15px;background-position:-3774px 0px}.iti-flag.np{height:15px;background-position:-3796px 0px}.iti-flag.nr{height:10px;background-position:-3811px 0px}.iti-flag.nu{height:10px;background-position:-3833px 0px}.iti-flag.nz{height:10px;background-position:-3855px 0px}.iti-flag.om{height:10px;background-position:-3877px 0px}.iti-flag.pa{height:14px;background-position:-3899px 0px}.iti-flag.pe{height:14px;background-position:-3921px 0px}.iti-flag.pf{height:14px;background-position:-3943px 0px}.iti-flag.pg{height:15px;background-position:-3965px 0px}.iti-flag.ph{height:10px;background-position:-3987px 0px}.iti-flag.pk{height:14px;background-position:-4009px 0px}.iti-flag.pl{height:13px;background-position:-4031px 0px}.iti-flag.pm{height:14px;background-position:-4053px 0px}.iti-flag.pn{height:10px;background-position:-4075px 0px}.iti-flag.pr{height:14px;background-position:-4097px 0px}.iti-flag.ps{height:10px;background-position:-4119px 0px}.iti-flag.pt{height:14px;background-position:-4141px 0px}.iti-flag.pw{height:13px;background-position:-4163px 0px}.iti-flag.py{height:11px;background-position:-4185px 0px}.iti-flag.qa{height:8px;background-position:-4207px 0px}.iti-flag.re{height:14px;background-position:-4229px 0px}.iti-flag.ro{height:14px;background-position:-4251px 0px}.iti-flag.rs{height:14px;background-position:-4273px 0px}.iti-flag.ru{height:14px;background-position:-4295px 0px}.iti-flag.rw{height:14px;background-position:-4317px 0px}.iti-flag.sa{height:14px;background-position:-4339px 0px}.iti-flag.sb{height:10px;background-position:-4361px 0px}.iti-flag.sc{height:10px;background-position:-4383px 0px}.iti-flag.sd{height:10px;background-position:-4405px 0px}.iti-flag.se{height:13px;background-position:-4427px 0px}.iti-flag.sg{height:14px;background-position:-4449px 0px}.iti-flag.sh{height:10px;background-position:-4471px 0px}.iti-flag.si{height:10px;background-position:-4493px 0px}.iti-flag.sj{height:15px;background-position:-4515px 0px}.iti-flag.sk{height:14px;background-position:-4537px 0px}.iti-flag.sl{height:14px;background-position:-4559px 0px}.iti-flag.sm{height:15px;background-position:-4581px 0px}.iti-flag.sn{height:14px;background-position:-4603px 0px}.iti-flag.so{height:14px;background-position:-4625px 0px}.iti-flag.sr{height:14px;background-position:-4647px 0px}.iti-flag.ss{height:10px;background-position:-4669px 0px}.iti-flag.st{height:10px;background-position:-4691px 0px}.iti-flag.sv{height:12px;background-position:-4713px 0px}.iti-flag.sx{height:14px;background-position:-4735px 0px}.iti-flag.sy{height:14px;background-position:-4757px 0px}.iti-flag.sz{height:14px;background-position:-4779px 0px}.iti-flag.ta{height:10px;background-position:-4801px 0px}.iti-flag.tc{height:10px;background-position:-4823px 0px}.iti-flag.td{height:14px;background-position:-4845px 0px}.iti-flag.tf{height:14px;background-position:-4867px 0px}.iti-flag.tg{height:13px;background-position:-4889px 0px}.iti-flag.th{height:14px;background-position:-4911px 0px}.iti-flag.tj{height:10px;background-position:-4933px 0px}.iti-flag.tk{height:10px;background-position:-4955px 0px}.iti-flag.tl{height:10px;background-position:-4977px 0px}.iti-flag.tm{height:14px;background-position:-4999px 0px}.iti-flag.tn{height:14px;background-position:-5021px 0px}.iti-flag.to{height:10px;background-position:-5043px 0px}.iti-flag.tr{height:14px;background-position:-5065px 0px}.iti-flag.tt{height:12px;background-position:-5087px 0px}.iti-flag.tv{height:10px;background-position:-5109px 0px}.iti-flag.tw{height:14px;background-position:-5131px 0px}.iti-flag.tz{height:14px;background-position:-5153px 0px}.iti-flag.ua{height:14px;background-position:-5175px 0px}.iti-flag.ug{height:14px;background-position:-5197px 0px}.iti-flag.um{height:11px;background-position:-5219px 0px}.iti-flag.us{height:11px;background-position:-5241px 0px}.iti-flag.uy{height:14px;background-position:-5263px 0px}.iti-flag.uz{height:10px;background-position:-5285px 0px}.iti-flag.va{height:15px;background-position:-5307px 0px}.iti-flag.vc{height:14px;background-position:-5324px 0px}.iti-flag.ve{height:14px;background-position:-5346px 0px}.iti-flag.vg{height:10px;background-position:-5368px 0px}.iti-flag.vi{height:14px;background-position:-5390px 0px}.iti-flag.vn{height:14px;background-position:-5412px 0px}.iti-flag.vu{height:12px;background-position:-5434px 0px}.iti-flag.wf{height:14px;background-position:-5456px 0px}.iti-flag.ws{height:10px;background-position:-5478px 0px}.iti-flag.xk{height:15px;background-position:-5500px 0px}.iti-flag.ye{height:14px;background-position:-5522px 0px}.iti-flag.yt{height:14px;background-position:-5544px 0px}.iti-flag.za{height:14px;background-position:-5566px 0px}.iti-flag.zm{height:14px;background-position:-5588px 0px}.iti-flag.zw{height:10px;background-position:-5610px 0px}.iti-flag{width:20px;height:15px;box-shadow:0px 0px 1px 0px #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}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .iti {
2
+ position: relative;
3
+ display: inline-block; }
4
+ .iti * {
5
+ box-sizing: border-box;
6
+ -moz-box-sizing: border-box; }
7
+ .iti__hide {
8
+ display: none; }
9
+ .iti__v-hide {
10
+ visibility: hidden; }
11
+ .iti input, .iti input[type=text], .iti input[type=tel] {
12
+ position: relative;
13
+ z-index: 0;
14
+ margin-top: 0 !important;
15
+ margin-bottom: 0 !important;
16
+ padding-right: 36px;
17
+ margin-right: 0; }
18
+ .iti__flag-container {
19
+ position: absolute;
20
+ top: 0;
21
+ bottom: 0;
22
+ right: 0;
23
+ padding: 1px; }
24
+ .iti__selected-flag {
25
+ z-index: 1;
26
+ position: relative;
27
+ display: flex;
28
+ align-items: center;
29
+ height: 100%;
30
+ padding: 0 6px 0 8px; }
31
+ .iti__arrow {
32
+ margin-left: 6px;
33
+ width: 0;
34
+ height: 0;
35
+ border-left: 3px solid transparent;
36
+ border-right: 3px solid transparent;
37
+ border-top: 4px solid #555; }
38
+ .iti__arrow--up {
39
+ border-top: none;
40
+ border-bottom: 4px solid #555; }
41
+ .iti__country-list {
42
+ position: absolute;
43
+ z-index: 2;
44
+ list-style: none;
45
+ text-align: left;
46
+ padding: 0;
47
+ margin: 0 0 0 -1px;
48
+ box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
49
+ background-color: white;
50
+ border: 1px solid #CCC;
51
+ white-space: nowrap;
52
+ max-height: 200px;
53
+ overflow-y: scroll;
54
+ -webkit-overflow-scrolling: touch; }
55
+ .iti__country-list--dropup {
56
+ bottom: 100%;
57
+ margin-bottom: -1px; }
58
+ @media (max-width: 500px) {
59
+ .iti__country-list {
60
+ white-space: normal; } }
61
+ .iti__flag-box {
62
+ display: inline-block;
63
+ width: 20px; }
64
+ .iti__divider {
65
+ padding-bottom: 5px;
66
+ margin-bottom: 5px;
67
+ border-bottom: 1px solid #CCC; }
68
+ .iti__country {
69
+ padding: 5px 10px;
70
+ outline: none; }
71
+ .iti__dial-code {
72
+ color: #999; }
73
+ .iti__country.iti__highlight {
74
+ background-color: rgba(0, 0, 0, 0.05); }
75
+ .iti__flag-box, .iti__country-name, .iti__dial-code {
76
+ vertical-align: middle; }
77
+ .iti__flag-box, .iti__country-name {
78
+ margin-right: 6px; }
79
+ .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
80
+ padding-right: 6px;
81
+ padding-left: 52px;
82
+ margin-left: 0; }
83
+ .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
84
+ right: auto;
85
+ left: 0; }
86
+ .iti--allow-dropdown .iti__flag-container:hover {
87
+ cursor: pointer; }
88
+ .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
89
+ background-color: rgba(0, 0, 0, 0.05); }
90
+ .iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
91
+ .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
92
+ cursor: default; }
93
+ .iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
94
+ .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
95
+ background-color: transparent; }
96
+ .iti--separate-dial-code .iti__selected-flag {
97
+ background-color: rgba(0, 0, 0, 0.05); }
98
+ .iti--separate-dial-code .iti__selected-dial-code {
99
+ margin-left: 6px; }
100
+ .iti--container {
101
+ position: absolute;
102
+ top: -1000px;
103
+ left: -1000px;
104
+ z-index: 1060;
105
+ padding: 1px; }
106
+ .iti--container:hover {
107
+ cursor: pointer; }
108
+
109
+ .iti-mobile .iti--container {
110
+ top: 30px;
111
+ bottom: 30px;
112
+ left: 30px;
113
+ right: 30px;
114
+ position: fixed; }
115
+
116
+ .iti-mobile .iti__country-list {
117
+ max-height: 100%;
118
+ width: 100%; }
119
+
120
+ .iti-mobile .iti__country {
121
+ padding: 10px 10px;
122
+ line-height: 1.5em; }
123
+
124
+ .iti__flag {
125
+ width: 20px; }
126
+ .iti__flag.iti__be {
127
+ width: 18px; }
128
+ .iti__flag.iti__ch {
129
+ width: 15px; }
130
+ .iti__flag.iti__mc {
131
+ width: 19px; }
132
+ .iti__flag.iti__ne {
133
+ width: 18px; }
134
+ .iti__flag.iti__np {
135
+ width: 13px; }
136
+ .iti__flag.iti__va {
137
+ width: 15px; }
138
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
139
+ .iti__flag {
140
+ background-size: 5652px 15px; } }
141
+ .iti__flag.iti__ac {
142
+ height: 10px;
143
+ background-position: 0px 0px; }
144
+ .iti__flag.iti__ad {
145
+ height: 14px;
146
+ background-position: -22px 0px; }
147
+ .iti__flag.iti__ae {
148
+ height: 10px;
149
+ background-position: -44px 0px; }
150
+ .iti__flag.iti__af {
151
+ height: 14px;
152
+ background-position: -66px 0px; }
153
+ .iti__flag.iti__ag {
154
+ height: 14px;
155
+ background-position: -88px 0px; }
156
+ .iti__flag.iti__ai {
157
+ height: 10px;
158
+ background-position: -110px 0px; }
159
+ .iti__flag.iti__al {
160
+ height: 15px;
161
+ background-position: -132px 0px; }
162
+ .iti__flag.iti__am {
163
+ height: 10px;
164
+ background-position: -154px 0px; }
165
+ .iti__flag.iti__ao {
166
+ height: 14px;
167
+ background-position: -176px 0px; }
168
+ .iti__flag.iti__aq {
169
+ height: 14px;
170
+ background-position: -198px 0px; }
171
+ .iti__flag.iti__ar {
172
+ height: 13px;
173
+ background-position: -220px 0px; }
174
+ .iti__flag.iti__as {
175
+ height: 10px;
176
+ background-position: -242px 0px; }
177
+ .iti__flag.iti__at {
178
+ height: 14px;
179
+ background-position: -264px 0px; }
180
+ .iti__flag.iti__au {
181
+ height: 10px;
182
+ background-position: -286px 0px; }
183
+ .iti__flag.iti__aw {
184
+ height: 14px;
185
+ background-position: -308px 0px; }
186
+ .iti__flag.iti__ax {
187
+ height: 13px;
188
+ background-position: -330px 0px; }
189
+ .iti__flag.iti__az {
190
+ height: 10px;
191
+ background-position: -352px 0px; }
192
+ .iti__flag.iti__ba {
193
+ height: 10px;
194
+ background-position: -374px 0px; }
195
+ .iti__flag.iti__bb {
196
+ height: 14px;
197
+ background-position: -396px 0px; }
198
+ .iti__flag.iti__bd {
199
+ height: 12px;
200
+ background-position: -418px 0px; }
201
+ .iti__flag.iti__be {
202
+ height: 15px;
203
+ background-position: -440px 0px; }
204
+ .iti__flag.iti__bf {
205
+ height: 14px;
206
+ background-position: -460px 0px; }
207
+ .iti__flag.iti__bg {
208
+ height: 12px;
209
+ background-position: -482px 0px; }
210
+ .iti__flag.iti__bh {
211
+ height: 12px;
212
+ background-position: -504px 0px; }
213
+ .iti__flag.iti__bi {
214
+ height: 12px;
215
+ background-position: -526px 0px; }
216
+ .iti__flag.iti__bj {
217
+ height: 14px;
218
+ background-position: -548px 0px; }
219
+ .iti__flag.iti__bl {
220
+ height: 14px;
221
+ background-position: -570px 0px; }
222
+ .iti__flag.iti__bm {
223
+ height: 10px;
224
+ background-position: -592px 0px; }
225
+ .iti__flag.iti__bn {
226
+ height: 10px;
227
+ background-position: -614px 0px; }
228
+ .iti__flag.iti__bo {
229
+ height: 14px;
230
+ background-position: -636px 0px; }
231
+ .iti__flag.iti__bq {
232
+ height: 14px;
233
+ background-position: -658px 0px; }
234
+ .iti__flag.iti__br {
235
+ height: 14px;
236
+ background-position: -680px 0px; }
237
+ .iti__flag.iti__bs {
238
+ height: 10px;
239
+ background-position: -702px 0px; }
240
+ .iti__flag.iti__bt {
241
+ height: 14px;
242
+ background-position: -724px 0px; }
243
+ .iti__flag.iti__bv {
244
+ height: 15px;
245
+ background-position: -746px 0px; }
246
+ .iti__flag.iti__bw {
247
+ height: 14px;
248
+ background-position: -768px 0px; }
249
+ .iti__flag.iti__by {
250
+ height: 10px;
251
+ background-position: -790px 0px; }
252
+ .iti__flag.iti__bz {
253
+ height: 14px;
254
+ background-position: -812px 0px; }
255
+ .iti__flag.iti__ca {
256
+ height: 10px;
257
+ background-position: -834px 0px; }
258
+ .iti__flag.iti__cc {
259
+ height: 10px;
260
+ background-position: -856px 0px; }
261
+ .iti__flag.iti__cd {
262
+ height: 15px;
263
+ background-position: -878px 0px; }
264
+ .iti__flag.iti__cf {
265
+ height: 14px;
266
+ background-position: -900px 0px; }
267
+ .iti__flag.iti__cg {
268
+ height: 14px;
269
+ background-position: -922px 0px; }
270
+ .iti__flag.iti__ch {
271
+ height: 15px;
272
+ background-position: -944px 0px; }
273
+ .iti__flag.iti__ci {
274
+ height: 14px;
275
+ background-position: -961px 0px; }
276
+ .iti__flag.iti__ck {
277
+ height: 10px;
278
+ background-position: -983px 0px; }
279
+ .iti__flag.iti__cl {
280
+ height: 14px;
281
+ background-position: -1005px 0px; }
282
+ .iti__flag.iti__cm {
283
+ height: 14px;
284
+ background-position: -1027px 0px; }
285
+ .iti__flag.iti__cn {
286
+ height: 14px;
287
+ background-position: -1049px 0px; }
288
+ .iti__flag.iti__co {
289
+ height: 14px;
290
+ background-position: -1071px 0px; }
291
+ .iti__flag.iti__cp {
292
+ height: 14px;
293
+ background-position: -1093px 0px; }
294
+ .iti__flag.iti__cr {
295
+ height: 12px;
296
+ background-position: -1115px 0px; }
297
+ .iti__flag.iti__cu {
298
+ height: 10px;
299
+ background-position: -1137px 0px; }
300
+ .iti__flag.iti__cv {
301
+ height: 12px;
302
+ background-position: -1159px 0px; }
303
+ .iti__flag.iti__cw {
304
+ height: 14px;
305
+ background-position: -1181px 0px; }
306
+ .iti__flag.iti__cx {
307
+ height: 10px;
308
+ background-position: -1203px 0px; }
309
+ .iti__flag.iti__cy {
310
+ height: 14px;
311
+ background-position: -1225px 0px; }
312
+ .iti__flag.iti__cz {
313
+ height: 14px;
314
+ background-position: -1247px 0px; }
315
+ .iti__flag.iti__de {
316
+ height: 12px;
317
+ background-position: -1269px 0px; }
318
+ .iti__flag.iti__dg {
319
+ height: 10px;
320
+ background-position: -1291px 0px; }
321
+ .iti__flag.iti__dj {
322
+ height: 14px;
323
+ background-position: -1313px 0px; }
324
+ .iti__flag.iti__dk {
325
+ height: 15px;
326
+ background-position: -1335px 0px; }
327
+ .iti__flag.iti__dm {
328
+ height: 10px;
329
+ background-position: -1357px 0px; }
330
+ .iti__flag.iti__do {
331
+ height: 14px;
332
+ background-position: -1379px 0px; }
333
+ .iti__flag.iti__dz {
334
+ height: 14px;
335
+ background-position: -1401px 0px; }
336
+ .iti__flag.iti__ea {
337
+ height: 14px;
338
+ background-position: -1423px 0px; }
339
+ .iti__flag.iti__ec {
340
+ height: 14px;
341
+ background-position: -1445px 0px; }
342
+ .iti__flag.iti__ee {
343
+ height: 13px;
344
+ background-position: -1467px 0px; }
345
+ .iti__flag.iti__eg {
346
+ height: 14px;
347
+ background-position: -1489px 0px; }
348
+ .iti__flag.iti__eh {
349
+ height: 10px;
350
+ background-position: -1511px 0px; }
351
+ .iti__flag.iti__er {
352
+ height: 10px;
353
+ background-position: -1533px 0px; }
354
+ .iti__flag.iti__es {
355
+ height: 14px;
356
+ background-position: -1555px 0px; }
357
+ .iti__flag.iti__et {
358
+ height: 10px;
359
+ background-position: -1577px 0px; }
360
+ .iti__flag.iti__eu {
361
+ height: 14px;
362
+ background-position: -1599px 0px; }
363
+ .iti__flag.iti__fi {
364
+ height: 12px;
365
+ background-position: -1621px 0px; }
366
+ .iti__flag.iti__fj {
367
+ height: 10px;
368
+ background-position: -1643px 0px; }
369
+ .iti__flag.iti__fk {
370
+ height: 10px;
371
+ background-position: -1665px 0px; }
372
+ .iti__flag.iti__fm {
373
+ height: 11px;
374
+ background-position: -1687px 0px; }
375
+ .iti__flag.iti__fo {
376
+ height: 15px;
377
+ background-position: -1709px 0px; }
378
+ .iti__flag.iti__fr {
379
+ height: 14px;
380
+ background-position: -1731px 0px; }
381
+ .iti__flag.iti__ga {
382
+ height: 15px;
383
+ background-position: -1753px 0px; }
384
+ .iti__flag.iti__gb {
385
+ height: 10px;
386
+ background-position: -1775px 0px; }
387
+ .iti__flag.iti__gd {
388
+ height: 12px;
389
+ background-position: -1797px 0px; }
390
+ .iti__flag.iti__ge {
391
+ height: 14px;
392
+ background-position: -1819px 0px; }
393
+ .iti__flag.iti__gf {
394
+ height: 14px;
395
+ background-position: -1841px 0px; }
396
+ .iti__flag.iti__gg {
397
+ height: 14px;
398
+ background-position: -1863px 0px; }
399
+ .iti__flag.iti__gh {
400
+ height: 14px;
401
+ background-position: -1885px 0px; }
402
+ .iti__flag.iti__gi {
403
+ height: 10px;
404
+ background-position: -1907px 0px; }
405
+ .iti__flag.iti__gl {
406
+ height: 14px;
407
+ background-position: -1929px 0px; }
408
+ .iti__flag.iti__gm {
409
+ height: 14px;
410
+ background-position: -1951px 0px; }
411
+ .iti__flag.iti__gn {
412
+ height: 14px;
413
+ background-position: -1973px 0px; }
414
+ .iti__flag.iti__gp {
415
+ height: 14px;
416
+ background-position: -1995px 0px; }
417
+ .iti__flag.iti__gq {
418
+ height: 14px;
419
+ background-position: -2017px 0px; }
420
+ .iti__flag.iti__gr {
421
+ height: 14px;
422
+ background-position: -2039px 0px; }
423
+ .iti__flag.iti__gs {
424
+ height: 10px;
425
+ background-position: -2061px 0px; }
426
+ .iti__flag.iti__gt {
427
+ height: 13px;
428
+ background-position: -2083px 0px; }
429
+ .iti__flag.iti__gu {
430
+ height: 11px;
431
+ background-position: -2105px 0px; }
432
+ .iti__flag.iti__gw {
433
+ height: 10px;
434
+ background-position: -2127px 0px; }
435
+ .iti__flag.iti__gy {
436
+ height: 12px;
437
+ background-position: -2149px 0px; }
438
+ .iti__flag.iti__hk {
439
+ height: 14px;
440
+ background-position: -2171px 0px; }
441
+ .iti__flag.iti__hm {
442
+ height: 10px;
443
+ background-position: -2193px 0px; }
444
+ .iti__flag.iti__hn {
445
+ height: 10px;
446
+ background-position: -2215px 0px; }
447
+ .iti__flag.iti__hr {
448
+ height: 10px;
449
+ background-position: -2237px 0px; }
450
+ .iti__flag.iti__ht {
451
+ height: 12px;
452
+ background-position: -2259px 0px; }
453
+ .iti__flag.iti__hu {
454
+ height: 10px;
455
+ background-position: -2281px 0px; }
456
+ .iti__flag.iti__ic {
457
+ height: 14px;
458
+ background-position: -2303px 0px; }
459
+ .iti__flag.iti__id {
460
+ height: 14px;
461
+ background-position: -2325px 0px; }
462
+ .iti__flag.iti__ie {
463
+ height: 10px;
464
+ background-position: -2347px 0px; }
465
+ .iti__flag.iti__il {
466
+ height: 15px;
467
+ background-position: -2369px 0px; }
468
+ .iti__flag.iti__im {
469
+ height: 10px;
470
+ background-position: -2391px 0px; }
471
+ .iti__flag.iti__in {
472
+ height: 14px;
473
+ background-position: -2413px 0px; }
474
+ .iti__flag.iti__io {
475
+ height: 10px;
476
+ background-position: -2435px 0px; }
477
+ .iti__flag.iti__iq {
478
+ height: 14px;
479
+ background-position: -2457px 0px; }
480
+ .iti__flag.iti__ir {
481
+ height: 12px;
482
+ background-position: -2479px 0px; }
483
+ .iti__flag.iti__is {
484
+ height: 15px;
485
+ background-position: -2501px 0px; }
486
+ .iti__flag.iti__it {
487
+ height: 14px;
488
+ background-position: -2523px 0px; }
489
+ .iti__flag.iti__je {
490
+ height: 12px;
491
+ background-position: -2545px 0px; }
492
+ .iti__flag.iti__jm {
493
+ height: 10px;
494
+ background-position: -2567px 0px; }
495
+ .iti__flag.iti__jo {
496
+ height: 10px;
497
+ background-position: -2589px 0px; }
498
+ .iti__flag.iti__jp {
499
+ height: 14px;
500
+ background-position: -2611px 0px; }
501
+ .iti__flag.iti__ke {
502
+ height: 14px;
503
+ background-position: -2633px 0px; }
504
+ .iti__flag.iti__kg {
505
+ height: 12px;
506
+ background-position: -2655px 0px; }
507
+ .iti__flag.iti__kh {
508
+ height: 13px;
509
+ background-position: -2677px 0px; }
510
+ .iti__flag.iti__ki {
511
+ height: 10px;
512
+ background-position: -2699px 0px; }
513
+ .iti__flag.iti__km {
514
+ height: 12px;
515
+ background-position: -2721px 0px; }
516
+ .iti__flag.iti__kn {
517
+ height: 14px;
518
+ background-position: -2743px 0px; }
519
+ .iti__flag.iti__kp {
520
+ height: 10px;
521
+ background-position: -2765px 0px; }
522
+ .iti__flag.iti__kr {
523
+ height: 14px;
524
+ background-position: -2787px 0px; }
525
+ .iti__flag.iti__kw {
526
+ height: 10px;
527
+ background-position: -2809px 0px; }
528
+ .iti__flag.iti__ky {
529
+ height: 10px;
530
+ background-position: -2831px 0px; }
531
+ .iti__flag.iti__kz {
532
+ height: 10px;
533
+ background-position: -2853px 0px; }
534
+ .iti__flag.iti__la {
535
+ height: 14px;
536
+ background-position: -2875px 0px; }
537
+ .iti__flag.iti__lb {
538
+ height: 14px;
539
+ background-position: -2897px 0px; }
540
+ .iti__flag.iti__lc {
541
+ height: 10px;
542
+ background-position: -2919px 0px; }
543
+ .iti__flag.iti__li {
544
+ height: 12px;
545
+ background-position: -2941px 0px; }
546
+ .iti__flag.iti__lk {
547
+ height: 10px;
548
+ background-position: -2963px 0px; }
549
+ .iti__flag.iti__lr {
550
+ height: 11px;
551
+ background-position: -2985px 0px; }
552
+ .iti__flag.iti__ls {
553
+ height: 14px;
554
+ background-position: -3007px 0px; }
555
+ .iti__flag.iti__lt {
556
+ height: 12px;
557
+ background-position: -3029px 0px; }
558
+ .iti__flag.iti__lu {
559
+ height: 12px;
560
+ background-position: -3051px 0px; }
561
+ .iti__flag.iti__lv {
562
+ height: 10px;
563
+ background-position: -3073px 0px; }
564
+ .iti__flag.iti__ly {
565
+ height: 10px;
566
+ background-position: -3095px 0px; }
567
+ .iti__flag.iti__ma {
568
+ height: 14px;
569
+ background-position: -3117px 0px; }
570
+ .iti__flag.iti__mc {
571
+ height: 15px;
572
+ background-position: -3139px 0px; }
573
+ .iti__flag.iti__md {
574
+ height: 10px;
575
+ background-position: -3160px 0px; }
576
+ .iti__flag.iti__me {
577
+ height: 10px;
578
+ background-position: -3182px 0px; }
579
+ .iti__flag.iti__mf {
580
+ height: 14px;
581
+ background-position: -3204px 0px; }
582
+ .iti__flag.iti__mg {
583
+ height: 14px;
584
+ background-position: -3226px 0px; }
585
+ .iti__flag.iti__mh {
586
+ height: 11px;
587
+ background-position: -3248px 0px; }
588
+ .iti__flag.iti__mk {
589
+ height: 10px;
590
+ background-position: -3270px 0px; }
591
+ .iti__flag.iti__ml {
592
+ height: 14px;
593
+ background-position: -3292px 0px; }
594
+ .iti__flag.iti__mm {
595
+ height: 14px;
596
+ background-position: -3314px 0px; }
597
+ .iti__flag.iti__mn {
598
+ height: 10px;
599
+ background-position: -3336px 0px; }
600
+ .iti__flag.iti__mo {
601
+ height: 14px;
602
+ background-position: -3358px 0px; }
603
+ .iti__flag.iti__mp {
604
+ height: 10px;
605
+ background-position: -3380px 0px; }
606
+ .iti__flag.iti__mq {
607
+ height: 14px;
608
+ background-position: -3402px 0px; }
609
+ .iti__flag.iti__mr {
610
+ height: 14px;
611
+ background-position: -3424px 0px; }
612
+ .iti__flag.iti__ms {
613
+ height: 10px;
614
+ background-position: -3446px 0px; }
615
+ .iti__flag.iti__mt {
616
+ height: 14px;
617
+ background-position: -3468px 0px; }
618
+ .iti__flag.iti__mu {
619
+ height: 14px;
620
+ background-position: -3490px 0px; }
621
+ .iti__flag.iti__mv {
622
+ height: 14px;
623
+ background-position: -3512px 0px; }
624
+ .iti__flag.iti__mw {
625
+ height: 14px;
626
+ background-position: -3534px 0px; }
627
+ .iti__flag.iti__mx {
628
+ height: 12px;
629
+ background-position: -3556px 0px; }
630
+ .iti__flag.iti__my {
631
+ height: 10px;
632
+ background-position: -3578px 0px; }
633
+ .iti__flag.iti__mz {
634
+ height: 14px;
635
+ background-position: -3600px 0px; }
636
+ .iti__flag.iti__na {
637
+ height: 14px;
638
+ background-position: -3622px 0px; }
639
+ .iti__flag.iti__nc {
640
+ height: 10px;
641
+ background-position: -3644px 0px; }
642
+ .iti__flag.iti__ne {
643
+ height: 15px;
644
+ background-position: -3666px 0px; }
645
+ .iti__flag.iti__nf {
646
+ height: 10px;
647
+ background-position: -3686px 0px; }
648
+ .iti__flag.iti__ng {
649
+ height: 10px;
650
+ background-position: -3708px 0px; }
651
+ .iti__flag.iti__ni {
652
+ height: 12px;
653
+ background-position: -3730px 0px; }
654
+ .iti__flag.iti__nl {
655
+ height: 14px;
656
+ background-position: -3752px 0px; }
657
+ .iti__flag.iti__no {
658
+ height: 15px;
659
+ background-position: -3774px 0px; }
660
+ .iti__flag.iti__np {
661
+ height: 15px;
662
+ background-position: -3796px 0px; }
663
+ .iti__flag.iti__nr {
664
+ height: 10px;
665
+ background-position: -3811px 0px; }
666
+ .iti__flag.iti__nu {
667
+ height: 10px;
668
+ background-position: -3833px 0px; }
669
+ .iti__flag.iti__nz {
670
+ height: 10px;
671
+ background-position: -3855px 0px; }
672
+ .iti__flag.iti__om {
673
+ height: 10px;
674
+ background-position: -3877px 0px; }
675
+ .iti__flag.iti__pa {
676
+ height: 14px;
677
+ background-position: -3899px 0px; }
678
+ .iti__flag.iti__pe {
679
+ height: 14px;
680
+ background-position: -3921px 0px; }
681
+ .iti__flag.iti__pf {
682
+ height: 14px;
683
+ background-position: -3943px 0px; }
684
+ .iti__flag.iti__pg {
685
+ height: 15px;
686
+ background-position: -3965px 0px; }
687
+ .iti__flag.iti__ph {
688
+ height: 10px;
689
+ background-position: -3987px 0px; }
690
+ .iti__flag.iti__pk {
691
+ height: 14px;
692
+ background-position: -4009px 0px; }
693
+ .iti__flag.iti__pl {
694
+ height: 13px;
695
+ background-position: -4031px 0px; }
696
+ .iti__flag.iti__pm {
697
+ height: 14px;
698
+ background-position: -4053px 0px; }
699
+ .iti__flag.iti__pn {
700
+ height: 10px;
701
+ background-position: -4075px 0px; }
702
+ .iti__flag.iti__pr {
703
+ height: 14px;
704
+ background-position: -4097px 0px; }
705
+ .iti__flag.iti__ps {
706
+ height: 10px;
707
+ background-position: -4119px 0px; }
708
+ .iti__flag.iti__pt {
709
+ height: 14px;
710
+ background-position: -4141px 0px; }
711
+ .iti__flag.iti__pw {
712
+ height: 13px;
713
+ background-position: -4163px 0px; }
714
+ .iti__flag.iti__py {
715
+ height: 11px;
716
+ background-position: -4185px 0px; }
717
+ .iti__flag.iti__qa {
718
+ height: 8px;
719
+ background-position: -4207px 0px; }
720
+ .iti__flag.iti__re {
721
+ height: 14px;
722
+ background-position: -4229px 0px; }
723
+ .iti__flag.iti__ro {
724
+ height: 14px;
725
+ background-position: -4251px 0px; }
726
+ .iti__flag.iti__rs {
727
+ height: 14px;
728
+ background-position: -4273px 0px; }
729
+ .iti__flag.iti__ru {
730
+ height: 14px;
731
+ background-position: -4295px 0px; }
732
+ .iti__flag.iti__rw {
733
+ height: 14px;
734
+ background-position: -4317px 0px; }
735
+ .iti__flag.iti__sa {
736
+ height: 14px;
737
+ background-position: -4339px 0px; }
738
+ .iti__flag.iti__sb {
739
+ height: 10px;
740
+ background-position: -4361px 0px; }
741
+ .iti__flag.iti__sc {
742
+ height: 10px;
743
+ background-position: -4383px 0px; }
744
+ .iti__flag.iti__sd {
745
+ height: 10px;
746
+ background-position: -4405px 0px; }
747
+ .iti__flag.iti__se {
748
+ height: 13px;
749
+ background-position: -4427px 0px; }
750
+ .iti__flag.iti__sg {
751
+ height: 14px;
752
+ background-position: -4449px 0px; }
753
+ .iti__flag.iti__sh {
754
+ height: 10px;
755
+ background-position: -4471px 0px; }
756
+ .iti__flag.iti__si {
757
+ height: 10px;
758
+ background-position: -4493px 0px; }
759
+ .iti__flag.iti__sj {
760
+ height: 15px;
761
+ background-position: -4515px 0px; }
762
+ .iti__flag.iti__sk {
763
+ height: 14px;
764
+ background-position: -4537px 0px; }
765
+ .iti__flag.iti__sl {
766
+ height: 14px;
767
+ background-position: -4559px 0px; }
768
+ .iti__flag.iti__sm {
769
+ height: 15px;
770
+ background-position: -4581px 0px; }
771
+ .iti__flag.iti__sn {
772
+ height: 14px;
773
+ background-position: -4603px 0px; }
774
+ .iti__flag.iti__so {
775
+ height: 14px;
776
+ background-position: -4625px 0px; }
777
+ .iti__flag.iti__sr {
778
+ height: 14px;
779
+ background-position: -4647px 0px; }
780
+ .iti__flag.iti__ss {
781
+ height: 10px;
782
+ background-position: -4669px 0px; }
783
+ .iti__flag.iti__st {
784
+ height: 10px;
785
+ background-position: -4691px 0px; }
786
+ .iti__flag.iti__sv {
787
+ height: 12px;
788
+ background-position: -4713px 0px; }
789
+ .iti__flag.iti__sx {
790
+ height: 14px;
791
+ background-position: -4735px 0px; }
792
+ .iti__flag.iti__sy {
793
+ height: 14px;
794
+ background-position: -4757px 0px; }
795
+ .iti__flag.iti__sz {
796
+ height: 14px;
797
+ background-position: -4779px 0px; }
798
+ .iti__flag.iti__ta {
799
+ height: 10px;
800
+ background-position: -4801px 0px; }
801
+ .iti__flag.iti__tc {
802
+ height: 10px;
803
+ background-position: -4823px 0px; }
804
+ .iti__flag.iti__td {
805
+ height: 14px;
806
+ background-position: -4845px 0px; }
807
+ .iti__flag.iti__tf {
808
+ height: 14px;
809
+ background-position: -4867px 0px; }
810
+ .iti__flag.iti__tg {
811
+ height: 13px;
812
+ background-position: -4889px 0px; }
813
+ .iti__flag.iti__th {
814
+ height: 14px;
815
+ background-position: -4911px 0px; }
816
+ .iti__flag.iti__tj {
817
+ height: 10px;
818
+ background-position: -4933px 0px; }
819
+ .iti__flag.iti__tk {
820
+ height: 10px;
821
+ background-position: -4955px 0px; }
822
+ .iti__flag.iti__tl {
823
+ height: 10px;
824
+ background-position: -4977px 0px; }
825
+ .iti__flag.iti__tm {
826
+ height: 14px;
827
+ background-position: -4999px 0px; }
828
+ .iti__flag.iti__tn {
829
+ height: 14px;
830
+ background-position: -5021px 0px; }
831
+ .iti__flag.iti__to {
832
+ height: 10px;
833
+ background-position: -5043px 0px; }
834
+ .iti__flag.iti__tr {
835
+ height: 14px;
836
+ background-position: -5065px 0px; }
837
+ .iti__flag.iti__tt {
838
+ height: 12px;
839
+ background-position: -5087px 0px; }
840
+ .iti__flag.iti__tv {
841
+ height: 10px;
842
+ background-position: -5109px 0px; }
843
+ .iti__flag.iti__tw {
844
+ height: 14px;
845
+ background-position: -5131px 0px; }
846
+ .iti__flag.iti__tz {
847
+ height: 14px;
848
+ background-position: -5153px 0px; }
849
+ .iti__flag.iti__ua {
850
+ height: 14px;
851
+ background-position: -5175px 0px; }
852
+ .iti__flag.iti__ug {
853
+ height: 14px;
854
+ background-position: -5197px 0px; }
855
+ .iti__flag.iti__um {
856
+ height: 11px;
857
+ background-position: -5219px 0px; }
858
+ .iti__flag.iti__un {
859
+ height: 14px;
860
+ background-position: -5241px 0px; }
861
+ .iti__flag.iti__us {
862
+ height: 11px;
863
+ background-position: -5263px 0px; }
864
+ .iti__flag.iti__uy {
865
+ height: 14px;
866
+ background-position: -5285px 0px; }
867
+ .iti__flag.iti__uz {
868
+ height: 10px;
869
+ background-position: -5307px 0px; }
870
+ .iti__flag.iti__va {
871
+ height: 15px;
872
+ background-position: -5329px 0px; }
873
+ .iti__flag.iti__vc {
874
+ height: 14px;
875
+ background-position: -5346px 0px; }
876
+ .iti__flag.iti__ve {
877
+ height: 14px;
878
+ background-position: -5368px 0px; }
879
+ .iti__flag.iti__vg {
880
+ height: 10px;
881
+ background-position: -5390px 0px; }
882
+ .iti__flag.iti__vi {
883
+ height: 14px;
884
+ background-position: -5412px 0px; }
885
+ .iti__flag.iti__vn {
886
+ height: 14px;
887
+ background-position: -5434px 0px; }
888
+ .iti__flag.iti__vu {
889
+ height: 12px;
890
+ background-position: -5456px 0px; }
891
+ .iti__flag.iti__wf {
892
+ height: 14px;
893
+ background-position: -5478px 0px; }
894
+ .iti__flag.iti__ws {
895
+ height: 10px;
896
+ background-position: -5500px 0px; }
897
+ .iti__flag.iti__xk {
898
+ height: 15px;
899
+ background-position: -5522px 0px; }
900
+ .iti__flag.iti__ye {
901
+ height: 14px;
902
+ background-position: -5544px 0px; }
903
+ .iti__flag.iti__yt {
904
+ height: 14px;
905
+ background-position: -5566px 0px; }
906
+ .iti__flag.iti__za {
907
+ height: 14px;
908
+ background-position: -5588px 0px; }
909
+ .iti__flag.iti__zm {
910
+ height: 14px;
911
+ background-position: -5610px 0px; }
912
+ .iti__flag.iti__zw {
913
+ height: 10px;
914
+ background-position: -5632px 0px; }
915
+
916
+ .iti__flag {
917
+ height: 15px;
918
+ box-shadow: 0px 0px 1px 0px #888;
919
+ background-image: url("images/flags.png");
920
+ background-repeat: no-repeat;
921
+ background-color: #DBDBDB;
922
+ background-position: 20px 0; }
923
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
924
+ .iti__flag {
925
+ background-image: url("images/flags@2x.png"); } }
926
+
927
+ .iti__flag.iti__np {
928
+ background-color: transparent; }
css/manage-edit-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}.wd-form .tablenav.top{margin-bottom:16px}#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"]:first-letter{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
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}.CodeMirror{line-height:1em;font-family:monospace;position:relative;overflow:hidden}.CodeMirror-scroll{overflow-x:auto;overflow-y:hidden;height:400px;position:relative;outline:0}.CodeMirror-scrollbar{float:right;overflow-x:hidden;overflow-y:scroll;margin-left:-1px}.CodeMirror-scrollbar-inner{width:1px}.CodeMirror-scrollbar.cm-sb-overlap{position:absolute;z-index:1;float:none;right:0;min-width:12px}.CodeMirror-scrollbar.cm-sb-nonoverlap{min-width:12px}.CodeMirror-scrollbar.cm-sb-ie7{min-width:18px}.CodeMirror-gutter{position:absolute;left:0;top:0;z-index:10;background-color:#f7f7f7;border-right:1px solid #eee;min-width:2em;height:100%}.CodeMirror-gutter-text{color:#aaa;text-align:right;padding:.4em .2em .4em .4em;white-space:pre!important}.CodeMirror-lines{padding:.4em;white-space:pre;cursor:text}.CodeMirror-lines *{pointer-events:none}.CodeMirror pre{-moz-border-radius:0;-webkit-border-radius:0;-o-border-radius:0;border-radius:0;border-width:0;margin:0;padding:0;background:0 0;font-family:inherit;font-size:inherit;padding:0;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit}.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-wrap .CodeMirror-scroll{overflow-x:hidden}.CodeMirror textarea{outline:0!important}.CodeMirror pre.CodeMirror-cursor{z-index:10;position:absolute;visibility:hidden;border-left:1px solid #000;border-right:none;width:0}.cm-keymap-fat-cursor pre.CodeMirror-cursor{width:auto;border:0;background:0 0;background:rgba(0,200,0,.4)}.CodeMirror-focused pre.CodeMirror-cursor{visibility:visible}div.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused div.CodeMirror-selected{background:#d7d4f0}.CodeMirror-searching{background:#ffa;background:rgba(255,255,0,.4)}span.cm-keyword{color:#708}span.cm-atom{color:#219}span.cm-number{color:#164}span.cm-def{color:#00f}span.cm-variable{color:#000}span.cm-variable-2{color:#05a}span.cm-variable-3{color:#085}span.cm-property{color:#000}span.cm-operator{color:#000}span.cm-comment{color:#a50}span.cm-string{color:#a11}span.cm-string-2{color:#f50}span.cm-meta{color:#555}span.cm-error{color:red}span.cm-qualifier{color:#555}span.cm-builtin{color:#30a}span.cm-bracket{color:#cc7}span.cm-tag{color:#170}span.cm-attribute{color:#00c}span.cm-header{color:#00f}span.cm-quote{color:#090}span.cm-hr{color:#999}span.cm-link{color:#00c}span.cm-header,span.cm-strong{font-weight:700}span.cm-em{font-style:italic}span.cm-emstrong{font-style:italic;font-weight:700}span.cm-link{text-decoration:underline}div.CodeMirror span.CodeMirror-matchingbracket{color:#0f0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#f22}.fm_submit_layout{border-radius:3px!important;width:100%}.fm_submit_layout em{color:#999;font-size:11px;font-style:normal}.CodeMirror{background:#fff;border:1px solid #ccc;font-size:12px;margin-bottom:6px}.fm_label_buttons{border:1px solid silver;cursor:pointer;font-weight:700;max-width:200px;overflow:hidden;padding:4px 15px;text-overflow:ellipsis;white-space:nowrap;word-break:break-all;word-wrap:break-word}.fm_layout p{font-size:14px;font-family:segoe ui;text-shadow:0 0 1px #cacaca}
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}.wd-form .tablenav.top{margin-bottom:16px}#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"]:first-letter{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 select:disabled{background-repeat:no-repeat;background-position:top right;cursor:not-allowed}.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-item *{width:auto!important}.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}}.iti{position:relative;display:inline-block}.iti *{box-sizing:border-box;-moz-box-sizing:border-box}.iti__hide{display:none}.iti__v-hide{visibility:hidden}.iti input,.iti input[type=tel],.iti input[type=text]{position:relative;z-index:0;margin-top:0!important;margin-bottom:0!important;padding-right:36px;margin-right:0}.iti__flag-container{position:absolute;top:0;bottom:0;right:0;padding:1px}.iti__selected-flag{z-index:1;position:relative;display:flex;align-items:center;height:100%;padding:0 6px 0 8px}.iti__arrow{margin-left:6px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.iti__arrow--up{border-top:none;border-bottom:4px solid #555}.iti__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;-webkit-overflow-scrolling:touch}.iti__country-list--dropup{bottom:100%;margin-bottom:-1px}@media (max-width:500px){.iti__country-list{white-space:normal}}.iti__flag-box{display:inline-block;width:20px}.iti__divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.iti__country{padding:5px 10px;outline:0}.iti__dial-code{color:#999}.iti__country.iti__highlight{background-color:rgba(0,0,0,.05)}.iti__country-name,.iti__dial-code,.iti__flag-box{vertical-align:middle}.iti__country-name,.iti__flag-box{margin-right:6px}.iti--allow-dropdown input,.iti--allow-dropdown input[type=tel],.iti--allow-dropdown input[type=text],.iti--separate-dial-code input,.iti--separate-dial-code input[type=tel],.iti--separate-dial-code input[type=text]{padding-right:6px;padding-left:52px;margin-left:0}.iti--allow-dropdown .iti__flag-container,.iti--separate-dial-code .iti__flag-container{right:auto;left:0}.iti--allow-dropdown .iti__flag-container:hover{cursor:pointer}.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover{cursor:default}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover .iti__selected-flag,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover .iti__selected-flag{background-color:transparent}.iti--separate-dial-code .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--separate-dial-code .iti__selected-dial-code{margin-left:6px}.iti--container{position:absolute;top:-1000px;left:-1000px;z-index:1060;padding:1px}.iti--container:hover{cursor:pointer}.iti-mobile .iti--container{top:30px;bottom:30px;left:30px;right:30px;position:fixed}.iti-mobile .iti__country-list{max-height:100%;width:100%}.iti-mobile .iti__country{padding:10px 10px;line-height:1.5em}.iti__flag{width:20px}.iti__flag.iti__be{width:18px}.iti__flag.iti__ch{width:15px}.iti__flag.iti__mc{width:19px}.iti__flag.iti__ne{width:18px}.iti__flag.iti__np{width:13px}.iti__flag.iti__va{width:15px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-size:5652px 15px}}.iti__flag.iti__ac{height:10px;background-position:0 0}.iti__flag.iti__ad{height:14px;background-position:-22px 0}.iti__flag.iti__ae{height:10px;background-position:-44px 0}.iti__flag.iti__af{height:14px;background-position:-66px 0}.iti__flag.iti__ag{height:14px;background-position:-88px 0}.iti__flag.iti__ai{height:10px;background-position:-110px 0}.iti__flag.iti__al{height:15px;background-position:-132px 0}.iti__flag.iti__am{height:10px;background-position:-154px 0}.iti__flag.iti__ao{height:14px;background-position:-176px 0}.iti__flag.iti__aq{height:14px;background-position:-198px 0}.iti__flag.iti__ar{height:13px;background-position:-220px 0}.iti__flag.iti__as{height:10px;background-position:-242px 0}.iti__flag.iti__at{height:14px;background-position:-264px 0}.iti__flag.iti__au{height:10px;background-position:-286px 0}.iti__flag.iti__aw{height:14px;background-position:-308px 0}.iti__flag.iti__ax{height:13px;background-position:-330px 0}.iti__flag.iti__az{height:10px;background-position:-352px 0}.iti__flag.iti__ba{height:10px;background-position:-374px 0}.iti__flag.iti__bb{height:14px;background-position:-396px 0}.iti__flag.iti__bd{height:12px;background-position:-418px 0}.iti__flag.iti__be{height:15px;background-position:-440px 0}.iti__flag.iti__bf{height:14px;background-position:-460px 0}.iti__flag.iti__bg{height:12px;background-position:-482px 0}.iti__flag.iti__bh{height:12px;background-position:-504px 0}.iti__flag.iti__bi{height:12px;background-position:-526px 0}.iti__flag.iti__bj{height:14px;background-position:-548px 0}.iti__flag.iti__bl{height:14px;background-position:-570px 0}.iti__flag.iti__bm{height:10px;background-position:-592px 0}.iti__flag.iti__bn{height:10px;background-position:-614px 0}.iti__flag.iti__bo{height:14px;background-position:-636px 0}.iti__flag.iti__bq{height:14px;background-position:-658px 0}.iti__flag.iti__br{height:14px;background-position:-680px 0}.iti__flag.iti__bs{height:10px;background-position:-702px 0}.iti__flag.iti__bt{height:14px;background-position:-724px 0}.iti__flag.iti__bv{height:15px;background-position:-746px 0}.iti__flag.iti__bw{height:14px;background-position:-768px 0}.iti__flag.iti__by{height:10px;background-position:-790px 0}.iti__flag.iti__bz{height:14px;background-position:-812px 0}.iti__flag.iti__ca{height:10px;background-position:-834px 0}.iti__flag.iti__cc{height:10px;background-position:-856px 0}.iti__flag.iti__cd{height:15px;background-position:-878px 0}.iti__flag.iti__cf{height:14px;background-position:-900px 0}.iti__flag.iti__cg{height:14px;background-position:-922px 0}.iti__flag.iti__ch{height:15px;background-position:-944px 0}.iti__flag.iti__ci{height:14px;background-position:-961px 0}.iti__flag.iti__ck{height:10px;background-position:-983px 0}.iti__flag.iti__cl{height:14px;background-position:-1005px 0}.iti__flag.iti__cm{height:14px;background-position:-1027px 0}.iti__flag.iti__cn{height:14px;background-position:-1049px 0}.iti__flag.iti__co{height:14px;background-position:-1071px 0}.iti__flag.iti__cp{height:14px;background-position:-1093px 0}.iti__flag.iti__cr{height:12px;background-position:-1115px 0}.iti__flag.iti__cu{height:10px;background-position:-1137px 0}.iti__flag.iti__cv{height:12px;background-position:-1159px 0}.iti__flag.iti__cw{height:14px;background-position:-1181px 0}.iti__flag.iti__cx{height:10px;background-position:-1203px 0}.iti__flag.iti__cy{height:14px;background-position:-1225px 0}.iti__flag.iti__cz{height:14px;background-position:-1247px 0}.iti__flag.iti__de{height:12px;background-position:-1269px 0}.iti__flag.iti__dg{height:10px;background-position:-1291px 0}.iti__flag.iti__dj{height:14px;background-position:-1313px 0}.iti__flag.iti__dk{height:15px;background-position:-1335px 0}.iti__flag.iti__dm{height:10px;background-position:-1357px 0}.iti__flag.iti__do{height:14px;background-position:-1379px 0}.iti__flag.iti__dz{height:14px;background-position:-1401px 0}.iti__flag.iti__ea{height:14px;background-position:-1423px 0}.iti__flag.iti__ec{height:14px;background-position:-1445px 0}.iti__flag.iti__ee{height:13px;background-position:-1467px 0}.iti__flag.iti__eg{height:14px;background-position:-1489px 0}.iti__flag.iti__eh{height:10px;background-position:-1511px 0}.iti__flag.iti__er{height:10px;background-position:-1533px 0}.iti__flag.iti__es{height:14px;background-position:-1555px 0}.iti__flag.iti__et{height:10px;background-position:-1577px 0}.iti__flag.iti__eu{height:14px;background-position:-1599px 0}.iti__flag.iti__fi{height:12px;background-position:-1621px 0}.iti__flag.iti__fj{height:10px;background-position:-1643px 0}.iti__flag.iti__fk{height:10px;background-position:-1665px 0}.iti__flag.iti__fm{height:11px;background-position:-1687px 0}.iti__flag.iti__fo{height:15px;background-position:-1709px 0}.iti__flag.iti__fr{height:14px;background-position:-1731px 0}.iti__flag.iti__ga{height:15px;background-position:-1753px 0}.iti__flag.iti__gb{height:10px;background-position:-1775px 0}.iti__flag.iti__gd{height:12px;background-position:-1797px 0}.iti__flag.iti__ge{height:14px;background-position:-1819px 0}.iti__flag.iti__gf{height:14px;background-position:-1841px 0}.iti__flag.iti__gg{height:14px;background-position:-1863px 0}.iti__flag.iti__gh{height:14px;background-position:-1885px 0}.iti__flag.iti__gi{height:10px;background-position:-1907px 0}.iti__flag.iti__gl{height:14px;background-position:-1929px 0}.iti__flag.iti__gm{height:14px;background-position:-1951px 0}.iti__flag.iti__gn{height:14px;background-position:-1973px 0}.iti__flag.iti__gp{height:14px;background-position:-1995px 0}.iti__flag.iti__gq{height:14px;background-position:-2017px 0}.iti__flag.iti__gr{height:14px;background-position:-2039px 0}.iti__flag.iti__gs{height:10px;background-position:-2061px 0}.iti__flag.iti__gt{height:13px;background-position:-2083px 0}.iti__flag.iti__gu{height:11px;background-position:-2105px 0}.iti__flag.iti__gw{height:10px;background-position:-2127px 0}.iti__flag.iti__gy{height:12px;background-position:-2149px 0}.iti__flag.iti__hk{height:14px;background-position:-2171px 0}.iti__flag.iti__hm{height:10px;background-position:-2193px 0}.iti__flag.iti__hn{height:10px;background-position:-2215px 0}.iti__flag.iti__hr{height:10px;background-position:-2237px 0}.iti__flag.iti__ht{height:12px;background-position:-2259px 0}.iti__flag.iti__hu{height:10px;background-position:-2281px 0}.iti__flag.iti__ic{height:14px;background-position:-2303px 0}.iti__flag.iti__id{height:14px;background-position:-2325px 0}.iti__flag.iti__ie{height:10px;background-position:-2347px 0}.iti__flag.iti__il{height:15px;background-position:-2369px 0}.iti__flag.iti__im{height:10px;background-position:-2391px 0}.iti__flag.iti__in{height:14px;background-position:-2413px 0}.iti__flag.iti__io{height:10px;background-position:-2435px 0}.iti__flag.iti__iq{height:14px;background-position:-2457px 0}.iti__flag.iti__ir{height:12px;background-position:-2479px 0}.iti__flag.iti__is{height:15px;background-position:-2501px 0}.iti__flag.iti__it{height:14px;background-position:-2523px 0}.iti__flag.iti__je{height:12px;background-position:-2545px 0}.iti__flag.iti__jm{height:10px;background-position:-2567px 0}.iti__flag.iti__jo{height:10px;background-position:-2589px 0}.iti__flag.iti__jp{height:14px;background-position:-2611px 0}.iti__flag.iti__ke{height:14px;background-position:-2633px 0}.iti__flag.iti__kg{height:12px;background-position:-2655px 0}.iti__flag.iti__kh{height:13px;background-position:-2677px 0}.iti__flag.iti__ki{height:10px;background-position:-2699px 0}.iti__flag.iti__km{height:12px;background-position:-2721px 0}.iti__flag.iti__kn{height:14px;background-position:-2743px 0}.iti__flag.iti__kp{height:10px;background-position:-2765px 0}.iti__flag.iti__kr{height:14px;background-position:-2787px 0}.iti__flag.iti__kw{height:10px;background-position:-2809px 0}.iti__flag.iti__ky{height:10px;background-position:-2831px 0}.iti__flag.iti__kz{height:10px;background-position:-2853px 0}.iti__flag.iti__la{height:14px;background-position:-2875px 0}.iti__flag.iti__lb{height:14px;background-position:-2897px 0}.iti__flag.iti__lc{height:10px;background-position:-2919px 0}.iti__flag.iti__li{height:12px;background-position:-2941px 0}.iti__flag.iti__lk{height:10px;background-position:-2963px 0}.iti__flag.iti__lr{height:11px;background-position:-2985px 0}.iti__flag.iti__ls{height:14px;background-position:-3007px 0}.iti__flag.iti__lt{height:12px;background-position:-3029px 0}.iti__flag.iti__lu{height:12px;background-position:-3051px 0}.iti__flag.iti__lv{height:10px;background-position:-3073px 0}.iti__flag.iti__ly{height:10px;background-position:-3095px 0}.iti__flag.iti__ma{height:14px;background-position:-3117px 0}.iti__flag.iti__mc{height:15px;background-position:-3139px 0}.iti__flag.iti__md{height:10px;background-position:-3160px 0}.iti__flag.iti__me{height:10px;background-position:-3182px 0}.iti__flag.iti__mf{height:14px;background-position:-3204px 0}.iti__flag.iti__mg{height:14px;background-position:-3226px 0}.iti__flag.iti__mh{height:11px;background-position:-3248px 0}.iti__flag.iti__mk{height:10px;background-position:-3270px 0}.iti__flag.iti__ml{height:14px;background-position:-3292px 0}.iti__flag.iti__mm{height:14px;background-position:-3314px 0}.iti__flag.iti__mn{height:10px;background-position:-3336px 0}.iti__flag.iti__mo{height:14px;background-position:-3358px 0}.iti__flag.iti__mp{height:10px;background-position:-3380px 0}.iti__flag.iti__mq{height:14px;background-position:-3402px 0}.iti__flag.iti__mr{height:14px;background-position:-3424px 0}.iti__flag.iti__ms{height:10px;background-position:-3446px 0}.iti__flag.iti__mt{height:14px;background-position:-3468px 0}.iti__flag.iti__mu{height:14px;background-position:-3490px 0}.iti__flag.iti__mv{height:14px;background-position:-3512px 0}.iti__flag.iti__mw{height:14px;background-position:-3534px 0}.iti__flag.iti__mx{height:12px;background-position:-3556px 0}.iti__flag.iti__my{height:10px;background-position:-3578px 0}.iti__flag.iti__mz{height:14px;background-position:-3600px 0}.iti__flag.iti__na{height:14px;background-position:-3622px 0}.iti__flag.iti__nc{height:10px;background-position:-3644px 0}.iti__flag.iti__ne{height:15px;background-position:-3666px 0}.iti__flag.iti__nf{height:10px;background-position:-3686px 0}.iti__flag.iti__ng{height:10px;background-position:-3708px 0}.iti__flag.iti__ni{height:12px;background-position:-3730px 0}.iti__flag.iti__nl{height:14px;background-position:-3752px 0}.iti__flag.iti__no{height:15px;background-position:-3774px 0}.iti__flag.iti__np{height:15px;background-position:-3796px 0}.iti__flag.iti__nr{height:10px;background-position:-3811px 0}.iti__flag.iti__nu{height:10px;background-position:-3833px 0}.iti__flag.iti__nz{height:10px;background-position:-3855px 0}.iti__flag.iti__om{height:10px;background-position:-3877px 0}.iti__flag.iti__pa{height:14px;background-position:-3899px 0}.iti__flag.iti__pe{height:14px;background-position:-3921px 0}.iti__flag.iti__pf{height:14px;background-position:-3943px 0}.iti__flag.iti__pg{height:15px;background-position:-3965px 0}.iti__flag.iti__ph{height:10px;background-position:-3987px 0}.iti__flag.iti__pk{height:14px;background-position:-4009px 0}.iti__flag.iti__pl{height:13px;background-position:-4031px 0}.iti__flag.iti__pm{height:14px;background-position:-4053px 0}.iti__flag.iti__pn{height:10px;background-position:-4075px 0}.iti__flag.iti__pr{height:14px;background-position:-4097px 0}.iti__flag.iti__ps{height:10px;background-position:-4119px 0}.iti__flag.iti__pt{height:14px;background-position:-4141px 0}.iti__flag.iti__pw{height:13px;background-position:-4163px 0}.iti__flag.iti__py{height:11px;background-position:-4185px 0}.iti__flag.iti__qa{height:8px;background-position:-4207px 0}.iti__flag.iti__re{height:14px;background-position:-4229px 0}.iti__flag.iti__ro{height:14px;background-position:-4251px 0}.iti__flag.iti__rs{height:14px;background-position:-4273px 0}.iti__flag.iti__ru{height:14px;background-position:-4295px 0}.iti__flag.iti__rw{height:14px;background-position:-4317px 0}.iti__flag.iti__sa{height:14px;background-position:-4339px 0}.iti__flag.iti__sb{height:10px;background-position:-4361px 0}.iti__flag.iti__sc{height:10px;background-position:-4383px 0}.iti__flag.iti__sd{height:10px;background-position:-4405px 0}.iti__flag.iti__se{height:13px;background-position:-4427px 0}.iti__flag.iti__sg{height:14px;background-position:-4449px 0}.iti__flag.iti__sh{height:10px;background-position:-4471px 0}.iti__flag.iti__si{height:10px;background-position:-4493px 0}.iti__flag.iti__sj{height:15px;background-position:-4515px 0}.iti__flag.iti__sk{height:14px;background-position:-4537px 0}.iti__flag.iti__sl{height:14px;background-position:-4559px 0}.iti__flag.iti__sm{height:15px;background-position:-4581px 0}.iti__flag.iti__sn{height:14px;background-position:-4603px 0}.iti__flag.iti__so{height:14px;background-position:-4625px 0}.iti__flag.iti__sr{height:14px;background-position:-4647px 0}.iti__flag.iti__ss{height:10px;background-position:-4669px 0}.iti__flag.iti__st{height:10px;background-position:-4691px 0}.iti__flag.iti__sv{height:12px;background-position:-4713px 0}.iti__flag.iti__sx{height:14px;background-position:-4735px 0}.iti__flag.iti__sy{height:14px;background-position:-4757px 0}.iti__flag.iti__sz{height:14px;background-position:-4779px 0}.iti__flag.iti__ta{height:10px;background-position:-4801px 0}.iti__flag.iti__tc{height:10px;background-position:-4823px 0}.iti__flag.iti__td{height:14px;background-position:-4845px 0}.iti__flag.iti__tf{height:14px;background-position:-4867px 0}.iti__flag.iti__tg{height:13px;background-position:-4889px 0}.iti__flag.iti__th{height:14px;background-position:-4911px 0}.iti__flag.iti__tj{height:10px;background-position:-4933px 0}.iti__flag.iti__tk{height:10px;background-position:-4955px 0}.iti__flag.iti__tl{height:10px;background-position:-4977px 0}.iti__flag.iti__tm{height:14px;background-position:-4999px 0}.iti__flag.iti__tn{height:14px;background-position:-5021px 0}.iti__flag.iti__to{height:10px;background-position:-5043px 0}.iti__flag.iti__tr{height:14px;background-position:-5065px 0}.iti__flag.iti__tt{height:12px;background-position:-5087px 0}.iti__flag.iti__tv{height:10px;background-position:-5109px 0}.iti__flag.iti__tw{height:14px;background-position:-5131px 0}.iti__flag.iti__tz{height:14px;background-position:-5153px 0}.iti__flag.iti__ua{height:14px;background-position:-5175px 0}.iti__flag.iti__ug{height:14px;background-position:-5197px 0}.iti__flag.iti__um{height:11px;background-position:-5219px 0}.iti__flag.iti__un{height:14px;background-position:-5241px 0}.iti__flag.iti__us{height:11px;background-position:-5263px 0}.iti__flag.iti__uy{height:14px;background-position:-5285px 0}.iti__flag.iti__uz{height:10px;background-position:-5307px 0}.iti__flag.iti__va{height:15px;background-position:-5329px 0}.iti__flag.iti__vc{height:14px;background-position:-5346px 0}.iti__flag.iti__ve{height:14px;background-position:-5368px 0}.iti__flag.iti__vg{height:10px;background-position:-5390px 0}.iti__flag.iti__vi{height:14px;background-position:-5412px 0}.iti__flag.iti__vn{height:14px;background-position:-5434px 0}.iti__flag.iti__vu{height:12px;background-position:-5456px 0}.iti__flag.iti__wf{height:14px;background-position:-5478px 0}.iti__flag.iti__ws{height:10px;background-position:-5500px 0}.iti__flag.iti__xk{height:15px;background-position:-5522px 0}.iti__flag.iti__ye{height:14px;background-position:-5544px 0}.iti__flag.iti__yt{height:14px;background-position:-5566px 0}.iti__flag.iti__za{height:14px;background-position:-5588px 0}.iti__flag.iti__zm{height:14px;background-position:-5610px 0}.iti__flag.iti__zw{height:10px;background-position:-5632px 0}.iti__flag{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 (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-image:url(images/flags@2x.png)}}.iti__flag.iti__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
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}.CodeMirror{font-family:monospace;height:300px;color:#000;direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor-mark{background-color:rgba(20,255,20,.5);-webkit-animation:blink 1.06s steps(1) infinite;-moz-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite}.cm-animate-fat-cursor{width:auto;-webkit-animation:blink 1.06s steps(1) infinite;-moz-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@-moz-keyframes blink{50%{background-color:transparent}}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:0;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-type,.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta{color:#555}.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-s-default .cm-error{color:red}.cm-invalidchar{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:#fff}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-50px;margin-right:-50px;padding-bottom:50px;height:100%;outline:0;position:relative}.CodeMirror-sizer{position:relative;border-right:50px solid transparent}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none;outline:0}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-50px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border-width:0;background:0 0;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual}.CodeMirror-wrap pre.CodeMirror-line,.CodeMirror-wrap pre.CodeMirror-line-like{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-code{outline:0}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{-moz-box-sizing:content-box;box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:''}span.CodeMirror-selectedtext{background:0 0}.fm_submit_layout{border-radius:3px!important;width:100%}.fm_submit_layout em{color:#999;font-size:11px;font-style:normal}.CodeMirror{background:#fff;border:1px solid #ccc;font-size:12px;margin-bottom:6px}.fm_label_buttons{border:1px solid silver;cursor:pointer;font-weight:700;max-width:200px;overflow:hidden;padding:4px 15px;text-overflow:ellipsis;white-space:nowrap;word-break:break-all;word-wrap:break-word}.fm_layout p{font-size:14px;font-family:segoe ui;text-shadow:0 0 1px #cacaca}
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}.wd-form .tablenav.top{margin-bottom:16px}#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"]:first-letter{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}}
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}.wd-form .tablenav.top{margin-bottom:16px}#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"]:first-letter{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 select:disabled{background-repeat:no-repeat;background-position:top right;cursor:not-allowed}.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-item *{width:auto!important}.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/spectrum.css CHANGED
@@ -1,5 +1,5 @@
1
  /***
2
- Spectrum Colorpicker v1.8.0
3
  https://github.com/bgrins/spectrum
4
  Author: Brian Grinstead
5
  License: MIT
1
  /***
2
+ Spectrum Colorpicker v1.8.1
3
  https://github.com/bgrins/spectrum
4
  Author: Brian Grinstead
5
  License: MIT
css/styles.min.css CHANGED
@@ -9,4 +9,4 @@
9
  * Licensed under the MIT license - http://opensource.org/licenses/MIT
10
  *
11
  * Copyright (c) 2016 Daniel Eden
12
- */.fm-animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.fm-animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.fm-animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}.fm-animated.bounceIn,.fm-animated.bounceOut,.fm-animated.flipOutX,.fm-animated.flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s}@-webkit-keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.050,.855,.060);animation-timing-function:cubic-bezier(.755,.050,.855,.060);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.050,.855,.060);animation-timing-function:cubic-bezier(.755,.050,.855,.060);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.050,.855,.060);animation-timing-function:cubic-bezier(.755,.050,.855,.060);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.050,.855,.060);animation-timing-function:cubic-bezier(.755,.050,.855,.060);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{50%,from,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{50%,from,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{from{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{-webkit-transform:none;transform:none}}@keyframes wobble{from{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{-webkit-transform:none;transform:none}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{11.1%,from,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{11.1%,from,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-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,25px,0);transform:translate3d(0,25px,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)}to{-webkit-transform:none;transform:none}}@keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-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,25px,0);transform:translate3d(0,25px,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)}to{-webkit-transform:none;transform:none}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{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)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{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)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.fm-animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:none;transform:none;opacity:1}}@keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:none;transform:none;opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}.fm-form *{box-sizing:border-box}.wdform_map img{max-width:none!important}.wdform_row .wdform-field .wdform_map{width:inherit!important}.checkbox-div,.checkbox-div *,.radio-div,.radio-div *,.wdform-page-button{-moz-box-sizing:content-box!important;box-sizing:content-box!important;-webkit-box-sizing:content-box!important}.page_percentage_deactive,.page_percentage_deactive *{word-wrap:normal}.wdform_percentage_arrow,.wdform_percentage_text{vertical-align:top!important}div[type=type_button],div[type=type_submit_reset]{justify-content:flex-end}div[type=type_captcha] .wdform-element-section *{vertical-align:middle}.file-upload-status{direction:inherit!important}.fm_datepicker.ui-datepicker{z-index:1000!important;font-size:15px!important;background:#f2f2f2!important;border:1px solid #f2f2f2!important;color:#777!important}.fm_datepicker .ui-widget-header{border:1px solid #e2e2e2!important;background:#e6e6e6!important;color:#cc0c0c}.fm_datepicker .ui-state-default,.fm_datepicker .ui-widget-content .ui-state-default,.fm_datepicker .ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.fm_datepicker .ui-state-focus,.fm_datepicker .ui-state-hover,.fm_datepicker .ui-widget-content .ui-state-focus,.fm_datepicker .ui-widget-content .ui-state-hover,.fm_datepicker .ui-widget-header .ui-state-focus,.fm_datepicker .ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.fm_datepicker .ui-state-highlight,.fm_datepicker .ui-widget-content .ui-state-highlight,.fm_datepicker .ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.fm_datepicker .ui-state-active,.fm_datepicker .ui-widget-content .ui-state-active,.fm_datepicker .ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.fm_datepicker .ui-icon,.fm_datepicker .ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm_datepicker.ui-datepicker{font-size:15px!important}.fm_datepicker.ui-datepicker{background:#f2f2f2!important;border:1px solid #f2f2f2!important;color:#777!important}.fm_datepicker .ui-widget-header{border:1px solid #e2e2e2!important;background:#e6e6e6!important;color:#cc0c0c}.fm_datepicker .ui-state-default,.fm_datepicker .ui-widget-content .ui-state-default,.fm_datepicker .ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.fm_datepicker .ui-state-focus,.fm_datepicker .ui-state-hover,.fm_datepicker .ui-widget-content .ui-state-focus,.fm_datepicker .ui-widget-content .ui-state-hover,.fm_datepicker .ui-widget-header .ui-state-focus,.fm_datepicker .ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.fm_datepicker .ui-state-highlight,.fm_datepicker .ui-widget-content .ui-state-highlight,.fm_datepicker .ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.fm_datepicker .ui-state-active,.fm_datepicker .ui-widget-content .ui-state-active,.fm_datepicker .ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.fm_datepicker .ui-icon,.fm_datepicker .ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm_datepicker#ui-datepicker-div{z-index:2147483647!important}.error_label,.error_label_check_mail,.error_label_check_pass,.error_label_confirm,.error_label_exp,.error_label_price,.error_label_upload,.wd-error-label{color:red!important}.fm-error,.fm-not-filled,.fm-not-valid-date{color:red;font-size:13px;width:100%;padding-left:10px;margin-top:-7px;line-height:20px}.fm-form-container{display:block!important}.fm-form-container .fm-form div[type=type_phone_new] input[type=text]{padding-right:6px!important;padding-left:52px!important}.fm-form .other_input{max-width:150px}.fm-form a,.fm-form a:focus,.fm-form input,.fm-form input:focus,.fm-form select,.fm-form select:focus,.fm-form textarea,.fm-form textarea:focus{outline:0!important}.fm-form a,.fm-form button{cursor:pointer}.fm-form label{display:inline}.fm-form .wdform_section{display:flex;display:-webkit-flex;-webkit-flex-direction:row;flex-direction:row}.fm-form .wdform_column:first-child:nth-last-child(1){width:100%}.fm-form .wdform_column:first-child:nth-last-child(2),.fm-form .wdform_column:first-child:nth-last-child(2)~.wdform_column{width:50%}.fm-form .wdform_column:first-child:nth-last-child(3),.fm-form .wdform_column:first-child:nth-last-child(3)~.wdform_column{width:33.33%}.fm-form .wdform_column:first-child:nth-last-child(4),.fm-form .wdform_column:first-child:nth-last-child(4)~.wdform_column{width:25%}.fm-form .wdform_column:first-child:nth-last-child(5),.fm-form .wdform_column:first-child:nth-last-child(5)~.wdform_column{width:20%}.fm-form .fm-header-bg,.fm-form .wdform-field:not([type=type_hidden]){padding:10px 10px}.fm-form .wdform-label{word-break:keep-all}.fm-form .wdform-label-section{text-align:left;margin-bottom:5px}.fm-form .fm-signature{display:block;margin-bottom:5px;border:1px solid #dfdfdf;background-color:#fff;touch-action:none}div[type=type_file_upload] .wdform-element-section,div[type=type_submit_reset] .wdform-element-section{min-width:inherit}.wdform-element-section{text-align:left;line-height:initial}.fm-topbar{width:100%;left:0;z-index:999999}.fm-scrollbox{box-sizing:border-box;position:fixed;max-height:100vh;overflow-y:auto;transition:bottom .4s ease 0s;z-index:999999;opacity:1;bottom:0;overflow-x:hidden}.fm-popover-content,.fm-scrollbox-form{width:100%}.fm-scrollbox-form.float-right{float:right}.fm-scrollbox-form.float-left{float:left}.fm-minimize-text{position:fixed;transition:bottom .4s ease 0s;z-index:99999;opacity:1;bottom:0;width:100%}.fm-popover-background{position:fixed;background-color:#000;left:0;top:0;width:100%;height:100%;z-index:1100000001;opacity:.7}.fm-popover{box-sizing:border-box;position:fixed;left:0;top:0;overflow:auto;width:100%;height:100%;outline:0!important;display:block;z-index:1100000002}.fm-popover-container{position:absolute;width:100%;height:100%;left:0;top:0;padding:20px 10px;box-sizing:border-box;text-align:center}.fm-popover-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.fm-popover-inner-background{position:absolute;width:100%;height:100%;left:0;top:0;z-index:1100000003}.fm-popover-content{position:relative;display:inline-block;max-width:95%;vertical-align:middle;margin:0 auto;text-align:left;z-index:1100000005}.fm-form .wdform-date{width:120px;vertical-align:top}.wdform_grading{margin:2px}.wdform_grading input{display:inline}.fm-form .wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-form .page_active,.fm-form .page_deactive{text-align:center;display:inline-block;cursor:pointer}.fm-form .page_percentage_active,.fm-form .page_percentage_deactive{display:inline-block}.fm-form .wdform-section-break-div{border:none}.fm-form .wdform_tr_section_break{clear:both}.fm-form .captcha_refresh{width:30px;height:30px;border-width:0;margin:0;padding:0;vertical-align:middle;cursor:pointer;background-image:url(../images/refresh_black.png)}.fm-form .fm-right label span{float:right;left:5px;position:relative;top:5px}.fm-form .checkbox-div label,.fm-form .radio-div{margin:0 5px}.fm-form .if-ie-div-label{opacity:1!important}.fm-form .wdform-matrix-cell select{width:60px}.fm-form .wdform-matrix-table{display:table;border-spacing:0}.fm-form .wdform-matrix-column{text-align:left;display:table-cell}.fm-form .wdform-matrix-cell{text-align:center;display:table-cell;padding:6px 10px}.fm-form .wdform-matrix-head>div{display:table-cell;text-align:center}.fm-form .wdform-matrix-head{display:table-row}.fm-form .wdform-matrix-row0{background:#dfdfdf;display:table-row}.fm-form .wdform-matrix-row1{background:#e9e9e9;display:table-row}.fm-form .paypal-property .wdform-quantity{width:55px}.fm-form .paypal-property select{width:85px}.wdform_map img{max-width:none!important}.wdform_row .wdform-field .wdform_map{width:inherit!important}.checkbox-div,.checkbox-div *,.radio-div,.radio-div *,.wdform-page-button{-moz-box-sizing:content-box!important;box-sizing:content-box!important;-webkit-box-sizing:content-box!important}.page_percentage_deactive,.page_percentage_deactive *{word-wrap:normal}.wdform_percentage_arrow,.wdform_percentage_text{vertical-align:top!important}.fm_hide_mobile{display:none!important}.fm-hide{display:none!important}.fm-show{display:block!important}.fm-align-right{text-align:right}.fm-align-left{text-align:left}.fm-align-center{text-align:center}.fm-form .file-upload-status{position:static;direction:inherit!important}.fm-form .wdform_page{display:block!important;margin:0!important;float:none!important}.fm_mobile_full{width:100%!important;padding:0 5%!important}.fm-clear{content:'';display:block;clear:both}.fm-topbar .fm-header-bg{display:table-cell;vertical-align:middle}.fm-topbar .fm-header{display:table-cell}.fm-header{vertical-align:middle;display:table}.image_left_right .fm-header-img{display:table-cell;vertical-align:middle;text-align:center}.image_left_right .fm-header-text{display:table-cell;vertical-align:middle}@media screen and (max-width:768px){.fm-minimize-text,.fm-popover-content,.fm-scrollbox-form{width:95%!important}.fm-form-container .fm-scrollbox{width:97%!important}}@media screen and (max-width:480px){.fm-form{width:100%!important}.wdform-page-and-images{padding:0!important}.wdform_column{padding:2px!important}.image_left_right .fm-header-img,.image_left_right .fm-header-text{display:block}.fm-form .g-recaptcha:not([data-size=invisible]){transform:scale(.77);-webkit-transform:scale(.77);transform-origin:0 0;-webkit-transform-origin:0 0}}@media screen and (min-width:481px) and (max-width:768px){.fm-form{width:100%!important}.image_left_right .fm-header-img,.image_left_right .fm-header-text{display:block}}.fm-form-container .fm-form .fm-message{width:100%;color:#333;margin:0 0 15px 0;padding:15px 15px;text-align:left}.fm-form-container .fm-form .fm-message.fm-notice-success{background:#e0ffc7;border:1px solid #b4d39b}.fm-form-container .fm-form .fm-message.fm-notice-error{background:#fbeaea;border:1px solid #eed3d7}.fm-form-container .fm-form .fm-message.fm-warning-error{background:#fff8e5;border:1px solid #ffb900}.fm-form-container .fm-form .fm-message.fm-notice-dismiss{background:#deefff;border:1px solid #5b9dd9}.fm-form-container .fm-form.fm-form-submitted{padding:0!important}.fm-form .wd-float-left{float:left}.fm-form .wd-float-right{float:right}.fm-form .wd-hidden{display:none}.fm-form .wd-block{display:block}.fm-form .wd-inline-block{display:inline-block}.fm-form .wd-table{display:table}.fm-form .wd-table-group{display:table-row-group}.fm-form .wd-table-cell{display:table-cell}.fm-form .wd-table-row{display:table-row}.fm-form .wd-vertical-middle{vertical-align:middle}.fm-form .wd-vertical-top{vertical-align:top}.fm-form .wd-width-100{width:100%}.fm-form .wd-width-90{width:90%}.fm-form .wd-width-80{width:80%}.fm-form .wd-width-70{width:70%}.fm-form .wd-width-60{width:60%}.fm-form .wd-width-50{width:50%}.fm-form .wd-width-40{width:40%}.fm-form .wd-width-49{width:49%}.fm-form .wd-width-33{width:33.3%}.fm-form .wd-width-30{width:30%}.fm-form .wd-width-20{width:20%}.fm-form .wd-width-10{width:10%}.fm-form .wd-width-5{width:5%}.fm-form .time_box{text-align:right;width:50px}.fm-form-container .fm-form .wdform_row select.am_pm_select{background-size:0;vertical-align:middle}.fm-form .wd-name-separator{margin:0 4px;padding:0}.fm-form .wd-clear{clear:both}.checkbox-div-right{margin:3px 8px 0 0}.fm-form .wd-paypal-cent{width:30px}.fm-form .paypal-property{margin-top:5px}.fm-form .wd-scale-rating{border-spacing:7px}.fm-form .wdform_grading input{width:70px}.fm-form .wdform_grading label{margin-left:5px}.fm-form .wd-calendar-button{width:20px;height:20px;margin:0 0 0 -25px;color:inherit;font-size:20px}.rtl .fm-form .wd-calendar-button{margin:0 -25px 0 0}input[type=number].wd-type-number::-webkit-inner-spin-button,input[type=number].wd-type-number::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number].wd-type-number{-moz-appearance:textfield;appearance:none}.fm-form .button-reset:not(:last-child),.fm-form .button-submit{margin-right:15px;position:relative}.fm-form .ui-spinner input[type=number]{border:none}.rtl .wdform-label-section.wd-float-left{float:right;text-align:right}.rtl .fm-form .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .wdform-element-section{text-align:right}.rtl .ui-spinner input{text-align:left}.rtl .fm-form-container .fm-form div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .fm-form .wdform-label-section{text-align:right}.rtl .fm-form .button-submit{margin-left:15px;margin-right:0}.fm-form-container .fm-form{display:block;background:0 0;border:none!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.fm-form-container .fm-form .image_left_right.fm-header{padding:0!important}.fm-form-container .fm-form.header_left_right .wdform-page-and-images{display:table-cell}.fm-form-container .fm-form.header_left_right .fm-header{display:table-cell!important;vertical-align:middle}.fm-form-container .fm-minimize-text div{background-color:#fff;border:none!important;cursor:pointer;color:#444}.fm-form-container .fm-minimize-text div:hover{border:none!important;outline:0;cursor:pointer}.fm-form-container .fm-pages .page_active,.fm-form-container .fm-pages .page_deactive{cursor:pointer}.fm-form-container .fm-pages .page_percentage_active{min-width:7%}.fm-form-container .fm-action-buttons{font-family:monospace;text-align:center;cursor:pointer}.fm-form-container .fm-form .checkbox-div label span,.fm-form-container .fm-form .radio-div label span{border:none;display:inline-block;vertical-align:middle}.fm-form-container .fm-form .checkbox-div input[type=checkbox]:checked label span:after,.fm-form-container .fm-form .radio-div input[type=radio]:checked label span:after{content:"";display:block}.fm-form-container .fm-form input[type=number].time_box{min-width:45px}.fm-form-container .fm-popover .fm-popover-content,.fm-form-container .fm-scrollbox .fm-scrollbox-form{position:relative}.fm-form-container .fm-popover .fm-form,.fm-form-container .fm-scrollbox .fm-form,.fm-form-container .fm-topbar .fm-form{background:#fff;border:1px solid #ccc}.fm-form-container .fm-popover .fm-form{padding-top:25px}.fm-popover-container.fm-submit-message form.fm-form{padding-top:0}@media screen and (max-width:768px){.fm-form .wdform_section{-webkit-flex-direction:column;flex-direction:column}.fm-form .wdform_column{width:100%!important}.fm-form-container .fm-form .wdform-field{-webkit-flex-direction:column;flex-direction:column}.fm-form-container .fm-form .wdform-element-section,.fm-form-container .fm-form .wdform-label-section{width:100%}}.fm-form .wd-flex{display:flex;display:-webkit-flex}div[type=type_radio]>.wdform-element-section .wd-flex{flex-wrap:wrap}div[type=type_checkbox]>.wdform-element-section .wd-flex{flex-wrap:wrap}div[type=type_radio]>.wdform-element-section .wd-flex.radio-div,div[type=type_radio]>.wdform-element-section .wd-flex.radio-div label{flex-wrap:nowrap}div[type=type_checkbox]>.wdform-element-section .wd-flex.checkbox-div,div[type=type_checkbox]>.wdform-element-section .wd-flex.checkbox-div label{flex-wrap:nowrap}.fm-form .wd-flex-column{-webkit-flex-direction:column;flex-direction:column}.fm-form .wd-flex-row{-webkit-flex-direction:row;flex-direction:row}.fm-form .wd-flex-row-reverse{-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.fm-form .wd-flex-wrap{-webkit-flex-wrap:wrap;flex-wrap:wrap}.fm-form .wd-align-items{-webkit-align-items:baseline;align-items:baseline}.fm-form .wdform_row .wd-align-items-center{-webkit-align-items:center;align-items:center}.fm-form .wd-justify-content{-webkit-justify-content:space-between;justify-content:space-between}.fm-form .wd-justify-content-left{-webkit-justify-content:flex-start;justify-content:flex-start}.fm-form .wd-justify-content-right{-webkit-justify-content:flex-end;justify-content:flex-end}.fm-form .wd-justify-content-center{-webkit-justify-content:center;justify-content:center}.fm-form .wdform-field{-webkit-align-items:baseline;align-items:baseline}.fm-form .fm-type_signature{-webkit-align-items:flex-start;align-items:flex-start}.checkbox-div.wd-flex,.fm-form .wdform-element-section{-webkit-align-items:baseline;align-items:baseline}@media all and (-ms-high-contrast:none){.checkbox-div.wd-flex,.fm-form .wdform-element-section{-webkit-align-items:flex-start;align-items:flex-start}.wdform-element-section.wdform_select{margin-right:auto}.fm-form-builder .wdform_column{width:auto!important}}.fm-form .wd-choice{align-items:center;margin:0 5px 5px 5px}.fm-form textarea{resize:vertical}.fm-form .intl-tel-input{width:100%}.fm-form .wd-address{padding-bottom:8px}.fm-form .wd-choice label{cursor:pointer;margin:0 5px;word-break:break-word}.fm-form div[type=type_date_new] .wdform-element-section,.fm-form div[type=type_date_range] .wdform-element-section{align-items:center}.fm-form div[class^=div_total]{margin-bottom:10px}.fm-form div[class^=div_total] span,.fm-form div[class^=paypal_products] span{margin-right:5px}.fm-form div[class^=paypal_tax]{margin-top:10px}.fm-form .ui-slider-handle,.fm-form .ui-slider-range{padding:0!important}.fm-form label[for]{cursor:pointer}.fm-form .wdform-required{margin:0 5px}.fm-form .fm-header-description{text-align:justify}.wdform_star_rating img{display:inline-block;cursor:pointer}.fm-message p{margin:0!important;padding:0!important}.arithmetic_captcha_img,.captcha_img{margin:0}div[type=type_slider] .label{color:inherit;background:0 0}.fm-form .form-group{margin:0;padding:0}.fm-form-container .fm-form .fm-gdpr-checkbox{display:inline-block!important;margin-right:5px}.fm-form .wdform_row{position:relative}.fm-form-builder .wdform_page{display:flex}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_row{flex:1;max-width:100%;line-height:1}.wdform_column{display:flex;flex-direction:column}.fm-form-builder .wdform_column{width:initial!important;flex-direction:row}.fm-form-builder .wdform_section{display:inline-block;flex-wrap:unset;vertical-align:top}.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(1){width:100%}.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(2),.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(2)~.wdform_section{width:100%}.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(3),.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(3)~.wdform_section{width:50%}.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(4),.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(4)~.wdform_section{width:33.33%}@media screen and (max-width:768px){.fm-form .fm-form-builder .wdform_column,.fm-form .fm-form-builder .wdform_section{width:100%!important}.fm-form-container .fm-form-builder .fm-form .wdform-element-section,.fm-form-container .fm-form-builder .fm-form .wdform-label-section{width:100%}}.fm-loading{width:100%;height:100%;top:0;left:0;position:absolute;background-color:rgba(0,0,0,.25);background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:10%;z-index:100100}.fm-submit-loading{display:none;margin:0 5px;position:relative;vertical-align:top}.fm-submit-loading.spinner:before{right:0}@keyframes spinner{to{transform:rotate(360deg)}}.fm-submit-loading.spinner:before{box-sizing:border-box;position:absolute;animation:spinner .6s linear infinite}.fm-col-1{flex:0 1 100%!important;width:100%!important}.fm-col-2{flex:0 1 50%!important;width:50%!important}.fm-col-3{flex:0 1 33.33%!important;width:33.33%!important}.fm-col-4{flex:0 1 25%!important;width:25%!important}#div_percentage,.wdform_percentage_arrow,.wdform_percentage_title{display:inline-block}.wdform_percentage_title{margin-left:5px}.button-submit[disabled]{opacity:.5;pointer-events:none}.StripeElement{padding:10px 12px!important}div[type=type_stripe] .fm-notice-error{position:absolute;top:-41px;width:auto!important}.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}@font-face{font-family:fm-icons;src:url(fonts/fm-icons.ttf?wjdy97) format('truetype'),url(fonts/fm-icons.woff?wjdy97) format('woff'),url(fonts/fm-icons.svg?wjdy97#fm-icons) format('svg');font-weight:400;font-style:normal}[class*=" fm-ico-"],[class^=fm-ico-]{font-family:fm-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fm-ico-form-maker:before{content:"\e908";color:#6e7883}.fm-ico-plus-circle:before{content:"\e900"}.fm-ico-plus:before{content:"\e901"}.fm-ico-collapse:before{content:"\e902"}.fm-ico-expand:before{content:"\e906"}.fm-ico-duplicate:before{content:"\e904"}.fm-ico-edit:before{content:"\e905"}.fm-ico-delete:before{content:"\e907"}.fm-ico-draggable:before{content:"\e903"}.fm-ico-close:before{content:"\e909"}.fm-ico-spinner:before{content:"\e90a"}
9
  * Licensed under the MIT license - http://opensource.org/licenses/MIT
10
  *
11
  * Copyright (c) 2016 Daniel Eden
12
+ */.fm-animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.fm-animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.fm-animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}.fm-animated.bounceIn,.fm-animated.bounceOut,.fm-animated.flipOutX,.fm-animated.flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s}@-webkit-keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.050,.855,.060);animation-timing-function:cubic-bezier(.755,.050,.855,.060);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.050,.855,.060);animation-timing-function:cubic-bezier(.755,.050,.855,.060);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.050,.855,.060);animation-timing-function:cubic-bezier(.755,.050,.855,.060);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.050,.855,.060);animation-timing-function:cubic-bezier(.755,.050,.855,.060);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{50%,from,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{50%,from,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{from{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{-webkit-transform:none;transform:none}}@keyframes wobble{from{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{-webkit-transform:none;transform:none}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{11.1%,from,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{11.1%,from,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-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,25px,0);transform:translate3d(0,25px,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)}to{-webkit-transform:none;transform:none}}@keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-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,25px,0);transform:translate3d(0,25px,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)}to{-webkit-transform:none;transform:none}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{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)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{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)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.fm-animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:none;transform:none;opacity:1}}@keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:none;transform:none;opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}.fm-form *{box-sizing:border-box}.wdform_map img{max-width:none!important}.wdform_row .wdform-field .wdform_map{width:inherit!important}.checkbox-div,.checkbox-div *,.radio-div,.radio-div *,.wdform-page-button{-moz-box-sizing:content-box!important;box-sizing:content-box!important;-webkit-box-sizing:content-box!important}.page_percentage_deactive,.page_percentage_deactive *{word-wrap:normal}.wdform_percentage_arrow,.wdform_percentage_text{vertical-align:top!important}div[type=type_button],div[type=type_submit_reset]{justify-content:flex-end}div[type=type_captcha] .wdform-element-section *{vertical-align:middle}.file-upload-status{direction:inherit!important}.fm_datepicker.ui-datepicker{z-index:1000!important;font-size:15px!important;background:#f2f2f2!important;border:1px solid #f2f2f2!important;color:#777!important}.fm_datepicker .ui-widget-header{border:1px solid #e2e2e2!important;background:#e6e6e6!important;color:#cc0c0c}.fm_datepicker .ui-state-default,.fm_datepicker .ui-widget-content .ui-state-default,.fm_datepicker .ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.fm_datepicker .ui-state-focus,.fm_datepicker .ui-state-hover,.fm_datepicker .ui-widget-content .ui-state-focus,.fm_datepicker .ui-widget-content .ui-state-hover,.fm_datepicker .ui-widget-header .ui-state-focus,.fm_datepicker .ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.fm_datepicker .ui-state-highlight,.fm_datepicker .ui-widget-content .ui-state-highlight,.fm_datepicker .ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.fm_datepicker .ui-state-active,.fm_datepicker .ui-widget-content .ui-state-active,.fm_datepicker .ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.fm_datepicker .ui-icon,.fm_datepicker .ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm_datepicker.ui-datepicker{font-size:15px!important}.fm_datepicker.ui-datepicker{background:#f2f2f2!important;border:1px solid #f2f2f2!important;color:#777!important}.fm_datepicker .ui-widget-header{border:1px solid #e2e2e2!important;background:#e6e6e6!important;color:#cc0c0c}.fm_datepicker .ui-state-default,.fm_datepicker .ui-widget-content .ui-state-default,.fm_datepicker .ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.fm_datepicker .ui-state-focus,.fm_datepicker .ui-state-hover,.fm_datepicker .ui-widget-content .ui-state-focus,.fm_datepicker .ui-widget-content .ui-state-hover,.fm_datepicker .ui-widget-header .ui-state-focus,.fm_datepicker .ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.fm_datepicker .ui-state-highlight,.fm_datepicker .ui-widget-content .ui-state-highlight,.fm_datepicker .ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.fm_datepicker .ui-state-active,.fm_datepicker .ui-widget-content .ui-state-active,.fm_datepicker .ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.fm_datepicker .ui-icon,.fm_datepicker .ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm_datepicker#ui-datepicker-div{z-index:2147483647!important}.error_label,.error_label_check_mail,.error_label_check_pass,.error_label_confirm,.error_label_exp,.error_label_price,.error_label_upload,.wd-error-label{color:red!important}.fm-error,.fm-not-filled,.fm-not-valid-date{color:red;font-size:13px;width:100%;padding-left:10px;margin-top:-7px;line-height:20px}.fm-form-container{display:block!important}.fm-form-container .fm-form div[type=type_phone_new] input[type=text]{padding-right:6px!important;padding-left:52px!important}.fm-form .other_input{max-width:150px}.fm-form a,.fm-form a:focus,.fm-form input,.fm-form input:focus,.fm-form select,.fm-form select:focus,.fm-form textarea,.fm-form textarea:focus{outline:0!important}.fm-form a,.fm-form button{cursor:pointer}.fm-form label{display:inline}.fm-form .wdform_section{display:flex;display:-webkit-flex;-webkit-flex-direction:row;flex-direction:row}.fm-form .wdform_column:first-child:nth-last-child(1){width:100%}.fm-form .wdform_column:first-child:nth-last-child(2),.fm-form .wdform_column:first-child:nth-last-child(2)~.wdform_column{width:50%}.fm-form .wdform_column:first-child:nth-last-child(3),.fm-form .wdform_column:first-child:nth-last-child(3)~.wdform_column{width:33.33%}.fm-form .wdform_column:first-child:nth-last-child(4),.fm-form .wdform_column:first-child:nth-last-child(4)~.wdform_column{width:25%}.fm-form .wdform_column:first-child:nth-last-child(5),.fm-form .wdform_column:first-child:nth-last-child(5)~.wdform_column{width:20%}.fm-form .fm-header-bg,.fm-form .wdform-field:not([type=type_hidden]){padding:10px 10px}.fm-form .wdform-label{word-break:keep-all}.fm-form .wdform-label-section{text-align:left;margin-bottom:5px}.fm-form .fm-signature{display:block;margin-bottom:5px;border:1px solid #dfdfdf;background-color:#fff;touch-action:none}div[type=type_file_upload] .wdform-element-section,div[type=type_submit_reset] .wdform-element-section{min-width:inherit}.wdform-element-section{text-align:left;line-height:initial}.fm-topbar{width:100%;left:0;z-index:999999}.fm-scrollbox{box-sizing:border-box;position:fixed;max-height:100vh;overflow-y:auto;transition:bottom .4s ease 0s;z-index:999999;opacity:1;bottom:0;overflow-x:hidden}.fm-popover-content,.fm-scrollbox-form{width:100%}.fm-scrollbox-form.float-right{float:right}.fm-scrollbox-form.float-left{float:left}.fm-minimize-text{position:fixed;transition:bottom .4s ease 0s;z-index:99999;opacity:1;bottom:0;width:100%}.fm-popover-background{position:fixed;background-color:#000;left:0;top:0;width:100%;height:100%;z-index:1100000001;opacity:.7}.fm-popover{box-sizing:border-box;position:fixed;left:0;top:0;overflow:auto;width:100%;height:100%;outline:0!important;display:block;z-index:1100000002}.fm-popover-container{position:absolute;width:100%;height:100%;left:0;top:0;padding:20px 10px;box-sizing:border-box;text-align:center}.fm-popover-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.fm-popover-inner-background{position:absolute;width:100%;height:100%;left:0;top:0;z-index:1100000003}.fm-popover-content{position:relative;display:inline-block;max-width:95%;vertical-align:middle;margin:0 auto;text-align:left;z-index:1100000005}.fm-form .wdform-date{width:120px;vertical-align:top}.wdform_grading{margin:2px}.wdform_grading input{display:inline}.fm-form .wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-form .page_active,.fm-form .page_deactive{text-align:center;display:inline-block;cursor:pointer}.fm-form .page_percentage_active,.fm-form .page_percentage_deactive{display:inline-block}.fm-form .wdform-section-break-div{border:none}.fm-form .wdform_tr_section_break{clear:both}.fm-form .captcha_refresh{width:30px;height:30px;border-width:0;margin:0;padding:0;vertical-align:middle;cursor:pointer;background-image:url(../images/refresh_black.png)}.fm-form .fm-right label span{float:right;left:5px;position:relative;top:5px}.fm-form .checkbox-div label,.fm-form .radio-div{margin:0 5px}.fm-form .if-ie-div-label{opacity:1!important}.fm-form .wdform-matrix-cell select{width:60px}.fm-form .wdform-matrix-table{display:table;border-spacing:0}.fm-form .wdform-matrix-column{text-align:left;display:table-cell}.fm-form .wdform-matrix-cell{text-align:center;display:table-cell;padding:6px 10px}.fm-form .wdform-matrix-head>div{display:table-cell;text-align:center}.fm-form .wdform-matrix-head{display:table-row}.fm-form .wdform-matrix-row0{background:#dfdfdf;display:table-row}.fm-form .wdform-matrix-row1{background:#e9e9e9;display:table-row}.fm-form .paypal-property .wdform-quantity{width:55px}.fm-form .paypal-property select{width:85px}.wdform_map img{max-width:none!important}.wdform_row .wdform-field .wdform_map{width:inherit!important}.checkbox-div,.checkbox-div *,.radio-div,.radio-div *,.wdform-page-button{-moz-box-sizing:content-box!important;box-sizing:content-box!important;-webkit-box-sizing:content-box!important}.page_percentage_deactive,.page_percentage_deactive *{word-wrap:normal}.wdform_percentage_arrow,.wdform_percentage_text{vertical-align:top!important}.fm_hide_mobile{display:none!important}.fm-hide{display:none!important}.fm-show{display:block!important}.fm-align-right{text-align:right}.fm-align-left{text-align:left}.fm-align-center{text-align:center}.fm-form .file-upload-status{position:static;direction:inherit!important}.fm-form .wdform_page{display:block!important;margin:0!important;float:none!important}.fm_mobile_full{width:100%!important;padding:0 5%!important}.fm-clear{content:'';display:block;clear:both}.fm-topbar .fm-header-bg{display:table-cell;vertical-align:middle}.fm-topbar .fm-header{display:table-cell}.fm-header{vertical-align:middle;display:table}.image_left_right .fm-header-img{display:table-cell;vertical-align:middle;text-align:center}.image_left_right .fm-header-text{display:table-cell;vertical-align:middle}@media screen and (max-width:768px){.fm-minimize-text,.fm-popover-content,.fm-scrollbox-form{width:95%!important}.fm-form-container .fm-scrollbox{width:97%!important}}@media screen and (max-width:480px){.fm-form{width:100%!important}.wdform-page-and-images{padding:0!important}.wdform_column{padding:2px!important}.image_left_right .fm-header-img,.image_left_right .fm-header-text{display:block}.fm-form .g-recaptcha:not([data-size=invisible]){transform:scale(.77);-webkit-transform:scale(.77);transform-origin:0 0;-webkit-transform-origin:0 0}}@media screen and (min-width:481px) and (max-width:768px){.fm-form{width:100%!important}.image_left_right .fm-header-img,.image_left_right .fm-header-text{display:block}}.fm-form-container .fm-form .fm-message{width:100%;color:#333;margin:0 0 15px 0;padding:15px 15px;text-align:left}.fm-form-container .fm-form .fm-message.fm-notice-success{background:#e0ffc7;border:1px solid #b4d39b}.fm-form-container .fm-form .fm-message.fm-notice-error{background:#fbeaea;border:1px solid #eed3d7}.fm-form-container .fm-form .fm-message.fm-warning-error{background:#fff8e5;border:1px solid #ffb900}.fm-form-container .fm-form .fm-message.fm-notice-dismiss{background:#deefff;border:1px solid #5b9dd9}.fm-form-container .fm-form.fm-form-submitted{padding:0!important}.fm-form .wd-float-left{float:left}.fm-form .wd-float-right{float:right}.fm-form .wd-hidden{display:none}.fm-form .wd-block{display:block}.fm-form .wd-inline-block{display:inline-block}.fm-form .wd-table{display:table}.fm-form .wd-table-group{display:table-row-group}.fm-form .wd-table-cell{display:table-cell}.fm-form .wd-table-row{display:table-row}.fm-form .wd-vertical-middle{vertical-align:middle}.fm-form .wd-vertical-top{vertical-align:top}.fm-form .wd-width-100{width:100%}.fm-form .wd-width-90{width:90%}.fm-form .wd-width-80{width:80%}.fm-form .wd-width-70{width:70%}.fm-form .wd-width-60{width:60%}.fm-form .wd-width-50{width:50%}.fm-form .wd-width-40{width:40%}.fm-form .wd-width-49{width:49%}.fm-form .wd-width-33{width:33.3%}.fm-form .wd-width-30{width:30%}.fm-form .wd-width-20{width:20%}.fm-form .wd-width-10{width:10%}.fm-form .wd-width-5{width:5%}.fm-form .time_box{text-align:right;width:50px}.fm-form-container .fm-form .wdform_row select.am_pm_select{background-size:0;vertical-align:middle}.fm-form .wd-name-separator{margin:0 4px;padding:0}.fm-form .wd-clear{clear:both}.checkbox-div-right{margin:3px 8px 0 0}.fm-form .wd-paypal-cent{width:30px}.fm-form .paypal-property{margin-top:5px}.fm-form .wd-scale-rating{border-spacing:7px}.fm-form .wdform_grading input{width:70px}.fm-form .wdform_grading label{margin-left:5px}.fm-form .wd-calendar-button{width:20px;height:20px;margin:0 0 0 -25px;color:inherit;font-size:20px}.rtl .fm-form .wd-calendar-button{margin:0 -25px 0 0}input[type=number].wd-type-number::-webkit-inner-spin-button,input[type=number].wd-type-number::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number].wd-type-number{-moz-appearance:textfield;appearance:none}.fm-form .button-reset:not(:last-child),.fm-form .button-submit{margin-right:15px;position:relative}.fm-form .ui-spinner input[type=number]{border:none}.rtl .wdform-label-section.wd-float-left{float:right;text-align:right}.rtl .fm-form .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .wdform-element-section{text-align:right}.rtl .ui-spinner input{text-align:left}.rtl .fm-form-container .fm-form div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .fm-form .wdform-label-section{text-align:right}.rtl .fm-form .button-submit{margin-left:15px;margin-right:0}.fm-form-container .fm-form{display:block;background:0 0;border:none!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.fm-form-container .fm-form .image_left_right.fm-header{padding:0!important}.fm-form-container .fm-form.header_left_right .wdform-page-and-images{display:table-cell}.fm-form-container .fm-form.header_left_right .fm-header{display:table-cell!important;vertical-align:middle}.fm-form-container .fm-minimize-text div{background-color:#fff;border:none!important;cursor:pointer;color:#444}.fm-form-container .fm-minimize-text div:hover{border:none!important;outline:0;cursor:pointer}.fm-form-container .fm-pages .page_active,.fm-form-container .fm-pages .page_deactive{cursor:pointer}.fm-form-container .fm-pages .page_percentage_active{min-width:7%}.fm-form-container .fm-action-buttons{font-family:monospace;text-align:center;cursor:pointer}.fm-form-container .fm-form .checkbox-div label span,.fm-form-container .fm-form .radio-div label span{border:none;display:inline-block;vertical-align:middle}.fm-form-container .fm-form .checkbox-div input[type=checkbox]:checked label span:after,.fm-form-container .fm-form .radio-div input[type=radio]:checked label span:after{content:"";display:block}.fm-form-container .fm-form input[type=number].time_box{min-width:45px}.fm-form-container .fm-popover .fm-popover-content,.fm-form-container .fm-scrollbox .fm-scrollbox-form{position:relative}.fm-form-container .fm-popover .fm-form,.fm-form-container .fm-scrollbox .fm-form,.fm-form-container .fm-topbar .fm-form{background:#fff;border:1px solid #ccc}.fm-form-container .fm-popover .fm-form{padding-top:25px}.fm-popover-container.fm-submit-message form.fm-form{padding-top:0}@media screen and (max-width:768px){.fm-form .wdform_section{-webkit-flex-direction:column;flex-direction:column}.fm-form .wdform_column{width:100%!important}.fm-form-container .fm-form .wdform-field{-webkit-flex-direction:column;flex-direction:column}.fm-form-container .fm-form .wdform-element-section,.fm-form-container .fm-form .wdform-label-section{width:100%}}.fm-form .wd-flex{display:flex;display:-webkit-flex}div[type=type_radio]>.wdform-element-section .wd-flex{flex-wrap:wrap}div[type=type_checkbox]>.wdform-element-section .wd-flex{flex-wrap:wrap}div[type=type_radio]>.wdform-element-section .wd-flex.radio-div,div[type=type_radio]>.wdform-element-section .wd-flex.radio-div label{flex-wrap:nowrap}div[type=type_checkbox]>.wdform-element-section .wd-flex.checkbox-div,div[type=type_checkbox]>.wdform-element-section .wd-flex.checkbox-div label{flex-wrap:nowrap}.fm-form .wd-flex-column{-webkit-flex-direction:column;flex-direction:column}.fm-form .wd-flex-row{-webkit-flex-direction:row;flex-direction:row}.fm-form .wd-flex-row-reverse{-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.fm-form .wd-flex-wrap{-webkit-flex-wrap:wrap;flex-wrap:wrap}.fm-form .wd-align-items{-webkit-align-items:baseline;align-items:baseline}.fm-form .wdform_row .wd-align-items-center{-webkit-align-items:center;align-items:center}.fm-form .wd-justify-content{-webkit-justify-content:space-between;justify-content:space-between}.fm-form .wd-justify-content-left{-webkit-justify-content:flex-start;justify-content:flex-start}.fm-form .wd-justify-content-right{-webkit-justify-content:flex-end;justify-content:flex-end}.fm-form .wd-justify-content-center{-webkit-justify-content:center;justify-content:center}.fm-form .wdform-field{-webkit-align-items:baseline;align-items:baseline}.fm-form .fm-type_signature{-webkit-align-items:flex-start;align-items:flex-start}.checkbox-div.wd-flex,.fm-form .wdform-element-section{-webkit-align-items:baseline;align-items:baseline}@media all and (-ms-high-contrast:none){.checkbox-div.wd-flex,.fm-form .wdform-element-section{-webkit-align-items:flex-start;align-items:flex-start}.wdform-element-section.wdform_select{margin-right:auto}.fm-form-builder .wdform_column{width:auto!important}}.fm-form .wd-choice{align-items:center;margin:0 5px 5px 5px}.fm-form textarea{resize:vertical}.fm-form .intl-tel-input{width:100%}.fm-form .wd-address{padding-bottom:8px}.fm-form .wd-choice label{cursor:pointer;margin:0 5px;word-break:break-word}.fm-form div[type=type_date_new] .wdform-element-section,.fm-form div[type=type_date_range] .wdform-element-section{align-items:center}.fm-form div[class^=div_total]{margin-bottom:10px}.fm-form div[class^=div_total] span,.fm-form div[class^=paypal_products] span{margin-right:5px}.fm-form div[class^=paypal_tax]{margin-top:10px}.fm-form .ui-slider-handle,.fm-form .ui-slider-range{padding:0!important}.fm-form label[for]{cursor:pointer}.fm-form .wdform-required{margin:0 5px}.fm-form .fm-header-description{text-align:justify}.wdform_star_rating img{display:inline-block;cursor:pointer}.fm-message p{margin:0!important;padding:0!important}.arithmetic_captcha_img,.captcha_img{margin:0}div[type=type_slider] .label{color:inherit;background:0 0}.fm-form .form-group{margin:0;padding:0}.fm-form-container .fm-form .fm-gdpr-checkbox{display:inline-block!important;margin-right:5px}.fm-form .wdform_row{position:relative}.fm-form-builder .wdform_page{display:flex}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_row{flex:1;max-width:100%;line-height:1}.wdform_column{display:flex;flex-direction:column}.fm-form-builder .wdform_column{width:initial!important;flex-direction:row}.fm-form-builder .wdform_section{display:inline-block;flex-wrap:unset;vertical-align:top}.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(1){width:100%}.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(2),.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(2)~.wdform_section{width:100%}.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(3),.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(3)~.wdform_section{width:50%}.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(4),.fm-form .fm-form-builder .wdform_section:first-child:nth-last-child(4)~.wdform_section{width:33.33%}@media screen and (max-width:768px){.fm-form .fm-form-builder .wdform_column,.fm-form .fm-form-builder .wdform_section{width:100%!important}.fm-form-container .fm-form-builder .fm-form .wdform-element-section,.fm-form-container .fm-form-builder .fm-form .wdform-label-section{width:100%}}.fm-loading{width:100%;height:100%;top:0;left:0;position:absolute;background-color:rgba(0,0,0,.25);background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:10%;z-index:100100}.fm-submit-loading{display:none;margin:0 5px;position:relative;vertical-align:top}.fm-submit-loading.spinner:before{right:0}@keyframes spinner{to{transform:rotate(360deg)}}.fm-submit-loading.spinner:before{box-sizing:border-box;position:absolute;animation:spinner .6s linear infinite}.fm-col-1{flex:0 1 100%!important;width:100%!important}.fm-col-2{flex:0 1 50%!important;width:50%!important}.fm-col-3{flex:0 1 33.33%!important;width:33.33%!important}.fm-col-4{flex:0 1 25%!important;width:25%!important}#div_percentage,.wdform_percentage_arrow,.wdform_percentage_title{display:inline-block}.wdform_percentage_title{margin-left:5px}.button-submit[disabled]{opacity:.5;pointer-events:none}.StripeElement{padding:10px 12px!important}div[type=type_stripe] .fm-notice-error{position:absolute;top:-41px;width:auto!important}.iti{position:relative;display:inline-block}.iti *{box-sizing:border-box;-moz-box-sizing:border-box}.iti__hide{display:none}.iti__v-hide{visibility:hidden}.iti input,.iti input[type=tel],.iti input[type=text]{position:relative;z-index:0;margin-top:0!important;margin-bottom:0!important;padding-right:36px;margin-right:0}.iti__flag-container{position:absolute;top:0;bottom:0;right:0;padding:1px}.iti__selected-flag{z-index:1;position:relative;display:flex;align-items:center;height:100%;padding:0 6px 0 8px}.iti__arrow{margin-left:6px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.iti__arrow--up{border-top:none;border-bottom:4px solid #555}.iti__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;-webkit-overflow-scrolling:touch}.iti__country-list--dropup{bottom:100%;margin-bottom:-1px}@media (max-width:500px){.iti__country-list{white-space:normal}}.iti__flag-box{display:inline-block;width:20px}.iti__divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.iti__country{padding:5px 10px;outline:0}.iti__dial-code{color:#999}.iti__country.iti__highlight{background-color:rgba(0,0,0,.05)}.iti__country-name,.iti__dial-code,.iti__flag-box{vertical-align:middle}.iti__country-name,.iti__flag-box{margin-right:6px}.iti--allow-dropdown input,.iti--allow-dropdown input[type=tel],.iti--allow-dropdown input[type=text],.iti--separate-dial-code input,.iti--separate-dial-code input[type=tel],.iti--separate-dial-code input[type=text]{padding-right:6px;padding-left:52px;margin-left:0}.iti--allow-dropdown .iti__flag-container,.iti--separate-dial-code .iti__flag-container{right:auto;left:0}.iti--allow-dropdown .iti__flag-container:hover{cursor:pointer}.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover{cursor:default}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover .iti__selected-flag,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover .iti__selected-flag{background-color:transparent}.iti--separate-dial-code .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--separate-dial-code .iti__selected-dial-code{margin-left:6px}.iti--container{position:absolute;top:-1000px;left:-1000px;z-index:1060;padding:1px}.iti--container:hover{cursor:pointer}.iti-mobile .iti--container{top:30px;bottom:30px;left:30px;right:30px;position:fixed}.iti-mobile .iti__country-list{max-height:100%;width:100%}.iti-mobile .iti__country{padding:10px 10px;line-height:1.5em}.iti__flag{width:20px}.iti__flag.iti__be{width:18px}.iti__flag.iti__ch{width:15px}.iti__flag.iti__mc{width:19px}.iti__flag.iti__ne{width:18px}.iti__flag.iti__np{width:13px}.iti__flag.iti__va{width:15px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-size:5652px 15px}}.iti__flag.iti__ac{height:10px;background-position:0 0}.iti__flag.iti__ad{height:14px;background-position:-22px 0}.iti__flag.iti__ae{height:10px;background-position:-44px 0}.iti__flag.iti__af{height:14px;background-position:-66px 0}.iti__flag.iti__ag{height:14px;background-position:-88px 0}.iti__flag.iti__ai{height:10px;background-position:-110px 0}.iti__flag.iti__al{height:15px;background-position:-132px 0}.iti__flag.iti__am{height:10px;background-position:-154px 0}.iti__flag.iti__ao{height:14px;background-position:-176px 0}.iti__flag.iti__aq{height:14px;background-position:-198px 0}.iti__flag.iti__ar{height:13px;background-position:-220px 0}.iti__flag.iti__as{height:10px;background-position:-242px 0}.iti__flag.iti__at{height:14px;background-position:-264px 0}.iti__flag.iti__au{height:10px;background-position:-286px 0}.iti__flag.iti__aw{height:14px;background-position:-308px 0}.iti__flag.iti__ax{height:13px;background-position:-330px 0}.iti__flag.iti__az{height:10px;background-position:-352px 0}.iti__flag.iti__ba{height:10px;background-position:-374px 0}.iti__flag.iti__bb{height:14px;background-position:-396px 0}.iti__flag.iti__bd{height:12px;background-position:-418px 0}.iti__flag.iti__be{height:15px;background-position:-440px 0}.iti__flag.iti__bf{height:14px;background-position:-460px 0}.iti__flag.iti__bg{height:12px;background-position:-482px 0}.iti__flag.iti__bh{height:12px;background-position:-504px 0}.iti__flag.iti__bi{height:12px;background-position:-526px 0}.iti__flag.iti__bj{height:14px;background-position:-548px 0}.iti__flag.iti__bl{height:14px;background-position:-570px 0}.iti__flag.iti__bm{height:10px;background-position:-592px 0}.iti__flag.iti__bn{height:10px;background-position:-614px 0}.iti__flag.iti__bo{height:14px;background-position:-636px 0}.iti__flag.iti__bq{height:14px;background-position:-658px 0}.iti__flag.iti__br{height:14px;background-position:-680px 0}.iti__flag.iti__bs{height:10px;background-position:-702px 0}.iti__flag.iti__bt{height:14px;background-position:-724px 0}.iti__flag.iti__bv{height:15px;background-position:-746px 0}.iti__flag.iti__bw{height:14px;background-position:-768px 0}.iti__flag.iti__by{height:10px;background-position:-790px 0}.iti__flag.iti__bz{height:14px;background-position:-812px 0}.iti__flag.iti__ca{height:10px;background-position:-834px 0}.iti__flag.iti__cc{height:10px;background-position:-856px 0}.iti__flag.iti__cd{height:15px;background-position:-878px 0}.iti__flag.iti__cf{height:14px;background-position:-900px 0}.iti__flag.iti__cg{height:14px;background-position:-922px 0}.iti__flag.iti__ch{height:15px;background-position:-944px 0}.iti__flag.iti__ci{height:14px;background-position:-961px 0}.iti__flag.iti__ck{height:10px;background-position:-983px 0}.iti__flag.iti__cl{height:14px;background-position:-1005px 0}.iti__flag.iti__cm{height:14px;background-position:-1027px 0}.iti__flag.iti__cn{height:14px;background-position:-1049px 0}.iti__flag.iti__co{height:14px;background-position:-1071px 0}.iti__flag.iti__cp{height:14px;background-position:-1093px 0}.iti__flag.iti__cr{height:12px;background-position:-1115px 0}.iti__flag.iti__cu{height:10px;background-position:-1137px 0}.iti__flag.iti__cv{height:12px;background-position:-1159px 0}.iti__flag.iti__cw{height:14px;background-position:-1181px 0}.iti__flag.iti__cx{height:10px;background-position:-1203px 0}.iti__flag.iti__cy{height:14px;background-position:-1225px 0}.iti__flag.iti__cz{height:14px;background-position:-1247px 0}.iti__flag.iti__de{height:12px;background-position:-1269px 0}.iti__flag.iti__dg{height:10px;background-position:-1291px 0}.iti__flag.iti__dj{height:14px;background-position:-1313px 0}.iti__flag.iti__dk{height:15px;background-position:-1335px 0}.iti__flag.iti__dm{height:10px;background-position:-1357px 0}.iti__flag.iti__do{height:14px;background-position:-1379px 0}.iti__flag.iti__dz{height:14px;background-position:-1401px 0}.iti__flag.iti__ea{height:14px;background-position:-1423px 0}.iti__flag.iti__ec{height:14px;background-position:-1445px 0}.iti__flag.iti__ee{height:13px;background-position:-1467px 0}.iti__flag.iti__eg{height:14px;background-position:-1489px 0}.iti__flag.iti__eh{height:10px;background-position:-1511px 0}.iti__flag.iti__er{height:10px;background-position:-1533px 0}.iti__flag.iti__es{height:14px;background-position:-1555px 0}.iti__flag.iti__et{height:10px;background-position:-1577px 0}.iti__flag.iti__eu{height:14px;background-position:-1599px 0}.iti__flag.iti__fi{height:12px;background-position:-1621px 0}.iti__flag.iti__fj{height:10px;background-position:-1643px 0}.iti__flag.iti__fk{height:10px;background-position:-1665px 0}.iti__flag.iti__fm{height:11px;background-position:-1687px 0}.iti__flag.iti__fo{height:15px;background-position:-1709px 0}.iti__flag.iti__fr{height:14px;background-position:-1731px 0}.iti__flag.iti__ga{height:15px;background-position:-1753px 0}.iti__flag.iti__gb{height:10px;background-position:-1775px 0}.iti__flag.iti__gd{height:12px;background-position:-1797px 0}.iti__flag.iti__ge{height:14px;background-position:-1819px 0}.iti__flag.iti__gf{height:14px;background-position:-1841px 0}.iti__flag.iti__gg{height:14px;background-position:-1863px 0}.iti__flag.iti__gh{height:14px;background-position:-1885px 0}.iti__flag.iti__gi{height:10px;background-position:-1907px 0}.iti__flag.iti__gl{height:14px;background-position:-1929px 0}.iti__flag.iti__gm{height:14px;background-position:-1951px 0}.iti__flag.iti__gn{height:14px;background-position:-1973px 0}.iti__flag.iti__gp{height:14px;background-position:-1995px 0}.iti__flag.iti__gq{height:14px;background-position:-2017px 0}.iti__flag.iti__gr{height:14px;background-position:-2039px 0}.iti__flag.iti__gs{height:10px;background-position:-2061px 0}.iti__flag.iti__gt{height:13px;background-position:-2083px 0}.iti__flag.iti__gu{height:11px;background-position:-2105px 0}.iti__flag.iti__gw{height:10px;background-position:-2127px 0}.iti__flag.iti__gy{height:12px;background-position:-2149px 0}.iti__flag.iti__hk{height:14px;background-position:-2171px 0}.iti__flag.iti__hm{height:10px;background-position:-2193px 0}.iti__flag.iti__hn{height:10px;background-position:-2215px 0}.iti__flag.iti__hr{height:10px;background-position:-2237px 0}.iti__flag.iti__ht{height:12px;background-position:-2259px 0}.iti__flag.iti__hu{height:10px;background-position:-2281px 0}.iti__flag.iti__ic{height:14px;background-position:-2303px 0}.iti__flag.iti__id{height:14px;background-position:-2325px 0}.iti__flag.iti__ie{height:10px;background-position:-2347px 0}.iti__flag.iti__il{height:15px;background-position:-2369px 0}.iti__flag.iti__im{height:10px;background-position:-2391px 0}.iti__flag.iti__in{height:14px;background-position:-2413px 0}.iti__flag.iti__io{height:10px;background-position:-2435px 0}.iti__flag.iti__iq{height:14px;background-position:-2457px 0}.iti__flag.iti__ir{height:12px;background-position:-2479px 0}.iti__flag.iti__is{height:15px;background-position:-2501px 0}.iti__flag.iti__it{height:14px;background-position:-2523px 0}.iti__flag.iti__je{height:12px;background-position:-2545px 0}.iti__flag.iti__jm{height:10px;background-position:-2567px 0}.iti__flag.iti__jo{height:10px;background-position:-2589px 0}.iti__flag.iti__jp{height:14px;background-position:-2611px 0}.iti__flag.iti__ke{height:14px;background-position:-2633px 0}.iti__flag.iti__kg{height:12px;background-position:-2655px 0}.iti__flag.iti__kh{height:13px;background-position:-2677px 0}.iti__flag.iti__ki{height:10px;background-position:-2699px 0}.iti__flag.iti__km{height:12px;background-position:-2721px 0}.iti__flag.iti__kn{height:14px;background-position:-2743px 0}.iti__flag.iti__kp{height:10px;background-position:-2765px 0}.iti__flag.iti__kr{height:14px;background-position:-2787px 0}.iti__flag.iti__kw{height:10px;background-position:-2809px 0}.iti__flag.iti__ky{height:10px;background-position:-2831px 0}.iti__flag.iti__kz{height:10px;background-position:-2853px 0}.iti__flag.iti__la{height:14px;background-position:-2875px 0}.iti__flag.iti__lb{height:14px;background-position:-2897px 0}.iti__flag.iti__lc{height:10px;background-position:-2919px 0}.iti__flag.iti__li{height:12px;background-position:-2941px 0}.iti__flag.iti__lk{height:10px;background-position:-2963px 0}.iti__flag.iti__lr{height:11px;background-position:-2985px 0}.iti__flag.iti__ls{height:14px;background-position:-3007px 0}.iti__flag.iti__lt{height:12px;background-position:-3029px 0}.iti__flag.iti__lu{height:12px;background-position:-3051px 0}.iti__flag.iti__lv{height:10px;background-position:-3073px 0}.iti__flag.iti__ly{height:10px;background-position:-3095px 0}.iti__flag.iti__ma{height:14px;background-position:-3117px 0}.iti__flag.iti__mc{height:15px;background-position:-3139px 0}.iti__flag.iti__md{height:10px;background-position:-3160px 0}.iti__flag.iti__me{height:10px;background-position:-3182px 0}.iti__flag.iti__mf{height:14px;background-position:-3204px 0}.iti__flag.iti__mg{height:14px;background-position:-3226px 0}.iti__flag.iti__mh{height:11px;background-position:-3248px 0}.iti__flag.iti__mk{height:10px;background-position:-3270px 0}.iti__flag.iti__ml{height:14px;background-position:-3292px 0}.iti__flag.iti__mm{height:14px;background-position:-3314px 0}.iti__flag.iti__mn{height:10px;background-position:-3336px 0}.iti__flag.iti__mo{height:14px;background-position:-3358px 0}.iti__flag.iti__mp{height:10px;background-position:-3380px 0}.iti__flag.iti__mq{height:14px;background-position:-3402px 0}.iti__flag.iti__mr{height:14px;background-position:-3424px 0}.iti__flag.iti__ms{height:10px;background-position:-3446px 0}.iti__flag.iti__mt{height:14px;background-position:-3468px 0}.iti__flag.iti__mu{height:14px;background-position:-3490px 0}.iti__flag.iti__mv{height:14px;background-position:-3512px 0}.iti__flag.iti__mw{height:14px;background-position:-3534px 0}.iti__flag.iti__mx{height:12px;background-position:-3556px 0}.iti__flag.iti__my{height:10px;background-position:-3578px 0}.iti__flag.iti__mz{height:14px;background-position:-3600px 0}.iti__flag.iti__na{height:14px;background-position:-3622px 0}.iti__flag.iti__nc{height:10px;background-position:-3644px 0}.iti__flag.iti__ne{height:15px;background-position:-3666px 0}.iti__flag.iti__nf{height:10px;background-position:-3686px 0}.iti__flag.iti__ng{height:10px;background-position:-3708px 0}.iti__flag.iti__ni{height:12px;background-position:-3730px 0}.iti__flag.iti__nl{height:14px;background-position:-3752px 0}.iti__flag.iti__no{height:15px;background-position:-3774px 0}.iti__flag.iti__np{height:15px;background-position:-3796px 0}.iti__flag.iti__nr{height:10px;background-position:-3811px 0}.iti__flag.iti__nu{height:10px;background-position:-3833px 0}.iti__flag.iti__nz{height:10px;background-position:-3855px 0}.iti__flag.iti__om{height:10px;background-position:-3877px 0}.iti__flag.iti__pa{height:14px;background-position:-3899px 0}.iti__flag.iti__pe{height:14px;background-position:-3921px 0}.iti__flag.iti__pf{height:14px;background-position:-3943px 0}.iti__flag.iti__pg{height:15px;background-position:-3965px 0}.iti__flag.iti__ph{height:10px;background-position:-3987px 0}.iti__flag.iti__pk{height:14px;background-position:-4009px 0}.iti__flag.iti__pl{height:13px;background-position:-4031px 0}.iti__flag.iti__pm{height:14px;background-position:-4053px 0}.iti__flag.iti__pn{height:10px;background-position:-4075px 0}.iti__flag.iti__pr{height:14px;background-position:-4097px 0}.iti__flag.iti__ps{height:10px;background-position:-4119px 0}.iti__flag.iti__pt{height:14px;background-position:-4141px 0}.iti__flag.iti__pw{height:13px;background-position:-4163px 0}.iti__flag.iti__py{height:11px;background-position:-4185px 0}.iti__flag.iti__qa{height:8px;background-position:-4207px 0}.iti__flag.iti__re{height:14px;background-position:-4229px 0}.iti__flag.iti__ro{height:14px;background-position:-4251px 0}.iti__flag.iti__rs{height:14px;background-position:-4273px 0}.iti__flag.iti__ru{height:14px;background-position:-4295px 0}.iti__flag.iti__rw{height:14px;background-position:-4317px 0}.iti__flag.iti__sa{height:14px;background-position:-4339px 0}.iti__flag.iti__sb{height:10px;background-position:-4361px 0}.iti__flag.iti__sc{height:10px;background-position:-4383px 0}.iti__flag.iti__sd{height:10px;background-position:-4405px 0}.iti__flag.iti__se{height:13px;background-position:-4427px 0}.iti__flag.iti__sg{height:14px;background-position:-4449px 0}.iti__flag.iti__sh{height:10px;background-position:-4471px 0}.iti__flag.iti__si{height:10px;background-position:-4493px 0}.iti__flag.iti__sj{height:15px;background-position:-4515px 0}.iti__flag.iti__sk{height:14px;background-position:-4537px 0}.iti__flag.iti__sl{height:14px;background-position:-4559px 0}.iti__flag.iti__sm{height:15px;background-position:-4581px 0}.iti__flag.iti__sn{height:14px;background-position:-4603px 0}.iti__flag.iti__so{height:14px;background-position:-4625px 0}.iti__flag.iti__sr{height:14px;background-position:-4647px 0}.iti__flag.iti__ss{height:10px;background-position:-4669px 0}.iti__flag.iti__st{height:10px;background-position:-4691px 0}.iti__flag.iti__sv{height:12px;background-position:-4713px 0}.iti__flag.iti__sx{height:14px;background-position:-4735px 0}.iti__flag.iti__sy{height:14px;background-position:-4757px 0}.iti__flag.iti__sz{height:14px;background-position:-4779px 0}.iti__flag.iti__ta{height:10px;background-position:-4801px 0}.iti__flag.iti__tc{height:10px;background-position:-4823px 0}.iti__flag.iti__td{height:14px;background-position:-4845px 0}.iti__flag.iti__tf{height:14px;background-position:-4867px 0}.iti__flag.iti__tg{height:13px;background-position:-4889px 0}.iti__flag.iti__th{height:14px;background-position:-4911px 0}.iti__flag.iti__tj{height:10px;background-position:-4933px 0}.iti__flag.iti__tk{height:10px;background-position:-4955px 0}.iti__flag.iti__tl{height:10px;background-position:-4977px 0}.iti__flag.iti__tm{height:14px;background-position:-4999px 0}.iti__flag.iti__tn{height:14px;background-position:-5021px 0}.iti__flag.iti__to{height:10px;background-position:-5043px 0}.iti__flag.iti__tr{height:14px;background-position:-5065px 0}.iti__flag.iti__tt{height:12px;background-position:-5087px 0}.iti__flag.iti__tv{height:10px;background-position:-5109px 0}.iti__flag.iti__tw{height:14px;background-position:-5131px 0}.iti__flag.iti__tz{height:14px;background-position:-5153px 0}.iti__flag.iti__ua{height:14px;background-position:-5175px 0}.iti__flag.iti__ug{height:14px;background-position:-5197px 0}.iti__flag.iti__um{height:11px;background-position:-5219px 0}.iti__flag.iti__un{height:14px;background-position:-5241px 0}.iti__flag.iti__us{height:11px;background-position:-5263px 0}.iti__flag.iti__uy{height:14px;background-position:-5285px 0}.iti__flag.iti__uz{height:10px;background-position:-5307px 0}.iti__flag.iti__va{height:15px;background-position:-5329px 0}.iti__flag.iti__vc{height:14px;background-position:-5346px 0}.iti__flag.iti__ve{height:14px;background-position:-5368px 0}.iti__flag.iti__vg{height:10px;background-position:-5390px 0}.iti__flag.iti__vi{height:14px;background-position:-5412px 0}.iti__flag.iti__vn{height:14px;background-position:-5434px 0}.iti__flag.iti__vu{height:12px;background-position:-5456px 0}.iti__flag.iti__wf{height:14px;background-position:-5478px 0}.iti__flag.iti__ws{height:10px;background-position:-5500px 0}.iti__flag.iti__xk{height:15px;background-position:-5522px 0}.iti__flag.iti__ye{height:14px;background-position:-5544px 0}.iti__flag.iti__yt{height:14px;background-position:-5566px 0}.iti__flag.iti__za{height:14px;background-position:-5588px 0}.iti__flag.iti__zm{height:14px;background-position:-5610px 0}.iti__flag.iti__zw{height:10px;background-position:-5632px 0}.iti__flag{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 (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-image:url(images/flags@2x.png)}}.iti__flag.iti__np{background-color:transparent}@font-face{font-family:fm-icons;src:url(fonts/fm-icons.ttf?wjdy97) format('truetype'),url(fonts/fm-icons.woff?wjdy97) format('woff'),url(fonts/fm-icons.svg?wjdy97#fm-icons) format('svg');font-weight:400;font-style:normal}[class*=" fm-ico-"],[class^=fm-ico-]{font-family:fm-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fm-ico-form-maker:before{content:"\e908";color:#6e7883}.fm-ico-plus-circle:before{content:"\e900"}.fm-ico-plus:before{content:"\e901"}.fm-ico-collapse:before{content:"\e902"}.fm-ico-expand:before{content:"\e906"}.fm-ico-duplicate:before{content:"\e904"}.fm-ico-edit:before{content:"\e905"}.fm-ico-delete:before{content:"\e907"}.fm-ico-draggable:before{content:"\e903"}.fm-ico-close:before{content:"\e909"}.fm-ico-spinner:before{content:"\e90a"}
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}.wd-form .tablenav.top{margin-bottom:16px}#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"]:first-letter{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
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}.wd-form .tablenav.top{margin-bottom:16px}#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"]:first-letter{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:#a