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

Version Description

  • Improved: Use cookie instead of session.
  • Fixed: Conflict with minifying plugins.
  • Fixed: Email field styles.
Download this release

Release Info

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

Code changes from version 1.13.51 to 1.13.52

admin/controllers/Uninstall_fm.php CHANGED
@@ -85,6 +85,7 @@ class FMControllerUninstall_fm extends FMAdminController {
85
  $wpdb->prefix . 'formmaker_sessions',
86
  $wpdb->prefix . 'formmaker_query',
87
  $wpdb->prefix . 'formmaker_display_options',
 
88
  );
89
 
90
  return $tables;
85
  $wpdb->prefix . 'formmaker_sessions',
86
  $wpdb->prefix . 'formmaker_query',
87
  $wpdb->prefix . 'formmaker_display_options',
88
+ $wpdb->prefix . 'formmaker_cookies',
89
  );
90
 
91
  return $tables;
admin/views/FMCaptcha.php CHANGED
@@ -38,8 +38,7 @@ class FMViewFormmakerwdcaptcha extends FMAdminView {
38
 
39
  $l = rand($cap_length_min, $cap_length_max);
40
  $code = code_generic($l, $cap_digital, $cap_latin_char);
41
- WDW_FM_Library(self::PLUGIN)->start_session();
42
- $_SESSION[$i . '_wd_captcha_code'] = md5($code);
43
  $canvas = imagecreatetruecolor($cap_width, $cap_height);
44
  $c = imagecolorallocate($canvas, rand(150, 255), rand(150, 255), rand(150, 255));
45
  imagefilledrectangle($canvas, 0, 0, $cap_width, $cap_height, $c);
38
 
39
  $l = rand($cap_length_min, $cap_length_max);
40
  $code = code_generic($l, $cap_digital, $cap_latin_char);
41
+ Cookie_fm::saveCookieValueByKey($i, '_wd_captcha_code', md5($code));
 
42
  $canvas = imagecreatetruecolor($cap_width, $cap_height);
43
  $c = imagecolorallocate($canvas, rand(150, 255), rand(150, 255), rand(150, 255));
44
  imagefilledrectangle($canvas, 0, 0, $cap_width, $cap_height, $c);
admin/views/FMMathCaptcha.php CHANGED
@@ -20,8 +20,7 @@ class FMViewFormmakerwdmathcaptcha extends FMAdminView {
20
  $cap_height = 26;
21
  $cap_quality = 100;
22
  $code = $this->code_generic($operations_count, $operations);
23
- WDW_FM_Library(self::PLUGIN)->start_session();
24
- $_SESSION[$i . '_wd_arithmetic_captcha_code'] = md5($code[1]);
25
  $canvas = imagecreatetruecolor($cap_width, $cap_height);
26
  $c = imagecolorallocate($canvas, rand(150, 255), rand(150, 255), rand(150, 255));
27
  imagefilledrectangle($canvas, 0, 0, $cap_width, $cap_height, $c);
20
  $cap_height = 26;
21
  $cap_quality = 100;
22
  $code = $this->code_generic($operations_count, $operations);
23
+ Cookie_fm::saveCookieValueByKey($i, '_wd_arithmetic_captcha_code', md5($code[1]));
 
24
  $canvas = imagecreatetruecolor($cap_width, $cap_height);
25
  $c = imagecolorallocate($canvas, rand(150, 255), rand(150, 255), rand(150, 255));
26
  imagefilledrectangle($canvas, 0, 0, $cap_width, $cap_height, $c);
admin/views/Manage_fm.php CHANGED
@@ -621,7 +621,6 @@ class FMViewManage_fm extends FMAdminView {
621
  <?php echo $this->placeholders_popup($params['label_label']); ?>
622
  </div>
623
 
624
-
625
  <input type="hidden" name="form_front" id="form_front" value="<?php echo htmlentities($row->form_front); ?>" />
626
  <input type="hidden" name="form_fields" id="form_fields" />
627
  <input type="hidden" name="pagination" id="pagination" value="<?php echo $row->pagination; ?>" />
@@ -630,8 +629,8 @@ class FMViewManage_fm extends FMAdminView {
630
  <input type="hidden" name="public_key" id="public_key" />
631
  <input type="hidden" name="private_key" id="private_key" />
632
  <input type="hidden" name="recaptcha_theme" id="recaptcha_theme" />
633
- <input type="hidden" id="label_order" name="label_order" value="<?php echo $row->label_order; ?>" />
634
- <input type="hidden" id="label_order_current" name="label_order_current" value="<?php echo $row->label_order_current; ?>" />
635
  <input type="hidden" name="counter" id="counter" value="<?php echo $row->counter; ?>" />
636
  <input type="hidden" name="backup_id" id="backup_id" value="<?php echo $row->backup_id;?>">
637
  <input type="hidden" name="rev_id" id="rev_id">
@@ -1929,7 +1928,7 @@ class FMViewManage_fm extends FMAdminView {
1929
  <?php
1930
  if($types[$key_select_or_input] == 'type_time') {
1931
  ?>
1932
- <label>HH:MM for 24 hour and HH:MM:am/pm for 12 hour format</label>
1933
  <?php
1934
  }
1935
  ?>
621
  <?php echo $this->placeholders_popup($params['label_label']); ?>
622
  </div>
623
 
 
624
  <input type="hidden" name="form_front" id="form_front" value="<?php echo htmlentities($row->form_front); ?>" />
625
  <input type="hidden" name="form_fields" id="form_fields" />
626
  <input type="hidden" name="pagination" id="pagination" value="<?php echo $row->pagination; ?>" />
629
  <input type="hidden" name="public_key" id="public_key" />
630
  <input type="hidden" name="private_key" id="private_key" />
631
  <input type="hidden" name="recaptcha_theme" id="recaptcha_theme" />
632
+ <input type="hidden" id="label_order" name="label_order" value="<?php echo htmlentities($row->label_order); ?>" />
633
+ <input type="hidden" id="label_order_current" name="label_order_current" value="<?php echo htmlentities($row->label_order_current); ?>" />
634
  <input type="hidden" name="counter" id="counter" value="<?php echo $row->counter; ?>" />
635
  <input type="hidden" name="backup_id" id="backup_id" value="<?php echo $row->backup_id;?>">
636
  <input type="hidden" name="rev_id" id="rev_id">
1928
  <?php
1929
  if($types[$key_select_or_input] == 'type_time') {
1930
  ?>
1931
+ <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>
1932
  <?php
1933
  }
1934
  ?>
css/fm-styles.min.css CHANGED
@@ -1 +1 @@
1
- @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.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}.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}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:16px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container ul{list-style:disc;margin-left:2em}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.fm-free-message-upgrade-button,.fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px}.fm-promo-message{align-items:center;display:flex;flex-direction:column;padding:8px 20px}.fm-free-message-huge{font-size:30px;line-height:39px;margin:10px 0 0 0}.fm-head{margin-top:15px;text-align:center}.fm-head .fm-breadcrumbs li{display:inline-block;margin:0 10px 0 0;padding-top:10px;vertical-align:baseline}.fm-head .fm-breadcrumbs li:last-child{margin-right:0}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link{text-decoration:none;font-family:Roboto;font-weight:500;font-size:18px;color:#32373c}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link-active{color:#0073aa}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-upgrade{position:relative;top:.5px;display:inline-block;margin-left:10px;padding:1px 22px;background-color:#29b311;text-transform:uppercase;border-radius:10px;font-weight:700;font-size:12px;color:#fff}.fm-limitation-alert-container{display:flex;align-items:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100050}.fm-limitation-alert-overlay{background-color:#ffffffcc;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.fm-limitation-alert{background-color:#fff;box-shadow:#0000001a 0 0 10px;display:flex;flex-direction:column;color:#000;font-family:Roboto;justify-content:space-between;margin:0 auto;padding:30px 20px;position:relative;max-width:430px;max-height:311px;width:100%;height:100%;text-align:center}.fm-limitation-alert span.fm-ico-delete{cursor:pointer;position:absolute;top:10px;right:10px;color:#000;font-size:10px;opacity:.3}.fm-hidden{display:none}.fm-limitation-alert-header{color:#32373c;font-size:16px;font-weight:500;line-height:21px}.fm-limitation-alert-body{margin-top:20px}.fm-limitation-alert-body ul{display:inline-block;list-style:disc;text-align:left}.fm-limitation-alert-body ul li{font-size:16px;font-weight:700;line-height:26px}.fm-add-ons{display:flex;flex-wrap:wrap;justify-content:center;margin-top:20px;margin-bottom:10px;font-family:Roboto}.fm-add-ons .fm-add-on{max-width:300px;max-height:300px;width:100%;height:100%;margin-right:10px;margin-bottom:10px;padding:20px 20px 15px;transition-delay:0s;transition-duration:0s;transition-property:all;transition-timing-function:ease;background-color:#fff;border-radius:1px;text-align:center;font-family:Roboto;font-weight:300;font-size:16px;color:#323a45}.fm-add-ons .fm-add-on:hover{box-shadow:1px 1px 6px rgba(52,52,52,.16)}.fm-add-ons .fm-add-on .fm-add-on-img{width:72px;height:72px;margin:0 auto}.fm-add-ons .fm-add-on a{text-decoration:none}.fm-add-ons .fm-add-on .fm-add-on-name{margin:15px 0}.fm-add-ons .fm-add-on .fm-add-on-name,.fm-add-ons .fm-add-on .fm-add-on-name a{font-family:Roboto;font-weight:400;font-size:20px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-premium-version{margin:4px 0;height:16px;line-height:16px;font-weight:400;font-size:14px;color:#29b311}.fm-add-ons .fm-add-on .fm-add-on-desc{max-height:65px;height:100%;line-height:20px;font-size:16px}.fm-add-ons .fm-add-on .fm-add-on-desc-more-wrap{position:relative}.fm-add-ons .fm-add-on .fm-add-on-desc-more{position:absolute;z-index:1;left:0;bottom:65px;opacity:0;visibility:hidden;transition:opacity .4s linear;padding:10px 10px;background-color:#32373c;border-radius:6px;line-height:20px;font-weight:400;font-size:14px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-desc:hover+.fm-add-on-desc-more{opacity:1;visibility:visible}.fm-add-ons .fm-add-on .fm-add-on-buy{width:155px;height:30px;display:block;margin:10px auto;padding-top:7px;background-color:#0c4d68;border:.7px solid #0c4d68;border-radius:15px;line-height:16px;font-family:Roboto;font-weight:400;font-size:13px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-buy:hover{background-color:rgba(12,77,104,.8)}.fm-add-ons .fm-add-on.fm-add-on-activated .fm-add-on-buy{text-transform:uppercase;background-color:#fff;font-size:13px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-learn-more{line-height:16px;font-family:Roboto;font-weight:300;font-size:14px;color:#0073aa}.fm-add-ons .fm-add-on .fm-add-on-learn-more:hover{color:rgba(0,115,170,.8)}@media screen and (max-width:450px){.fm-topbar_cont{display:block}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{margin-left:0}}
1
+ @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.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}.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}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:16px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%;display:flex;align-items:flex-end}.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 ul{list-style:disc;margin-left:2em}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.fm-free-message-upgrade-button,.fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px}.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_frontend.css CHANGED
@@ -995,13 +995,18 @@ div[type="type_checkbox"] > .wdform-element-section .wd-flex.checkbox-div, div[t
995
  justify-content: center;
996
  }
997
 
998
- .fm-form .wdform-field {
999
  -webkit-align-items: baseline;
1000
  height: 100%;
1001
  align-items: baseline;
1002
  justify-content: flex-end;
1003
  }
1004
 
 
 
 
 
 
1005
  .fm-form .wdform-element-section,
1006
  .checkbox-div.wd-flex {
1007
  -webkit-align-items: baseline;
@@ -1108,7 +1113,9 @@ div[type="type_slider"] .label {
1108
  }
1109
 
1110
  .fm-form .wdform_row {
1111
- position: relative;
 
 
1112
  }
1113
 
1114
  .fm-form-builder .wdform_page {
995
  justify-content: center;
996
  }
997
 
998
+ .fm-form .wdform-field.wd-flex-column {
999
  -webkit-align-items: baseline;
1000
  height: 100%;
1001
  align-items: baseline;
1002
  justify-content: flex-end;
1003
  }
1004
 
1005
+ /*for gdpr | another structure*/
1006
+ .wd-flex-column[type='type_gdpr_compliance_checkbox'], .wd-flex-column[type='type_submit_reset'] {
1007
+ height: auto!important;
1008
+ }
1009
+
1010
  .fm-form .wdform-element-section,
1011
  .checkbox-div.wd-flex {
1012
  -webkit-align-items: baseline;
1113
  }
1114
 
1115
  .fm-form .wdform_row {
1116
+ position: relative;
1117
+ display: flex;
1118
+ flex-direction: column;
1119
  }
1120
 
1121
  .fm-form-builder .wdform_page {
css/form_maker_tables.css CHANGED
@@ -3366,6 +3366,8 @@ textarea[readonly] {
3366
  padding: 10px;
3367
  position: relative;
3368
  width: 100%;
 
 
3369
  }
3370
  .wdform_row:hover,
3371
  .wdform_row:active {
3366
  padding: 10px;
3367
  position: relative;
3368
  width: 100%;
3369
+ display: flex;
3370
+ align-items: flex-end;
3371
  }
3372
  .wdform_row:hover,
3373
  .wdform_row:active {
css/manage-edit-styles.min.css CHANGED
@@ -1,4 +1,4 @@
1
- @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.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}.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}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:16px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container ul{list-style:disc;margin-left:2em}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.fm-free-message-upgrade-button,.fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px}.fm-promo-message{align-items:center;display:flex;flex-direction:column;padding:8px 20px}.fm-free-message-huge{font-size:30px;line-height:39px;margin:10px 0 0 0}.fm-head{margin-top:15px;text-align:center}.fm-head .fm-breadcrumbs li{display:inline-block;margin:0 10px 0 0;padding-top:10px;vertical-align:baseline}.fm-head .fm-breadcrumbs li:last-child{margin-right:0}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link{text-decoration:none;font-family:Roboto;font-weight:500;font-size:18px;color:#32373c}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link-active{color:#0073aa}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-upgrade{position:relative;top:.5px;display:inline-block;margin-left:10px;padding:1px 22px;background-color:#29b311;text-transform:uppercase;border-radius:10px;font-weight:700;font-size:12px;color:#fff}.fm-limitation-alert-container{display:flex;align-items:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100050}.fm-limitation-alert-overlay{background-color:#ffffffcc;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.fm-limitation-alert{background-color:#fff;box-shadow:#0000001a 0 0 10px;display:flex;flex-direction:column;color:#000;font-family:Roboto;justify-content:space-between;margin:0 auto;padding:30px 20px;position:relative;max-width:430px;max-height:311px;width:100%;height:100%;text-align:center}.fm-limitation-alert span.fm-ico-delete{cursor:pointer;position:absolute;top:10px;right:10px;color:#000;font-size:10px;opacity:.3}.fm-hidden{display:none}.fm-limitation-alert-header{color:#32373c;font-size:16px;font-weight:500;line-height:21px}.fm-limitation-alert-body{margin-top:20px}.fm-limitation-alert-body ul{display:inline-block;list-style:disc;text-align:left}.fm-limitation-alert-body ul li{font-size:16px;font-weight:700;line-height:26px}.fm-add-ons{display:flex;flex-wrap:wrap;justify-content:center;margin-top:20px;margin-bottom:10px;font-family:Roboto}.fm-add-ons .fm-add-on{max-width:300px;max-height:300px;width:100%;height:100%;margin-right:10px;margin-bottom:10px;padding:20px 20px 15px;transition-delay:0s;transition-duration:0s;transition-property:all;transition-timing-function:ease;background-color:#fff;border-radius:1px;text-align:center;font-family:Roboto;font-weight:300;font-size:16px;color:#323a45}.fm-add-ons .fm-add-on:hover{box-shadow:1px 1px 6px rgba(52,52,52,.16)}.fm-add-ons .fm-add-on .fm-add-on-img{width:72px;height:72px;margin:0 auto}.fm-add-ons .fm-add-on a{text-decoration:none}.fm-add-ons .fm-add-on .fm-add-on-name{margin:15px 0}.fm-add-ons .fm-add-on .fm-add-on-name,.fm-add-ons .fm-add-on .fm-add-on-name a{font-family:Roboto;font-weight:400;font-size:20px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-premium-version{margin:4px 0;height:16px;line-height:16px;font-weight:400;font-size:14px;color:#29b311}.fm-add-ons .fm-add-on .fm-add-on-desc{max-height:65px;height:100%;line-height:20px;font-size:16px}.fm-add-ons .fm-add-on .fm-add-on-desc-more-wrap{position:relative}.fm-add-ons .fm-add-on .fm-add-on-desc-more{position:absolute;z-index:1;left:0;bottom:65px;opacity:0;visibility:hidden;transition:opacity .4s linear;padding:10px 10px;background-color:#32373c;border-radius:6px;line-height:20px;font-weight:400;font-size:14px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-desc:hover+.fm-add-on-desc-more{opacity:1;visibility:visible}.fm-add-ons .fm-add-on .fm-add-on-buy{width:155px;height:30px;display:block;margin:10px auto;padding-top:7px;background-color:#0c4d68;border:.7px solid #0c4d68;border-radius:15px;line-height:16px;font-family:Roboto;font-weight:400;font-size:13px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-buy:hover{background-color:rgba(12,77,104,.8)}.fm-add-ons .fm-add-on.fm-add-on-activated .fm-add-on-buy{text-transform:uppercase;background-color:#fff;font-size:13px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-learn-more{line-height:16px;font-family:Roboto;font-weight:300;font-size:14px;color:#0073aa}.fm-add-ons .fm-add-on .fm-add-on-learn-more:hover{color:rgba(0,115,170,.8)}@media screen and (max-width:450px){.fm-topbar_cont{display:block}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{margin-left:0}}.intl-tel-input{position:relative;display:inline-block}.intl-tel-input *{box-sizing:border-box;-moz-box-sizing:border-box}.intl-tel-input .hide{display:none}.intl-tel-input .v-hide{visibility:hidden}.intl-tel-input input,.intl-tel-input input[type=tel],.intl-tel-input input[type=text]{position:relative;z-index:0;margin-top:0!important;margin-bottom:0!important;padding-right:36px;margin-right:0}.intl-tel-input .flag-container{position:absolute;top:0;bottom:0;right:0;padding:1px}.intl-tel-input .selected-flag{z-index:1;position:relative;width:36px;height:100%;padding:0 0 0 8px}.intl-tel-input .selected-flag .iti-flag{position:absolute;top:0;bottom:0;margin:auto}.intl-tel-input .selected-flag .iti-arrow{position:absolute;top:50%;margin-top:-2px;right:6px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.rtl .intl-tel-input .selected-flag .iti-arrow{left:6px;right:auto}.intl-tel-input .selected-flag .iti-arrow.up{border-top:none;border-bottom:4px solid #555}.intl-tel-input .country-list{position:absolute;z-index:2;list-style:none;text-align:left;padding:0;margin:0 0 0 -1px;box-shadow:1px 1px 4px rgba(0,0,0,.2);background-color:#fff;border:1px solid #ccc;white-space:nowrap;max-height:200px;overflow-y:scroll}.intl-tel-input .country-list.dropup{bottom:100%;margin-bottom:-1px}.intl-tel-input .country-list .flag-box{display:inline-block;width:20px}@media (max-width:500px){.intl-tel-input .country-list{white-space:normal}}.intl-tel-input .country-list .divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.intl-tel-input .country-list .country{padding:5px 10px}.intl-tel-input .country-list .country .dial-code{color:#999}.intl-tel-input .country-list .country.highlight{background-color:rgba(0,0,0,.05)}.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .dial-code,.intl-tel-input .country-list .flag-box{vertical-align:middle}.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .flag-box{margin-right:6px}.intl-tel-input.allow-dropdown input,.intl-tel-input.allow-dropdown input[type=tel],.intl-tel-input.allow-dropdown input[type=text],.intl-tel-input.separate-dial-code input,.intl-tel-input.separate-dial-code input[type=tel],.intl-tel-input.separate-dial-code input[type=text]{padding-right:6px;padding-left:52px;margin-left:0}.intl-tel-input.allow-dropdown .flag-container,.intl-tel-input.separate-dial-code .flag-container{right:auto;left:0}.rtl .intl-tel-input.allow-dropdown .flag-container,.rtl .intl-tel-input.separate-dial-code .flag-container{left:auto;right:0}.intl-tel-input.allow-dropdown .selected-flag,.intl-tel-input.separate-dial-code .selected-flag{width:46px}.intl-tel-input.allow-dropdown .flag-container:hover{cursor:pointer}.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag{background-color:rgba(0,0,0,.05)}.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover,.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover{cursor:default}.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover .selected-flag,.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover .selected-flag{background-color:transparent}.intl-tel-input.separate-dial-code .selected-flag{background-color:rgba(0,0,0,.05);display:table}.intl-tel-input.separate-dial-code .selected-dial-code{display:table-cell;vertical-align:middle;padding-left:28px}.intl-tel-input.separate-dial-code.iti-sdc-2 input,.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text]{padding-left:66px}.intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag{width:60px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text]{padding-left:76px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag{width:70px}.intl-tel-input.separate-dial-code.iti-sdc-3 input,.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text]{padding-left:74px}.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag{width:68px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text]{padding-left:84px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag{width:78px}.intl-tel-input.separate-dial-code.iti-sdc-4 input,.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text]{padding-left:82px}.intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag{width:76px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text]{padding-left:92px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag{width:86px}.intl-tel-input.separate-dial-code.iti-sdc-5 input,.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text]{padding-left:90px}.intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag{width:84px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text]{padding-left:100px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag{width:94px}.intl-tel-input.iti-container{position:absolute;top:-1000px;left:-1000px;z-index:1060;padding:1px}.intl-tel-input.iti-container:hover{cursor:pointer}.iti-mobile .intl-tel-input.iti-container{top:30px;bottom:30px;left:30px;right:30px;position:fixed}.iti-mobile .intl-tel-input .country-list{max-height:100%;width:100%}.iti-mobile .intl-tel-input .country-list .country{padding:10px 10px;line-height:1.5em}.iti-flag{width:20px}.iti-flag.be{width:18px}.iti-flag.ch{width:15px}.iti-flag.mc{width:19px}.iti-flag.ne{width:18px}.iti-flag.np{width:13px}.iti-flag.va{width:15px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2 / 1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.iti-flag{background-size:5630px 15px}}.iti-flag.ac{height:10px;background-position:0 0}.iti-flag.ad{height:14px;background-position:-22px 0}.iti-flag.ae{height:10px;background-position:-44px 0}.iti-flag.af{height:14px;background-position:-66px 0}.iti-flag.ag{height:14px;background-position:-88px 0}.iti-flag.ai{height:10px;background-position:-110px 0}.iti-flag.al{height:15px;background-position:-132px 0}.iti-flag.am{height:10px;background-position:-154px 0}.iti-flag.ao{height:14px;background-position:-176px 0}.iti-flag.aq{height:14px;background-position:-198px 0}.iti-flag.ar{height:13px;background-position:-220px 0}.iti-flag.as{height:10px;background-position:-242px 0}.iti-flag.at{height:14px;background-position:-264px 0}.iti-flag.au{height:10px;background-position:-286px 0}.iti-flag.aw{height:14px;background-position:-308px 0}.iti-flag.ax{height:13px;background-position:-330px 0}.iti-flag.az{height:10px;background-position:-352px 0}.iti-flag.ba{height:10px;background-position:-374px 0}.iti-flag.bb{height:14px;background-position:-396px 0}.iti-flag.bd{height:12px;background-position:-418px 0}.iti-flag.be{height:15px;background-position:-440px 0}.iti-flag.bf{height:14px;background-position:-460px 0}.iti-flag.bg{height:12px;background-position:-482px 0}.iti-flag.bh{height:12px;background-position:-504px 0}.iti-flag.bi{height:12px;background-position:-526px 0}.iti-flag.bj{height:14px;background-position:-548px 0}.iti-flag.bl{height:14px;background-position:-570px 0}.iti-flag.bm{height:10px;background-position:-592px 0}.iti-flag.bn{height:10px;background-position:-614px 0}.iti-flag.bo{height:14px;background-position:-636px 0}.iti-flag.bq{height:14px;background-position:-658px 0}.iti-flag.br{height:14px;background-position:-680px 0}.iti-flag.bs{height:10px;background-position:-702px 0}.iti-flag.bt{height:14px;background-position:-724px 0}.iti-flag.bv{height:15px;background-position:-746px 0}.iti-flag.bw{height:14px;background-position:-768px 0}.iti-flag.by{height:10px;background-position:-790px 0}.iti-flag.bz{height:14px;background-position:-812px 0}.iti-flag.ca{height:10px;background-position:-834px 0}.iti-flag.cc{height:10px;background-position:-856px 0}.iti-flag.cd{height:15px;background-position:-878px 0}.iti-flag.cf{height:14px;background-position:-900px 0}.iti-flag.cg{height:14px;background-position:-922px 0}.iti-flag.ch{height:15px;background-position:-944px 0}.iti-flag.ci{height:14px;background-position:-961px 0}.iti-flag.ck{height:10px;background-position:-983px 0}.iti-flag.cl{height:14px;background-position:-1005px 0}.iti-flag.cm{height:14px;background-position:-1027px 0}.iti-flag.cn{height:14px;background-position:-1049px 0}.iti-flag.co{height:14px;background-position:-1071px 0}.iti-flag.cp{height:14px;background-position:-1093px 0}.iti-flag.cr{height:12px;background-position:-1115px 0}.iti-flag.cu{height:10px;background-position:-1137px 0}.iti-flag.cv{height:12px;background-position:-1159px 0}.iti-flag.cw{height:14px;background-position:-1181px 0}.iti-flag.cx{height:10px;background-position:-1203px 0}.iti-flag.cy{height:13px;background-position:-1225px 0}.iti-flag.cz{height:14px;background-position:-1247px 0}.iti-flag.de{height:12px;background-position:-1269px 0}.iti-flag.dg{height:10px;background-position:-1291px 0}.iti-flag.dj{height:14px;background-position:-1313px 0}.iti-flag.dk{height:15px;background-position:-1335px 0}.iti-flag.dm{height:10px;background-position:-1357px 0}.iti-flag.do{height:13px;background-position:-1379px 0}.iti-flag.dz{height:14px;background-position:-1401px 0}.iti-flag.ea{height:14px;background-position:-1423px 0}.iti-flag.ec{height:14px;background-position:-1445px 0}.iti-flag.ee{height:13px;background-position:-1467px 0}.iti-flag.eg{height:14px;background-position:-1489px 0}.iti-flag.eh{height:10px;background-position:-1511px 0}.iti-flag.er{height:10px;background-position:-1533px 0}.iti-flag.es{height:14px;background-position:-1555px 0}.iti-flag.et{height:10px;background-position:-1577px 0}.iti-flag.eu{height:14px;background-position:-1599px 0}.iti-flag.fi{height:12px;background-position:-1621px 0}.iti-flag.fj{height:10px;background-position:-1643px 0}.iti-flag.fk{height:10px;background-position:-1665px 0}.iti-flag.fm{height:11px;background-position:-1687px 0}.iti-flag.fo{height:15px;background-position:-1709px 0}.iti-flag.fr{height:14px;background-position:-1731px 0}.iti-flag.ga{height:15px;background-position:-1753px 0}.iti-flag.gb{height:10px;background-position:-1775px 0}.iti-flag.gd{height:12px;background-position:-1797px 0}.iti-flag.ge{height:14px;background-position:-1819px 0}.iti-flag.gf{height:14px;background-position:-1841px 0}.iti-flag.gg{height:14px;background-position:-1863px 0}.iti-flag.gh{height:14px;background-position:-1885px 0}.iti-flag.gi{height:10px;background-position:-1907px 0}.iti-flag.gl{height:14px;background-position:-1929px 0}.iti-flag.gm{height:14px;background-position:-1951px 0}.iti-flag.gn{height:14px;background-position:-1973px 0}.iti-flag.gp{height:14px;background-position:-1995px 0}.iti-flag.gq{height:14px;background-position:-2017px 0}.iti-flag.gr{height:14px;background-position:-2039px 0}.iti-flag.gs{height:10px;background-position:-2061px 0}.iti-flag.gt{height:13px;background-position:-2083px 0}.iti-flag.gu{height:11px;background-position:-2105px 0}.iti-flag.gw{height:10px;background-position:-2127px 0}.iti-flag.gy{height:12px;background-position:-2149px 0}.iti-flag.hk{height:14px;background-position:-2171px 0}.iti-flag.hm{height:10px;background-position:-2193px 0}.iti-flag.hn{height:10px;background-position:-2215px 0}.iti-flag.hr{height:10px;background-position:-2237px 0}.iti-flag.ht{height:12px;background-position:-2259px 0}.iti-flag.hu{height:10px;background-position:-2281px 0}.iti-flag.ic{height:14px;background-position:-2303px 0}.iti-flag.ia{height:14px;background-position:-2325px 0}.iti-flag.ie{height:10px;background-position:-2347px 0}.iti-flag.il{height:15px;background-position:-2369px 0}.iti-flag.im{height:10px;background-position:-2391px 0}.iti-flag.in{height:14px;background-position:-2413px 0}.iti-flag.io{height:10px;background-position:-2435px 0}.iti-flag.iq{height:14px;background-position:-2457px 0}.iti-flag.ir{height:12px;background-position:-2479px 0}.iti-flag.is{height:15px;background-position:-2501px 0}.iti-flag.it{height:14px;background-position:-2523px 0}.iti-flag.je{height:12px;background-position:-2545px 0}.iti-flag.jm{height:10px;background-position:-2567px 0}.iti-flag.jo{height:10px;background-position:-2589px 0}.iti-flag.jp{height:14px;background-position:-2611px 0}.iti-flag.ke{height:14px;background-position:-2633px 0}.iti-flag.kg{height:12px;background-position:-2655px 0}.iti-flag.kh{height:13px;background-position:-2677px 0}.iti-flag.ki{height:10px;background-position:-2699px 0}.iti-flag.km{height:12px;background-position:-2721px 0}.iti-flag.kn{height:14px;background-position:-2743px 0}.iti-flag.kp{height:10px;background-position:-2765px 0}.iti-flag.kr{height:14px;background-position:-2787px 0}.iti-flag.kw{height:10px;background-position:-2809px 0}.iti-flag.ky{height:10px;background-position:-2831px 0}.iti-flag.kz{height:10px;background-position:-2853px 0}.iti-flag.la{height:14px;background-position:-2875px 0}.iti-flag.lb{height:14px;background-position:-2897px 0}.iti-flag.lc{height:10px;background-position:-2919px 0}.iti-flag.li{height:12px;background-position:-2941px 0}.iti-flag.lk{height:10px;background-position:-2963px 0}.iti-flag.lr{height:11px;background-position:-2985px 0}.iti-flag.ls{height:14px;background-position:-3007px 0}.iti-flag.lt{height:12px;background-position:-3029px 0}.iti-flag.lu{height:12px;background-position:-3051px 0}.iti-flag.lv{height:10px;background-position:-3073px 0}.iti-flag.ly{height:10px;background-position:-3095px 0}.iti-flag.ma{height:14px;background-position:-3117px 0}.iti-flag.mc{height:15px;background-position:-3139px 0}.iti-flag.md{height:10px;background-position:-3160px 0}.iti-flag.me{height:10px;background-position:-3182px 0}.iti-flag.mf{height:14px;background-position:-3204px 0}.iti-flag.mg{height:14px;background-position:-3226px 0}.iti-flag.mh{height:11px;background-position:-3248px 0}.iti-flag.mk{height:10px;background-position:-3270px 0}.iti-flag.ml{height:14px;background-position:-3292px 0}.iti-flag.mm{height:14px;background-position:-3314px 0}.iti-flag.mn{height:10px;background-position:-3336px 0}.iti-flag.mo{height:14px;background-position:-3358px 0}.iti-flag.mp{height:10px;background-position:-3380px 0}.iti-flag.mq{height:14px;background-position:-3402px 0}.iti-flag.mr{height:14px;background-position:-3424px 0}.iti-flag.ms{height:10px;background-position:-3446px 0}.iti-flag.mt{height:14px;background-position:-3468px 0}.iti-flag.mu{height:14px;background-position:-3490px 0}.iti-flag.mv{height:14px;background-position:-3512px 0}.iti-flag.mw{height:14px;background-position:-3534px 0}.iti-flag.mx{height:12px;background-position:-3556px 0}.iti-flag.my{height:10px;background-position:-3578px 0}.iti-flag.mz{height:14px;background-position:-3600px 0}.iti-flag.na{height:14px;background-position:-3622px 0}.iti-flag.nc{height:10px;background-position:-3644px 0}.iti-flag.ne{height:15px;background-position:-3666px 0}.iti-flag.nf{height:10px;background-position:-3686px 0}.iti-flag.ng{height:10px;background-position:-3708px 0}.iti-flag.ni{height:12px;background-position:-3730px 0}.iti-flag.nl{height:14px;background-position:-3752px 0}.iti-flag.no{height:15px;background-position:-3774px 0}.iti-flag.np{height:15px;background-position:-3796px 0}.iti-flag.nr{height:10px;background-position:-3811px 0}.iti-flag.nu{height:10px;background-position:-3833px 0}.iti-flag.nz{height:10px;background-position:-3855px 0}.iti-flag.om{height:10px;background-position:-3877px 0}.iti-flag.pa{height:14px;background-position:-3899px 0}.iti-flag.pe{height:14px;background-position:-3921px 0}.iti-flag.pf{height:14px;background-position:-3943px 0}.iti-flag.pg{height:15px;background-position:-3965px 0}.iti-flag.ph{height:10px;background-position:-3987px 0}.iti-flag.pk{height:14px;background-position:-4009px 0}.iti-flag.pl{height:13px;background-position:-4031px 0}.iti-flag.pm{height:14px;background-position:-4053px 0}.iti-flag.pn{height:10px;background-position:-4075px 0}.iti-flag.pr{height:14px;background-position:-4097px 0}.iti-flag.ps{height:10px;background-position:-4119px 0}.iti-flag.pt{height:14px;background-position:-4141px 0}.iti-flag.pw{height:13px;background-position:-4163px 0}.iti-flag.py{height:11px;background-position:-4185px 0}.iti-flag.qa{height:8px;background-position:-4207px 0}.iti-flag.re{height:14px;background-position:-4229px 0}.iti-flag.ro{height:14px;background-position:-4251px 0}.iti-flag.rs{height:14px;background-position:-4273px 0}.iti-flag.ru{height:14px;background-position:-4295px 0}.iti-flag.rw{height:14px;background-position:-4317px 0}.iti-flag.sa{height:14px;background-position:-4339px 0}.iti-flag.sb{height:10px;background-position:-4361px 0}.iti-flag.sc{height:10px;background-position:-4383px 0}.iti-flag.sd{height:10px;background-position:-4405px 0}.iti-flag.se{height:13px;background-position:-4427px 0}.iti-flag.sg{height:14px;background-position:-4449px 0}.iti-flag.sh{height:10px;background-position:-4471px 0}.iti-flag.si{height:10px;background-position:-4493px 0}.iti-flag.sj{height:15px;background-position:-4515px 0}.iti-flag.sk{height:14px;background-position:-4537px 0}.iti-flag.sl{height:14px;background-position:-4559px 0}.iti-flag.sm{height:15px;background-position:-4581px 0}.iti-flag.sn{height:14px;background-position:-4603px 0}.iti-flag.so{height:14px;background-position:-4625px 0}.iti-flag.sr{height:14px;background-position:-4647px 0}.iti-flag.ss{height:10px;background-position:-4669px 0}.iti-flag.st{height:10px;background-position:-4691px 0}.iti-flag.sv{height:12px;background-position:-4713px 0}.iti-flag.sx{height:14px;background-position:-4735px 0}.iti-flag.sy{height:14px;background-position:-4757px 0}.iti-flag.sz{height:14px;background-position:-4779px 0}.iti-flag.ta{height:10px;background-position:-4801px 0}.iti-flag.tc{height:10px;background-position:-4823px 0}.iti-flag.td{height:14px;background-position:-4845px 0}.iti-flag.tf{height:14px;background-position:-4867px 0}.iti-flag.tg{height:13px;background-position:-4889px 0}.iti-flag.th{height:14px;background-position:-4911px 0}.iti-flag.tj{height:10px;background-position:-4933px 0}.iti-flag.tk{height:10px;background-position:-4955px 0}.iti-flag.tl{height:10px;background-position:-4977px 0}.iti-flag.tm{height:14px;background-position:-4999px 0}.iti-flag.tn{height:14px;background-position:-5021px 0}.iti-flag.to{height:10px;background-position:-5043px 0}.iti-flag.tr{height:14px;background-position:-5065px 0}.iti-flag.tt{height:12px;background-position:-5087px 0}.iti-flag.tv{height:10px;background-position:-5109px 0}.iti-flag.tw{height:14px;background-position:-5131px 0}.iti-flag.tz{height:14px;background-position:-5153px 0}.iti-flag.ua{height:14px;background-position:-5175px 0}.iti-flag.ug{height:14px;background-position:-5197px 0}.iti-flag.um{height:11px;background-position:-5219px 0}.iti-flag.us{height:11px;background-position:-5241px 0}.iti-flag.uy{height:14px;background-position:-5263px 0}.iti-flag.uz{height:10px;background-position:-5285px 0}.iti-flag.va{height:15px;background-position:-5307px 0}.iti-flag.vc{height:14px;background-position:-5324px 0}.iti-flag.ve{height:14px;background-position:-5346px 0}.iti-flag.vg{height:10px;background-position:-5368px 0}.iti-flag.vi{height:14px;background-position:-5390px 0}.iti-flag.vn{height:14px;background-position:-5412px 0}.iti-flag.vu{height:12px;background-position:-5434px 0}.iti-flag.wf{height:14px;background-position:-5456px 0}.iti-flag.ws{height:10px;background-position:-5478px 0}.iti-flag.xk{height:15px;background-position:-5500px 0}.iti-flag.ye{height:14px;background-position:-5522px 0}.iti-flag.yt{height:14px;background-position:-5544px 0}.iti-flag.za{height:14px;background-position:-5566px 0}.iti-flag.zm{height:14px;background-position:-5588px 0}.iti-flag.zw{height:10px;background-position:-5610px 0}.iti-flag{width:20px;height:15px;box-shadow:0 0 1px 0 #888;background-image:url(../images/flags.png);background-repeat:no-repeat;background-color:#dbdbdb;background-position:20px 0}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2 / 1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.iti-flag{background-image:url(../images/flags@2x.png)}}.iti-flag.np{background-color:transparent}/*! jQuery UI - v1.12.1 - 2020-11-29
2
  * http://jqueryui.com
3
  * Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
4
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
1
+ @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.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}.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}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:16px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%;display:flex;align-items:flex-end}.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 ul{list-style:disc;margin-left:2em}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.fm-free-message-upgrade-button,.fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px}.fm-promo-message{align-items:center;display:flex;flex-direction:column;padding:8px 20px}.fm-free-message-huge{font-size:30px;line-height:39px;margin:10px 0 0 0}.fm-head{margin-top:15px;text-align:center}.fm-head .fm-breadcrumbs li{display:inline-block;margin:0 10px 0 0;padding-top:10px;vertical-align:baseline}.fm-head .fm-breadcrumbs li:last-child{margin-right:0}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link{text-decoration:none;font-family:Roboto;font-weight:500;font-size:18px;color:#32373c}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link-active{color:#0073aa}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-upgrade{position:relative;top:.5px;display:inline-block;margin-left:10px;padding:1px 22px;background-color:#29b311;text-transform:uppercase;border-radius:10px;font-weight:700;font-size:12px;color:#fff}.fm-limitation-alert-container{display:flex;align-items:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100050}.fm-limitation-alert-overlay{background-color:#ffffffcc;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.fm-limitation-alert{background-color:#fff;box-shadow:#0000001a 0 0 10px;display:flex;flex-direction:column;color:#000;font-family:Roboto;justify-content:space-between;margin:0 auto;padding:30px 20px;position:relative;max-width:430px;max-height:311px;width:100%;height:100%;text-align:center}.fm-limitation-alert span.fm-ico-delete{cursor:pointer;position:absolute;top:10px;right:10px;color:#000;font-size:10px;opacity:.3}.fm-hidden{display:none}.fm-limitation-alert-header{color:#32373c;font-size:16px;font-weight:500;line-height:21px}.fm-limitation-alert-body{margin-top:20px}.fm-limitation-alert-body ul{display:inline-block;list-style:disc;text-align:left}.fm-limitation-alert-body ul li{font-size:16px;font-weight:700;line-height:26px}.fm-add-ons{display:flex;flex-wrap:wrap;justify-content:center;margin-top:20px;margin-bottom:10px;font-family:Roboto}.fm-add-ons .fm-add-on{max-width:300px;max-height:300px;width:100%;height:100%;margin-right:10px;margin-bottom:10px;padding:20px 20px 15px;transition-delay:0s;transition-duration:0s;transition-property:all;transition-timing-function:ease;background-color:#fff;border-radius:1px;text-align:center;font-family:Roboto;font-weight:300;font-size:16px;color:#323a45}.fm-add-ons .fm-add-on:hover{box-shadow:1px 1px 6px rgba(52,52,52,.16)}.fm-add-ons .fm-add-on .fm-add-on-img{width:72px;height:72px;margin:0 auto}.fm-add-ons .fm-add-on a{text-decoration:none}.fm-add-ons .fm-add-on .fm-add-on-name{margin:15px 0}.fm-add-ons .fm-add-on .fm-add-on-name,.fm-add-ons .fm-add-on .fm-add-on-name a{font-family:Roboto;font-weight:400;font-size:20px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-premium-version{margin:4px 0;height:16px;line-height:16px;font-weight:400;font-size:14px;color:#29b311}.fm-add-ons .fm-add-on .fm-add-on-desc{max-height:65px;height:100%;line-height:20px;font-size:16px}.fm-add-ons .fm-add-on .fm-add-on-desc-more-wrap{position:relative}.fm-add-ons .fm-add-on .fm-add-on-desc-more{position:absolute;z-index:1;left:0;bottom:65px;opacity:0;visibility:hidden;transition:opacity .4s linear;padding:10px 10px;background-color:#32373c;border-radius:6px;line-height:20px;font-weight:400;font-size:14px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-desc:hover+.fm-add-on-desc-more{opacity:1;visibility:visible}.fm-add-ons .fm-add-on .fm-add-on-buy{width:155px;height:30px;display:block;margin:10px auto;padding-top:7px;background-color:#0c4d68;border:.7px solid #0c4d68;border-radius:15px;line-height:16px;font-family:Roboto;font-weight:400;font-size:13px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-buy:hover{background-color:rgba(12,77,104,.8)}.fm-add-ons .fm-add-on.fm-add-on-activated .fm-add-on-buy{text-transform:uppercase;background-color:#fff;font-size:13px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-learn-more{line-height:16px;font-family:Roboto;font-weight:300;font-size:14px;color:#0073aa}.fm-add-ons .fm-add-on .fm-add-on-learn-more:hover{color:rgba(0,115,170,.8)}@media screen and (max-width:450px){.fm-topbar_cont{display:block}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{margin-left:0}}.intl-tel-input{position:relative;display:inline-block}.intl-tel-input *{box-sizing:border-box;-moz-box-sizing:border-box}.intl-tel-input .hide{display:none}.intl-tel-input .v-hide{visibility:hidden}.intl-tel-input input,.intl-tel-input input[type=tel],.intl-tel-input input[type=text]{position:relative;z-index:0;margin-top:0!important;margin-bottom:0!important;padding-right:36px;margin-right:0}.intl-tel-input .flag-container{position:absolute;top:0;bottom:0;right:0;padding:1px}.intl-tel-input .selected-flag{z-index:1;position:relative;width:36px;height:100%;padding:0 0 0 8px}.intl-tel-input .selected-flag .iti-flag{position:absolute;top:0;bottom:0;margin:auto}.intl-tel-input .selected-flag .iti-arrow{position:absolute;top:50%;margin-top:-2px;right:6px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.rtl .intl-tel-input .selected-flag .iti-arrow{left:6px;right:auto}.intl-tel-input .selected-flag .iti-arrow.up{border-top:none;border-bottom:4px solid #555}.intl-tel-input .country-list{position:absolute;z-index:2;list-style:none;text-align:left;padding:0;margin:0 0 0 -1px;box-shadow:1px 1px 4px rgba(0,0,0,.2);background-color:#fff;border:1px solid #ccc;white-space:nowrap;max-height:200px;overflow-y:scroll}.intl-tel-input .country-list.dropup{bottom:100%;margin-bottom:-1px}.intl-tel-input .country-list .flag-box{display:inline-block;width:20px}@media (max-width:500px){.intl-tel-input .country-list{white-space:normal}}.intl-tel-input .country-list .divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.intl-tel-input .country-list .country{padding:5px 10px}.intl-tel-input .country-list .country .dial-code{color:#999}.intl-tel-input .country-list .country.highlight{background-color:rgba(0,0,0,.05)}.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .dial-code,.intl-tel-input .country-list .flag-box{vertical-align:middle}.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .flag-box{margin-right:6px}.intl-tel-input.allow-dropdown input,.intl-tel-input.allow-dropdown input[type=tel],.intl-tel-input.allow-dropdown input[type=text],.intl-tel-input.separate-dial-code input,.intl-tel-input.separate-dial-code input[type=tel],.intl-tel-input.separate-dial-code input[type=text]{padding-right:6px;padding-left:52px;margin-left:0}.intl-tel-input.allow-dropdown .flag-container,.intl-tel-input.separate-dial-code .flag-container{right:auto;left:0}.rtl .intl-tel-input.allow-dropdown .flag-container,.rtl .intl-tel-input.separate-dial-code .flag-container{left:auto;right:0}.intl-tel-input.allow-dropdown .selected-flag,.intl-tel-input.separate-dial-code .selected-flag{width:46px}.intl-tel-input.allow-dropdown .flag-container:hover{cursor:pointer}.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag{background-color:rgba(0,0,0,.05)}.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover,.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover{cursor:default}.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover .selected-flag,.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover .selected-flag{background-color:transparent}.intl-tel-input.separate-dial-code .selected-flag{background-color:rgba(0,0,0,.05);display:table}.intl-tel-input.separate-dial-code .selected-dial-code{display:table-cell;vertical-align:middle;padding-left:28px}.intl-tel-input.separate-dial-code.iti-sdc-2 input,.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text]{padding-left:66px}.intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag{width:60px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text]{padding-left:76px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag{width:70px}.intl-tel-input.separate-dial-code.iti-sdc-3 input,.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text]{padding-left:74px}.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag{width:68px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text]{padding-left:84px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag{width:78px}.intl-tel-input.separate-dial-code.iti-sdc-4 input,.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text]{padding-left:82px}.intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag{width:76px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text]{padding-left:92px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag{width:86px}.intl-tel-input.separate-dial-code.iti-sdc-5 input,.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],.intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text]{padding-left:90px}.intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag{width:84px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text]{padding-left:100px}.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag{width:94px}.intl-tel-input.iti-container{position:absolute;top:-1000px;left:-1000px;z-index:1060;padding:1px}.intl-tel-input.iti-container:hover{cursor:pointer}.iti-mobile .intl-tel-input.iti-container{top:30px;bottom:30px;left:30px;right:30px;position:fixed}.iti-mobile .intl-tel-input .country-list{max-height:100%;width:100%}.iti-mobile .intl-tel-input .country-list .country{padding:10px 10px;line-height:1.5em}.iti-flag{width:20px}.iti-flag.be{width:18px}.iti-flag.ch{width:15px}.iti-flag.mc{width:19px}.iti-flag.ne{width:18px}.iti-flag.np{width:13px}.iti-flag.va{width:15px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2 / 1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.iti-flag{background-size:5630px 15px}}.iti-flag.ac{height:10px;background-position:0 0}.iti-flag.ad{height:14px;background-position:-22px 0}.iti-flag.ae{height:10px;background-position:-44px 0}.iti-flag.af{height:14px;background-position:-66px 0}.iti-flag.ag{height:14px;background-position:-88px 0}.iti-flag.ai{height:10px;background-position:-110px 0}.iti-flag.al{height:15px;background-position:-132px 0}.iti-flag.am{height:10px;background-position:-154px 0}.iti-flag.ao{height:14px;background-position:-176px 0}.iti-flag.aq{height:14px;background-position:-198px 0}.iti-flag.ar{height:13px;background-position:-220px 0}.iti-flag.as{height:10px;background-position:-242px 0}.iti-flag.at{height:14px;background-position:-264px 0}.iti-flag.au{height:10px;background-position:-286px 0}.iti-flag.aw{height:14px;background-position:-308px 0}.iti-flag.ax{height:13px;background-position:-330px 0}.iti-flag.az{height:10px;background-position:-352px 0}.iti-flag.ba{height:10px;background-position:-374px 0}.iti-flag.bb{height:14px;background-position:-396px 0}.iti-flag.bd{height:12px;background-position:-418px 0}.iti-flag.be{height:15px;background-position:-440px 0}.iti-flag.bf{height:14px;background-position:-460px 0}.iti-flag.bg{height:12px;background-position:-482px 0}.iti-flag.bh{height:12px;background-position:-504px 0}.iti-flag.bi{height:12px;background-position:-526px 0}.iti-flag.bj{height:14px;background-position:-548px 0}.iti-flag.bl{height:14px;background-position:-570px 0}.iti-flag.bm{height:10px;background-position:-592px 0}.iti-flag.bn{height:10px;background-position:-614px 0}.iti-flag.bo{height:14px;background-position:-636px 0}.iti-flag.bq{height:14px;background-position:-658px 0}.iti-flag.br{height:14px;background-position:-680px 0}.iti-flag.bs{height:10px;background-position:-702px 0}.iti-flag.bt{height:14px;background-position:-724px 0}.iti-flag.bv{height:15px;background-position:-746px 0}.iti-flag.bw{height:14px;background-position:-768px 0}.iti-flag.by{height:10px;background-position:-790px 0}.iti-flag.bz{height:14px;background-position:-812px 0}.iti-flag.ca{height:10px;background-position:-834px 0}.iti-flag.cc{height:10px;background-position:-856px 0}.iti-flag.cd{height:15px;background-position:-878px 0}.iti-flag.cf{height:14px;background-position:-900px 0}.iti-flag.cg{height:14px;background-position:-922px 0}.iti-flag.ch{height:15px;background-position:-944px 0}.iti-flag.ci{height:14px;background-position:-961px 0}.iti-flag.ck{height:10px;background-position:-983px 0}.iti-flag.cl{height:14px;background-position:-1005px 0}.iti-flag.cm{height:14px;background-position:-1027px 0}.iti-flag.cn{height:14px;background-position:-1049px 0}.iti-flag.co{height:14px;background-position:-1071px 0}.iti-flag.cp{height:14px;background-position:-1093px 0}.iti-flag.cr{height:12px;background-position:-1115px 0}.iti-flag.cu{height:10px;background-position:-1137px 0}.iti-flag.cv{height:12px;background-position:-1159px 0}.iti-flag.cw{height:14px;background-position:-1181px 0}.iti-flag.cx{height:10px;background-position:-1203px 0}.iti-flag.cy{height:13px;background-position:-1225px 0}.iti-flag.cz{height:14px;background-position:-1247px 0}.iti-flag.de{height:12px;background-position:-1269px 0}.iti-flag.dg{height:10px;background-position:-1291px 0}.iti-flag.dj{height:14px;background-position:-1313px 0}.iti-flag.dk{height:15px;background-position:-1335px 0}.iti-flag.dm{height:10px;background-position:-1357px 0}.iti-flag.do{height:13px;background-position:-1379px 0}.iti-flag.dz{height:14px;background-position:-1401px 0}.iti-flag.ea{height:14px;background-position:-1423px 0}.iti-flag.ec{height:14px;background-position:-1445px 0}.iti-flag.ee{height:13px;background-position:-1467px 0}.iti-flag.eg{height:14px;background-position:-1489px 0}.iti-flag.eh{height:10px;background-position:-1511px 0}.iti-flag.er{height:10px;background-position:-1533px 0}.iti-flag.es{height:14px;background-position:-1555px 0}.iti-flag.et{height:10px;background-position:-1577px 0}.iti-flag.eu{height:14px;background-position:-1599px 0}.iti-flag.fi{height:12px;background-position:-1621px 0}.iti-flag.fj{height:10px;background-position:-1643px 0}.iti-flag.fk{height:10px;background-position:-1665px 0}.iti-flag.fm{height:11px;background-position:-1687px 0}.iti-flag.fo{height:15px;background-position:-1709px 0}.iti-flag.fr{height:14px;background-position:-1731px 0}.iti-flag.ga{height:15px;background-position:-1753px 0}.iti-flag.gb{height:10px;background-position:-1775px 0}.iti-flag.gd{height:12px;background-position:-1797px 0}.iti-flag.ge{height:14px;background-position:-1819px 0}.iti-flag.gf{height:14px;background-position:-1841px 0}.iti-flag.gg{height:14px;background-position:-1863px 0}.iti-flag.gh{height:14px;background-position:-1885px 0}.iti-flag.gi{height:10px;background-position:-1907px 0}.iti-flag.gl{height:14px;background-position:-1929px 0}.iti-flag.gm{height:14px;background-position:-1951px 0}.iti-flag.gn{height:14px;background-position:-1973px 0}.iti-flag.gp{height:14px;background-position:-1995px 0}.iti-flag.gq{height:14px;background-position:-2017px 0}.iti-flag.gr{height:14px;background-position:-2039px 0}.iti-flag.gs{height:10px;background-position:-2061px 0}.iti-flag.gt{height:13px;background-position:-2083px 0}.iti-flag.gu{height:11px;background-position:-2105px 0}.iti-flag.gw{height:10px;background-position:-2127px 0}.iti-flag.gy{height:12px;background-position:-2149px 0}.iti-flag.hk{height:14px;background-position:-2171px 0}.iti-flag.hm{height:10px;background-position:-2193px 0}.iti-flag.hn{height:10px;background-position:-2215px 0}.iti-flag.hr{height:10px;background-position:-2237px 0}.iti-flag.ht{height:12px;background-position:-2259px 0}.iti-flag.hu{height:10px;background-position:-2281px 0}.iti-flag.ic{height:14px;background-position:-2303px 0}.iti-flag.ia{height:14px;background-position:-2325px 0}.iti-flag.ie{height:10px;background-position:-2347px 0}.iti-flag.il{height:15px;background-position:-2369px 0}.iti-flag.im{height:10px;background-position:-2391px 0}.iti-flag.in{height:14px;background-position:-2413px 0}.iti-flag.io{height:10px;background-position:-2435px 0}.iti-flag.iq{height:14px;background-position:-2457px 0}.iti-flag.ir{height:12px;background-position:-2479px 0}.iti-flag.is{height:15px;background-position:-2501px 0}.iti-flag.it{height:14px;background-position:-2523px 0}.iti-flag.je{height:12px;background-position:-2545px 0}.iti-flag.jm{height:10px;background-position:-2567px 0}.iti-flag.jo{height:10px;background-position:-2589px 0}.iti-flag.jp{height:14px;background-position:-2611px 0}.iti-flag.ke{height:14px;background-position:-2633px 0}.iti-flag.kg{height:12px;background-position:-2655px 0}.iti-flag.kh{height:13px;background-position:-2677px 0}.iti-flag.ki{height:10px;background-position:-2699px 0}.iti-flag.km{height:12px;background-position:-2721px 0}.iti-flag.kn{height:14px;background-position:-2743px 0}.iti-flag.kp{height:10px;background-position:-2765px 0}.iti-flag.kr{height:14px;background-position:-2787px 0}.iti-flag.kw{height:10px;background-position:-2809px 0}.iti-flag.ky{height:10px;background-position:-2831px 0}.iti-flag.kz{height:10px;background-position:-2853px 0}.iti-flag.la{height:14px;background-position:-2875px 0}.iti-flag.lb{height:14px;background-position:-2897px 0}.iti-flag.lc{height:10px;background-position:-2919px 0}.iti-flag.li{height:12px;background-position:-2941px 0}.iti-flag.lk{height:10px;background-position:-2963px 0}.iti-flag.lr{height:11px;background-position:-2985px 0}.iti-flag.ls{height:14px;background-position:-3007px 0}.iti-flag.lt{height:12px;background-position:-3029px 0}.iti-flag.lu{height:12px;background-position:-3051px 0}.iti-flag.lv{height:10px;background-position:-3073px 0}.iti-flag.ly{height:10px;background-position:-3095px 0}.iti-flag.ma{height:14px;background-position:-3117px 0}.iti-flag.mc{height:15px;background-position:-3139px 0}.iti-flag.md{height:10px;background-position:-3160px 0}.iti-flag.me{height:10px;background-position:-3182px 0}.iti-flag.mf{height:14px;background-position:-3204px 0}.iti-flag.mg{height:14px;background-position:-3226px 0}.iti-flag.mh{height:11px;background-position:-3248px 0}.iti-flag.mk{height:10px;background-position:-3270px 0}.iti-flag.ml{height:14px;background-position:-3292px 0}.iti-flag.mm{height:14px;background-position:-3314px 0}.iti-flag.mn{height:10px;background-position:-3336px 0}.iti-flag.mo{height:14px;background-position:-3358px 0}.iti-flag.mp{height:10px;background-position:-3380px 0}.iti-flag.mq{height:14px;background-position:-3402px 0}.iti-flag.mr{height:14px;background-position:-3424px 0}.iti-flag.ms{height:10px;background-position:-3446px 0}.iti-flag.mt{height:14px;background-position:-3468px 0}.iti-flag.mu{height:14px;background-position:-3490px 0}.iti-flag.mv{height:14px;background-position:-3512px 0}.iti-flag.mw{height:14px;background-position:-3534px 0}.iti-flag.mx{height:12px;background-position:-3556px 0}.iti-flag.my{height:10px;background-position:-3578px 0}.iti-flag.mz{height:14px;background-position:-3600px 0}.iti-flag.na{height:14px;background-position:-3622px 0}.iti-flag.nc{height:10px;background-position:-3644px 0}.iti-flag.ne{height:15px;background-position:-3666px 0}.iti-flag.nf{height:10px;background-position:-3686px 0}.iti-flag.ng{height:10px;background-position:-3708px 0}.iti-flag.ni{height:12px;background-position:-3730px 0}.iti-flag.nl{height:14px;background-position:-3752px 0}.iti-flag.no{height:15px;background-position:-3774px 0}.iti-flag.np{height:15px;background-position:-3796px 0}.iti-flag.nr{height:10px;background-position:-3811px 0}.iti-flag.nu{height:10px;background-position:-3833px 0}.iti-flag.nz{height:10px;background-position:-3855px 0}.iti-flag.om{height:10px;background-position:-3877px 0}.iti-flag.pa{height:14px;background-position:-3899px 0}.iti-flag.pe{height:14px;background-position:-3921px 0}.iti-flag.pf{height:14px;background-position:-3943px 0}.iti-flag.pg{height:15px;background-position:-3965px 0}.iti-flag.ph{height:10px;background-position:-3987px 0}.iti-flag.pk{height:14px;background-position:-4009px 0}.iti-flag.pl{height:13px;background-position:-4031px 0}.iti-flag.pm{height:14px;background-position:-4053px 0}.iti-flag.pn{height:10px;background-position:-4075px 0}.iti-flag.pr{height:14px;background-position:-4097px 0}.iti-flag.ps{height:10px;background-position:-4119px 0}.iti-flag.pt{height:14px;background-position:-4141px 0}.iti-flag.pw{height:13px;background-position:-4163px 0}.iti-flag.py{height:11px;background-position:-4185px 0}.iti-flag.qa{height:8px;background-position:-4207px 0}.iti-flag.re{height:14px;background-position:-4229px 0}.iti-flag.ro{height:14px;background-position:-4251px 0}.iti-flag.rs{height:14px;background-position:-4273px 0}.iti-flag.ru{height:14px;background-position:-4295px 0}.iti-flag.rw{height:14px;background-position:-4317px 0}.iti-flag.sa{height:14px;background-position:-4339px 0}.iti-flag.sb{height:10px;background-position:-4361px 0}.iti-flag.sc{height:10px;background-position:-4383px 0}.iti-flag.sd{height:10px;background-position:-4405px 0}.iti-flag.se{height:13px;background-position:-4427px 0}.iti-flag.sg{height:14px;background-position:-4449px 0}.iti-flag.sh{height:10px;background-position:-4471px 0}.iti-flag.si{height:10px;background-position:-4493px 0}.iti-flag.sj{height:15px;background-position:-4515px 0}.iti-flag.sk{height:14px;background-position:-4537px 0}.iti-flag.sl{height:14px;background-position:-4559px 0}.iti-flag.sm{height:15px;background-position:-4581px 0}.iti-flag.sn{height:14px;background-position:-4603px 0}.iti-flag.so{height:14px;background-position:-4625px 0}.iti-flag.sr{height:14px;background-position:-4647px 0}.iti-flag.ss{height:10px;background-position:-4669px 0}.iti-flag.st{height:10px;background-position:-4691px 0}.iti-flag.sv{height:12px;background-position:-4713px 0}.iti-flag.sx{height:14px;background-position:-4735px 0}.iti-flag.sy{height:14px;background-position:-4757px 0}.iti-flag.sz{height:14px;background-position:-4779px 0}.iti-flag.ta{height:10px;background-position:-4801px 0}.iti-flag.tc{height:10px;background-position:-4823px 0}.iti-flag.td{height:14px;background-position:-4845px 0}.iti-flag.tf{height:14px;background-position:-4867px 0}.iti-flag.tg{height:13px;background-position:-4889px 0}.iti-flag.th{height:14px;background-position:-4911px 0}.iti-flag.tj{height:10px;background-position:-4933px 0}.iti-flag.tk{height:10px;background-position:-4955px 0}.iti-flag.tl{height:10px;background-position:-4977px 0}.iti-flag.tm{height:14px;background-position:-4999px 0}.iti-flag.tn{height:14px;background-position:-5021px 0}.iti-flag.to{height:10px;background-position:-5043px 0}.iti-flag.tr{height:14px;background-position:-5065px 0}.iti-flag.tt{height:12px;background-position:-5087px 0}.iti-flag.tv{height:10px;background-position:-5109px 0}.iti-flag.tw{height:14px;background-position:-5131px 0}.iti-flag.tz{height:14px;background-position:-5153px 0}.iti-flag.ua{height:14px;background-position:-5175px 0}.iti-flag.ug{height:14px;background-position:-5197px 0}.iti-flag.um{height:11px;background-position:-5219px 0}.iti-flag.us{height:11px;background-position:-5241px 0}.iti-flag.uy{height:14px;background-position:-5263px 0}.iti-flag.uz{height:10px;background-position:-5285px 0}.iti-flag.va{height:15px;background-position:-5307px 0}.iti-flag.vc{height:14px;background-position:-5324px 0}.iti-flag.ve{height:14px;background-position:-5346px 0}.iti-flag.vg{height:10px;background-position:-5368px 0}.iti-flag.vi{height:14px;background-position:-5390px 0}.iti-flag.vn{height:14px;background-position:-5412px 0}.iti-flag.vu{height:12px;background-position:-5434px 0}.iti-flag.wf{height:14px;background-position:-5456px 0}.iti-flag.ws{height:10px;background-position:-5478px 0}.iti-flag.xk{height:15px;background-position:-5500px 0}.iti-flag.ye{height:14px;background-position:-5522px 0}.iti-flag.yt{height:14px;background-position:-5544px 0}.iti-flag.za{height:14px;background-position:-5566px 0}.iti-flag.zm{height:14px;background-position:-5588px 0}.iti-flag.zw{height:10px;background-position:-5610px 0}.iti-flag{width:20px;height:15px;box-shadow:0 0 1px 0 #888;background-image:url(../images/flags.png);background-repeat:no-repeat;background-color:#dbdbdb;background-position:20px 0}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2 / 1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.iti-flag{background-image:url(../images/flags@2x.png)}}.iti-flag.np{background-color:transparent}/*! jQuery UI - v1.12.1 - 2020-11-29
2
  * http://jqueryui.com
3
  * Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
4
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
css/manage-styles.min.css CHANGED
@@ -1 +1 @@
1
- @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.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}.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}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:16px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container ul{list-style:disc;margin-left:2em}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.fm-free-message-upgrade-button,.fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px}.fm-promo-message{align-items:center;display:flex;flex-direction:column;padding:8px 20px}.fm-free-message-huge{font-size:30px;line-height:39px;margin:10px 0 0 0}.fm-head{margin-top:15px;text-align:center}.fm-head .fm-breadcrumbs li{display:inline-block;margin:0 10px 0 0;padding-top:10px;vertical-align:baseline}.fm-head .fm-breadcrumbs li:last-child{margin-right:0}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link{text-decoration:none;font-family:Roboto;font-weight:500;font-size:18px;color:#32373c}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-breadcrumb-item-link-active{color:#0073aa}.fm-head .fm-breadcrumbs .fm-breadcrumb-item .fm-upgrade{position:relative;top:.5px;display:inline-block;margin-left:10px;padding:1px 22px;background-color:#29b311;text-transform:uppercase;border-radius:10px;font-weight:700;font-size:12px;color:#fff}.fm-limitation-alert-container{display:flex;align-items:center;position:fixed;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:100050}.fm-limitation-alert-overlay{background-color:#ffffffcc;position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.fm-limitation-alert{background-color:#fff;box-shadow:#0000001a 0 0 10px;display:flex;flex-direction:column;color:#000;font-family:Roboto;justify-content:space-between;margin:0 auto;padding:30px 20px;position:relative;max-width:430px;max-height:311px;width:100%;height:100%;text-align:center}.fm-limitation-alert span.fm-ico-delete{cursor:pointer;position:absolute;top:10px;right:10px;color:#000;font-size:10px;opacity:.3}.fm-hidden{display:none}.fm-limitation-alert-header{color:#32373c;font-size:16px;font-weight:500;line-height:21px}.fm-limitation-alert-body{margin-top:20px}.fm-limitation-alert-body ul{display:inline-block;list-style:disc;text-align:left}.fm-limitation-alert-body ul li{font-size:16px;font-weight:700;line-height:26px}.fm-add-ons{display:flex;flex-wrap:wrap;justify-content:center;margin-top:20px;margin-bottom:10px;font-family:Roboto}.fm-add-ons .fm-add-on{max-width:300px;max-height:300px;width:100%;height:100%;margin-right:10px;margin-bottom:10px;padding:20px 20px 15px;transition-delay:0s;transition-duration:0s;transition-property:all;transition-timing-function:ease;background-color:#fff;border-radius:1px;text-align:center;font-family:Roboto;font-weight:300;font-size:16px;color:#323a45}.fm-add-ons .fm-add-on:hover{box-shadow:1px 1px 6px rgba(52,52,52,.16)}.fm-add-ons .fm-add-on .fm-add-on-img{width:72px;height:72px;margin:0 auto}.fm-add-ons .fm-add-on a{text-decoration:none}.fm-add-ons .fm-add-on .fm-add-on-name{margin:15px 0}.fm-add-ons .fm-add-on .fm-add-on-name,.fm-add-ons .fm-add-on .fm-add-on-name a{font-family:Roboto;font-weight:400;font-size:20px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-premium-version{margin:4px 0;height:16px;line-height:16px;font-weight:400;font-size:14px;color:#29b311}.fm-add-ons .fm-add-on .fm-add-on-desc{max-height:65px;height:100%;line-height:20px;font-size:16px}.fm-add-ons .fm-add-on .fm-add-on-desc-more-wrap{position:relative}.fm-add-ons .fm-add-on .fm-add-on-desc-more{position:absolute;z-index:1;left:0;bottom:65px;opacity:0;visibility:hidden;transition:opacity .4s linear;padding:10px 10px;background-color:#32373c;border-radius:6px;line-height:20px;font-weight:400;font-size:14px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-desc:hover+.fm-add-on-desc-more{opacity:1;visibility:visible}.fm-add-ons .fm-add-on .fm-add-on-buy{width:155px;height:30px;display:block;margin:10px auto;padding-top:7px;background-color:#0c4d68;border:.7px solid #0c4d68;border-radius:15px;line-height:16px;font-family:Roboto;font-weight:400;font-size:13px;color:#fff}.fm-add-ons .fm-add-on .fm-add-on-buy:hover{background-color:rgba(12,77,104,.8)}.fm-add-ons .fm-add-on.fm-add-on-activated .fm-add-on-buy{text-transform:uppercase;background-color:#fff;font-size:13px;color:#0c4d68}.fm-add-ons .fm-add-on .fm-add-on-learn-more{line-height:16px;font-family:Roboto;font-weight:300;font-size:14px;color:#0073aa}.fm-add-ons .fm-add-on .fm-add-on-learn-more:hover{color:rgba(0,115,170,.8)}@media screen and (max-width:450px){.fm-topbar_cont{display:block}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{margin-left:0}}
1
+ @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.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}.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}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:16px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%;display:flex;align-items:flex-end}.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 ul{list-style:disc;margin-left:2em}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}.fm-head-notice{display:none}.fm-topbar-container{display:flex;flex-direction:row;justify-content:flex-end;margin:20px 0 20px 0;font-family:Roboto}.fm-topbar-container *{box-sizing:border-box}.fm-topbar-container .fm-topbar{background-color:#fff;border:1px solid #d0d0D080;border-radius:7px;color:#000;padding:10px}.fm-topbar_cont{display:flex}.fm-topbar-container .fm-topbar.fm-topbar_support_forum{background-color:#4786ff;margin-left:20px}.fm-topbar-container .fm-topbar.fm-topbar_support_forum:hover{background-color:#3077ff;opacity:1}.fm-topbar-content{display:flex;justify-content:space-between;flex:auto;margin:0 20px 0 0;padding:10px 15px;height:60px}.fm-topbar-links{color:#000;display:flex;flex-direction:column;justify-content:space-around;font-size:18px;font-weight:300;margin:0 0 0 2px;height:60px}.fm-topbar-links-container{display:flex;justify-content:space-around;height:80%}.fm-topbar-links-item{display:flex;flex:1;align-self:center;justify-content:center;width:170px;line-height:50px}.fm-topbar-links *{font-size:18px}.fm-topbar-links a,.fm-topbar-links a:focus{align-self:center;box-shadow:none;color:#000;text-decoration:none}.fm-topbar-links a.fm-topbar_support_forum{color:#fff}.fm-topbar-links a.fm-topbar_support_forum .help_icon{margin-right:10px}.fm-topbar-links a:hover{opacity:.5;text-decoration:none}.fm-topbar-separator{background-color:#c2c2C280;width:1px;height:100%}.fm-topbar-content-title{color:#0c4d68;font-size:16px;font-weight:700;line-height:22px;text-transform:uppercase}.fm-topbar-content-body{font-size:15px;font-weight:300;line-height:20px}.fm-topbar-content-container{display:flex;flex-direction:column}.fm-free-message-button-container,.fm-topbar-content-button-container{align-self:center}.fm-topbar-upgrade-button,.fm-topbar-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:14px;padding:5px 44px;text-decoration:none;text-transform:uppercase}.fm-topbar-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}@media screen and (max-width:1366px){.fm-topbar-links{font-size:15px}.fm-topbar-content-title{font-size:15px}.fm-topbar-content-body{font-size:13px}}@media screen and (max-width:1285px){.fm-topbar-container{flex-direction:column}.fm-topbar-content,.fm-topbar-links{margin:0 0 10px 0;width:100%}.fm-topbar-content{flex-direction:column;height:auto}.fm-topbar-content-container,.fm-topbar-content-container *{align-self:center;padding-bottom:4px}}.fm-free-option{opacity:.7}.fm-free-message{background-color:#fff;border:1px solid #d0d0D080;display:flex;color:#000;font-family:Roboto;justify-content:space-between;padding:8px 20px}.fm-free-message-body{color:#444;font-size:14px;font-weight:500;line-height:30px}.fm-free-message-upgrade-button,.fm-free-message-upgrade-button:focus{background-color:#29b311;border-radius:20px;box-shadow:none;color:#fff;font-size:12px;padding:3px 25px;text-decoration:none;text-transform:uppercase}.fm-free-message-upgrade-button:hover{text-decoration:none;color:#fffFFFCC}.fm-free-message-promo-button,.fm-free-message-promo-button:focus{background-color:#0c4d68;padding:3px 40px}.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/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{color:red;font-size:13px;width:100%;padding-left:10px}.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 .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}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;transition:bottom .4s ease 0s;z-index:999999;opacity:1;bottom:0}.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 .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}@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;height:100%;align-items:baseline;justify-content:flex-end}.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%}.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;margin:10px!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{color:red;font-size:13px;width:100%;padding-left:10px}.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 .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}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;transition:bottom .4s ease 0s;z-index:999999;opacity:1;bottom:0}.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 .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}@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.wd-flex-column{-webkit-align-items:baseline;height:100%;align-items:baseline;justify-content:flex-end}.wd-flex-column[type=type_gdpr_compliance_checkbox],.wd-flex-column[type=type_submit_reset]{height:auto!important}.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;display:flex;flex-direction:column}.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%}.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;margin:10px!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"}
css/submission-styles.min.css CHANGED
@@ -1,4 +1,4 @@
1
- @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.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}.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}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:16px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container ul{list-style:disc;margin-left:2em}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}/*! jQuery UI - v1.12.1 - 2020-11-29
2
  * http://jqueryui.com
3
  * Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
4
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
1
+ @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.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}.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}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:16px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%;display:flex;align-items:flex-end}.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 ul{list-style:disc;margin-left:2em}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}/*! jQuery UI - v1.12.1 - 2020-11-29
2
  * http://jqueryui.com
3
  * Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
4
  * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
css/theme-edit-styles.min.css CHANGED
@@ -1,4 +1,4 @@
1
- @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.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}.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}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:16px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;padding:2px;text-align:right;vertical-align:middle;width:30px!important}.wdform-date{width:100px!important}.mini_label{font-family:'Lucida Grande',Tahoma,Arial,Verdana,sans-serif;font-size:10px}.label{border:none}.td_am_pm_select{padding-left:5px}.am_pm_select{height:16px;margin:0;padding:0}.required{border:none;color:red}.captcha_img{border-width:0;cursor:pointer;margin:0;padding:0}.captcha_refresh{background-image:url(../images/refresh_black.png);border-width:0;cursor:pointer;height:30px;margin:0;padding:0;vertical-align:middle;width:30px}.captcha_input{border-width:1px;height:20px;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_img{border-width:0;cursor:pointer;margin:0;padding:0;vertical-align:middle}.arithmetic_captcha_input{border-width:1px;height:25px;margin-left:3px;padding:0;vertical-align:middle}.file_upload{border-width:1px;margin:0;padding:0}.page_deactive{border:1px solid #bfbebe;cursor:pointer;border-radius:15px;padding:2px 8px}.page_deactive:hover{background-color:#f0f0f0}.page_active{background-color:#4ec0d9;cursor:pointer;padding:2px 8px;margin:4px;cursor:pointer;border-radius:15px;padding:3px 9px;color:#fff}.page_percentage_active{background-color:#4ec0d9;border-radius:30px;border-spacing:0;height:30px;line-height:29px;float:left;font-size:15px;margin:0;padding:0;text-align:right!important;color:#4ec0d9}.page_percentage_active b{padding:4px 15px;background:#fff;border-radius:18px;margin:3px}.page_percentage_deactive{background-color:#fff;border:1px solid #aba8a8;border-radius:30px;height:30px;line-height:30px;text-align:left!important;width:100%}.fm-user-manual{float:left}.fm_pro_container{text-align:right;width:100%}.fm_pro_link{border:none;box-shadow:none!important;text-decoration:none}a.fm_pro_text,a.fm_pro_text:active,a.fm_pro_text:hover,a.fm_pro_text:visited{background-color:#d8d8d8;color:#175c8b;display:inline-block;font-size:11px;font-weight:700;height:54px;line-height:50px;padding:0 10px;vertical-align:middle}.fm_pro_image{border:none;display:inline-block;vertical-align:middle}input[disabled],input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#e5e5e5;border:1px solid #e5e5e5}#edit_table .fm-label{color:#000;font-weight:700;font-size:13px}#edit_div{padding:10px;padding-top:2px;padding-bottom:0}#edit_div input[type=text]:disabled{opacity:.5}#edit_main_table tr{vertical-align:middle}#edit_main_table>tr>td{border-bottom:1px solid #e6e4e4;padding:6px 0}#edit_main_table input[type=number],#edit_main_table input[type=text],#edit_main_table select,#edit_main_table textarea{border:0;background:#f1f1f1;box-shadow:none;border-radius:0}#edit_main_table input[type=text]{display:inline-block;padding:4px 6px;font-size:13px;line-height:18px;color:#555;vertical-align:middle}#edit_main_table #el_destination_input_info{padding-top:5px;display:inline-block;color:rgba(152,143,143,.5686274509803921)}#edit_main_table #el_destination_input{float:right;width:40%}.field_options-large #edit_main_table #el_destination_input{float:right;width:75%}#edit_main_table textarea{width:100%;font-size:13px;color:#555}#edit_main_table img{vertical-align:middle}#edit_main_table label{line-height:19px}.field_buttons{background-color:#f2f2f2;margin:1px;border-radius:2px;padding:5px;height:60px;width:87px;cursor:pointer;font-size:12px;border:1px solid #ccc}.field_buttons:hover{background-color:#e3e3e3}.field_disabled{cursor:pointer;background:#d0d0d0}.field_disabled:hover{background:#d0d0d0}.fm-field-label{color:#000;font-weight:700;font-size:13px;margin-right:20px}.fm-field-paypal-choice{width:50px!important;margin:1px!important}.fm-field-recaptcha-label{color:#ba0d0d;font-weight:700;font-size:13px;text-decoration:underline}.fm-field-recaptcha-label:active,.fm-field-recaptcha-label:hover,.fm-field-recaptcha-label:visited{color:#ba0d0d!important}.fm-editable-label{margin-left:4px;color:red;font-style:italic}.wdform_tr_section_break{display:none!important;min-width:480px}.element_toolbar{display:inline}.element_toolbar img{margin:2px}.wdform_arrows_section{padding-left:10px;vertical-align:middle;display:inline-block;min-width:77px}.wdform_arrows{background:rgba(242,242,242,.5);display:inline-flex;flex-direction:column;height:100%;left:0;position:absolute;text-align:center;top:0;vertical-align:middle;width:100%;z-index:9}.wdform_arrows_show{vertical-align:middle;min-width:216px;background:#f5f5f5;text-align:left;margin-top:-11px;margin-bottom:5px;cursor:default!important;border-top:1px solid #e6e6e6}.wdform_arrows img{cursor:pointer}#edit_page_navigation{display:table-cell;vertical-align:middle;text-align:right}#edit_page_navigation .fm-ico-edit{font-size:18px;cursor:pointer;color:#555}.page_toolbar{cursor:pointer;margin:0 8px 0 6px}.page_toolbar.dashicons{font-size:25px}.page_toolbar.dashicons-dismiss{display:none}.page_toolbar.dashicons-arrow-down-alt,.page_toolbar.dashicons-arrow-left-alt,.page_toolbar.dashicons-arrow-right-alt,.page_toolbar.dashicons-arrow-up-alt{color:#555}.page_toolbar.dashicons-arrow-down-alt:hover,.page_toolbar.dashicons-arrow-left-alt:hover,.page_toolbar.dashicons-arrow-right-alt:hover,.page_toolbar.dashicons-arrow-up-alt:hover{color:#000}.page_toolbar.dashicons-download,.page_toolbar.dashicons-upload{color:#d8c57a}.page_toolbar.dashicons-download:hover,.page_toolbar.dashicons-upload:hover{color:#d8ce7f}.page_toolbar.fm-ico-collapse,.page_toolbar.fm-ico-delete,.page_toolbar.fm-ico-duplicate,.page_toolbar.fm-ico-edit,.page_toolbar.fm-ico-expand,.wdform_page_title .fm-ico-draggable,.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{color:#555;font-size:17px}#edit_page_navigation .fm-ico-edit:hover,.page_toolbar.fm-ico-collapse:hover,.page_toolbar.fm-ico-delete:hover,.page_toolbar.fm-ico-duplicate:hover,.page_toolbar.fm-ico-edit:hover,.page_toolbar.fm-ico-expand:hover,.wdform_page_title .fm-ico-draggable:hover,.wdform_row_handle .fm-ico-draggable:hover,.wdform_section_handle .fm-ico-draggable:hover{color:#000}.wdform_row_handle .fm-ico-draggable,.wdform_section_handle .fm-ico-draggable{cursor:move;font-size:12px;margin:10px 5px 4px 10px;float:left}.form_id_tempform_view_img .fm-ico-draggable{cursor:move;font-size:12px;margin:5px 5px 4px 10px}.form_id_tempform_view_img .fm-ico-draggable{font-size:12px;margin:0 10px 0 5px}.wdform_field_section_break{min-width:300px;display:inline-block;width:100%;padding-top:10px}.wdform_page{width:100%}#page_bar{border:1px solid #e5e5e5;padding:14px;margin:10px 0}.wdform_section{display:flex;flex-wrap:wrap;border:1px solid #e5e5e5;margin:10px;position:relative}.wdform_arrows_container{display:inline-flex;position:absolute;right:0;top:3px;height:100%}.wdform_column .wdform_arrows_advanced{top:30px}.wdform-page-and-images.ui-sortable-helper,.wdform_column:not(#add_field_cont).ui-sortable.ui-sortable-helper,.wdform_row.ui-sortable-handle.ui-sortable-helper{border:1px dashed #0085ba!important}#fm_admin_container .wdform_page .wdform_row_empty:nth-child(n+4){display:none!important}.wdform_column:not(#add_field_cont){display:inline-block;flex:1;min-height:20px;min-width:200px;vertical-align:top}.wdform_column:not(#add_field_cont).fm-hover,.wdform_section.fm-hover{border:1px dashed #0085ba!important}.wdform_row_empty{border:1px solid #e5e5e5!important;flex:1;padding:10px;vertical-align:top;display:flex;flex-direction:row;justify-content:center;align-items:center}.wdform_row_empty>div{display:flex;flex-direction:row;justify-content:center;align-items:center;cursor:pointer}.wdform_row_empty .add_row_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_row_empty>div:hover .add_row_icon{color:#0085ba}.wdform_row_empty>div:hover .add_row_button{color:#0085ba}.wdform_row_empty .add_row_button{color:#32373c;font-size:20px;margin:10px}.wdform_column_empty{border:1px solid #e5e5e5!important;margin:10px;min-height:100px;min-width:200px;flex:0 23.3%;vertical-align:top;display:flex;flex-direction:column;justify-content:center;align-items:center}.wdform_column_empty>div{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}.wdform_column_empty .add_column_icon{color:#e5e5e5;width:34px;height:34px;font-size:34px;text-align:center}.wdform_column_empty>div:hover .add_column_icon{color:#0085ba}.wdform_column_empty>div:hover .add_column_button{color:#0085ba}.wdform_column_empty .add_column_button{color:#32373c;font-size:20px;margin-top:5px}.wdform_row,.wdform_tr_section_break{background-color:#fff;border:transparent 1px dashed;min-height:60px;overflow:hidden;padding:10px;position:relative;width:100%}.wdform_row:active,.wdform_row:hover{border:1px dashed #0085ba;cursor:move}.wdform_tr_section_break:active,.wdform_tr_section_break:hover{border:#000 1px dashed}.wdform_star_rating img{margin:0}.wdform_scale_rating input{margin:0 2px}.grading input{float:none;margin:0 0 2px 0}.wdform_matrix tr td:first-child{border:none}.email_labels{position:absolute;background:#fff;border:solid 1px #c7c7c7;top:0;left:0;z-index:1000}.email_labels a{padding:5px;cursor:pointer}.email_labels a:hover{background:#ccc}.highlight:not(.country),.wdform_column:not(#add_field_cont).highlight{border:1px dashed #141414!important;min-height:100px}.wdform_section_handle{width:100%;height:30px}.wdform_row_handle{cursor:move;height:30px;flex:0 100%}.fm-divider{border-bottom:1px solid #e5e5e5;margin:0 10px;clear:both}.wdform_row_handle .add-new-field{cursor:pointer;float:right;margin:5px 10px 4px 5px;color:#0085ba;font-size:13px;font-weight:700}.wdform_row_handle .add-new-field:hover{color:#006992}.wdform_row_handle .add-new-field:before{content:"\e901";display:inline-block;width:11px;height:11px;font-size:11px;line-height:1.6;font-family:fm-icons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;text-align:center;margin-right:2px}.wdform_row_handle .page_toolbar.fm-ico-delete{float:right;font-size:13px;margin:7px 10px 0 0}.highlight:not(.country){visibility:visible!important;height:80px!important;width:100%!important;display:inline-block;background:0 0}.page_numbersform_id_temp,.wdform-page-button{border:1px solid #b3b3b3;padding:2px 15px}.fm-loading-container{position:relative}.fm-loading-content,.fm-loading-content::after,.fm-loading-content::before{z-index:1000;position:fixed;top:50%;left:50%;border:1px solid #ccc;border-left-color:#000;border-radius:974px;-o-border-radius:974px;-ms-border-radius:974px;-webkit-border-radius:974px;-moz-border-radius:974px}.fm-loading-content{height:49px;width:49px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::before{content:"";margin:-22px 0 0 -22px;height:43px;width:43px;animation:fm-loading-rotate 1.15s linear infinite;-o-animation:fm-loading-rotate 1.15s linear infinite;-ms-animation:fm-loading-rotate 1.15s linear infinite;-webkit-animation:fm-loading-rotate 1.15s linear infinite;-moz-animation:fm-loading-rotate 1.15s linear infinite}.fm-loading-content::after{content:"";margin:-28px 0 0 -28px;height:55px;width:55px;animation:fm-loading-rotate 2.3s linear infinite;-o-animation:fm-loading-rotate 2.3s linear infinite;-ms-animation:fm-loading-rotate 2.3s linear infinite;-webkit-animation:fm-loading-rotate 2.3s linear infinite;-moz-animation:fm-loading-rotate 2.3s linear infinite}@keyframes fm-loading-rotate{100%{transform:rotate(360deg)}}@-o-keyframes fm-loading-rotate{100%{-o-transform:rotate(360deg)}}@-ms-keyframes fm-loading-rotate{100%{-ms-transform:rotate(360deg)}}@-webkit-keyframes fm-loading-rotate{100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes fm-loading-rotate{100%{-moz-transform:rotate(360deg)}}.fm-user-manual{font-size:14px;font-weight:700;font-style:italic;margin:20px 0}.fm-title{float:left}.fm-title span{width:50px;display:inline-block}.fm-title input{width:290px;padding:4px;border:1px solid #c5c6c7;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}input:focus{outline:0!important}.fm-page-header{padding:10px 0}.fm-page-title{font-size:24px;line-height:24px;color:#444;display:inline-block;vertical-align:middle}.fm-edit-content{position:relative;background:#fff;margin:0 auto;padding:40px 10px 10px 10px}.fm-drag-and-drop{margin-bottom:10px}.fm-drag-and-drop div{padding:5px 0;font-style:italic}.fm-drag-and-drop label{font-size:15px;font-weight:700;vertical-align:top;margin-right:10px}.fm_modal{display:none;position:fixed;z-index:100000;top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.8)}.export_progress{position:fixed;z-index:1003;height:100%;width:100%;top:56%;left:45%;font-size:15px;color:#000;display:none}div.ui-datepicker{font-size:15px!important}.ui-datepicker{background:#f2f2f2!important;border:1px solid #afafaf!important;color:#777!important}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #e3e3e3!important;background:#fff!important;color:#8c8c8c!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover{border:1px solid #d2d2d2!important;background:#dcdcdc!important;font-weight:700!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #a9a9a9!important;background:#a9a9a9!important;color:#fff!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #a2a2a2!important;background:#dcdcdc!important;color:#272727!important}.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)!important}.fm-header-1{width:59%;display:inline-block;vertical-align:top}.fm-header-2{width:40%;display:inline-block;vertical-align:top}.fm-header label{width:20%;display:inline-block;font-size:15px}.fm-row{margin-top:10px;padding:0}.form-header .fm-row label{width:24%!important}.fm-row label{display:inline-block;width:20%;font-size:15px;vertical-align:middle;text-align:left}.fm-row input[type=text],.fm-row select{width:100%;max-width:487px;padding:5px;border:1px solid #d2cfcf;height:30px;line-height:inherit;box-shadow:none}.header_img{width:120px;height:120px;background-size:cover;margin-top:10px}@media screen and (max-width:782px){.fm-row label{width:100%;margin-bottom:10px}.fm-row input[type=text],.fm-row select{width:100%;max-width:577px}.header_img{margin-left:0}.fm-table-submissions td,.fm-table-submissions th{max-width:none}.wd-table .wd-radio,.wd-table .wd-radio+label,.wd-table input[type=checkbox],.wd-table input[type=checkbox]+label{margin-bottom:5px;display:inline-block}}.header_img #remove_header_img{display:none;float:right;cursor:pointer}.header_img:hover #remove_header_img{display:inline-block}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}#manage_form .fm-header .fm-heading{background-color:#1a89bc;font-size:20px;height:60px;color:#fff;padding:0 15px}.fm-form-example{position:absolute}.fm-form-example .fm-left{float:left}.fm-form-example .fm-right{float:right}.fm-form-example .fm-center{margin:0 auto}.fm-form-example.form-embedded{width:100%;top:5px}.fm-form-example .fm-row label,.fm-themes .fm-row label,.fm-themes-container .fm-row label{width:35%}.fm-themes-container textarea{width:100%;height:300px}.form-example-preview label:not(:first-child){width:initial!important}.fm-form-example .fm-row input[type=text],.fm-form-example .fm-row select,.fm-themes .fm-row input[type=number],.fm-themes .fm-row input[type=text],.fm-themes .fm-row select{width:56%}.fm-themes .fm-2text input[type=text]{width:86%}.fm-form-example .fm-section{display:table}.fm-form-example .fm-section:after{content:'';clear:both;display:block}.fm-form-example .fm-column{float:left}.fm-form-example .wdform-field.subscribe-reset{display:grid}.fm-form-example .wdform-field{display:table-cell}.fm-form-example .wdform-label-section{text-align:left;display:table-cell}.fm-form-example .container-fluid{background:0 0;padding-left:0;padding-right:0}.fm-form-example .wdform-element-section{text-align:left;display:table-cell;min-width:140px}.fm-form-example .fm-button-reset,.fm-form-example .fm-button-subscribe{height:auto!important;line-height:inherit}.fm-mini-title{width:100%!important;font-size:18px!important;border-bottom:1px dotted #ccc;padding:5px 0;color:#e5705d}.fm-wdform-page-button{display:inline-block;outline:0;cursor:pointer}.fm-btn-group{display:inline-block;vertical-align:middle}.fm_shake_row{padding-top:10px}.fm_shake_row .fm-ch-select label{margin-left:5px}.fm-ch-select{width:140px}.fm-ch-button label{margin-left:5px}.form-example-preview p{color:#4ec0d9;font-size:20px}.pagination-type{display:inline-block;vertical-align:top}.pagination-type label{width:initial}.embedded-form:after{content:'';display:block;clear:both}.active-percentage{text-align:right}#manage_form .panel{border:none}#fm-header{padding:0!important}#manage_form .form-header .panel-heading{background-color:#fff;height:22px;color:#000;box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#manage_form .form-header .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 41% 49%;width:92px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-header span.fm-expcol{background:url(../images/icons.png) no-repeat 26% 54%;width:45px;height:60px;cursor:pointer}.form-header span.fm-expanded{background:url(../images/icons.png) no-repeat 31% 52%;width:45px;height:60px;cursor:pointer}.form-content.panel{background-color:transparent!important}.form-content .panel-content>div{margin-top:10px}.form-content .panel-content fieldset{background-color:#fff}.form-content .panel-heading{background-color:#445b72;font-size:20px;height:60px;color:#fff;padding:0 15px 0 0}.form-content .panel-heading span.fm-header-bg{background:url(../images/icons.png) no-repeat 12% 92%;width:128px;height:60px;display:inline-block;vertical-align:middle;margin-right:15px}.form-content span.fm-expcol{background:url(../images/icons.png) no-repeat 49% 93.5%;width:50px;height:65px;cursor:pointer}.form-content span.fm-expanded{background:url(../images/icons.png) no-repeat 42% 93.5%;width:50px;height:65px;cursor:pointer}.fm-form-header .himage{text-align:center}.fm-form-header .himage.imageRight{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageRight{display:table-cell;width:70%}.fm-form-header .himage.imageLeft{display:table-cell;width:20%;vertical-align:middle}.fm-form-header .htext.imageLeft{display:table-cell;width:70%}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:170px}.fm-button.extra-large{width:200px}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}.fm-loading{display:none;background:url(../images/load.gif) no-repeat 0 50%;width:20px;height:20px;vertical-align:middle}.mini_label{font-size:12px}#show_table .mini_label:empty{font-size:12px;padding:6px 0;background-color:#f1f1f1;display:block;margin-right:10px;margin-top:2px}#show_table .mini_label_from:empty,#show_table .mini_label_phone_number:empty,#show_table .wdform_address .mini_label:empty,#show_table .wdform_date_fields .mini_label:empty{margin-right:0}#show_table .mini_label_area_code:empty{margin-right:15px}#show_table .mini_label_to:empty{margin-left:3px;margin-right:0}@media screen and (max-width:480px){#show_table input[type=text]{padding:3px 10px}#show_table select{padding:3px 10px;font-size:13px;height:26px}}.wdform_address span{height:52px}.all_any,.show_hide{width:80px}.is_select{width:100px}.field_choices{display:inline-block}.wdform-field button.inForm{background:#f3f1f1!important;color:#616163;border:1px solid #d0cfcf!important;cursor:default;border-radius:3px;box-shadow:1px 1px 1px #dedede}.wdform-field.custom-button button{background:#4ec0d9;padding:0 5px 0 0;height:28px}.wdform-field button span{background:url(../images/icons.png) no-repeat 95.5% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.inForm span{background:url(../images/icons.png) no-repeat 91% 35.8%;width:28px;height:28px;vertical-align:middle;display:inline-block}.wdform-field button.isRequired::after{content:" *";color:red}.fm-mini-heading{font-size:14px;font-weight:700;vertical-align:top;margin-right:10px;margin-bottom:15px}.mini-label{font-size:14px;vertical-align:top;margin-left:3px;margin-bottom:5px}.fm-mini-heading label{font-size:inherit!important}.fm-italic{font-style:italic}.fm-border{padding-bottom:8px;border-bottom:1px dotted #ccc}.fm-2col>div{width:49%}.need-more a{color:#3b6169!important;font-weight:700;cursor:pointer}.need-more span{background:url(../images/icons.png) no-repeat 99% 46%;display:inline-block;width:24px;height:22px;vertical-align:middle}.fm_lists label{width:inherit}.addHeaderImage{background:url(../images/themes/file-uploads/1.png);width:20px;height:20px;display:inline-block;vertical-align:middle}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.form-options-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-content{position:relative;height:465px;border:1px solid #a7a7a7}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fm-sidebar{background:#fff;padding:15px}.fm-themes-tabs{background:#fff;padding:0!important}.fm-mailchimp-tabs a{text-decoration:underline!important}.skip-step{font-size:12px}.fm-themes-form>div{background:#fff}.fm-mailchimp{color:#23282d;background:0 0!important}.fm-row.fm-form-types span{display:inline-block;width:75px;height:45px;vertical-align:middle}.fm-form-types span.fm-embedded{background:url(../css/images/embedded.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-embedded.active{background:url(../css/images/embedded_active.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover{background:url(../css/images/popup.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-popover.active{background:url(../css/images/popup_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar{background:url(../css/images/topbar.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-topbar.active{background:url(../css/images/topbar_active.png) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox{background:url(../css/images/scrollbox.svg) no-repeat;background-size:100% 100%}.fm-form-types span.fm-scrollbox.active{background:url(../css/images/scrollbox_active.png) no-repeat;background-size:100% 100%}.fm-form-types label{width:initial}.fm-form-types label>input{position:absolute;right:3%;top:17px}.fm-form-types label>input+span{cursor:pointer;border:2px solid transparent}.fm-form-types label>p{padding:5px 0;text-align:center;font-size:14px;color:#32373c;margin:0}.pp_display label{margin-left:5px}.pp_live_search{height:auto!important}ul.pp_search_results{height:auto;max-height:200px;overflow:auto;background-color:#efefef!important;padding:0;color:#444}ul.pp_search_results li{cursor:pointer;padding:7px 10px;margin:0}ul.pp_search_results li:hover{background:#46acc3;color:#fff}li.pp_selected{background:#efefef;margin-bottom:0;height:auto;padding:4px}li.pp_selected>span{background:#46acc3;padding:5px 8px 7px 5px;color:#fff;margin:4px;display:inline-block;border-radius:3px}.pp_selected_remove{position:relative;margin-left:5px;cursor:pointer;font-size:18px;font-weight:700;opacity:.8;font-family:cursive}#old_theme_notice{display:inline-block}.fm-bulk-actions .button{margin:1px 0}.fm-bulk-actions .button.hide{display:none}.fm-bulk-actions span.hide-filter.hide{display:none}.fm-bulk-actions .button.active{display:inline-block}.fm-bulk-actions span.show-filter.hide{display:none}.fm-table-submissions .payment_info_fc{color:#0073aa}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{width:100%;overflow-x:scroll;overflow-y:hidden}.fm-table-submissions .table-wrapper-1.fixed{position:fixed;top:15px}.fm-table-submissions .table-scroll-1{height:20px}.fm-table-submissions .submit_content{overflow:hidden}.fm-table-submissions th.col_id a{min-width:40px}.fm-table-submissions .col-submit-date{width:150px}.table-wrapper-1.no-scroll,.table-wrapper-2.no-scroll{overflow:hidden!important}@media screen and (max-width:782px){td#submitid_fc,th#submitid_fc{display:none!important}.fm-table-submissions .table-wrapper-1,.fm-table-submissions .table-wrapper-2{overflow-x:hidden!important}}.done-cont{text-align:center;padding:20px 0}.add-col-header{font-weight:700;font-size:18px;margin:0 0 5px 0}.fm-table-submissions_edit .wd-table .type_range input{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs label{display:inline-block;width:70px}.fm-table-submissions_edit .wd-table .type_grading .grading-inputs input{display:inline-block;width:70px}.fm-table-submissions_edit .non-editable label{display:inline-block;min-width:200px}.fm-table-submissions_edit .non-editable span{display:inline-block;line-height:20px;vertical-align:top}.fm-table-submissions_edit .form-title{font-size:16px;font-weight:400;margin:0;padding:9px 0 4px;line-height:29px}.form_view_hide{display:none!important}.form_view_show{display:block}.row-actions{word-break:keep-all}.no-wrap{white-space:nowrap}.ui-tooltip{max-width:330px;position:absolute;white-space:pre-line;padding:0 10px!important;line-height:.5!important;z-index:9999}.ui-tooltip .ui-tooltip-content{font-weight:400}.tooltip-arrow:after,.ui-tooltip{background:#666}.ui-tooltip{color:#fff;border-radius:10px;font:bold 14px "Helvetica Neue",Sans-Serif;box-shadow:0 0 7px #666}.ui-tooltip p{margin:0}.tooltip-arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:50%;margin-left:-35px;bottom:-16px}.tooltip-arrow.top{top:-16px;bottom:auto}.tooltip-arrow.left{left:20%}.tooltip-arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;box-shadow:6px 5px 9px -9px #666;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-arrow.top:after{bottom:-20px;top:auto}.wd-red{color:red}.wd-yellow{color:#fccd47}.wd-grey{color:#9b9b9b}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.wd-vertical-middle{vertical-align:middle!important}.wd-text-center{text-align:center}.fm-section-header{border-bottom:1px solid #e5e5e5;color:#32373c;padding:23px 0}.fm-section-header label{font-size:20px;margin:0 50px}.fm-alert-header{text-align:center}.fm-alert-body{text-align:center;margin-top:30px}.fm-alert-header label{color:#32373c;display:block;margin:10px;font-size:15px}.fm-alert-body button.button{margin:0 5px}.fm-section{padding:10px 50px}.fm-section .fm-row label{display:block;font-size:16px;margin-bottom:10px;width:100%}.fm-section .fm-row label.fm-label-inline{display:inline}#header_hide_image{margin:auto}.fm-section .fm-row .add-button{width:100px;vertical-align:initial}#header_image_url{width:calc(100% - 110px);display:inline-block}#fm-header-content .add-button{vertical-align:baseline}.fm-section .fm-row input[type=text],.fm-section .fm-row select{width:100%;padding:5px;border:1px solid #d2cfcf;height:30px;max-width:none;line-height:30px;box-shadow:none}.fm_popup_container{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;z-index:100500}.fm_popup_container .fm-popup-overlay{position:absolute;top:0;right:0;bottom:0;left:0}.fm_popup_container .fm-popup-wrap{display:flex;flex-direction:column;justify-content:center;background:#fff;font-size:0;height:100%;width:100%;position:absolute;margin:auto;top:0;bottom:0;right:0;left:0;overflow-y:auto}#fm_popup_container .fm-popup-wrap{max-width:710px;max-height:600px}#fm_delete_page_popup_container .fm-popup-wrap,#fm_delete_row_popup_container .fm-popup-wrap{max-width:744px;max-height:200px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#fm_delete_column_popup_container .fm-popup-wrap,#fm_delete_field_popup_container .fm-popup-wrap{max-width:466px;max-height:171px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.fm-disable-scroll{overflow:hidden}.fm-align-right{text-align:right}#fm_revision_popup_container .fm-popup-wrap{max-width:550px;width:550px;max-height:515px;height:515px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;padding:5px 0}.fm_rev_index{float:left;width:25%;font-weight:500}.fm_rev_date{float:left;width:30%;min-height:20px}.fm_rev_time{float:left;width:30%;min-height:20px}.fm_rev_button{width:15%;min-height:20px;float:right;text-align:right}#fm_revision_popup_container .fm_row{padding:5px 30px;height:42px;line-height:30px;font-size:15px;font-weight:400}#fm_revision_popup_container .fm_row div{font-size:15px}#fm_revision_popup_container .fm-section{padding:0;margin-top:65px}#fm_revision_popup_container .fm-section-header label{margin:0 30px}.fm_rev_active{background-color:#ffb900}#fm_revision_popup_container .fm-section-header{position:absolute;width:inherit;background-color:#fff;height:65px;top:0}.fm_not-active{pointer-events:none;cursor:default;text-decoration:none}#fm_revision_popup_container .fm-ico-delete{font-size:13px;text-align:right;width:13px;cursor:pointer;color:#32373c;float:right;margin-right:25px}#fm_revision_popup_container .fm-section-header-title{max-width:80%;float:left}#fm_revision_popup_container .fm-section-header-title label{font-size:20px}#fm_revision_popup_container .fm-section-header{border-bottom:none}#fm_revision_popup_container .fm_row.fm_rev_header{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;font-weight:500;font-size:16px;height:50px;line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header div{line-height:40px}#fm_revision_popup_container .fm_row.fm_rev_header a{margin-top:5px}#fm_revision_popup_container .fm_row.fm_title_row{font-weight:500}.curr_rev_button{font-size:15px;font-weight:400}.fm_vr{line-height:30px;width:1px;color:#ccc;font-size:15px;margin-right:12px;margin-left:10px;border-right:2px solid #e5e5e5}.button_revisions{margin-right:10px!important}.revision_content{overflow-y:auto;height:340px}a.fm_not-active{padding:3px 15px;background-color:#e5e5e5;color:#555;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}#form_email_options_tab_content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}#fm-header-content{width:75%;max-width:800px;margin:0 auto;background-color:#fff}.display-options-container .wd-box-content{width:75%;max-width:800px;margin:auto;padding:0}.display-options-container .wd-box-section{background-color:#fff;border:none;margin:0}.display-options-container .wd-table{background-color:#fff}.wd-box-content.display-options-header{padding:20px 0}.wd-box-content.display-options-content,.wd-box-content.theme-content{padding:20px;margin-bottom:10px}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:calc(23% - 2px);text-align:center;position:relative;margin-right:2.4%}.fm-form-types label.display_option_item:last-child{margin-right:0!important}.display-options-content,.theme-content{border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.display-options-content .wd-label,.theme-content .wd-label{font-size:16px;font-weight:700}#fm-embedded-element p{font-size:14px}#fm-embedded-element input[type=text]{border-radius:0;width:70%}#themes_container{display:flex!important;height:100px;border-bottom:1px solid #e5e5e5}.themes_container_col{display:flex;flex-direction:column;justify-content:center}#themes_icon{width:10%}#themes_icon img{max-height:55px}#themes_descr{width:50%;font-size:16px}.rtl #themes_descr{margin-right:20px}#themes_descr h3{font-weight:700;padding:0;margin:0;font-size:16px}#themes_descr p{font-size:16px}#themes_select{width:40%}#themes_select_row{float:right;vertical-align:middle;margin-top:33px}.rtl #themes_select_row{float:left;margin-left:20px}#themes_select_row a{display:unset;margin-right:20px;font-size:14px;padding:5px 10px;line-height:33px}#themes_select_row #theme{width:300px;height:33px;font-size:16px}@media screen and (max-width:1300px){#fm-embedded-element input[type=text]{width:50%}#themes_select_row #theme{width:auto}}@media screen and (max-width:1100px){#themes_container{display:block!important;height:auto;padding:20px 0}#themes_select_row #theme{width:250px}#themes_select_row{float:none}#themes_select{display:inline-block;width:100%;height:auto;text-align:center;float:none}#themes_icon{width:20%;float:left}#themes_descr{width:calc(80% - 20px)}#themes_select{width:100%}}@media screen and (max-width:450px){#themes_select_row{text-align:center;float:none}#themes_select_row #theme{width:150px}}@media screen and (max-width:782px){#fm-header-content{width:100%}#fm-embedded-element input[type=text]{border-radius:0;width:30%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:48.5%;text-align:center;position:relative;margin-right:2%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}@media screen and (max-width:570px){#fm_revision_popup_container .fm-popup-wrap{width:100%;height:515px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;padding:5px 0}#fm-embedded-element input[type=text]{border-radius:0;width:50%}.fm-form-types label.display_option_item{padding:10px;border:1px solid #e5e5e5;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;width:100%;text-align:center;position:relative;margin-right:9.5%}.fm-form-types label.display_option_item:nth-child(3){margin-right:0!important}}#fm_admin_container.fm-form-container ul{list-style:disc;margin-left:2em}#fm_admin_container.fm-form-container .fm-edit-tabs{display:flex;flex-wrap:wrap;justify-content:center;border:none;border-bottom:1px solid #e5e5e5;font-size:16px;margin:0;padding:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab{cursor:initial}#fm_admin_container.fm-form-container .fm-edit-tabs>li#form_empty_tab>a{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li{background:#fff!important;border:none!important;box-shadow:none!important;cursor:pointer;margin:0}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{display:inline-block;padding:20px;box-shadow:none;color:#32373c;font-size:16px;font-weight:600}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a .tab-label{font-size:16px}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover{background:#fff!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:focus{box-shadow:none!important;outline:0!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li:hover>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active{border-bottom:2px solid #0085ba!important}#fm_admin_container.fm-form-container .fm-edit-tabs>li.ui-tabs-active>a{color:#0085ba}#fm_admin_container.fm-form-container .fm-edit-tabs #form_empty_tab{flex:1}#fm_admin_container.fm-form-container .ui-tabs-panel{background:#fff;border:none;min-height:600px}#fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{line-height:20px;font-size:15px;margin-left:5px}.rtl #fm_admin_container.fm-form-container .ui-widget-content span.dashicons-admin-generic{margin-right:5px;margin-left:unset}#fm-tabs{background:#fff}.fm-tab-loading-indicator{padding:20px;text-align:center;font-size:16px}.fm_popup_container .fm-button-delete{background-color:#ca4a1f;border-color:#ca4a1f;box-shadow:0 1px 0 #802f14;text-shadow:none}.fm_popup_container .fm-button-delete:hover{background-color:#9e3b19;border-color:#ca4a1f}.fm-form-builder .wdform_page{display:flex;flex-wrap:wrap;justify-content:flex-end;min-height:100px}.fm-form-builder .wdform_section{flex-direction:column;flex:1}.fm-form-builder .wdform_page>.highlight{flex:1;margin:10px}.fm-form-builder .wdform_row_empty{flex:0 20%}.wdform_column:not(#add_field_cont){display:flex;flex-direction:column}.fm-form-builder .wdform_column:not(#add_field_cont){flex-direction:row}.fm-form-builder .wdform_column_empty>div{flex-direction:row}.fm-form-builder .wdform_row_empty>div{flex-direction:column}.fm-form-builder .wdform_section{display:initial;flex-wrap:unset}.fm-form-builder .wdform_row_empty{margin:10px}.fm-section-overlay{background:rgba(242,242,242,.5);display:none;flex-direction:column;height:calc(100% - 30px);left:0;position:absolute;text-align:center;top:30px;vertical-align:middle;width:100%;z-index:9}.fm-hover .fm-section-overlay{display:inline-block}.fm-hover .wdform_row_handle{background:rgba(242,242,242,.5)}@media screen and (max-width:768px){.fm-form-builder .wdform_page>*{flex:0 100%}}.rtl .intl-tel-input .selected-flag{padding:0 8px 0 0}.rtl .ui-spinner input{text-align:left}.rtl div[type=type_phone_new] input[type=text]{padding-left:6px!important;padding-right:52px!important}.rtl .button-submit{margin-left:15px}.rtl .ch-rad-label{display:inline}.rtl .wd-calendar-button{margin:3px -23px 0 0}.rtl div[id$='_td_name_input_first']{text-align:left}.rtl .fm-export-tools,.rtl .fm-page-actions,.rtl div.wd-buttons{float:left}.rtl .wd-table-col-left .wd-box-section{margin-left:5px;margin-right:unset}.rtl .page-title-action{display:inline-block}.rtl .fm-edit-content #add_field_cont{left:10px;right:unset}.rtl .fm_php_function{direction:ltr;text-align:right}.fm-input-container input[type=checkbox]+label,.rtl .fm-input-container input[type=radio]+label{padding-left:10px;padding-right:unset}.rtl #edit_page_navigation{text-align:left}.rtl .fm-input-container input[type=radio],.rtl .fm-input-container label{display:inline-block}#form_email_options_tab_content .wd-table-col-50{margin:auto}#fm-edit-disable-overlay{padding:70px;z-index:10}#fm-edit-disable-overlay .fm-edit-disable-overlay-text{background-color:#ececec;border:1px solid #ddd;padding:20px}#fm-edit-disable-overlay .fm-edit-disable-overlay-text span,#fm-edit-disable-overlay .fm-edit-disable-overlay-text span *{font-size:20px;line-height:25px}#fm-edit-disable-overlay .fm-edit-disable-overlay-button{padding-top:20px}#manage_form [type=type_button],#manage_form [type=type_submit_reset]{display:flex!important;align-items:flex-end;height:100%}.fm-col-1{flex:0 1 calc(100% - 20px)!important;width:calc(100% - 20px)!important}.fm-col-2{flex:0 1 calc(50% - 20px)!important;width:calc(50% - 20px)!important}.fm-col-3{flex:0 1 calc(33.33% - 20px)!important;width:calc(33.33% - 20px)!important}.fm-col-4{flex:0 1 calc(25% - 20px)!important;width:calc(25% - 20px)!important}.form-example-preview{position:relative;top:0}#wpbody-content>div:not(.wrap),.wrap .notice:not(.wd-notice){display:none}.ei_buttons{margin-top:3px}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"]{position:relative}.wdform_field[type=type_date_new] div[id$="_element_sectionform_id_temp"] .wd-calendar-button{position:absolute;top:50%;right:5px;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);margin:0}#form_edit_tab_content .add-popup :not(.dashicons):not(.mce-ico){font-family:Segoe_UI}.wd-box-content .fm-free-option select:disabled{background:#fff none repeat scroll 0 0!important;cursor:not-allowed!important}/*!
1
+ @font-face{font-family:Segoe_UI;src:url(fonts/Segoe_UI.ttf)}#fm-form-admin .description,.fm-option-container .description{font-style:italic}.fm-remove_before:before{content:""!important}#fm_admin_container *{box-sizing:border-box}#fm_admin_container{display:inline-block;width:100%}.wd-button .field-type-button:before{float:left;font-family:Dashicons;font-size:17px;padding-left:10px;vertical-align:top;line-height:29px}.wdtext:before{content:"\f215"}.wdtextarea:before{content:"\f214"}.wdspinner:before{content:"123";font-weight:bolder;font-size:12px!important}.wddate_new:before{content:"\f508"}.wdown_select:before{content:"\f163"}.wdradio:before{content:"\f159"}.wdcheckbox:before{content:"\f147"}.wdrecaptcha:before{content:"\f160"}.wdsubmit_reset:before{content:"\f474"}.wdname:before{content:"\f110"}.wdsubmitter_mail:before{content:"\f466"}.wdphone_new:before{content:"\f525"}.wdaddress:before{content:"\f102"}.wdmark_map:before{content:"\f231"}.wdcountry:before{content:"\f319"}.wddate_fields:before{content:"\f145"}.wdeditor:before{content:"\f464"}.wdsection_break:before{content:"\f460"}.wdpage_break:before{content:"\f105"}.wdfile_upload:before{content:"\f318"}.wdmap:before{content:"\f230"}.wdtime:before{content:"\f469"}.wdsend_copy:before{content:"\f465"}.wddate_range:before{content:"\f508"}.wdstar_rating:before{content:"\f155"}.wdscale_rating:before{content:"\f204"}.wdslider:before{content:"\f108"}.wdrange:before{content:"\f229"}.wdgrading:before{content:"\f164"}.wdmatrix:before{content:"\f509"}.wdhidden:before{content:"\f530"}.wdbutton:before{content:"\f200"}.wdpassword:before{content:"\f112"}.wdphone:before{content:"\f525"}.wdcaptcha:before{content:"\f160"}.wdarithmetic_captcha:before{content:"\f160"}.wdpaypal_price_new:before{content:"$";font-weight:bolder;font-size:13px!important}.wdpaypal_select:before{content:"\f163"}.wdpaypal_radio:before{content:"\f159"}.wdpaypal_checkbox:before{content:"\f147"}.wdpaypal_shipping:before{content:"\f174"}.wdpaypal_total:before{content:"\f217"}.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}.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}.wd-label-radio{display:inline-block;max-width:450px;margin:0}.wd-table .wd-radio{display:inline-block;margin:0}.wd-group{display:block;margin:0 0 15px;max-width:100%;width:100%}.wd-group:last-child{margin-bottom:0}.wd-left{text-align:left}.wd-right{text-align:right}.wd-float-left{float:left}.wd-float-right{float:right}.wd-font-weight-normal{font-weight:400}.wd-block-content,.wd-table input[type=text],.wd-table select,.wd-table textarea{background:#fff none repeat scroll 0 0;border:1px solid #ddd;border-radius:4px;box-shadow:none;display:block;height:initial;line-height:20px;margin:0;max-width:100%;padding:5px;width:100%}.wd-table textarea{height:54px}p.description{margin-bottom:0}.no-items .colspanchange{padding:8px 10px}.wd-table .wd-table-col .initial-width{width:initial;display:inline}@media screen and (max-width:480px){.wd-table-col .wd-box-section{margin:5px 0}.wd-table-col{display:block}.wd-table-col-50{width:100%}.display-options-container .wd-table-col-70{width:100%}.display-options-container .wd-table-col-left .wd-box-section{margin:0}}.wd-block-content{background-color:#f1f1f1}.col_type{width:140px}.col_count{width:100px}@media screen and (min-width:1100px),screen and (max-width:782px){.wp-list-table .col_id{width:190px}.wp-list-table .col_function{width:340px}.fm_shortcode,.wp-list-table .fm_php_function{width:100%}}.col_id{width:130px}.col_function{width:190px}.no-items .colspanchange{padding:8px 10px}.wd-fixed-message{position:fixed;z-index:2;width:100%}.wd-fixed-conteiner{position:fixed;background:gray;width:100%;height:100%;opacity:.3;z-index:1}div.error_fm{border-left:4px solid #dd3d36}#main_div input[type=checkbox],#main_div input[type=radio]{float:right!important;margin:3px 3px 3px 4px}.wdform_column input[type=checkbox],.wdform_column input[type=radio]{float:right!important;margin:3px 3px 3px 4px}#take_temp .captcha_img,#take_temp .element_toolbar,#take_temp .page_toolbar,#take_temp .wdform_stars{display:none}.add-popup{background:#fff none repeat scroll 0 0;bottom:0;box-shadow:0 5px 15px rgba(0,0,0,.7);left:0;overflow:hidden;display:none;position:fixed;right:0;top:0;z-index:100050}.add-popup .popup-header{border-bottom:1px solid #ccc;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;height:50px;left:0;padding:10px;right:0;top:0}.add-popup .popup-title{float:left;font-size:30px;line-height:30px;vertical-align:middle}.add-popup .close-popup{cursor:pointer;float:right;height:15px;width:15px;font-size:15px;margin:8px;color:#000}.popup-body{background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;height:calc(100% - 50px);margin:0;width:100%}.popup-body-col:not(:first-child){border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04)}.popup-body-col{height:100%;width:30%;display:inline-block;vertical-align:top;background-color:#fff;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.popup-body-col.field_preview{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px}.field_options-large{width:calc(70% - 15px)}.add-button-cont{border-bottom:1px solid #ccc;text-align:right;margin-bottom:10px;padding-bottom:10px}.popup-body-col:last-child{margin-right:0}.popup-body-col:first-child{width:calc(40% - 30px)}@media screen and (max-width:360px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:100%}}@media screen and (min-width:360px) and (max-width:600px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:48%}}@media screen and (min-width:600px) and (max-width:1050px){.field_types .postbox button.wd-button,.placeholders .postbox button.wd-button{width:32%}}@media screen and (max-width:1050px){.popup-body-col{display:block;width:100%;height:initial;margin-bottom:10px}.popup-body{overflow:auto}.popup-body-col{margin-right:0}.popup-body-col:first-child{width:100%}}#field_types{border-right:4px solid #e5e5e5;background:#f2f2f2}#sbox-overlay{z-index:65555;position:fixed;top:0;left:0;visibility:visible;zoom:1;background-color:#000;opacity:.7;display:none}#ChBDiv{background-color:#fff;width:350px;max-height:350px;overflow-y:auto;padding:20px;position:fixed;top:100px;display:none;border:2px solid #aaa;z-index:65556}.fm-reports{text-align:left;display:inline-block;vertical-align:middle}.fm-tools-button{border:1px solid;border-radius:0;text-align:left;color:#0288c5;height:40px;line-height:40px;display:inline-block;padding:0 10px;background:#f1f1f1;border-color:#f1f1f1;font-size:15px}.fm-total_entries,.fm-total_rate,.fm-total_views{display:inline-block;line-height:18px;padding:5px 10px;border-radius:37px;font-size:16px;background:#fff;border:none;margin-right:6px}.fm-form-title{text-align:left;display:inline-block;height:46px;line-height:46px;font-size:28px;font-weight:700;max-width:450px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.submissions-actions{line-height:50px}.submissions-toolbar{background:#fff;height:100px;line-height:100px}.submissions-tools{padding:0 10px}.submissions-tools select{height:41px;width:280px;max-width:280px;border:1px solid #f1f1f1;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.list_blocked_link{line-height:15px;width:100%;height:20px}.list_blocked_link>a{float:right}.fm-export-tools{float:right}.fm-export-tools span{display:inline-block;font-size:15px;color:#0288c5}.fm-export-tools button{cursor:pointer}.fm-search-tools{float:left!important}.fm-search-tools button{margin-right:2px}.fm-add-remove{float:right}.fm-add-remove button{font-size:13px;background:#4ec0d9;width:154px;margin-right:15px}.fm-statistics{background:#fff;padding:10px 10px 20px 10px}.fm-statistics .fm_error_sorted_label_key{display:none;padding-left:7px;color:red;font-size:14px}.fm-statistics .stats tr{border:none!important}.fm-statistics .stats td{border:none!important;padding:5px 3px;vertical-align:middle}.fm-statistics .stats label{min-width:70px;display:block}.fm-statistics .stats select{height:30px;width:100%;max-width:288px;border:1px solid #e6e4e4;font-style:italic;border-radius:0;margin-left:7px;box-shadow:none}.fm-statistics #div_stats .field-label{font-size:16px;font-weight:700}.fm-statistics .stats input{border-radius:0;border:1px solid #e6e4e4;box-shadow:none;vertical-align:middle}.fm-statistics .stats #endstats,.fm-statistics .stats #startstats{width:92px}.fm-statistics .label0{background:#4ec0d9;border:2px solid #4ec0d9}.fm-statistics .label1{background:#ddcc7f;border:2px solid #ddcc7f}.fm-statistics .bordered{height:20px;float:left}.fm-statistics .fm-bordered-progress{height:20px;position:relative;float:left;background-color:#f2f0f1}.fm-statistics .fm-bordered-progress-percent{position:absolute;margin-left:-50px;font-size:13px}.fm-statistics .bordered0:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#5fe2ff;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .bordered1:before{content:" ";width:20px;height:20px;margin-left:-15px;background:#f9e89c;display:inline-block;-webkit-transform:scale(1) rotate(0) translateX(0) translateY(0) skewX(-25deg) skewY(0)}.fm-statistics .fm-bordered-count-arrow{float:left;width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent}.fm-statistics .fm-bordered-count{height:20px;width:16px;text-align:center;margin-left:8px;color:#fff}.fm-statistics .adminlist{border-collapse:separate;font-size:14px;width:100%}.fm-statistics .adminlist th{font-size:14px;padding:10px 0}.fm-statistics .adminlist td{border:none!important}.fm-statistics .adminlist td:first-child{color:#fff;padding:4px}.fm-form-options{background:#fff;padding:13px}.display-options-container{background:0 0}.display-options-container .wd-table{padding:0!important}.display-options-container .fm-form-types .wd-label{font-size:18px;width:170px!important;display:block}#fm-embedded-element{min-height:32px}#fm-embedded-element p{float:left;margin:0 5px 0 0!important;line-height:32px}#fm-embedded-element input{float:left;margin:0 5px 0 0!important}.wd-group-content{display:block;min-height:50px}.wd-group-content p{padding:0;margin:0;line-height:32px}.wd-group-content input,.wd-group-content p{float:left;margin-right:10px!important}.fm-options-container{display:flex;max-width:1050px;margin:0 auto}.fm-options-body{flex:.78}.submenu-box{display:flex;flex-direction:column;padding:15px 36px 0 15px;flex:.22}.fm-options-body{padding-right:10px}#submenu{border:1px solid #e5e5e5;border-radius:6px;overflow:hidden;margin:0;padding:15px 0}#fm-tabs .ui-widget-header{background-color:#fff}@media (min-width:420px) and (max-width:600px){#fm-tabs .tab-label{display:none}#fm_admin_container.fm-form-container .fm-edit-tabs>li>a{padding:20px 10px!important}}#submenu li{margin:0;padding:0}#submenu a.active,#submenu a:hover,#submenu span.nolink.active{color:#fff;background:none repeat scroll 0 0 #3a3e43}#submenu a:focus{box-shadow:none!important}#submenu li a,#submenu span.nolink{color:#555;cursor:pointer;font-size:13px;font-weight:700;padding:12px;background:#fff;text-decoration:none;display:inline-block;width:100%}fieldset.adminform{width:99%;margin:10px 0}.adminform .description{font-style:italic}fieldset.adminform legend{color:#444;font-weight:700;font-size:16px;padding:10px 3px}table.admintable td.key,table.admintable td.paramlist_key{background-color:#f6f6f6;border-bottom:1px solid #e9e9e9;border-right:1px solid #e9e9e9;color:#666;font-weight:700;text-align:right;width:200px}table.admintable{width:100%}.fm_fieldset_active{display:block}.fm_fieldset_deactive{display:none}.wrap *{font-size:13px}.add_tag_th{padding-left:21px;font-size:12px;font-family:sans-serif}.pointer{cursor:pointer}.table_small_col{text-align:center!important;width:50px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.table_medium_col{text-align:center!important;width:70px}.table_big_col{text-align:center!important;width:80px}.table_large_col{text-align:center!important;width:200px}.table_large_col input{width:180px}.table_extra_large_col{padding:4px!important;width:150px!important}.first-page,.last-page,.next-page,.prev-page,.table_big_col a,.table_extra_large_col a,.table_medium_col a,.table_small_col a{cursor:pointer}.handle{background:url(../images/draggable.png) no-repeat transparent;border:none;height:15px;margin:0 auto;vertical-align:middle;width:15px}.block_icon{background:url(../images/icons.png) no-repeat 15% 41%;border:none;display:inline-block;height:43px;width:31px;vertical-align:middle}.theme_icon{background:url(../images/icons.png) no-repeat 7% 41%;border:none;height:42px;width:44px;display:inline-block;vertical-align:middle}.uninstall_icon{background:url(../images/icons.png) no-repeat 0 41%;border:none;height:42px;width:37px;display:inline-block;vertical-align:middle}.connectedSortable{cursor:move}.fm_label{font-weight:700;width:100px}.fm_label_options{font-weight:700;vertical-align:top;width:150px}.fm_int_input{width:80px}.fm_text_input{width:190px}.theme_type{background-color:#f4f4f4;border:1px solid #8f8d8d;border-radius:8px 8px 8px 8px;cursor:pointer;display:inline-block;font-size:16px;height:24px;padding-top:5px;text-align:center;vertical-align:middle;width:123px;margin:2px 0 2px 0}.ui-slider-handle{cursor:pointer!important}.fm_search_value{height:2em;margin:0 0 4px}#form_id_tempform_view_img1 td{padding:0}.payment_info_fc{width:72px}.sub-align{vertical-align:top!important}.count_col{padding:7px 7px 8px;min-width:10px!important;max-width:30px!important;text-align:right!important}#fm-fields-filter{background-color:#fafafa}#fm-fields-filter input{font-size:12px;padding:0!important;margin:0!important;vertical-align:middle}#fm-fields-filter td,#fm-fields-filter th{font-size:12px;margin:0!important;border:none;vertical-align:middle}.submitdate_fc *{padding:0!important}.submit_content pre{font-family:sans-serif}.submit_content .table_large_col{text-align:left!important;white-space:nowrap}.submit_content table{table-layout:auto;width:auto}.submit_content tbody td{min-height:30px}.submit_content .column-autor{min-width:130px;max-width:200px}.fm-table-submissions #submitid_fc.submitid_fc{min-width:55px!important}.submit_content #submitsubmitdate_fc,.submit_content #submitteremail_fc,.submit_content #submitterusername_fc{min-width:175px}.submitid_fc{min-width:10px!important;max-width:30px!important;text-align:left!important}#fm-submission-lists .fm-hide-column{display:none}.submitid_fc a{padding-left:2px}.fm_options_label,.fm_options_value{background-color:#fff;border:1px solid #ccc!important;padding:15px}.fm_options_label{width:170px}.fm_delete_img{cursor:pointer;margin:0 0 0 2px;padding:0;vertical-align:middle}button:focus{outline:0!important}.fm-button{display:inline-block;height:40px;line-height:38px;border-radius:0;font-size:15px;font-weight:400;padding:0;cursor:pointer;text-align:center;color:#fff;border:none}.fm-button span{width:46px;height:40px;display:inline-block;background-size:contain;background:0 0;background-repeat:no-repeat;background-position:0 0;border-radius:0;float:left;margin-top:-1px;margin-left:-1px}.fm-button.small{width:108px}.fm-button.medium{width:150px}.fm-button.large{width:175px}.fm-button.add-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-button span{background:url(../images/icons.png) no-repeat 0 0}.fm-button.add-new-button{background-color:#4ec0d9;border:1px solid transparent}.fm-button.add-new-button span{background:url(../images/icons.png) no-repeat 71.5% 0}.fm-icon{width:35px;height:36px;border-radius:0;cursor:pointer;border:none;vertical-align:middle}.fm-button.search-button span,.fm-icon.search-icon{background:#ddcc7f url(../images/icons.png) no-repeat 55% 31.5%}.fm-button.reset-button span,.fm-icon.reset-icon{background:#c1c1c1 url(../images/icons.png) no-repeat 37.5% 31.5%}.fm-icon.edit-icon{background:#ddcc7f url(../images/icons.png) no-repeat 32.7% 39.5%}.fm-icon.delete-icon{background:#e5705d url(../images/icons.png) no-repeat 27.5% 39.5%}.fm-button.show-filter-button span{background:#ddcc7f url(../images/icons.png) no-repeat 60.8% 10%}.fm-icon.add-block-ip-icon{background:#4ec0d9 url(../images/icons.png) no-repeat 50% 50%}.fm-button.edit-button span{background:#ddcc7f url(../images/icons.png) no-repeat 50% 50%}.fm-button.block-button span{background:url(../images/icons.png) no-repeat 64.5% 0}.fm-button.unblock-button span{background:url(../images/icons.png) no-repeat 36% 0}.fm-button.delete-button span{background:url(../images/icons.png) no-repeat 93% 0}.fm-button.form-layout-button span{background:url(../images/icons.png) no-repeat 79% 0}.fm-button.form-options-button span{background:url(../images/icons.png) no-repeat 14.5% 0}.fm-button.display-options-button span{background:url(../images/icons.png) no-repeat 19% 54%}.fm-button.undo-button span{background:url(../images/icons.png) no-repeat 29% 0}.fm-button.redo-button span{background:url(../images/icons.png) no-repeat 57% 0}.fm-button.save-button span{background:url(../images/icons.png) no-repeat 43% 0}.fm-button.save-as-copy-button span{background:url(../images/icons.png) no-repeat 50% 0}.field-save-button span,.fm-button.apply-button span{background:url(../images/icons.png) no-repeat 86% 0}.fm-button.cancel-button span{background:url(../images/icons.png) no-repeat 100% 0}.fm-button.options-edit-button span{background:url(../images/icons.png) no-repeat 21.5% 0}.fm-button.preview-button span{background:url(../images/icons.png) no-repeat 7% 0}.fm-page-actions{float:right}.fm-button.cancel-button,.fm-button.delete-button,.fm-button.field-save-button,.fm-button.options-edit-button,.fm-button.preview-button,.fm-page-actions .fm-button{background:0 0;color:#444;border:1px solid #c5c6c7!important}.fm-page-banner{background:#fff;display:block;padding:15px 10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner{background:#fff;display:inline-block;width:100%;float:left;padding:10px;box-sizing:initial;-moz-box-sizing:initial;-webkit-box-sizing:initial}.fm-theme-banner select{height:40px;line-height:40px;border:1px solid #c5c6c7!important;box-shadow:none;width:290px}.fm-theme-banner #theme{height:30px;line-height:30px}.fm-theme-banner button{vertical-align:middle}.fm-theme-banner #edit_css{position:absolute;top:7px;left:298px}.uninstall-banner{background:#fff;display:block;padding:15px 10px;height:38px}.uninstall-banner .fm-logo-title{width:200px;vertical-align:middle}.blocked-ips-banner,.fm-page-banner,.themes-banner{line-height:80px}.fm-clear{content:'';clear:both;display:block}.fm-logo{display:inline-block;background:url(../images/form-maker-logo.png) no-repeat 49% 100%;width:100px;height:79px;vertical-align:bottom;margin-top:10px}.fm-logo-title{text-transform:uppercase;display:inline-block;font-size:16px;vertical-align:middle;width:100px;margin-left:10px;line-height:22px}.fm-title-edit-page{text-transform:uppercase;display:inline-block;font-size:15px;vertical-align:top;margin-left:0;line-height:22px}.fm-logo-edit-page{display:inline-block;background:url(../images/icons.png) no-repeat 0 54%;width:65px;height:47px}.fm-h2-message{padding:0!important;margin:0!important}.tablenav .fm-alternate{background-color:#f1f1f1}.fm-search label{font-size:14px;width:45px;display:inline-block}.fm-search input{width:251px;padding:4px;border:1px solid #919191;height:36px;background:0 0;margin:0;display:inline-block;vertical-align:middle;font-size:14px}.fm-search input:focus{outline:0}.fm-checkbox-radio-button{height:16px;border-radius:10px;cursor:pointer;text-align:center;padding:1px;font-size:12px;line-height:12px;color:#fff;width:46px;min-width:46px;position:relative}.fm-checkbox-radio-button span{width:12px;height:12px;display:inline-block;background-size:contain;background:#fff;border-radius:6px;position:absolute;top:1px}.fm-checkbox-radio-button label{font-size:11px;line-height:13px;margin-right:6px;margin-bottom:3px}.fm-checkbox-radio-button.small{width:46px}.fm-checkbox-radio-button.medium{width:60px}.fm-checkbox-radio-button.large{width:98px}.fm-yes{background:#46acc3 url(../images/icons.png);border:1px solid #46acc3;background-repeat:no-repeat;background-position:73% 55%}.fm-no{background:#a1a1a1;border:1px solid #a1a1a1;background-repeat:no-repeat;background-position:35%}.fm-text-yes span,.fm-yes span{right:0}.fm-no span,.fm-text-no.small span{right:32px}.fm-text-no.medium span{right:46px}.fm-text-no.large span{right:84px}.fm-text-yes{background:#46acc3;border:1px solid #46acc3}.fm-text-no{background:#a1a1a1;border:1px solid #a1a1a1}.fm-text-no label{margin-left:12px}.fm-block-ip input[type=text]{width:160px;padding:3px;border:1px solid #ccc;margin:0;height:28px;vertical-align:middle}.fm-submissins-edit table{background:#fff;width:100%;padding:15px}.fm-submissins-edit .fm-key{width:190px}.goodbye-text{font-size:16px;font-weight:700;background:#fff;padding:15px;line-height:22px}.goodbye-text a{font-size:15px}.form_maker_fmc_themes th.col_default,.form_maker_themes th.col_default{width:80px}.form_maker_fmc_themes td.col_default,.form_maker_themes td.col_default{padding-left:20px}#fm_ip{height:30px;padding:5px}#ip{width:100%}#fm_ip{margin-left:0!important}.loading{display:none;padding-left:5px}.loading img{vertical-align:middle}.ip_save{height:25px!important;line-height:24px!important}#blocked_ips #id{width:100%!important}@media screen and (max-width:782px){.ip_input{padding:5px!important}#fm_ip{vertical-align:top!important}.ip_save{height:28px!important;line-height:2px!important}#add_ip{height:28px;padding:0 10px 1px!important}}#fm-title-edit #title{font-size:1.5em}.fm-table{clear:both}.fm-themes-tabs ul{padding:0;margin:0;list-style-type:none}.fm-themes-tabs ul li{float:left;margin:4px 0 0 5px;background:#fff;cursor:default;box-shadow:1px 1px 1px #dedede;list-style:none}.fm-themes-tabs ul li a{display:inline-block;width:100%;padding:4px;color:#616163;border:1px solid #d0cfcf;border-radius:3px!important;text-decoration:none}.fm-themes-tabs ul li a.fm-theme-active-tab{background:#f3f1f1;color:#000}.fm-themes-tabs ul li a.fm-disabled{cursor:default;pointer-events:none}.fm-themes-tabs ul li a#buttons{padding:0 10px 1px}.fm-themes .fm-row{clear:both}.fm-themes .fm-row .fm-label-2text,.fm-themes .fm-row .fm-label-select,.fm-themes .fm-row .fm-label-text{float:left}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BHPColor,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-BPColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-CBPColor,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-GPColor,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor,.fm-themes .fm-row .fm-input-text-wrap-HDPColor,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-HTPColor,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-IPColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-MBPColor,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-NBPColor,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor,.fm-themes .fm-row .fm-input-text-wrap-OPRColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PBPColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SHPColor,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor,.fm-themes .fm-row .fm-input-text-wrap-SPColor{float:left}.fm-themes .fm-row input.color{display:block!important;float:right;width:85px!important;text-align:center}.fm-themes .fm-row .fm-input-text-wrap-AGPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-BPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-CBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-GPMLColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-HTPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-IPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-MCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-NBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPDeInputColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-OPRColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PBPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSAPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-PSDPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SCPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SEPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SHPColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBGColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPBorderColor .sp-replacer,.fm-themes .fm-row .fm-input-text-wrap-SPColor .sp-replacer .fm-themes .fm-row .fm-input-text-wrap-BPColor .sp-replacer{float:left}.fm-themes .fm-content{border:transparent}.fm-themes .sp-replacer{margin-top:1px;border-color:#d2cfcf}.fm-label-container{display:inline-block;vertical-align:top;width:30%}.fm-input-container{display:inline-block;vertical-align:top;width:70%}.fm-option-container{border-bottom:1px solid #e6e4e4;padding:6px 0}.fm-add-attribute{color:#008ec2;cursor:pointer;font-size:25px;margin:2px 10px 0 -10px}.fm-width-100{box-sizing:border-box;display:inline-block;width:100%}.fm-width-90{box-sizing:border-box;display:inline-block;width:90%}.fm-width-60{box-sizing:border-box;display:inline-block;width:60%}.fm-width-45{box-sizing:border-box;display:inline-block;width:45%}.fm-width-40{box-sizing:border-box;display:inline-block;width:40%}.fm-width-30{box-sizing:border-box;display:inline-block;width:30%}.fm-width-20{box-sizing:border-box;display:inline-block;width:20%}.fm-width-10{box-sizing:border-box;display:inline-block;width:10%}.fm-header-label{color:#000;display:inline-block;font-size:11px;font-weight:700}.fm-table-col{display:inline-block;padding:0 2px;text-align:center}.fm-remove-attribute{color:#a00;cursor:pointer;font-size:22px}.fm-input-container input[type=checkbox]+label,.fm-input-container input[type=radio]+label{padding-right:10px}.fm-input-container input[type=checkbox],.fm-input-container input[type=radio]{margin-top:0}#fm_loading{width:100%;height:100%;opacity:.6;position:fixed;background-color:#000;background-image:url(../images/spinner.gif);background-position:center;background-repeat:no-repeat;background-size:50px;z-index:100100;top:0;left:0}.fm-option-container .fm-input-container .fm-add-option{margin:0 2px}.fm-field-choice{width:100%}.fm-move-attribute{color:#008ec2;cursor:move;font-size:22px}.fm-edit-attribute{color:#008ec2;cursor:pointer;font-size:22px}.fm-remove-button{vertical-align:top;padding:7px}.fm-fields-set{border:1px solid #ccc;border-radius:3px;margin:0 0 1px 0;padding:0 0 0 6px}#buttons,#columns,#items,#rows{padding:6px 0 0 0}.fm_form_options .theme-wrap{position:relative}.theme-content{position:relative}.theme-content .theme-wrap #edit_css{cursor:pointer;position:absolute;top:56px;right:40px}.rtl .fm_form_options .theme-wrap #edit_css{left:20px;right:unset}.fm_form_options #form_javascript{min-height:400px}.fm_form_options .CodeMirror{border:1px solid #ccc;font-size:12px;margin-bottom:6px;background:#fff}.fm_form_options .fm_condition{padding:20px 0;display:table;border-bottom:1px solid #00a0d2;width:100%}.fm_form_options .fm_condition input,.fm_form_options .fm_condition select{display:inline-block;width:100%;max-width:300px;margin-bottom:5px}.fm_form_options .fm_condition .fm_condition_show_hide{width:100%;max-width:65px}.fm_form_options .fm_condition .fm_condition_all_any{max-width:55px}.fm_form_options .fm_condition .fm_condition_is_select{max-width:94px}#form_email_options_tab_content .dashicons,.fm_form_options .dashicons{vertical-align:middle;font-size:20px;cursor:pointer}.fm_form_options .dashicons-no-alt,.fm_form_options .dashicons-trash{color:#a00}.fm_form_options .dashicons-no-alt:hover,.fm_form_options .dashicons-trash:hover{color:#dc3232}.fm_form_options .dashicons-plus-alt{color:#0073aa}.fm_form_options .dashicons-plus-alt:hover{color:#00a0d2}.wd-has-placeholder{position:relative}.wd-editor-placeholder{padding-right:5px;text-align:right}.rtl .wd-editor-placeholder{padding-left:5px;padding-right:unset;text-align:left}.wd-has-placeholder input[type=text]{padding-right:35px}.wd-has-placeholder .dashicons.dashicons-list-view{top:37px;right:5px;position:absolute}.fm-input-container.wd-has-placeholder .dashicons.dashicons-list-view{top:8px}.rtl .wd-has-placeholder .dashicons.dashicons-list-view{left:5px;right:unset}.fm_form_options #emailTab_fieldset .mail_name{width:92%;display:inline-block}.fm_advanced_layout .autogen_layout_label{display:inline-block;font-weight:500;padding-top:5px}.fm_advanced_layout .fm_auto_format_button{width:100%;text-align:center}.form_maker_fmc_themes .dashicons,.form_maker_themes .dashicons{font-size:20px}.wd-calendar-button{width:20px;height:20px;position:absolute;margin:3px 0 0 -23px;font-size:20px}.wd-hidden{display:none}.wd-block{display:block}.wd-inline-block{display:inline-block}.wdform_footer{display:none;padding:0 10px 10px 10px}#take .label{line-height:16px;text-align:left;font-size:14px;color:#000}#take input,#take select,#take textarea{background:#f6f6f6;border-radius:6px 6px;border:1px solid #e5e5e5;height:36px}#take input[type=file]{padding:0}#take input[type=file]::-webkit-file-upload-button{height:32px;margin-top:1px;margin-left:1px}#take input[type=checkbox],#take input[type=radio]{height:16px}#take input[type=checkbox]{border-radius:unset}#take .button.button-large,#take .button.button-reset,#take .button.button-submit{width:110px!important;padding:0 15px;height:36px!important;line-height:20px;text-align:center;font-size:16px;text-shadow:unset!important;box-shadow:unset!important;border-radius:6px 6px;cursor:default}#take .button.button-submit{margin-right:10px;background:#0085ba!important;border-color:#0085ba!important;color:#fff!important}#take .button-large,#take .button.button-reset{background:#e2e2e2!important;border-color:#e2e2e2!important;color:#fff!important}.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=number],.form-example-preview .fm-form .wdform-field .wdform-element-section input[type=text],.form-example-preview .fm-form .wdform-field .wdform-element-section select{height:auto!important;line-height:inherit!important}.fm-form-content select.isBG{background-position-x:calc(100% - 8px)!important;background-position-y:50%!important;background-size:12px!important}.fm-description{font-size:12px;margin-left:20px}.wdform_field{width:100%;display:block!important}.wdform_field input[type=password],.wdform_field select,.wdform_field textarea,.wdform_field:not([type=type_grading]) input[type=text]{width:100%}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_label_sectionform_id_temp'][style^="display: table-cell"]{width:30%;display:inline-block!important;vertical-align:top}.wdform_field:not([type=type_submit_reset]):not([type=type_button]) div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:70%}.intl-tel-input,.wdform_field div[id$='_table_name']{width:100%}.wdform_field div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{display:inline-block!important}.wdform_field div[id$='_label_sectionform_id_temp'][style^="display: none"]+div[id$='_element_sectionform_id_temp'][style^="display: table-cell"]{width:100%}.wdform_field[type=type_date_range] input[id$="_elementform_id_temp0"],.wdform_field[type=type_date_range] input[id$="_elementform_id_temp1"]{width:48%!important}.wdform_field[type=type_name] div[id$='_td_name_input_first'] input,.wdform_field[type=type_name] div[id$='_td_name_input_last'] input{width:98%}#add_field_cont .highlight:not(.country){border-style:none!important}.fm-page-header .wp-heading-inline{display:inline-block}.ch-rad-label{width:calc(100% - 50px);word-break:break-all;display:-webkit-inline-box;min-width:100px}.fm_tooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px;max-width:250px;min-width:100px;word-break:break-all}.fm-table-submissions td,.fm-table-submissions th{max-width:200px;word-break:break-all}.placeholder-popup{width:100%;height:435px;background:0 0;box-shadow:0 5px 15px rgba(0,0,0,.7);overflow:hidden;display:none;position:relative;margin-top:10px;left:0;top:0;z-index:99998}.placeholder-body{width:100%;height:100%;background-color:#f5f5f5;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-family:Segoe UI;padding:10px;margin:0}.placeholder-body-col{height:100%;width:100%;display:inline-block;vertical-align:top;overflow:auto;margin-right:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.placeholders_cont{background-color:#fff}.placeholders_cont p.description{padding:5px 10px 0 20px}#placeholders_overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);z-index:99998}.placeholders-active #placeholders_overlay{display:block}.placeholders-active .wp-editor-wrap,.placeholders-active textarea,.placeholders-active>input,.placeholders-active>span.dashicons-list-view{position:relative;z-index:99998}#field_container{display:inline-block;width:calc(60% + 15px);height:100%}#field_container.field_container_full{width:100%}#field_container .popup-body-col{width:calc(50% - 8px)}#field_container .popup-body-col:last-child{margin-right:0}#field_container .fm-free-message{margin-bottom:7px}@media screen and (max-width:1050px){#field_container,#field_container .popup-body-col{width:100%}}.fm-opacity-40{opacity:.4}p.fm-validate-description{color:red}.fm-validate-field{border:1px solid red!important}.wdform-page-and-images{border:1px solid #e5e5e5!important;color:#000;display:block!important;margin:10px 0;font-size:14px;font-weight:400;width:100%}.form_id_tempform_view_img{background:#fbfbfb;display:flex;flex-basis:inherit;justify-content:space-between;padding:10px}.form_id_tempform_view_img:not(.form_view_hide)+.wdform_page{border-top:1px solid #e5e5e5!important}.wdform_table1{color:#000;font-size:14px;font-weight:400;width:100%}.time_box{border-width:1px;margin:0;paddi