User Registration – Custom Registration Form, Login Form And User Profile For WordPress - Version 1.8.2

Version Description

  • 18/03/2020
  • Feature - Search Field introduced in form builder.
  • Enhancement - Prevent Core Login enabled with redirect login page.
  • Enhancement - WPML on multiple choice options.
  • Refactor - Remove unnecessary CSS codes.
  • Tweak - Custom class in submit button.
  • Tweak - Password strength meter and password visibility enabled in change password.
  • Fix - User Approval status in Users Section.
  • Fix - Toggle option in field option's setting.
  • Fix - pre_get_users hook placement.
  • Fix - Password reset link validation.
  • Fix - Incompatibility with password fields of other registration plugins.
Download this release

Release Info

Developer wpeverest
Plugin Icon 128x128 User Registration – Custom Registration Form, Login Form And User Profile For WordPress
Version 1.8.2
Comparing to
See all releases

Code changes from version 1.8.1 to 1.8.2

Files changed (48) hide show
  1. assets/css/_button.scss +8 -8
  2. assets/css/_colors.scss +0 -37
  3. assets/css/_tables.scss +1 -1
  4. assets/css/_variables.scss +34 -11
  5. assets/css/activation-rtl.css +1 -1
  6. assets/css/activation.css +1 -1
  7. assets/css/admin-rtl.css +1 -1
  8. assets/css/admin.css +1 -1
  9. assets/css/admin.scss +313 -398
  10. assets/css/menu.scss +1 -2
  11. assets/css/my-account-layout-rtl.css +1 -1
  12. assets/css/my-account-layout.css +1 -1
  13. assets/css/my-account-layout.scss +52 -62
  14. assets/css/user-registration-rtl.css +1 -1
  15. assets/css/user-registration-smallscreen-rtl.css +1 -1
  16. assets/css/user-registration-smallscreen.css +1 -1
  17. assets/css/user-registration-smallscreen.scss +3 -4
  18. assets/css/user-registration.css +1 -1
  19. assets/css/user-registration.scss +14 -15
  20. assets/images/not-found.png +0 -0
  21. assets/js/admin/admin.js +40 -1
  22. assets/js/admin/admin.min.js +1 -1
  23. assets/js/admin/settings.js +21 -0
  24. assets/js/admin/settings.min.js +1 -1
  25. assets/js/frontend/password-strength-meter.js +3 -1
  26. assets/js/frontend/password-strength-meter.min.js +1 -1
  27. assets/js/frontend/user-registration.js +14 -8
  28. assets/js/frontend/user-registration.min.js +1 -1
  29. includes/abstracts/abstract-ur-form-field.php +14 -7
  30. includes/admin/class-ur-admin-menus.php +5 -0
  31. includes/admin/class-ur-admin-settings.php +18 -0
  32. includes/admin/class-ur-admin-user-list-manager.php +18 -16
  33. includes/admin/class-ur-admin-user-manager.php +34 -11
  34. includes/admin/settings/class-ur-settings-general.php +23 -11
  35. includes/admin/views/html-admin-page-addons.php +1 -1
  36. includes/admin/views/html-admin-page-forms.php +9 -0
  37. includes/class-ur-user-approval.php +37 -40
  38. includes/frontend/class-ur-frontend-form-handler.php +1 -1
  39. includes/frontend/class-ur-frontend.php +13 -2
  40. includes/functions-ur-core.php +11 -0
  41. includes/functions-ur-template.php +6 -2
  42. includes/shortcodes/class-ur-shortcode-my-account.php +44 -40
  43. languages/user-registration.pot +185 -145
  44. readme.txt +198 -185
  45. templates/form-registration.php +5 -4
  46. templates/myaccount/form-edit-password.php +24 -3
  47. templates/myaccount/form-edit-profile.php +5 -2
  48. user-registration.php +2 -2
assets/css/_button.scss CHANGED
@@ -50,7 +50,7 @@
50
  }
51
 
52
  .button-secondary {
53
- color: $color_gray_base;
54
  background: $color_gray_four;
55
  border-color: $color_gray_four;
56
  box-shadow: 0 1px 0 $color_gray_four;
@@ -58,7 +58,7 @@
58
  &:hover,
59
  &:active,
60
  &:focus {
61
- color: $color_gray_base;
62
  background: $color_gray_three;
63
  border-color: $color_gray_three;
64
  box-shadow: 0 1px 0 $color_gray_three;
@@ -67,17 +67,17 @@
67
 
68
  .button-danger {
69
  color: $white;
70
- background: $color_danger;
71
- border-color: $color_danger;
72
- box-shadow: 0 1px 0 $color_danger;
73
 
74
  &:hover,
75
  &:active,
76
  &:focus {
77
  color: $white;
78
- background: adjust-color($color_danger, $saturation: -15%, $lightness: -8% );
79
- border-color: adjust-color($color_danger, $saturation: -15%, $lightness: -8% );
80
- box-shadow: 0 1px 0 adjust-color($color_danger, $saturation: -15%, $lightness: -8% );
81
  }
82
  }
83
 
50
  }
51
 
52
  .button-secondary {
53
+ color: $gray_base;
54
  background: $color_gray_four;
55
  border-color: $color_gray_four;
56
  box-shadow: 0 1px 0 $color_gray_four;
58
  &:hover,
59
  &:active,
60
  &:focus {
61
+ color: $gray_base;
62
  background: $color_gray_three;
63
  border-color: $color_gray_three;
64
  box-shadow: 0 1px 0 $color_gray_three;
67
 
68
  .button-danger {
69
  color: $white;
70
+ background: $red;
71
+ border-color: $red;
72
+ box-shadow: 0 1px 0 $red;
73
 
74
  &:hover,
75
  &:active,
76
  &:focus {
77
  color: $white;
78
+ background: adjust-color($red, $saturation: -15%, $lightness: -8% );
79
+ border-color: adjust-color($red, $saturation: -15%, $lightness: -8% );
80
+ box-shadow: 0 1px 0 adjust-color($red, $saturation: -15%, $lightness: -8% );
81
  }
82
  }
83
 
assets/css/_colors.scss DELETED
@@ -1,37 +0,0 @@
1
- $primary_color: #475BB2;
2
- $primary_dark: darken($primary_color, 10% ); // #217dbb
3
- $primary_light: lighten($primary_color, 40%); // #e1f0fa
4
-
5
- $green: #40c057;
6
-
7
- $white: #ffffff;
8
- $color_gray_eleven: darken($white, 1% ); // #fcfcfc
9
- $color_gray_ten: darken($white, 2.5% ); // #f9f9f9
10
- $color_gray_nine: darken($white, 2.6% ); // #f8f8f8
11
- $color_gray_eight: darken($white, 5% ); //#f2f2f2
12
- $color_gray_seven: darken($white, 9% ); // #e8e8e8
13
- $color_gray_six: darken($white, 13.5% ); // #dddddd
14
-
15
- $gray_base: #2d3559;
16
- $color_gray_one: adjust-color($gray_base, $saturation: -11%, $lightness: +12%); // #4c5477
17
- $color_gray_two: adjust-color($gray_base, $saturation: -18%, $lightness: +21%); // #676d8a
18
- $color_gray_three: adjust-color($gray_base, $saturation: -13%, $lightness: +50%); // #b6bbcf
19
- $color_gray_four: adjust-color($gray_base, $saturation: -14%, $lightness: +63%); // #dee0e9
20
- $color_gray_five: adjust-color($gray_base, $saturation: -12%, $lightness: +69%); // #b1b1b1
21
- $color_sortable_background: #f7f7f7;
22
-
23
- $border_color: $color_gray_four;
24
- $color_danger: #ff4149;
25
- $label_color: #69717A;
26
- $input_background_color: #f8f9fa;
27
- $flat_background: #F6F7F9;
28
- $rounded-color: #CED4DA;
29
- $round-button: #006AFF;
30
-
31
- $color_gray_base: #1a1f33; //hsl(228, 32%, 15%)
32
- $color_gray: adjust-color($color_gray-base, $saturation: -7%, $lightness: +15% ); //#393e60
33
- $color_gray_light: adjust-color($color_gray-base, $saturation: -21%, $lightness: +25% ); //#5b5d71
34
- $color_gray_lighter: adjust-color($color_gray-base, $saturation: -23%, $lightness: +55% ); //#5b5d71
35
- $color_gray_lighten : adjust-color($color_gray-base, $saturation: -16%, $lightness: +77% ); //#e8e9ee
36
- $color_gray_light_skin : adjust-color($color_gray-base, $saturation: -10%, $lightness: +82% ); //#5b5d71
37
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/_tables.scss CHANGED
@@ -8,7 +8,7 @@ table.user-registration-table {
8
  td {
9
  padding: 1rem;
10
  text-align: left;
11
- border-bottom: 1px solid $border-color;
12
  }
13
 
14
  caption,
8
  td {
9
  padding: 1rem;
10
  text-align: left;
11
+ border-bottom: 1px solid $border_color;
12
  }
13
 
14
  caption,
assets/css/_variables.scss CHANGED
@@ -1,17 +1,40 @@
1
  /**
2
- * UserRegistration CSS Variables
3
  */
4
 
5
- $green: #7ad03a;
6
- $red: #f00;
7
- $orange: #ffba00;
8
- $blue: #2ea2cc;
 
9
 
10
- $primary: #a46497; // Primary color for buttons (alt)
11
- $primarytext: desaturate(lighten($primary, 50%), 18%); // Text on primary color bg
 
 
 
12
 
13
- $secondary: desaturate(lighten($primary, 40%), 21%); // Secondary buttons
14
- $secondarytext: desaturate(darken($secondary, 60%), 21%); // Text on secondary color bg
 
 
 
 
 
 
 
15
 
16
- $highlight: adjust-hue($primary, 150deg); // Prices, In stock labels, sales flash
17
- $highlightext: desaturate(lighten($highlight, 50%), 18%); // Text on highlight color bg
 
 
 
 
 
 
 
 
 
 
 
 
1
  /**
2
+ * Variables
3
  */
4
 
5
+ // Color System
6
+ // Primary
7
+ $primary_color: #475BB2;
8
+ $primary_dark: darken($primary_color, 10% ); // #217dbb
9
+ $primary_light: lighten($primary_color, 40%); // #e1f0fa
10
 
11
+ // Alerts
12
+ $green: #7ad03a;
13
+ $red: #ff4149;
14
+ $orange: #ffba00;
15
+ $blue: #2ea2cc;
16
 
17
+ // Gray Shades
18
+ $white: #ffffff;
19
+ $gray_base: #2d3559;
20
+ $color_gray_one: adjust-color($gray_base, $saturation: -11%, $lightness: +12%); // #4c5477
21
+ $color_gray_two: adjust-color($gray_base, $saturation: -18%, $lightness: +21%); // #676d8a
22
+ $color_gray_three: adjust-color($gray_base, $saturation: -13%, $lightness: +50%); // #b6bbcf
23
+ $color_gray_four: adjust-color($gray_base, $saturation: -14%, $lightness: +63%); // #dee0e9
24
+ $color_gray_five: adjust-color($gray_base, $saturation: -12%, $lightness: +69%); // #f0f1f5
25
+ $color_sortable_background: #f7f7f7;
26
 
27
+ // Other Color variables
28
+ $border_color: $color_gray_four;
29
+ $label_color: $color_gray_two;
30
+ $border_color_input: darken($border_color, 10%);
31
+ $input_background_color: $color_gray_five;
32
+ $flat_background: $color_gray_five;
33
+ $rounded-color: darken($border_color, 10%);
34
+
35
+ // Social login Color Variable
36
+ $color_social_default: $primary_color;
37
+ $color_facebook: #4267b2; // Facebook brand color
38
+ $color_twitter: #1da1f2; // Twitter brand color
39
+ $color_google: #4285F4; // Google brand color
40
+ $color_linkedin: #0077b5; //Linkedin brand color
assets/css/activation-rtl.css CHANGED
@@ -1 +1 @@
1
- .user-registration-message{overflow:hidden;position:relative;border-right-color:#2ea2cc!important}.user-registration-message.error{border-right-color:red!important}.user-registration-message.error p{max-width:1000px}.user-registration-message a.button-primary,.user-registration-message a.button-secondary{text-decoration:none!important}.user-registration-message a.user-registration-message-close{position:absolute;top:0;left:0;padding:10px 21px 10px 15px;font-size:13px;line-height:1.23076923;text-decoration:none}.user-registration-message a.user-registration-message-close:before{position:absolute;top:8px;right:0;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}
1
+ .user-registration-message{overflow:hidden;position:relative;border-right-color:#2ea2cc!important}.user-registration-message.error{border-right-color:#ff4149!important}.user-registration-message.error p{max-width:1000px}.user-registration-message a.button-primary,.user-registration-message a.button-secondary{text-decoration:none!important}.user-registration-message a.user-registration-message-close{position:absolute;top:0;left:0;padding:10px 21px 10px 15px;font-size:13px;line-height:1.23076923;text-decoration:none}.user-registration-message a.user-registration-message-close:before{position:absolute;top:8px;right:0;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}
assets/css/activation.css CHANGED
@@ -1 +1 @@
1
- .user-registration-message{overflow:hidden;position:relative;border-left-color:#2ea2cc!important}.user-registration-message.error{border-left-color:red!important}.user-registration-message.error p{max-width:1000px}.user-registration-message a.button-primary,.user-registration-message a.button-secondary{text-decoration:none!important}.user-registration-message a.user-registration-message-close{position:absolute;top:0;right:0;padding:10px 15px 10px 21px;font-size:13px;line-height:1.23076923;text-decoration:none}.user-registration-message a.user-registration-message-close:before{position:absolute;top:8px;left:0;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}
1
+ .user-registration-message{overflow:hidden;position:relative;border-left-color:#2ea2cc!important}.user-registration-message.error{border-left-color:#ff4149!important}.user-registration-message.error p{max-width:1000px}.user-registration-message a.button-primary,.user-registration-message a.button-secondary{text-decoration:none!important}.user-registration-message a.user-registration-message-close{position:absolute;top:0;right:0;padding:10px 15px 10px 21px;font-size:13px;line-height:1.23076923;text-decoration:none}.user-registration-message a.user-registration-message-close:before{position:absolute;top:8px;left:0;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}
assets/css/admin-rtl.css CHANGED
@@ -1,2 +1,2 @@
1
  .select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected],.select2-results__option[data-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff}.select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:0 0;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true],.select2-container--default .select2-results__option[data-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected],.select2-container--default .select2-results__option--highlighted[data-selected]{background-color:#0073aa;color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#fff),to(#eee));background-image:-webkit-linear-gradient(top,#fff 50%,#eee 100%);background-image:linear-gradient(to bottom,#fff 50%,#eee 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single:focus{border:1px solid #0073aa}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#eee),to(#ccc));background-image:-webkit-linear-gradient(top,#eee 50%,#ccc 100%);background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #0073aa}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:0 0;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-gradient(linear,left top,left bottom,from(white),color-stop(50%,#eee));background-image:-webkit-linear-gradient(top,#fff 0,#eee 50%);background-image:linear-gradient(to bottom,#fff 0,#eee 50%);background-repeat:repeat-x}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#eee),to(white));background-image:-webkit-linear-gradient(top,#eee 50%,#fff 100%);background-image:linear-gradient(to bottom,#eee 50%,#fff 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #0073aa}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #0073aa}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected],.select2-container--classic .select2-results__option--highlighted[data-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#0073aa}
2
- @charset "UTF-8";.ur-form-container .button,.ur-form-container button,.user-registration .button,.user-registration button{-webkit-transition:all .25s ease 0s;transition:all .25s ease 0s}.ur-form-container .button.button-icon,.ur-form-container button.button-icon,.user-registration .button.button-icon,.user-registration button.button-icon{width:32px;padding:0}.ur-form-container .button.button-icon .dashicons,.ur-form-container button.button-icon .dashicons,.user-registration .button.button-icon .dashicons,.user-registration button.button-icon .dashicons{line-height:1;vertical-align:middle}.ur-form-container .button.button-icon-round,.ur-form-container button.button-icon-round,.user-registration .button.button-icon-round,.user-registration button.button-icon-round{border-radius:50%}.ur-form-container .button .ur-spinner,.ur-form-container button .ur-spinner,.user-registration .button .ur-spinner,.user-registration button .ur-spinner{width:16px;height:16px;margin-right:6px;margin-bottom:2px;display:inline-block;vertical-align:middle}.ur-form-container .button-primary,.user-registration .button-primary{background:#475bb2;border-color:#475bb2;box-shadow:0 1px 0 #475bb2;text-shadow:none}.ur-form-container .button-primary:active,.ur-form-container .button-primary:focus,.ur-form-container .button-primary:hover,.user-registration .button-primary:active,.user-registration .button-primary:focus,.user-registration .button-primary:hover{background:#38488e;border-color:#38488e;box-shadow:0 1px 0 #38488e}.ur-form-container .button-primary:disabled,.user-registration .button-primary:disabled{color:#b2bae0!important;background:#697ac3!important;border-color:#697ac3!important}.ur-form-container .button-secondary,.user-registration .button-secondary{color:#1a1f33;background:#dee0e9;border-color:#dee0e9;box-shadow:0 1px 0 #dee0e9}.ur-form-container .button-secondary:active,.ur-form-container .button-secondary:focus,.ur-form-container .button-secondary:hover,.user-registration .button-secondary:active,.user-registration .button-secondary:focus,.user-registration .button-secondary:hover{color:#1a1f33;background:#b6bbcf;border-color:#b6bbcf;box-shadow:0 1px 0 #b6bbcf}.ur-form-container .button-danger,.user-registration .button-danger{color:#fff;background:#ff4149;border-color:#ff4149;box-shadow:0 1px 0 #ff4149}.ur-form-container .button-danger:active,.ur-form-container .button-danger:focus,.ur-form-container .button-danger:hover,.user-registration .button-danger:active,.user-registration .button-danger:focus,.user-registration .button-danger:hover{color:#fff;background:#ee2a32;border-color:#ee2a32;box-shadow:0 1px 0 #ee2a32}.ur-form-container .publishing-action .button,.ur-form-container .publishing-action button,.ur-form-container .publishing-action input[type=button],.ur-form-container .publishing-action input[type=submit],.user-registration .publishing-action .button,.user-registration .publishing-action button,.user-registration .publishing-action input[type=button],.user-registration .publishing-action input[type=submit]{margin-left:5px}.ur-registered-item.ui-draggable-dragging{padding:10px 10px;line-height:20px;background:#475bb2;color:#fff;text-align:center;margin-bottom:7px;word-break:break-word;white-space:normal;width:200px!important;z-index:9}.ur-registered-item.ui-draggable-dragging span{font-size:14px;line-height:20px;width:auto;height:auto;margin-left:3px}.select2-container .ur-select-all-countries-button{margin:6px 6px 4px 3px}.select2-container .ur-unselect-all-countries-button{margin:6px 3px 4px}@font-face{font-family:UserRegistration;src:url(../fonts/UserRegistration.eot?5hlcw0);src:url(../fonts/UserRegistration.eot?5hlcw0#iefix) format("embedded-opentype"),url(../fonts/UserRegistration.ttf?5hlcw0) format("truetype"),url(../fonts/UserRegistration.woff?5hlcw0) format("woff"),url(../fonts/UserRegistration.svg?5hlcw0#UserRegistration) format("svg");font-weight:400;font-style:normal;font-display:block}[class*=' ur-icon-'],[class^=ur-icon-]{font-family:UserRegistration!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}.ur-icon-input-first-name::before{content:""}.ur-icon-input-last-name::before{content:""}.ur-icon-input-field::before{content:""}.ur-icon-input-password::before{content:""}.ur-icon-input-checkbox::before{content:""}.ur-icon-radio::before{content:""}.ur-icon-number::before{content:""}.ur-icon-phone::before{content:""}.ur-icon-calendar::before{content:""}.ur-icon-drop-down::before{content:""}.ur-icon-textarea::before{content:""}.ur-icon-email::before{content:""}.ur-icon-email-secondary::before{content:""}.ur-icon-email-confirm::before{content:""}.ur-icon-invite-codes::before{content:""}.ur-icon-password::before{content:""}.ur-icon-password-confirm::before{content:""}.ur-icon-user::before{content:""}.ur-icon-user-nickname::before{content:""}.ur-icon-user-display-name::before{content:""}.ur-icon-user-bio::before{content:""}.ur-icon-website::before{content:""}.ur-icon-flag::before{content:""}.ur-icon-map-one::before{content:""}.ur-icon-map-two::before{content:""}.ur-icon-zip-code::before{content:""}.ur-icon-select2::before{content:""}.ur-icon-multi-select::before{content:""}.ur-icon-section-title::before{content:""}.ur-icon-time-picker::before{content:""}.ur-icon-state::before{content:""}.ur-icon-buildings::before{content:""}.ur-icon-text-editor::before{content:""}.ur-icon-bill::before{content:""}.ur-icon-doc::before{content:""}.ur-icon-file-upload::before{content:""}.ur-icon-file-dollar::before{content:""}.ur-icon-code::before{content:""}.ur-icon-mailchimp::before{content:""}table.user-registration-table{width:100%;background:#fff;border-collapse:collapse}table.user-registration-table caption,table.user-registration-table td,table.user-registration-table th{padding:1rem;text-align:right;border-bottom:1px solid #dee0e9}table.user-registration-table caption,table.user-registration-table th{font-size:14px;font-weight:500}table.user-registration-table thead th{background:#fafafc}table.user-registration-table input,table.user-registration-table select,table.user-registration-table textarea{width:100%;box-shadow:none;border-radius:4px}.blockUI.blockOverlay::before{width:16px;height:16px;position:absolute;display:block;content:'';-webkit-animation:spin 1s ease-in-out infinite;animation:spin 1s ease-in-out infinite;background:url(../images/icons/loader.svg) center center;background-size:cover}.ur-spinner::before{width:16px;height:16px;position:absolute;display:block;content:'';-webkit-animation:spin 1s ease-in-out infinite;animation:spin 1s ease-in-out infinite;background:url(../images/icons/loader.svg) center center;background-size:cover}@-webkit-keyframes spin{100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@keyframes spin{100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}.ur-export-users-page{margin-top:6px}.ur-export-users-page .nav-tab-content .nav-tab-inside .postbox{width:50%;-webkit-box-flex:1;-webkit-flex:1;flex:1}.ur-export-users-page .nav-tab-content .hndle,.ur-export-users-page .nav-tab-content .stuffbox .hndle{margin:10px;padding-bottom:10px}.ur_addons_wrap .products{overflow:hidden;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.ur_addons_wrap .products li{margin:0 0 1% 1%!important;padding:0;vertical-align:top;width:19.2%;float:right}.ur_addons_wrap .products li:nth-child(5n){margin:0 0 1% 0!important}.ur_addons_wrap .products li a{text-decoration:none;color:inherit;border:1px solid #ddd;display:block;min-height:220px;overflow:hidden;background:#f5f5f5;box-shadow:inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.1)}.ur_addons_wrap .products li a .product-image{display:block;background:#fff}.ur_addons_wrap .products li a .product-image img{max-width:100%;display:block;margin:0}.ur_addons_wrap .products li a img.extension-thumb+h3{display:none}.ur_addons_wrap .products li a .price{display:none}.ur_addons_wrap .products li a h2,.ur_addons_wrap .products li a h3{margin:0!important;padding:20px!important;background:#fff}.ur_addons_wrap .products li a p{padding:20px!important;margin:0!important;border-top:1px solid #f1f1f1}.ur_addons_wrap .products li a:focus,.ur_addons_wrap .products li a:hover{background-color:#fff}.clear{clear:both}.wrap.user-registration div.error,.wrap.user-registration div.updated{margin-top:10px}.user-registration_page_add-new-registration #post-body .error,.user-registration_page_add-new-registration #post-body .updated{margin:0}.user-registration_page_add-new-registration #post-body-content{position:relative;float:none}.user-registration_page_add-new-registration .howto span{float:right;margin-top:6px}.user-registration_page_add-new-registration .list-wrap{display:none;clear:both;margin-bottom:10px}.user-registration_page_add-new-registration .list li{display:none;margin:0;margin-bottom:5px}.user-registration_page_add-new-registration .list li .menu-item-title{cursor:pointer;display:block}.user-registration_page_add-new-registration .list li .menu-item-title input{margin-left:3px;margin-top:-3px}.user-registration_page_add-new-registration #wpfooter{display:none}.user-registration_page_add-new-registration .ur-form-container{margin:0}.user-registration_page_add-new-registration .ur-form-container .ur-loading-container{position:fixed;right:160px;left:0;top:0;bottom:0;background:#fff;display:-webkit-box;display:-webkit-flex;display:flex;z-index:9}.user-registration_page_add-new-registration .ur-form-container .ur-loading-container .ur-circle-loading{margin:auto;right:30px}.user-registration_page_add-new-registration .ur-form-container #menu-management{margin-top:0}.user-registration_page_add-new-registration .ur-form-container #menu-management .menu-edit{position:fixed;right:160px;left:0;border:none;box-shadow:none;margin-bottom:0}.user-registration_page_add-new-registration .ur-form-container #ur-full-screen-mode.closed .ur-fs-close-label{display:none}.user-registration_page_add-new-registration .ur-form-container #ur-full-screen-mode.opened .ur-fs-open-label{display:none}.user-registration_page_add-new-registration #menu-management-liquid{margin-top:0;margin-right:-20px;min-width:calc(100% + 20px)}.user-registration_page_add-new-registration .postbox p.submit{margin-bottom:0}.user-registration_page_add-new-registration #nav-menu-footer,.user-registration_page_add-new-registration #nav-menu-header{padding:12px}.user-registration_page_add-new-registration #nav-menu-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;position:relative;border-color:#dee0e9;background-color:#fff;z-index:9}.user-registration_page_add-new-registration #nav-menu-header .ur-brand-logo{border-left:1px solid #dee0e9}.user-registration_page_add-new-registration #nav-menu-header .ur-brand-logo img{width:32px;height:32px;padding:0 8px;margin-left:8px;display:-webkit-box;display:-webkit-flex;display:flex}.user-registration_page_add-new-registration #nav-menu-header::after,.user-registration_page_add-new-registration #nav-menu-header::before{content:'';display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;right:0;left:0;bottom:0;background:#fff}.user-registration_page_add-new-registration #nav-menu-header::before{top:0;z-index:-1}.user-registration_page_add-new-registration #nav-menu-header::after{height:10px;box-shadow:0 4px 8px rgba(45,53,89,.08);z-index:-2}.user-registration_page_add-new-registration .major-publishing-actions{clear:both;line-height:28px;margin-right:auto}.user-registration_page_add-new-registration .major-publishing-actions .publishing-action{text-align:left;float:left}.user-registration_page_add-new-registration .major-publishing-actions .publishing-action input.code{width:265px;height:33px;padding:0 6px;margin:0;border-color:#dee0e9;background-color:#f0f1f5;border-radius:0 3px 3px 0}.user-registration_page_add-new-registration .major-publishing-actions .form-invalid{padding-right:4px;margin-right:-4px}.user-registration_page_add-new-registration .major-publishing-actions .ur-form-name{width:25%;margin-left:6px}.user-registration_page_add-new-registration .major-publishing-actions #copy-shortcode{margin-right:-5px;border-radius:4px 0 0 4px}.user-registration_page_add-new-registration .major-publishing-actions #copy-shortcode svg{fill:#fff;margin-bottom:5px;vertical-align:middle}.user-registration_page_add-new-registration .blank-slate .menu-settings{display:none}.user-registration_page_add-new-registration .delete-action{float:right;line-height:28px}.ur-backbone-modal *{box-sizing:border-box}.ur-backbone-modal .ur-backbone-modal-content{position:fixed;background-color:#fff;z-index:100000;right:50%;top:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);width:500px}.ur-backbone-modal .ur-backbone-modal-content article{overflow:auto}.ur-backbone-modal.ur-backbone-modal-content{width:75%;min-width:500px}.ur-backbone-modal .select2-container{width:100%!important}.ur-backbone-modal-backdrop{position:fixed;top:0;right:0;left:0;bottom:0;min-height:360px;background-color:#2d3559;opacity:.7;z-index:99900}.ur-backbone-modal-main{padding-bottom:55px}.ur-backbone-modal-main article,.ur-backbone-modal-main header{display:block;position:relative}.ur-backbone-modal-main .ur-backbone-modal-header{height:auto;background-color:#fcfcfc;padding:1em 1.5em;border-bottom:1px solid #ddd}.ur-backbone-modal-main .ur-backbone-modal-header h1{margin:0;font-size:18px;font-weight:700;line-height:1.5em}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link{cursor:pointer;color:#777;height:54px;width:54px;padding:0;position:absolute;top:0;left:0;text-align:center;border:0;border-right:1px solid #ddd;background-color:transparent;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link::before{font:normal 22px/50px dashicons!important;color:#676d8a;display:block;content:'\f335';font-weight:300}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link:focus,.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link:hover{background-color:#ddd;border-color:#ccc;color:#2d3559}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link:focus{outline:0}.ur-backbone-modal-main article{padding:1.5em}.ur-backbone-modal-main article p{margin:1.5em 0}.ur-backbone-modal-main article p:first-child{margin-top:0}.ur-backbone-modal-main article p:last-child{margin-bottom:0}.ur-backbone-modal-main article .pagination{padding:10px 0 0;text-align:center}.ur-backbone-modal-main footer{position:absolute;right:0;left:0;bottom:0;z-index:100;padding:1em 1.5em;background-color:#fcfcfc;border-top:1px solid #dfdfdf;box-shadow:0 -4px 4px -4px rgba(0,0,0,.1)}.ur-backbone-modal-main footer .inner{float:left;line-height:23px}.ur-backbone-modal-main footer .inner .button{margin-bottom:0}.user-registration_page_add-new-registration .swal2-container .swal2-title{color:#2d3559;font-size:24px;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:24px}.user-registration_page_add-new-registration .swal2-container .dashicons{color:#ff4149;font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 20px;border:2px solid #ff4149;border-radius:50%}.user-registration_page_add-new-registration .swal2-container .ur-swal-title{-webkit-box-flex:100%;-webkit-flex:100%;flex:100%}.user-registration_page_add-new-registration .swal2-container .swal2-content,.user-registration_page_add-new-registration .swal2-container p{color:#4c5477;font-size:1em}.user-registration h2.ur-nav-tab-wrapper{margin-bottom:1em}.user-registration nav.ur-nav-tab-wrapper{margin:1.5em 0 1em;border-bottom:1px solid #ccc}.user-registration #mainform>.subsubsub{background:#e5e5e5;float:none}.user-registration #mainform>.subsubsub a{display:block;padding:7px 10px}.user-registration #mainform>.subsubsub a.current{color:#fff;background:#475bb2}.user-registration textarea[disabled=disabled]{background:#dfdfdf!important}.user-registration table.form-table{margin:0;position:relative}.user-registration table.form-table .select2-container{display:block;max-width:350px}.user-registration table.form-table .forminp-radio ul{margin:0}.user-registration table.form-table .forminp-radio ul li{line-height:1.4em}.user-registration table.form-table textarea.input-text{height:100%;min-width:150px;display:block}.user-registration table.form-table input.regular-input{width:25em}.user-registration table.form-table textarea.wide-input{width:100%}.user-registration table.form-table .user-registration-help-tip,.user-registration table.form-table img.help_tip{padding:0;margin:-4px 5px 0 0;vertical-align:middle;cursor:help;line-height:1}.user-registration table.form-table span.help_tip{cursor:help;color:#2ea2cc}.user-registration table.form-table th{position:relative;padding-left:24px}.user-registration table.form-table .select2-container{vertical-align:top;margin-bottom:3px}.user-registration table.form-table table.widefat th{padding-left:inherit}.user-registration table.form-table th .user-registration-help-tip,.user-registration table.form-table th img.help_tip{margin:0 0 0 -24px;float:left}.user-registration table.form-table .wp-list-table .user-registration-help-tip{float:none}.user-registration table.form-table fieldset{margin-top:4px}.user-registration table.form-table fieldset .user-registration-help-tip,.user-registration table.form-table fieldset img.help_tip{margin:-3px 5px 0 0}.user-registration table.form-table fieldset p.description{margin-bottom:8px}.user-registration table.form-table fieldset:first-child{margin-top:0}.user-registration table.form-table .iris-picker{z-index:100;display:none;position:absolute;border:1px solid #ccc;border-radius:3px;box-shadow:0 1px 3px rgba(0,0,0,.2)}.user-registration table.form-table .iris-picker .ui-slider{border:0!important;margin:0!important;width:auto!important;height:auto!important;background:none transparent!important}.user-registration table.form-table .iris-picker .ui-slider .ui-slider-handle{margin-bottom:0!important}.user-registration table.form-table .colorpickpreview{padding:3px;padding-right:20px;border:1px solid #ddd;border-left:0}.user-registration table.form-table .colorpick{border-right:0}.user-registration table.form-table .image_width_settings{vertical-align:middle}.user-registration table.form-table .image_width_settings label{margin-right:10px}.ur-admin-template-options{display:none}.ur-registered-from{display:-webkit-box;display:-webkit-flex;display:flex;background-color:#fff}.ur-registered-from *{box-sizing:border-box}.ur-registered-from :focus{outline:0}.ur-registered-from a{text-decoration:none}.ur-registered-from h3{color:#2d3559;font-weight:500}.ur-registered-from .ur-field{line-height:2}.ur-registered-from .ur-field label{font-weight:400}.ur-registered-from .ur-field label:last-child{margin-bottom:0}.ur-registered-from .ur-field input[type=checkbox],.ur-registered-from .ur-field input[type=radio]{opacity:1;box-shadow:none;border-color:#dee0e9}.ur-registered-from .select2.select2-container{width:100%!important}.ur-registered-from .wp-picker-container .wp-picker-input-wrap label{display:inline-block;width:auto}.ur-registered-from .wp-picker-container .wp-picker-input-wrap label input.wp-color-picker{height:auto;padding:3px 5px}.ur-registered-from .ur-registered-item{cursor:move;padding:4px;color:#676d8a;height:110px;font-size:12px;border-radius:4px;margin:0 8px 16px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;text-align:center;width:calc(33.3333% - 16px);background-color:#f0f1f5}.ur-registered-from .ur-registered-item .ur-icon{font-size:32px;margin-bottom:4px}.ur-registered-from .ur-registered-item:hover{background-color:#475bb2;color:#fff}.ur-registered-from .ur-registered-item.ui-draggable-dragging{width:110px!important;z-index:9!important}.ur-registered-from .ur-registered-inputs{width:412px;background-color:#f9f9f9}.ur-registered-from .ur-registered-inputs .ur-tabs{border:0 none;padding:0;font-size:14px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists{background-color:#f0f1f5;background-image:none;padding:0;border-radius:0;margin:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;border-bottom:none;border-top:0 none;border-left:0 none;border-right:0 none}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li{background-color:transparent;background-image:none;border-radius:0;margin:0;margin-bottom:-1px;padding:0;border:0;-webkit-box-flex:1;-webkit-flex:1;flex:1;text-align:center}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li.active{margin-bottom:0;padding-bottom:0}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li.ui-state-disabled{opacity:1}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li a{float:none;text-decoration:none;margin:0;border:none;display:block;color:#2d3559;background-color:transparent;padding:12px 15px;font-weight:500;cursor:pointer}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li a:focus{box-shadow:0 0 0 0 transparent,0 0 0 0 transparent}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li a.active{background-color:#fff;color:#475bb2;line-height:24px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-contents{height:calc(100vh - 130px);position:relative;overflow-y:auto}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content{padding:16px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content#ur-tab-field-options,.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content#ur-tab-registered-fields{background-color:#fff}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content h2{margin:16px 0;font-size:1em;font-weight:500;color:#2d3559}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content h2~hr{border-top:1px solid #dee0e9}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;width:calc(100% + 16px);margin-right:-8px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list:last-child{margin-bottom:0}.ur-registered-from .ui-widget select,.ur-registered-from input[type=date],.ur-registered-from input[type=email],.ur-registered-from input[type=file],.ur-registered-from input[type=month],.ur-registered-from input[type=number],.ur-registered-from input[type=password],.ur-registered-from input[type=phone],.ur-registered-from input[type=tel],.ur-registered-from input[type=text],.ur-registered-from input[type=time],.ur-registered-from input[type=timepicker],.ur-registered-from input[type=url],.ur-registered-from input[type=week],.ur-registered-from select,.ur-registered-from textarea{width:100%;max-width:100%;height:32px;line-height:initial;display:block;color:#4c5477;font-size:13px;padding:4px 8px;border-radius:3px;border:1px solid #dee0e9;box-shadow:0 0 0 transparent}.ur-registered-from .ui-widget select:focus,.ur-registered-from input[type=date]:focus,.ur-registered-from input[type=email]:focus,.ur-registered-from input[type=file]:focus,.ur-registered-from input[type=month]:focus,.ur-registered-from input[type=number]:focus,.ur-registered-from input[type=password]:focus,.ur-registered-from input[type=phone]:focus,.ur-registered-from input[type=tel]:focus,.ur-registered-from input[type=text]:focus,.ur-registered-from input[type=time]:focus,.ur-registered-from input[type=timepicker]:focus,.ur-registered-from input[type=url]:focus,.ur-registered-from input[type=week]:focus,.ur-registered-from select:focus,.ur-registered-from textarea:focus{border-color:#475bb2}.ur-registered-from .ui-widget select::-webkit-input-placeholder,.ur-registered-from input[type=date]::-webkit-input-placeholder,.ur-registered-from input[type=email]::-webkit-input-placeholder,.ur-registered-from input[type=file]::-webkit-input-placeholder,.ur-registered-from input[type=month]::-webkit-input-placeholder,.ur-registered-from input[type=number]::-webkit-input-placeholder,.ur-registered-from input[type=password]::-webkit-input-placeholder,.ur-registered-from input[type=phone]::-webkit-input-placeholder,.ur-registered-from input[type=tel]::-webkit-input-placeholder,.ur-registered-from input[type=text]::-webkit-input-placeholder,.ur-registered-from input[type=time]::-webkit-input-placeholder,.ur-registered-from input[type=timepicker]::-webkit-input-placeholder,.ur-registered-from input[type=url]::-webkit-input-placeholder,.ur-registered-from input[type=week]::-webkit-input-placeholder,.ur-registered-from select::-webkit-input-placeholder,.ur-registered-from textarea::-webkit-input-placeholder{color:#b6bbcf}.ur-registered-from .ui-widget select::-ms-input-placeholder,.ur-registered-from input[type=date]::-ms-input-placeholder,.ur-registered-from input[type=email]::-ms-input-placeholder,.ur-registered-from input[type=file]::-ms-input-placeholder,.ur-registered-from input[type=month]::-ms-input-placeholder,.ur-registered-from input[type=number]::-ms-input-placeholder,.ur-registered-from input[type=password]::-ms-input-placeholder,.ur-registered-from input[type=phone]::-ms-input-placeholder,.ur-registered-from input[type=tel]::-ms-input-placeholder,.ur-registered-from input[type=text]::-ms-input-placeholder,.ur-registered-from input[type=time]::-ms-input-placeholder,.ur-registered-from input[type=timepicker]::-ms-input-placeholder,.ur-registered-from input[type=url]::-ms-input-placeholder,.ur-registered-from input[type=week]::-ms-input-placeholder,.ur-registered-from select::-ms-input-placeholder,.ur-registered-from textarea::-ms-input-placeholder{color:#b6bbcf}.ur-registered-from .ui-widget select::placeholder,.ur-registered-from input[type=date]::placeholder,.ur-registered-from input[type=email]::placeholder,.ur-registered-from input[type=file]::placeholder,.ur-registered-from input[type=month]::placeholder,.ur-registered-from input[type=number]::placeholder,.ur-registered-from input[type=password]::placeholder,.ur-registered-from input[type=phone]::placeholder,.ur-registered-from input[type=tel]::placeholder,.ur-registered-from input[type=text]::placeholder,.ur-registered-from input[type=time]::placeholder,.ur-registered-from input[type=timepicker]::placeholder,.ur-registered-from input[type=url]::placeholder,.ur-registered-from input[type=week]::placeholder,.ur-registered-from select::placeholder,.ur-registered-from textarea::placeholder{color:#b6bbcf}.ur-registered-from .ui-widget select:disabled,.ur-registered-from input[type=date]:disabled,.ur-registered-from input[type=email]:disabled,.ur-registered-from input[type=file]:disabled,.ur-registered-from input[type=month]:disabled,.ur-registered-from input[type=number]:disabled,.ur-registered-from input[type=password]:disabled,.ur-registered-from input[type=phone]:disabled,.ur-registered-from input[type=tel]:disabled,.ur-registered-from input[type=text]:disabled,.ur-registered-from input[type=time]:disabled,.ur-registered-from input[type=timepicker]:disabled,.ur-registered-from input[type=url]:disabled,.ur-registered-from input[type=week]:disabled,.ur-registered-from select:disabled,.ur-registered-from textarea:disabled{color:#b6bbcf;background:#f0f1f5}.ur-registered-from select{padding-left:0}.ur-registered-from label{display:block;width:100%;margin-bottom:8px;color:#4c5477;font-size:13px;font-weight:500;line-height:1.25}.ur-registered-from textarea{padding:10px;height:100px}.ur-registered-from .ur-builder-wrapper{position:relative;-webkit-box-flex:1;-webkit-flex:1;flex:1;height:calc(100vh - 89px);background:#fafafc;border-right:1px solid #dee0e9;overflow-y:auto}.ur-registered-from .ur-builder-wrapper input[type=date]:disabled,.ur-registered-from .ur-builder-wrapper input[type=email]:disabled,.ur-registered-from .ur-builder-wrapper input[type=file]:disabled,.ur-registered-from .ur-builder-wrapper input[type=month]:disabled,.ur-registered-from .ur-builder-wrapper input[type=number]:disabled,.ur-registered-from .ur-builder-wrapper input[type=password]:disabled,.ur-registered-from .ur-builder-wrapper input[type=phone]:disabled,.ur-registered-from .ur-builder-wrapper input[type=tel]:disabled,.ur-registered-from .ur-builder-wrapper input[type=text]:disabled,.ur-registered-from .ur-builder-wrapper input[type=time]:disabled,.ur-registered-from .ur-builder-wrapper input[type=timepicker]:disabled,.ur-registered-from .ur-builder-wrapper input[type=url]:disabled,.ur-registered-from .ur-builder-wrapper input[type=week]:disabled,.ur-registered-from .ur-builder-wrapper select:disabled,.ur-registered-from .ur-builder-wrapper textarea:disabled{background:#fff}.ur-registered-from .ur-builder-wrapper .ur-builder-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse;margin:16px 0;position:relative}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper .ur-edit-form-name{width:32px;height:32px;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border-radius:3px;margin-bottom:0;color:#4c5477;background:#dee0e9;border:1px solid transparent}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper .ur-edit-form-name::after{content:'';border-radius:3px;position:absolute;right:32px;left:calc(100% - 32px);height:30px;border-radius:3px 0 0 3px;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input{color:#2d3559;background:0 0;font-size:16px;font-weight:500;width:auto;padding:4px 8px;border-color:transparent;pointer-events:none;z-index:1;border:1px solid transparent}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input.ur-editing{border-color:transparent;pointer-events:all}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input.ur-editing+.ur-edit-form-name{color:#fff;background:#475bb2;border-radius:0 3px 3px 0;border:1px solid #475bb2}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input.ur-editing+.ur-edit-form-name::after{top:0;left:0;border:1px solid #475bb2}.ur-registered-from .ur-builder-wrapper.ur-multipart .ur-button-quick-links{bottom:60px}.ur-registered-from .ur-builder-wrapper.ur-multipart .ur-builder-wrapper-footer .button.button-style-customizer{bottom:124px}.ur-registered-from .ur-selected-inputs{box-sizing:border-box;padding:0 20px}.ur-registered-from .ur-selected-inputs .ur-single-row{border-radius:3px;position:relative;border:1px solid transparent}.ur-registered-from .ur-selected-inputs .ur-single-row:last-child{margin-bottom:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids{display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;left:0;z-index:1;opacity:0;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button{display:-webkit-box;display:-webkit-flex;display:flex;border-radius:0;border:0;background-color:#676d8a;color:#fff;font-size:16px;height:auto;width:auto;cursor:pointer;padding:4px 6px;line-height:1;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button svg{width:16px;height:16px;font-size:16px;fill:#fff}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:before{font-family:dashicons}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button.ur-remove-row:hover{background:red}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:hover{background:#475bb2}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:first-child{border-radius:0 3px 3px 0;border-left:1px solid rgba(255,255,255,.2)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:nth-child(2){border-radius:3px 0 0 3px}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content{background:#fff;padding:1rem;position:absolute;top:40px;left:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;white-space:nowrap;border:1px solid #dee0e9;border-radius:4px;box-shadow:-1px 4px 14px 1px rgba(26,31,51,.1)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content small{font-size:12px;margin-bottom:.5rem;color:#676d8a}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content .ur-grid-selector{cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;margin-left:.5rem}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content .ur-grid-selector svg{width:32px;height:32px;fill:#676d8a}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content .ur-grid-selector:last-child{margin-left:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content::before{content:'';width:8px;height:8px;border:solid #dee0e9;border-width:1px;border-right:transparent;border-bottom:transparent;position:absolute;top:-5px;left:36px;background:#fff;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists{width:100%;display:-webkit-box;display:-webkit-flex;display:flex;text-align:center;box-sizing:border-box;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border:1px solid transparent;border-radius:4px;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item{display:inline-block;text-align:right;border:0 none;padding:15px;-webkit-box-flex:1;-webkit-flex:1;flex:1;border:1px solid transparent;border-radius:4px;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item{margin-bottom:5px;position:relative;padding:15px;cursor:move;border:1px solid transparent;border-radius:4px;-webkit-transition:border-color .35s;transition:border-color .35s}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .select2-container{width:100%!important}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .select2-container .select2-search--inline .select2-search__field{height:auto;min-width:10px;background:0 0;margin:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-input-type-signature canvas{background:rgba(255,255,255,.5);border:1px solid #ddd}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item:last-child{margin-bottom:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item.ur-item-active,.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item:hover{background:#fff;border:1px solid #475bb2}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item.ui-sortable-helper{box-shadow:0 0 10px 5px rgba(45,53,89,.1)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item.ui-sortable-placeholder{visibility:visible!important;border:1px dashed #b6bbcf;background-color:#f0f1f5}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons{display:none;position:absolute;left:10px;width:50px;text-align:center;padding:0;font-size:10px;top:10px;color:#b6bbcf}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons span{cursor:pointer;font-size:16px;height:auto}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons span:hover{color:#475bb2}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons:hover .ur-action-buttons{display:block}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons .ur-trash:hover{color:#ff4149}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_top_left{text-align:right}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_center{text-align:center}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_top_right{text-align:left}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_disabled{display:none}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item:hover .ur-action-buttons{display:block}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item>li.ur-item-dragged{list-style:none;width:100%;text-align:center;height:60px!important;box-sizing:border-box}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item>li.ur-item-dragged .spinner{float:none}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me{display:table;width:100%;height:100%}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me .user-registration-dragged-me-text{display:table-cell;vertical-align:middle;text-align:center}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me .user-registration-dragged-me-text p{display:inline-block;position:relative;color:#b6bbcf;padding-right:26px;padding-top:8px}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me .user-registration-dragged-me-text p::before{position:absolute;font-family:Dashicons;content:'\f545';font-size:22px;right:0;top:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me:empty{padding:15px;text-align:center;border-radius:4px;border:1px dashed #b6bbcf;background-color:#f0f1f5}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me:empty::before{content:'\f132';font-size:32px;color:#b6bbcf;width:32px;height:32px;font-family:dashicons;display:table-cell;vertical-align:middle}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item.ur-sortable-active .ur-registered-item{margin-bottom:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item.ur-sortable-active .user-registration-dragged-me{display:none}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:first-child{border-radius:0 4px 4px 0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:nth-child(2){border-radius:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:nth-child(3){border-radius:4px 0 0 4px}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grids{opacity:1}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grid-lists{background:#fff;border:1px solid #b6bbcf}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grid-lists .ur-grid-list-item{border-right:1px solid #b6bbcf}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grid-lists .ur-grid-list-item:first-child{border-color:transparent}.ur-registered-from .ur-selected-inputs .ur-add-new-row{display:block;margin:20px auto;width:auto;height:32px;text-align:center;font-family:inherit}.ur-registered-from .ur-selected-inputs .ur-add-new-row::before{width:16px;height:16px;font-size:16px;margin-left:10px;font-family:dashicons;vertical-align:middle;padding:1px 0 1px 10px;border-left:1px solid rgba(255,255,255,.3)}.ur-registered-from .ur-selected-inputs li.ur-registered-item{width:120px!important}.ur-registered-from .ur-selected-inputs li.ur-registered-item.ui-sortable-placeholder{margin-right:0;width:100%!important;visibility:visible!important;border:1px dashed #acaeba;background-color:#f0f1f5}.ur-registered-from .ur-builder-wrapper-footer .button.button-style-customizer{height:48px;width:48px;bottom:72px;box-shadow:-1px 2px 8px rgba(45,53,89,.15)}.ur-registered-from .ur-builder-wrapper-footer .button.button-style-customizer .dashicons{font-size:24px;height:24px;width:24px}.ur-registered-from .ur-builder-wrapper-footer .ur-button-quick-links{width:48px;height:48px;position:fixed;cursor:pointer;color:#4c5477;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;left:32px;bottom:16px;background:#fff;border:1px solid #dee0e9;border-radius:24px;box-shadow:0 2px 10px rgba(45,53,89,.1);z-index:1}.ur-registered-from .ur-builder-wrapper-footer .ur-button-quick-links span{font-size:20px;font-weight:600;margin:0 auto}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content{position:fixed;background:#fff;padding:12px 16px;border-radius:4px;bottom:58px;left:30px;z-index:2;width:225px;border:1px solid #dee0e9;box-shadow:-2px 4px 12px rgba(45,53,89,.1)}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content li{margin-bottom:8px}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content a{color:#4c5477}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content a:hover{color:#475bb2}.ur-registered-from .ur-advance-setting,.ur-registered-from .ur-general-setting{margin:16px 0}.ur-registered-from .ur-advance-setting-block{margin-top:25px}.ur-registered-from .form-row{margin-bottom:1em}.ur-registered-from .form-row .description{color:#676d8a;margin:4px 0;display:block}.ur-registered-from .form-row .ur-checkbox-list label,.ur-registered-from .form-row .ur-radio-list label{display:inline}.ur-registered-from .ur-registered-item.dragging{border:0;box-shadow:0 0 0 transparent;border-radius:0;padding:5px 10px;height:auto;background-color:#475bb2;color:#fff;text-align:center;width:200px}.ur-registered-from .ur-advance-setting-block,.ur-registered-from .ur-general-setting-block{display:none}.ur-registered-from .ur-advance-setting label,.ur-registered-from .ur-general-setting label{display:block}.ur-registered-from .add,.ur-registered-from .remove{background:#fff;border:1px solid #ddd;color:#676d8a;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1 0 32px;flex:1 0 32px;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:32px;max-width:32px;border-radius:4px;position:relative}.ur-registered-from .add:hover,.ur-registered-from .remove:hover{background:#475bb2;border-color:#475bb2;color:#fff}.ur-registered-from .add .dashicons,.ur-registered-from .remove .dashicons{line-height:22px}.ur-registered-from .add{margin-left:8px}.ur-registered-from .ur-options-list li{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.ur-registered-from .ur-options-list li .editor-block-mover__control-drag-handle{margin-left:8px;cursor:-webkit-grab;cursor:grab}.ur-registered-from .ur-options-list li .editor-block-mover__control-drag-handle svg{fill:#676d8a}.ur-registered-from .ur-options-list li input{margin-left:8px}.ur-registered-from .ur-options-list .ui-sortable-handle{padding:5px;border-radius:3px;border:1px solid transparent}.ur-registered-from .ur-options-list .ui-sortable-handle:active{padding:5px;background:#fff;border:1px solid #475bb2;box-shadow:0 0 20px rgba(0,0,0,.2)}.ur-registered-from .ur-options-list .ui-sortable-handle.ui-sortable-placeholder{background-color:#dee0e9;visibility:visible!important}.ur-registered-from .urcl-rules{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:8px}.ur-registered-from .urcl-rules>div{margin-left:8px}.ur-registered-from .urcl-rules .urcl-operator{width:78px}.ur-registered-from .urcl-rules .urcl-field,.ur-registered-from .urcl-rules .urcl-value{max-width:27%;-webkit-box-flex:1;-webkit-flex:1 0 27%;flex:1 0 27%}#sortable{min-height:400px}.tips{cursor:help;text-decoration:none}img.tips{padding:5px 0 0}#tiptip_holder{display:none;z-index:8675309;position:absolute;top:0;left:0}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-right:-6px;border-top-color:#dee0e9}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-right:-6px;border-bottom-color:#4c5477}#tiptip_holder.tip_right{padding-right:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-right:-5px;border-left-color:#dee0e9}#tiptip_holder.tip_left{padding-left:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-right:-7px;border-right-color:#dee0e9}#tiptip_content,.ur_error_tip{color:#fff;font-size:.9em;max-width:150px;background:#4c5477;text-align:center;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2)}#tiptip_content code,.ur_error_tip code{padding:1px;background:#888}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}#tiptip_arrow{right:50%;margin-right:-6px}.ur_error_tip{max-width:20em;line-height:1.8em;position:absolute;white-space:normal;background:#ff4149;margin:1.5em -1em 0 1px;z-index:9999999}.ur_error_tip::after{content:'';display:block;border:8px solid #ff4149;border-left-color:transparent;border-right-color:transparent;border-top-color:transparent;position:absolute;top:-3px;right:50%;margin:-1em -3px 0 0}.user-registration-help-tip{color:#676d8a;display:inline-block;font-size:16px;font-style:normal;height:16px;line-height:16px;position:relative;vertical-align:middle;width:16px}.user-registration-help-tip::after{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;right:0;width:100%;height:100%;text-align:center;content:"";cursor:help}.select2-results__option .wrap:before{content:"\2610";width:25px;height:25px;padding-left:10px}.select2-results__option[data-selected=true] .wrap:before{content:"\2714"}.select2-drop,.select2-dropdown{z-index:999999!important}.select2-results{line-height:1.5em}.select2-results .select2-results__group,.select2-results .select2-results__option{margin:0;padding:8px}.select2-dropdown{border-color:#ddd}.select2-dropdown--below{box-shadow:0 1px 1px rgba(0,0,0,.1)}.select2-dropdown--above{box-shadow:0 -1px 1px rgba(0,0,0,.1)}.select2-container .select2-selection__rendered.ui-sortable li{cursor:move}.select2-container .select2-selection{border-color:#ddd}.select2-container .select2-search__field{min-width:20px}.select2-container .select2-selection--single{height:32px}.select2-container .select2-selection--single .select2-selection__rendered{line-height:32px;padding-left:24px}.select2-container .select2-selection--single .select2-selection__arrow{left:3px;height:30px}.select2-container .select2-selection--multiple{min-height:28px;border-radius:4px;line-height:1.5;border:1px solid #ddd!important}.select2-container .select2-selection--multiple li{margin:0}.select2-container .select2-selection--multiple .select2-selection__choice{padding:2px 6px}.select2-container .select2-selection__clear{color:#999;margin-top:-1px}.select2-container .select2-search--inline .select2-search__field{font-family:inherit;font-size:inherit;font-weight:inherit;padding:3px 0;margin:0;line-height:1;min-height:26px}#ur-tab-registered-fields li.ur-registered-item.ui-draggable-disabled{color:#b6bbcf}#ur-tab-registered-fields li.ur-registered-item.ui-draggable-disabled.ur-upgradable-field{cursor:pointer!important}#ur-tab-registered-fields li.ur-registered-item.ui-draggable-disabled:hover{background:#f0f1f5;cursor:not-allowed}.ur-no-pointer{pointer-events:none}.user-registration table.form-table .dashicons{margin-bottom:2px;vertical-align:middle}#smart-tags{text-align:center}.form-settings-tab{cursor:pointer;padding:10px 15px;color:#2d3559;background:#e8e9ee;margin-bottom:10px;line-height:1.2;border-radius:4px}.form-settings-tab.active{background:#475bb2;color:#fff}#profile-page form#your-profile .flatpickr-input[readonly]{background-color:#fff}.ur-registered-inputs .ur-toggle-heading{cursor:pointer}.ur-registered-inputs .ur-toggle-heading:before{content:'\f142';cursor:pointer;display:block;font:400 20px/1 Dashicons;line-height:.5!important;padding:4px;position:relative;left:0;top:0;float:left}.ur-registered-inputs .ur-toggle-heading.closed:before{content:'\f140'}body.ur-full-screen-mode{margin-top:-32px}body.ur-full-screen-mode #wpbody-content{padding-bottom:45px}body.ur-full-screen-mode #wpwrap #wpcontent{margin-right:0;padding-right:0}body.ur-full-screen-mode #wpwrap #wpcontent #wpadminbar{display:none}body.ur-full-screen-mode #wpwrap #wpcontent #wpbody .ur-tab-content{padding:20px}body.ur-full-screen-mode #wpwrap #wpcontent #wpbody #menu-management-liquid{margin-top:0}body.ur-full-screen-mode #wpwrap #wpcontent #wpbody #menu-management-liquid .menu-edit{margin-bottom:0;box-shadow:none;right:0!important}body.ur-full-screen-mode #wpwrap #adminmenumain{display:none}body.ur-full-screen-mode .ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-contents{height:calc(100vh - 98px)}body.ur-full-screen-mode .ur-registered-from .ur-builder-wrapper{height:calc(100vh - 57px)}@-webkit-keyframes ur-circle-loading{0%,100%{-webkit-animation-timing-function:cubic-bezier(.2,0,.8,1);animation-timing-function:cubic-bezier(.2,0,.8,1)}50%{-webkit-animation-timing-function:cubic-bezier(0,.2,1,.8);animation-timing-function:cubic-bezier(0,.2,1,.8)}0%{-webkit-transform:rotate(0) translate(0,-20px) scale(0);transform:rotate(0) translate(0,-20px) scale(0)}50%{-webkit-transform:rotate(-180deg) translate(0,-20px) scale(1);transform:rotate(-180deg) translate(0,-20px) scale(1)}100%{-webkit-transform:rotate(-360deg) translate(0,-20px) scale(0);transform:rotate(-360deg) translate(0,-20px) scale(0)}}@keyframes ur-circle-loading{0%,100%{-webkit-animation-timing-function:cubic-bezier(.2,0,.8,1);animation-timing-function:cubic-bezier(.2,0,.8,1)}50%{-webkit-animation-timing-function:cubic-bezier(0,.2,1,.8);animation-timing-function:cubic-bezier(0,.2,1,.8)}0%{-webkit-transform:rotate(0) translate(0,-20px) scale(0);transform:rotate(0) translate(0,-20px) scale(0)}50%{-webkit-transform:rotate(-180deg) translate(0,-20px) scale(1);transform:rotate(-180deg) translate(0,-20px) scale(1)}100%{-webkit-transform:rotate(-360deg) translate(0,-20px) scale(0);transform:rotate(-360deg) translate(0,-20px) scale(0)}}@-webkit-keyframes ur-circle-loading-keyframe{0%,100%{-webkit-animation-timing-function:cubic-bezier(.2,0,.8,1);animation-timing-function:cubic-bezier(.2,0,.8,1)}50%{-webkit-animation-timing-function:cubic-bezier(0,.2,1,.8);animation-timing-function:cubic-bezier(0,.2,1,.8)}0%{-webkit-transform:rotate(0) translate(0,-20px) scale(0);transform:rotate(0) translate(0,-20px) scale(0)}50%{-webkit-transform:rotate(-180deg) translate(0,-20px) scale(1);transform:rotate(-180deg) translate(0,-20px) scale(1)}100%{-webkit-transform:rotate(-360deg) translate(0,-20px) scale(0);transform:rotate(-360deg) translate(0,-20px) scale(0)}}.ur-circle-loading{position:relative;width:100px!important;height:100px!important;-webkit-transform:translate(50px,-50px) scale(.5) translate(-50px,50px);-ms-transform:translate(50px,-50px) scale(.5) translate(-50px,50px);transform:translate(50px,-50px) scale(.5) translate(-50px,50px)}.ur-circle-loading::after,.ur-circle-loading::before{content:'';position:absolute;top:70px;right:70px;-webkit-animation:ur-circle-loading-keyframe 1.5s linear infinite;animation:ur-circle-loading-keyframe 1.5s linear infinite;width:60px;height:60px;border-radius:50%;background:#475bb2}.ur-circle-loading::after{-webkit-animation-delay:-.75s;animation-delay:-.75s;background:#668fe5}@media only screen and (max-width:1599px){.ur_addons_wrap .products li{width:32.66%}.ur_addons_wrap .products li:nth-child(5n){margin:0 0 1% 1%!important}.ur_addons_wrap .products li:nth-child(3n){margin:0 0 1% 0!important}}@media screen and (max-width:1400px){.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list .ur-registered-item{font-size:12px}.ur-registered-from .urcl-rules .urcl-field{max-width:61%;-webkit-box-flex:1;-webkit-flex:1 0 60%;flex:1 0 60%;margin-bottom:5px}.ur-registered-from .urcl-rules .urcl-value{-webkit-box-ordinal-group:5;-webkit-order:4;order:4;max-width:87%;-webkit-box-flex:1;-webkit-flex:1 0 86%;flex:1 0 86%}.ur-registered-from .urcl-rules .add{-webkit-box-ordinal-group:4;-webkit-order:3;order:3;margin-left:0}.ur-registered-from .urcl-rules .remove{-webkit-box-ordinal-group:6;-webkit-order:5;order:5}}@media only screen and (max-width:1120px){.ur_addons_wrap .products li{width:49%;margin:0 0 2% 2%!important}.ur_addons_wrap .products li:nth-child(3n),.ur_addons_wrap .products li:nth-child(5n){margin:0 0 2% 2%!important}.ur_addons_wrap .products li:nth-child(2n){margin:0 0 2% 0!important}}@media screen and (max-width:960px){.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list .ur-registered-item{float:none;width:100%}.ur-registered-from .ur-registered-inputs .ur-single-row .ur-grid-lists,.ur-registered-from .ur-registered-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item,.ur-registered-from .ur-registered-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item{padding:10px}}@media only screen and (max-width:900px){.ur_addons_wrap .products li{width:49%}}@media screen and (max-width:782px){body.user-registration_page_add-new-registration{min-width:0!important}.ur-registered-from{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.ur-registered-from .ur-registered-inputs{width:100%;margin-bottom:10px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list .ur-registered-item{float:right;width:48%}.ur-registered-from .ur-selected-inputs{width:100%}}@media only screen and (min-width:769px) and (max-width:1000px){.user-registration_page_add-new-registration #post-body-content{min-width:0}}@media screen and (max-width:600px){.user-registration_page_add-new-registration .major-publishing-actions{clear:both;padding:10px 0 19px;line-height:28px}.user-registration_page_add-new-registration .major-publishing-actions .ur-form-name{width:100%}.user-registration_page_add-new-registration .major-publishing-actions .publishing-action{text-align:right;float:none;margin-top:15px}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;display:block}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item{width:100%!important}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:nth-child(1n+2){border-right:0 none;border-top:2px solid #f2f2f2}}@media only screen and (max-width:480px){.ur_addons_wrap .products li,.ur_addons_wrap .products li:nth-child(2n),.ur_addons_wrap .products li:nth-child(3n),.ur_addons_wrap .products li:nth-child(5n){width:100%;margin:0 0 3% 0!important}}@-webkit-keyframes open-message{0%{opacity:0;-webkit-transform:translateY(-120%);transform:translateY(-120%)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes open-message{0%{opacity:0;-webkit-transform:translateY(-120%);transform:translateY(-120%)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes close-message{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes close-message{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}.ur-builder-message-container{position:fixed;top:32px;right:0;left:0;max-width:400px;margin:0 auto;z-index:9999}.ur-builder-message-container .ur-message{display:none;margin:0 auto;margin-top:16px;-webkit-transition:all 240ms cubic-bezier(0,0,.2,1) 0s;transition:all 240ms cubic-bezier(0,0,.2,1) 0s;z-index:99999;height:0}.ur-builder-message-container .ur-message .ur-error,.ur-builder-message-container .ur-message .ur-success{background:#fff;padding:8px 16px;border-radius:3px;border-right:3px solid;position:relative;box-shadow:0 1px 8px 2px rgba(26,31,51,.1)}.ur-builder-message-container .ur-message .ur-error p,.ur-builder-message-container .ur-message .ur-success p{margin:8px 0}.ur-builder-message-container .ur-message .ur-error p::after,.ur-builder-message-container .ur-message .ur-error p::before,.ur-builder-message-container .ur-message .ur-success p::after,.ur-builder-message-container .ur-message .ur-success p::before{font-family:dashicons;width:20px;height:20px;font-size:20px;margin-left:8px;margin-top:-4px;line-height:1;display:inline-block;vertical-align:middle}.ur-builder-message-container .ur-message .ur-success{border-color:#7ad03a}.ur-builder-message-container .ur-message .ur-success p::before{content:"\f12a";color:#7ad03a}.ur-builder-message-container .ur-message .ur-error{border-color:red}.ur-builder-message-container .ur-message .ur-error p::before{content:"\f534";color:red}.ur-builder-message-container .ur-message .dashicons{cursor:pointer;position:absolute;left:16px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);line-height:1}.ur-builder-message-container .ur-message.entered{display:block;height:50px;-webkit-animation:240ms cubic-bezier(.175,.885,.32,1.175) 0s 1 normal both open-message;animation:240ms cubic-bezier(.175,.885,.32,1.175) 0s 1 normal both open-message}.ur-builder-message-container .ur-message.exiting{display:block;-webkit-animation:120ms cubic-bezier(.4,0,1,1) 0s 1 normal both close-message;animation:120ms cubic-bezier(.4,0,1,1) 0s 1 normal both close-message}.ur-builder-message-container .ur-message:first-child{margin-top:1.5rem}
1
  .select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected],.select2-results__option[data-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff}.select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:0 0;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true],.select2-container--default .select2-results__option[data-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected],.select2-container--default .select2-results__option--highlighted[data-selected]{background-color:#0073aa;color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#fff),to(#eee));background-image:-webkit-linear-gradient(top,#fff 50%,#eee 100%);background-image:linear-gradient(to bottom,#fff 50%,#eee 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single:focus{border:1px solid #0073aa}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#eee),to(#ccc));background-image:-webkit-linear-gradient(top,#eee 50%,#ccc 100%);background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #0073aa}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:0 0;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-gradient(linear,left top,left bottom,from(white),color-stop(50%,#eee));background-image:-webkit-linear-gradient(top,#fff 0,#eee 50%);background-image:linear-gradient(to bottom,#fff 0,#eee 50%);background-repeat:repeat-x}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#eee),to(white));background-image:-webkit-linear-gradient(top,#eee 50%,#fff 100%);background-image:linear-gradient(to bottom,#eee 50%,#fff 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #0073aa}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #0073aa}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected],.select2-container--classic .select2-results__option--highlighted[data-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#0073aa}
2
+ @charset "UTF-8";@font-face{font-family:UserRegistration;src:url(../fonts/UserRegistration.eot?5hlcw0);src:url(../fonts/UserRegistration.eot?5hlcw0#iefix) format("embedded-opentype"),url(../fonts/UserRegistration.ttf?5hlcw0) format("truetype"),url(../fonts/UserRegistration.woff?5hlcw0) format("woff"),url(../fonts/UserRegistration.svg?5hlcw0#UserRegistration) format("svg");font-weight:400;font-style:normal;font-display:block}[class*=' ur-icon-'],[class^=ur-icon-]{font-family:UserRegistration!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}.ur-icon-input-first-name::before{content:""}.ur-icon-input-last-name::before{content:""}.ur-icon-input-field::before{content:""}.ur-icon-input-password::before{content:""}.ur-icon-input-checkbox::before{content:""}.ur-icon-radio::before{content:""}.ur-icon-number::before{content:""}.ur-icon-phone::before{content:""}.ur-icon-calendar::before{content:""}.ur-icon-drop-down::before{content:""}.ur-icon-textarea::before{content:""}.ur-icon-email::before{content:""}.ur-icon-email-secondary::before{content:""}.ur-icon-email-confirm::before{content:""}.ur-icon-invite-codes::before{content:""}.ur-icon-password::before{content:""}.ur-icon-password-confirm::before{content:""}.ur-icon-user::before{content:""}.ur-icon-user-nickname::before{content:""}.ur-icon-user-display-name::before{content:""}.ur-icon-user-bio::before{content:""}.ur-icon-website::before{content:""}.ur-icon-flag::before{content:""}.ur-icon-map-one::before{content:""}.ur-icon-map-two::before{content:""}.ur-icon-zip-code::before{content:""}.ur-icon-select2::before{content:""}.ur-icon-multi-select::before{content:""}.ur-icon-section-title::before{content:""}.ur-icon-time-picker::before{content:""}.ur-icon-state::before{content:""}.ur-icon-buildings::before{content:""}.ur-icon-text-editor::before{content:""}.ur-icon-bill::before{content:""}.ur-icon-doc::before{content:""}.ur-icon-file-upload::before{content:""}.ur-icon-file-dollar::before{content:""}.ur-icon-code::before{content:""}.ur-icon-mailchimp::before{content:""}.ur-form-container .button,.ur-form-container button,.user-registration .button,.user-registration button{-webkit-transition:all .25s ease 0s;transition:all .25s ease 0s}.ur-form-container .button.button-icon,.ur-form-container button.button-icon,.user-registration .button.button-icon,.user-registration button.button-icon{width:32px;padding:0}.ur-form-container .button.button-icon .dashicons,.ur-form-container button.button-icon .dashicons,.user-registration .button.button-icon .dashicons,.user-registration button.button-icon .dashicons{line-height:1;vertical-align:middle}.ur-form-container .button.button-icon-round,.ur-form-container button.button-icon-round,.user-registration .button.button-icon-round,.user-registration button.button-icon-round{border-radius:50%}.ur-form-container .button .ur-spinner,.ur-form-container button .ur-spinner,.user-registration .button .ur-spinner,.user-registration button .ur-spinner{width:16px;height:16px;margin-right:6px;margin-bottom:2px;display:inline-block;vertical-align:middle}.ur-form-container .button-primary,.user-registration .button-primary{background:#475bb2;border-color:#475bb2;box-shadow:0 1px 0 #475bb2;text-shadow:none}.ur-form-container .button-primary:active,.ur-form-container .button-primary:focus,.ur-form-container .button-primary:hover,.user-registration .button-primary:active,.user-registration .button-primary:focus,.user-registration .button-primary:hover{background:#38488e;border-color:#38488e;box-shadow:0 1px 0 #38488e}.ur-form-container .button-primary:disabled,.user-registration .button-primary:disabled{color:#b2bae0!important;background:#697ac3!important;border-color:#697ac3!important}.ur-form-container .button-secondary,.user-registration .button-secondary{color:#2d3559;background:#dee0e9;border-color:#dee0e9;box-shadow:0 1px 0 #dee0e9}.ur-form-container .button-secondary:active,.ur-form-container .button-secondary:focus,.ur-form-container .button-secondary:hover,.user-registration .button-secondary:active,.user-registration .button-secondary:focus,.user-registration .button-secondary:hover{color:#2d3559;background:#b6bbcf;border-color:#b6bbcf;box-shadow:0 1px 0 #b6bbcf}.ur-form-container .button-danger,.user-registration .button-danger{color:#fff;background:#ff4149;border-color:#ff4149;box-shadow:0 1px 0 #ff4149}.ur-form-container .button-danger:active,.ur-form-container .button-danger:focus,.ur-form-container .button-danger:hover,.user-registration .button-danger:active,.user-registration .button-danger:focus,.user-registration .button-danger:hover{color:#fff;background:#ee2a32;border-color:#ee2a32;box-shadow:0 1px 0 #ee2a32}.ur-form-container .publishing-action .button,.ur-form-container .publishing-action button,.ur-form-container .publishing-action input[type=button],.ur-form-container .publishing-action input[type=submit],.user-registration .publishing-action .button,.user-registration .publishing-action button,.user-registration .publishing-action input[type=button],.user-registration .publishing-action input[type=submit]{margin-left:5px}.ur-registered-item.ui-draggable-dragging{padding:10px 10px;line-height:20px;background:#475bb2;color:#fff;text-align:center;margin-bottom:7px;word-break:break-word;white-space:normal;width:200px!important;z-index:9}.ur-registered-item.ui-draggable-dragging span{font-size:14px;line-height:20px;width:auto;height:auto;margin-left:3px}.select2-container .ur-select-all-countries-button{margin:6px 6px 4px 3px}.select2-container .ur-unselect-all-countries-button{margin:6px 3px 4px}table.user-registration-table{width:100%;background:#fff;border-collapse:collapse}table.user-registration-table caption,table.user-registration-table td,table.user-registration-table th{padding:1rem;text-align:right;border-bottom:1px solid #dee0e9}table.user-registration-table caption,table.user-registration-table th{font-size:14px;font-weight:500}table.user-registration-table thead th{background:#fafafc}table.user-registration-table input,table.user-registration-table select,table.user-registration-table textarea{width:100%;box-shadow:none;border-radius:4px}.blockUI.blockOverlay::before{width:16px;height:16px;position:absolute;display:block;content:'';-webkit-animation:spin 1s ease-in-out infinite;animation:spin 1s ease-in-out infinite;background:url(../images/icons/loader.svg) center center;background-size:cover}.ur-spinner::before{width:16px;height:16px;position:absolute;display:block;content:'';-webkit-animation:spin 1s ease-in-out infinite;animation:spin 1s ease-in-out infinite;background:url(../images/icons/loader.svg) center center;background-size:cover}@-webkit-keyframes spin{100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@keyframes spin{100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}.ur-export-users-page{margin-top:6px}.ur-export-users-page .nav-tab-content .nav-tab-inside .postbox{width:50%;-webkit-box-flex:1;-webkit-flex:1;flex:1}.ur-export-users-page .nav-tab-content .hndle,.ur-export-users-page .nav-tab-content .stuffbox .hndle{margin:10px;padding-bottom:10px}.ur_addons_wrap .products{overflow:hidden;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.ur_addons_wrap .products li{margin:0 0 1% 1%!important;padding:0;vertical-align:top;width:19.2%;float:right}.ur_addons_wrap .products li:nth-child(5n){margin:0 0 1% 0!important}.ur_addons_wrap .products li a{text-decoration:none;color:inherit;border:1px solid #ddd;display:block;min-height:220px;overflow:hidden;background:#f5f5f5;box-shadow:inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.1)}.ur_addons_wrap .products li a .product-image{display:block;background:#fff}.ur_addons_wrap .products li a .product-image img{max-width:100%;display:block;margin:0}.ur_addons_wrap .products li a img.extension-thumb+h3{display:none}.ur_addons_wrap .products li a .price{display:none}.ur_addons_wrap .products li a h2,.ur_addons_wrap .products li a h3{margin:0!important;padding:20px!important;background:#fff}.ur_addons_wrap .products li a p{padding:20px!important;margin:0!important;border-top:1px solid #f1f1f1}.ur_addons_wrap .products li a:focus,.ur_addons_wrap .products li a:hover{background-color:#fff}.clear{clear:both}.wrap.user-registration div.error,.wrap.user-registration div.updated{margin-top:10px}.user-registration_page_add-new-registration #wpfooter{display:none}.user-registration_page_add-new-registration .ur-form-container{margin:0}.user-registration_page_add-new-registration .ur-form-container .ur-loading-container{position:fixed;right:160px;left:0;top:0;bottom:0;background:#fff;display:-webkit-box;display:-webkit-flex;display:flex;z-index:9}.user-registration_page_add-new-registration .ur-form-container .ur-loading-container .ur-circle-loading{margin:auto;right:30px}.user-registration_page_add-new-registration .ur-form-container #menu-management{margin-top:0}.user-registration_page_add-new-registration .ur-form-container #menu-management .menu-edit{position:fixed;right:160px;left:0;border:none;box-shadow:none;margin-bottom:0}.user-registration_page_add-new-registration .ur-form-container #ur-full-screen-mode.closed .ur-fs-close-label{display:none}.user-registration_page_add-new-registration .ur-form-container #ur-full-screen-mode.opened .ur-fs-open-label{display:none}.user-registration_page_add-new-registration #menu-management-liquid{margin-top:0;margin-right:-20px;min-width:calc(100% + 20px)}.user-registration_page_add-new-registration #nav-menu-header{padding:12px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;position:relative;border-color:#dee0e9;background-color:#fff;z-index:9}.user-registration_page_add-new-registration #nav-menu-header .ur-brand-logo{border-left:1px solid #dee0e9}.user-registration_page_add-new-registration #nav-menu-header .ur-brand-logo img{width:32px;height:32px;padding:0 8px;margin-left:8px;display:-webkit-box;display:-webkit-flex;display:flex}.user-registration_page_add-new-registration #nav-menu-header::after,.user-registration_page_add-new-registration #nav-menu-header::before{content:'';display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;right:0;left:0;bottom:0;background:#fff}.user-registration_page_add-new-registration #nav-menu-header::before{top:0;z-index:-1}.user-registration_page_add-new-registration #nav-menu-header::after{height:10px;box-shadow:0 4px 8px rgba(45,53,89,.08);z-index:-2}.user-registration_page_add-new-registration .major-publishing-actions{clear:both;line-height:28px;margin-right:auto}.user-registration_page_add-new-registration .major-publishing-actions .publishing-action{text-align:left;float:left}.user-registration_page_add-new-registration .major-publishing-actions .publishing-action input.code{width:265px;height:33px;padding:0 6px;margin:0;border-color:#dee0e9;background-color:#f0f1f5;border-radius:0 3px 3px 0}.user-registration_page_add-new-registration .major-publishing-actions #copy-shortcode{margin-right:-5px;border-radius:4px 0 0 4px}.user-registration_page_add-new-registration .major-publishing-actions #copy-shortcode svg{fill:#fff;margin-bottom:5px;vertical-align:middle}.ur-backbone-modal *{box-sizing:border-box}.ur-backbone-modal .ur-backbone-modal-content{position:fixed;background-color:#fff;z-index:100000;right:50%;top:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);width:500px}.ur-backbone-modal .ur-backbone-modal-content article{overflow:auto}.ur-backbone-modal.ur-backbone-modal-content{width:75%;min-width:500px}.ur-backbone-modal .select2-container{width:100%!important}.ur-backbone-modal-backdrop{position:fixed;top:0;right:0;left:0;bottom:0;min-height:360px;background-color:#2d3559;opacity:.7;z-index:99900}.ur-backbone-modal-main{padding-bottom:55px}.ur-backbone-modal-main article,.ur-backbone-modal-main header{display:block;position:relative}.ur-backbone-modal-main .ur-backbone-modal-header{height:auto;background-color:#f0f1f5;padding:1em 1.5em;border-bottom:1px solid #dee0e9}.ur-backbone-modal-main .ur-backbone-modal-header h1{margin:0;font-size:18px;font-weight:700;line-height:1.5em}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link{cursor:pointer;color:#777;height:54px;width:54px;padding:0;position:absolute;top:0;left:0;text-align:center;border:0;border-right:1px solid #dee0e9;background-color:transparent;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link::before{font:normal 22px/50px dashicons!important;color:#676d8a;display:block;content:'\f335';font-weight:300}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link:focus,.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link:hover{background-color:#dee0e9;border-color:#ccc;color:#2d3559}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link:focus{outline:0}.ur-backbone-modal-main article{padding:1.5em}.ur-backbone-modal-main article p{margin:1.5em 0}.ur-backbone-modal-main article p:first-child{margin-top:0}.ur-backbone-modal-main article p:last-child{margin-bottom:0}.ur-backbone-modal-main article .pagination{padding:10px 0 0;text-align:center}.ur-backbone-modal-main footer{position:absolute;right:0;left:0;bottom:0;z-index:100;padding:1em 1.5em;background-color:#f0f1f5;border-top:1px solid #dfdfdf;box-shadow:0 -4px 4px -4px rgba(0,0,0,.1)}.ur-backbone-modal-main footer .inner{float:left;line-height:23px}.ur-backbone-modal-main footer .inner .button{margin-bottom:0}.user-registration_page_add-new-registration .swal2-container .swal2-title{color:#2d3559;font-size:24px;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:24px}.user-registration_page_add-new-registration .swal2-container .dashicons{color:#ff4149;font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 20px;border:2px solid #ff4149;border-radius:50%}.user-registration_page_add-new-registration .swal2-container .ur-swal-title{-webkit-box-flex:100%;-webkit-flex:100%;flex:100%}.user-registration_page_add-new-registration .swal2-container .swal2-content,.user-registration_page_add-new-registration .swal2-container p{color:#4c5477;font-size:1em}.user-registration nav.ur-nav-tab-wrapper{margin:1.5em 0 1em}.user-registration #mainform>.subsubsub{background:#e5e5e5;float:none}.user-registration #mainform>.subsubsub a{display:block;padding:7px 10px}.user-registration #mainform>.subsubsub a.current{color:#fff;background:#475bb2}.user-registration textarea[disabled=disabled]{background:#dfdfdf!important}.user-registration table.form-table{margin:0;position:relative}.user-registration table.form-table fieldset{margin-top:4px}.user-registration table.form-table fieldset .user-registration-help-tip,.user-registration table.form-table fieldset img.help_tip{margin:-3px 5px 0 0}.user-registration table.form-table fieldset p.description{margin-bottom:8px}.user-registration table.form-table fieldset:first-child{margin-top:0}.user-registration table.form-table th{position:relative;padding-left:24px}.user-registration table.form-table th .user-registration-help-tip,.user-registration table.form-table th img.help_tip{margin:0 0 0 -24px;float:left}.user-registration table.form-table .select2-container{display:block;max-width:350px;margin-bottom:3px}.user-registration table.form-table .forminp-radio ul{margin:0}.user-registration table.form-table .forminp-radio ul li{line-height:1.4em}.user-registration table.form-table textarea.input-text{height:100%;min-width:150px;display:block}.user-registration table.form-table input.regular-input{width:25em}.user-registration table.form-table textarea.wide-input{width:100%}.user-registration table.form-table .help_tip,.user-registration table.form-table .user-registration-help-tip{padding:0;margin:-4px 5px 0 0;vertical-align:middle;cursor:help;line-height:1}.user-registration table.form-table .wp-list-table .user-registration-help-tip{float:none}.user-registration table.form-table .iris-picker{z-index:100;display:none;position:absolute;border:1px solid #ccc;border-radius:3px;box-shadow:0 1px 3px rgba(0,0,0,.2)}.user-registration table.form-table .iris-picker .ui-slider{border:0!important;margin:0!important;width:auto!important;height:auto!important;background:none transparent!important}.user-registration table.form-table .iris-picker .ui-slider .ui-slider-handle{margin-bottom:0!important}.user-registration table.form-table .colorpickpreview{padding:3px;padding-right:20px;border:1px solid #dee0e9;border-left:0}.user-registration table.form-table .colorpick{border-right:0}.user-registration table.form-table .image_width_settings{vertical-align:middle}.user-registration table.form-table .image_width_settings label{margin-right:10px}.user-registration table.form-table .dashicons{margin-bottom:2px;vertical-align:middle}.ur-registered-from{display:-webkit-box;display:-webkit-flex;display:flex;background-color:#fff}.ur-registered-from *{box-sizing:border-box}.ur-registered-from :focus{outline:0}.ur-registered-from a{text-decoration:none}.ur-registered-from h3{color:#2d3559;font-weight:500}.ur-registered-from .ur-field label{font-weight:400}.ur-registered-from .ur-field label:last-child{margin-bottom:0}.ur-registered-from .ur-field input[type=checkbox],.ur-registered-from .ur-field input[type=radio]{opacity:1;box-shadow:none;border-color:#dee0e9}.ur-registered-from .select2.select2-container{width:100%!important}.ur-registered-from .wp-picker-container .wp-picker-input-wrap label{display:inline-block;width:auto}.ur-registered-from .wp-picker-container .wp-picker-input-wrap label input.wp-color-picker{height:auto;padding:3px 5px}.ur-registered-from .ur-no-pointer{pointer-events:none}.ur-registered-from .ur-registered-item{cursor:move;padding:4px;color:#676d8a;height:110px;font-size:12px;border-radius:4px;margin:0 8px 16px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;text-align:center;width:calc(33.3333% - 16px);background-color:#f0f1f5}.ur-registered-from .ur-registered-item .ur-icon{font-size:32px;margin-bottom:4px}.ur-registered-from .ur-registered-item:hover{background-color:#475bb2;color:#fff}.ur-registered-from .ur-registered-item.ui-draggable-dragging{width:110px!important;z-index:9!important}.ur-registered-from .ur-registered-item.ui-draggable-disabled{color:#b6bbcf}.ur-registered-from .ur-registered-item.ui-draggable-disabled.ur-upgradable-field{cursor:pointer!important}.ur-registered-from .ur-registered-item.ui-draggable-disabled:hover{background:#f0f1f5;cursor:not-allowed}.ur-registered-from .ur-registered-inputs{width:412px}.ur-registered-from .ur-registered-inputs .ur-tabs{border:0 none;padding:0;font-size:14px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists{background-color:#f0f1f5;background-image:none;padding:0;border-radius:0;margin:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;border-bottom:none;border-top:0 none;border-left:0 none;border-right:0 none}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li{background-color:transparent;background-image:none;border-radius:0;margin:0;margin-bottom:-1px;padding:0;border:0;-webkit-box-flex:1;-webkit-flex:1;flex:1;text-align:center}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li.active{margin-bottom:0;padding-bottom:0}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li.ui-state-disabled{opacity:1}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li a{float:none;text-decoration:none;margin:0;border:none;display:block;color:#2d3559;background-color:transparent;padding:12px 15px;font-weight:500;cursor:pointer}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li a:focus{box-shadow:0 0 0 0 transparent,0 0 0 0 transparent}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li a.active{background-color:#fff;color:#475bb2;line-height:24px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-contents{height:calc(100vh - 130px);position:relative;overflow-y:auto}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content{padding:16px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-search-fields{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;position:relative}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-search-fields input.ur-type-text{height:40px;padding:8px 12px;font-size:14px;background:#f0f1f5;border-color:#f0f1f5;border-radius:4px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-search-fields input.ur-type-text::-webkit-input-placeholder{color:#b6bbcf}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-search-fields input.ur-type-text::-ms-input-placeholder{color:#b6bbcf}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-search-fields input.ur-type-text::placeholder{color:#b6bbcf}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-search-fields svg{position:absolute;left:12px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-fields-not-found{text-align:center;margin-top:2.85em}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-fields-not-found .ur-fields-not-found-title{font-size:1.7em}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content#ur-tab-field-options,.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content#ur-tab-registered-fields{background-color:#fff}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content h2{margin:16px 0;font-size:1em;font-weight:500;color:#2d3559}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content h2~hr{border-top:1px solid #dee0e9}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;width:calc(100% + 16px);margin-right:-8px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list:last-child{margin-bottom:0}.ur-registered-from .ur-registered-inputs .ur-toggle-heading{cursor:pointer}.ur-registered-from .ur-registered-inputs .ur-toggle-heading:before{content:'\f142';cursor:pointer;display:block;font:400 20px/1 Dashicons;line-height:.5!important;padding:4px;position:relative;left:0;top:0;float:left}.ur-registered-from .ur-registered-inputs .ur-toggle-heading.closed:before{content:'\f140'}.ur-registered-from .ui-widget select,.ur-registered-from input[type=date],.ur-registered-from input[type=email],.ur-registered-from input[type=file],.ur-registered-from input[type=month],.ur-registered-from input[type=number],.ur-registered-from input[type=password],.ur-registered-from input[type=phone],.ur-registered-from input[type=tel],.ur-registered-from input[type=text],.ur-registered-from input[type=time],.ur-registered-from input[type=timepicker],.ur-registered-from input[type=url],.ur-registered-from input[type=week],.ur-registered-from select,.ur-registered-from textarea{width:100%;max-width:100%;height:32px;line-height:initial;display:block;color:#4c5477;font-size:13px;padding:4px 8px;border-radius:3px;border:1px solid #dee0e9;box-shadow:0 0 0 transparent}.ur-registered-from .ui-widget select:focus,.ur-registered-from input[type=date]:focus,.ur-registered-from input[type=email]:focus,.ur-registered-from input[type=file]:focus,.ur-registered-from input[type=month]:focus,.ur-registered-from input[type=number]:focus,.ur-registered-from input[type=password]:focus,.ur-registered-from input[type=phone]:focus,.ur-registered-from input[type=tel]:focus,.ur-registered-from input[type=text]:focus,.ur-registered-from input[type=time]:focus,.ur-registered-from input[type=timepicker]:focus,.ur-registered-from input[type=url]:focus,.ur-registered-from input[type=week]:focus,.ur-registered-from select:focus,.ur-registered-from textarea:focus{border-color:#475bb2}.ur-registered-from .ui-widget select::-webkit-input-placeholder,.ur-registered-from input[type=date]::-webkit-input-placeholder,.ur-registered-from input[type=email]::-webkit-input-placeholder,.ur-registered-from input[type=file]::-webkit-input-placeholder,.ur-registered-from input[type=month]::-webkit-input-placeholder,.ur-registered-from input[type=number]::-webkit-input-placeholder,.ur-registered-from input[type=password]::-webkit-input-placeholder,.ur-registered-from input[type=phone]::-webkit-input-placeholder,.ur-registered-from input[type=tel]::-webkit-input-placeholder,.ur-registered-from input[type=text]::-webkit-input-placeholder,.ur-registered-from input[type=time]::-webkit-input-placeholder,.ur-registered-from input[type=timepicker]::-webkit-input-placeholder,.ur-registered-from input[type=url]::-webkit-input-placeholder,.ur-registered-from input[type=week]::-webkit-input-placeholder,.ur-registered-from select::-webkit-input-placeholder,.ur-registered-from textarea::-webkit-input-placeholder{color:#b6bbcf}.ur-registered-from .ui-widget select::-ms-input-placeholder,.ur-registered-from input[type=date]::-ms-input-placeholder,.ur-registered-from input[type=email]::-ms-input-placeholder,.ur-registered-from input[type=file]::-ms-input-placeholder,.ur-registered-from input[type=month]::-ms-input-placeholder,.ur-registered-from input[type=number]::-ms-input-placeholder,.ur-registered-from input[type=password]::-ms-input-placeholder,.ur-registered-from input[type=phone]::-ms-input-placeholder,.ur-registered-from input[type=tel]::-ms-input-placeholder,.ur-registered-from input[type=text]::-ms-input-placeholder,.ur-registered-from input[type=time]::-ms-input-placeholder,.ur-registered-from input[type=timepicker]::-ms-input-placeholder,.ur-registered-from input[type=url]::-ms-input-placeholder,.ur-registered-from input[type=week]::-ms-input-placeholder,.ur-registered-from select::-ms-input-placeholder,.ur-registered-from textarea::-ms-input-placeholder{color:#b6bbcf}.ur-registered-from .ui-widget select::placeholder,.ur-registered-from input[type=date]::placeholder,.ur-registered-from input[type=email]::placeholder,.ur-registered-from input[type=file]::placeholder,.ur-registered-from input[type=month]::placeholder,.ur-registered-from input[type=number]::placeholder,.ur-registered-from input[type=password]::placeholder,.ur-registered-from input[type=phone]::placeholder,.ur-registered-from input[type=tel]::placeholder,.ur-registered-from input[type=text]::placeholder,.ur-registered-from input[type=time]::placeholder,.ur-registered-from input[type=timepicker]::placeholder,.ur-registered-from input[type=url]::placeholder,.ur-registered-from input[type=week]::placeholder,.ur-registered-from select::placeholder,.ur-registered-from textarea::placeholder{color:#b6bbcf}.ur-registered-from .ui-widget select:disabled,.ur-registered-from input[type=date]:disabled,.ur-registered-from input[type=email]:disabled,.ur-registered-from input[type=file]:disabled,.ur-registered-from input[type=month]:disabled,.ur-registered-from input[type=number]:disabled,.ur-registered-from input[type=password]:disabled,.ur-registered-from input[type=phone]:disabled,.ur-registered-from input[type=tel]:disabled,.ur-registered-from input[type=text]:disabled,.ur-registered-from input[type=time]:disabled,.ur-registered-from input[type=timepicker]:disabled,.ur-registered-from input[type=url]:disabled,.ur-registered-from input[type=week]:disabled,.ur-registered-from select:disabled,.ur-registered-from textarea:disabled{color:#b6bbcf;background:#f0f1f5}.ur-registered-from select{padding-left:0}.ur-registered-from label{display:block;width:100%;margin-bottom:8px;color:#4c5477;font-size:13px;font-weight:500;line-height:1.25}.ur-registered-from textarea{padding:10px;height:100px}.ur-registered-from .ur-builder-wrapper{position:relative;-webkit-box-flex:1;-webkit-flex:1;flex:1;height:calc(100vh - 89px);background:#fafafc;border-right:1px solid #dee0e9;overflow-y:auto}.ur-registered-from .ur-builder-wrapper input[type=date]:disabled,.ur-registered-from .ur-builder-wrapper input[type=email]:disabled,.ur-registered-from .ur-builder-wrapper input[type=file]:disabled,.ur-registered-from .ur-builder-wrapper input[type=month]:disabled,.ur-registered-from .ur-builder-wrapper input[type=number]:disabled,.ur-registered-from .ur-builder-wrapper input[type=password]:disabled,.ur-registered-from .ur-builder-wrapper input[type=phone]:disabled,.ur-registered-from .ur-builder-wrapper input[type=tel]:disabled,.ur-registered-from .ur-builder-wrapper input[type=text]:disabled,.ur-registered-from .ur-builder-wrapper input[type=time]:disabled,.ur-registered-from .ur-builder-wrapper input[type=timepicker]:disabled,.ur-registered-from .ur-builder-wrapper input[type=url]:disabled,.ur-registered-from .ur-builder-wrapper input[type=week]:disabled,.ur-registered-from .ur-builder-wrapper select:disabled,.ur-registered-from .ur-builder-wrapper textarea:disabled{background:#fff}.ur-registered-from .ur-builder-wrapper .ur-builder-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse;margin:16px 0;position:relative}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper .ur-edit-form-name{width:32px;height:32px;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border-radius:3px;margin-bottom:0;color:#4c5477;background:#dee0e9;border:1px solid transparent}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper .ur-edit-form-name::after{content:'';border-radius:3px;position:absolute;right:32px;left:calc(100% - 32px);height:30px;border-radius:3px 0 0 3px;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input{color:#2d3559;background:0 0;font-size:16px;font-weight:500;width:auto;padding:4px 8px;border-color:transparent;pointer-events:none;z-index:1;border:1px solid transparent}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input.ur-editing{border-color:transparent;pointer-events:all}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input.ur-editing+.ur-edit-form-name{color:#fff;background:#475bb2;border-radius:0 3px 3px 0;border:1px solid #475bb2}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input.ur-editing+.ur-edit-form-name::after{top:0;left:0;border:1px solid #475bb2}.ur-registered-from .ur-builder-wrapper.ur-multipart .ur-button-quick-links{bottom:60px}.ur-registered-from .ur-builder-wrapper.ur-multipart .ur-builder-wrapper-footer .button.button-style-customizer{bottom:124px}.ur-registered-from .ur-selected-inputs{box-sizing:border-box;padding:0 20px}.ur-registered-from .ur-selected-inputs .ur-single-row{border-radius:3px;position:relative;border:1px solid transparent}.ur-registered-from .ur-selected-inputs .ur-single-row:last-child{margin-bottom:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids{display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;left:0;z-index:1;opacity:0;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button{display:-webkit-box;display:-webkit-flex;display:flex;border-radius:0;border:0;background-color:#676d8a;color:#fff;font-size:16px;height:auto;width:auto;cursor:pointer;padding:4px 6px;line-height:1;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button svg{width:16px;height:16px;font-size:16px;fill:#fff}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:before{font-family:dashicons}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button.ur-remove-row:hover{background:#ff4149}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:hover{background:#475bb2}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:first-child{border-radius:0 3px 3px 0;border-left:1px solid rgba(255,255,255,.2)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:nth-child(2){border-radius:3px 0 0 3px}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content{background:#fff;padding:1rem;position:absolute;top:40px;left:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;white-space:nowrap;border:1px solid #dee0e9;border-radius:4px;box-shadow:-1px 4px 14px 1px rgba(45,53,89,.1)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content small{font-size:12px;margin-bottom:.5rem;color:#676d8a}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content .ur-grid-selector{cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;margin-left:.5rem}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content .ur-grid-selector svg{width:32px;height:32px;fill:#676d8a}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content .ur-grid-selector:last-child{margin-left:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content::before{content:'';width:8px;height:8px;border:solid #dee0e9;border-width:1px;border-right:transparent;border-bottom:transparent;position:absolute;top:-5px;left:36px;background:#fff;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists{width:100%;display:-webkit-box;display:-webkit-flex;display:flex;text-align:center;box-sizing:border-box;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border:1px solid transparent;border-radius:4px;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item{display:inline-block;text-align:right;border:0 none;padding:15px;-webkit-box-flex:1;-webkit-flex:1;flex:1;border:1px solid transparent;border-radius:4px;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item{margin-bottom:5px;position:relative;padding:15px;cursor:move;border:1px solid transparent;border-radius:4px;-webkit-transition:border-color .35s;transition:border-color .35s}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .select2-container{width:100%!important}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .select2-container .select2-search--inline .select2-search__field{height:auto;min-width:10px;background:0 0;margin:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-input-type-signature canvas{background:rgba(255,255,255,.5);border:1px solid #dee0e9}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item:last-child{margin-bottom:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item.ur-item-active,.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item:hover{background:#fff;border:1px solid #475bb2}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item.ui-sortable-helper{box-shadow:0 0 10px 5px rgba(45,53,89,.1)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item.ui-sortable-placeholder{visibility:visible!important;border:1px dashed #b6bbcf;background-color:#f0f1f5}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons{display:none;position:absolute;left:10px;width:50px;text-align:center;padding:0;font-size:10px;top:10px;color:#b6bbcf}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons span{cursor:pointer;font-size:16px;height:auto}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons span:hover{color:#475bb2}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons:hover .ur-action-buttons{display:block}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons .ur-trash:hover{color:#ff4149}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_top_left{text-align:right}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_center{text-align:center}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_top_right{text-align:left}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_disabled{display:none}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item:hover .ur-action-buttons{display:block}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item>li.ur-item-dragged{list-style:none;width:100%;text-align:center;height:60px!important;box-sizing:border-box}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item>li.ur-item-dragged .spinner{float:none}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me{display:table;width:100%;height:100%}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me .user-registration-dragged-me-text{display:table-cell;vertical-align:middle;text-align:center}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me .user-registration-dragged-me-text p{display:inline-block;position:relative;color:#b6bbcf;padding-right:26px;padding-top:8px}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me .user-registration-dragged-me-text p::before{position:absolute;font-family:Dashicons;content:'\f545';font-size:22px;right:0;top:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me:empty{padding:15px;text-align:center;border-radius:4px;border:1px dashed #b6bbcf;background-color:#f0f1f5}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me:empty::before{content:'\f132';font-size:32px;color:#b6bbcf;width:32px;height:32px;font-family:dashicons;display:table-cell;vertical-align:middle}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item.ur-sortable-active .ur-registered-item{margin-bottom:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item.ur-sortable-active .user-registration-dragged-me{display:none}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:first-child{border-radius:0 4px 4px 0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:nth-child(2){border-radius:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:nth-child(3){border-radius:4px 0 0 4px}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grids{opacity:1}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grid-lists{background:#fff;border:1px solid #b6bbcf}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grid-lists .ur-grid-list-item{border-right:1px solid #b6bbcf}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grid-lists .ur-grid-list-item:first-child{border-color:transparent}.ur-registered-from .ur-selected-inputs .ur-add-new-row{display:block;margin:20px auto;width:auto;height:32px;text-align:center;font-family:inherit}.ur-registered-from .ur-selected-inputs .ur-add-new-row::before{width:16px;height:16px;font-size:16px;margin-left:10px;font-family:dashicons;vertical-align:middle;padding:1px 0 1px 10px;border-left:1px solid rgba(255,255,255,.3)}.ur-registered-from .ur-selected-inputs li.ur-registered-item{width:120px!important}.ur-registered-from .ur-selected-inputs li.ur-registered-item.ui-sortable-placeholder{margin-right:0;width:100%!important;visibility:visible!important;border:1px dashed #b6bbcf;background-color:#f0f1f5}.ur-registered-from .ur-builder-wrapper-footer .button.button-style-customizer{height:48px;width:48px;bottom:72px;box-shadow:-1px 2px 8px rgba(45,53,89,.15)}.ur-registered-from .ur-builder-wrapper-footer .button.button-style-customizer .dashicons{font-size:24px;height:24px;width:24px}.ur-registered-from .ur-builder-wrapper-footer .ur-button-quick-links{width:48px;height:48px;position:fixed;cursor:pointer;color:#4c5477;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;left:32px;bottom:16px;background:#fff;border:1px solid #dee0e9;border-radius:24px;box-shadow:0 2px 10px rgba(45,53,89,.1);z-index:1}.ur-registered-from .ur-builder-wrapper-footer .ur-button-quick-links span{font-size:20px;font-weight:600;margin:0 auto}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content{position:fixed;background:#fff;padding:12px 16px;border-radius:4px;bottom:58px;left:30px;z-index:2;width:225px;border:1px solid #dee0e9;box-shadow:-2px 4px 12px rgba(45,53,89,.1)}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content li{margin-bottom:8px}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content a{color:#4c5477}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content a:hover{color:#475bb2}.ur-registered-from .ur-advance-setting,.ur-registered-from .ur-general-setting{margin:16px 0}.ur-registered-from .ur-advance-setting-block{margin-top:25px}.ur-registered-from .form-row{margin-bottom:1em}.ur-registered-from .form-row .description{color:#676d8a;margin:4px 0;display:block}.ur-registered-from .form-row .ur-checkbox-list label,.ur-registered-from .form-row .ur-radio-list label{display:inline}.ur-registered-from .ur-advance-setting-block,.ur-registered-from .ur-general-setting-block{display:none}.ur-registered-from .add,.ur-registered-from .remove{background:#fff;border:1px solid #dee0e9;color:#676d8a;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1 0 32px;flex:1 0 32px;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:32px;max-width:32px;border-radius:4px;position:relative}.ur-registered-from .add:hover,.ur-registered-from .remove:hover{background:#475bb2;border-color:#475bb2;color:#fff}.ur-registered-from .add .dashicons,.ur-registered-from .remove .dashicons{line-height:22px}.ur-registered-from .add{margin-left:8px}.ur-registered-from .ur-options-list li{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.ur-registered-from .ur-options-list li .editor-block-mover__control-drag-handle{margin-left:8px;cursor:-webkit-grab;cursor:grab}.ur-registered-from .ur-options-list li .editor-block-mover__control-drag-handle svg{fill:#676d8a}.ur-registered-from .ur-options-list li input{margin-left:8px}.ur-registered-from .ur-options-list .ui-sortable-handle{padding:5px;border-radius:3px;border:1px solid transparent}.ur-registered-from .ur-options-list .ui-sortable-handle:active{padding:5px;background:#fff;border:1px solid #475bb2;box-shadow:0 0 20px rgba(0,0,0,.2)}.ur-registered-from .ur-options-list .ui-sortable-handle.ui-sortable-placeholder{background-color:#dee0e9;visibility:visible!important}.ur-registered-from .urcl-rules{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:8px}.ur-registered-from .urcl-rules>div{margin-left:8px}.ur-registered-from .urcl-rules .urcl-operator{width:78px}.ur-registered-from .urcl-rules .urcl-field,.ur-registered-from .urcl-rules .urcl-value{max-width:27%;-webkit-box-flex:1;-webkit-flex:1 0 27%;flex:1 0 27%}.tips{cursor:help;text-decoration:none}img.tips{padding:5px 0 0}#tiptip_holder{display:none;z-index:8675309;position:absolute;top:0;left:0}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-right:-6px;border-top-color:#dee0e9}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-right:-6px;border-bottom-color:#4c5477}#tiptip_holder.tip_right{padding-right:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-right:-5px;border-left-color:#dee0e9}#tiptip_holder.tip_left{padding-left:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-right:-7px;border-right-color:#dee0e9}#tiptip_content,.ur_error_tip{color:#fff;font-size:.9em;max-width:150px;background:#4c5477;text-align:center;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2)}#tiptip_content code,.ur_error_tip code{padding:1px;background:#888}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}#tiptip_arrow{right:50%;margin-right:-6px}.ur_error_tip{max-width:20em;line-height:1.8em;position:absolute;white-space:normal;background:#ff4149;margin:1.5em -1em 0 1px;z-index:9999999}.ur_error_tip::after{content:'';display:block;border:8px solid #ff4149;border-left-color:transparent;border-right-color:transparent;border-top-color:transparent;position:absolute;top:-3px;right:50%;margin:-1em -3px 0 0}.user-registration-help-tip{color:#676d8a;display:inline-block;font-size:16px;font-style:normal;height:16px;line-height:16px;position:relative;vertical-align:middle;width:16px}.user-registration-help-tip::after{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;right:0;width:100%;height:100%;text-align:center;content:"";cursor:help}.select2-results__option .wrap:before{content:"\2610";width:25px;height:25px;padding-left:10px}.select2-results__option[data-selected=true] .wrap:before{content:"\2714"}.select2-drop,.select2-dropdown{z-index:999999!important}.select2-results{line-height:1.5em}.select2-results .select2-results__group,.select2-results .select2-results__option{margin:0;padding:8px}.select2-dropdown{border-color:#dee0e9}.select2-dropdown--below{box-shadow:0 1px 1px rgba(0,0,0,.1)}.select2-dropdown--above{box-shadow:0 -1px 1px rgba(0,0,0,.1)}.select2-container .select2-selection__rendered.ui-sortable li{cursor:move}.select2-container .select2-selection{border-color:#dee0e9}.select2-container .select2-search__field{min-width:20px}.select2-container .select2-selection--single{height:32px}.select2-container .select2-selection--single .select2-selection__rendered{line-height:32px;padding-left:24px}.select2-container .select2-selection--single .select2-selection__arrow{left:3px;height:30px}.select2-container .select2-selection--multiple{min-height:28px;border-radius:4px;line-height:1.5;border:1px solid #ddd!important}.select2-container .select2-selection--multiple li{margin:0}.select2-container .select2-selection--multiple .select2-selection__choice{padding:2px 6px}.select2-container .select2-selection__clear{color:#999;margin-top:-1px}.select2-container .select2-search--inline .select2-search__field{font-family:inherit;font-size:inherit;font-weight:inherit;padding:3px 0;margin:0;line-height:1;min-height:26px}#smart-tags{text-align:center}.form-settings-tab{cursor:pointer;padding:10px 15px;color:#2d3559;background:#dee0e9;margin-bottom:10px;line-height:1.2;border-radius:4px}.form-settings-tab.active{background:#475bb2;color:#fff}#profile-page form#your-profile .flatpickr-input[readonly]{background-color:#fff}body.ur-full-screen-mode{margin-top:-32px}body.ur-full-screen-mode #wpbody-content{padding-bottom:45px}body.ur-full-screen-mode #wpwrap #wpcontent{margin-right:0;padding-right:0}body.ur-full-screen-mode #wpwrap #wpcontent #wpadminbar{display:none}body.ur-full-screen-mode #wpwrap #wpcontent #wpbody .ur-tab-content{padding:20px}body.ur-full-screen-mode #wpwrap #wpcontent #wpbody #menu-management-liquid{margin-top:0}body.ur-full-screen-mode #wpwrap #wpcontent #wpbody #menu-management-liquid .menu-edit{margin-bottom:0;box-shadow:none;right:0!important}body.ur-full-screen-mode #wpwrap #adminmenumain{display:none}body.ur-full-screen-mode .ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-contents{height:calc(100vh - 98px)}body.ur-full-screen-mode .ur-registered-from .ur-builder-wrapper{height:calc(100vh - 57px)}@-webkit-keyframes ur-circle-loading{0%,100%{-webkit-animation-timing-function:cubic-bezier(.2,0,.8,1);animation-timing-function:cubic-bezier(.2,0,.8,1)}50%{-webkit-animation-timing-function:cubic-bezier(0,.2,1,.8);animation-timing-function:cubic-bezier(0,.2,1,.8)}0%{-webkit-transform:rotate(0) translate(0,-20px) scale(0);transform:rotate(0) translate(0,-20px) scale(0)}50%{-webkit-transform:rotate(-180deg) translate(0,-20px) scale(1);transform:rotate(-180deg) translate(0,-20px) scale(1)}100%{-webkit-transform:rotate(-360deg) translate(0,-20px) scale(0);transform:rotate(-360deg) translate(0,-20px) scale(0)}}@keyframes ur-circle-loading{0%,100%{-webkit-animation-timing-function:cubic-bezier(.2,0,.8,1);animation-timing-function:cubic-bezier(.2,0,.8,1)}50%{-webkit-animation-timing-function:cubic-bezier(0,.2,1,.8);animation-timing-function:cubic-bezier(0,.2,1,.8)}0%{-webkit-transform:rotate(0) translate(0,-20px) scale(0);transform:rotate(0) translate(0,-20px) scale(0)}50%{-webkit-transform:rotate(-180deg) translate(0,-20px) scale(1);transform:rotate(-180deg) translate(0,-20px) scale(1)}100%{-webkit-transform:rotate(-360deg) translate(0,-20px) scale(0);transform:rotate(-360deg) translate(0,-20px) scale(0)}}@-webkit-keyframes ur-circle-loading-keyframe{0%,100%{-webkit-animation-timing-function:cubic-bezier(.2,0,.8,1);animation-timing-function:cubic-bezier(.2,0,.8,1)}50%{-webkit-animation-timing-function:cubic-bezier(0,.2,1,.8);animation-timing-function:cubic-bezier(0,.2,1,.8)}0%{-webkit-transform:rotate(0) translate(0,-20px) scale(0);transform:rotate(0) translate(0,-20px) scale(0)}50%{-webkit-transform:rotate(-180deg) translate(0,-20px) scale(1);transform:rotate(-180deg) translate(0,-20px) scale(1)}100%{-webkit-transform:rotate(-360deg) translate(0,-20px) scale(0);transform:rotate(-360deg) translate(0,-20px) scale(0)}}@-webkit-keyframes open-message{0%{opacity:0;-webkit-transform:translateY(-120%);transform:translateY(-120%)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes open-message{0%{opacity:0;-webkit-transform:translateY(-120%);transform:translateY(-120%)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes close-message{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes close-message{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}.ur-circle-loading{position:relative;width:100px!important;height:100px!important;-webkit-transform:translate(50px,-50px) scale(.5) translate(-50px,50px);-ms-transform:translate(50px,-50px) scale(.5) translate(-50px,50px);transform:translate(50px,-50px) scale(.5) translate(-50px,50px)}.ur-circle-loading::after,.ur-circle-loading::before{content:'';position:absolute;top:70px;right:70px;-webkit-animation:ur-circle-loading-keyframe 1.5s linear infinite;animation:ur-circle-loading-keyframe 1.5s linear infinite;width:60px;height:60px;border-radius:50%;background:#475bb2}.ur-circle-loading::after{-webkit-animation-delay:-.75s;animation-delay:-.75s;background:#668fe5}.ur-builder-message-container{position:fixed;top:32px;right:0;left:0;max-width:400px;margin:0 auto;z-index:9999}.ur-builder-message-container .ur-message{display:none;margin:0 auto;margin-top:16px;-webkit-transition:all 240ms cubic-bezier(0,0,.2,1) 0s;transition:all 240ms cubic-bezier(0,0,.2,1) 0s;z-index:99999;height:0}.ur-builder-message-container .ur-message .ur-error,.ur-builder-message-container .ur-message .ur-success{background:#fff;padding:8px 16px;border-radius:3px;border-right:3px solid;position:relative;box-shadow:0 1px 8px 2px rgba(45,53,89,.1)}.ur-builder-message-container .ur-message .ur-error p,.ur-builder-message-container .ur-message .ur-success p{margin:8px 0}.ur-builder-message-container .ur-message .ur-error p::after,.ur-builder-message-container .ur-message .ur-error p::before,.ur-builder-message-container .ur-message .ur-success p::after,.ur-builder-message-container .ur-message .ur-success p::before{font-family:dashicons;width:20px;height:20px;font-size:20px;margin-left:8px;margin-top:-4px;line-height:1;display:inline-block;vertical-align:middle}.ur-builder-message-container .ur-message .ur-success{border-color:#7ad03a}.ur-builder-message-container .ur-message .ur-success p::before{content:"\f12a";color:#7ad03a}.ur-builder-message-container .ur-message .ur-error{border-color:#ff4149}.ur-builder-message-container .ur-message .ur-error p::before{content:"\f534";color:#ff4149}.ur-builder-message-container .ur-message .dashicons{cursor:pointer;position:absolute;left:16px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);line-height:1}.ur-builder-message-container .ur-message.entered{display:block;height:50px;-webkit-animation:240ms cubic-bezier(.175,.885,.32,1.175) 0s 1 normal both open-message;animation:240ms cubic-bezier(.175,.885,.32,1.175) 0s 1 normal both open-message}.ur-builder-message-container .ur-message.exiting{display:block;-webkit-animation:120ms cubic-bezier(.4,0,1,1) 0s 1 normal both close-message;animation:120ms cubic-bezier(.4,0,1,1) 0s 1 normal both close-message}.ur-builder-message-container .ur-message:first-child{margin-top:1.5rem}@media only screen and (max-width:1599px){.ur_addons_wrap .products li{width:32.66%}.ur_addons_wrap .products li:nth-child(3n){margin:0 0 1% 0!important}.ur_addons_wrap .products li:nth-child(5n){margin:0 0 1% 1%!important}}@media screen and (max-width:1400px){.ur-registered-from .urcl-rules .urcl-field{max-width:61%;-webkit-box-flex:1;-webkit-flex:1 0 60%;flex:1 0 60%;margin-bottom:5px}.ur-registered-from .urcl-rules .urcl-value{-webkit-box-ordinal-group:5;-webkit-order:4;order:4;max-width:87%;-webkit-box-flex:1;-webkit-flex:1 0 86%;flex:1 0 86%}.ur-registered-from .urcl-rules .add{-webkit-box-ordinal-group:4;-webkit-order:3;order:3;margin-left:0}.ur-registered-from .urcl-rules .remove{-webkit-box-ordinal-group:6;-webkit-order:5;order:5}}@media only screen and (max-width:1120px){.ur_addons_wrap .products li{width:49%;margin:0 0 2% 2%!important}.ur_addons_wrap .products li:nth-child(2n){margin:0 0 2% 0!important}.ur_addons_wrap .products li:nth-child(3n),.ur_addons_wrap .products li:nth-child(5n){margin:0 0 2% 2%!important}}@media screen and (max-width:960px){.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list .ur-registered-item{float:none;width:100%}.ur-registered-from .ur-registered-inputs .ur-single-row .ur-grid-lists,.ur-registered-from .ur-registered-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item,.ur-registered-from .ur-registered-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item{padding:10px}}@media only screen and (max-width:900px){.ur_addons_wrap .products li{width:49%}}@media screen and (max-width:782px){body.user-registration_page_add-new-registration{min-width:0!important}.ur-registered-from{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.ur-registered-from .ur-registered-inputs{width:100%;margin-bottom:10px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list .ur-registered-item{float:right;width:48%}.ur-registered-from .ur-selected-inputs{width:100%}}@media screen and (max-width:600px){.user-registration_page_add-new-registration .major-publishing-actions{clear:both;padding:10px 0 19px;line-height:28px}.user-registration_page_add-new-registration .major-publishing-actions .ur-form-name{width:100%}.user-registration_page_add-new-registration .major-publishing-actions .publishing-action{text-align:right;float:none;margin-top:15px}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;display:block}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item{width:100%!important}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:nth-child(1n+2){border-right:0 none}}@media only screen and (max-width:480px){.ur_addons_wrap .products li,.ur_addons_wrap .products li:nth-child(2n),.ur_addons_wrap .products li:nth-child(3n),.ur_addons_wrap .products li:nth-child(5n){width:100%;margin:0 0 3% 0!important}}
assets/css/admin.css CHANGED
@@ -1,2 +1,2 @@
1
  .select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected],.select2-results__option[data-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff}.select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:0 0;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true],.select2-container--default .select2-results__option[data-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected],.select2-container--default .select2-results__option--highlighted[data-selected]{background-color:#0073aa;color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#fff),to(#eee));background-image:-webkit-linear-gradient(top,#fff 50%,#eee 100%);background-image:linear-gradient(to bottom,#fff 50%,#eee 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single:focus{border:1px solid #0073aa}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#eee),to(#ccc));background-image:-webkit-linear-gradient(top,#eee 50%,#ccc 100%);background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #0073aa}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:0 0;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-gradient(linear,left top,left bottom,from(white),color-stop(50%,#eee));background-image:-webkit-linear-gradient(top,#fff 0,#eee 50%);background-image:linear-gradient(to bottom,#fff 0,#eee 50%);background-repeat:repeat-x}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#eee),to(white));background-image:-webkit-linear-gradient(top,#eee 50%,#fff 100%);background-image:linear-gradient(to bottom,#eee 50%,#fff 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #0073aa}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #0073aa}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected],.select2-container--classic .select2-results__option--highlighted[data-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#0073aa}
2
- @charset "UTF-8";.ur-form-container .button,.ur-form-container button,.user-registration .button,.user-registration button{-webkit-transition:all .25s ease 0s;transition:all .25s ease 0s}.ur-form-container .button.button-icon,.ur-form-container button.button-icon,.user-registration .button.button-icon,.user-registration button.button-icon{width:32px;padding:0}.ur-form-container .button.button-icon .dashicons,.ur-form-container button.button-icon .dashicons,.user-registration .button.button-icon .dashicons,.user-registration button.button-icon .dashicons{line-height:1;vertical-align:middle}.ur-form-container .button.button-icon-round,.ur-form-container button.button-icon-round,.user-registration .button.button-icon-round,.user-registration button.button-icon-round{border-radius:50%}.ur-form-container .button .ur-spinner,.ur-form-container button .ur-spinner,.user-registration .button .ur-spinner,.user-registration button .ur-spinner{width:16px;height:16px;margin-left:6px;margin-bottom:2px;display:inline-block;vertical-align:middle}.ur-form-container .button-primary,.user-registration .button-primary{background:#475bb2;border-color:#475bb2;box-shadow:0 1px 0 #475bb2;text-shadow:none}.ur-form-container .button-primary:active,.ur-form-container .button-primary:focus,.ur-form-container .button-primary:hover,.user-registration .button-primary:active,.user-registration .button-primary:focus,.user-registration .button-primary:hover{background:#38488e;border-color:#38488e;box-shadow:0 1px 0 #38488e}.ur-form-container .button-primary:disabled,.user-registration .button-primary:disabled{color:#b2bae0!important;background:#697ac3!important;border-color:#697ac3!important}.ur-form-container .button-secondary,.user-registration .button-secondary{color:#1a1f33;background:#dee0e9;border-color:#dee0e9;box-shadow:0 1px 0 #dee0e9}.ur-form-container .button-secondary:active,.ur-form-container .button-secondary:focus,.ur-form-container .button-secondary:hover,.user-registration .button-secondary:active,.user-registration .button-secondary:focus,.user-registration .button-secondary:hover{color:#1a1f33;background:#b6bbcf;border-color:#b6bbcf;box-shadow:0 1px 0 #b6bbcf}.ur-form-container .button-danger,.user-registration .button-danger{color:#fff;background:#ff4149;border-color:#ff4149;box-shadow:0 1px 0 #ff4149}.ur-form-container .button-danger:active,.ur-form-container .button-danger:focus,.ur-form-container .button-danger:hover,.user-registration .button-danger:active,.user-registration .button-danger:focus,.user-registration .button-danger:hover{color:#fff;background:#ee2a32;border-color:#ee2a32;box-shadow:0 1px 0 #ee2a32}.ur-form-container .publishing-action .button,.ur-form-container .publishing-action button,.ur-form-container .publishing-action input[type=button],.ur-form-container .publishing-action input[type=submit],.user-registration .publishing-action .button,.user-registration .publishing-action button,.user-registration .publishing-action input[type=button],.user-registration .publishing-action input[type=submit]{margin-right:5px}.ur-registered-item.ui-draggable-dragging{padding:10px 10px;line-height:20px;background:#475bb2;color:#fff;text-align:center;margin-bottom:7px;word-break:break-word;white-space:normal;width:200px!important;z-index:9}.ur-registered-item.ui-draggable-dragging span{font-size:14px;line-height:20px;width:auto;height:auto;margin-right:3px}.select2-container .ur-select-all-countries-button{margin:6px 3px 4px 6px}.select2-container .ur-unselect-all-countries-button{margin:6px 3px 4px}@font-face{font-family:UserRegistration;src:url(../fonts/UserRegistration.eot?5hlcw0);src:url(../fonts/UserRegistration.eot?5hlcw0#iefix) format("embedded-opentype"),url(../fonts/UserRegistration.ttf?5hlcw0) format("truetype"),url(../fonts/UserRegistration.woff?5hlcw0) format("woff"),url(../fonts/UserRegistration.svg?5hlcw0#UserRegistration) format("svg");font-weight:400;font-style:normal;font-display:block}[class*=' ur-icon-'],[class^=ur-icon-]{font-family:UserRegistration!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}.ur-icon-input-first-name::before{content:""}.ur-icon-input-last-name::before{content:""}.ur-icon-input-field::before{content:""}.ur-icon-input-password::before{content:""}.ur-icon-input-checkbox::before{content:""}.ur-icon-radio::before{content:""}.ur-icon-number::before{content:""}.ur-icon-phone::before{content:""}.ur-icon-calendar::before{content:""}.ur-icon-drop-down::before{content:""}.ur-icon-textarea::before{content:""}.ur-icon-email::before{content:""}.ur-icon-email-secondary::before{content:""}.ur-icon-email-confirm::before{content:""}.ur-icon-invite-codes::before{content:""}.ur-icon-password::before{content:""}.ur-icon-password-confirm::before{content:""}.ur-icon-user::before{content:""}.ur-icon-user-nickname::before{content:""}.ur-icon-user-display-name::before{content:""}.ur-icon-user-bio::before{content:""}.ur-icon-website::before{content:""}.ur-icon-flag::before{content:""}.ur-icon-map-one::before{content:""}.ur-icon-map-two::before{content:""}.ur-icon-zip-code::before{content:""}.ur-icon-select2::before{content:""}.ur-icon-multi-select::before{content:""}.ur-icon-section-title::before{content:""}.ur-icon-time-picker::before{content:""}.ur-icon-state::before{content:""}.ur-icon-buildings::before{content:""}.ur-icon-text-editor::before{content:""}.ur-icon-bill::before{content:""}.ur-icon-doc::before{content:""}.ur-icon-file-upload::before{content:""}.ur-icon-file-dollar::before{content:""}.ur-icon-code::before{content:""}.ur-icon-mailchimp::before{content:""}table.user-registration-table{width:100%;background:#fff;border-collapse:collapse}table.user-registration-table caption,table.user-registration-table td,table.user-registration-table th{padding:1rem;text-align:left;border-bottom:1px solid #dee0e9}table.user-registration-table caption,table.user-registration-table th{font-size:14px;font-weight:500}table.user-registration-table thead th{background:#fafafc}table.user-registration-table input,table.user-registration-table select,table.user-registration-table textarea{width:100%;box-shadow:none;border-radius:4px}.blockUI.blockOverlay::before{width:16px;height:16px;position:absolute;display:block;content:'';-webkit-animation:spin 1s ease-in-out infinite;animation:spin 1s ease-in-out infinite;background:url(../images/icons/loader.svg) center center;background-size:cover}.ur-spinner::before{width:16px;height:16px;position:absolute;display:block;content:'';-webkit-animation:spin 1s ease-in-out infinite;animation:spin 1s ease-in-out infinite;background:url(../images/icons/loader.svg) center center;background-size:cover}@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ur-export-users-page{margin-top:6px}.ur-export-users-page .nav-tab-content .nav-tab-inside .postbox{width:50%;-webkit-box-flex:1;-webkit-flex:1;flex:1}.ur-export-users-page .nav-tab-content .hndle,.ur-export-users-page .nav-tab-content .stuffbox .hndle{margin:10px;padding-bottom:10px}.ur_addons_wrap .products{overflow:hidden;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.ur_addons_wrap .products li{margin:0 1% 1% 0!important;padding:0;vertical-align:top;width:19.2%;float:left}.ur_addons_wrap .products li:nth-child(5n){margin:0 0 1% 0!important}.ur_addons_wrap .products li a{text-decoration:none;color:inherit;border:1px solid #ddd;display:block;min-height:220px;overflow:hidden;background:#f5f5f5;box-shadow:inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.1)}.ur_addons_wrap .products li a .product-image{display:block;background:#fff}.ur_addons_wrap .products li a .product-image img{max-width:100%;display:block;margin:0}.ur_addons_wrap .products li a img.extension-thumb+h3{display:none}.ur_addons_wrap .products li a .price{display:none}.ur_addons_wrap .products li a h2,.ur_addons_wrap .products li a h3{margin:0!important;padding:20px!important;background:#fff}.ur_addons_wrap .products li a p{padding:20px!important;margin:0!important;border-top:1px solid #f1f1f1}.ur_addons_wrap .products li a:focus,.ur_addons_wrap .products li a:hover{background-color:#fff}.clear{clear:both}.wrap.user-registration div.error,.wrap.user-registration div.updated{margin-top:10px}.user-registration_page_add-new-registration #post-body .error,.user-registration_page_add-new-registration #post-body .updated{margin:0}.user-registration_page_add-new-registration #post-body-content{position:relative;float:none}.user-registration_page_add-new-registration .howto span{float:left;margin-top:6px}.user-registration_page_add-new-registration .list-wrap{display:none;clear:both;margin-bottom:10px}.user-registration_page_add-new-registration .list li{display:none;margin:0;margin-bottom:5px}.user-registration_page_add-new-registration .list li .menu-item-title{cursor:pointer;display:block}.user-registration_page_add-new-registration .list li .menu-item-title input{margin-right:3px;margin-top:-3px}.user-registration_page_add-new-registration #wpfooter{display:none}.user-registration_page_add-new-registration .ur-form-container{margin:0}.user-registration_page_add-new-registration .ur-form-container .ur-loading-container{position:fixed;left:160px;right:0;top:0;bottom:0;background:#fff;display:-webkit-box;display:-webkit-flex;display:flex;z-index:9}.user-registration_page_add-new-registration .ur-form-container .ur-loading-container .ur-circle-loading{margin:auto;left:30px}.user-registration_page_add-new-registration .ur-form-container #menu-management{margin-top:0}.user-registration_page_add-new-registration .ur-form-container #menu-management .menu-edit{position:fixed;left:160px;right:0;border:none;box-shadow:none;margin-bottom:0}.user-registration_page_add-new-registration .ur-form-container #ur-full-screen-mode.closed .ur-fs-close-label{display:none}.user-registration_page_add-new-registration .ur-form-container #ur-full-screen-mode.opened .ur-fs-open-label{display:none}.user-registration_page_add-new-registration #menu-management-liquid{margin-top:0;margin-left:-20px;min-width:calc(100% + 20px)}.user-registration_page_add-new-registration .postbox p.submit{margin-bottom:0}.user-registration_page_add-new-registration #nav-menu-footer,.user-registration_page_add-new-registration #nav-menu-header{padding:12px}.user-registration_page_add-new-registration #nav-menu-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;position:relative;border-color:#dee0e9;background-color:#fff;z-index:9}.user-registration_page_add-new-registration #nav-menu-header .ur-brand-logo{border-right:1px solid #dee0e9}.user-registration_page_add-new-registration #nav-menu-header .ur-brand-logo img{width:32px;height:32px;padding:0 8px;margin-right:8px;display:-webkit-box;display:-webkit-flex;display:flex}.user-registration_page_add-new-registration #nav-menu-header::after,.user-registration_page_add-new-registration #nav-menu-header::before{content:'';display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;left:0;right:0;bottom:0;background:#fff}.user-registration_page_add-new-registration #nav-menu-header::before{top:0;z-index:-1}.user-registration_page_add-new-registration #nav-menu-header::after{height:10px;box-shadow:0 4px 8px rgba(45,53,89,.08);z-index:-2}.user-registration_page_add-new-registration .major-publishing-actions{clear:both;line-height:28px;margin-left:auto}.user-registration_page_add-new-registration .major-publishing-actions .publishing-action{text-align:right;float:right}.user-registration_page_add-new-registration .major-publishing-actions .publishing-action input.code{width:265px;height:33px;padding:0 6px;margin:0;border-color:#dee0e9;background-color:#f0f1f5;border-radius:3px 0 0 3px}.user-registration_page_add-new-registration .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px}.user-registration_page_add-new-registration .major-publishing-actions .ur-form-name{width:25%;margin-right:6px}.user-registration_page_add-new-registration .major-publishing-actions #copy-shortcode{margin-left:-5px;border-radius:0 4px 4px 0}.user-registration_page_add-new-registration .major-publishing-actions #copy-shortcode svg{fill:#fff;margin-bottom:5px;vertical-align:middle}.user-registration_page_add-new-registration .blank-slate .menu-settings{display:none}.user-registration_page_add-new-registration .delete-action{float:left;line-height:28px}.ur-backbone-modal *{box-sizing:border-box}.ur-backbone-modal .ur-backbone-modal-content{position:fixed;background-color:#fff;z-index:100000;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:500px}.ur-backbone-modal .ur-backbone-modal-content article{overflow:auto}.ur-backbone-modal.ur-backbone-modal-content{width:75%;min-width:500px}.ur-backbone-modal .select2-container{width:100%!important}.ur-backbone-modal-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;min-height:360px;background-color:#2d3559;opacity:.7;z-index:99900}.ur-backbone-modal-main{padding-bottom:55px}.ur-backbone-modal-main article,.ur-backbone-modal-main header{display:block;position:relative}.ur-backbone-modal-main .ur-backbone-modal-header{height:auto;background-color:#fcfcfc;padding:1em 1.5em;border-bottom:1px solid #ddd}.ur-backbone-modal-main .ur-backbone-modal-header h1{margin:0;font-size:18px;font-weight:700;line-height:1.5em}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link{cursor:pointer;color:#777;height:54px;width:54px;padding:0;position:absolute;top:0;right:0;text-align:center;border:0;border-left:1px solid #ddd;background-color:transparent;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link::before{font:normal 22px/50px dashicons!important;color:#676d8a;display:block;content:'\f335';font-weight:300}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link:focus,.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link:hover{background-color:#ddd;border-color:#ccc;color:#2d3559}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link:focus{outline:0}.ur-backbone-modal-main article{padding:1.5em}.ur-backbone-modal-main article p{margin:1.5em 0}.ur-backbone-modal-main article p:first-child{margin-top:0}.ur-backbone-modal-main article p:last-child{margin-bottom:0}.ur-backbone-modal-main article .pagination{padding:10px 0 0;text-align:center}.ur-backbone-modal-main footer{position:absolute;left:0;right:0;bottom:0;z-index:100;padding:1em 1.5em;background-color:#fcfcfc;border-top:1px solid #dfdfdf;box-shadow:0 -4px 4px -4px rgba(0,0,0,.1)}.ur-backbone-modal-main footer .inner{float:right;line-height:23px}.ur-backbone-modal-main footer .inner .button{margin-bottom:0}.user-registration_page_add-new-registration .swal2-container .swal2-title{color:#2d3559;font-size:24px;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:24px}.user-registration_page_add-new-registration .swal2-container .dashicons{color:#ff4149;font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 20px;border:2px solid #ff4149;border-radius:50%}.user-registration_page_add-new-registration .swal2-container .ur-swal-title{-webkit-box-flex:100%;-webkit-flex:100%;flex:100%}.user-registration_page_add-new-registration .swal2-container .swal2-content,.user-registration_page_add-new-registration .swal2-container p{color:#4c5477;font-size:1em}.user-registration h2.ur-nav-tab-wrapper{margin-bottom:1em}.user-registration nav.ur-nav-tab-wrapper{margin:1.5em 0 1em;border-bottom:1px solid #ccc}.user-registration #mainform>.subsubsub{background:#e5e5e5;float:none}.user-registration #mainform>.subsubsub a{display:block;padding:7px 10px}.user-registration #mainform>.subsubsub a.current{color:#fff;background:#475bb2}.user-registration textarea[disabled=disabled]{background:#dfdfdf!important}.user-registration table.form-table{margin:0;position:relative}.user-registration table.form-table .select2-container{display:block;max-width:350px}.user-registration table.form-table .forminp-radio ul{margin:0}.user-registration table.form-table .forminp-radio ul li{line-height:1.4em}.user-registration table.form-table textarea.input-text{height:100%;min-width:150px;display:block}.user-registration table.form-table input.regular-input{width:25em}.user-registration table.form-table textarea.wide-input{width:100%}.user-registration table.form-table .user-registration-help-tip,.user-registration table.form-table img.help_tip{padding:0;margin:-4px 0 0 5px;vertical-align:middle;cursor:help;line-height:1}.user-registration table.form-table span.help_tip{cursor:help;color:#2ea2cc}.user-registration table.form-table th{position:relative;padding-right:24px}.user-registration table.form-table .select2-container{vertical-align:top;margin-bottom:3px}.user-registration table.form-table table.widefat th{padding-right:inherit}.user-registration table.form-table th .user-registration-help-tip,.user-registration table.form-table th img.help_tip{margin:0 -24px 0 0;float:right}.user-registration table.form-table .wp-list-table .user-registration-help-tip{float:none}.user-registration table.form-table fieldset{margin-top:4px}.user-registration table.form-table fieldset .user-registration-help-tip,.user-registration table.form-table fieldset img.help_tip{margin:-3px 0 0 5px}.user-registration table.form-table fieldset p.description{margin-bottom:8px}.user-registration table.form-table fieldset:first-child{margin-top:0}.user-registration table.form-table .iris-picker{z-index:100;display:none;position:absolute;border:1px solid #ccc;border-radius:3px;box-shadow:0 1px 3px rgba(0,0,0,.2)}.user-registration table.form-table .iris-picker .ui-slider{border:0!important;margin:0!important;width:auto!important;height:auto!important;background:none transparent!important}.user-registration table.form-table .iris-picker .ui-slider .ui-slider-handle{margin-bottom:0!important}.user-registration table.form-table .colorpickpreview{padding:3px;padding-left:20px;border:1px solid #ddd;border-right:0}.user-registration table.form-table .colorpick{border-left:0}.user-registration table.form-table .image_width_settings{vertical-align:middle}.user-registration table.form-table .image_width_settings label{margin-left:10px}.ur-admin-template-options{display:none}.ur-registered-from{display:-webkit-box;display:-webkit-flex;display:flex;background-color:#fff}.ur-registered-from *{box-sizing:border-box}.ur-registered-from :focus{outline:0}.ur-registered-from a{text-decoration:none}.ur-registered-from h3{color:#2d3559;font-weight:500}.ur-registered-from .ur-field{line-height:2}.ur-registered-from .ur-field label{font-weight:400}.ur-registered-from .ur-field label:last-child{margin-bottom:0}.ur-registered-from .ur-field input[type=checkbox],.ur-registered-from .ur-field input[type=radio]{opacity:1;box-shadow:none;border-color:#dee0e9}.ur-registered-from .select2.select2-container{width:100%!important}.ur-registered-from .wp-picker-container .wp-picker-input-wrap label{display:inline-block;width:auto}.ur-registered-from .wp-picker-container .wp-picker-input-wrap label input.wp-color-picker{height:auto;padding:3px 5px}.ur-registered-from .ur-registered-item{cursor:move;padding:4px;color:#676d8a;height:110px;font-size:12px;border-radius:4px;margin:0 8px 16px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;text-align:center;width:calc(33.3333% - 16px);background-color:#f0f1f5}.ur-registered-from .ur-registered-item .ur-icon{font-size:32px;margin-bottom:4px}.ur-registered-from .ur-registered-item:hover{background-color:#475bb2;color:#fff}.ur-registered-from .ur-registered-item.ui-draggable-dragging{width:110px!important;z-index:9!important}.ur-registered-from .ur-registered-inputs{width:412px;background-color:#f9f9f9}.ur-registered-from .ur-registered-inputs .ur-tabs{border:0 none;padding:0;font-size:14px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists{background-color:#f0f1f5;background-image:none;padding:0;border-radius:0;margin:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;border-bottom:none;border-top:0 none;border-right:0 none;border-left:0 none}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li{background-color:transparent;background-image:none;border-radius:0;margin:0;margin-bottom:-1px;padding:0;border:0;-webkit-box-flex:1;-webkit-flex:1;flex:1;text-align:center}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li.active{margin-bottom:0;padding-bottom:0}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li.ui-state-disabled{opacity:1}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li a{float:none;text-decoration:none;margin:0;border:none;display:block;color:#2d3559;background-color:transparent;padding:12px 15px;font-weight:500;cursor:pointer}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li a:focus{box-shadow:0 0 0 0 transparent,0 0 0 0 transparent}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li a.active{background-color:#fff;color:#475bb2;line-height:24px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-contents{height:calc(100vh - 130px);position:relative;overflow-y:auto}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content{padding:16px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content#ur-tab-field-options,.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content#ur-tab-registered-fields{background-color:#fff}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content h2{margin:16px 0;font-size:1em;font-weight:500;color:#2d3559}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content h2~hr{border-top:1px solid #dee0e9}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;width:calc(100% + 16px);margin-left:-8px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list:last-child{margin-bottom:0}.ur-registered-from .ui-widget select,.ur-registered-from input[type=date],.ur-registered-from input[type=email],.ur-registered-from input[type=file],.ur-registered-from input[type=month],.ur-registered-from input[type=number],.ur-registered-from input[type=password],.ur-registered-from input[type=phone],.ur-registered-from input[type=tel],.ur-registered-from input[type=text],.ur-registered-from input[type=time],.ur-registered-from input[type=timepicker],.ur-registered-from input[type=url],.ur-registered-from input[type=week],.ur-registered-from select,.ur-registered-from textarea{width:100%;max-width:100%;height:32px;line-height:initial;display:block;color:#4c5477;font-size:13px;padding:4px 8px;border-radius:3px;border:1px solid #dee0e9;box-shadow:0 0 0 transparent}.ur-registered-from .ui-widget select:focus,.ur-registered-from input[type=date]:focus,.ur-registered-from input[type=email]:focus,.ur-registered-from input[type=file]:focus,.ur-registered-from input[type=month]:focus,.ur-registered-from input[type=number]:focus,.ur-registered-from input[type=password]:focus,.ur-registered-from input[type=phone]:focus,.ur-registered-from input[type=tel]:focus,.ur-registered-from input[type=text]:focus,.ur-registered-from input[type=time]:focus,.ur-registered-from input[type=timepicker]:focus,.ur-registered-from input[type=url]:focus,.ur-registered-from input[type=week]:focus,.ur-registered-from select:focus,.ur-registered-from textarea:focus{border-color:#475bb2}.ur-registered-from .ui-widget select::-webkit-input-placeholder,.ur-registered-from input[type=date]::-webkit-input-placeholder,.ur-registered-from input[type=email]::-webkit-input-placeholder,.ur-registered-from input[type=file]::-webkit-input-placeholder,.ur-registered-from input[type=month]::-webkit-input-placeholder,.ur-registered-from input[type=number]::-webkit-input-placeholder,.ur-registered-from input[type=password]::-webkit-input-placeholder,.ur-registered-from input[type=phone]::-webkit-input-placeholder,.ur-registered-from input[type=tel]::-webkit-input-placeholder,.ur-registered-from input[type=text]::-webkit-input-placeholder,.ur-registered-from input[type=time]::-webkit-input-placeholder,.ur-registered-from input[type=timepicker]::-webkit-input-placeholder,.ur-registered-from input[type=url]::-webkit-input-placeholder,.ur-registered-from input[type=week]::-webkit-input-placeholder,.ur-registered-from select::-webkit-input-placeholder,.ur-registered-from textarea::-webkit-input-placeholder{color:#b6bbcf}.ur-registered-from .ui-widget select::-ms-input-placeholder,.ur-registered-from input[type=date]::-ms-input-placeholder,.ur-registered-from input[type=email]::-ms-input-placeholder,.ur-registered-from input[type=file]::-ms-input-placeholder,.ur-registered-from input[type=month]::-ms-input-placeholder,.ur-registered-from input[type=number]::-ms-input-placeholder,.ur-registered-from input[type=password]::-ms-input-placeholder,.ur-registered-from input[type=phone]::-ms-input-placeholder,.ur-registered-from input[type=tel]::-ms-input-placeholder,.ur-registered-from input[type=text]::-ms-input-placeholder,.ur-registered-from input[type=time]::-ms-input-placeholder,.ur-registered-from input[type=timepicker]::-ms-input-placeholder,.ur-registered-from input[type=url]::-ms-input-placeholder,.ur-registered-from input[type=week]::-ms-input-placeholder,.ur-registered-from select::-ms-input-placeholder,.ur-registered-from textarea::-ms-input-placeholder{color:#b6bbcf}.ur-registered-from .ui-widget select::placeholder,.ur-registered-from input[type=date]::placeholder,.ur-registered-from input[type=email]::placeholder,.ur-registered-from input[type=file]::placeholder,.ur-registered-from input[type=month]::placeholder,.ur-registered-from input[type=number]::placeholder,.ur-registered-from input[type=password]::placeholder,.ur-registered-from input[type=phone]::placeholder,.ur-registered-from input[type=tel]::placeholder,.ur-registered-from input[type=text]::placeholder,.ur-registered-from input[type=time]::placeholder,.ur-registered-from input[type=timepicker]::placeholder,.ur-registered-from input[type=url]::placeholder,.ur-registered-from input[type=week]::placeholder,.ur-registered-from select::placeholder,.ur-registered-from textarea::placeholder{color:#b6bbcf}.ur-registered-from .ui-widget select:disabled,.ur-registered-from input[type=date]:disabled,.ur-registered-from input[type=email]:disabled,.ur-registered-from input[type=file]:disabled,.ur-registered-from input[type=month]:disabled,.ur-registered-from input[type=number]:disabled,.ur-registered-from input[type=password]:disabled,.ur-registered-from input[type=phone]:disabled,.ur-registered-from input[type=tel]:disabled,.ur-registered-from input[type=text]:disabled,.ur-registered-from input[type=time]:disabled,.ur-registered-from input[type=timepicker]:disabled,.ur-registered-from input[type=url]:disabled,.ur-registered-from input[type=week]:disabled,.ur-registered-from select:disabled,.ur-registered-from textarea:disabled{color:#b6bbcf;background:#f0f1f5}.ur-registered-from select{padding-right:0}.ur-registered-from label{display:block;width:100%;margin-bottom:8px;color:#4c5477;font-size:13px;font-weight:500;line-height:1.25}.ur-registered-from textarea{padding:10px;height:100px}.ur-registered-from .ur-builder-wrapper{position:relative;-webkit-box-flex:1;-webkit-flex:1;flex:1;height:calc(100vh - 89px);background:#fafafc;border-left:1px solid #dee0e9;overflow-y:auto}.ur-registered-from .ur-builder-wrapper input[type=date]:disabled,.ur-registered-from .ur-builder-wrapper input[type=email]:disabled,.ur-registered-from .ur-builder-wrapper input[type=file]:disabled,.ur-registered-from .ur-builder-wrapper input[type=month]:disabled,.ur-registered-from .ur-builder-wrapper input[type=number]:disabled,.ur-registered-from .ur-builder-wrapper input[type=password]:disabled,.ur-registered-from .ur-builder-wrapper input[type=phone]:disabled,.ur-registered-from .ur-builder-wrapper input[type=tel]:disabled,.ur-registered-from .ur-builder-wrapper input[type=text]:disabled,.ur-registered-from .ur-builder-wrapper input[type=time]:disabled,.ur-registered-from .ur-builder-wrapper input[type=timepicker]:disabled,.ur-registered-from .ur-builder-wrapper input[type=url]:disabled,.ur-registered-from .ur-builder-wrapper input[type=week]:disabled,.ur-registered-from .ur-builder-wrapper select:disabled,.ur-registered-from .ur-builder-wrapper textarea:disabled{background:#fff}.ur-registered-from .ur-builder-wrapper .ur-builder-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse;margin:16px 0;position:relative}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper .ur-edit-form-name{width:32px;height:32px;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border-radius:3px;margin-bottom:0;color:#4c5477;background:#dee0e9;border:1px solid transparent}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper .ur-edit-form-name::after{content:'';border-radius:3px;position:absolute;left:32px;right:calc(100% - 32px);height:30px;border-radius:0 3px 3px 0;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input{color:#2d3559;background:0 0;font-size:16px;font-weight:500;width:auto;padding:4px 8px;border-color:transparent;pointer-events:none;z-index:1;border:1px solid transparent}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input.ur-editing{border-color:transparent;pointer-events:all}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input.ur-editing+.ur-edit-form-name{color:#fff;background:#475bb2;border-radius:3px 0 0 3px;border:1px solid #475bb2}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input.ur-editing+.ur-edit-form-name::after{top:0;right:0;border:1px solid #475bb2}.ur-registered-from .ur-builder-wrapper.ur-multipart .ur-button-quick-links{bottom:60px}.ur-registered-from .ur-builder-wrapper.ur-multipart .ur-builder-wrapper-footer .button.button-style-customizer{bottom:124px}.ur-registered-from .ur-selected-inputs{box-sizing:border-box;padding:0 20px}.ur-registered-from .ur-selected-inputs .ur-single-row{border-radius:3px;position:relative;border:1px solid transparent}.ur-registered-from .ur-selected-inputs .ur-single-row:last-child{margin-bottom:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids{display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;right:0;z-index:1;opacity:0;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button{display:-webkit-box;display:-webkit-flex;display:flex;border-radius:0;border:0;background-color:#676d8a;color:#fff;font-size:16px;height:auto;width:auto;cursor:pointer;padding:4px 6px;line-height:1;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button svg{width:16px;height:16px;font-size:16px;fill:#fff}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:before{font-family:dashicons}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button.ur-remove-row:hover{background:red}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:hover{background:#475bb2}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:first-child{border-radius:3px 0 0 3px;border-right:1px solid rgba(255,255,255,.2)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:nth-child(2){border-radius:0 3px 3px 0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content{background:#fff;padding:1rem;position:absolute;top:40px;right:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;white-space:nowrap;border:1px solid #dee0e9;border-radius:4px;box-shadow:1px 4px 14px 1px rgba(26,31,51,.1)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content small{font-size:12px;margin-bottom:.5rem;color:#676d8a}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content .ur-grid-selector{cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;margin-right:.5rem}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content .ur-grid-selector svg{width:32px;height:32px;fill:#676d8a}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content .ur-grid-selector:last-child{margin-right:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content::before{content:'';width:8px;height:8px;border:solid #dee0e9;border-width:1px;border-left:transparent;border-bottom:transparent;position:absolute;top:-5px;right:36px;background:#fff;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists{width:100%;display:-webkit-box;display:-webkit-flex;display:flex;text-align:center;box-sizing:border-box;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border:1px solid transparent;border-radius:4px;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item{display:inline-block;text-align:left;border:0 none;padding:15px;-webkit-box-flex:1;-webkit-flex:1;flex:1;border:1px solid transparent;border-radius:4px;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item{margin-bottom:5px;position:relative;padding:15px;cursor:move;border:1px solid transparent;border-radius:4px;-webkit-transition:border-color .35s;transition:border-color .35s}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .select2-container{width:100%!important}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .select2-container .select2-search--inline .select2-search__field{height:auto;min-width:10px;background:0 0;margin:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-input-type-signature canvas{background:rgba(255,255,255,.5);border:1px solid #ddd}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item:last-child{margin-bottom:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item.ur-item-active,.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item:hover{background:#fff;border:1px solid #475bb2}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item.ui-sortable-helper{box-shadow:0 0 10px 5px rgba(45,53,89,.1)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item.ui-sortable-placeholder{visibility:visible!important;border:1px dashed #b6bbcf;background-color:#f0f1f5}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons{display:none;position:absolute;right:10px;width:50px;text-align:center;padding:0;font-size:10px;top:10px;color:#b6bbcf}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons span{cursor:pointer;font-size:16px;height:auto}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons span:hover{color:#475bb2}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons:hover .ur-action-buttons{display:block}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons .ur-trash:hover{color:#ff4149}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_top_left{text-align:left}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_center{text-align:center}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_top_right{text-align:right}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_disabled{display:none}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item:hover .ur-action-buttons{display:block}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item>li.ur-item-dragged{list-style:none;width:100%;text-align:center;height:60px!important;box-sizing:border-box}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item>li.ur-item-dragged .spinner{float:none}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me{display:table;width:100%;height:100%}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me .user-registration-dragged-me-text{display:table-cell;vertical-align:middle;text-align:center}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me .user-registration-dragged-me-text p{display:inline-block;position:relative;color:#b6bbcf;padding-left:26px;padding-top:8px}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me .user-registration-dragged-me-text p::before{position:absolute;font-family:Dashicons;content:'\f545';font-size:22px;left:0;top:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me:empty{padding:15px;text-align:center;border-radius:4px;border:1px dashed #b6bbcf;background-color:#f0f1f5}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me:empty::before{content:'\f132';font-size:32px;color:#b6bbcf;width:32px;height:32px;font-family:dashicons;display:table-cell;vertical-align:middle}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item.ur-sortable-active .ur-registered-item{margin-bottom:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item.ur-sortable-active .user-registration-dragged-me{display:none}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:first-child{border-radius:4px 0 0 4px}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:nth-child(2){border-radius:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:nth-child(3){border-radius:0 4px 4px 0}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grids{opacity:1}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grid-lists{background:#fff;border:1px solid #b6bbcf}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grid-lists .ur-grid-list-item{border-left:1px solid #b6bbcf}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grid-lists .ur-grid-list-item:first-child{border-color:transparent}.ur-registered-from .ur-selected-inputs .ur-add-new-row{display:block;margin:20px auto;width:auto;height:32px;text-align:center;font-family:inherit}.ur-registered-from .ur-selected-inputs .ur-add-new-row::before{width:16px;height:16px;font-size:16px;margin-right:10px;font-family:dashicons;vertical-align:middle;padding:1px 10px 1px 0;border-right:1px solid rgba(255,255,255,.3)}.ur-registered-from .ur-selected-inputs li.ur-registered-item{width:120px!important}.ur-registered-from .ur-selected-inputs li.ur-registered-item.ui-sortable-placeholder{margin-left:0;width:100%!important;visibility:visible!important;border:1px dashed #acaeba;background-color:#f0f1f5}.ur-registered-from .ur-builder-wrapper-footer .button.button-style-customizer{height:48px;width:48px;bottom:72px;box-shadow:1px 2px 8px rgba(45,53,89,.15)}.ur-registered-from .ur-builder-wrapper-footer .button.button-style-customizer .dashicons{font-size:24px;height:24px;width:24px}.ur-registered-from .ur-builder-wrapper-footer .ur-button-quick-links{width:48px;height:48px;position:fixed;cursor:pointer;color:#4c5477;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;right:32px;bottom:16px;background:#fff;border:1px solid #dee0e9;border-radius:24px;box-shadow:0 2px 10px rgba(45,53,89,.1);z-index:1}.ur-registered-from .ur-builder-wrapper-footer .ur-button-quick-links span{font-size:20px;font-weight:600;margin:0 auto}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content{position:fixed;background:#fff;padding:12px 16px;border-radius:4px;bottom:58px;right:30px;z-index:2;width:225px;border:1px solid #dee0e9;box-shadow:2px 4px 12px rgba(45,53,89,.1)}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content li{margin-bottom:8px}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content a{color:#4c5477}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content a:hover{color:#475bb2}.ur-registered-from .ur-advance-setting,.ur-registered-from .ur-general-setting{margin:16px 0}.ur-registered-from .ur-advance-setting-block{margin-top:25px}.ur-registered-from .form-row{margin-bottom:1em}.ur-registered-from .form-row .description{color:#676d8a;margin:4px 0;display:block}.ur-registered-from .form-row .ur-checkbox-list label,.ur-registered-from .form-row .ur-radio-list label{display:inline}.ur-registered-from .ur-registered-item.dragging{border:0;box-shadow:0 0 0 transparent;border-radius:0;padding:5px 10px;height:auto;background-color:#475bb2;color:#fff;text-align:center;width:200px}.ur-registered-from .ur-advance-setting-block,.ur-registered-from .ur-general-setting-block{display:none}.ur-registered-from .ur-advance-setting label,.ur-registered-from .ur-general-setting label{display:block}.ur-registered-from .add,.ur-registered-from .remove{background:#fff;border:1px solid #ddd;color:#676d8a;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1 0 32px;flex:1 0 32px;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:32px;max-width:32px;border-radius:4px;position:relative}.ur-registered-from .add:hover,.ur-registered-from .remove:hover{background:#475bb2;border-color:#475bb2;color:#fff}.ur-registered-from .add .dashicons,.ur-registered-from .remove .dashicons{line-height:22px}.ur-registered-from .add{margin-right:8px}.ur-registered-from .ur-options-list li{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.ur-registered-from .ur-options-list li .editor-block-mover__control-drag-handle{margin-right:8px;cursor:-webkit-grab;cursor:grab}.ur-registered-from .ur-options-list li .editor-block-mover__control-drag-handle svg{fill:#676d8a}.ur-registered-from .ur-options-list li input{margin-right:8px}.ur-registered-from .ur-options-list .ui-sortable-handle{padding:5px;border-radius:3px;border:1px solid transparent}.ur-registered-from .ur-options-list .ui-sortable-handle:active{padding:5px;background:#fff;border:1px solid #475bb2;box-shadow:0 0 20px rgba(0,0,0,.2)}.ur-registered-from .ur-options-list .ui-sortable-handle.ui-sortable-placeholder{background-color:#dee0e9;visibility:visible!important}.ur-registered-from .urcl-rules{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:8px}.ur-registered-from .urcl-rules>div{margin-right:8px}.ur-registered-from .urcl-rules .urcl-operator{width:78px}.ur-registered-from .urcl-rules .urcl-field,.ur-registered-from .urcl-rules .urcl-value{max-width:27%;-webkit-box-flex:1;-webkit-flex:1 0 27%;flex:1 0 27%}#sortable{min-height:400px}.tips{cursor:help;text-decoration:none}img.tips{padding:5px 0 0}#tiptip_holder{display:none;z-index:8675309;position:absolute;top:0;left:0}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-left:-6px;border-top-color:#dee0e9}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-left:-6px;border-bottom-color:#4c5477}#tiptip_holder.tip_right{padding-left:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-left:-5px;border-right-color:#dee0e9}#tiptip_holder.tip_left{padding-right:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-left:-7px;border-left-color:#dee0e9}#tiptip_content,.ur_error_tip{color:#fff;font-size:.9em;max-width:150px;background:#4c5477;text-align:center;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2)}#tiptip_content code,.ur_error_tip code{padding:1px;background:#888}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}.ur_error_tip{max-width:20em;line-height:1.8em;position:absolute;white-space:normal;background:#ff4149;margin:1.5em 1px 0 -1em;z-index:9999999}.ur_error_tip::after{content:'';display:block;border:8px solid #ff4149;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-3px;left:50%;margin:-1em 0 0 -3px}.user-registration-help-tip{color:#676d8a;display:inline-block;font-size:16px;font-style:normal;height:16px;line-height:16px;position:relative;vertical-align:middle;width:16px}.user-registration-help-tip::after{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"";cursor:help}.select2-results__option .wrap:before{content:"\2610";width:25px;height:25px;padding-right:10px}.select2-results__option[data-selected=true] .wrap:before{content:"\2714"}.select2-drop,.select2-dropdown{z-index:999999!important}.select2-results{line-height:1.5em}.select2-results .select2-results__group,.select2-results .select2-results__option{margin:0;padding:8px}.select2-dropdown{border-color:#ddd}.select2-dropdown--below{box-shadow:0 1px 1px rgba(0,0,0,.1)}.select2-dropdown--above{box-shadow:0 -1px 1px rgba(0,0,0,.1)}.select2-container .select2-selection__rendered.ui-sortable li{cursor:move}.select2-container .select2-selection{border-color:#ddd}.select2-container .select2-search__field{min-width:20px}.select2-container .select2-selection--single{height:32px}.select2-container .select2-selection--single .select2-selection__rendered{line-height:32px;padding-right:24px}.select2-container .select2-selection--single .select2-selection__arrow{right:3px;height:30px}.select2-container .select2-selection--multiple{min-height:28px;border-radius:4px;line-height:1.5;border:1px solid #ddd!important}.select2-container .select2-selection--multiple li{margin:0}.select2-container .select2-selection--multiple .select2-selection__choice{padding:2px 6px}.select2-container .select2-selection__clear{color:#999;margin-top:-1px}.select2-container .select2-search--inline .select2-search__field{font-family:inherit;font-size:inherit;font-weight:inherit;padding:3px 0;margin:0;line-height:1;min-height:26px}#ur-tab-registered-fields li.ur-registered-item.ui-draggable-disabled{color:#b6bbcf}#ur-tab-registered-fields li.ur-registered-item.ui-draggable-disabled.ur-upgradable-field{cursor:pointer!important}#ur-tab-registered-fields li.ur-registered-item.ui-draggable-disabled:hover{background:#f0f1f5;cursor:not-allowed}.ur-no-pointer{pointer-events:none}.user-registration table.form-table .dashicons{margin-bottom:2px;vertical-align:middle}#smart-tags{text-align:center}.form-settings-tab{cursor:pointer;padding:10px 15px;color:#2d3559;background:#e8e9ee;margin-bottom:10px;line-height:1.2;border-radius:4px}.form-settings-tab.active{background:#475bb2;color:#fff}#profile-page form#your-profile .flatpickr-input[readonly]{background-color:#fff}.ur-registered-inputs .ur-toggle-heading{cursor:pointer}.ur-registered-inputs .ur-toggle-heading:before{content:'\f142';cursor:pointer;display:block;font:400 20px/1 Dashicons;line-height:.5!important;padding:4px;position:relative;right:0;top:0;float:right}.ur-registered-inputs .ur-toggle-heading.closed:before{content:'\f140'}body.ur-full-screen-mode{margin-top:-32px}body.ur-full-screen-mode #wpbody-content{padding-bottom:45px}body.ur-full-screen-mode #wpwrap #wpcontent{margin-left:0;padding-left:0}body.ur-full-screen-mode #wpwrap #wpcontent #wpadminbar{display:none}body.ur-full-screen-mode #wpwrap #wpcontent #wpbody .ur-tab-content{padding:20px}body.ur-full-screen-mode #wpwrap #wpcontent #wpbody #menu-management-liquid{margin-top:0}body.ur-full-screen-mode #wpwrap #wpcontent #wpbody #menu-management-liquid .menu-edit{margin-bottom:0;box-shadow:none;left:0!important}body.ur-full-screen-mode #wpwrap #adminmenumain{display:none}body.ur-full-screen-mode .ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-contents{height:calc(100vh - 98px)}body.ur-full-screen-mode .ur-registered-from .ur-builder-wrapper{height:calc(100vh - 57px)}@-webkit-keyframes ur-circle-loading{0%,100%{-webkit-animation-timing-function:cubic-bezier(.2,0,.8,1);animation-timing-function:cubic-bezier(.2,0,.8,1)}50%{-webkit-animation-timing-function:cubic-bezier(0,.2,1,.8);animation-timing-function:cubic-bezier(0,.2,1,.8)}0%{-webkit-transform:rotate(0) translate(0,-20px) scale(0);transform:rotate(0) translate(0,-20px) scale(0)}50%{-webkit-transform:rotate(180deg) translate(0,-20px) scale(1);transform:rotate(180deg) translate(0,-20px) scale(1)}100%{-webkit-transform:rotate(360deg) translate(0,-20px) scale(0);transform:rotate(360deg) translate(0,-20px) scale(0)}}@keyframes ur-circle-loading{0%,100%{-webkit-animation-timing-function:cubic-bezier(.2,0,.8,1);animation-timing-function:cubic-bezier(.2,0,.8,1)}50%{-webkit-animation-timing-function:cubic-bezier(0,.2,1,.8);animation-timing-function:cubic-bezier(0,.2,1,.8)}0%{-webkit-transform:rotate(0) translate(0,-20px) scale(0);transform:rotate(0) translate(0,-20px) scale(0)}50%{-webkit-transform:rotate(180deg) translate(0,-20px) scale(1);transform:rotate(180deg) translate(0,-20px) scale(1)}100%{-webkit-transform:rotate(360deg) translate(0,-20px) scale(0);transform:rotate(360deg) translate(0,-20px) scale(0)}}@-webkit-keyframes ur-circle-loading-keyframe{0%,100%{-webkit-animation-timing-function:cubic-bezier(.2,0,.8,1);animation-timing-function:cubic-bezier(.2,0,.8,1)}50%{-webkit-animation-timing-function:cubic-bezier(0,.2,1,.8);animation-timing-function:cubic-bezier(0,.2,1,.8)}0%{-webkit-transform:rotate(0) translate(0,-20px) scale(0);transform:rotate(0) translate(0,-20px) scale(0)}50%{-webkit-transform:rotate(180deg) translate(0,-20px) scale(1);transform:rotate(180deg) translate(0,-20px) scale(1)}100%{-webkit-transform:rotate(360deg) translate(0,-20px) scale(0);transform:rotate(360deg) translate(0,-20px) scale(0)}}.ur-circle-loading{position:relative;width:100px!important;height:100px!important;-webkit-transform:translate(-50px,-50px) scale(.5) translate(50px,50px);-ms-transform:translate(-50px,-50px) scale(.5) translate(50px,50px);transform:translate(-50px,-50px) scale(.5) translate(50px,50px)}.ur-circle-loading::after,.ur-circle-loading::before{content:'';position:absolute;top:70px;left:70px;-webkit-animation:ur-circle-loading-keyframe 1.5s linear infinite;animation:ur-circle-loading-keyframe 1.5s linear infinite;width:60px;height:60px;border-radius:50%;background:#475bb2}.ur-circle-loading::after{-webkit-animation-delay:-.75s;animation-delay:-.75s;background:#668fe5}@media only screen and (max-width:1599px){.ur_addons_wrap .products li{width:32.66%}.ur_addons_wrap .products li:nth-child(5n){margin:0 1% 1% 0!important}.ur_addons_wrap .products li:nth-child(3n){margin:0 0 1% 0!important}}@media screen and (max-width:1400px){.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list .ur-registered-item{font-size:12px}.ur-registered-from .urcl-rules .urcl-field{max-width:61%;-webkit-box-flex:1;-webkit-flex:1 0 60%;flex:1 0 60%;margin-bottom:5px}.ur-registered-from .urcl-rules .urcl-value{-webkit-box-ordinal-group:5;-webkit-order:4;order:4;max-width:87%;-webkit-box-flex:1;-webkit-flex:1 0 86%;flex:1 0 86%}.ur-registered-from .urcl-rules .add{-webkit-box-ordinal-group:4;-webkit-order:3;order:3;margin-right:0}.ur-registered-from .urcl-rules .remove{-webkit-box-ordinal-group:6;-webkit-order:5;order:5}}@media only screen and (max-width:1120px){.ur_addons_wrap .products li{width:49%;margin:0 2% 2% 0!important}.ur_addons_wrap .products li:nth-child(3n),.ur_addons_wrap .products li:nth-child(5n){margin:0 2% 2% 0!important}.ur_addons_wrap .products li:nth-child(2n){margin:0 0 2% 0!important}}@media screen and (max-width:960px){.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list .ur-registered-item{float:none;width:100%}.ur-registered-from .ur-registered-inputs .ur-single-row .ur-grid-lists,.ur-registered-from .ur-registered-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item,.ur-registered-from .ur-registered-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item{padding:10px}}@media only screen and (max-width:900px){.ur_addons_wrap .products li{width:49%}}@media screen and (max-width:782px){body.user-registration_page_add-new-registration{min-width:0!important}.ur-registered-from{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.ur-registered-from .ur-registered-inputs{width:100%;margin-bottom:10px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list .ur-registered-item{float:left;width:48%}.ur-registered-from .ur-selected-inputs{width:100%}}@media only screen and (min-width:769px) and (max-width:1000px){.user-registration_page_add-new-registration #post-body-content{min-width:0}}@media screen and (max-width:600px){.user-registration_page_add-new-registration .major-publishing-actions{clear:both;padding:10px 0 19px;line-height:28px}.user-registration_page_add-new-registration .major-publishing-actions .ur-form-name{width:100%}.user-registration_page_add-new-registration .major-publishing-actions .publishing-action{text-align:left;float:none;margin-top:15px}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;display:block}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item{width:100%!important}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:nth-child(1n+2){border-left:0 none;border-top:2px solid #f2f2f2}}@media only screen and (max-width:480px){.ur_addons_wrap .products li,.ur_addons_wrap .products li:nth-child(2n),.ur_addons_wrap .products li:nth-child(3n),.ur_addons_wrap .products li:nth-child(5n){width:100%;margin:0 0 3% 0!important}}@-webkit-keyframes open-message{0%{opacity:0;-webkit-transform:translateY(-120%);transform:translateY(-120%)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes open-message{0%{opacity:0;-webkit-transform:translateY(-120%);transform:translateY(-120%)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes close-message{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes close-message{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}.ur-builder-message-container{position:fixed;top:32px;left:0;right:0;max-width:400px;margin:0 auto;z-index:9999}.ur-builder-message-container .ur-message{display:none;margin:0 auto;margin-top:16px;-webkit-transition:all 240ms cubic-bezier(0,0,.2,1) 0s;transition:all 240ms cubic-bezier(0,0,.2,1) 0s;z-index:99999;height:0}.ur-builder-message-container .ur-message .ur-error,.ur-builder-message-container .ur-message .ur-success{background:#fff;padding:8px 16px;border-radius:3px;border-left:3px solid;position:relative;box-shadow:0 1px 8px 2px rgba(26,31,51,.1)}.ur-builder-message-container .ur-message .ur-error p,.ur-builder-message-container .ur-message .ur-success p{margin:8px 0}.ur-builder-message-container .ur-message .ur-error p::after,.ur-builder-message-container .ur-message .ur-error p::before,.ur-builder-message-container .ur-message .ur-success p::after,.ur-builder-message-container .ur-message .ur-success p::before{font-family:dashicons;width:20px;height:20px;font-size:20px;margin-right:8px;margin-top:-4px;line-height:1;display:inline-block;vertical-align:middle}.ur-builder-message-container .ur-message .ur-success{border-color:#7ad03a}.ur-builder-message-container .ur-message .ur-success p::before{content:"\f12a";color:#7ad03a}.ur-builder-message-container .ur-message .ur-error{border-color:red}.ur-builder-message-container .ur-message .ur-error p::before{content:"\f534";color:red}.ur-builder-message-container .ur-message .dashicons{cursor:pointer;position:absolute;right:16px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);line-height:1}.ur-builder-message-container .ur-message.entered{display:block;height:50px;-webkit-animation:240ms cubic-bezier(.175,.885,.32,1.175) 0s 1 normal both open-message;animation:240ms cubic-bezier(.175,.885,.32,1.175) 0s 1 normal both open-message}.ur-builder-message-container .ur-message.exiting{display:block;-webkit-animation:120ms cubic-bezier(.4,0,1,1) 0s 1 normal both close-message;animation:120ms cubic-bezier(.4,0,1,1) 0s 1 normal both close-message}.ur-builder-message-container .ur-message:first-child{margin-top:1.5rem}
1
  .select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected],.select2-results__option[data-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff}.select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:0 0;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true],.select2-container--default .select2-results__option[data-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected],.select2-container--default .select2-results__option--highlighted[data-selected]{background-color:#0073aa;color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#fff),to(#eee));background-image:-webkit-linear-gradient(top,#fff 50%,#eee 100%);background-image:linear-gradient(to bottom,#fff 50%,#eee 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single:focus{border:1px solid #0073aa}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#eee),to(#ccc));background-image:-webkit-linear-gradient(top,#eee 50%,#ccc 100%);background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #0073aa}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:0 0;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-gradient(linear,left top,left bottom,from(white),color-stop(50%,#eee));background-image:-webkit-linear-gradient(top,#fff 0,#eee 50%);background-image:linear-gradient(to bottom,#fff 0,#eee 50%);background-repeat:repeat-x}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#eee),to(white));background-image:-webkit-linear-gradient(top,#eee 50%,#fff 100%);background-image:linear-gradient(to bottom,#eee 50%,#fff 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #0073aa}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #0073aa}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected],.select2-container--classic .select2-results__option--highlighted[data-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#0073aa}
2
+ @charset "UTF-8";@font-face{font-family:UserRegistration;src:url(../fonts/UserRegistration.eot?5hlcw0);src:url(../fonts/UserRegistration.eot?5hlcw0#iefix) format("embedded-opentype"),url(../fonts/UserRegistration.ttf?5hlcw0) format("truetype"),url(../fonts/UserRegistration.woff?5hlcw0) format("woff"),url(../fonts/UserRegistration.svg?5hlcw0#UserRegistration) format("svg");font-weight:400;font-style:normal;font-display:block}[class*=' ur-icon-'],[class^=ur-icon-]{font-family:UserRegistration!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}.ur-icon-input-first-name::before{content:""}.ur-icon-input-last-name::before{content:""}.ur-icon-input-field::before{content:""}.ur-icon-input-password::before{content:""}.ur-icon-input-checkbox::before{content:""}.ur-icon-radio::before{content:""}.ur-icon-number::before{content:""}.ur-icon-phone::before{content:""}.ur-icon-calendar::before{content:""}.ur-icon-drop-down::before{content:""}.ur-icon-textarea::before{content:""}.ur-icon-email::before{content:""}.ur-icon-email-secondary::before{content:""}.ur-icon-email-confirm::before{content:""}.ur-icon-invite-codes::before{content:""}.ur-icon-password::before{content:""}.ur-icon-password-confirm::before{content:""}.ur-icon-user::before{content:""}.ur-icon-user-nickname::before{content:""}.ur-icon-user-display-name::before{content:""}.ur-icon-user-bio::before{content:""}.ur-icon-website::before{content:""}.ur-icon-flag::before{content:""}.ur-icon-map-one::before{content:""}.ur-icon-map-two::before{content:""}.ur-icon-zip-code::before{content:""}.ur-icon-select2::before{content:""}.ur-icon-multi-select::before{content:""}.ur-icon-section-title::before{content:""}.ur-icon-time-picker::before{content:""}.ur-icon-state::before{content:""}.ur-icon-buildings::before{content:""}.ur-icon-text-editor::before{content:""}.ur-icon-bill::before{content:""}.ur-icon-doc::before{content:""}.ur-icon-file-upload::before{content:""}.ur-icon-file-dollar::before{content:""}.ur-icon-code::before{content:""}.ur-icon-mailchimp::before{content:""}.ur-form-container .button,.ur-form-container button,.user-registration .button,.user-registration button{-webkit-transition:all .25s ease 0s;transition:all .25s ease 0s}.ur-form-container .button.button-icon,.ur-form-container button.button-icon,.user-registration .button.button-icon,.user-registration button.button-icon{width:32px;padding:0}.ur-form-container .button.button-icon .dashicons,.ur-form-container button.button-icon .dashicons,.user-registration .button.button-icon .dashicons,.user-registration button.button-icon .dashicons{line-height:1;vertical-align:middle}.ur-form-container .button.button-icon-round,.ur-form-container button.button-icon-round,.user-registration .button.button-icon-round,.user-registration button.button-icon-round{border-radius:50%}.ur-form-container .button .ur-spinner,.ur-form-container button .ur-spinner,.user-registration .button .ur-spinner,.user-registration button .ur-spinner{width:16px;height:16px;margin-left:6px;margin-bottom:2px;display:inline-block;vertical-align:middle}.ur-form-container .button-primary,.user-registration .button-primary{background:#475bb2;border-color:#475bb2;box-shadow:0 1px 0 #475bb2;text-shadow:none}.ur-form-container .button-primary:active,.ur-form-container .button-primary:focus,.ur-form-container .button-primary:hover,.user-registration .button-primary:active,.user-registration .button-primary:focus,.user-registration .button-primary:hover{background:#38488e;border-color:#38488e;box-shadow:0 1px 0 #38488e}.ur-form-container .button-primary:disabled,.user-registration .button-primary:disabled{color:#b2bae0!important;background:#697ac3!important;border-color:#697ac3!important}.ur-form-container .button-secondary,.user-registration .button-secondary{color:#2d3559;background:#dee0e9;border-color:#dee0e9;box-shadow:0 1px 0 #dee0e9}.ur-form-container .button-secondary:active,.ur-form-container .button-secondary:focus,.ur-form-container .button-secondary:hover,.user-registration .button-secondary:active,.user-registration .button-secondary:focus,.user-registration .button-secondary:hover{color:#2d3559;background:#b6bbcf;border-color:#b6bbcf;box-shadow:0 1px 0 #b6bbcf}.ur-form-container .button-danger,.user-registration .button-danger{color:#fff;background:#ff4149;border-color:#ff4149;box-shadow:0 1px 0 #ff4149}.ur-form-container .button-danger:active,.ur-form-container .button-danger:focus,.ur-form-container .button-danger:hover,.user-registration .button-danger:active,.user-registration .button-danger:focus,.user-registration .button-danger:hover{color:#fff;background:#ee2a32;border-color:#ee2a32;box-shadow:0 1px 0 #ee2a32}.ur-form-container .publishing-action .button,.ur-form-container .publishing-action button,.ur-form-container .publishing-action input[type=button],.ur-form-container .publishing-action input[type=submit],.user-registration .publishing-action .button,.user-registration .publishing-action button,.user-registration .publishing-action input[type=button],.user-registration .publishing-action input[type=submit]{margin-right:5px}.ur-registered-item.ui-draggable-dragging{padding:10px 10px;line-height:20px;background:#475bb2;color:#fff;text-align:center;margin-bottom:7px;word-break:break-word;white-space:normal;width:200px!important;z-index:9}.ur-registered-item.ui-draggable-dragging span{font-size:14px;line-height:20px;width:auto;height:auto;margin-right:3px}.select2-container .ur-select-all-countries-button{margin:6px 3px 4px 6px}.select2-container .ur-unselect-all-countries-button{margin:6px 3px 4px}table.user-registration-table{width:100%;background:#fff;border-collapse:collapse}table.user-registration-table caption,table.user-registration-table td,table.user-registration-table th{padding:1rem;text-align:left;border-bottom:1px solid #dee0e9}table.user-registration-table caption,table.user-registration-table th{font-size:14px;font-weight:500}table.user-registration-table thead th{background:#fafafc}table.user-registration-table input,table.user-registration-table select,table.user-registration-table textarea{width:100%;box-shadow:none;border-radius:4px}.blockUI.blockOverlay::before{width:16px;height:16px;position:absolute;display:block;content:'';-webkit-animation:spin 1s ease-in-out infinite;animation:spin 1s ease-in-out infinite;background:url(../images/icons/loader.svg) center center;background-size:cover}.ur-spinner::before{width:16px;height:16px;position:absolute;display:block;content:'';-webkit-animation:spin 1s ease-in-out infinite;animation:spin 1s ease-in-out infinite;background:url(../images/icons/loader.svg) center center;background-size:cover}@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ur-export-users-page{margin-top:6px}.ur-export-users-page .nav-tab-content .nav-tab-inside .postbox{width:50%;-webkit-box-flex:1;-webkit-flex:1;flex:1}.ur-export-users-page .nav-tab-content .hndle,.ur-export-users-page .nav-tab-content .stuffbox .hndle{margin:10px;padding-bottom:10px}.ur_addons_wrap .products{overflow:hidden;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.ur_addons_wrap .products li{margin:0 1% 1% 0!important;padding:0;vertical-align:top;width:19.2%;float:left}.ur_addons_wrap .products li:nth-child(5n){margin:0 0 1% 0!important}.ur_addons_wrap .products li a{text-decoration:none;color:inherit;border:1px solid #ddd;display:block;min-height:220px;overflow:hidden;background:#f5f5f5;box-shadow:inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.1)}.ur_addons_wrap .products li a .product-image{display:block;background:#fff}.ur_addons_wrap .products li a .product-image img{max-width:100%;display:block;margin:0}.ur_addons_wrap .products li a img.extension-thumb+h3{display:none}.ur_addons_wrap .products li a .price{display:none}.ur_addons_wrap .products li a h2,.ur_addons_wrap .products li a h3{margin:0!important;padding:20px!important;background:#fff}.ur_addons_wrap .products li a p{padding:20px!important;margin:0!important;border-top:1px solid #f1f1f1}.ur_addons_wrap .products li a:focus,.ur_addons_wrap .products li a:hover{background-color:#fff}.clear{clear:both}.wrap.user-registration div.error,.wrap.user-registration div.updated{margin-top:10px}.user-registration_page_add-new-registration #wpfooter{display:none}.user-registration_page_add-new-registration .ur-form-container{margin:0}.user-registration_page_add-new-registration .ur-form-container .ur-loading-container{position:fixed;left:160px;right:0;top:0;bottom:0;background:#fff;display:-webkit-box;display:-webkit-flex;display:flex;z-index:9}.user-registration_page_add-new-registration .ur-form-container .ur-loading-container .ur-circle-loading{margin:auto;left:30px}.user-registration_page_add-new-registration .ur-form-container #menu-management{margin-top:0}.user-registration_page_add-new-registration .ur-form-container #menu-management .menu-edit{position:fixed;left:160px;right:0;border:none;box-shadow:none;margin-bottom:0}.user-registration_page_add-new-registration .ur-form-container #ur-full-screen-mode.closed .ur-fs-close-label{display:none}.user-registration_page_add-new-registration .ur-form-container #ur-full-screen-mode.opened .ur-fs-open-label{display:none}.user-registration_page_add-new-registration #menu-management-liquid{margin-top:0;margin-left:-20px;min-width:calc(100% + 20px)}.user-registration_page_add-new-registration #nav-menu-header{padding:12px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;position:relative;border-color:#dee0e9;background-color:#fff;z-index:9}.user-registration_page_add-new-registration #nav-menu-header .ur-brand-logo{border-right:1px solid #dee0e9}.user-registration_page_add-new-registration #nav-menu-header .ur-brand-logo img{width:32px;height:32px;padding:0 8px;margin-right:8px;display:-webkit-box;display:-webkit-flex;display:flex}.user-registration_page_add-new-registration #nav-menu-header::after,.user-registration_page_add-new-registration #nav-menu-header::before{content:'';display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;left:0;right:0;bottom:0;background:#fff}.user-registration_page_add-new-registration #nav-menu-header::before{top:0;z-index:-1}.user-registration_page_add-new-registration #nav-menu-header::after{height:10px;box-shadow:0 4px 8px rgba(45,53,89,.08);z-index:-2}.user-registration_page_add-new-registration .major-publishing-actions{clear:both;line-height:28px;margin-left:auto}.user-registration_page_add-new-registration .major-publishing-actions .publishing-action{text-align:right;float:right}.user-registration_page_add-new-registration .major-publishing-actions .publishing-action input.code{width:265px;height:33px;padding:0 6px;margin:0;border-color:#dee0e9;background-color:#f0f1f5;border-radius:3px 0 0 3px}.user-registration_page_add-new-registration .major-publishing-actions #copy-shortcode{margin-left:-5px;border-radius:0 4px 4px 0}.user-registration_page_add-new-registration .major-publishing-actions #copy-shortcode svg{fill:#fff;margin-bottom:5px;vertical-align:middle}.ur-backbone-modal *{box-sizing:border-box}.ur-backbone-modal .ur-backbone-modal-content{position:fixed;background-color:#fff;z-index:100000;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:500px}.ur-backbone-modal .ur-backbone-modal-content article{overflow:auto}.ur-backbone-modal.ur-backbone-modal-content{width:75%;min-width:500px}.ur-backbone-modal .select2-container{width:100%!important}.ur-backbone-modal-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;min-height:360px;background-color:#2d3559;opacity:.7;z-index:99900}.ur-backbone-modal-main{padding-bottom:55px}.ur-backbone-modal-main article,.ur-backbone-modal-main header{display:block;position:relative}.ur-backbone-modal-main .ur-backbone-modal-header{height:auto;background-color:#f0f1f5;padding:1em 1.5em;border-bottom:1px solid #dee0e9}.ur-backbone-modal-main .ur-backbone-modal-header h1{margin:0;font-size:18px;font-weight:700;line-height:1.5em}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link{cursor:pointer;color:#777;height:54px;width:54px;padding:0;position:absolute;top:0;right:0;text-align:center;border:0;border-left:1px solid #dee0e9;background-color:transparent;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link::before{font:normal 22px/50px dashicons!important;color:#676d8a;display:block;content:'\f335';font-weight:300}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link:focus,.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link:hover{background-color:#dee0e9;border-color:#ccc;color:#2d3559}.ur-backbone-modal-main .ur-backbone-modal-header .modal-close-link:focus{outline:0}.ur-backbone-modal-main article{padding:1.5em}.ur-backbone-modal-main article p{margin:1.5em 0}.ur-backbone-modal-main article p:first-child{margin-top:0}.ur-backbone-modal-main article p:last-child{margin-bottom:0}.ur-backbone-modal-main article .pagination{padding:10px 0 0;text-align:center}.ur-backbone-modal-main footer{position:absolute;left:0;right:0;bottom:0;z-index:100;padding:1em 1.5em;background-color:#f0f1f5;border-top:1px solid #dfdfdf;box-shadow:0 -4px 4px -4px rgba(0,0,0,.1)}.ur-backbone-modal-main footer .inner{float:right;line-height:23px}.ur-backbone-modal-main footer .inner .button{margin-bottom:0}.user-registration_page_add-new-registration .swal2-container .swal2-title{color:#2d3559;font-size:24px;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:24px}.user-registration_page_add-new-registration .swal2-container .dashicons{color:#ff4149;font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 20px;border:2px solid #ff4149;border-radius:50%}.user-registration_page_add-new-registration .swal2-container .ur-swal-title{-webkit-box-flex:100%;-webkit-flex:100%;flex:100%}.user-registration_page_add-new-registration .swal2-container .swal2-content,.user-registration_page_add-new-registration .swal2-container p{color:#4c5477;font-size:1em}.user-registration nav.ur-nav-tab-wrapper{margin:1.5em 0 1em}.user-registration #mainform>.subsubsub{background:#e5e5e5;float:none}.user-registration #mainform>.subsubsub a{display:block;padding:7px 10px}.user-registration #mainform>.subsubsub a.current{color:#fff;background:#475bb2}.user-registration textarea[disabled=disabled]{background:#dfdfdf!important}.user-registration table.form-table{margin:0;position:relative}.user-registration table.form-table fieldset{margin-top:4px}.user-registration table.form-table fieldset .user-registration-help-tip,.user-registration table.form-table fieldset img.help_tip{margin:-3px 0 0 5px}.user-registration table.form-table fieldset p.description{margin-bottom:8px}.user-registration table.form-table fieldset:first-child{margin-top:0}.user-registration table.form-table th{position:relative;padding-right:24px}.user-registration table.form-table th .user-registration-help-tip,.user-registration table.form-table th img.help_tip{margin:0 -24px 0 0;float:right}.user-registration table.form-table .select2-container{display:block;max-width:350px;margin-bottom:3px}.user-registration table.form-table .forminp-radio ul{margin:0}.user-registration table.form-table .forminp-radio ul li{line-height:1.4em}.user-registration table.form-table textarea.input-text{height:100%;min-width:150px;display:block}.user-registration table.form-table input.regular-input{width:25em}.user-registration table.form-table textarea.wide-input{width:100%}.user-registration table.form-table .help_tip,.user-registration table.form-table .user-registration-help-tip{padding:0;margin:-4px 0 0 5px;vertical-align:middle;cursor:help;line-height:1}.user-registration table.form-table .wp-list-table .user-registration-help-tip{float:none}.user-registration table.form-table .iris-picker{z-index:100;display:none;position:absolute;border:1px solid #ccc;border-radius:3px;box-shadow:0 1px 3px rgba(0,0,0,.2)}.user-registration table.form-table .iris-picker .ui-slider{border:0!important;margin:0!important;width:auto!important;height:auto!important;background:none transparent!important}.user-registration table.form-table .iris-picker .ui-slider .ui-slider-handle{margin-bottom:0!important}.user-registration table.form-table .colorpickpreview{padding:3px;padding-left:20px;border:1px solid #dee0e9;border-right:0}.user-registration table.form-table .colorpick{border-left:0}.user-registration table.form-table .image_width_settings{vertical-align:middle}.user-registration table.form-table .image_width_settings label{margin-left:10px}.user-registration table.form-table .dashicons{margin-bottom:2px;vertical-align:middle}.ur-registered-from{display:-webkit-box;display:-webkit-flex;display:flex;background-color:#fff}.ur-registered-from *{box-sizing:border-box}.ur-registered-from :focus{outline:0}.ur-registered-from a{text-decoration:none}.ur-registered-from h3{color:#2d3559;font-weight:500}.ur-registered-from .ur-field label{font-weight:400}.ur-registered-from .ur-field label:last-child{margin-bottom:0}.ur-registered-from .ur-field input[type=checkbox],.ur-registered-from .ur-field input[type=radio]{opacity:1;box-shadow:none;border-color:#dee0e9}.ur-registered-from .select2.select2-container{width:100%!important}.ur-registered-from .wp-picker-container .wp-picker-input-wrap label{display:inline-block;width:auto}.ur-registered-from .wp-picker-container .wp-picker-input-wrap label input.wp-color-picker{height:auto;padding:3px 5px}.ur-registered-from .ur-no-pointer{pointer-events:none}.ur-registered-from .ur-registered-item{cursor:move;padding:4px;color:#676d8a;height:110px;font-size:12px;border-radius:4px;margin:0 8px 16px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;text-align:center;width:calc(33.3333% - 16px);background-color:#f0f1f5}.ur-registered-from .ur-registered-item .ur-icon{font-size:32px;margin-bottom:4px}.ur-registered-from .ur-registered-item:hover{background-color:#475bb2;color:#fff}.ur-registered-from .ur-registered-item.ui-draggable-dragging{width:110px!important;z-index:9!important}.ur-registered-from .ur-registered-item.ui-draggable-disabled{color:#b6bbcf}.ur-registered-from .ur-registered-item.ui-draggable-disabled.ur-upgradable-field{cursor:pointer!important}.ur-registered-from .ur-registered-item.ui-draggable-disabled:hover{background:#f0f1f5;cursor:not-allowed}.ur-registered-from .ur-registered-inputs{width:412px}.ur-registered-from .ur-registered-inputs .ur-tabs{border:0 none;padding:0;font-size:14px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists{background-color:#f0f1f5;background-image:none;padding:0;border-radius:0;margin:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;border-bottom:none;border-top:0 none;border-right:0 none;border-left:0 none}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li{background-color:transparent;background-image:none;border-radius:0;margin:0;margin-bottom:-1px;padding:0;border:0;-webkit-box-flex:1;-webkit-flex:1;flex:1;text-align:center}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li.active{margin-bottom:0;padding-bottom:0}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li.ui-state-disabled{opacity:1}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li a{float:none;text-decoration:none;margin:0;border:none;display:block;color:#2d3559;background-color:transparent;padding:12px 15px;font-weight:500;cursor:pointer}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li a:focus{box-shadow:0 0 0 0 transparent,0 0 0 0 transparent}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-lists li a.active{background-color:#fff;color:#475bb2;line-height:24px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-contents{height:calc(100vh - 130px);position:relative;overflow-y:auto}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content{padding:16px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-search-fields{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;position:relative}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-search-fields input.ur-type-text{height:40px;padding:8px 12px;font-size:14px;background:#f0f1f5;border-color:#f0f1f5;border-radius:4px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-search-fields input.ur-type-text::-webkit-input-placeholder{color:#b6bbcf}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-search-fields input.ur-type-text::-ms-input-placeholder{color:#b6bbcf}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-search-fields input.ur-type-text::placeholder{color:#b6bbcf}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-search-fields svg{position:absolute;right:12px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-fields-not-found{text-align:center;margin-top:2.85em}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-fields-not-found .ur-fields-not-found-title{font-size:1.7em}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content#ur-tab-field-options,.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content#ur-tab-registered-fields{background-color:#fff}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content h2{margin:16px 0;font-size:1em;font-weight:500;color:#2d3559}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content h2~hr{border-top:1px solid #dee0e9}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;width:calc(100% + 16px);margin-left:-8px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list:last-child{margin-bottom:0}.ur-registered-from .ur-registered-inputs .ur-toggle-heading{cursor:pointer}.ur-registered-from .ur-registered-inputs .ur-toggle-heading:before{content:'\f142';cursor:pointer;display:block;font:400 20px/1 Dashicons;line-height:.5!important;padding:4px;position:relative;right:0;top:0;float:right}.ur-registered-from .ur-registered-inputs .ur-toggle-heading.closed:before{content:'\f140'}.ur-registered-from .ui-widget select,.ur-registered-from input[type=date],.ur-registered-from input[type=email],.ur-registered-from input[type=file],.ur-registered-from input[type=month],.ur-registered-from input[type=number],.ur-registered-from input[type=password],.ur-registered-from input[type=phone],.ur-registered-from input[type=tel],.ur-registered-from input[type=text],.ur-registered-from input[type=time],.ur-registered-from input[type=timepicker],.ur-registered-from input[type=url],.ur-registered-from input[type=week],.ur-registered-from select,.ur-registered-from textarea{width:100%;max-width:100%;height:32px;line-height:initial;display:block;color:#4c5477;font-size:13px;padding:4px 8px;border-radius:3px;border:1px solid #dee0e9;box-shadow:0 0 0 transparent}.ur-registered-from .ui-widget select:focus,.ur-registered-from input[type=date]:focus,.ur-registered-from input[type=email]:focus,.ur-registered-from input[type=file]:focus,.ur-registered-from input[type=month]:focus,.ur-registered-from input[type=number]:focus,.ur-registered-from input[type=password]:focus,.ur-registered-from input[type=phone]:focus,.ur-registered-from input[type=tel]:focus,.ur-registered-from input[type=text]:focus,.ur-registered-from input[type=time]:focus,.ur-registered-from input[type=timepicker]:focus,.ur-registered-from input[type=url]:focus,.ur-registered-from input[type=week]:focus,.ur-registered-from select:focus,.ur-registered-from textarea:focus{border-color:#475bb2}.ur-registered-from .ui-widget select::-webkit-input-placeholder,.ur-registered-from input[type=date]::-webkit-input-placeholder,.ur-registered-from input[type=email]::-webkit-input-placeholder,.ur-registered-from input[type=file]::-webkit-input-placeholder,.ur-registered-from input[type=month]::-webkit-input-placeholder,.ur-registered-from input[type=number]::-webkit-input-placeholder,.ur-registered-from input[type=password]::-webkit-input-placeholder,.ur-registered-from input[type=phone]::-webkit-input-placeholder,.ur-registered-from input[type=tel]::-webkit-input-placeholder,.ur-registered-from input[type=text]::-webkit-input-placeholder,.ur-registered-from input[type=time]::-webkit-input-placeholder,.ur-registered-from input[type=timepicker]::-webkit-input-placeholder,.ur-registered-from input[type=url]::-webkit-input-placeholder,.ur-registered-from input[type=week]::-webkit-input-placeholder,.ur-registered-from select::-webkit-input-placeholder,.ur-registered-from textarea::-webkit-input-placeholder{color:#b6bbcf}.ur-registered-from .ui-widget select::-ms-input-placeholder,.ur-registered-from input[type=date]::-ms-input-placeholder,.ur-registered-from input[type=email]::-ms-input-placeholder,.ur-registered-from input[type=file]::-ms-input-placeholder,.ur-registered-from input[type=month]::-ms-input-placeholder,.ur-registered-from input[type=number]::-ms-input-placeholder,.ur-registered-from input[type=password]::-ms-input-placeholder,.ur-registered-from input[type=phone]::-ms-input-placeholder,.ur-registered-from input[type=tel]::-ms-input-placeholder,.ur-registered-from input[type=text]::-ms-input-placeholder,.ur-registered-from input[type=time]::-ms-input-placeholder,.ur-registered-from input[type=timepicker]::-ms-input-placeholder,.ur-registered-from input[type=url]::-ms-input-placeholder,.ur-registered-from input[type=week]::-ms-input-placeholder,.ur-registered-from select::-ms-input-placeholder,.ur-registered-from textarea::-ms-input-placeholder{color:#b6bbcf}.ur-registered-from .ui-widget select::placeholder,.ur-registered-from input[type=date]::placeholder,.ur-registered-from input[type=email]::placeholder,.ur-registered-from input[type=file]::placeholder,.ur-registered-from input[type=month]::placeholder,.ur-registered-from input[type=number]::placeholder,.ur-registered-from input[type=password]::placeholder,.ur-registered-from input[type=phone]::placeholder,.ur-registered-from input[type=tel]::placeholder,.ur-registered-from input[type=text]::placeholder,.ur-registered-from input[type=time]::placeholder,.ur-registered-from input[type=timepicker]::placeholder,.ur-registered-from input[type=url]::placeholder,.ur-registered-from input[type=week]::placeholder,.ur-registered-from select::placeholder,.ur-registered-from textarea::placeholder{color:#b6bbcf}.ur-registered-from .ui-widget select:disabled,.ur-registered-from input[type=date]:disabled,.ur-registered-from input[type=email]:disabled,.ur-registered-from input[type=file]:disabled,.ur-registered-from input[type=month]:disabled,.ur-registered-from input[type=number]:disabled,.ur-registered-from input[type=password]:disabled,.ur-registered-from input[type=phone]:disabled,.ur-registered-from input[type=tel]:disabled,.ur-registered-from input[type=text]:disabled,.ur-registered-from input[type=time]:disabled,.ur-registered-from input[type=timepicker]:disabled,.ur-registered-from input[type=url]:disabled,.ur-registered-from input[type=week]:disabled,.ur-registered-from select:disabled,.ur-registered-from textarea:disabled{color:#b6bbcf;background:#f0f1f5}.ur-registered-from select{padding-right:0}.ur-registered-from label{display:block;width:100%;margin-bottom:8px;color:#4c5477;font-size:13px;font-weight:500;line-height:1.25}.ur-registered-from textarea{padding:10px;height:100px}.ur-registered-from .ur-builder-wrapper{position:relative;-webkit-box-flex:1;-webkit-flex:1;flex:1;height:calc(100vh - 89px);background:#fafafc;border-left:1px solid #dee0e9;overflow-y:auto}.ur-registered-from .ur-builder-wrapper input[type=date]:disabled,.ur-registered-from .ur-builder-wrapper input[type=email]:disabled,.ur-registered-from .ur-builder-wrapper input[type=file]:disabled,.ur-registered-from .ur-builder-wrapper input[type=month]:disabled,.ur-registered-from .ur-builder-wrapper input[type=number]:disabled,.ur-registered-from .ur-builder-wrapper input[type=password]:disabled,.ur-registered-from .ur-builder-wrapper input[type=phone]:disabled,.ur-registered-from .ur-builder-wrapper input[type=tel]:disabled,.ur-registered-from .ur-builder-wrapper input[type=text]:disabled,.ur-registered-from .ur-builder-wrapper input[type=time]:disabled,.ur-registered-from .ur-builder-wrapper input[type=timepicker]:disabled,.ur-registered-from .ur-builder-wrapper input[type=url]:disabled,.ur-registered-from .ur-builder-wrapper input[type=week]:disabled,.ur-registered-from .ur-builder-wrapper select:disabled,.ur-registered-from .ur-builder-wrapper textarea:disabled{background:#fff}.ur-registered-from .ur-builder-wrapper .ur-builder-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse;margin:16px 0;position:relative}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper .ur-edit-form-name{width:32px;height:32px;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border-radius:3px;margin-bottom:0;color:#4c5477;background:#dee0e9;border:1px solid transparent}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper .ur-edit-form-name::after{content:'';border-radius:3px;position:absolute;left:32px;right:calc(100% - 32px);height:30px;border-radius:0 3px 3px 0;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input{color:#2d3559;background:0 0;font-size:16px;font-weight:500;width:auto;padding:4px 8px;border-color:transparent;pointer-events:none;z-index:1;border:1px solid transparent}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input.ur-editing{border-color:transparent;pointer-events:all}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input.ur-editing+.ur-edit-form-name{color:#fff;background:#475bb2;border-radius:3px 0 0 3px;border:1px solid #475bb2}.ur-registered-from .ur-builder-wrapper .ur-form-name-wrapper input.ur-editing+.ur-edit-form-name::after{top:0;right:0;border:1px solid #475bb2}.ur-registered-from .ur-builder-wrapper.ur-multipart .ur-button-quick-links{bottom:60px}.ur-registered-from .ur-builder-wrapper.ur-multipart .ur-builder-wrapper-footer .button.button-style-customizer{bottom:124px}.ur-registered-from .ur-selected-inputs{box-sizing:border-box;padding:0 20px}.ur-registered-from .ur-selected-inputs .ur-single-row{border-radius:3px;position:relative;border:1px solid transparent}.ur-registered-from .ur-selected-inputs .ur-single-row:last-child{margin-bottom:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids{display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;right:0;z-index:1;opacity:0;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button{display:-webkit-box;display:-webkit-flex;display:flex;border-radius:0;border:0;background-color:#676d8a;color:#fff;font-size:16px;height:auto;width:auto;cursor:pointer;padding:4px 6px;line-height:1;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button svg{width:16px;height:16px;font-size:16px;fill:#fff}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:before{font-family:dashicons}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button.ur-remove-row:hover{background:#ff4149}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:hover{background:#475bb2}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:first-child{border-radius:3px 0 0 3px;border-right:1px solid rgba(255,255,255,.2)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids button:nth-child(2){border-radius:0 3px 3px 0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content{background:#fff;padding:1rem;position:absolute;top:40px;right:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;white-space:nowrap;border:1px solid #dee0e9;border-radius:4px;box-shadow:1px 4px 14px 1px rgba(45,53,89,.1)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content small{font-size:12px;margin-bottom:.5rem;color:#676d8a}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content .ur-grid-selector{cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;margin-right:.5rem}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content .ur-grid-selector svg{width:32px;height:32px;fill:#676d8a}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content .ur-grid-selector:last-child{margin-right:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grids .ur-toggle-grid-content::before{content:'';width:8px;height:8px;border:solid #dee0e9;border-width:1px;border-left:transparent;border-bottom:transparent;position:absolute;top:-5px;right:36px;background:#fff;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists{width:100%;display:-webkit-box;display:-webkit-flex;display:flex;text-align:center;box-sizing:border-box;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border:1px solid transparent;border-radius:4px;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item{display:inline-block;text-align:left;border:0 none;padding:15px;-webkit-box-flex:1;-webkit-flex:1;flex:1;border:1px solid transparent;border-radius:4px;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item{margin-bottom:5px;position:relative;padding:15px;cursor:move;border:1px solid transparent;border-radius:4px;-webkit-transition:border-color .35s;transition:border-color .35s}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .select2-container{width:100%!important}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .select2-container .select2-search--inline .select2-search__field{height:auto;min-width:10px;background:0 0;margin:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-input-type-signature canvas{background:rgba(255,255,255,.5);border:1px solid #dee0e9}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item:last-child{margin-bottom:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item.ur-item-active,.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item:hover{background:#fff;border:1px solid #475bb2}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item.ui-sortable-helper{box-shadow:0 0 10px 5px rgba(45,53,89,.1)}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item.ui-sortable-placeholder{visibility:visible!important;border:1px dashed #b6bbcf;background-color:#f0f1f5}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons{display:none;position:absolute;right:10px;width:50px;text-align:center;padding:0;font-size:10px;top:10px;color:#b6bbcf}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons span{cursor:pointer;font-size:16px;height:auto}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons span:hover{color:#475bb2}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons:hover .ur-action-buttons{display:block}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur-action-buttons .ur-trash:hover{color:#ff4149}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_top_left{text-align:left}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_center{text-align:center}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_top_right{text-align:right}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item .ur_label_disabled{display:none}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item:hover .ur-action-buttons{display:block}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item>li.ur-item-dragged{list-style:none;width:100%;text-align:center;height:60px!important;box-sizing:border-box}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item>li.ur-item-dragged .spinner{float:none}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me{display:table;width:100%;height:100%}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me .user-registration-dragged-me-text{display:table-cell;vertical-align:middle;text-align:center}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me .user-registration-dragged-me-text p{display:inline-block;position:relative;color:#b6bbcf;padding-left:26px;padding-top:8px}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me .user-registration-dragged-me-text p::before{position:absolute;font-family:Dashicons;content:'\f545';font-size:22px;left:0;top:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me:empty{padding:15px;text-align:center;border-radius:4px;border:1px dashed #b6bbcf;background-color:#f0f1f5}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .user-registration-dragged-me:empty::before{content:'\f132';font-size:32px;color:#b6bbcf;width:32px;height:32px;font-family:dashicons;display:table-cell;vertical-align:middle}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item.ur-sortable-active .ur-registered-item{margin-bottom:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item.ur-sortable-active .user-registration-dragged-me{display:none}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:first-child{border-radius:4px 0 0 4px}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:nth-child(2){border-radius:0}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:nth-child(3){border-radius:0 4px 4px 0}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grids{opacity:1}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grid-lists{background:#fff;border:1px solid #b6bbcf}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grid-lists .ur-grid-list-item{border-left:1px solid #b6bbcf}.ur-registered-from .ur-selected-inputs .ur-single-row:hover .ur-grid-lists .ur-grid-list-item:first-child{border-color:transparent}.ur-registered-from .ur-selected-inputs .ur-add-new-row{display:block;margin:20px auto;width:auto;height:32px;text-align:center;font-family:inherit}.ur-registered-from .ur-selected-inputs .ur-add-new-row::before{width:16px;height:16px;font-size:16px;margin-right:10px;font-family:dashicons;vertical-align:middle;padding:1px 10px 1px 0;border-right:1px solid rgba(255,255,255,.3)}.ur-registered-from .ur-selected-inputs li.ur-registered-item{width:120px!important}.ur-registered-from .ur-selected-inputs li.ur-registered-item.ui-sortable-placeholder{margin-left:0;width:100%!important;visibility:visible!important;border:1px dashed #b6bbcf;background-color:#f0f1f5}.ur-registered-from .ur-builder-wrapper-footer .button.button-style-customizer{height:48px;width:48px;bottom:72px;box-shadow:1px 2px 8px rgba(45,53,89,.15)}.ur-registered-from .ur-builder-wrapper-footer .button.button-style-customizer .dashicons{font-size:24px;height:24px;width:24px}.ur-registered-from .ur-builder-wrapper-footer .ur-button-quick-links{width:48px;height:48px;position:fixed;cursor:pointer;color:#4c5477;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;right:32px;bottom:16px;background:#fff;border:1px solid #dee0e9;border-radius:24px;box-shadow:0 2px 10px rgba(45,53,89,.1);z-index:1}.ur-registered-from .ur-builder-wrapper-footer .ur-button-quick-links span{font-size:20px;font-weight:600;margin:0 auto}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content{position:fixed;background:#fff;padding:12px 16px;border-radius:4px;bottom:58px;right:30px;z-index:2;width:225px;border:1px solid #dee0e9;box-shadow:2px 4px 12px rgba(45,53,89,.1)}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content li{margin-bottom:8px}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content a{color:#4c5477}.ur-registered-from .ur-builder-wrapper-footer .ur-quick-links-content a:hover{color:#475bb2}.ur-registered-from .ur-advance-setting,.ur-registered-from .ur-general-setting{margin:16px 0}.ur-registered-from .ur-advance-setting-block{margin-top:25px}.ur-registered-from .form-row{margin-bottom:1em}.ur-registered-from .form-row .description{color:#676d8a;margin:4px 0;display:block}.ur-registered-from .form-row .ur-checkbox-list label,.ur-registered-from .form-row .ur-radio-list label{display:inline}.ur-registered-from .ur-advance-setting-block,.ur-registered-from .ur-general-setting-block{display:none}.ur-registered-from .add,.ur-registered-from .remove{background:#fff;border:1px solid #dee0e9;color:#676d8a;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1 0 32px;flex:1 0 32px;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:32px;max-width:32px;border-radius:4px;position:relative}.ur-registered-from .add:hover,.ur-registered-from .remove:hover{background:#475bb2;border-color:#475bb2;color:#fff}.ur-registered-from .add .dashicons,.ur-registered-from .remove .dashicons{line-height:22px}.ur-registered-from .add{margin-right:8px}.ur-registered-from .ur-options-list li{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.ur-registered-from .ur-options-list li .editor-block-mover__control-drag-handle{margin-right:8px;cursor:-webkit-grab;cursor:grab}.ur-registered-from .ur-options-list li .editor-block-mover__control-drag-handle svg{fill:#676d8a}.ur-registered-from .ur-options-list li input{margin-right:8px}.ur-registered-from .ur-options-list .ui-sortable-handle{padding:5px;border-radius:3px;border:1px solid transparent}.ur-registered-from .ur-options-list .ui-sortable-handle:active{padding:5px;background:#fff;border:1px solid #475bb2;box-shadow:0 0 20px rgba(0,0,0,.2)}.ur-registered-from .ur-options-list .ui-sortable-handle.ui-sortable-placeholder{background-color:#dee0e9;visibility:visible!important}.ur-registered-from .urcl-rules{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:8px}.ur-registered-from .urcl-rules>div{margin-right:8px}.ur-registered-from .urcl-rules .urcl-operator{width:78px}.ur-registered-from .urcl-rules .urcl-field,.ur-registered-from .urcl-rules .urcl-value{max-width:27%;-webkit-box-flex:1;-webkit-flex:1 0 27%;flex:1 0 27%}.tips{cursor:help;text-decoration:none}img.tips{padding:5px 0 0}#tiptip_holder{display:none;z-index:8675309;position:absolute;top:0;left:0}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-left:-6px;border-top-color:#dee0e9}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-left:-6px;border-bottom-color:#4c5477}#tiptip_holder.tip_right{padding-left:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-left:-5px;border-right-color:#dee0e9}#tiptip_holder.tip_left{padding-right:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-left:-7px;border-left-color:#dee0e9}#tiptip_content,.ur_error_tip{color:#fff;font-size:.9em;max-width:150px;background:#4c5477;text-align:center;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2)}#tiptip_content code,.ur_error_tip code{padding:1px;background:#888}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}.ur_error_tip{max-width:20em;line-height:1.8em;position:absolute;white-space:normal;background:#ff4149;margin:1.5em 1px 0 -1em;z-index:9999999}.ur_error_tip::after{content:'';display:block;border:8px solid #ff4149;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-3px;left:50%;margin:-1em 0 0 -3px}.user-registration-help-tip{color:#676d8a;display:inline-block;font-size:16px;font-style:normal;height:16px;line-height:16px;position:relative;vertical-align:middle;width:16px}.user-registration-help-tip::after{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"";cursor:help}.select2-results__option .wrap:before{content:"\2610";width:25px;height:25px;padding-right:10px}.select2-results__option[data-selected=true] .wrap:before{content:"\2714"}.select2-drop,.select2-dropdown{z-index:999999!important}.select2-results{line-height:1.5em}.select2-results .select2-results__group,.select2-results .select2-results__option{margin:0;padding:8px}.select2-dropdown{border-color:#dee0e9}.select2-dropdown--below{box-shadow:0 1px 1px rgba(0,0,0,.1)}.select2-dropdown--above{box-shadow:0 -1px 1px rgba(0,0,0,.1)}.select2-container .select2-selection__rendered.ui-sortable li{cursor:move}.select2-container .select2-selection{border-color:#dee0e9}.select2-container .select2-search__field{min-width:20px}.select2-container .select2-selection--single{height:32px}.select2-container .select2-selection--single .select2-selection__rendered{line-height:32px;padding-right:24px}.select2-container .select2-selection--single .select2-selection__arrow{right:3px;height:30px}.select2-container .select2-selection--multiple{min-height:28px;border-radius:4px;line-height:1.5;border:1px solid #ddd!important}.select2-container .select2-selection--multiple li{margin:0}.select2-container .select2-selection--multiple .select2-selection__choice{padding:2px 6px}.select2-container .select2-selection__clear{color:#999;margin-top:-1px}.select2-container .select2-search--inline .select2-search__field{font-family:inherit;font-size:inherit;font-weight:inherit;padding:3px 0;margin:0;line-height:1;min-height:26px}#smart-tags{text-align:center}.form-settings-tab{cursor:pointer;padding:10px 15px;color:#2d3559;background:#dee0e9;margin-bottom:10px;line-height:1.2;border-radius:4px}.form-settings-tab.active{background:#475bb2;color:#fff}#profile-page form#your-profile .flatpickr-input[readonly]{background-color:#fff}body.ur-full-screen-mode{margin-top:-32px}body.ur-full-screen-mode #wpbody-content{padding-bottom:45px}body.ur-full-screen-mode #wpwrap #wpcontent{margin-left:0;padding-left:0}body.ur-full-screen-mode #wpwrap #wpcontent #wpadminbar{display:none}body.ur-full-screen-mode #wpwrap #wpcontent #wpbody .ur-tab-content{padding:20px}body.ur-full-screen-mode #wpwrap #wpcontent #wpbody #menu-management-liquid{margin-top:0}body.ur-full-screen-mode #wpwrap #wpcontent #wpbody #menu-management-liquid .menu-edit{margin-bottom:0;box-shadow:none;left:0!important}body.ur-full-screen-mode #wpwrap #adminmenumain{display:none}body.ur-full-screen-mode .ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-contents{height:calc(100vh - 98px)}body.ur-full-screen-mode .ur-registered-from .ur-builder-wrapper{height:calc(100vh - 57px)}@-webkit-keyframes ur-circle-loading{0%,100%{-webkit-animation-timing-function:cubic-bezier(.2,0,.8,1);animation-timing-function:cubic-bezier(.2,0,.8,1)}50%{-webkit-animation-timing-function:cubic-bezier(0,.2,1,.8);animation-timing-function:cubic-bezier(0,.2,1,.8)}0%{-webkit-transform:rotate(0) translate(0,-20px) scale(0);transform:rotate(0) translate(0,-20px) scale(0)}50%{-webkit-transform:rotate(180deg) translate(0,-20px) scale(1);transform:rotate(180deg) translate(0,-20px) scale(1)}100%{-webkit-transform:rotate(360deg) translate(0,-20px) scale(0);transform:rotate(360deg) translate(0,-20px) scale(0)}}@keyframes ur-circle-loading{0%,100%{-webkit-animation-timing-function:cubic-bezier(.2,0,.8,1);animation-timing-function:cubic-bezier(.2,0,.8,1)}50%{-webkit-animation-timing-function:cubic-bezier(0,.2,1,.8);animation-timing-function:cubic-bezier(0,.2,1,.8)}0%{-webkit-transform:rotate(0) translate(0,-20px) scale(0);transform:rotate(0) translate(0,-20px) scale(0)}50%{-webkit-transform:rotate(180deg) translate(0,-20px) scale(1);transform:rotate(180deg) translate(0,-20px) scale(1)}100%{-webkit-transform:rotate(360deg) translate(0,-20px) scale(0);transform:rotate(360deg) translate(0,-20px) scale(0)}}@-webkit-keyframes ur-circle-loading-keyframe{0%,100%{-webkit-animation-timing-function:cubic-bezier(.2,0,.8,1);animation-timing-function:cubic-bezier(.2,0,.8,1)}50%{-webkit-animation-timing-function:cubic-bezier(0,.2,1,.8);animation-timing-function:cubic-bezier(0,.2,1,.8)}0%{-webkit-transform:rotate(0) translate(0,-20px) scale(0);transform:rotate(0) translate(0,-20px) scale(0)}50%{-webkit-transform:rotate(180deg) translate(0,-20px) scale(1);transform:rotate(180deg) translate(0,-20px) scale(1)}100%{-webkit-transform:rotate(360deg) translate(0,-20px) scale(0);transform:rotate(360deg) translate(0,-20px) scale(0)}}@-webkit-keyframes open-message{0%{opacity:0;-webkit-transform:translateY(-120%);transform:translateY(-120%)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes open-message{0%{opacity:0;-webkit-transform:translateY(-120%);transform:translateY(-120%)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes close-message{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes close-message{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9);transform:scale(.9)}}.ur-circle-loading{position:relative;width:100px!important;height:100px!important;-webkit-transform:translate(-50px,-50px) scale(.5) translate(50px,50px);-ms-transform:translate(-50px,-50px) scale(.5) translate(50px,50px);transform:translate(-50px,-50px) scale(.5) translate(50px,50px)}.ur-circle-loading::after,.ur-circle-loading::before{content:'';position:absolute;top:70px;left:70px;-webkit-animation:ur-circle-loading-keyframe 1.5s linear infinite;animation:ur-circle-loading-keyframe 1.5s linear infinite;width:60px;height:60px;border-radius:50%;background:#475bb2}.ur-circle-loading::after{-webkit-animation-delay:-.75s;animation-delay:-.75s;background:#668fe5}.ur-builder-message-container{position:fixed;top:32px;left:0;right:0;max-width:400px;margin:0 auto;z-index:9999}.ur-builder-message-container .ur-message{display:none;margin:0 auto;margin-top:16px;-webkit-transition:all 240ms cubic-bezier(0,0,.2,1) 0s;transition:all 240ms cubic-bezier(0,0,.2,1) 0s;z-index:99999;height:0}.ur-builder-message-container .ur-message .ur-error,.ur-builder-message-container .ur-message .ur-success{background:#fff;padding:8px 16px;border-radius:3px;border-left:3px solid;position:relative;box-shadow:0 1px 8px 2px rgba(45,53,89,.1)}.ur-builder-message-container .ur-message .ur-error p,.ur-builder-message-container .ur-message .ur-success p{margin:8px 0}.ur-builder-message-container .ur-message .ur-error p::after,.ur-builder-message-container .ur-message .ur-error p::before,.ur-builder-message-container .ur-message .ur-success p::after,.ur-builder-message-container .ur-message .ur-success p::before{font-family:dashicons;width:20px;height:20px;font-size:20px;margin-right:8px;margin-top:-4px;line-height:1;display:inline-block;vertical-align:middle}.ur-builder-message-container .ur-message .ur-success{border-color:#7ad03a}.ur-builder-message-container .ur-message .ur-success p::before{content:"\f12a";color:#7ad03a}.ur-builder-message-container .ur-message .ur-error{border-color:#ff4149}.ur-builder-message-container .ur-message .ur-error p::before{content:"\f534";color:#ff4149}.ur-builder-message-container .ur-message .dashicons{cursor:pointer;position:absolute;right:16px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);line-height:1}.ur-builder-message-container .ur-message.entered{display:block;height:50px;-webkit-animation:240ms cubic-bezier(.175,.885,.32,1.175) 0s 1 normal both open-message;animation:240ms cubic-bezier(.175,.885,.32,1.175) 0s 1 normal both open-message}.ur-builder-message-container .ur-message.exiting{display:block;-webkit-animation:120ms cubic-bezier(.4,0,1,1) 0s 1 normal both close-message;animation:120ms cubic-bezier(.4,0,1,1) 0s 1 normal both close-message}.ur-builder-message-container .ur-message:first-child{margin-top:1.5rem}@media only screen and (max-width:1599px){.ur_addons_wrap .products li{width:32.66%}.ur_addons_wrap .products li:nth-child(3n){margin:0 0 1% 0!important}.ur_addons_wrap .products li:nth-child(5n){margin:0 1% 1% 0!important}}@media screen and (max-width:1400px){.ur-registered-from .urcl-rules .urcl-field{max-width:61%;-webkit-box-flex:1;-webkit-flex:1 0 60%;flex:1 0 60%;margin-bottom:5px}.ur-registered-from .urcl-rules .urcl-value{-webkit-box-ordinal-group:5;-webkit-order:4;order:4;max-width:87%;-webkit-box-flex:1;-webkit-flex:1 0 86%;flex:1 0 86%}.ur-registered-from .urcl-rules .add{-webkit-box-ordinal-group:4;-webkit-order:3;order:3;margin-right:0}.ur-registered-from .urcl-rules .remove{-webkit-box-ordinal-group:6;-webkit-order:5;order:5}}@media only screen and (max-width:1120px){.ur_addons_wrap .products li{width:49%;margin:0 2% 2% 0!important}.ur_addons_wrap .products li:nth-child(2n){margin:0 0 2% 0!important}.ur_addons_wrap .products li:nth-child(3n),.ur_addons_wrap .products li:nth-child(5n){margin:0 2% 2% 0!important}}@media screen and (max-width:960px){.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list .ur-registered-item{float:none;width:100%}.ur-registered-from .ur-registered-inputs .ur-single-row .ur-grid-lists,.ur-registered-from .ur-registered-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item,.ur-registered-from .ur-registered-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item{padding:10px}}@media only screen and (max-width:900px){.ur_addons_wrap .products li{width:49%}}@media screen and (max-width:782px){body.user-registration_page_add-new-registration{min-width:0!important}.ur-registered-from{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.ur-registered-from .ur-registered-inputs{width:100%;margin-bottom:10px}.ur-registered-from .ur-registered-inputs .ur-tabs .ur-tab-content .ur-registered-list .ur-registered-item{float:left;width:48%}.ur-registered-from .ur-selected-inputs{width:100%}}@media screen and (max-width:600px){.user-registration_page_add-new-registration .major-publishing-actions{clear:both;padding:10px 0 19px;line-height:28px}.user-registration_page_add-new-registration .major-publishing-actions .ur-form-name{width:100%}.user-registration_page_add-new-registration .major-publishing-actions .publishing-action{text-align:left;float:none;margin-top:15px}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;display:block}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item{width:100%!important}.ur-registered-from .ur-selected-inputs .ur-single-row .ur-grid-lists .ur-grid-list-item:nth-child(1n+2){border-left:0 none}}@media only screen and (max-width:480px){.ur_addons_wrap .products li,.ur_addons_wrap .products li:nth-child(2n),.ur_addons_wrap .products li:nth-child(3n),.ur_addons_wrap .products li:nth-child(5n){width:100%;margin:0 0 3% 0!important}}
assets/css/admin.scss CHANGED
@@ -2,14 +2,14 @@
2
  * admin.scss
3
  * General User Registration admin styles.
4
  */
 
5
  /**
6
  * Imports
7
  */
8
- @import "colors";
9
- @import "button";
10
- @import "mixins";
11
  @import "variables";
 
12
  @import "fonts";
 
13
  @import "tables";
14
 
15
  /**
@@ -51,6 +51,9 @@
51
  }
52
  }
53
 
 
 
 
54
  .ur_addons_wrap {
55
  .products {
56
  overflow: hidden;
@@ -82,7 +85,7 @@
82
 
83
  .product-image {
84
  display: block;
85
- background: #ffffff;
86
 
87
  img {
88
  max-width: 100%;
@@ -102,7 +105,7 @@
102
  h2, h3 {
103
  margin: 0 !important;
104
  padding: 20px !important;
105
- background: #fff;
106
  }
107
 
108
  p {
@@ -113,7 +116,7 @@
113
 
114
  &:hover,
115
  &:focus {
116
- background-color: #fff;
117
  }
118
  }
119
  }
@@ -129,54 +132,18 @@
129
  margin-top: 10px;
130
  }
131
 
 
 
 
132
  .user-registration_page_add-new-registration {
133
- #post-body {
134
- .updated,
135
- .error {
136
- margin: 0;
137
- }
138
- }
139
-
140
- #post-body-content {
141
- position: relative;
142
- float: none;
143
- }
144
-
145
- .howto span {
146
- float: left;
147
- margin-top: 6px;
148
- }
149
-
150
- .list-wrap {
151
- display: none;
152
- clear: both;
153
- margin-bottom: 10px;
154
- }
155
-
156
- .list li {
157
- display: none;
158
- margin: 0;
159
- margin-bottom: 5px;
160
-
161
- .menu-item-title {
162
- cursor: pointer;
163
- display: block;
164
-
165
- input {
166
- margin-right: 3px;
167
- margin-top: -3px;
168
- }
169
- }
170
- }
171
-
172
  #wpfooter {
173
- display: none;
174
  }
175
 
176
  .ur-form-container {
177
  margin: 0;
178
 
179
- .ur-loading-container{
180
  position: fixed;
181
  left: 160px;
182
  right: 0;
@@ -186,7 +153,7 @@
186
  display: flex;
187
  z-index: 9;
188
 
189
- .ur-circle-loading{
190
  margin: auto;
191
  left: 30px;
192
  }
@@ -205,6 +172,7 @@
205
  }
206
  }
207
 
 
208
  #ur-full-screen-mode {
209
  &.closed {
210
  .ur-fs-close-label {
@@ -226,16 +194,8 @@
226
  min-width: calc(100% + 20px);
227
  }
228
 
229
- .postbox p.submit {
230
- margin-bottom: 0;
231
- }
232
-
233
- #nav-menu-header,
234
- #nav-menu-footer {
235
- padding: 12px;
236
- }
237
-
238
  #nav-menu-header {
 
239
  display: flex;
240
  align-items: center;
241
  position: relative;
@@ -300,16 +260,6 @@
300
  }
301
  }
302
 
303
- .form-invalid {
304
- padding-left: 4px;
305
- margin-left: -4px;
306
- }
307
-
308
- .ur-form-name {
309
- width: 25%;
310
- margin-right: 6px;
311
- }
312
-
313
  #copy-shortcode {
314
  margin-left: -5px;
315
  border-radius: 0 4px 4px 0;
@@ -321,15 +271,6 @@
321
  }
322
  }
323
  }
324
-
325
- .blank-slate .menu-settings {
326
- display: none;
327
- }
328
-
329
- .delete-action {
330
- float: left;
331
- line-height: 28px;
332
- }
333
  }
334
 
335
  /**
@@ -386,9 +327,9 @@
386
 
387
  .ur-backbone-modal-header {
388
  height: auto;
389
- background-color: $color_gray_eleven;
390
  padding: 1em 1.5em;
391
- border-bottom: 1px solid $color_gray_six;
392
 
393
  h1 {
394
  margin: 0;
@@ -408,7 +349,7 @@
408
  right: 0;
409
  text-align: center;
410
  border: 0;
411
- border-left: 1px solid $color_gray_six;
412
  background-color: transparent;
413
  transition: color 0.1s ease-in-out, background 0.1s ease-in-out;
414
 
@@ -422,7 +363,7 @@
422
 
423
  &:hover,
424
  &:focus {
425
- background-color: $color_gray_six;
426
  border-color: #ccc;
427
  color: $gray_base;
428
  }
@@ -459,7 +400,7 @@
459
  bottom: 0;
460
  z-index: 100;
461
  padding: 1em 1.5em;
462
- background-color: $color_gray_eleven;
463
  border-top: 1px solid #dfdfdf;
464
  box-shadow: 0 -4px 4px -4px rgba(0, 0, 0, 0.1);
465
 
@@ -487,13 +428,13 @@
487
  }
488
 
489
  .dashicons {
490
- color: $color_danger;
491
  font-size: 28px;
492
  width: 56px;
493
  height: 56px;
494
  line-height: 56px;
495
  margin: 0 auto 20px;
496
- border: 2px solid $color_danger;
497
  border-radius: 50%;
498
  }
499
 
@@ -510,17 +451,12 @@
510
  }
511
 
512
  .user-registration {
513
- h2.ur-nav-tab-wrapper {
514
- margin-bottom: 1em;
515
- }
516
-
517
  nav.ur-nav-tab-wrapper {
518
  margin: 1.5em 0 1em;
519
- border-bottom: 1px solid #ccc;
520
  }
521
 
 
522
  #mainform {
523
-
524
  > .subsubsub {
525
  background: #e5e5e5;
526
  float: none;
@@ -530,8 +466,8 @@
530
  padding: 7px 10px;
531
 
532
  &.current {
533
- color: #fff;
534
- background: #475BB2;
535
  }
536
  }
537
  }
@@ -545,13 +481,43 @@
545
  margin: 0;
546
  position: relative;
547
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
548
  .select2-container {
549
  display: block;
550
  max-width: 350px;
 
551
  }
552
 
553
  .forminp-radio ul {
554
  margin: 0;
 
555
  li {
556
  line-height: 1.4em;
557
  }
@@ -571,7 +537,7 @@
571
  width: 100%;
572
  }
573
 
574
- img.help_tip,
575
  .user-registration-help-tip {
576
  padding: 0;
577
  margin: -4px 0 0 5px;
@@ -580,52 +546,10 @@
580
  line-height: 1;
581
  }
582
 
583
- span.help_tip {
584
- cursor: help;
585
- color: $blue;
586
- }
587
-
588
- th {
589
- position: relative;
590
- padding-right: 24px;
591
- }
592
-
593
- .select2-container {
594
- vertical-align: top;
595
- margin-bottom: 3px;
596
- }
597
-
598
- table.widefat th {
599
- padding-right: inherit;
600
- }
601
-
602
- th img.help_tip,
603
- th .user-registration-help-tip {
604
- margin: 0 -24px 0 0;
605
- float: right;
606
- }
607
-
608
  .wp-list-table .user-registration-help-tip {
609
  float: none;
610
  }
611
 
612
- fieldset {
613
- margin-top: 4px;
614
-
615
- img.help_tip,
616
- .user-registration-help-tip {
617
- margin: -3px 0 0 5px;
618
- }
619
-
620
- p.description {
621
- margin-bottom: 8px;
622
- }
623
-
624
- &:first-child {
625
- margin-top: 0;
626
- }
627
- }
628
-
629
  .iris-picker {
630
  z-index: 100;
631
  display: none;
@@ -650,7 +574,7 @@
650
  .colorpickpreview {
651
  padding: 3px;
652
  padding-left: 20px;
653
- border: 1px solid $color_gray_six;
654
  border-right: 0;
655
  }
656
 
@@ -665,11 +589,12 @@
665
  margin-left: 10px;
666
  }
667
  }
668
- }
669
- }
670
 
671
- .ur-admin-template-options {
672
- display: none;
 
 
 
673
  }
674
 
675
  .ur-registered-from {
@@ -694,8 +619,6 @@
694
  }
695
 
696
  .ur-field {
697
- line-height: 2;
698
-
699
  label {
700
  font-weight: 400;
701
 
@@ -734,6 +657,10 @@
734
  }
735
  }
736
 
 
 
 
 
737
  .ur-registered-item {
738
  cursor: move;
739
  padding: 4px;
@@ -764,11 +691,23 @@
764
  width: 110px !important; // Inherit js styles
765
  z-index: 9 !important;
766
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
767
  }
768
 
769
  .ur-registered-inputs {
770
  width: 412px;
771
- background-color: $color_gray_ten;
772
 
773
  .ur-tabs {
774
  border: 0 none;
@@ -842,6 +781,39 @@
842
  .ur-tab-content {
843
  padding: 16px;
844
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
845
  &#ur-tab-registered-fields,
846
  &#ur-tab-field-options {
847
  background-color: $white;
@@ -870,6 +842,29 @@
870
  }
871
  }
872
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
873
  }
874
 
875
  input[type='text'],
@@ -1121,7 +1116,7 @@
1121
  white-space: nowrap;
1122
  border: 1px solid $border_color;
1123
  border-radius: 4px;
1124
- box-shadow: 1px 4px 14px 1px transparentize($color_gray-base, 0.9);
1125
 
1126
  small {
1127
  font-size: 12px;
@@ -1149,7 +1144,7 @@
1149
  content: '';
1150
  width: 8px;
1151
  height: 8px;
1152
- border: solid $border-color;
1153
  border-width: 1px;
1154
  border-left: transparent;
1155
  border-bottom: transparent;
@@ -1207,7 +1202,7 @@
1207
  .ur-input-type-signature {
1208
  canvas {
1209
  background: transparentize($white, 0.5);
1210
- border: 1px solid $color_gray_six;
1211
  }
1212
  }
1213
 
@@ -1260,7 +1255,7 @@
1260
 
1261
  .ur-trash {
1262
  &:hover {
1263
- color: $color_danger;
1264
  }
1265
  }
1266
  }
@@ -1418,7 +1413,7 @@
1418
  margin-left: 0;
1419
  width: 100% !important;
1420
  visibility: visible !important;
1421
- border: 1px dashed $color_gray_lighter;
1422
  background-color: $color_gray_five;
1423
  }
1424
  }
@@ -1514,32 +1509,15 @@
1514
  }
1515
  }
1516
 
1517
- .ur-registered-item.dragging {
1518
- border: 0;
1519
- box-shadow: 0 0 0 transparent;
1520
- border-radius: 0;
1521
- padding: 5px 10px;
1522
- height: auto;
1523
- background-color: $primary_color;
1524
- color: $white;
1525
- text-align: center;
1526
- width: 200px;
1527
- }
1528
-
1529
  .ur-general-setting-block,
1530
  .ur-advance-setting-block {
1531
  display: none;
1532
  }
1533
 
1534
- .ur-advance-setting label,
1535
- .ur-general-setting label {
1536
- display: block;
1537
- }
1538
-
1539
  .add,
1540
  .remove {
1541
  background: $white;
1542
- border: 1px solid $color_gray_six;
1543
  color: $color_gray_two;
1544
  cursor: pointer;
1545
  display: flex;
@@ -1567,7 +1545,6 @@
1567
  }
1568
 
1569
  .ur-options-list {
1570
-
1571
  li {
1572
  display: flex;
1573
  align-items: center;
@@ -1626,10 +1603,6 @@
1626
  }
1627
  }
1628
 
1629
- #sortable {
1630
- min-height: 400px;
1631
- }
1632
-
1633
  /**
1634
  * Tooltips
1635
  */
@@ -1731,14 +1704,14 @@ img.tips {
1731
  line-height: 1.8em;
1732
  position: absolute;
1733
  white-space: normal;
1734
- background: $color_danger;
1735
  margin: 1.5em 1px 0 -1em;
1736
  z-index: 9999999;
1737
 
1738
  &::after {
1739
  content: '';
1740
  display: block;
1741
- border: 8px solid $color_danger;
1742
  border-right-color: transparent;
1743
  border-left-color: transparent;
1744
  border-top-color: transparent;
@@ -1774,14 +1747,14 @@ img.tips {
1774
  */
1775
 
1776
  .select2-results__option .wrap:before{
1777
- content:"\2610";
1778
- width:25px;
1779
- height:25px;
1780
- padding-right: 10px;
1781
  }
1782
 
1783
  .select2-results__option[data-selected=true] .wrap:before{
1784
- content:"\2714";
1785
  }
1786
 
1787
  .select2-drop,
@@ -1799,7 +1772,7 @@ img.tips {
1799
  }
1800
 
1801
  .select2-dropdown {
1802
- border-color: $color_gray_six;
1803
  }
1804
 
1805
  .select2-dropdown--below {
@@ -1816,7 +1789,7 @@ img.tips {
1816
  }
1817
 
1818
  .select2-selection {
1819
- border-color: $color_gray_six;
1820
  }
1821
 
1822
  .select2-search__field {
@@ -1870,31 +1843,7 @@ img.tips {
1870
  }
1871
  }
1872
 
1873
- #ur-tab-registered-fields li.ur-registered-item {
1874
- &.ui-draggable-disabled {
1875
- color: $color_gray_three;
1876
-
1877
- &.ur-upgradable-field {
1878
- cursor: pointer !important;
1879
- }
1880
-
1881
- &:hover {
1882
- background: $color_gray_five;
1883
- cursor: not-allowed;
1884
- }
1885
- }
1886
- }
1887
-
1888
- .ur-no-pointer {
1889
- pointer-events: none;
1890
- }
1891
-
1892
- .user-registration table.form-table .dashicons {
1893
- margin-bottom: 2px;
1894
- vertical-align: middle;
1895
- }
1896
-
1897
- #smart-tags{
1898
  text-align: center;
1899
  }
1900
 
@@ -1902,46 +1851,24 @@ img.tips {
1902
  cursor: pointer;
1903
  padding: 10px 15px;
1904
  color: $gray_base;
1905
- background: $color_gray_lighten;
1906
  margin-bottom: 10px;
1907
  line-height: 1.2;
1908
  border-radius: 4px;
1909
- }
1910
 
1911
- .form-settings-tab.active {
1912
- background: $primary_color;
1913
- color: white;
 
1914
  }
1915
 
1916
  #profile-page form#your-profile .flatpickr-input[readonly]{
1917
- background-color:#fff
1918
- }
1919
-
1920
- .ur-registered-inputs {
1921
- .ur-toggle-heading {
1922
- cursor: pointer;
1923
-
1924
- &:before {
1925
- content: '\f142';
1926
- cursor: pointer;
1927
- display: block;
1928
- font: 400 20px/1 Dashicons;
1929
- line-height: .5!important;
1930
- padding: 4px;
1931
- position: relative;
1932
- right: 0;
1933
- top: 0;
1934
- float: right;
1935
- }
1936
-
1937
- &.closed {
1938
- &:before {
1939
- content: '\f140';
1940
- }
1941
- }
1942
- }
1943
  }
1944
 
 
 
 
1945
  body {
1946
  &.ur-full-screen-mode {
1947
  margin-top: -32px;
@@ -1997,9 +1924,10 @@ body {
1997
  }
1998
  }
1999
 
2000
- // User Registration Builder Loading
 
 
2001
  @keyframes ur-circle-loading {
2002
-
2003
  0%,
2004
  100% {
2005
  animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);
@@ -2010,23 +1938,19 @@ body {
2010
  }
2011
 
2012
  0% {
2013
- -webkit-transform: rotate(0deg) translate(0, -20px) scale(0);
2014
  transform: rotate(0deg) translate(0, -20px) scale(0);
2015
  }
2016
 
2017
  50% {
2018
- -webkit-transform: rotate(180deg) translate(0, -20px) scale(1);
2019
  transform: rotate(180deg) translate(0, -20px) scale(1);
2020
  }
2021
 
2022
  100% {
2023
- -webkit-transform: rotate(360deg) translate(0, -20px) scale(0);
2024
  transform: rotate(360deg) translate(0, -20px) scale(0);
2025
  }
2026
  }
2027
 
2028
  @-webkit-keyframes ur-circle-loading-keyframe {
2029
-
2030
  0%,
2031
  100% {
2032
  animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);
@@ -2037,26 +1961,45 @@ body {
2037
  }
2038
 
2039
  0% {
2040
- -webkit-transform: rotate(0deg) translate(0, -20px) scale(0);
2041
  transform: rotate(0deg) translate(0, -20px) scale(0);
2042
  }
2043
 
2044
  50% {
2045
- -webkit-transform: rotate(180deg) translate(0, -20px) scale(1);
2046
  transform: rotate(180deg) translate(0, -20px) scale(1);
2047
  }
2048
 
2049
  100% {
2050
- -webkit-transform: rotate(360deg) translate(0, -20px) scale(0);
2051
  transform: rotate(360deg) translate(0, -20px) scale(0);
2052
  }
2053
  }
2054
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2055
  .ur-circle-loading {
2056
  position: relative;
2057
  width: 100px !important;
2058
  height: 100px !important;
2059
- -webkit-transform: translate(-50px, -50px) scale(0.5) translate(50px, 50px);
2060
  transform: translate(-50px, -50px) scale(0.5) translate(50px, 50px);
2061
 
2062
  &::before,
@@ -2065,7 +2008,6 @@ body {
2065
  position: absolute;
2066
  top: 70px;
2067
  left: 70px;
2068
- -webkit-animation: ur-circle-loading-keyframe 1.5s linear infinite;
2069
  animation: ur-circle-loading-keyframe 1.5s linear infinite;
2070
  width: 60px;
2071
  height: 60px;
@@ -2074,42 +2016,125 @@ body {
2074
  }
2075
 
2076
  &::after {
2077
- -webkit-animation-delay: -0.75s;
2078
  animation-delay: -0.75s;
2079
  background: #668fe5;
2080
  }
2081
  }
2082
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2083
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2084
 
2085
  /**
2086
  * Media Queries
2087
  */
2088
-
2089
  @media only screen and (max-width: 1599px) {
2090
- .ur_addons_wrap .products li {
2091
- width: 32.66%;
2092
- }
2093
- .ur_addons_wrap .products li:nth-child(5n) {
2094
- margin: 0 1% 1% 0 !important;
2095
- }
2096
- .ur_addons_wrap .products li:nth-child(3n) {
2097
- margin: 0 0 1% 0 !important;
2098
- }
2099
- }
2100
 
2101
- @media screen and (max-width: 1400px) {
2102
- .ur-registered-from {
2103
- .ur-registered-inputs {
2104
- .ur-tabs .ur-tab-content {
2105
- .ur-registered-list {
2106
- .ur-registered-item {
2107
- font-size: 12px;
2108
- }
2109
  }
2110
  }
2111
  }
 
 
2112
 
 
 
2113
  .urcl-rules {
2114
  .urcl-field {
2115
  max-width: 61%;
@@ -2136,16 +2161,22 @@ body {
2136
  }
2137
 
2138
  @media only screen and (max-width: 1120px) {
2139
- .ur_addons_wrap .products li {
2140
- width: 49%;
2141
- margin: 0 2% 2% 0 !important;
2142
- }
2143
- .ur_addons_wrap .products li:nth-child(5n),
2144
- .ur_addons_wrap .products li:nth-child(3n) {
2145
- margin: 0 2% 2% 0 !important;
2146
- }
2147
- .ur_addons_wrap .products li:nth-child(2n) {
2148
- margin: 0 0 2% 0 !important;
 
 
 
 
 
 
2149
  }
2150
  }
2151
 
@@ -2166,8 +2197,12 @@ body {
2166
  }
2167
 
2168
  @media only screen and (max-width: 900px) {
2169
- .ur_addons_wrap .products li {
2170
- width: 49%;
 
 
 
 
2171
  }
2172
  }
2173
 
@@ -2201,13 +2236,6 @@ body {
2201
  }
2202
  }
2203
 
2204
- @media only screen and (min-width: 769px) and (max-width: 1000px) {
2205
-
2206
- .user-registration_page_add-new-registration #post-body-content {
2207
- min-width: 0;
2208
- }
2209
- }
2210
-
2211
  @media screen and (max-width: 600px) {
2212
  .user-registration_page_add-new-registration .major-publishing-actions {
2213
  clear: both;
@@ -2234,7 +2262,6 @@ body {
2234
 
2235
  &:nth-child(1n+2) {
2236
  border-left: 0 none;
2237
- border-top: 2px solid $color_gray_eight;
2238
  }
2239
  }
2240
  }
@@ -2249,115 +2276,3 @@ body {
2249
  margin: 0 0 3% 0 !important;
2250
  }
2251
  }
2252
-
2253
- @keyframes open-message {
2254
- 0% {
2255
- opacity: 0;
2256
- transform: translateY(-120%);
2257
- }
2258
- 100% {
2259
- transform: translateY(0px);
2260
- }
2261
- }
2262
-
2263
- @keyframes close-message {
2264
- 0% {
2265
- opacity: 1;
2266
- transform: scale(1);
2267
- }
2268
- 100% {
2269
- opacity: 0;
2270
- transform: scale(0.9);
2271
- }
2272
- }
2273
-
2274
- .ur-builder-message-container {
2275
- position: fixed;
2276
- top: 32px;
2277
- left: 0;
2278
- right: 0;
2279
- max-width: 400px;
2280
- margin: 0 auto;
2281
- z-index: 9999;
2282
-
2283
- .ur-message {
2284
- display: none;
2285
- margin: 0 auto;
2286
- margin-top: 16px;
2287
- transition: all 240ms cubic-bezier(0, 0, 0.2, 1) 0s;
2288
- z-index: 99999;
2289
- height: 0px;
2290
-
2291
- .ur-success,
2292
- .ur-error {
2293
- background: $white;
2294
- padding: 8px 16px;
2295
- border-radius: 3px;
2296
- border-left: 3px solid;
2297
- position: relative;
2298
- box-shadow: 0px 1px 8px 2px transparentize($color_gray-base, 0.9);
2299
-
2300
- p {
2301
- margin: 8px 0;
2302
- &::before,
2303
- &::after {
2304
- font-family: dashicons;
2305
- width: 20px;
2306
- height: 20px;
2307
- font-size: 20px;
2308
- margin-right: 8px;
2309
- margin-top: -4px;
2310
- line-height: 1;
2311
- display: inline-block;
2312
- vertical-align: middle;
2313
- }
2314
- }
2315
- }
2316
-
2317
- .ur-success {
2318
- border-color: $green;
2319
-
2320
- p {
2321
- &::before {
2322
- content: "\f12a";
2323
- color: $green;
2324
- }
2325
- }
2326
- }
2327
-
2328
- .ur-error {
2329
- border-color: $red;
2330
-
2331
- p {
2332
- &::before {
2333
- content: "\f534";
2334
- color: $red;
2335
- }
2336
- }
2337
- }
2338
-
2339
- .dashicons {
2340
- cursor: pointer;
2341
- position: absolute;
2342
- right: 16px;
2343
- top: 50%;
2344
- transform: translateY(-50%);
2345
- line-height: 1;
2346
- }
2347
-
2348
- &.entered {
2349
- display: block;
2350
- height: 50px;
2351
- animation: 240ms cubic-bezier(0.175, 0.885, 0.32, 1.175) 0s 1 normal both open-message;
2352
- }
2353
-
2354
- &.exiting {
2355
- display: block;
2356
- animation: 120ms cubic-bezier(0.4, 0, 1, 1) 0s 1 normal both close-message;
2357
- }
2358
-
2359
- &:first-child {
2360
- margin-top: 1.5rem;
2361
- }
2362
- }
2363
- }
2
  * admin.scss
3
  * General User Registration admin styles.
4
  */
5
+
6
  /**
7
  * Imports
8
  */
 
 
 
9
  @import "variables";
10
+ @import "mixins";
11
  @import "fonts";
12
+ @import "button";
13
  @import "tables";
14
 
15
  /**
51
  }
52
  }
53
 
54
+ /**
55
+ * Addons page
56
+ **/
57
  .ur_addons_wrap {
58
  .products {
59
  overflow: hidden;
85
 
86
  .product-image {
87
  display: block;
88
+ background: $white;
89
 
90
  img {
91
  max-width: 100%;
105
  h2, h3 {
106
  margin: 0 !important;
107
  padding: 20px !important;
108
+ background: $white;
109
  }
110
 
111
  p {
116
 
117
  &:hover,
118
  &:focus {
119
+ background-color: $white;
120
  }
121
  }
122
  }
132
  margin-top: 10px;
133
  }
134
 
135
+ /**
136
+ * Form Builder Styles
137
+ **/
138
  .user-registration_page_add-new-registration {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  #wpfooter {
140
+ display: none; //Hide WP footer on form builder page
141
  }
142
 
143
  .ur-form-container {
144
  margin: 0;
145
 
146
+ .ur-loading-container {
147
  position: fixed;
148
  left: 160px;
149
  right: 0;
153
  display: flex;
154
  z-index: 9;
155
 
156
+ .ur-circle-loading {
157
  margin: auto;
158
  left: 30px;
159
  }
172
  }
173
  }
174
 
175
+ // Form Builder Fullscreen mode
176
  #ur-full-screen-mode {
177
  &.closed {
178
  .ur-fs-close-label {
194
  min-width: calc(100% + 20px);
195
  }
196
 
 
 
 
 
 
 
 
 
 
197
  #nav-menu-header {
198
+ padding: 12px;
199
  display: flex;
200
  align-items: center;
201
  position: relative;
260
  }
261
  }
262
 
 
 
 
 
 
 
 
 
 
 
263
  #copy-shortcode {
264
  margin-left: -5px;
265
  border-radius: 0 4px 4px 0;
271
  }
272
  }
273
  }
 
 
 
 
 
 
 
 
 
274
  }
275
 
276
  /**
327
 
328
  .ur-backbone-modal-header {
329
  height: auto;
330
+ background-color: $color_gray_five;
331
  padding: 1em 1.5em;
332
+ border-bottom: 1px solid $border_color;
333
 
334
  h1 {
335
  margin: 0;
349
  right: 0;
350
  text-align: center;
351
  border: 0;
352
+ border-left: 1px solid $border_color;
353
  background-color: transparent;
354
  transition: color 0.1s ease-in-out, background 0.1s ease-in-out;
355
 
363
 
364
  &:hover,
365
  &:focus {
366
+ background-color: $color_gray_four;
367
  border-color: #ccc;
368
  color: $gray_base;
369
  }
400
  bottom: 0;
401
  z-index: 100;
402
  padding: 1em 1.5em;
403
+ background-color: $color_gray_five;
404
  border-top: 1px solid #dfdfdf;
405
  box-shadow: 0 -4px 4px -4px rgba(0, 0, 0, 0.1);
406
 
428
  }
429
 
430
  .dashicons {
431
+ color: $red;
432
  font-size: 28px;
433
  width: 56px;
434
  height: 56px;
435
  line-height: 56px;
436
  margin: 0 auto 20px;
437
+ border: 2px solid $red;
438
  border-radius: 50%;
439
  }
440
 
451
  }
452
 
453
  .user-registration {
 
 
 
 
454
  nav.ur-nav-tab-wrapper {
455
  margin: 1.5em 0 1em;
 
456
  }
457
 
458
+ // Setting Page Submenu
459
  #mainform {
 
460
  > .subsubsub {
461
  background: #e5e5e5;
462
  float: none;
466
  padding: 7px 10px;
467
 
468
  &.current {
469
+ color: $white;
470
+ background: $primary_color;
471
  }
472
  }
473
  }
481
  margin: 0;
482
  position: relative;
483
 
484
+ fieldset {
485
+ margin-top: 4px;
486
+
487
+ img.help_tip,
488
+ .user-registration-help-tip {
489
+ margin: -3px 0 0 5px;
490
+ }
491
+
492
+ p.description {
493
+ margin-bottom: 8px;
494
+ }
495
+
496
+ &:first-child {
497
+ margin-top: 0;
498
+ }
499
+ }
500
+
501
+ th {
502
+ position: relative;
503
+ padding-right: 24px;
504
+
505
+ img.help_tip,
506
+ .user-registration-help-tip {
507
+ margin: 0 -24px 0 0;
508
+ float: right;
509
+ }
510
+ }
511
+
512
  .select2-container {
513
  display: block;
514
  max-width: 350px;
515
+ margin-bottom: 3px;
516
  }
517
 
518
  .forminp-radio ul {
519
  margin: 0;
520
+
521
  li {
522
  line-height: 1.4em;
523
  }
537
  width: 100%;
538
  }
539
 
540
+ .help_tip,
541
  .user-registration-help-tip {
542
  padding: 0;
543
  margin: -4px 0 0 5px;
546
  line-height: 1;
547
  }
548
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
549
  .wp-list-table .user-registration-help-tip {
550
  float: none;
551
  }
552
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553
  .iris-picker {
554
  z-index: 100;
555
  display: none;
574
  .colorpickpreview {
575
  padding: 3px;
576
  padding-left: 20px;
577
+ border: 1px solid $border_color;
578
  border-right: 0;
579
  }
580
 
589
  margin-left: 10px;
590
  }
591
  }
 
 
592
 
593
+ .dashicons {
594
+ margin-bottom: 2px;
595
+ vertical-align: middle;
596
+ }
597
+ }
598
  }
599
 
600
  .ur-registered-from {
619
  }
620
 
621
  .ur-field {
 
 
622
  label {
623
  font-weight: 400;
624
 
657
  }
658
  }
659
 
660
+ .ur-no-pointer {
661
+ pointer-events: none;
662
+ }
663
+
664
  .ur-registered-item {
665
  cursor: move;
666
  padding: 4px;
691
  width: 110px !important; // Inherit js styles
692
  z-index: 9 !important;
693
  }
694
+
695
+ &.ui-draggable-disabled {
696
+ color: $color_gray_three;
697
+
698
+ &.ur-upgradable-field {
699
+ cursor: pointer !important;
700
+ }
701
+
702
+ &:hover {
703
+ background: $color_gray_five;
704
+ cursor: not-allowed;
705
+ }
706
+ }
707
  }
708
 
709
  .ur-registered-inputs {
710
  width: 412px;
 
711
 
712
  .ur-tabs {
713
  border: 0 none;
781
  .ur-tab-content {
782
  padding: 16px;
783
 
784
+ .ur-search-fields {
785
+ display: flex;
786
+ align-items: center;
787
+ position: relative;
788
+
789
+ input.ur-type-text {
790
+ height: 40px;
791
+ padding: 8px 12px;
792
+ font-size: 14px;
793
+ background: $color_gray_five;
794
+ border-color: $color_gray_five;
795
+ border-radius: 4px;
796
+
797
+ &::placeholder {
798
+ color: $color_gray_three;
799
+ }
800
+ }
801
+
802
+ svg {
803
+ position: absolute;
804
+ right: 12px;
805
+ }
806
+ }
807
+
808
+ .ur-fields-not-found {
809
+ text-align: center;
810
+ margin-top: 2.85em;
811
+
812
+ .ur-fields-not-found-title {
813
+ font-size: 1.7em;
814
+ }
815
+ }
816
+
817
  &#ur-tab-registered-fields,
818
  &#ur-tab-field-options {
819
  background-color: $white;
842
  }
843
  }
844
  }
845
+
846
+ .ur-toggle-heading {
847
+ cursor: pointer;
848
+
849
+ &:before {
850
+ content: '\f142';
851
+ cursor: pointer;
852
+ display: block;
853
+ font: 400 20px/1 Dashicons;
854
+ line-height: .5!important;
855
+ padding: 4px;
856
+ position: relative;
857
+ right: 0;
858
+ top: 0;
859
+ float: right;
860
+ }
861
+
862
+ &.closed {
863
+ &:before {
864
+ content: '\f140';
865
+ }
866
+ }
867
+ }
868
  }
869
 
870
  input[type='text'],
1116
  white-space: nowrap;
1117
  border: 1px solid $border_color;
1118
  border-radius: 4px;
1119
+ box-shadow: 1px 4px 14px 1px transparentize($gray_base, 0.9);
1120
 
1121
  small {
1122
  font-size: 12px;
1144
  content: '';
1145
  width: 8px;
1146
  height: 8px;
1147
+ border: solid $border_color;
1148
  border-width: 1px;
1149
  border-left: transparent;
1150
  border-bottom: transparent;
1202
  .ur-input-type-signature {
1203
  canvas {
1204
  background: transparentize($white, 0.5);
1205
+ border: 1px solid $border_color;
1206
  }
1207
  }
1208
 
1255
 
1256
  .ur-trash {
1257
  &:hover {
1258
+ color: $red;
1259
  }
1260
  }
1261
  }
1413
  margin-left: 0;
1414
  width: 100% !important;
1415
  visibility: visible !important;
1416
+ border: 1px dashed $color_gray_three;
1417
  background-color: $color_gray_five;
1418
  }
1419
  }
1509
  }
1510
  }
1511
 
 
 
 
 
 
 
 
 
 
 
 
 
1512
  .ur-general-setting-block,
1513
  .ur-advance-setting-block {
1514
  display: none;
1515
  }
1516
 
 
 
 
 
 
1517
  .add,
1518
  .remove {
1519
  background: $white;
1520
+ border: 1px solid $border_color;
1521
  color: $color_gray_two;
1522
  cursor: pointer;
1523
  display: flex;
1545
  }
1546
 
1547
  .ur-options-list {
 
1548
  li {
1549
  display: flex;
1550
  align-items: center;
1603
  }
1604
  }
1605
 
 
 
 
 
1606
  /**
1607
  * Tooltips
1608
  */
1704
  line-height: 1.8em;
1705
  position: absolute;
1706
  white-space: normal;
1707
+ background: $red;
1708
  margin: 1.5em 1px 0 -1em;
1709
  z-index: 9999999;
1710
 
1711
  &::after {
1712
  content: '';
1713
  display: block;
1714
+ border: 8px solid $red;
1715
  border-right-color: transparent;
1716
  border-left-color: transparent;
1717
  border-top-color: transparent;
1747
  */
1748
 
1749
  .select2-results__option .wrap:before{
1750
+ content:"\2610";
1751
+ width:25px;
1752
+ height:25px;
1753
+ padding-right: 10px;
1754
  }
1755
 
1756
  .select2-results__option[data-selected=true] .wrap:before{
1757
+ content:"\2714";
1758
  }
1759
 
1760
  .select2-drop,
1772
  }
1773
 
1774
  .select2-dropdown {
1775
+ border-color: $color_gray_four;
1776
  }
1777
 
1778
  .select2-dropdown--below {
1789
  }
1790
 
1791
  .select2-selection {
1792
+ border-color: $color_gray_four;
1793
  }
1794
 
1795
  .select2-search__field {
1843
  }
1844
  }
1845
 
1846
+ #smart-tags {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1847
  text-align: center;
1848
  }
1849
 
1851
  cursor: pointer;
1852
  padding: 10px 15px;
1853
  color: $gray_base;
1854
+ background: $color_gray_four;
1855
  margin-bottom: 10px;
1856
  line-height: 1.2;
1857
  border-radius: 4px;
 
1858
 
1859
+ &.active {
1860
+ background: $primary_color;
1861
+ color: $white;
1862
+ }
1863
  }
1864
 
1865
  #profile-page form#your-profile .flatpickr-input[readonly]{
1866
+ background-color:$white
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1867
  }
1868
 
1869
+ /**
1870
+ * Fullscreen Mode
1871
+ **/
1872
  body {
1873
  &.ur-full-screen-mode {
1874
  margin-top: -32px;
1924
  }
1925
  }
1926
 
1927
+ /**
1928
+ * User Registration Builder Loading
1929
+ **/
1930
  @keyframes ur-circle-loading {
 
1931
  0%,
1932
  100% {
1933
  animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);
1938
  }
1939
 
1940
  0% {
 
1941
  transform: rotate(0deg) translate(0, -20px) scale(0);
1942
  }
1943
 
1944
  50% {
 
1945
  transform: rotate(180deg) translate(0, -20px) scale(1);
1946
  }
1947
 
1948
  100% {
 
1949
  transform: rotate(360deg) translate(0, -20px) scale(0);
1950
  }
1951
  }
1952
 
1953
  @-webkit-keyframes ur-circle-loading-keyframe {
 
1954
  0%,
1955
  100% {
1956
  animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);
1961
  }
1962
 
1963
  0% {
 
1964
  transform: rotate(0deg) translate(0, -20px) scale(0);
1965
  }
1966
 
1967
  50% {
 
1968
  transform: rotate(180deg) translate(0, -20px) scale(1);
1969
  }
1970
 
1971
  100% {
 
1972
  transform: rotate(360deg) translate(0, -20px) scale(0);
1973
  }
1974
  }
1975
 
1976
+
1977
+
1978
+ @keyframes open-message {
1979
+ 0% {
1980
+ opacity: 0;
1981
+ transform: translateY(-120%);
1982
+ }
1983
+ 100% {
1984
+ transform: translateY(0px);
1985
+ }
1986
+ }
1987
+
1988
+ @keyframes close-message {
1989
+ 0% {
1990
+ opacity: 1;
1991
+ transform: scale(1);
1992
+ }
1993
+ 100% {
1994
+ opacity: 0;
1995
+ transform: scale(0.9);
1996
+ }
1997
+ }
1998
+
1999
  .ur-circle-loading {
2000
  position: relative;
2001
  width: 100px !important;
2002
  height: 100px !important;
 
2003
  transform: translate(-50px, -50px) scale(0.5) translate(50px, 50px);
2004
 
2005
  &::before,
2008
  position: absolute;
2009
  top: 70px;
2010
  left: 70px;
 
2011
  animation: ur-circle-loading-keyframe 1.5s linear infinite;
2012
  width: 60px;
2013
  height: 60px;
2016
  }
2017
 
2018
  &::after {
 
2019
  animation-delay: -0.75s;
2020
  background: #668fe5;
2021
  }
2022
  }
2023
 
2024
+ .ur-builder-message-container {
2025
+ position: fixed;
2026
+ top: 32px;
2027
+ left: 0;
2028
+ right: 0;
2029
+ max-width: 400px;
2030
+ margin: 0 auto;
2031
+ z-index: 9999;
2032
+
2033
+ .ur-message {
2034
+ display: none;
2035
+ margin: 0 auto;
2036
+ margin-top: 16px;
2037
+ transition: all 240ms cubic-bezier(0, 0, 0.2, 1) 0s;
2038
+ z-index: 99999;
2039
+ height: 0px;
2040
+
2041
+ .ur-success,
2042
+ .ur-error {
2043
+ background: $white;
2044
+ padding: 8px 16px;
2045
+ border-radius: 3px;
2046
+ border-left: 3px solid;
2047
+ position: relative;
2048
+ box-shadow: 0px 1px 8px 2px transparentize($gray_base, 0.9);
2049
 
2050
+ p {
2051
+ margin: 8px 0;
2052
+ &::before,
2053
+ &::after {
2054
+ font-family: dashicons;
2055
+ width: 20px;
2056
+ height: 20px;
2057
+ font-size: 20px;
2058
+ margin-right: 8px;
2059
+ margin-top: -4px;
2060
+ line-height: 1;
2061
+ display: inline-block;
2062
+ vertical-align: middle;
2063
+ }
2064
+ }
2065
+ }
2066
+
2067
+ .ur-success {
2068
+ border-color: $green;
2069
+
2070
+ p {
2071
+ &::before {
2072
+ content: "\f12a";
2073
+ color: $green;
2074
+ }
2075
+ }
2076
+ }
2077
+
2078
+ .ur-error {
2079
+ border-color: $red;
2080
+
2081
+ p {
2082
+ &::before {
2083
+ content: "\f534";
2084
+ color: $red;
2085
+ }
2086
+ }
2087
+ }
2088
+
2089
+ .dashicons {
2090
+ cursor: pointer;
2091
+ position: absolute;
2092
+ right: 16px;
2093
+ top: 50%;
2094
+ transform: translateY(-50%);
2095
+ line-height: 1;
2096
+ }
2097
+
2098
+ &.entered {
2099
+ display: block;
2100
+ height: 50px;
2101
+ animation: 240ms cubic-bezier(0.175, 0.885, 0.32, 1.175) 0s 1 normal both open-message;
2102
+ }
2103
+
2104
+ &.exiting {
2105
+ display: block;
2106
+ animation: 120ms cubic-bezier(0.4, 0, 1, 1) 0s 1 normal both close-message;
2107
+ }
2108
+
2109
+ &:first-child {
2110
+ margin-top: 1.5rem;
2111
+ }
2112
+ }
2113
+ }
2114
 
2115
  /**
2116
  * Media Queries
2117
  */
 
2118
  @media only screen and (max-width: 1599px) {
2119
+ .ur_addons_wrap {
2120
+ .products {
2121
+ li {
2122
+ width: 32.66%;
 
 
 
 
 
 
2123
 
2124
+ &:nth-child(3n) {
2125
+ margin: 0 0 1% 0 !important;
2126
+ }
2127
+
2128
+ &:nth-child(5n) {
2129
+ margin: 0 1% 1% 0 !important;
 
 
2130
  }
2131
  }
2132
  }
2133
+ }
2134
+ }
2135
 
2136
+ @media screen and (max-width: 1400px) {
2137
+ .ur-registered-from {
2138
  .urcl-rules {
2139
  .urcl-field {
2140
  max-width: 61%;
2161
  }
2162
 
2163
  @media only screen and (max-width: 1120px) {
2164
+ .ur_addons_wrap {
2165
+ .products {
2166
+ li {
2167
+ width: 49%;
2168
+ margin: 0 2% 2% 0 !important;
2169
+
2170
+ &:nth-child(2n) {
2171
+ margin: 0 0 2% 0 !important;
2172
+ }
2173
+
2174
+ &:nth-child(3n),
2175
+ &:nth-child(5n) {
2176
+ margin: 0 2% 2% 0 !important;
2177
+ }
2178
+ }
2179
+ }
2180
  }
2181
  }
2182
 
2197
  }
2198
 
2199
  @media only screen and (max-width: 900px) {
2200
+ .ur_addons_wrap {
2201
+ .products {
2202
+ li {
2203
+ width: 49%;
2204
+ }
2205
+ }
2206
  }
2207
  }
2208
 
2236
  }
2237
  }
2238
 
 
 
 
 
 
 
 
2239
  @media screen and (max-width: 600px) {
2240
  .user-registration_page_add-new-registration .major-publishing-actions {
2241
  clear: both;
2262
 
2263
  &:nth-child(1n+2) {
2264
  border-left: 0 none;
 
2265
  }
2266
  }
2267
  }
2276
  margin: 0 0 3% 0 !important;
2277
  }
2278
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/menu.scss CHANGED
@@ -7,9 +7,8 @@
7
  /**
8
  * Imports
9
  */
10
- @import 'mixins';
11
  @import 'variables';
12
- @import 'colors';
13
 
14
  /**
15
  * Styling begins
7
  /**
8
  * Imports
9
  */
 
10
  @import 'variables';
11
+ @import 'mixins';
12
 
13
  /**
14
  * Styling begins
assets/css/my-account-layout-rtl.css CHANGED
@@ -1 +1 @@
1
- #user-registration.vertical{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}#user-registration.vertical .user-registration-error,#user-registration.vertical .user-registration-message{float:none;width:100%}#user-registration.vertical .user-registration-MyAccount-navigation{background:#f6f7f9;width:20%}#user-registration.vertical .user-registration-MyAccount-navigation ul{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-flex-wrap:nowrap;flex-wrap:nowrap}#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{background:#e8e9ee;border-right:4px solid #475bb2}#user-registration.vertical .user-registration-MyAccount-content{width:80%}#user-registration.vertical .user-registration-MyAccount-content .user-registration-profile-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;align-items:center}#user-registration.vertical .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container{margin-left:20px}#user-registration.horizontal{box-shadow:0 2px 20px rgba(45,53,89,.1)}#user-registration.horizontal .user-registration-error,#user-registration.horizontal .user-registration-info,#user-registration.horizontal .user-registration-message{margin-bottom:0}#user-registration.horizontal .user-registration-MyAccount-navigation ul{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border-bottom:1px solid #e8e9ee}#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a{padding:15px 20px}#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{background-color:#e8e9ee}#user-registration.horizontal .user-registration-MyAccount-content{text-align:center}#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container{margin:0 auto;margin-bottom:15px}#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container img{border-radius:50%;margin:0 auto}#user-registration.horizontal .user-registration-MyAccount-content .edit-password,#user-registration.horizontal .user-registration-MyAccount-content .edit-profile{text-align:right}#user-registration.horizontal .user-registration-MyAccount-content .edit-profile .user-registration-profile-header,#user-registration.horizontal .user-registration-MyAccount-content .edit-profile h2{text-align:center}@media screen and (max-width:980px){#user-registration.vertical .user-registration-MyAccount-navigation{width:30%}#user-registration.vertical .user-registration-MyAccount-content{width:70%}}@media screen and (max-width:600px){#user-registration.vertical .user-registration-MyAccount-navigation{width:100%}#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a{padding:15px 20px}#user-registration.vertical .user-registration-MyAccount-content{width:100%}#user-registration .user-registration-MyAccount-content{padding:15px}}
1
+ #user-registration.vertical{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}#user-registration.vertical .user-registration-error,#user-registration.vertical .user-registration-message{float:none;width:100%}#user-registration.vertical .user-registration-MyAccount-navigation{background:#f0f1f5;width:20%}#user-registration.vertical .user-registration-MyAccount-navigation ul{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-flex-wrap:nowrap;flex-wrap:nowrap}#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{background:#dee0e9;border-right:4px solid #475bb2}#user-registration.vertical .user-registration-MyAccount-content{width:80%}#user-registration.vertical .user-registration-MyAccount-content .user-registration-profile-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;align-items:center}#user-registration.vertical .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container{margin-left:20px}#user-registration.horizontal{box-shadow:0 2px 20px rgba(45,53,89,.1)}#user-registration.horizontal .user-registration-error,#user-registration.horizontal .user-registration-info,#user-registration.horizontal .user-registration-message{margin-bottom:0}#user-registration.horizontal .user-registration-MyAccount-navigation ul{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border-bottom:1px solid #dee0e9}#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a{padding:15px 20px}#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{background-color:#dee0e9}#user-registration.horizontal .user-registration-MyAccount-content{text-align:center}#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container{margin:0 auto;margin-bottom:15px}#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container img{border-radius:50%;margin:0 auto}#user-registration.horizontal .user-registration-MyAccount-content .edit-password,#user-registration.horizontal .user-registration-MyAccount-content .edit-profile{text-align:right}#user-registration.horizontal .user-registration-MyAccount-content .edit-profile .user-registration-profile-header,#user-registration.horizontal .user-registration-MyAccount-content .edit-profile h2{text-align:center}@media screen and (max-width:980px){#user-registration.vertical .user-registration-MyAccount-navigation{width:30%}#user-registration.vertical .user-registration-MyAccount-content{width:70%}}@media screen and (max-width:600px){#user-registration.vertical .user-registration-MyAccount-navigation{width:100%}#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a{padding:15px 20px}#user-registration.vertical .user-registration-MyAccount-content{width:100%}#user-registration .user-registration-MyAccount-content{padding:15px}}
assets/css/my-account-layout.css CHANGED
@@ -1 +1 @@
1
- #user-registration.vertical{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}#user-registration.vertical .user-registration-error,#user-registration.vertical .user-registration-message{float:none;width:100%}#user-registration.vertical .user-registration-MyAccount-navigation{background:#f6f7f9;width:20%}#user-registration.vertical .user-registration-MyAccount-navigation ul{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-flex-wrap:nowrap;flex-wrap:nowrap}#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{background:#e8e9ee;border-left:4px solid #475bb2}#user-registration.vertical .user-registration-MyAccount-content{width:80%}#user-registration.vertical .user-registration-MyAccount-content .user-registration-profile-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;align-items:center}#user-registration.vertical .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container{margin-right:20px}#user-registration.horizontal{box-shadow:0 2px 20px rgba(45,53,89,.1)}#user-registration.horizontal .user-registration-error,#user-registration.horizontal .user-registration-info,#user-registration.horizontal .user-registration-message{margin-bottom:0}#user-registration.horizontal .user-registration-MyAccount-navigation ul{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border-bottom:1px solid #e8e9ee}#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a{padding:15px 20px}#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{background-color:#e8e9ee}#user-registration.horizontal .user-registration-MyAccount-content{text-align:center}#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container{margin:0 auto;margin-bottom:15px}#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container img{border-radius:50%;margin:0 auto}#user-registration.horizontal .user-registration-MyAccount-content .edit-password,#user-registration.horizontal .user-registration-MyAccount-content .edit-profile{text-align:left}#user-registration.horizontal .user-registration-MyAccount-content .edit-profile .user-registration-profile-header,#user-registration.horizontal .user-registration-MyAccount-content .edit-profile h2{text-align:center}@media screen and (max-width:980px){#user-registration.vertical .user-registration-MyAccount-navigation{width:30%}#user-registration.vertical .user-registration-MyAccount-content{width:70%}}@media screen and (max-width:600px){#user-registration.vertical .user-registration-MyAccount-navigation{width:100%}#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a{padding:15px 20px}#user-registration.vertical .user-registration-MyAccount-content{width:100%}#user-registration .user-registration-MyAccount-content{padding:15px}}
1
+ #user-registration.vertical{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}#user-registration.vertical .user-registration-error,#user-registration.vertical .user-registration-message{float:none;width:100%}#user-registration.vertical .user-registration-MyAccount-navigation{background:#f0f1f5;width:20%}#user-registration.vertical .user-registration-MyAccount-navigation ul{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-flex-wrap:nowrap;flex-wrap:nowrap}#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{background:#dee0e9;border-left:4px solid #475bb2}#user-registration.vertical .user-registration-MyAccount-content{width:80%}#user-registration.vertical .user-registration-MyAccount-content .user-registration-profile-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;align-items:center}#user-registration.vertical .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container{margin-right:20px}#user-registration.horizontal{box-shadow:0 2px 20px rgba(45,53,89,.1)}#user-registration.horizontal .user-registration-error,#user-registration.horizontal .user-registration-info,#user-registration.horizontal .user-registration-message{margin-bottom:0}#user-registration.horizontal .user-registration-MyAccount-navigation ul{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border-bottom:1px solid #dee0e9}#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a{padding:15px 20px}#user-registration.horizontal .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{background-color:#dee0e9}#user-registration.horizontal .user-registration-MyAccount-content{text-align:center}#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container{margin:0 auto;margin-bottom:15px}#user-registration.horizontal .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container img{border-radius:50%;margin:0 auto}#user-registration.horizontal .user-registration-MyAccount-content .edit-password,#user-registration.horizontal .user-registration-MyAccount-content .edit-profile{text-align:left}#user-registration.horizontal .user-registration-MyAccount-content .edit-profile .user-registration-profile-header,#user-registration.horizontal .user-registration-MyAccount-content .edit-profile h2{text-align:center}@media screen and (max-width:980px){#user-registration.vertical .user-registration-MyAccount-navigation{width:30%}#user-registration.vertical .user-registration-MyAccount-content{width:70%}}@media screen and (max-width:600px){#user-registration.vertical .user-registration-MyAccount-navigation{width:100%}#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a{padding:15px 20px}#user-registration.vertical .user-registration-MyAccount-content{width:100%}#user-registration .user-registration-MyAccount-content{padding:15px}}
assets/css/my-account-layout.scss CHANGED
@@ -1,38 +1,35 @@
1
- @import 'colors';
2
 
3
  #user-registration {
 
 
 
4
 
5
- &.vertical {
6
- display: flex;
7
- flex-wrap: wrap;
8
-
9
- .user-registration-error, .user-registration-message {
10
- float:none;
11
- width: 100%;
12
- }
13
-
14
- .user-registration-MyAccount-navigation {
15
- background: $color_gray_light_skin;
16
- width: 20%;
17
-
18
- ul {
19
- flex-direction: column;
20
- flex-wrap: nowrap;
21
 
22
- .user-registration-MyAccount-navigation-link {
 
 
23
 
24
- &.is-active {
 
 
25
 
26
- a {
27
- background: $color_gray_lighten;
 
 
28
  border-left: 4px solid $primary_color;
29
  }
30
- }
31
- }
32
- }
33
- }
34
 
35
- .user-registration-MyAccount-content {
36
  width: 80%;
37
 
38
  .user-registration-profile-header {
@@ -44,7 +41,7 @@
44
  margin-right: 20px;
45
  }
46
  }
47
- }
48
  }
49
 
50
  &.horizontal {
@@ -57,21 +54,18 @@
57
  }
58
 
59
  .user-registration-MyAccount-navigation {
60
-
61
  ul {
62
  justify-content: center;
63
- border-bottom: 1px solid $color_gray_lighten;
64
 
65
  .user-registration-MyAccount-navigation-link {
66
-
67
  a {
68
  padding: 15px 20px;
69
  }
70
 
71
  &.is-active {
72
-
73
  a {
74
- background-color: $color_gray_lighten;
75
  }
76
  }
77
  }
@@ -82,7 +76,6 @@
82
  text-align: center;
83
 
84
  .user-registration-profile-header {
85
-
86
  .user-registration-img-container {
87
  margin: 0 auto;
88
  margin-bottom: 15px;
@@ -100,7 +93,6 @@
100
  }
101
 
102
  .edit-profile {
103
-
104
  .user-registration-profile-header,
105
  h2 {
106
  text-align: center;
@@ -110,43 +102,41 @@
110
  }
111
  }
112
  @media screen and (max-width: 980px) {
113
- #user-registration {
114
- &.vertical {
115
- .user-registration-MyAccount-navigation {
116
- width: 30%;
117
- }
118
-
119
- .user-registration-MyAccount-content {
120
- width: 70%;
121
- }
122
- }
123
- }
124
  }
125
 
126
  @media screen and (max-width: 600px) {
127
  #user-registration {
128
- &.vertical {
129
- .user-registration-MyAccount-navigation {
130
- width: 100%;
131
-
132
- ul {
133
 
134
- .user-registration-MyAccount-navigation-link {
135
-
136
- a {
137
- padding: 15px 20px;
138
- }
139
- }
140
- }
141
- }
142
 
143
- .user-registration-MyAccount-content {
144
- width: 100%;
145
- }
146
  }
147
 
148
  .user-registration-MyAccount-content {
149
  padding: 15px;
150
  }
151
- }
152
  }
1
+ @import 'variables';
2
 
3
  #user-registration {
4
+ &.vertical {
5
+ display: flex;
6
+ flex-wrap: wrap;
7
 
8
+ .user-registration-error, .user-registration-message {
9
+ float:none;
10
+ width: 100%;
11
+ }
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
+ .user-registration-MyAccount-navigation {
14
+ background: $color_gray_five;
15
+ width: 20%;
16
 
17
+ ul {
18
+ flex-direction: column;
19
+ flex-wrap: nowrap;
20
 
21
+ .user-registration-MyAccount-navigation-link {
22
+ &.is-active {
23
+ a {
24
+ background: $color_gray_four;
25
  border-left: 4px solid $primary_color;
26
  }
27
+ }
28
+ }
29
+ }
30
+ }
31
 
32
+ .user-registration-MyAccount-content {
33
  width: 80%;
34
 
35
  .user-registration-profile-header {
41
  margin-right: 20px;
42
  }
43
  }
44
+ }
45
  }
46
 
47
  &.horizontal {
54
  }
55
 
56
  .user-registration-MyAccount-navigation {
 
57
  ul {
58
  justify-content: center;
59
+ border-bottom: 1px solid $border_color;
60
 
61
  .user-registration-MyAccount-navigation-link {
 
62
  a {
63
  padding: 15px 20px;
64
  }
65
 
66
  &.is-active {
 
67
  a {
68
+ background-color: $color_gray_four;
69
  }
70
  }
71
  }
76
  text-align: center;
77
 
78
  .user-registration-profile-header {
 
79
  .user-registration-img-container {
80
  margin: 0 auto;
81
  margin-bottom: 15px;
93
  }
94
 
95
  .edit-profile {
 
96
  .user-registration-profile-header,
97
  h2 {
98
  text-align: center;
102
  }
103
  }
104
  @media screen and (max-width: 980px) {
105
+ #user-registration {
106
+ &.vertical {
107
+ .user-registration-MyAccount-navigation {
108
+ width: 30%;
109
+ }
110
+
111
+ .user-registration-MyAccount-content {
112
+ width: 70%;
113
+ }
114
+ }
115
+ }
116
  }
117
 
118
  @media screen and (max-width: 600px) {
119
  #user-registration {
120
+ &.vertical {
121
+ .user-registration-MyAccount-navigation {
122
+ width: 100%;
 
 
123
 
124
+ ul {
125
+ .user-registration-MyAccount-navigation-link {
126
+ a {
127
+ padding: 15px 20px;
128
+ }
129
+ }
130
+ }
131
+ }
132
 
133
+ .user-registration-MyAccount-content {
134
+ width: 100%;
135
+ }
136
  }
137
 
138
  .user-registration-MyAccount-content {
139
  padding: 15px;
140
  }
141
+ }
142
  }
assets/css/user-registration-rtl.css CHANGED
@@ -1 +1 @@
1
- .ur-form-container .button,.ur-form-container button,.user-registration .button,.user-registration button{-webkit-transition:all .25s ease 0s;transition:all .25s ease 0s}.ur-form-container .button.button-icon,.ur-form-container button.button-icon,.user-registration .button.button-icon,.user-registration button.button-icon{width:32px;padding:0}.ur-form-container .button.button-icon .dashicons,.ur-form-container button.button-icon .dashicons,.user-registration .button.button-icon .dashicons,.user-registration button.button-icon .dashicons{line-height:1;vertical-align:middle}.ur-form-container .button.button-icon-round,.ur-form-container button.button-icon-round,.user-registration .button.button-icon-round,.user-registration button.button-icon-round{border-radius:50%}.ur-form-container .button .ur-spinner,.ur-form-container button .ur-spinner,.user-registration .button .ur-spinner,.user-registration button .ur-spinner{width:16px;height:16px;margin-right:6px;margin-bottom:2px;display:inline-block;vertical-align:middle}.ur-form-container .button-primary,.user-registration .button-primary{background:#475bb2;border-color:#475bb2;box-shadow:0 1px 0 #475bb2;text-shadow:none}.ur-form-container .button-primary:active,.ur-form-container .button-primary:focus,.ur-form-container .button-primary:hover,.user-registration .button-primary:active,.user-registration .button-primary:focus,.user-registration .button-primary:hover{background:#38488e;border-color:#38488e;box-shadow:0 1px 0 #38488e}.ur-form-container .button-primary:disabled,.user-registration .button-primary:disabled{color:#b2bae0!important;background:#697ac3!important;border-color:#697ac3!important}.ur-form-container .button-secondary,.user-registration .button-secondary{color:#1a1f33;background:#dee0e9;border-color:#dee0e9;box-shadow:0 1px 0 #dee0e9}.ur-form-container .button-secondary:active,.ur-form-container .button-secondary:focus,.ur-form-container .button-secondary:hover,.user-registration .button-secondary:active,.user-registration .button-secondary:focus,.user-registration .button-secondary:hover{color:#1a1f33;background:#b6bbcf;border-color:#b6bbcf;box-shadow:0 1px 0 #b6bbcf}.ur-form-container .button-danger,.user-registration .button-danger{color:#fff;background:#ff4149;border-color:#ff4149;box-shadow:0 1px 0 #ff4149}.ur-form-container .button-danger:active,.ur-form-container .button-danger:focus,.ur-form-container .button-danger:hover,.user-registration .button-danger:active,.user-registration .button-danger:focus,.user-registration .button-danger:hover{color:#fff;background:#ee2a32;border-color:#ee2a32;box-shadow:0 1px 0 #ee2a32}.ur-form-container .publishing-action .button,.ur-form-container .publishing-action button,.ur-form-container .publishing-action input[type=button],.ur-form-container .publishing-action input[type=submit],.user-registration .publishing-action .button,.user-registration .publishing-action button,.user-registration .publishing-action input[type=button],.user-registration .publishing-action input[type=submit]{margin-left:5px}.ur-registered-item.ui-draggable-dragging{padding:10px 10px;line-height:20px;background:#475bb2;color:#fff;text-align:center;margin-bottom:7px;word-break:break-word;white-space:normal;width:200px!important;z-index:9}.ur-registered-item.ui-draggable-dragging span{font-size:14px;line-height:20px;width:auto;height:auto;margin-left:3px}.select2-container .ur-select-all-countries-button{margin:6px 6px 4px 3px}.select2-container .ur-unselect-all-countries-button{margin:6px 3px 4px}.clear{clear:both}.user-registration-error,.user-registration-info,.user-registration-message{display:block;margin:0 0 10px;padding:10px 15px;background-color:#f7f6f7;color:#515151;border-top:3px solid #a46497;list-style:none outside;width:auto;word-wrap:break-word;line-height:1.25;text-transform:none;font-size:14px}.user-registration-error::after,.user-registration-error::before,.user-registration-info::after,.user-registration-info::before,.user-registration-message::after,.user-registration-message::before{content:' ';display:table}.user-registration-error::after,.user-registration-info::after,.user-registration-message::after{clear:both}.user-registration-error::before,.user-registration-info::before,.user-registration-message::before{content:'\f348';display:inline-block;vertical-align:middle;font-family:Dashicons;font-size:calc(100% + 10px);margin-left:.875rem}.user-registration-error ul,.user-registration-info ul,.user-registration-message ul{margin:0!important;padding:0!important;background-color:transparent!important}.user-registration-error .button,.user-registration-info .button,.user-registration-message .button{float:left}.user-registration-error li,.user-registration-info li,.user-registration-message li{list-style:none outside!important;padding-right:0!important;margin-right:0!important}.user-registration-error .message,.user-registration-info .message,.user-registration-message .message{margin:0;padding:0}.user-registration-message{border-top-color:#8fae1b;background:rgba(143,174,27,.1);color:#596c11}.user-registration-info{color:#1e85be;border-top-color:#1e85be}.user-registration-error{border-top-color:#ff4149;background:rgba(255,65,73,.1);color:#f4000a}.user-registration-error::before{content:'\f534'}.ur-frontend-form{margin-bottom:30px;border:1px solid #ddd;padding:20px;box-sizing:border-box}.ur-frontend-form.login{margin:0;padding:10px;box-shadow:none;background:0 0}.ur-frontend-form.login input[name=rememberme]#rememberme{vertical-align:middle}.ur-frontend-form.login-registration{margin:0;border:none;padding:0}.ur-frontend-form .register #node_recaptcha_register{padding:0 10px}.ur-frontend-form *{box-sizing:border-box}.ur-frontend-form .description{display:block;font-size:14px;line-height:1.5}.ur-frontend-form .ur-form-row{display:-webkit-box;display:-webkit-flex;display:flex}.ur-frontend-form .ur-form-row:last-child{margin-bottom:0}.ur-frontend-form .ur-form-row .ur-form-grid{-webkit-box-flex:1;-webkit-flex:1;flex:1;padding:0 10px}.ur-frontend-form .ur-form-row .ur-form-grid:nth-child(1n+2){border-right:0 none}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item{margin-bottom:20px}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul{margin:0;list-style:none}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li{margin-right:0;line-height:1.3;vertical-align:middle;margin-bottom:10px}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li label,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li input,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li label{display:inline-block;vertical-align:inherit}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input[type=checkbox],.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input[type=radio],.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li input[type=checkbox],.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li input[type=radio]{margin-top:2px}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li label,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li label{display:inline}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item:last-child{margin-bottom:0}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone],.ur-frontend-form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker],.ur-frontend-form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form .ur-form-row .ur-form-grid select,.ur-frontend-form .ur-form-row .ur-form-grid textarea{display:block;width:100%;border-radius:0;min-height:36px;margin-bottom:10px;line-height:1.5}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=number]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid select::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid textarea::-webkit-input-placeholder{color:#ddd}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=number]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid select::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid textarea::-ms-input-placeholder{color:#ddd}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=number]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid select::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid textarea::placeholder{color:#ddd}.ur-frontend-form .ur-form-row .ur-form-grid input[type=checkbox],.ur-frontend-form .ur-form-row .ur-form-grid input[type=radio]{font-size:12px;display:inline-block;vertical-align:middle;margin-left:5px;margin-right:20px}.ur-frontend-form .ur-form-row .ur-form-grid input[type=checkbox]:first-child,.ur-frontend-form .ur-form-row .ur-form-grid input[type=radio]:first-child{margin-right:0}.ur-frontend-form .ur-form-row .ur-form-grid button:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=radio]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]:focus,.ur-frontend-form .ur-form-row .ur-form-grid select:focus,.ur-frontend-form .ur-form-row .ur-form-grid textarea:focus{outline:0}.ur-frontend-form .ur-form-row .ur-form-grid input[readonly],.ur-frontend-form .ur-form-row .ur-form-grid select[readonly],.ur-frontend-form .ur-form-row .ur-form-grid textarea[readonly]{cursor:auto}.ur-frontend-form .ur-form-row .ur-form-grid select{-webkit-appearance:none;background:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E") no-repeat left 5px top 55%}.ur-frontend-form .ur-form-row .ur-form-grid label,.ur-frontend-form .ur-form-row .ur-form-grid legend{display:block;font-size:14px;margin-bottom:10px;margin-top:10px}.ur-frontend-form .ur-form-row .ur-form-grid label .required,.ur-frontend-form .ur-form-row .ur-form-grid legend .required{text-decoration:none;border:none;color:#ff4149}.ur-frontend-form .ur-form-row .ur-form-grid label.ur-label,.ur-frontend-form .ur-form-row .ur-form-grid legend.ur-label{font-weight:700}.ur-frontend-form .ur-form-row .ur-form-grid textarea{padding:10px;height:100px;resize:none;padding:5px 20px}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-left:50px}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group{display:block;position:relative}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview{color:#676d8a;position:absolute;top:50%;left:15px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview.dashicons.dashicons-hidden{opacity:.6}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview.dashicons.dashicons-hidden:hover{opacity:1}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple{border:1px solid #f0f1f5}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-selection__rendered{display:block}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-selection__rendered li:last-child{margin-right:0}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-selection__choice{margin:5px}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-search--inline input[type=text]{margin:5px;height:inherit}.ur-frontend-form button,.ur-frontend-form button[type=submit],.ur-frontend-form input[type=submit]{padding:10px 20px;line-height:1.5;text-align:center;word-break:break-word;white-space:normal;border:none;cursor:pointer;-webkit-transition:.35s all ease-out;transition:.35s all ease-out}.ur-frontend-form input[type=submit]{float:left}.ur-frontend-form .ur-button-container{display:-webkit-box;display:-webkit-flex;display:flex;margin-top:10px;padding:0 10px}.ur-frontend-form .ur-button-container .ur-submit-button{margin-right:auto}.ur-frontend-form .ur-submit-button{margin-left:10px;margin-bottom:0}.ur-frontend-form label abbr.required{text-decoration:none;border:none;color:red}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid textarea{border:none;border-bottom:1px solid #69717a;outline:0;-webkit-transition:all .35s;transition:all .35s;padding:10px 15px;background:#f8f9fa;color:#69717a;height:45px}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid label,.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid legend{margin-right:5px;color:#69717a}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid textarea{height:100px}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-left:50px}.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-next,.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-prev,.ur-frontend-form.ur-frontend-form--bordered form button[type=submit],.ur-frontend-form.ur-frontend-form--bordered form input[type=submit]{background:#f8f9fa;border:1px solid #69717a;color:#69717a;border-radius:0}.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-next:hover,.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-prev:hover,.ur-frontend-form.ur-frontend-form--bordered form button[type=submit]:hover,.ur-frontend-form.ur-frontend-form--bordered form input[type=submit]:hover{background:#475bb2;color:#fff;border-color:#475bb2}.ur-frontend-form.ur-frontend-form--flat{background:#f7f7f7;border:none transparent}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid .form-row,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid .ur-field-item{margin-bottom:0}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid textarea{border:none;outline:0;padding:10px 15px;background:#fff;color:#69717a;margin-bottom:10px;height:45px}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=date]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=email]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=number]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=password]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=text]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=url]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid select:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid textarea:focus{box-shadow:0 0 10px 5px rgba(0,0,0,.05)}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid select{margin-bottom:10px}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid label,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid legend{color:#69717a}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid textarea{height:100px}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-left:50px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid textarea{border:1px solid #ced4da;border-radius:25px;outline:0;-webkit-transition:all .35s;transition:all .35s;padding:10px 15px;background:#fff;color:#69717a;height:45px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid button[type=button]{border-radius:25px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid label,.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid legend{margin-right:5px;color:#69717a}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid textarea{height:100px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-left:50px}.ur-frontend-form.ur-frontend-form--rounded form button.user-registration-multi-part-nav-next,.ur-frontend-form.ur-frontend-form--rounded form button.user-registration-multi-part-nav-prev,.ur-frontend-form.ur-frontend-form--rounded form button[type=submit],.ur-frontend-form.ur-frontend-form--rounded form input[type=submit]{border:0 none;color:#fff;border-radius:25px;float:none;display:block;padding:15px 25px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid textarea{border-radius:2px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-left:50px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid button[type=button]{border-radius:2px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form button.user-registration-multi-part-nav-next,.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form button.user-registration-multi-part-nav-prev,.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form button[type=submit],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form input[type=submit]{border-radius:2px}.ur-frontend-form #ur-submit-message-node{margin:20px 0 0 0}.ur-frontend-form #ur-submit-message-node.ur-error{background:rgba(206,0,0,.1)}.ur-frontend-form #ur-submit-message-node.ur-message.message{background:rgba(143,174,27,.2)}#user-registration{background-color:#fff;margin:30px 0}#user-registration *,#user-registration.user-registration{box-sizing:border-box}#user-registration p{color:#333}#user-registration .user-registration-tips{font-size:12px;color:#acaeba;margin-bottom:0}#user-registration .user-registration-MyAccount-navigation{overflow:visible;margin:0}#user-registration .user-registration-MyAccount-navigation ul{margin:0;padding:0;display:-webkit-flex;display:-webkit-box;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link{list-style:none;padding:0;margin:0;display:inline-block;position:relative;box-shadow:0 0 0 transparent}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a{padding:10px 15px;display:block;font-weight:400;font-size:14px;font-family:sans-serif;text-decoration:none;box-shadow:0 0 0 transparent}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{font-weight:600}#user-registration .user-registration-MyAccount-content{padding:30px}#user-registration .user-registration-MyAccount-content h2{margin-bottom:30px}#user-registration .user-registration-MyAccount-content .user-registration-profile-fields__field-wrapper{margin:0 -10px}#user-registration .user-registration-MyAccount-content .ur-form-grid{border:0 none;background:0 0}#user-registration .user-registration-MyAccount-content .ur-frontend-form{border:none}#user-registration .user-registration-MyAccount-content .edit-password legend,#user-registration .user-registration-MyAccount-content h2{font-size:28px;font-weight:400}#user-registration .user-registration-MyAccount-content .user-registration-profile-header{margin-bottom:25px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container{width:100px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header h3{font-size:22px;font-weight:400;margin-bottom:5px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header header .button-group,#user-registration .user-registration-MyAccount-content .user-registration-profile-header header p{margin-bottom:10px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header header .profile-pic-remove{margin-left:10px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header .user-registration-nick-name{color:#acaeba}#user-registration .user-registration-MyAccount-content .user-registration-EditProfileForm .user-registration-profile-header .user-registration-img-container{width:auto}.user-registration-password-strength{text-align:center;font-weight:600;padding:3px .5em;font-size:1em}.user-registration-password-strength.strong{background-color:#c1e1b9;border-color:#83c373}.user-registration-password-strength.short{background-color:#f1adad;border-color:#e35b5b}.user-registration-password-strength.bad{background-color:#fbc5a9;border-color:#f78b53}.user-registration-password-strength.good{background-color:#ffe399;border-color:#ffc733}.user-registration-password-hint{margin:.5em 0 0;display:block}.ur-front-spinner{background:url(../images/wpspin_light-2x.gif) no-repeat;background-size:16px 16px;display:block;opacity:.7;width:16px;height:16px;margin-right:-40px;float:right}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap h2,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap h2{width:100%;margin-bottom:.5em}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap .components-base-control,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap .components-base-control{width:100%}.ur-frontend-form.ur-gutenberg-editor form button[type=submit]{cursor:not-allowed}.ur-frontend-form.ur-gutenberg-editor form .ur-form-row .ur-form-grid input{cursor:not-allowed}#tiptip_holder{display:none;z-index:8675309;position:absolute;top:0;left:0}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-right:-6px;border-top-color:#dee0e9}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-right:-6px;border-bottom-color:#dee0e9}#tiptip_holder.tip_right{padding-right:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-right:-5px;border-left-color:#dee0e9}#tiptip_holder.tip_left{padding-left:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-right:-7px;border-right-color:#dee0e9}#tiptip_content,.ur_error_tip{color:#fff;font-size:.8em;max-width:150px;background:#dee0e9;text-align:center;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2)}#tiptip_content code,.ur_error_tip code{padding:1px;background:#888}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}.ur-hidden{display:none}
1
+ .ur-form-container .button,.ur-form-container button,.user-registration .button,.user-registration button{-webkit-transition:all .25s ease 0s;transition:all .25s ease 0s}.ur-form-container .button.button-icon,.ur-form-container button.button-icon,.user-registration .button.button-icon,.user-registration button.button-icon{width:32px;padding:0}.ur-form-container .button.button-icon .dashicons,.ur-form-container button.button-icon .dashicons,.user-registration .button.button-icon .dashicons,.user-registration button.button-icon .dashicons{line-height:1;vertical-align:middle}.ur-form-container .button.button-icon-round,.ur-form-container button.button-icon-round,.user-registration .button.button-icon-round,.user-registration button.button-icon-round{border-radius:50%}.ur-form-container .button .ur-spinner,.ur-form-container button .ur-spinner,.user-registration .button .ur-spinner,.user-registration button .ur-spinner{width:16px;height:16px;margin-right:6px;margin-bottom:2px;display:inline-block;vertical-align:middle}.ur-form-container .button-primary,.user-registration .button-primary{background:#475bb2;border-color:#475bb2;box-shadow:0 1px 0 #475bb2;text-shadow:none}.ur-form-container .button-primary:active,.ur-form-container .button-primary:focus,.ur-form-container .button-primary:hover,.user-registration .button-primary:active,.user-registration .button-primary:focus,.user-registration .button-primary:hover{background:#38488e;border-color:#38488e;box-shadow:0 1px 0 #38488e}.ur-form-container .button-primary:disabled,.user-registration .button-primary:disabled{color:#b2bae0!important;background:#697ac3!important;border-color:#697ac3!important}.ur-form-container .button-secondary,.user-registration .button-secondary{color:#2d3559;background:#dee0e9;border-color:#dee0e9;box-shadow:0 1px 0 #dee0e9}.ur-form-container .button-secondary:active,.ur-form-container .button-secondary:focus,.ur-form-container .button-secondary:hover,.user-registration .button-secondary:active,.user-registration .button-secondary:focus,.user-registration .button-secondary:hover{color:#2d3559;background:#b6bbcf;border-color:#b6bbcf;box-shadow:0 1px 0 #b6bbcf}.ur-form-container .button-danger,.user-registration .button-danger{color:#fff;background:#ff4149;border-color:#ff4149;box-shadow:0 1px 0 #ff4149}.ur-form-container .button-danger:active,.ur-form-container .button-danger:focus,.ur-form-container .button-danger:hover,.user-registration .button-danger:active,.user-registration .button-danger:focus,.user-registration .button-danger:hover{color:#fff;background:#ee2a32;border-color:#ee2a32;box-shadow:0 1px 0 #ee2a32}.ur-form-container .publishing-action .button,.ur-form-container .publishing-action button,.ur-form-container .publishing-action input[type=button],.ur-form-container .publishing-action input[type=submit],.user-registration .publishing-action .button,.user-registration .publishing-action button,.user-registration .publishing-action input[type=button],.user-registration .publishing-action input[type=submit]{margin-left:5px}.ur-registered-item.ui-draggable-dragging{padding:10px 10px;line-height:20px;background:#475bb2;color:#fff;text-align:center;margin-bottom:7px;word-break:break-word;white-space:normal;width:200px!important;z-index:9}.ur-registered-item.ui-draggable-dragging span{font-size:14px;line-height:20px;width:auto;height:auto;margin-left:3px}.select2-container .ur-select-all-countries-button{margin:6px 6px 4px 3px}.select2-container .ur-unselect-all-countries-button{margin:6px 3px 4px}.clear{clear:both}.user-registration-error,.user-registration-info,.user-registration-message{display:block;margin:0 0 10px;padding:10px 15px;background-color:#f0f1f9;color:#4c5477;border-top:3px solid #475bb2;list-style:none outside;width:auto;word-wrap:break-word;line-height:1.25;text-transform:none;font-size:14px}.user-registration-error::after,.user-registration-error::before,.user-registration-info::after,.user-registration-info::before,.user-registration-message::after,.user-registration-message::before{content:' ';display:table}.user-registration-error::after,.user-registration-info::after,.user-registration-message::after{clear:both}.user-registration-error::before,.user-registration-info::before,.user-registration-message::before{content:'\f348';display:inline-block;vertical-align:middle;font-family:Dashicons;font-size:calc(100% + 10px);margin-left:.875rem}.user-registration-error ul,.user-registration-info ul,.user-registration-message ul{margin:0!important;padding:0!important;background-color:transparent!important}.user-registration-error .button,.user-registration-info .button,.user-registration-message .button{float:left}.user-registration-error li,.user-registration-info li,.user-registration-message li{list-style:none outside!important;padding-right:0!important;margin-right:0!important}.user-registration-error .message,.user-registration-info .message,.user-registration-message .message{margin:0;padding:0}.user-registration-message{border-top-color:#8fae1b;background:rgba(143,174,27,.1);color:#596c11}.user-registration-info{color:#1e85be;border-top-color:#1e85be}.user-registration-error{border-top-color:#ff4149;background:rgba(255,65,73,.1);color:#f4000a}.user-registration-error::before{content:'\f534'}.ur-frontend-form{margin-bottom:30px;border:1px solid #dee0e9;padding:20px;box-sizing:border-box}.ur-frontend-form.login{margin:0;padding:10px;box-shadow:none;background:0 0}.ur-frontend-form.login input[name=rememberme]#rememberme{vertical-align:middle}.ur-frontend-form.login-registration{margin:0;border:none;padding:0}.ur-frontend-form .register #node_recaptcha_register{padding:0 10px}.ur-frontend-form *{box-sizing:border-box}.ur-frontend-form .description{display:block;font-size:14px;line-height:1.5}.ur-frontend-form .ur-form-row{display:-webkit-box;display:-webkit-flex;display:flex}.ur-frontend-form .ur-form-row:last-child{margin-bottom:0}.ur-frontend-form .ur-form-row .ur-form-grid{-webkit-box-flex:1;-webkit-flex:1;flex:1;padding:0 10px}.ur-frontend-form .ur-form-row .ur-form-grid:nth-child(1n+2){border-right:0 none}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item{margin-bottom:20px}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul{margin:0;list-style:none}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li{margin-right:0;line-height:1.3;vertical-align:middle;margin-bottom:10px}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li label,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li input,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li label{display:inline-block;vertical-align:inherit}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input[type=checkbox],.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input[type=radio],.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li input[type=checkbox],.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li input[type=radio]{margin-top:2px}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li label,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li label{display:inline}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item:last-child{margin-bottom:0}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone],.ur-frontend-form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker],.ur-frontend-form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form .ur-form-row .ur-form-grid select,.ur-frontend-form .ur-form-row .ur-form-grid textarea{display:block;width:100%;border-radius:0;min-height:36px;margin-bottom:10px;line-height:1.5}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=number]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid select::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid textarea::-webkit-input-placeholder{color:#ddd}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=number]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid select::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid textarea::-ms-input-placeholder{color:#ddd}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=number]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid select::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid textarea::placeholder{color:#ddd}.ur-frontend-form .ur-form-row .ur-form-grid input[type=checkbox],.ur-frontend-form .ur-form-row .ur-form-grid input[type=radio]{font-size:12px;display:inline-block;vertical-align:middle;margin-left:5px;margin-right:20px}.ur-frontend-form .ur-form-row .ur-form-grid input[type=checkbox]:first-child,.ur-frontend-form .ur-form-row .ur-form-grid input[type=radio]:first-child{margin-right:0}.ur-frontend-form .ur-form-row .ur-form-grid button:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=radio]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]:focus,.ur-frontend-form .ur-form-row .ur-form-grid select:focus,.ur-frontend-form .ur-form-row .ur-form-grid textarea:focus{outline:0}.ur-frontend-form .ur-form-row .ur-form-grid input[readonly],.ur-frontend-form .ur-form-row .ur-form-grid select[readonly],.ur-frontend-form .ur-form-row .ur-form-grid textarea[readonly]{cursor:auto}.ur-frontend-form .ur-form-row .ur-form-grid select{-webkit-appearance:none;background:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E") no-repeat left 5px top 55%}.ur-frontend-form .ur-form-row .ur-form-grid label,.ur-frontend-form .ur-form-row .ur-form-grid legend{display:block;font-size:14px;margin-bottom:10px;margin-top:10px}.ur-frontend-form .ur-form-row .ur-form-grid label .required,.ur-frontend-form .ur-form-row .ur-form-grid legend .required{text-decoration:none;border:none;color:#ff4149}.ur-frontend-form .ur-form-row .ur-form-grid label.ur-label,.ur-frontend-form .ur-form-row .ur-form-grid legend.ur-label{font-weight:700}.ur-frontend-form .ur-form-row .ur-form-grid textarea{padding:10px;height:100px;resize:none;padding:5px 20px}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-left:50px}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group{display:block;position:relative}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview{color:#676d8a;position:absolute;top:50%;left:15px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview.dashicons.dashicons-hidden{opacity:.6}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview.dashicons.dashicons-hidden:hover{opacity:1}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple{border:1px solid #f0f1f5}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-selection__rendered{display:block}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-selection__rendered li:last-child{margin-right:0}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-selection__choice{margin:5px}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-search--inline input[type=text]{margin:5px;height:inherit}.ur-frontend-form button,.ur-frontend-form button[type=submit],.ur-frontend-form input[type=submit]{padding:10px 20px;line-height:1.5;text-align:center;word-break:break-word;white-space:normal;border:none;cursor:pointer;-webkit-transition:.35s all ease-out;transition:.35s all ease-out}.ur-frontend-form input[type=submit]{float:left}.ur-frontend-form .ur-button-container{display:-webkit-box;display:-webkit-flex;display:flex;margin-top:10px;padding:0 10px}.ur-frontend-form .ur-button-container .ur-submit-button{margin-right:auto}.ur-frontend-form .ur-submit-button{margin-left:10px;margin-bottom:0}.ur-frontend-form label abbr.required{text-decoration:none;border:none;color:#ff4149}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid textarea{border:none;border-bottom:1px solid #c0c4d4;outline:0;-webkit-transition:all .35s;transition:all .35s;padding:10px 15px;background:#f0f1f5;color:#676d8a;height:45px}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid label,.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid legend{margin-right:5px;color:#676d8a}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid textarea{height:100px}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-left:50px}.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-next,.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-prev,.ur-frontend-form.ur-frontend-form--bordered form button[type=submit],.ur-frontend-form.ur-frontend-form--bordered form input[type=submit]{background:#f0f1f5;border:1px solid #dee0e9;color:#676d8a;border-radius:0}.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-next:hover,.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-prev:hover,.ur-frontend-form.ur-frontend-form--bordered form button[type=submit]:hover,.ur-frontend-form.ur-frontend-form--bordered form input[type=submit]:hover{background:#475bb2;color:#fff;border-color:#475bb2}.ur-frontend-form.ur-frontend-form--flat{background:#f7f7f7;border:none transparent}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid .form-row,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid .ur-field-item{margin-bottom:0}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid textarea{border:none;outline:0;padding:10px 15px;background:#fff;color:#676d8a;margin-bottom:10px;height:45px}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=date]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=email]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=number]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=password]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=text]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=url]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid select:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid textarea:focus{box-shadow:0 0 10px 5px rgba(0,0,0,.05)}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid select{margin-bottom:10px}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid label,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid legend{color:#676d8a}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid textarea{height:100px}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-left:50px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid textarea{border:1px solid #c0c4d4;border-radius:25px;outline:0;-webkit-transition:all .35s;transition:all .35s;padding:10px 15px;background:#fff;color:#676d8a;height:45px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid button[type=button]{border-radius:25px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid label,.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid legend{margin-right:5px;color:#676d8a}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid textarea{height:100px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-left:50px}.ur-frontend-form.ur-frontend-form--rounded form button.user-registration-multi-part-nav-next,.ur-frontend-form.ur-frontend-form--rounded form button.user-registration-multi-part-nav-prev,.ur-frontend-form.ur-frontend-form--rounded form button[type=submit],.ur-frontend-form.ur-frontend-form--rounded form input[type=submit]{border:0 none;color:#fff;border-radius:25px;float:none;display:block;padding:15px 25px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid textarea{border-radius:2px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-left:50px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid button[type=button]{border-radius:2px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form button.user-registration-multi-part-nav-next,.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form button.user-registration-multi-part-nav-prev,.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form button[type=submit],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form input[type=submit]{border-radius:2px}.ur-frontend-form #ur-submit-message-node{margin:20px 0 0 0}.ur-frontend-form #ur-submit-message-node.ur-error{background:rgba(206,0,0,.1)}.ur-frontend-form #ur-submit-message-node.ur-message.message{background:rgba(143,174,27,.2)}#user-registration{background-color:#fff;margin:30px 0}#user-registration *,#user-registration.user-registration{box-sizing:border-box}#user-registration p{color:#333}#user-registration .user-registration-tips{font-size:12px;color:#b6bbcf;margin-bottom:0}#user-registration .user-registration-MyAccount-navigation{overflow:visible;margin:0}#user-registration .user-registration-MyAccount-navigation ul{margin:0;padding:0;display:-webkit-flex;display:-webkit-box;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link{list-style:none;padding:0;margin:0;display:inline-block;position:relative;box-shadow:0 0 0 transparent}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a{padding:10px 15px;display:block;font-weight:400;font-size:14px;font-family:sans-serif;text-decoration:none;box-shadow:0 0 0 transparent}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{font-weight:600}#user-registration .user-registration-MyAccount-content{padding:30px}#user-registration .user-registration-MyAccount-content h2{margin-bottom:30px}#user-registration .user-registration-MyAccount-content .user-registration-profile-fields__field-wrapper{margin:0 -10px}#user-registration .user-registration-MyAccount-content .ur-form-grid{border:0 none;background:0 0}#user-registration .user-registration-MyAccount-content .ur-frontend-form{border:none}#user-registration .user-registration-MyAccount-content .edit-password legend,#user-registration .user-registration-MyAccount-content h2{font-size:28px;font-weight:400}#user-registration .user-registration-MyAccount-content .user-registration-profile-header{margin-bottom:25px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container{width:100px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header h3{font-size:22px;font-weight:400;margin-bottom:5px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header header .button-group,#user-registration .user-registration-MyAccount-content .user-registration-profile-header header p{margin-bottom:10px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header header .profile-pic-remove{margin-left:10px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header .user-registration-nick-name{color:#676d8a}#user-registration .user-registration-MyAccount-content .user-registration-EditProfileForm .user-registration-profile-header .user-registration-img-container{width:auto}.user-registration-password-strength{text-align:center;font-weight:600;padding:3px .5em;font-size:1em}.user-registration-password-strength.strong{background-color:#c1e1b9;border-color:#83c373}.user-registration-password-strength.short{background-color:#f1adad;border-color:#e35b5b}.user-registration-password-strength.bad{background-color:#fbc5a9;border-color:#f78b53}.user-registration-password-strength.good{background-color:#ffe399;border-color:#ffc733}.user-registration-password-hint{margin:.5em 0 0;display:block}.ur-front-spinner{background:url(../images/wpspin_light-2x.gif) no-repeat;background-size:16px 16px;display:block;opacity:.7;width:16px;height:16px;margin-right:-40px;float:right}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap h2,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap h2{width:100%;margin-bottom:.5em}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap .components-base-control,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap .components-base-control{width:100%}.ur-frontend-form.ur-gutenberg-editor form button[type=submit]{cursor:not-allowed}.ur-frontend-form.ur-gutenberg-editor form .ur-form-row .ur-form-grid input{cursor:not-allowed}#tiptip_holder{display:none;z-index:8675309;position:absolute;top:0;left:0}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-right:-6px;border-top-color:#dee0e9}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-right:-6px;border-bottom-color:#dee0e9}#tiptip_holder.tip_right{padding-right:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-right:-5px;border-left-color:#dee0e9}#tiptip_holder.tip_left{padding-left:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-right:-7px;border-right-color:#dee0e9}#tiptip_content,.ur_error_tip{color:#fff;font-size:.8em;max-width:150px;background:#dee0e9;text-align:center;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2)}#tiptip_content code,.ur_error_tip code{padding:1px;background:#888}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}.ur-hidden{display:none}
assets/css/user-registration-smallscreen-rtl.css CHANGED
@@ -1 +1 @@
1
- @media screen and (max-width:768px){.ur-frontend-form .ur-form-row{display:-webkit-flex;display:-webkit-box;display:flex;-webkit-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.ur-frontend-form .ur-form-row .ur-form-grid{width:100%!important;margin-bottom:20px}.ur-frontend-form .ur-form-row .ur-form-grid:nth-child(1n+2){border-right:1px solid #ddd}.ur-frontend-form .ur-form-row .ur-form-grid:last-child{margin-bottom:0;border-right:0 none}}@media screen and (max-width:600px){#user-registration .user-registration-MyAccount-navigation ul{display:block}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link{display:block}}
1
+ @media screen and (max-width:768px){.ur-frontend-form .ur-form-row{display:-webkit-flex;display:-webkit-box;display:flex;-webkit-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.ur-frontend-form .ur-form-row .ur-form-grid{width:100%!important;margin-bottom:20px}.ur-frontend-form .ur-form-row .ur-form-grid:nth-child(1n+2){border-right:1px solid #dee0e9}.ur-frontend-form .ur-form-row .ur-form-grid:last-child{margin-bottom:0;border-right:0 none}}@media screen and (max-width:600px){#user-registration .user-registration-MyAccount-navigation ul{display:block}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link{display:block}}
assets/css/user-registration-smallscreen.css CHANGED
@@ -1 +1 @@
1
- @media screen and (max-width:768px){.ur-frontend-form .ur-form-row{display:-webkit-flex;display:-webkit-box;display:flex;-webkit-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.ur-frontend-form .ur-form-row .ur-form-grid{width:100%!important;margin-bottom:20px}.ur-frontend-form .ur-form-row .ur-form-grid:nth-child(1n+2){border-left:1px solid #ddd}.ur-frontend-form .ur-form-row .ur-form-grid:last-child{margin-bottom:0;border-left:0 none}}@media screen and (max-width:600px){#user-registration .user-registration-MyAccount-navigation ul{display:block}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link{display:block}}
1
+ @media screen and (max-width:768px){.ur-frontend-form .ur-form-row{display:-webkit-flex;display:-webkit-box;display:flex;-webkit-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.ur-frontend-form .ur-form-row .ur-form-grid{width:100%!important;margin-bottom:20px}.ur-frontend-form .ur-form-row .ur-form-grid:nth-child(1n+2){border-left:1px solid #dee0e9}.ur-frontend-form .ur-form-row .ur-form-grid:last-child{margin-bottom:0;border-left:0 none}}@media screen and (max-width:600px){#user-registration .user-registration-MyAccount-navigation ul{display:block}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link{display:block}}
assets/css/user-registration-smallscreen.scss CHANGED
@@ -8,11 +8,10 @@
8
  */
9
  @import 'mixins';
10
  @import 'variables';
11
- @import 'colors';
12
  /**
13
  * Style begins
14
- */
15
-
16
  @media screen and (max-width: 768px) {
17
  .ur-frontend-form {
18
  .ur-form-row {
@@ -24,7 +23,7 @@
24
  width: 100% !important;
25
  margin-bottom: 20px;
26
  &:nth-child(1n+2) {
27
- border-left: 1px solid $color_gray_six;
28
  }
29
  &:last-child {
30
  margin-bottom: 0;
8
  */
9
  @import 'mixins';
10
  @import 'variables';
11
+
12
  /**
13
  * Style begins
14
+ **/
 
15
  @media screen and (max-width: 768px) {
16
  .ur-frontend-form {
17
  .ur-form-row {
23
  width: 100% !important;
24
  margin-bottom: 20px;
25
  &:nth-child(1n+2) {
26
+ border-left: 1px solid $border_color;
27
  }
28
  &:last-child {
29
  margin-bottom: 0;
assets/css/user-registration.css CHANGED
@@ -1 +1 @@
1
- .ur-form-container .button,.ur-form-container button,.user-registration .button,.user-registration button{-webkit-transition:all .25s ease 0s;transition:all .25s ease 0s}.ur-form-container .button.button-icon,.ur-form-container button.button-icon,.user-registration .button.button-icon,.user-registration button.button-icon{width:32px;padding:0}.ur-form-container .button.button-icon .dashicons,.ur-form-container button.button-icon .dashicons,.user-registration .button.button-icon .dashicons,.user-registration button.button-icon .dashicons{line-height:1;vertical-align:middle}.ur-form-container .button.button-icon-round,.ur-form-container button.button-icon-round,.user-registration .button.button-icon-round,.user-registration button.button-icon-round{border-radius:50%}.ur-form-container .button .ur-spinner,.ur-form-container button .ur-spinner,.user-registration .button .ur-spinner,.user-registration button .ur-spinner{width:16px;height:16px;margin-left:6px;margin-bottom:2px;display:inline-block;vertical-align:middle}.ur-form-container .button-primary,.user-registration .button-primary{background:#475bb2;border-color:#475bb2;box-shadow:0 1px 0 #475bb2;text-shadow:none}.ur-form-container .button-primary:active,.ur-form-container .button-primary:focus,.ur-form-container .button-primary:hover,.user-registration .button-primary:active,.user-registration .button-primary:focus,.user-registration .button-primary:hover{background:#38488e;border-color:#38488e;box-shadow:0 1px 0 #38488e}.ur-form-container .button-primary:disabled,.user-registration .button-primary:disabled{color:#b2bae0!important;background:#697ac3!important;border-color:#697ac3!important}.ur-form-container .button-secondary,.user-registration .button-secondary{color:#1a1f33;background:#dee0e9;border-color:#dee0e9;box-shadow:0 1px 0 #dee0e9}.ur-form-container .button-secondary:active,.ur-form-container .button-secondary:focus,.ur-form-container .button-secondary:hover,.user-registration .button-secondary:active,.user-registration .button-secondary:focus,.user-registration .button-secondary:hover{color:#1a1f33;background:#b6bbcf;border-color:#b6bbcf;box-shadow:0 1px 0 #b6bbcf}.ur-form-container .button-danger,.user-registration .button-danger{color:#fff;background:#ff4149;border-color:#ff4149;box-shadow:0 1px 0 #ff4149}.ur-form-container .button-danger:active,.ur-form-container .button-danger:focus,.ur-form-container .button-danger:hover,.user-registration .button-danger:active,.user-registration .button-danger:focus,.user-registration .button-danger:hover{color:#fff;background:#ee2a32;border-color:#ee2a32;box-shadow:0 1px 0 #ee2a32}.ur-form-container .publishing-action .button,.ur-form-container .publishing-action button,.ur-form-container .publishing-action input[type=button],.ur-form-container .publishing-action input[type=submit],.user-registration .publishing-action .button,.user-registration .publishing-action button,.user-registration .publishing-action input[type=button],.user-registration .publishing-action input[type=submit]{margin-right:5px}.ur-registered-item.ui-draggable-dragging{padding:10px 10px;line-height:20px;background:#475bb2;color:#fff;text-align:center;margin-bottom:7px;word-break:break-word;white-space:normal;width:200px!important;z-index:9}.ur-registered-item.ui-draggable-dragging span{font-size:14px;line-height:20px;width:auto;height:auto;margin-right:3px}.select2-container .ur-select-all-countries-button{margin:6px 3px 4px 6px}.select2-container .ur-unselect-all-countries-button{margin:6px 3px 4px}.clear{clear:both}.user-registration-error,.user-registration-info,.user-registration-message{display:block;margin:0 0 10px;padding:10px 15px;background-color:#f7f6f7;color:#515151;border-top:3px solid #a46497;list-style:none outside;width:auto;word-wrap:break-word;line-height:1.25;text-transform:none;font-size:14px}.user-registration-error::after,.user-registration-error::before,.user-registration-info::after,.user-registration-info::before,.user-registration-message::after,.user-registration-message::before{content:' ';display:table}.user-registration-error::after,.user-registration-info::after,.user-registration-message::after{clear:both}.user-registration-error::before,.user-registration-info::before,.user-registration-message::before{content:'\f348';display:inline-block;vertical-align:middle;font-family:Dashicons;font-size:calc(100% + 10px);margin-right:.875rem}.user-registration-error ul,.user-registration-info ul,.user-registration-message ul{margin:0!important;padding:0!important;background-color:transparent!important}.user-registration-error .button,.user-registration-info .button,.user-registration-message .button{float:right}.user-registration-error li,.user-registration-info li,.user-registration-message li{list-style:none outside!important;padding-left:0!important;margin-left:0!important}.user-registration-error .message,.user-registration-info .message,.user-registration-message .message{margin:0;padding:0}.user-registration-message{border-top-color:#8fae1b;background:rgba(143,174,27,.1);color:#596c11}.user-registration-info{color:#1e85be;border-top-color:#1e85be}.user-registration-error{border-top-color:#ff4149;background:rgba(255,65,73,.1);color:#f4000a}.user-registration-error::before{content:'\f534'}.ur-frontend-form{margin-bottom:30px;border:1px solid #ddd;padding:20px;box-sizing:border-box}.ur-frontend-form.login{margin:0;padding:10px;box-shadow:none;background:0 0}.ur-frontend-form.login input[name=rememberme]#rememberme{vertical-align:middle}.ur-frontend-form.login-registration{margin:0;border:none;padding:0}.ur-frontend-form .register #node_recaptcha_register{padding:0 10px}.ur-frontend-form *{box-sizing:border-box}.ur-frontend-form .description{display:block;font-size:14px;line-height:1.5}.ur-frontend-form .ur-form-row{display:-webkit-box;display:-webkit-flex;display:flex}.ur-frontend-form .ur-form-row:last-child{margin-bottom:0}.ur-frontend-form .ur-form-row .ur-form-grid{-webkit-box-flex:1;-webkit-flex:1;flex:1;padding:0 10px}.ur-frontend-form .ur-form-row .ur-form-grid:nth-child(1n+2){border-left:0 none}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item{margin-bottom:20px}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul{margin:0;list-style:none}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li{margin-left:0;line-height:1.3;vertical-align:middle;margin-bottom:10px}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li label,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li input,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li label{display:inline-block;vertical-align:inherit}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input[type=checkbox],.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input[type=radio],.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li input[type=checkbox],.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li input[type=radio]{margin-top:2px}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li label,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li label{display:inline}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item:last-child{margin-bottom:0}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone],.ur-frontend-form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker],.ur-frontend-form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form .ur-form-row .ur-form-grid select,.ur-frontend-form .ur-form-row .ur-form-grid textarea{display:block;width:100%;border-radius:0;min-height:36px;margin-bottom:10px;line-height:1.5}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=number]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid select::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid textarea::-webkit-input-placeholder{color:#ddd}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=number]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid select::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid textarea::-ms-input-placeholder{color:#ddd}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=number]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid select::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid textarea::placeholder{color:#ddd}.ur-frontend-form .ur-form-row .ur-form-grid input[type=checkbox],.ur-frontend-form .ur-form-row .ur-form-grid input[type=radio]{font-size:12px;display:inline-block;vertical-align:middle;margin-right:5px;margin-left:20px}.ur-frontend-form .ur-form-row .ur-form-grid input[type=checkbox]:first-child,.ur-frontend-form .ur-form-row .ur-form-grid input[type=radio]:first-child{margin-left:0}.ur-frontend-form .ur-form-row .ur-form-grid button:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=radio]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]:focus,.ur-frontend-form .ur-form-row .ur-form-grid select:focus,.ur-frontend-form .ur-form-row .ur-form-grid textarea:focus{outline:0}.ur-frontend-form .ur-form-row .ur-form-grid input[readonly],.ur-frontend-form .ur-form-row .ur-form-grid select[readonly],.ur-frontend-form .ur-form-row .ur-form-grid textarea[readonly]{cursor:auto}.ur-frontend-form .ur-form-row .ur-form-grid select{-webkit-appearance:none;background:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E") no-repeat right 5px top 55%}.ur-frontend-form .ur-form-row .ur-form-grid label,.ur-frontend-form .ur-form-row .ur-form-grid legend{display:block;font-size:14px;margin-bottom:10px;margin-top:10px}.ur-frontend-form .ur-form-row .ur-form-grid label .required,.ur-frontend-form .ur-form-row .ur-form-grid legend .required{text-decoration:none;border:none;color:#ff4149}.ur-frontend-form .ur-form-row .ur-form-grid label.ur-label,.ur-frontend-form .ur-form-row .ur-form-grid legend.ur-label{font-weight:700}.ur-frontend-form .ur-form-row .ur-form-grid textarea{padding:10px;height:100px;resize:none;padding:5px 20px}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-right:50px}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group{display:block;position:relative}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview{color:#676d8a;position:absolute;top:50%;right:15px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview.dashicons.dashicons-hidden{opacity:.6}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview.dashicons.dashicons-hidden:hover{opacity:1}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple{border:1px solid #f0f1f5}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-selection__rendered{display:block}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-selection__rendered li:last-child{margin-left:0}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-selection__choice{margin:5px}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-search--inline input[type=text]{margin:5px;height:inherit}.ur-frontend-form button,.ur-frontend-form button[type=submit],.ur-frontend-form input[type=submit]{padding:10px 20px;line-height:1.5;text-align:center;word-break:break-word;white-space:normal;border:none;cursor:pointer;-webkit-transition:.35s all ease-out;transition:.35s all ease-out}.ur-frontend-form input[type=submit]{float:right}.ur-frontend-form .ur-button-container{display:-webkit-box;display:-webkit-flex;display:flex;margin-top:10px;padding:0 10px}.ur-frontend-form .ur-button-container .ur-submit-button{margin-left:auto}.ur-frontend-form .ur-submit-button{margin-right:10px;margin-bottom:0}.ur-frontend-form label abbr.required{text-decoration:none;border:none;color:red}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid textarea{border:none;border-bottom:1px solid #69717a;outline:0;-webkit-transition:all .35s;transition:all .35s;padding:10px 15px;background:#f8f9fa;color:#69717a;height:45px}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid label,.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid legend{margin-left:5px;color:#69717a}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid textarea{height:100px}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-right:50px}.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-next,.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-prev,.ur-frontend-form.ur-frontend-form--bordered form button[type=submit],.ur-frontend-form.ur-frontend-form--bordered form input[type=submit]{background:#f8f9fa;border:1px solid #69717a;color:#69717a;border-radius:0}.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-next:hover,.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-prev:hover,.ur-frontend-form.ur-frontend-form--bordered form button[type=submit]:hover,.ur-frontend-form.ur-frontend-form--bordered form input[type=submit]:hover{background:#475bb2;color:#fff;border-color:#475bb2}.ur-frontend-form.ur-frontend-form--flat{background:#f7f7f7;border:none transparent}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid .form-row,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid .ur-field-item{margin-bottom:0}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid textarea{border:none;outline:0;padding:10px 15px;background:#fff;color:#69717a;margin-bottom:10px;height:45px}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=date]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=email]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=number]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=password]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=text]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=url]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid select:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid textarea:focus{box-shadow:0 0 10px 5px rgba(0,0,0,.05)}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid select{margin-bottom:10px}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid label,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid legend{color:#69717a}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid textarea{height:100px}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-right:50px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid textarea{border:1px solid #ced4da;border-radius:25px;outline:0;-webkit-transition:all .35s;transition:all .35s;padding:10px 15px;background:#fff;color:#69717a;height:45px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid button[type=button]{border-radius:25px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid label,.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid legend{margin-left:5px;color:#69717a}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid textarea{height:100px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-right:50px}.ur-frontend-form.ur-frontend-form--rounded form button.user-registration-multi-part-nav-next,.ur-frontend-form.ur-frontend-form--rounded form button.user-registration-multi-part-nav-prev,.ur-frontend-form.ur-frontend-form--rounded form button[type=submit],.ur-frontend-form.ur-frontend-form--rounded form input[type=submit]{border:0 none;color:#fff;border-radius:25px;float:none;display:block;padding:15px 25px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid textarea{border-radius:2px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-right:50px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid button[type=button]{border-radius:2px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form button.user-registration-multi-part-nav-next,.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form button.user-registration-multi-part-nav-prev,.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form button[type=submit],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form input[type=submit]{border-radius:2px}.ur-frontend-form #ur-submit-message-node{margin:20px 0 0 0}.ur-frontend-form #ur-submit-message-node.ur-error{background:rgba(206,0,0,.1)}.ur-frontend-form #ur-submit-message-node.ur-message.message{background:rgba(143,174,27,.2)}#user-registration{background-color:#fff;margin:30px 0}#user-registration *,#user-registration.user-registration{box-sizing:border-box}#user-registration p{color:#333}#user-registration .user-registration-tips{font-size:12px;color:#acaeba;margin-bottom:0}#user-registration .user-registration-MyAccount-navigation{overflow:visible;margin:0}#user-registration .user-registration-MyAccount-navigation ul{margin:0;padding:0;display:-webkit-flex;display:-webkit-box;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link{list-style:none;padding:0;margin:0;display:inline-block;position:relative;box-shadow:0 0 0 transparent}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a{padding:10px 15px;display:block;font-weight:400;font-size:14px;font-family:sans-serif;text-decoration:none;box-shadow:0 0 0 transparent}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{font-weight:600}#user-registration .user-registration-MyAccount-content{padding:30px}#user-registration .user-registration-MyAccount-content h2{margin-bottom:30px}#user-registration .user-registration-MyAccount-content .user-registration-profile-fields__field-wrapper{margin:0 -10px}#user-registration .user-registration-MyAccount-content .ur-form-grid{border:0 none;background:0 0}#user-registration .user-registration-MyAccount-content .ur-frontend-form{border:none}#user-registration .user-registration-MyAccount-content .edit-password legend,#user-registration .user-registration-MyAccount-content h2{font-size:28px;font-weight:400}#user-registration .user-registration-MyAccount-content .user-registration-profile-header{margin-bottom:25px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container{width:100px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header h3{font-size:22px;font-weight:400;margin-bottom:5px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header header .button-group,#user-registration .user-registration-MyAccount-content .user-registration-profile-header header p{margin-bottom:10px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header header .profile-pic-remove{margin-right:10px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header .user-registration-nick-name{color:#acaeba}#user-registration .user-registration-MyAccount-content .user-registration-EditProfileForm .user-registration-profile-header .user-registration-img-container{width:auto}.user-registration-password-strength{text-align:center;font-weight:600;padding:3px .5em;font-size:1em}.user-registration-password-strength.strong{background-color:#c1e1b9;border-color:#83c373}.user-registration-password-strength.short{background-color:#f1adad;border-color:#e35b5b}.user-registration-password-strength.bad{background-color:#fbc5a9;border-color:#f78b53}.user-registration-password-strength.good{background-color:#ffe399;border-color:#ffc733}.user-registration-password-hint{margin:.5em 0 0;display:block}.ur-front-spinner{background:url(../images/wpspin_light-2x.gif) no-repeat;background-size:16px 16px;display:block;opacity:.7;width:16px;height:16px;margin-left:-40px;float:left}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap h2,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap h2{width:100%;margin-bottom:.5em}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap .components-base-control,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap .components-base-control{width:100%}.ur-frontend-form.ur-gutenberg-editor form button[type=submit]{cursor:not-allowed}.ur-frontend-form.ur-gutenberg-editor form .ur-form-row .ur-form-grid input{cursor:not-allowed}#tiptip_holder{display:none;z-index:8675309;position:absolute;top:0;left:0}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-left:-6px;border-top-color:#dee0e9}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-left:-6px;border-bottom-color:#dee0e9}#tiptip_holder.tip_right{padding-left:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-left:-5px;border-right-color:#dee0e9}#tiptip_holder.tip_left{padding-right:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-left:-7px;border-left-color:#dee0e9}#tiptip_content,.ur_error_tip{color:#fff;font-size:.8em;max-width:150px;background:#dee0e9;text-align:center;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2)}#tiptip_content code,.ur_error_tip code{padding:1px;background:#888}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}.ur-hidden{display:none}
1
+ .ur-form-container .button,.ur-form-container button,.user-registration .button,.user-registration button{-webkit-transition:all .25s ease 0s;transition:all .25s ease 0s}.ur-form-container .button.button-icon,.ur-form-container button.button-icon,.user-registration .button.button-icon,.user-registration button.button-icon{width:32px;padding:0}.ur-form-container .button.button-icon .dashicons,.ur-form-container button.button-icon .dashicons,.user-registration .button.button-icon .dashicons,.user-registration button.button-icon .dashicons{line-height:1;vertical-align:middle}.ur-form-container .button.button-icon-round,.ur-form-container button.button-icon-round,.user-registration .button.button-icon-round,.user-registration button.button-icon-round{border-radius:50%}.ur-form-container .button .ur-spinner,.ur-form-container button .ur-spinner,.user-registration .button .ur-spinner,.user-registration button .ur-spinner{width:16px;height:16px;margin-left:6px;margin-bottom:2px;display:inline-block;vertical-align:middle}.ur-form-container .button-primary,.user-registration .button-primary{background:#475bb2;border-color:#475bb2;box-shadow:0 1px 0 #475bb2;text-shadow:none}.ur-form-container .button-primary:active,.ur-form-container .button-primary:focus,.ur-form-container .button-primary:hover,.user-registration .button-primary:active,.user-registration .button-primary:focus,.user-registration .button-primary:hover{background:#38488e;border-color:#38488e;box-shadow:0 1px 0 #38488e}.ur-form-container .button-primary:disabled,.user-registration .button-primary:disabled{color:#b2bae0!important;background:#697ac3!important;border-color:#697ac3!important}.ur-form-container .button-secondary,.user-registration .button-secondary{color:#2d3559;background:#dee0e9;border-color:#dee0e9;box-shadow:0 1px 0 #dee0e9}.ur-form-container .button-secondary:active,.ur-form-container .button-secondary:focus,.ur-form-container .button-secondary:hover,.user-registration .button-secondary:active,.user-registration .button-secondary:focus,.user-registration .button-secondary:hover{color:#2d3559;background:#b6bbcf;border-color:#b6bbcf;box-shadow:0 1px 0 #b6bbcf}.ur-form-container .button-danger,.user-registration .button-danger{color:#fff;background:#ff4149;border-color:#ff4149;box-shadow:0 1px 0 #ff4149}.ur-form-container .button-danger:active,.ur-form-container .button-danger:focus,.ur-form-container .button-danger:hover,.user-registration .button-danger:active,.user-registration .button-danger:focus,.user-registration .button-danger:hover{color:#fff;background:#ee2a32;border-color:#ee2a32;box-shadow:0 1px 0 #ee2a32}.ur-form-container .publishing-action .button,.ur-form-container .publishing-action button,.ur-form-container .publishing-action input[type=button],.ur-form-container .publishing-action input[type=submit],.user-registration .publishing-action .button,.user-registration .publishing-action button,.user-registration .publishing-action input[type=button],.user-registration .publishing-action input[type=submit]{margin-right:5px}.ur-registered-item.ui-draggable-dragging{padding:10px 10px;line-height:20px;background:#475bb2;color:#fff;text-align:center;margin-bottom:7px;word-break:break-word;white-space:normal;width:200px!important;z-index:9}.ur-registered-item.ui-draggable-dragging span{font-size:14px;line-height:20px;width:auto;height:auto;margin-right:3px}.select2-container .ur-select-all-countries-button{margin:6px 3px 4px 6px}.select2-container .ur-unselect-all-countries-button{margin:6px 3px 4px}.clear{clear:both}.user-registration-error,.user-registration-info,.user-registration-message{display:block;margin:0 0 10px;padding:10px 15px;background-color:#f0f1f9;color:#4c5477;border-top:3px solid #475bb2;list-style:none outside;width:auto;word-wrap:break-word;line-height:1.25;text-transform:none;font-size:14px}.user-registration-error::after,.user-registration-error::before,.user-registration-info::after,.user-registration-info::before,.user-registration-message::after,.user-registration-message::before{content:' ';display:table}.user-registration-error::after,.user-registration-info::after,.user-registration-message::after{clear:both}.user-registration-error::before,.user-registration-info::before,.user-registration-message::before{content:'\f348';display:inline-block;vertical-align:middle;font-family:Dashicons;font-size:calc(100% + 10px);margin-right:.875rem}.user-registration-error ul,.user-registration-info ul,.user-registration-message ul{margin:0!important;padding:0!important;background-color:transparent!important}.user-registration-error .button,.user-registration-info .button,.user-registration-message .button{float:right}.user-registration-error li,.user-registration-info li,.user-registration-message li{list-style:none outside!important;padding-left:0!important;margin-left:0!important}.user-registration-error .message,.user-registration-info .message,.user-registration-message .message{margin:0;padding:0}.user-registration-message{border-top-color:#8fae1b;background:rgba(143,174,27,.1);color:#596c11}.user-registration-info{color:#1e85be;border-top-color:#1e85be}.user-registration-error{border-top-color:#ff4149;background:rgba(255,65,73,.1);color:#f4000a}.user-registration-error::before{content:'\f534'}.ur-frontend-form{margin-bottom:30px;border:1px solid #dee0e9;padding:20px;box-sizing:border-box}.ur-frontend-form.login{margin:0;padding:10px;box-shadow:none;background:0 0}.ur-frontend-form.login input[name=rememberme]#rememberme{vertical-align:middle}.ur-frontend-form.login-registration{margin:0;border:none;padding:0}.ur-frontend-form .register #node_recaptcha_register{padding:0 10px}.ur-frontend-form *{box-sizing:border-box}.ur-frontend-form .description{display:block;font-size:14px;line-height:1.5}.ur-frontend-form .ur-form-row{display:-webkit-box;display:-webkit-flex;display:flex}.ur-frontend-form .ur-form-row:last-child{margin-bottom:0}.ur-frontend-form .ur-form-row .ur-form-grid{-webkit-box-flex:1;-webkit-flex:1;flex:1;padding:0 10px}.ur-frontend-form .ur-form-row .ur-form-grid:nth-child(1n+2){border-left:0 none}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item{margin-bottom:20px}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul{margin:0;list-style:none}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li{margin-left:0;line-height:1.3;vertical-align:middle;margin-bottom:10px}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li label,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li input,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li label{display:inline-block;vertical-align:inherit}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input[type=checkbox],.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input[type=radio],.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li input[type=checkbox],.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li input[type=radio]{margin-top:2px}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li label,.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-radio ul li label{display:inline}.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item:last-child{margin-bottom:0}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone],.ur-frontend-form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker],.ur-frontend-form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form .ur-form-row .ur-form-grid select,.ur-frontend-form .ur-form-row .ur-form-grid textarea{display:block;width:100%;border-radius:0;min-height:36px;margin-bottom:10px;line-height:1.5}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=number]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid select::-webkit-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid textarea::-webkit-input-placeholder{color:#ddd}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=number]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid select::-ms-input-placeholder,.ur-frontend-form .ur-form-row .ur-form-grid textarea::-ms-input-placeholder{color:#ddd}.ur-frontend-form .ur-form-row .ur-form-grid input[type=date]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=number]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=phone]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=timepicker]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid select::placeholder,.ur-frontend-form .ur-form-row .ur-form-grid textarea::placeholder{color:#ddd}.ur-frontend-form .ur-form-row .ur-form-grid input[type=checkbox],.ur-frontend-form .ur-form-row .ur-form-grid input[type=radio]{font-size:12px;display:inline-block;vertical-align:middle;margin-right:5px;margin-left:20px}.ur-frontend-form .ur-form-row .ur-form-grid input[type=checkbox]:first-child,.ur-frontend-form .ur-form-row .ur-form-grid input[type=radio]:first-child{margin-left:0}.ur-frontend-form .ur-form-row .ur-form-grid button:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=email]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=password]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=radio]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=text]:focus,.ur-frontend-form .ur-form-row .ur-form-grid input[type=url]:focus,.ur-frontend-form .ur-form-row .ur-form-grid select:focus,.ur-frontend-form .ur-form-row .ur-form-grid textarea:focus{outline:0}.ur-frontend-form .ur-form-row .ur-form-grid input[readonly],.ur-frontend-form .ur-form-row .ur-form-grid select[readonly],.ur-frontend-form .ur-form-row .ur-form-grid textarea[readonly]{cursor:auto}.ur-frontend-form .ur-form-row .ur-form-grid select{-webkit-appearance:none;background:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E") no-repeat right 5px top 55%}.ur-frontend-form .ur-form-row .ur-form-grid label,.ur-frontend-form .ur-form-row .ur-form-grid legend{display:block;font-size:14px;margin-bottom:10px;margin-top:10px}.ur-frontend-form .ur-form-row .ur-form-grid label .required,.ur-frontend-form .ur-form-row .ur-form-grid legend .required{text-decoration:none;border:none;color:#ff4149}.ur-frontend-form .ur-form-row .ur-form-grid label.ur-label,.ur-frontend-form .ur-form-row .ur-form-grid legend.ur-label{font-weight:700}.ur-frontend-form .ur-form-row .ur-form-grid textarea{padding:10px;height:100px;resize:none;padding:5px 20px}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-right:50px}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group{display:block;position:relative}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview{color:#676d8a;position:absolute;top:50%;right:15px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview.dashicons.dashicons-hidden{opacity:.6}.ur-frontend-form .ur-form-row .ur-form-grid .hide_show_password .password-input-group .password_preview.dashicons.dashicons-hidden:hover{opacity:1}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple{border:1px solid #f0f1f5}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-selection__rendered{display:block}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-selection__rendered li:last-child{margin-left:0}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-selection__choice{margin:5px}.ur-frontend-form .ur-form-row .select2-container .select2-selection--multiple .select2-search--inline input[type=text]{margin:5px;height:inherit}.ur-frontend-form button,.ur-frontend-form button[type=submit],.ur-frontend-form input[type=submit]{padding:10px 20px;line-height:1.5;text-align:center;word-break:break-word;white-space:normal;border:none;cursor:pointer;-webkit-transition:.35s all ease-out;transition:.35s all ease-out}.ur-frontend-form input[type=submit]{float:right}.ur-frontend-form .ur-button-container{display:-webkit-box;display:-webkit-flex;display:flex;margin-top:10px;padding:0 10px}.ur-frontend-form .ur-button-container .ur-submit-button{margin-left:auto}.ur-frontend-form .ur-submit-button{margin-right:10px;margin-bottom:0}.ur-frontend-form label abbr.required{text-decoration:none;border:none;color:#ff4149}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid textarea{border:none;border-bottom:1px solid #c0c4d4;outline:0;-webkit-transition:all .35s;transition:all .35s;padding:10px 15px;background:#f0f1f5;color:#676d8a;height:45px}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid label,.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid legend{margin-left:5px;color:#676d8a}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid textarea{height:100px}.ur-frontend-form.ur-frontend-form--bordered form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-right:50px}.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-next,.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-prev,.ur-frontend-form.ur-frontend-form--bordered form button[type=submit],.ur-frontend-form.ur-frontend-form--bordered form input[type=submit]{background:#f0f1f5;border:1px solid #dee0e9;color:#676d8a;border-radius:0}.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-next:hover,.ur-frontend-form.ur-frontend-form--bordered form button.user-registration-multi-part-nav-prev:hover,.ur-frontend-form.ur-frontend-form--bordered form button[type=submit]:hover,.ur-frontend-form.ur-frontend-form--bordered form input[type=submit]:hover{background:#475bb2;color:#fff;border-color:#475bb2}.ur-frontend-form.ur-frontend-form--flat{background:#f7f7f7;border:none transparent}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid .form-row,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid .ur-field-item{margin-bottom:0}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid textarea{border:none;outline:0;padding:10px 15px;background:#fff;color:#676d8a;margin-bottom:10px;height:45px}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=date]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=email]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=number]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=password]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=text]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid input[type=url]:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid select:focus,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid textarea:focus{box-shadow:0 0 10px 5px rgba(0,0,0,.05)}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid select{margin-bottom:10px}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid label,.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid legend{color:#676d8a}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid textarea{height:100px}.ur-frontend-form.ur-frontend-form--flat form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-right:50px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid textarea{border:1px solid #c0c4d4;border-radius:25px;outline:0;-webkit-transition:all .35s;transition:all .35s;padding:10px 15px;background:#fff;color:#676d8a;height:45px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid button[type=button]{border-radius:25px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid label,.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid legend{margin-left:5px;color:#676d8a}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid textarea{height:100px}.ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-right:50px}.ur-frontend-form.ur-frontend-form--rounded form button.user-registration-multi-part-nav-next,.ur-frontend-form.ur-frontend-form--rounded form button.user-registration-multi-part-nav-prev,.ur-frontend-form.ur-frontend-form--rounded form button[type=submit],.ur-frontend-form.ur-frontend-form--rounded form input[type=submit]{border:0 none;color:#fff;border-radius:25px;float:none;display:block;padding:15px 25px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=date],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=email],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=number],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=password],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=text],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid input[type=url],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid select,.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid textarea{border-radius:2px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid .hide_show_password input[type=password]{padding-right:50px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form .ur-form-row .ur-form-grid button[type=button]{border-radius:2px}.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form button.user-registration-multi-part-nav-next,.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form button.user-registration-multi-part-nav-prev,.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form button[type=submit],.ur-frontend-form.ur-frontend-form--rounded.ur-frontend-form--rounded-edge form input[type=submit]{border-radius:2px}.ur-frontend-form #ur-submit-message-node{margin:20px 0 0 0}.ur-frontend-form #ur-submit-message-node.ur-error{background:rgba(206,0,0,.1)}.ur-frontend-form #ur-submit-message-node.ur-message.message{background:rgba(143,174,27,.2)}#user-registration{background-color:#fff;margin:30px 0}#user-registration *,#user-registration.user-registration{box-sizing:border-box}#user-registration p{color:#333}#user-registration .user-registration-tips{font-size:12px;color:#b6bbcf;margin-bottom:0}#user-registration .user-registration-MyAccount-navigation{overflow:visible;margin:0}#user-registration .user-registration-MyAccount-navigation ul{margin:0;padding:0;display:-webkit-flex;display:-webkit-box;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link{list-style:none;padding:0;margin:0;display:inline-block;position:relative;box-shadow:0 0 0 transparent}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link a{padding:10px 15px;display:block;font-weight:400;font-size:14px;font-family:sans-serif;text-decoration:none;box-shadow:0 0 0 transparent}#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{font-weight:600}#user-registration .user-registration-MyAccount-content{padding:30px}#user-registration .user-registration-MyAccount-content h2{margin-bottom:30px}#user-registration .user-registration-MyAccount-content .user-registration-profile-fields__field-wrapper{margin:0 -10px}#user-registration .user-registration-MyAccount-content .ur-form-grid{border:0 none;background:0 0}#user-registration .user-registration-MyAccount-content .ur-frontend-form{border:none}#user-registration .user-registration-MyAccount-content .edit-password legend,#user-registration .user-registration-MyAccount-content h2{font-size:28px;font-weight:400}#user-registration .user-registration-MyAccount-content .user-registration-profile-header{margin-bottom:25px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header .user-registration-img-container{width:100px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header h3{font-size:22px;font-weight:400;margin-bottom:5px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header header .button-group,#user-registration .user-registration-MyAccount-content .user-registration-profile-header header p{margin-bottom:10px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header header .profile-pic-remove{margin-right:10px}#user-registration .user-registration-MyAccount-content .user-registration-profile-header .user-registration-nick-name{color:#676d8a}#user-registration .user-registration-MyAccount-content .user-registration-EditProfileForm .user-registration-profile-header .user-registration-img-container{width:auto}.user-registration-password-strength{text-align:center;font-weight:600;padding:3px .5em;font-size:1em}.user-registration-password-strength.strong{background-color:#c1e1b9;border-color:#83c373}.user-registration-password-strength.short{background-color:#f1adad;border-color:#e35b5b}.user-registration-password-strength.bad{background-color:#fbc5a9;border-color:#f78b53}.user-registration-password-strength.good{background-color:#ffe399;border-color:#ffc733}.user-registration-password-hint{margin:.5em 0 0;display:block}.ur-front-spinner{background:url(../images/wpspin_light-2x.gif) no-repeat;background-size:16px 16px;display:block;opacity:.7;width:16px;height:16px;margin-left:-40px;float:left}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap h2,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap h2{width:100%;margin-bottom:.5em}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap .components-base-control,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap .components-base-control{width:100%}.ur-frontend-form.ur-gutenberg-editor form button[type=submit]{cursor:not-allowed}.ur-frontend-form.ur-gutenberg-editor form .ur-form-row .ur-form-grid input{cursor:not-allowed}#tiptip_holder{display:none;z-index:8675309;position:absolute;top:0;left:0}#tiptip_holder.tip_top{padding-bottom:5px}#tiptip_holder.tip_top #tiptip_arrow_inner{margin-top:-7px;margin-left:-6px;border-top-color:#dee0e9}#tiptip_holder.tip_bottom{padding-top:5px}#tiptip_holder.tip_bottom #tiptip_arrow_inner{margin-top:-5px;margin-left:-6px;border-bottom-color:#dee0e9}#tiptip_holder.tip_right{padding-left:5px}#tiptip_holder.tip_right #tiptip_arrow_inner{margin-top:-6px;margin-left:-5px;border-right-color:#dee0e9}#tiptip_holder.tip_left{padding-right:5px}#tiptip_holder.tip_left #tiptip_arrow_inner{margin-top:-6px;margin-left:-7px;border-left-color:#dee0e9}#tiptip_content,.ur_error_tip{color:#fff;font-size:.8em;max-width:150px;background:#dee0e9;text-align:center;border-radius:3px;padding:.618em 1em;box-shadow:0 1px 3px rgba(0,0,0,.2)}#tiptip_content code,.ur_error_tip code{padding:1px;background:#888}#tiptip_arrow,#tiptip_arrow_inner{position:absolute;border-color:transparent;border-style:solid;border-width:6px;height:0;width:0}.ur-hidden{display:none}
assets/css/user-registration.scss CHANGED
@@ -7,10 +7,9 @@
7
  /**
8
  * Imports
9
  */
10
- @import "colors";
11
  @import "button";
12
  @import "mixins";
13
- @import "variables";
14
 
15
  /**
16
  * Utility classes
@@ -28,9 +27,9 @@
28
  display: block;
29
  margin: 0 0 10px;
30
  padding: 10px 15px;
31
- background-color: lighten($secondary, 5%);
32
- color: $secondarytext;
33
- border-top: 3px solid $primary;
34
  list-style: none outside;
35
  @include clearfix();
36
  width: auto;
@@ -82,9 +81,9 @@
82
  }
83
 
84
  .user-registration-error {
85
- border-top-color: $color_danger;
86
- background: rgba( $color_danger, 0.1 );
87
- color: darken( $color_danger, 15%);
88
 
89
  &::before {
90
  content: '\f534';
@@ -93,7 +92,7 @@
93
 
94
  .ur-frontend-form {
95
  margin-bottom: 30px;
96
- border: 1px solid $color_gray_six;
97
  padding: 20px;
98
  box-sizing: border-box;
99
 
@@ -252,7 +251,7 @@
252
  .required {
253
  text-decoration: none;
254
  border: none;
255
- color: $color_danger;
256
  }
257
 
258
  &.ur-label {
@@ -364,7 +363,7 @@
364
 
365
  text-decoration: none;
366
  border: none;
367
- color: #ff0000;
368
  }
369
  }
370
 
@@ -381,7 +380,7 @@
381
  textarea,
382
  select {
383
  border: none;
384
- border-bottom: 1px solid $label_color;
385
  outline: none;
386
  transition: all 0.35s;
387
  padding: 10px 15px;
@@ -414,7 +413,7 @@
414
  button.user-registration-multi-part-nav-prev,
415
  button.user-registration-multi-part-nav-next {
416
  background: $input_background_color;
417
- border: 1px solid $label_color;
418
  color: $label_color;
419
  border-radius: 0;
420
 
@@ -607,7 +606,7 @@
607
 
608
  .user-registration-tips {
609
  font-size: 12px;
610
- color: $color-gray-lighter;
611
  margin-bottom: 0;
612
  }
613
 
@@ -702,7 +701,7 @@
702
  }
703
 
704
  .user-registration-nick-name {
705
- color: $color_gray_lighter;
706
  }
707
  }
708
 
7
  /**
8
  * Imports
9
  */
10
+ @import "variables";
11
  @import "button";
12
  @import "mixins";
 
13
 
14
  /**
15
  * Utility classes
27
  display: block;
28
  margin: 0 0 10px;
29
  padding: 10px 15px;
30
+ background-color: lighten($primary_color, 47%);
31
+ color: $color_gray_one;
32
+ border-top: 3px solid $primary_color;
33
  list-style: none outside;
34
  @include clearfix();
35
  width: auto;
81
  }
82
 
83
  .user-registration-error {
84
+ border-top-color: $red;
85
+ background: rgba( $red, 0.1 );
86
+ color: darken( $red, 15%);
87
 
88
  &::before {
89
  content: '\f534';
92
 
93
  .ur-frontend-form {
94
  margin-bottom: 30px;
95
+ border: 1px solid $border_color;
96
  padding: 20px;
97
  box-sizing: border-box;
98
 
251
  .required {
252
  text-decoration: none;
253
  border: none;
254
+ color: $red;
255
  }
256
 
257
  &.ur-label {
363
 
364
  text-decoration: none;
365
  border: none;
366
+ color: $red;
367
  }
368
  }
369
 
380
  textarea,
381
  select {
382
  border: none;
383
+ border-bottom: 1px solid $border_color_input;
384
  outline: none;
385
  transition: all 0.35s;
386
  padding: 10px 15px;
413
  button.user-registration-multi-part-nav-prev,
414
  button.user-registration-multi-part-nav-next {
415
  background: $input_background_color;
416
+ border: 1px solid $border_color;
417
  color: $label_color;
418
  border-radius: 0;
419
 
606
 
607
  .user-registration-tips {
608
  font-size: 12px;
609
+ color: $color_gray_three;
610
  margin-bottom: 0;
611
  }
612
 
701
  }
702
 
703
  .user-registration-nick-name {
704
+ color: $color_gray_two;
705
  }
706
  }
707
 
assets/images/not-found.png ADDED
Binary file
assets/js/admin/admin.js CHANGED
@@ -4,6 +4,45 @@
4
  */
5
  jQuery(function ($) {
6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  // Bind UI Actions for upgradable fields
8
  $( document ).on( 'mousedown', '.ur-upgradable-field', function( e ) {
9
  e.preventDefault();
@@ -1728,7 +1767,7 @@ jQuery(function ($) {
1728
  $(field_list).slideToggle();
1729
 
1730
  // For `Field Options` section
1731
- $(this).siblings( 'div' ).slideToggle();
1732
  });
1733
 
1734
  $(document).on('click', '.ur-options-list .add', function( e ) {
4
  */
5
  jQuery(function ($) {
6
 
7
+ // Bind UI Action handlers for searching fields.
8
+ $( document.body ).on( 'input', '#ur-search-fields', function() {
9
+ var search_string = $( this ).val().toLowerCase();
10
+
11
+ // Show/Hide fields.
12
+ $( '.ur-registered-item' ).each( function() {
13
+ var field_label = $( this ).text().toLowerCase();
14
+ if ( field_label.search( search_string ) > -1 ) {
15
+ $( this ).addClass( 'ur-searched-item' );
16
+ $( this ).show();
17
+ } else {
18
+ $( this ).removeClass( 'ur-searched-item' );
19
+ $( this ).hide();
20
+ }
21
+ })
22
+
23
+ // Show/Hide field sections.
24
+ $( '.ur-registered-list' ).each( function() {
25
+ var search_result_fields_count = $( this ).find( '.ur-registered-item.ur-searched-item' ).length;
26
+ var hr = $( this ).prev( 'hr' );
27
+ var heading = $( this ).prev( 'hr' ).prev( '.ur-toggle-heading' );
28
+
29
+ if ( 0 === search_result_fields_count ) {
30
+ hr.hide();
31
+ heading.hide();
32
+ } else {
33
+ hr.show();
34
+ heading.show();
35
+ }
36
+ })
37
+
38
+ // Show/Hide fields not found indicator.
39
+ if ( $( '.ur-registered-item.ur-searched-item' ).length ) {
40
+ $( '.ur-fields-not-found' ).hide();
41
+ } else {
42
+ $( '.ur-fields-not-found' ).show();
43
+ }
44
+ });
45
+
46
  // Bind UI Actions for upgradable fields
47
  $( document ).on( 'mousedown', '.ur-upgradable-field', function( e ) {
48
  e.preventDefault();
1767
  $(field_list).slideToggle();
1768
 
1769
  // For `Field Options` section
1770
+ $( this ).siblings( '.ur-toggle-content' ).slideToggle();
1771
  });
1772
 
1773
  $(document).on('click', '.ur-options-list .add', function( e ) {
assets/js/admin/admin.min.js CHANGED
@@ -1 +1 @@
1
- function ur_alert(e,t){void 0===t&&(t={}),Swal.fire({type:"error",title:t.title,text:e})}function ur_confirmation(e,t){void 0===t&&(t={}),Swal.fire({title:t.title,text:e,type:"undefined"!=typeof t.type?t.type:"warning",showCancelButton:"undefined"==typeof t.showCancelButton||t.showCancelButton,confirmButtonText:"undefined"!=typeof t.confirmButtonText?t.confirmButtonText:"OK",cancelButtonText:"undefined"!=typeof t.cancelButtonText?t.cancelButtonText:"Cancel"}).then(function(e){e.value?t.confirm():t.reject()})}jQuery(function(e){e(document).on("mousedown",".ur-upgradable-field",function(t){t.preventDefault();var i=e(this).text(),r='<i class="dashicons dashicons-lock"></i><div class="ur-swal-title">'+i+" is a Premium field.</div>",a=i+" field is not available right now. Please upgrade to <strong>"+e(this).data("plan")+"</strong> of the plugin to unlock this field.";Swal.fire({title:r,html:a,showCloseButton:!0,confirmButtonText:"Let's do it"}).then(function(e){if(e.value){window.open("https://wpeverest.com/wordpress-plugins/user-registration/pricing/?utm_source=pro-fields&utm_medium=popup-button&utm_campaign=ur-upgrade-to-pro","_blank")}})}),e(window).on("resize orientationchange",function(){var t;clearTimeout(t),t=setTimeout(function(){e(document.body).trigger("adjust_builder_width")},250)}),e(document.body).on("click","#collapse-button",function(){e(document.body).trigger("ur_adjust_builder_width")}),e(document.body).on("ur_adjust_builder_width",function(){var t=e("#adminmenuwrap").width(),i=e(".user-registration_page_add-new-registration .ur-form-subcontainer .menu-edit"),r=e(".user-registration_page_add-new-registration .ur-form-subcontainer .ur-loading-container");i.css({left:t+"px"}),r.fadeOut(1e3)}).trigger("ur_adjust_builder_width"),e(document.body).on("click",".ur-form-container .ur-registered-from .ur-form-name-wrapper .ur-edit-form-name",function(){var t=e(this).siblings("#ur-form-name");t.hasClass("ur-editing")||t.focus(),t.toggleClass("ur-editing")}),e(document).on("init_perfect_scrollbar update_perfect_scrollbar",function(){if("undefined"!=typeof PerfectScrollbar){var t=e(".ur-builder-wrapper"),i=e(".ur-tab-contents");t.length>=1&&"undefined"==typeof window.ur_builder_scrollbar?window.ur_builder_scrollbar=new PerfectScrollbar(t.selector,{suppressScrollX:!0}):"undefined"!=typeof window.ur_builder_scrollbar&&window.ur_builder_scrollbar.update(),i.length>=1&&"undefined"==typeof window.ur_tab_scrollbar?window.ur_tab_scrollbar=new PerfectScrollbar(i.selector,{suppressScrollX:!0}):"undefined"!=typeof window.ur_tab_scrollbar&&(window.ur_tab_scrollbar.update(),i.scrollTop(0))}}),e(document).ready(function(){e(document).trigger("init_perfect_scrollbar");var t=e(".ur-selected-inputs"),i=e(".ur-registered-inputs nav").find("#ur-tab-field-settings");i.find("form").appendTo(t),t.find("form #ur-field-all-settings > div").each(function(t,r){var a=e(r).find("h3").text(),n=e(r).attr("id");i.append('<div id="'+n+'" class="form-settings-tab">'+a+"</div>"),e(r).hide()}),i.find("#general-settings").addClass("active"),t.find("#ur-field-all-settings div#general-settings").show(),i.find(".form-settings-tab").on("click",function(){this_id=e(this).attr("id"),e(this).siblings().removeClass("active"),e(this).addClass("active"),t.find("form #ur-field-all-settings > div").hide(),t.find("form #ur-field-all-settings > div#"+this_id).show(),e(document).trigger("update_perfect_scrollbar"),e(".ur-builder-wrapper").scrollTop(0)})}),e(document).on("click",'.ur-tab-lists li[role="tab"] a.nav-tab',function(t,i){e(document).trigger("update_perfect_scrollbar"),"triggered_click"!=i&&(e(".ur-builder-wrapper").scrollTop(0),e(".ur-builder-wrapper-content").scrollTop(0))}),e(document).on("click",'.ur-tab-lists li[aria-controls="ur-tab-field-settings"]',function(){e(".ur-builder-wrapper-content").hide(),e(".ur-builder-wrapper-footer").hide(),e(".ur-selected-inputs").find("form#ur-field-settings").show()}),e(document).on("click",'ul.ur-tab-lists li[aria-controls="ur-tab-registered-fields"]',function(){e(".ur-builder-wrapper-content").show(),e(".ur-builder-wrapper-footer").show(),e(".ur-selected-inputs").find("form#ur-field-settings").hide()});var t=e("#general-settings").find("#user_registration_form_setting_minimum_password_strength_field"),i=e("#general-settings").find("#user_registration_form_setting_enable_strong_password_field input#user_registration_form_setting_enable_strong_password"),r=i.is(":checked");"yes"===r||!0===r?t.show():t.hide(),e(i).change(function(){"yes"===(r=e(this).is(":checked"))||!0===r?t.show("slow"):t.hide("slow")}),e(document.body).on("init_tooltips",function(){var t={attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200,keepAlive:!0};e(".tips, .help_tip, .user-registration-help-tip").tipTip(t),t.keepAlive=!1,e(".ur-copy-shortcode").tipTip(t),e(".parent-tips").each(function(){e(this).closest("a, th").attr("data-tip",e(this).data("tip")).tipTip(t).css("cursor","help")})}).trigger("init_tooltips"),e("body").on("keypress","#ur-form-name",function(t){13===t.which&&e("#save_form_footer").eq(0).trigger("click")}),e("#ur-full-screen-mode").on("click",function(t){t.preventDefault();var i=e(this);i.hasClass("closed")?(i.removeClass("closed"),i.addClass("opened"),e("body").addClass("ur-full-screen-mode")):(i.removeClass("opened"),i.addClass("closed"),e("body").removeClass("ur-full-screen-mode"))}),e(document).on("keyup",function(t){"Escape"===t.key&&e("#ur-full-screen-mode.opened").trigger("click")}),e("input.input-color").wpColorPicker()}),function(e,t){function i(){var i=function(){var i=e.makeArray(t.form_one_time_draggable_fields),r=e.makeArray(t.form_required_fields),a={validation_status:!0,message:""};if(0===e(".ur-selected-item").length)return a.validation_status=!1,a.message=g.i18n_at_least_one_field_need_to_select,a;if(""===e("#ur-form-name").val())return a.validation_status=!1,a.message=g.i18n_empty_form_name,a;if(e(".ur_save_form_action_button").find(".ur-spinner").length>0)return a.validation_status=!1,a.message=g.i18n_previous_save_action_ongoing,a;e.each(e(".ur-selected-item select.ur-settings-selected-countries"),function(){var t=e(this).val();if(!t||Array.isArray(t)&&0===t.length)return a.validation_status=!1,a.message=g.i18n_select_countries,a}),e.each(e('.ur-input-grids .ur-general-setting-block input[data-field="field_name"]'),function(){var t,i=e(this),r=!1;try{var n=i.val(),s=e(".ur-input-grids .ur-general-setting-block").find('input[data-field="field_name"][value="'+n+'"]').length;if(s>1)throw g.i18n_duplicate_field_name;if(""===i.closest(".ur-general-setting-block").find('input[data-field="label"]').val())throw i=i.closest(".ur-general-setting-block").find('input[data-field="label"]'),g.i18n_empty_field_label;var l=n.match(/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/gm);if(null===l||1!==l.length||l[0]!==n)throw g.i18n_invald_field_name}catch(d){a.validation_status=!1,a.message=d.message===undefined?d:d.message,i.closest(".ur-selected-item").trigger("click"),t=i.attr("data-field"),e("#ur-setting-form").find('input[data-field="'+t+'"]').css({border:"1px solid red"}),setTimeout(function(){e("#ur-setting-form").find('input[data-field="'+t+'"]').removeAttr("style")},2e3),r=!0}if(r)return!1});for(var n=0;n<i.length;n++)if(e(".ur-input-grids").find('.ur-field[data-field-key="'+i[n]+'"]').length>1){a.validation_status=!1,a.message=g.i18n_multiple_field_key+i[n];break}for(var s=0;s<r.length;s++)if(0===e(".ur-input-grids").find('.ur-field[data-field-key="'+r[s]+'"]').length){if(a.validation_status=!1,0===s)var l=g.i18n_user_email;else if(1===s)var l=g.i18n_user_password;a.message=l+" "+g.i18n_field_is_required;break}return a}();if(!1!==i.validation_status){var a=function(){var t=[],i=e(".ur-input-grids .ur-single-row");return e.each(i,function(){var i=e(this).find(".ur-grid-list-item"),r=[];e.each(i,function(){var t=function(t){var i=t.find(".ur-selected-item"),r=[];return e.each(i,function(){var t=e(this),i={field_key:t.find(".ur-field").attr("data-field-key"),general_setting:function(t){var i=t.find(".ur-general-setting-block").find(".ur-general-setting-field"),r={},a=[],s=[];return e.each(i,function(){var t=e(this).closest(".ur-general-setting").hasClass("ur-setting-checkbox");"options"===e(this).attr("data-field")?(r.options=a.push(n(e(this))),r.options=a):"default_value"===e(this).attr("data-field")?!0===t?e(this).is(":checked")&&(r.default_value=s.push(n(e(this))),r.default_value=s):e(this).is(":checked")&&(r.default_value=n(e(this))):"html"===e(this).attr("data-field")?r[e(this).attr("data-field")]=n(e(this)).replace(/"/g,"'"):r[e(this).attr("data-field")]=n(e(this))}),r}(t),advance_setting:function(t){var i=t.find(".ur-advance-setting-block").find(".ur_advance_setting"),r={};return e.each(i,function(){r[e(this).attr("data-advance-field")]=n(e(this))}),r}(t)};r.push(i)}),r}(e(this));r.push(t)}),t.push(r)}),t}(),s=function(){var t=[],i=e(".ur-input-grids .ur-single-row");return e.each(i,function(){t.push(e(this).attr("data-row-id"))}),t}(),l=e("#ur_form_id").val();f(t.post_id)!==f(l)&&(l=0);var d=e("#ur-field-settings :not(.urcl-user-role-field)").serializeArray(),o=function(){var t=[],i=e(".urcl-role-logic-wrap");return e.each(i,function(){var i=e(this).find(".urcl-user-role-field"),r=[],a=[],n="";e.each(i,function(){$field_key=e(this).attr("name").split("["),"user_registration_form_conditional_user_role"===$field_key[0]&&(n=e(this).val(),i.splice(e(this),1))});var s=e(this).find(".urcl-conditional-group");e.each(s,function(){var t=[],i=e(this).find(".urcl-user-role-field");e.each(i,function(){var i={field_key:e(this).attr("name"),field_value:e(this).val()};t.push(i)}),r.push(t)});var l=e(this).find(".urcl-or-groups");e.each(l,function(){var t=e(this).find(".urcl-conditional-or-group"),i=[];e.each(t,function(){var t=[],r=e(this).find(".urcl-user-role-field");e.each(r,function(){var i={field_key:e(this).attr("name"),field_value:e(this).val()};t.push(i)}),i.push(t)}),a.push(i)});var d={assign_role:n,conditions:r,or_conditions:a};t.push(d)}),t}(),u=e("#ur-multi-part-page-settings").serializeArray(),c={action:"user_registration_form_save_action",security:t.ur_form_save,data:{form_data:JSON.stringify(a),form_row_ids:JSON.stringify(s),form_name:e("#ur-form-name").val(),form_id:l,form_setting_data:d,conditional_roles_settings_data:o,multipart_page_setting:u}};e.ajax({url:t.ajax_url,data:c,type:"POST",beforeSend:function(){e(".ur_save_form_action_button").append('<span class="ur-spinner is-active"></span>'),e(".ur-notices").remove()},complete:function(i){if(e(".ur_save_form_action_button").find(".ur-spinner").remove(),!0===i.responseJSON.success){var a=g.i18n_form_successfully_saved;if("1"!==t.is_edit_form){message_body="<p>To create your login form please click <a target='_blank' href='https://docs.wpeverest.com/docs/user-registration/registration-form-and-login-form/how-to-show-login-form/'>here</a>. For more step by step guideline please check our documentation <a target='_blank' href='https://docs.wpeverest.com/docs/user-registration/'>here</a>.</p>",Swal.fire({type:"success",title:"Form successfully created.",html:message_body}).then(function(e){0===parseInt(l)&&(window.location=t.admin_url+i.responseJSON.data.post_id)})}else r(a,"success"),0===parseInt(l)&&(window.location=t.admin_url+i.responseJSON.data.post_id)}else{r(i.responseJSON.data.message)}}})}else r(i.message)}function r(t,i){var r=e(".ur-form-container").find(".ur-builder-message-container"),n=e("#wpadminbar"),s="";0===r.length&&(e(".ur-form-container").append('<div class="ur-builder-message-container"></div>'),(r=e(".ur-form-container").find(".ur-builder-message-container")).css({top:n.height()+"px"})),s="success"===i?'<div class="ur-message"><div class="ur-success"><p><strong>'+g.i18n_success+"! </strong>"+t+'</p><span class="dashicons dashicons-no-alt ur-message-close"></span></div></div>':'<div class="ur-message"><div class="ur-error"><p><strong>'+g.i18n_error+"! </strong>"+t+'</p><span class="dashicons dashicons-no-alt ur-message-close"></span></div></div>';var l=e(s).prependTo(r);setTimeout(function(){l.addClass("entered")},50),setTimeout(function(){a(l)},2e3)}function a(e){e.removeClass("entered").addClass("exiting"),setTimeout(function(){e.remove()},120)}function n(e){var t="";switch(e.get(0).tagName.toLowerCase()){case"input":case"select":case"textarea":t=e.val()}return t}function s(){var t=e(".ur-general-setting-field");e.each(t,function(){var t=e(this);switch(t.attr("data-field")){case"label":t.on("keyup",function(){!function(t){e(".ur-selected-item.ur-item-active").find(".ur-label").find("label").text(t.val());e(".ur-selected-item.ur-item-active").find(".ur-general-setting-block").find('input[data-field="'+t.attr("data-field")+'"]').attr("value",t.val())}(e(this))});break;case"field_name":case"input_mask":t.on("change",function(){!function(t){e(".ur-selected-item.ur-item-active").find(".ur-general-setting-block").find('input[data-field="'+t.attr("data-field")+'"]').attr("value",t.val())}(e(this))});case"default_value":t.on("change",function(){"default_value"===t.attr("data-field")&&(t.closest(".ur-general-setting-block").hasClass("ur-general-setting-select")?u(e(this)):t.closest(".ur-general-setting-block").hasClass("ur-general-setting-radio")?o(e(this)):t.closest(".ur-general-setting-block").hasClass("ur-general-setting-checkbox")&&d(e(this)))});break;case"options":t.on("keyup",function(){t.closest(".ur-general-setting-block").hasClass("ur-general-setting-select")&&t.siblings('input[data-field="default_value"]').is(":checked")?u(e(this)):t.closest(".ur-general-setting-block").hasClass("ur-general-setting-radio")?o(e(this)):t.closest(".ur-general-setting-block").hasClass("ur-general-setting-checkbox")&&d(e(this)),function(t){var i=e(".ur-selected-item.ur-item-active"),r=t.closest("li").index();i.find(".ur-general-setting-block li:nth("+r+') input[data-field="'+t.attr("data-field")+'"]').attr("value",t.val()),i.find(".ur-general-setting-block li:nth("+r+') input[data-field="default_value"]').val(t.val()),t.closest("li").find('[data-field="default_value"]').val(t.val())}(e(this))});break;case"placeholder":t.on("keyup",function(){!function(t){var i=e(".ur-selected-item.ur-item-active");i.find(".ur-field").find("input").attr("placeholder",t.val()),i.find(".ur-general-setting-block").find('input[data-field="'+t.attr("data-field")+'"]').val(t.val())}(e(this))});break;case"required":t.on("change",function(){!function(t){var i=e(".ur-selected-item.ur-item-active");i.find(".ur-label").find("label").find("span").remove(),"yes"===t.val()&&i.find(".ur-label").find("label").append('<span style="color:red">*</span>');i.find(".ur-general-setting-block").find('select[data-field="'+t.attr("data-field")+'"]').find('option[value="'+t.val()+'"]').attr("selected","selected")}(e(this))});break;case"hide_label":t.on("change",function(){!function(t){var i=e(".ur-selected-item.ur-item-active");i.find(".ur-label").find("label").find("span").remove(),i.find(".ur-general-setting-block").find('select[data-field="'+t.attr("data-field")+'"]').find('option[value="'+t.val()+'"]').attr("selected","selected")}(e(this))});break;case"description":case"html":t.on("keyup",function(){!function(t){var i=e(".ur-selected-item.ur-item-active");i.find(".ur-field").find("textarea").attr("description",t.val()),i.find(".ur-general-setting-block").find('textarea[data-field="'+t.attr("data-field")+'"]').val(t.val())}(e(this))})}});var i=e(".ur_advance_setting");e(".ur-settings-enable-min-max").on("change",function(){"true"===e(this).val()?(e(".ur-advance-min_date").show(),e(".ur-advance-max_date").show(),""===e(".ur-settings-min-date").val()&&e(".ur-settings-min-date").addClass("flatpickr-field").flatpickr({disableMobile:!0,"static":!0,onChange:function(t,i,r){e(".ur-settings-min-date").val(i)},onOpen:function(t,i,r){r.set("maxDate",new Date(e(".ur-settings-max-date").val()))}}),""===e(".ur-settings-max-date").val()&&e(".ur-settings-max-date").addClass("flatpickr-field").flatpickr({disableMobile:!0,"static":!0,onChange:function(t,i,r){e(".ur-settings-max-date").val(i)},onOpen:function(t,i,r){r.set("minDate",new Date(e(".ur-settings-min-date").val()))}})):(e(".ur-advance-min_date").hide(),e(".ur-advance-max_date").hide(),e(".ur-settings-min-date").val(""),e(".ur-settings-max-date").val(""))}),e.each(i,function(){var t=e(this);switch(t.attr("data-advance-field")){case"date_format":t.on("change",function(){!function(t){e(".ur-selected-item.ur-item-active").find(".ur-field").find("input").attr("placeholder",t.val())}(e(this))});break;case"min_date":"true"===e(".ur-settings-enable-min-max").val()?e(this).addClass("flatpickr-field").flatpickr({disableMobile:!0,"static":!0,defaultDate:new Date(e(".ur-settings-min-date").val()),onChange:function(t,i,r){e(".ur-settings-min-date").val(i)},onOpen:function(t,i,r){r.set("maxDate",new Date(e(".ur-settings-max-date").val()))}}):(e(".ur-advance-min_date").hide(),e(".ur-settings-min-date").val(""));break;case"max_date":"true"===e(".ur-settings-enable-min-max").val()?e(this).addClass("flatpickr-field").flatpickr({disableMobile:!0,"static":!0,defaultDate:new Date(e(".ur-settings-max-date").val()),onChange:function(t,i,r){e(".ur-settings-max-date").val(i)},onOpen:function(t,i,r){r.set("minDate",new Date(e(".ur-settings-min-date").val()))}}):(e(".ur-advance-max_date").hide(),e(".ur-settings-max-date").val(""))}var i=t.get(0).tagName.toLowerCase();"country_advance_setting_default_value"===t.attr("data-id")&&e(".ur-builder-wrapper #ur-input-type-country").find('option[value="'+t.val()+'"]').attr("selected","selected");var r="change";switch(i){case"input":r="keyup";break;case"select":r="change";break;case"textarea":r="keyup";break;default:r="change"}e(this).on(r,function(){l(t,i)}),e(this).on("paste",function(){l(t,i)})})}function l(t,i){var r=e(".ur-selected-item.ur-item-active"),a=t.attr("data-id"),n=r.find(".ur-advance-setting-block").find('[data-id="'+a+'"]');switch(i){case"input":n.val(t.val());break;case"select":if(n.find("option").removeAttr("selected"),t.prop("multiple")){var s=t.val();Array.isArray(s)&&s.forEach(function(e){n.find('option[value="'+e+'"]').attr("selected","selected")})}else n.find('option[value="'+t.val()+'"]').attr("selected","selected");break;case"textarea":n.val(t.val()),function(t){switch(e(".ur-selected-item.ur-item-active").find(".ur-field").attr("data-field-key")){case"select":u(t);break;case"checkbox":d(t);break;case"radio":o(t)}}(t.val())}}function d(t){var i=[],r=t.closest("ul").find("li"),a=t.closest("li").index();r.each(function(t,r){var a=e(r).find("input.ur-type-checkbox-label").val();a=e.trim(a),s=e(r).find("input.ur-type-checkbox-value").is(":checked"),i.push({value:a,checkbox:s})});var n=e(".ur-selected-item.ur-item-active"),s=n.find(".ur-field");s.html("");for(var l=0;l<i.length;l++)""!==i[l]&&s.append('<label><input value="'+i[l].value.trim()+'" type="checkbox" '+(i[l].checkbox?"checked":"")+" disabled>"+i[l].value.trim()+"</label>");t.is(":checked")?n.find(".ur-general-setting-options li:nth("+a+') input[data-field="default_value"]').attr("checked","checked"):n.find(".ur-general-setting-options li:nth("+a+') input[data-field="default_value"]').removeAttr("checked")}function o(t){var i=t.closest("ul").find("li"),r=undefined,a=[];i.each(function(t,i){var n=e(i).find("input.ur-type-radio-label").val();n=e.trim(n),!0===(s=e(i).find("input.ur-type-radio-value").is(":checked"))&&(r=t),a.push({value:n,radio:s})});var n=e(".ur-selected-item.ur-item-active"),s=n.find(".ur-field");s.html("");for(var l=0;l<a.length;l++)""!==a[l]&&s.append('<label><input value="'+a[l].value.trim()+'" type="radio" '+(a[l].radio?"checked":"")+" disabled>"+a[l].value.trim()+"</label>");n.find(".ur-general-setting-options > ul.ur-options-list > li").each(function(t,i){var a=e(i).find('[data-field="default_value"]');t===r?a.attr("checked","checked"):a.removeAttr("checked")})}function u(t){value=e.trim(t.val());var i=e(".ur-selected-item.ur-item-active"),r=t.closest("li").index(),a=i.find(".ur-field").find("select");a.html(""),a.append("<option value='"+value+"'>"+value+"</option>"),i.find('.ur-general-setting-options li input[data-field="default_value"]').removeAttr("checked"),i.find(".ur-general-setting-options li:nth("+r+') input[data-field="default_value"]').attr("checked","checked")}function c(){var i=t.form_one_time_draggable_fields,r=e("#ur-tab-registered-fields").find("ul.ur-registered-list");e.each(r.find("li"),function(){var t=e(this),r=e(this).attr("data-field-id").replace("user_registration_","");e.inArray(r,i)>=0&&(e(".ur-input-grids").find('.ur-field[data-field-key="'+r+'"]').length>0?t.draggable("disable"):t.draggable("enable"))})}function f(e){return parseInt(e,0)}var g=t.i18n_admin;e(function(){({init:function(){e(document.body).on("click",".column-data_link a",this.add_item).on("ur_backbone_modal_loaded",this.backbone.init).on("ur_backbone_modal_response",this.backbone.response)},add_item:function(t){return t.preventDefault(),e(this).URBackboneModal({template:"test-demo"}),!1},backbone:{init:function(e,t){},response:function(e,t){}}}).init(),e.fn.ur_form_builder=function(){var i={active_grid:t.active_grid,number_of_grid_list:t.number_of_grid,min_grid_height:70};return this.each(function(){var a=e(this),n={init:function(){this.single_row(),function(){var i=t.form_required_fields,r=e(".ur-input-grids");if(e.isArray(i))for(var a=0;a<i.length;a++){var n=r.find('.ur-field[data-field-key="'+i[a]+'"]');n.closest(".ur-selected-item").find('select[data-field="required"]').val("yes").trigger("change"),n.closest(".ur-selected-item").find('select[data-field="required"]').find('option[value="yes"]').attr("selected","selected"),n.closest(".ur-selected-item").find('select[data-field="required"]').attr("disabled","disabled")}var s=r.find('select[data-field="required"]').find('option[selected="selected"][value="yes"]').closest(".ur-selected-item").find(".ur-label").find("label");s.find("span").remove(),s.append('<span style="color:red">*</span>')}()},get_grid_button:function(){var t=e('<div class="ur-grid-containner"/>'),i='<button type="button" class="ur-edit-grid"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M28,6V26H4V6H28m2-2H2V28H30V4Z"/></svg></button>';return i+='<button type="button" class="dashicons dashicons-no-alt ur-remove-row"></button>',i+='<div class="ur-toggle-grid-content" style="display:none">',i+="<small>Select the grid column.</small>",i+='<div class="ur-grid-selector" data-grid = "1">',i+='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M28,6V26H4V6H28m2-2H2V28H30V4Z"/></svg>',i+="</div>",i+='<div class="ur-grid-selector" data-grid = "2">',i+='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M17,4H2V28H30V4ZM4,26V6H15V26Zm24,0H17V6H28Z"/></svg>',i+="</div>",i+='<div class="ur-grid-selector" data-grid = "3">',i+='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M22,4H2V28H30V4ZM4,26V6h6V26Zm8,0V6h8V26Zm16,0H22V6h6Z"/></svg>',i+="</div>",i+="</div>",t.html(i),t.html()},single_row:function(){if("1"!==t.is_edit_form){var r=e("<div class='ur-single-row'/ data-row-id=\"0\">");r.append(e("<div class='ur-grids'/>"));var l=this.get_grid_button();r.find(".ur-grids").append(l),r.find(".ur-grids").find('span[data-id="'+i.active_grid+'"]').addClass("ur-active-grid");var d=this.get_grid_lists(i.active_grid);r.append('<div style="clear:both"></div>'),r.append(d),r.append('<div style="clear:both"></div>'),a.append(r),e(".ur-single-row").eq(0).find(".ur-grid-lists").eq(0).find(".ur-grid-list-item").eq(0).find(".user-registration-dragged-me").remove(),e(".ur-single-row").eq(0).find(".ur-grid-lists").eq(0).find(".ur-grid-list-item").eq(0).append(t.required_form_html)}if(0==a.find(".ur-add-new-row").length){a.append('<button type="button" class="button button-primary dashicons dashicons-plus-alt ur-add-new-row ui-sortable-handle" data-total-rows="0">'+t.add_new+"</button>");var o=a.find(".ur-add-new-row").siblings(".ur-single-row").last().prev().attr("data-row-id");a.find(".ur-add-new-row").attr("data-total-rows",o)}s.render_draggable_sortable(),n.manage_empty_grid(),c()},get_grid_lists:function(t){for(var r=e('<div class="ur-grid-lists"/>'),a=1;a<=t;a++){var n=e("<div ur-grid-id='"+a+"' class='ur-grid-list-item'></div>"),s=Math.floor(100/t)-t;n.css({width:s+"%","min-height":i.min_grid_height+"px"}),r.append(n)}return r.append('<div style="clear:both"></div>'),r.find(".ur-grid-list-item").eq("0").css({}),r},populate_dropped_node:function(i,r){var a={action:"user_registration_user_input_dropped",security:t.user_input_dropped,form_field_id:r},s='<div class="ur-selected-item ajax_added"><div class="ur-action-buttons"><span title="Clone" class="dashicons dashicons-admin-page ur-clone"></span><span title="Trash" class="dashicons dashicons-trash ur-trash"></span></div>(content)</div>';i.closest(".ur-single-row").find(".user-registration-dragged-me").fadeOut(),e.ajax({url:t.ajax_url,data:a,type:"POST",beforeSend:function(){i.removeAttr("class").removeAttr("id").removeAttr("data-field-id").addClass("ur-selected-item").css({width:"auto"}),i.html('<small class="spinner is-active"></small>'),i.addClass("ur-item-dragged")},complete:function(t){if(n.manage_empty_grid(),!0===t.responseJSON.success){var r=e(s.replace("(content)",t.responseJSON.data.template));r.removeClass("ajax_added"),r.removeClass("ur-item-dragged"),i.find(".ajax_added").find(".spinner").remove(),i.find(".ajax_added").remove(),e(r).insertBefore(i),i.remove()}c();!function(e){jQuery(".ur-grid-lists .ur-selected-item .ur-admin-template").each(function(){var t=jQuery(this).find(".ur-label label").text(),i=jQuery(this).find(".ur-field").attr("data-field-key");"section_title"!=i&&"html"!=i&&"wysiwyg"!=i&&"billing_address_title"!=i&&"shipping_address_title"!=i&&jQuery(this).find(".ur-general-setting-block .ur-general-setting").each(function(){var r=jQuery(this).find("[data-field='field_name']").val();void 0!==r&&(1==!(jQuery(".urcl-rules select.ur_advance_setting.urcl-settings-rules_field_1 option[value='"+r+"']").length>0)?(jQuery('[class*="urcl-settings-rules_field_"]').append('<option value ="'+r+'" data-type="'+i+'">'+t+" </option>"),r==e&&jQuery('.urcl-rules select.ur_advance_setting.urcl-settings-rules_field_1.empty-fields option[value="'+e+'"]').remove()):jQuery(".urcl-rules select.ur_advance_setting.urcl-settings-rules_field_1.empty-fields").append('<option value ="'+r+'" data-type="'+i+'">'+t+" </option>"))})}),jQuery(".urcl-rules select.ur_advance_setting.urcl-settings-rules_field_1.empty-fields").removeClass("empty-fields")}(r.closest(".ur-selected-item ").find("[data-field='field_name']").val()),e('.ur-input-type-select2 .ur-field[data-field-key="select2"] select, .ur-input-type-multi-select2 .ur-field[data-field-key="multi_select2"] select').selectWoo()}})},manage_empty_grid:function(){var t=e(".ur-input-grids"),i=e('<div class="user-registration-dragged-me"/>');t.find(".user-registration-dragged-me").remove(),e.each(t.find(".ur-grid-list-item"),function(){var t=e(this);0===e(this).find(".ur-selected-item").length&&t.append(i.clone())})}},s={register:function(){this.register_add_new_row(),this.register_remove_row(),this.change_ur_grids(),this.remove_selected_item(),this.clone_selected_item()},register_add_new_row:function(){var t=this;e("body").on("click",".ur-add-new-row",function(){var r=e(this).attr("data-total-rows");e(this).attr("data-total-rows",parseInt(r)+1);var a=e(this).closest(".ur-input-grids").find(".ur-single-row").eq(0).clone();a.attr("data-row-id",parseInt(r)+1),a.find(".ur-grid-lists").html(""),a.find(".ur-grids").find("span").removeClass("ur-active-grid"),a.find(".ur-grids").find('span[data-id="'+i.active_grid+'"]').addClass("ur-active-grid");var s=n.get_grid_lists(i.active_grid);a.find(".ur-grid-lists").append(s.html()),a.insertBefore(".ur-add-new-row"),a.show(),t.render_draggable_sortable(),n.manage_empty_grid(),e(document).trigger("user_registration_row_added",[a])})},register_remove_row:function(){var t=this;e("body").on("click",".ur-remove-row",function(){if(e(".ur-input-grids").find(".ur-single-row:visible").length>1){var i=e(this);ur_confirmation(g.i18n_are_you_sure_want_to_delete,{confirm:function(){var r,a=i.prev();(r=a.hasClass("ur-add-new-row")?a.clone():i.clone().attr("class","dashicons-minus ur-remove-row")).hasClass("ur-add-new-row")&&i.closest(".ur-single-row").prev().find(".ur-remove-row").before(r);var n=i.closest(".ur-single-row");e(document).trigger("user_registration_row_deleted",[n]),n.remove(),t.check_grid(),c(),Swal.fire({type:"success",title:"Successfully deleted!",showConfirmButton:!1,timer:1e3})}})}else ur_alert(g.i18n_at_least_one_row_need_to_select)})},change_ur_grids:function(){var t=this;e(document).on("click",".ur-grids .ur-edit-grid",function(t){t.stopPropagation(),e(this).siblings(".ur-toggle-grid-content").stop(!0).slideToggle(200)}),e(document).on("click",function(){e(".ur-toggle-grid-content").stop(!0).slideUp(200)}),e(document).on("click",".ur-grids .ur-toggle-grid-content .ur-grid-selector",function(){var i=e(this).closest(".ur-single-row"),r=e(this).attr("data-grid"),a=n.get_grid_lists(r);i.find(".ur-grid-lists .ur-grid-list-item").length!==parseInt(r)&&(i.find("button.ur-edit-grid").html(e(this).html()),e.each(i.find(".ur-grid-lists .ur-grid-list-item"),function(){e(this).children("*").each(function(){a.find(".ur-grid-list-item").eq(0).append(e(this).clone())})}),i.find(".ur-grid-lists").eq(0).hide(),a.clone().insertAfter(i.find(".ur-grid-lists")),i.find(".ur-grid-lists").eq(0).remove(),t.render_draggable_sortable(),n.manage_empty_grid())})},render_draggable_sortable:function(){e(".ur-grid-list-item").sortable({containment:".ur-input-grids",over:function(){e(this).addClass("ur-sortable-active"),n.manage_empty_grid()},out:function(){e(this).removeClass("ur-sortable-active"),n.manage_empty_grid()},revert:!0,connectWith:".ur-grid-list-item"}).disableSelection(),e(".ur-input-grids").sortable({containment:".ur-builder-wrapper",tolerance:"pointer",revert:"invalid",placeholder:"ur-single-row",forceHelperSize:!0,over:function(){e(this).addClass("ur-sortable-active")},out:function(){e(this).removeClass("ur-sortable-active")}}),e("#ur-draggabled .draggable").draggable({connectToSortable:".ur-grid-list-item",containment:".ur-registered-from",helper:function(){return e(this).clone().insertAfter(e(this).closest(".ur-tab-contents").siblings(".ur-tab-lists"))},revert:"invalid",stop:function(i,a){if(0!==e(a.helper).closest(".ur-grid-list-item").length){var s=e.trim(e(a.helper).attr("data-field-id").replace("user_registration_","")),l=e(".ur-input-grids").find('.ur-field[data-field-key="'+s+'"]').length,d=e.makeArray(t.form_one_time_draggable_fields);if(l>0&&e.inArray(s,d)>=0)return r(g.i18n_user_required_field_already_there),void e(a.helper).remove();var o=e(a.helper),u=e(o).attr("data-field-id");if(void 0!==u){var c=e(a.helper).closest(".ur-grid-list-item").find('li[data-field-id="'+e(this).attr("data-field-id")+'"]');n.populate_dropped_node(c,u)}}}}).disableSelection()},remove_selected_item:function(){var t=this;e("body").on("click",".ur-selected-item .ur-action-buttons .ur-trash",function(i){var r=e(this).closest(".ur-selected-item ").find("[data-field='field_name']").val();return e(this).closest(".ur-selected-item ").remove(),t.check_grid(),n.manage_empty_grid(),c(),jQuery('[class*="urcl-settings-rules_field_"] option[value="'+r+'"]').remove(),!1})},clone_selected_item:function(){e("body").on("click",".ur-selected-item .ur-action-buttons .ur-clone",function(){var i=e(this).closest(".ur-selected-item ").find(".ur-field").attr("data-field-key");if(e(".ur-input-grids").find('.ur-field[data-field-key="'+i+'"]').length>0&&e.inArray(i,t.form_one_time_draggable_fields)>-1)r(g.i18n_user_required_field_already_there_could_not_clone);else{var a=e(this).closest(".ur-selected-item ").clone(),n=a.find('input[data-field="field_name"]'),s=n.val().match(/\d+/g),l=s.length>0?s[s.length-1]:"",d=n.val().replace(l,"");a.find('input[data-field="field_name"]').attr("value",d+(new Date).getTime()),e(this).closest(".ur-grid-list-item").append(a)}})},check_grid:function(){e(".ur-tabs").tabs({disabled:[1]}),e(".ur-tabs").find("a").eq(0).trigger("click",["triggered_click"]),e(".ur-tabs").find('[aria-controls="ur-tab-field-options"]').addClass("ur-no-pointer"),e(".ur-selected-item").removeClass("ur-item-active")}};n.init(),s.register()})},e(".ur-input-grids").ur_form_builder(),e(".ur-tabs .ur-tab-lists").find("a.nav-tab").click(function(){e(".ur-tabs .ur-tab-lists").find("a.nav-tab").removeClass("active"),e(this).addClass("active")}),e(".ur-tabs").tabs(),e(".ur-tabs").find("a").eq(0).trigger("click",["triggered_click"]),e(".ur-tabs").tabs({disabled:[1]});var a,n;e.fn.select2.amd.require(["select2/selection/single","select2/selection/placeholder","select2/dropdown","select2/dropdown/search","select2/dropdown/attachBody","select2/utils","select2/selection/eventRelay"],function(t,i,r,s,l,d,o){function u(){}function c(){}a=d.Decorate(t,i),a=d.Decorate(a,o),n=d.Decorate(r,s),n=d.Decorate(n,l),u.prototype.render=function(t){var i=this,r=t.call(this),a=e('<button class="button button-secondary button-medium ur-unselect-all-countries-button" type="button">Unselect All</button>');return a.on("click",function(){i.$element.val([]),i.$element.trigger("change"),i.trigger("close")}),r.find(".select2-dropdown").prepend(a),r},n=d.Decorate(n,u),c.prototype.render=function(t){var i=this,r=t.call(this),a=e('<button class="button button-secondary button-medium ur-select-all-countries-button" type="button">Select All</button>');return a.on("click",function(){var t=[];i.$element.find("option").each(function(){t.push(e(this).val())}),i.$element.val(t),i.$element.trigger("change"),i.trigger("close")}),r.find(".select2-dropdown").prepend(a),r},n=d.Decorate(n,c)}),e(document).on("click",".ur-selected-item",function(){e(".ur-registered-inputs").find("ul li.ur-no-pointer").removeClass("ur-no-pointer"),e(".ur-selected-item").removeClass("ur-item-active"),e(this).addClass("ur-item-active"),function(t){var i=t.find(".ur-advance-setting-block").clone(),r=t.find(".ur-general-setting-block").clone(),a=e("<form id='ur-setting-form'/>");e("#ur-tab-field-options").html(""),a.append(r),a.append(i),e("#ur-tab-field-options").append(a),e("#ur-tab-field-options").find(".ur-advance-setting-block").show(),e("#ur-tab-field-options").find(".ur-general-setting-block").show(),1===e(".ur-item-active").length&&(e(".ur-tabs").tabs("enable",1),e(".ur-tabs").find("a").eq(1).trigger("click",["triggered_click"])),e(".ur-options-list").sortable({containment:".ur-general-setting-options"})}(e(this)),s(),e(document).trigger("update_perfect_scrollbar");var t=e(this).find(".ur-field").data("field-key");if("country"===t||"billing_country"===t||"shipping_country"===t){var i=e("#ur-setting-form select.ur-settings-selected-countries");i.on("change",function(t){var i=e(this).val(),r="",a=this;Array.isArray(i)&&i.forEach(function(t){var i=e(a).find('option[value="'+t+'"]').html();r+='<option value="'+t+'">'+i+"</option>"}),e("#ur-setting-form select.ur-settings-default-value").html(r),e(".ur-selected-item.ur-item-active select.ur-settings-default-value").html(r)}).select2({placeholder:"Select countries...",selectionAdapter:a,dropdownAdapter:n,templateResult:function(t){return t.id?e("<div></div>").text(t.text).addClass("wrap"):t.text},templateSelection:function(e){if(!e.id)return e.text;var t=0;return i.val()&&(t=i.val().length),"Selected "+t+" country(s)"}}).on("select2:close",function(t){setTimeout(function(){e(":focus").blur()},1)})}}),e(".ur_import_form_action_button").on("click",function(){var i=e("#jsonfile").prop("files")[0],r=new FormData;r.append("jsonfile",i),r.append("action","user_registration_import_form_action"),r.append("security",t.ur_import_form_save),e.ajax({url:t.ajax_url,dataType:"json",cache:!1,contentType:!1,processData:!1,data:r,type:"post",beforeSend:function(){e(".ur_import_form_action_button").closest(".publishing-action").append('<span class="spinner is-active" style="float: left;margin-top: 6px;"></span>'),e(".ur-import_notice").remove()},complete:function(t){var i="";e(".ur_import_form_action_button").closest(".publishing-action").find(".spinner").remove(),e(".ur-import_notice").remove(),i=!0===t.responseJSON.success?'<div id="message" class="updated inline ur-import_notice"><p><strong>'+t.responseJSON.data.message+"</strong></p></div>":'<div id="message" class="error inline ur-import_notice"><p><strong>'+t.responseJSON.data.message+"</strong></p></div>",e(".ur-export-users-page").prepend(i),e("#jsonfile").val("")}})}),e(".ur_save_form_action_button").on("click",function(){i()}),e(document.body).on("click",".ur-quick-links-content",function(e){e.stopPropagation()}),e(document.body).on("click",".ur-button-quick-links",function(t){t.stopPropagation(),e(".ur-quick-links-content").slideToggle()}),e(document.body).on("click",function(t){e(".ur-quick-links-content").is(":hidden")||e(".ur-quick-links-content").slideToggle()}),e(window).on("keydown",function(e){if((e.ctrlKey||e.metaKey)&&"s"===String.fromCharCode(e.which).toLowerCase())return e.preventDefault(),i(),!1})}),e(document).on("click",".ur-message .ur-message-close",function(){$message=e(this).closest(".ur-message"),a($message)}),e(document).ready(function(){var t=!1;e("#load_flatpickr").click(function(){var i=e('#profile-page form#your-profile input[type="date"]');i.attr("type","text"),i.val(e("#formated_date").val());var r,a=i.attr("id");t||(e(this).attr("data-date-format",i.data("date-format")),e(this).attr("data-mode",i.data("mode")),e(this).attr("data-min-date",i.data("min-date")),e(this).attr("data-max-date",i.data("max-date")),e(this).attr("data-default-date",e("#formated_date").val()),r=e(this).flatpickr({disableMobile:!0,onChange:function(t,i,r){e("#"+a).val(i)}}),t=!0),r&&r.open()})}),e(document).on("click",".ur-toggle-heading",function(){e(this).hasClass("closed")?e(this).removeClass("closed"):e(this).addClass("closed");var t=e(this).find(" ~ .ur-registered-list")[0];e(t).slideToggle(),e(this).siblings("div").slideToggle()}),e(document).on("click",".ur-options-list .add",function(t){t.preventDefault();var i=e(this),r=e(".ur-selected-item.ur-item-active"),a=i.parent("li").index(),n=i.parent("li").clone(!0,!0);n.find('input[data-field="options"]').val(""),n.find('input[data-field="default_value"]').removeAttr("checked"),i.parent("li").after(n),r.find(".ur-general-setting-options .ur-options-list > li:nth( "+a+" )").after(n.clone(!0,!0)),i.closest(".ur-general-setting-block").hasClass("ur-general-setting-radio")?o(i):i.closest(".ur-general-setting-block").hasClass("ur-general-setting-checkbox")&&d(i)}),e(document).on("click",".ur-options-list .remove",function(t){t.preventDefault();var i=e(this),r=e(this).closest("ul");$any_siblings=r.find("li"),$wrapper=e(".ur-selected-item.ur-item-active"),this_index=i.parent("li").index(),r.find("li").length>1&&(i.parent("li").remove(),$wrapper.find(".ur-general-setting-options .ur-options-list > li:nth( "+this_index+" )").remove(),$any_siblings.closest(".ur-general-setting-block").hasClass("ur-general-setting-radio")?o($any_siblings):$any_siblings.closest(".ur-general-setting-block").hasClass("ur-general-setting-checkbox")&&d($any_siblings))}),e(document).on("sortstop",".ur-options-list",function(t,i){var r=e(this);!function(t){var i=t.clone(!0,!0),r=e(".ur-selected-item.ur-item-active").find(".ur-general-setting-options .ur-options-list");r.html(""),r.replaceWith(i)}(r),r.closest(".ur-general-setting-block").hasClass("ur-general-setting-radio")?o(r):r.closest(".ur-general-setting-block").hasClass("ur-general-setting-checkbox")&&d(r)})}(jQuery,window.user_registration_admin_data);
1
+ function ur_alert(e,t){void 0===t&&(t={}),Swal.fire({type:"error",title:t.title,text:e})}function ur_confirmation(e,t){void 0===t&&(t={}),Swal.fire({title:t.title,text:e,type:"undefined"!=typeof t.type?t.type:"warning",showCancelButton:"undefined"==typeof t.showCancelButton||t.showCancelButton,confirmButtonText:"undefined"!=typeof t.confirmButtonText?t.confirmButtonText:"OK",cancelButtonText:"undefined"!=typeof t.cancelButtonText?t.cancelButtonText:"Cancel"}).then(function(e){e.value?t.confirm():t.reject()})}jQuery(function(e){e(document.body).on("input","#ur-search-fields",function(){var t=e(this).val().toLowerCase();e(".ur-registered-item").each(function(){e(this).text().toLowerCase().search(t)>-1?(e(this).addClass("ur-searched-item"),e(this).show()):(e(this).removeClass("ur-searched-item"),e(this).hide())}),e(".ur-registered-list").each(function(){var t=e(this).find(".ur-registered-item.ur-searched-item").length,i=e(this).prev("hr"),r=e(this).prev("hr").prev(".ur-toggle-heading");0===t?(i.hide(),r.hide()):(i.show(),r.show())}),e(".ur-registered-item.ur-searched-item").length?e(".ur-fields-not-found").hide():e(".ur-fields-not-found").show()}),e(document).on("mousedown",".ur-upgradable-field",function(t){t.preventDefault();var i=e(this).text(),r='<i class="dashicons dashicons-lock"></i><div class="ur-swal-title">'+i+" is a Premium field.</div>",a=i+" field is not available right now. Please upgrade to <strong>"+e(this).data("plan")+"</strong> of the plugin to unlock this field.";Swal.fire({title:r,html:a,showCloseButton:!0,confirmButtonText:"Let's do it"}).then(function(e){if(e.value){window.open("https://wpeverest.com/wordpress-plugins/user-registration/pricing/?utm_source=pro-fields&utm_medium=popup-button&utm_campaign=ur-upgrade-to-pro","_blank")}})}),e(window).on("resize orientationchange",function(){var t;clearTimeout(t),t=setTimeout(function(){e(document.body).trigger("adjust_builder_width")},250)}),e(document.body).on("click","#collapse-button",function(){e(document.body).trigger("ur_adjust_builder_width")}),e(document.body).on("ur_adjust_builder_width",function(){var t=e("#adminmenuwrap").width(),i=e(".user-registration_page_add-new-registration .ur-form-subcontainer .menu-edit"),r=e(".user-registration_page_add-new-registration .ur-form-subcontainer .ur-loading-container");i.css({left:t+"px"}),r.fadeOut(1e3)}).trigger("ur_adjust_builder_width"),e(document.body).on("click",".ur-form-container .ur-registered-from .ur-form-name-wrapper .ur-edit-form-name",function(){var t=e(this).siblings("#ur-form-name");t.hasClass("ur-editing")||t.focus(),t.toggleClass("ur-editing")}),e(document).on("init_perfect_scrollbar update_perfect_scrollbar",function(){if("undefined"!=typeof PerfectScrollbar){var t=e(".ur-builder-wrapper"),i=e(".ur-tab-contents");t.length>=1&&"undefined"==typeof window.ur_builder_scrollbar?window.ur_builder_scrollbar=new PerfectScrollbar(t.selector,{suppressScrollX:!0}):"undefined"!=typeof window.ur_builder_scrollbar&&window.ur_builder_scrollbar.update(),i.length>=1&&"undefined"==typeof window.ur_tab_scrollbar?window.ur_tab_scrollbar=new PerfectScrollbar(i.selector,{suppressScrollX:!0}):"undefined"!=typeof window.ur_tab_scrollbar&&(window.ur_tab_scrollbar.update(),i.scrollTop(0))}}),e(document).ready(function(){e(document).trigger("init_perfect_scrollbar");var t=e(".ur-selected-inputs"),i=e(".ur-registered-inputs nav").find("#ur-tab-field-settings");i.find("form").appendTo(t),t.find("form #ur-field-all-settings > div").each(function(t,r){var a=e(r).find("h3").text(),n=e(r).attr("id");i.append('<div id="'+n+'" class="form-settings-tab">'+a+"</div>"),e(r).hide()}),i.find("#general-settings").addClass("active"),t.find("#ur-field-all-settings div#general-settings").show(),i.find(".form-settings-tab").on("click",function(){this_id=e(this).attr("id"),e(this).siblings().removeClass("active"),e(this).addClass("active"),t.find("form #ur-field-all-settings > div").hide(),t.find("form #ur-field-all-settings > div#"+this_id).show(),e(document).trigger("update_perfect_scrollbar"),e(".ur-builder-wrapper").scrollTop(0)})}),e(document).on("click",'.ur-tab-lists li[role="tab"] a.nav-tab',function(t,i){e(document).trigger("update_perfect_scrollbar"),"triggered_click"!=i&&(e(".ur-builder-wrapper").scrollTop(0),e(".ur-builder-wrapper-content").scrollTop(0))}),e(document).on("click",'.ur-tab-lists li[aria-controls="ur-tab-field-settings"]',function(){e(".ur-builder-wrapper-content").hide(),e(".ur-builder-wrapper-footer").hide(),e(".ur-selected-inputs").find("form#ur-field-settings").show()}),e(document).on("click",'ul.ur-tab-lists li[aria-controls="ur-tab-registered-fields"]',function(){e(".ur-builder-wrapper-content").show(),e(".ur-builder-wrapper-footer").show(),e(".ur-selected-inputs").find("form#ur-field-settings").hide()});var t=e("#general-settings").find("#user_registration_form_setting_minimum_password_strength_field"),i=e("#general-settings").find("#user_registration_form_setting_enable_strong_password_field input#user_registration_form_setting_enable_strong_password"),r=i.is(":checked");"yes"===r||!0===r?t.show():t.hide(),e(i).change(function(){"yes"===(r=e(this).is(":checked"))||!0===r?t.show("slow"):t.hide("slow")}),e(document.body).on("init_tooltips",function(){var t={attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200,keepAlive:!0};e(".tips, .help_tip, .user-registration-help-tip").tipTip(t),t.keepAlive=!1,e(".ur-copy-shortcode").tipTip(t),e(".parent-tips").each(function(){e(this).closest("a, th").attr("data-tip",e(this).data("tip")).tipTip(t).css("cursor","help")})}).trigger("init_tooltips"),e("body").on("keypress","#ur-form-name",function(t){13===t.which&&e("#save_form_footer").eq(0).trigger("click")}),e("#ur-full-screen-mode").on("click",function(t){t.preventDefault();var i=e(this);i.hasClass("closed")?(i.removeClass("closed"),i.addClass("opened"),e("body").addClass("ur-full-screen-mode")):(i.removeClass("opened"),i.addClass("closed"),e("body").removeClass("ur-full-screen-mode"))}),e(document).on("keyup",function(t){"Escape"===t.key&&e("#ur-full-screen-mode.opened").trigger("click")}),e("input.input-color").wpColorPicker()}),function(e,t){function i(){var i=function(){var i=e.makeArray(t.form_one_time_draggable_fields),r=e.makeArray(t.form_required_fields),a={validation_status:!0,message:""};if(0===e(".ur-selected-item").length)return a.validation_status=!1,a.message=g.i18n_at_least_one_field_need_to_select,a;if(""===e("#ur-form-name").val())return a.validation_status=!1,a.message=g.i18n_empty_form_name,a;if(e(".ur_save_form_action_button").find(".ur-spinner").length>0)return a.validation_status=!1,a.message=g.i18n_previous_save_action_ongoing,a;e.each(e(".ur-selected-item select.ur-settings-selected-countries"),function(){var t=e(this).val();if(!t||Array.isArray(t)&&0===t.length)return a.validation_status=!1,a.message=g.i18n_select_countries,a}),e.each(e('.ur-input-grids .ur-general-setting-block input[data-field="field_name"]'),function(){var t,i=e(this),r=!1;try{var n=i.val(),s=e(".ur-input-grids .ur-general-setting-block").find('input[data-field="field_name"][value="'+n+'"]').length;if(s>1)throw g.i18n_duplicate_field_name;if(""===i.closest(".ur-general-setting-block").find('input[data-field="label"]').val())throw i=i.closest(".ur-general-setting-block").find('input[data-field="label"]'),g.i18n_empty_field_label;var l=n.match(/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/gm);if(null===l||1!==l.length||l[0]!==n)throw g.i18n_invald_field_name}catch(d){a.validation_status=!1,a.message=d.message===undefined?d:d.message,i.closest(".ur-selected-item").trigger("click"),t=i.attr("data-field"),e("#ur-setting-form").find('input[data-field="'+t+'"]').css({border:"1px solid red"}),setTimeout(function(){e("#ur-setting-form").find('input[data-field="'+t+'"]').removeAttr("style")},2e3),r=!0}if(r)return!1});for(var n=0;n<i.length;n++)if(e(".ur-input-grids").find('.ur-field[data-field-key="'+i[n]+'"]').length>1){a.validation_status=!1,a.message=g.i18n_multiple_field_key+i[n];break}for(var s=0;s<r.length;s++)if(0===e(".ur-input-grids").find('.ur-field[data-field-key="'+r[s]+'"]').length){if(a.validation_status=!1,0===s)var l=g.i18n_user_email;else if(1===s)var l=g.i18n_user_password;a.message=l+" "+g.i18n_field_is_required;break}return a}();if(!1!==i.validation_status){var a=function(){var t=[],i=e(".ur-input-grids .ur-single-row");return e.each(i,function(){var i=e(this).find(".ur-grid-list-item"),r=[];e.each(i,function(){var t=function(t){var i=t.find(".ur-selected-item"),r=[];return e.each(i,function(){var t=e(this),i={field_key:t.find(".ur-field").attr("data-field-key"),general_setting:function(t){var i=t.find(".ur-general-setting-block").find(".ur-general-setting-field"),r={},a=[],s=[];return e.each(i,function(){var t=e(this).closest(".ur-general-setting").hasClass("ur-setting-checkbox");"options"===e(this).attr("data-field")?(r.options=a.push(n(e(this))),r.options=a):"default_value"===e(this).attr("data-field")?!0===t?e(this).is(":checked")&&(r.default_value=s.push(n(e(this))),r.default_value=s):e(this).is(":checked")&&(r.default_value=n(e(this))):"html"===e(this).attr("data-field")?r[e(this).attr("data-field")]=n(e(this)).replace(/"/g,"'"):r[e(this).attr("data-field")]=n(e(this))}),r}(t),advance_setting:function(t){var i=t.find(".ur-advance-setting-block").find(".ur_advance_setting"),r={};return e.each(i,function(){r[e(this).attr("data-advance-field")]=n(e(this))}),r}(t)};r.push(i)}),r}(e(this));r.push(t)}),t.push(r)}),t}(),s=function(){var t=[],i=e(".ur-input-grids .ur-single-row");return e.each(i,function(){t.push(e(this).attr("data-row-id"))}),t}(),l=e("#ur_form_id").val();f(t.post_id)!==f(l)&&(l=0);var d=e("#ur-field-settings :not(.urcl-user-role-field)").serializeArray(),o=function(){var t=[],i=e(".urcl-role-logic-wrap");return e.each(i,function(){var i=e(this).find(".urcl-user-role-field"),r=[],a=[],n="";e.each(i,function(){$field_key=e(this).attr("name").split("["),"user_registration_form_conditional_user_role"===$field_key[0]&&(n=e(this).val(),i.splice(e(this),1))});var s=e(this).find(".urcl-conditional-group");e.each(s,function(){var t=[],i=e(this).find(".urcl-user-role-field");e.each(i,function(){var i={field_key:e(this).attr("name"),field_value:e(this).val()};t.push(i)}),r.push(t)});var l=e(this).find(".urcl-or-groups");e.each(l,function(){var t=e(this).find(".urcl-conditional-or-group"),i=[];e.each(t,function(){var t=[],r=e(this).find(".urcl-user-role-field");e.each(r,function(){var i={field_key:e(this).attr("name"),field_value:e(this).val()};t.push(i)}),i.push(t)}),a.push(i)});var d={assign_role:n,conditions:r,or_conditions:a};t.push(d)}),t}(),u=e("#ur-multi-part-page-settings").serializeArray(),c={action:"user_registration_form_save_action",security:t.ur_form_save,data:{form_data:JSON.stringify(a),form_row_ids:JSON.stringify(s),form_name:e("#ur-form-name").val(),form_id:l,form_setting_data:d,conditional_roles_settings_data:o,multipart_page_setting:u}};e.ajax({url:t.ajax_url,data:c,type:"POST",beforeSend:function(){e(".ur_save_form_action_button").append('<span class="ur-spinner is-active"></span>'),e(".ur-notices").remove()},complete:function(i){if(e(".ur_save_form_action_button").find(".ur-spinner").remove(),!0===i.responseJSON.success){var a=g.i18n_form_successfully_saved;if("1"!==t.is_edit_form){message_body="<p>Want to create a login form as well? Check this <a target='_blank' href='https://docs.wpeverest.com/docs/user-registration/registration-form-and-login-form/how-to-show-login-form/'>link</a>. To know more about other cool features check our <a target='_blank' href='https://docs.wpeverest.com/docs/user-registration/'>docs</a>.</p>",Swal.fire({type:"success",title:"Form successfully created.",html:message_body}).then(function(e){0===parseInt(l)&&(window.location=t.admin_url+i.responseJSON.data.post_id)})}else r(a,"success"),0===parseInt(l)&&(window.location=t.admin_url+i.responseJSON.data.post_id)}else{r(i.responseJSON.data.message)}}})}else r(i.message)}function r(t,i){var r=e(".ur-form-container").find(".ur-builder-message-container"),n=e("#wpadminbar"),s="";0===r.length&&(e(".ur-form-container").append('<div class="ur-builder-message-container"></div>'),(r=e(".ur-form-container").find(".ur-builder-message-container")).css({top:n.height()+"px"})),s="success"===i?'<div class="ur-message"><div class="ur-success"><p><strong>'+g.i18n_success+"! </strong>"+t+'</p><span class="dashicons dashicons-no-alt ur-message-close"></span></div></div>':'<div class="ur-message"><div class="ur-error"><p><strong>'+g.i18n_error+"! </strong>"+t+'</p><span class="dashicons dashicons-no-alt ur-message-close"></span></div></div>';var l=e(s).prependTo(r);setTimeout(function(){l.addClass("entered")},50),setTimeout(function(){a(l)},2e3)}function a(e){e.removeClass("entered").addClass("exiting"),setTimeout(function(){e.remove()},120)}function n(e){var t="";switch(e.get(0).tagName.toLowerCase()){case"input":case"select":case"textarea":t=e.val()}return t}function s(){var t=e(".ur-general-setting-field");e.each(t,function(){var t=e(this);switch(t.attr("data-field")){case"label":t.on("keyup",function(){!function(t){e(".ur-selected-item.ur-item-active").find(".ur-label").find("label").text(t.val());e(".ur-selected-item.ur-item-active").find(".ur-general-setting-block").find('input[data-field="'+t.attr("data-field")+'"]').attr("value",t.val())}(e(this))});break;case"field_name":case"input_mask":t.on("change",function(){!function(t){e(".ur-selected-item.ur-item-active").find(".ur-general-setting-block").find('input[data-field="'+t.attr("data-field")+'"]').attr("value",t.val())}(e(this))});case"default_value":t.on("change",function(){"default_value"===t.attr("data-field")&&(t.closest(".ur-general-setting-block").hasClass("ur-general-setting-select")?u(e(this)):t.closest(".ur-general-setting-block").hasClass("ur-general-setting-radio")?o(e(this)):t.closest(".ur-general-setting-block").hasClass("ur-general-setting-checkbox")&&d(e(this)))});break;case"options":t.on("keyup",function(){t.closest(".ur-general-setting-block").hasClass("ur-general-setting-select")&&t.siblings('input[data-field="default_value"]').is(":checked")?u(e(this)):t.closest(".ur-general-setting-block").hasClass("ur-general-setting-radio")?o(e(this)):t.closest(".ur-general-setting-block").hasClass("ur-general-setting-checkbox")&&d(e(this)),function(t){var i=e(".ur-selected-item.ur-item-active"),r=t.closest("li").index();i.find(".ur-general-setting-block li:nth("+r+') input[data-field="'+t.attr("data-field")+'"]').attr("value",t.val()),i.find(".ur-general-setting-block li:nth("+r+') input[data-field="default_value"]').val(t.val()),t.closest("li").find('[data-field="default_value"]').val(t.val())}(e(this))});break;case"placeholder":t.on("keyup",function(){!function(t){var i=e(".ur-selected-item.ur-item-active");i.find(".ur-field").find("input").attr("placeholder",t.val()),i.find(".ur-general-setting-block").find('input[data-field="'+t.attr("data-field")+'"]').val(t.val())}(e(this))});break;case"required":t.on("change",function(){!function(t){var i=e(".ur-selected-item.ur-item-active");i.find(".ur-label").find("label").find("span").remove(),"yes"===t.val()&&i.find(".ur-label").find("label").append('<span style="color:red">*</span>');i.find(".ur-general-setting-block").find('select[data-field="'+t.attr("data-field")+'"]').find('option[value="'+t.val()+'"]').attr("selected","selected")}(e(this))});break;case"hide_label":t.on("change",function(){!function(t){var i=e(".ur-selected-item.ur-item-active");i.find(".ur-label").find("label").find("span").remove(),i.find(".ur-general-setting-block").find('select[data-field="'+t.attr("data-field")+'"]').find('option[value="'+t.val()+'"]').attr("selected","selected")}(e(this))});break;case"description":case"html":t.on("keyup",function(){!function(t){var i=e(".ur-selected-item.ur-item-active");i.find(".ur-field").find("textarea").attr("description",t.val()),i.find(".ur-general-setting-block").find('textarea[data-field="'+t.attr("data-field")+'"]').val(t.val())}(e(this))})}});var i=e(".ur_advance_setting");e(".ur-settings-enable-min-max").on("change",function(){"true"===e(this).val()?(e(".ur-advance-min_date").show(),e(".ur-advance-max_date").show(),""===e(".ur-settings-min-date").val()&&e(".ur-settings-min-date").addClass("flatpickr-field").flatpickr({disableMobile:!0,"static":!0,onChange:function(t,i,r){e(".ur-settings-min-date").val(i)},onOpen:function(t,i,r){r.set("maxDate",new Date(e(".ur-settings-max-date").val()))}}),""===e(".ur-settings-max-date").val()&&e(".ur-settings-max-date").addClass("flatpickr-field").flatpickr({disableMobile:!0,"static":!0,onChange:function(t,i,r){e(".ur-settings-max-date").val(i)},onOpen:function(t,i,r){r.set("minDate",new Date(e(".ur-settings-min-date").val()))}})):(e(".ur-advance-min_date").hide(),e(".ur-advance-max_date").hide(),e(".ur-settings-min-date").val(""),e(".ur-settings-max-date").val(""))}),e.each(i,function(){var t=e(this);switch(t.attr("data-advance-field")){case"date_format":t.on("change",function(){!function(t){e(".ur-selected-item.ur-item-active").find(".ur-field").find("input").attr("placeholder",t.val())}(e(this))});break;case"min_date":"true"===e(".ur-settings-enable-min-max").val()?e(this).addClass("flatpickr-field").flatpickr({disableMobile:!0,"static":!0,defaultDate:new Date(e(".ur-settings-min-date").val()),onChange:function(t,i,r){e(".ur-settings-min-date").val(i)},onOpen:function(t,i,r){r.set("maxDate",new Date(e(".ur-settings-max-date").val()))}}):(e(".ur-advance-min_date").hide(),e(".ur-settings-min-date").val(""));break;case"max_date":"true"===e(".ur-settings-enable-min-max").val()?e(this).addClass("flatpickr-field").flatpickr({disableMobile:!0,"static":!0,defaultDate:new Date(e(".ur-settings-max-date").val()),onChange:function(t,i,r){e(".ur-settings-max-date").val(i)},onOpen:function(t,i,r){r.set("minDate",new Date(e(".ur-settings-min-date").val()))}}):(e(".ur-advance-max_date").hide(),e(".ur-settings-max-date").val(""))}var i=t.get(0).tagName.toLowerCase();"country_advance_setting_default_value"===t.attr("data-id")&&e(".ur-builder-wrapper #ur-input-type-country").find('option[value="'+t.val()+'"]').attr("selected","selected");var r="change";switch(i){case"input":r="keyup";break;case"select":r="change";break;case"textarea":r="keyup";break;default:r="change"}e(this).on(r,function(){l(t,i)}),e(this).on("paste",function(){l(t,i)})})}function l(t,i){var r=e(".ur-selected-item.ur-item-active"),a=t.attr("data-id"),n=r.find(".ur-advance-setting-block").find('[data-id="'+a+'"]');switch(i){case"input":n.val(t.val());break;case"select":if(n.find("option").removeAttr("selected"),t.prop("multiple")){var s=t.val();Array.isArray(s)&&s.forEach(function(e){n.find('option[value="'+e+'"]').attr("selected","selected")})}else n.find('option[value="'+t.val()+'"]').attr("selected","selected");break;case"textarea":n.val(t.val()),function(t){switch(e(".ur-selected-item.ur-item-active").find(".ur-field").attr("data-field-key")){case"select":u(t);break;case"checkbox":d(t);break;case"radio":o(t)}}(t.val())}}function d(t){var i=[],r=t.closest("ul").find("li"),a=t.closest("li").index();r.each(function(t,r){var a=e(r).find("input.ur-type-checkbox-label").val();a=e.trim(a),s=e(r).find("input.ur-type-checkbox-value").is(":checked"),i.push({value:a,checkbox:s})});var n=e(".ur-selected-item.ur-item-active"),s=n.find(".ur-field");s.html("");for(var l=0;l<i.length;l++)""!==i[l]&&s.append('<label><input value="'+i[l].value.trim()+'" type="checkbox" '+(i[l].checkbox?"checked":"")+" disabled>"+i[l].value.trim()+"</label>");t.is(":checked")?n.find(".ur-general-setting-options li:nth("+a+') input[data-field="default_value"]').attr("checked","checked"):n.find(".ur-general-setting-options li:nth("+a+') input[data-field="default_value"]').removeAttr("checked")}function o(t){var i=t.closest("ul").find("li"),r=undefined,a=[];i.each(function(t,i){var n=e(i).find("input.ur-type-radio-label").val();n=e.trim(n),!0===(s=e(i).find("input.ur-type-radio-value").is(":checked"))&&(r=t),a.push({value:n,radio:s})});var n=e(".ur-selected-item.ur-item-active"),s=n.find(".ur-field");s.html("");for(var l=0;l<a.length;l++)""!==a[l]&&s.append('<label><input value="'+a[l].value.trim()+'" type="radio" '+(a[l].radio?"checked":"")+" disabled>"+a[l].value.trim()+"</label>");n.find(".ur-general-setting-options > ul.ur-options-list > li").each(function(t,i){var a=e(i).find('[data-field="default_value"]');t===r?a.attr("checked","checked"):a.removeAttr("checked")})}function u(t){value=e.trim(t.val());var i=e(".ur-selected-item.ur-item-active"),r=t.closest("li").index(),a=i.find(".ur-field").find("select");a.html(""),a.append("<option value='"+value+"'>"+value+"</option>"),i.find('.ur-general-setting-options li input[data-field="default_value"]').removeAttr("checked"),i.find(".ur-general-setting-options li:nth("+r+') input[data-field="default_value"]').attr("checked","checked")}function c(){var i=t.form_one_time_draggable_fields,r=e("#ur-tab-registered-fields").find("ul.ur-registered-list");e.each(r.find("li"),function(){var t=e(this),r=e(this).attr("data-field-id").replace("user_registration_","");e.inArray(r,i)>=0&&(e(".ur-input-grids").find('.ur-field[data-field-key="'+r+'"]').length>0?t.draggable("disable"):t.draggable("enable"))})}function f(e){return parseInt(e,0)}var g=t.i18n_admin;e(function(){({init:function(){e(document.body).on("click",".column-data_link a",this.add_item).on("ur_backbone_modal_loaded",this.backbone.init).on("ur_backbone_modal_response",this.backbone.response)},add_item:function(t){return t.preventDefault(),e(this).URBackboneModal({template:"test-demo"}),!1},backbone:{init:function(e,t){},response:function(e,t){}}}).init(),e.fn.ur_form_builder=function(){var i={active_grid:t.active_grid,number_of_grid_list:t.number_of_grid,min_grid_height:70};return this.each(function(){var a=e(this),n={init:function(){this.single_row(),function(){var i=t.form_required_fields,r=e(".ur-input-grids");if(e.isArray(i))for(var a=0;a<i.length;a++){var n=r.find('.ur-field[data-field-key="'+i[a]+'"]');n.closest(".ur-selected-item").find('select[data-field="required"]').val("yes").trigger("change"),n.closest(".ur-selected-item").find('select[data-field="required"]').find('option[value="yes"]').attr("selected","selected"),n.closest(".ur-selected-item").find('select[data-field="required"]').attr("disabled","disabled")}var s=r.find('select[data-field="required"]').find('option[selected="selected"][value="yes"]').closest(".ur-selected-item").find(".ur-label").find("label");s.find("span").remove(),s.append('<span style="color:red">*</span>')}()},get_grid_button:function(){var t=e('<div class="ur-grid-containner"/>'),i='<button type="button" class="ur-edit-grid"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M28,6V26H4V6H28m2-2H2V28H30V4Z"/></svg></button>';return i+='<button type="button" class="dashicons dashicons-no-alt ur-remove-row"></button>',i+='<div class="ur-toggle-grid-content" style="display:none">',i+="<small>Select the grid column.</small>",i+='<div class="ur-grid-selector" data-grid = "1">',i+='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M28,6V26H4V6H28m2-2H2V28H30V4Z"/></svg>',i+="</div>",i+='<div class="ur-grid-selector" data-grid = "2">',i+='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M17,4H2V28H30V4ZM4,26V6H15V26Zm24,0H17V6H28Z"/></svg>',i+="</div>",i+='<div class="ur-grid-selector" data-grid = "3">',i+='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M22,4H2V28H30V4ZM4,26V6h6V26Zm8,0V6h8V26Zm16,0H22V6h6Z"/></svg>',i+="</div>",i+="</div>",t.html(i),t.html()},single_row:function(){if("1"!==t.is_edit_form){var r=e("<div class='ur-single-row'/ data-row-id=\"0\">");r.append(e("<div class='ur-grids'/>"));var l=this.get_grid_button();r.find(".ur-grids").append(l),r.find(".ur-grids").find('span[data-id="'+i.active_grid+'"]').addClass("ur-active-grid");var d=this.get_grid_lists(i.active_grid);r.append('<div style="clear:both"></div>'),r.append(d),r.append('<div style="clear:both"></div>'),a.append(r),e(".ur-single-row").eq(0).find(".ur-grid-lists").eq(0).find(".ur-grid-list-item").eq(0).find(".user-registration-dragged-me").remove(),e(".ur-single-row").eq(0).find(".ur-grid-lists").eq(0).find(".ur-grid-list-item").eq(0).append(t.required_form_html)}if(0==a.find(".ur-add-new-row").length){a.append('<button type="button" class="button button-primary dashicons dashicons-plus-alt ur-add-new-row ui-sortable-handle" data-total-rows="0">'+t.add_new+"</button>");var o=a.find(".ur-add-new-row").siblings(".ur-single-row").last().prev().attr("data-row-id");a.find(".ur-add-new-row").attr("data-total-rows",o)}s.render_draggable_sortable(),n.manage_empty_grid(),c()},get_grid_lists:function(t){for(var r=e('<div class="ur-grid-lists"/>'),a=1;a<=t;a++){var n=e("<div ur-grid-id='"+a+"' class='ur-grid-list-item'></div>"),s=Math.floor(100/t)-t;n.css({width:s+"%","min-height":i.min_grid_height+"px"}),r.append(n)}return r.append('<div style="clear:both"></div>'),r.find(".ur-grid-list-item").eq("0").css({}),r},populate_dropped_node:function(i,r){var a={action:"user_registration_user_input_dropped",security:t.user_input_dropped,form_field_id:r},s='<div class="ur-selected-item ajax_added"><div class="ur-action-buttons"><span title="Clone" class="dashicons dashicons-admin-page ur-clone"></span><span title="Trash" class="dashicons dashicons-trash ur-trash"></span></div>(content)</div>';i.closest(".ur-single-row").find(".user-registration-dragged-me").fadeOut(),e.ajax({url:t.ajax_url,data:a,type:"POST",beforeSend:function(){i.removeAttr("class").removeAttr("id").removeAttr("data-field-id").addClass("ur-selected-item").css({width:"auto"}),i.html('<small class="spinner is-active"></small>'),i.addClass("ur-item-dragged")},complete:function(t){if(n.manage_empty_grid(),!0===t.responseJSON.success){var r=e(s.replace("(content)",t.responseJSON.data.template));r.removeClass("ajax_added"),r.removeClass("ur-item-dragged"),i.find(".ajax_added").find(".spinner").remove(),i.find(".ajax_added").remove(),e(r).insertBefore(i),i.remove()}c();!function(e){jQuery(".ur-grid-lists .ur-selected-item .ur-admin-template").each(function(){var t=jQuery(this).find(".ur-label label").text(),i=jQuery(this).find(".ur-field").attr("data-field-key");"section_title"!=i&&"html"!=i&&"wysiwyg"!=i&&"billing_address_title"!=i&&"shipping_address_title"!=i&&jQuery(this).find(".ur-general-setting-block .ur-general-setting").each(function(){var r=jQuery(this).find("[data-field='field_name']").val();void 0!==r&&(1==!(jQuery(".urcl-rules select.ur_advance_setting.urcl-settings-rules_field_1 option[value='"+r+"']").length>0)?(jQuery('[class*="urcl-settings-rules_field_"]').append('<option value ="'+r+'" data-type="'+i+'">'+t+" </option>"),r==e&&jQuery('.urcl-rules select.ur_advance_setting.urcl-settings-rules_field_1.empty-fields option[value="'+e+'"]').remove()):jQuery(".urcl-rules select.ur_advance_setting.urcl-settings-rules_field_1.empty-fields").append('<option value ="'+r+'" data-type="'+i+'">'+t+" </option>"))})}),jQuery(".urcl-rules select.ur_advance_setting.urcl-settings-rules_field_1.empty-fields").removeClass("empty-fields")}(r.closest(".ur-selected-item ").find("[data-field='field_name']").val()),e('.ur-input-type-select2 .ur-field[data-field-key="select2"] select, .ur-input-type-multi-select2 .ur-field[data-field-key="multi_select2"] select').selectWoo()}})},manage_empty_grid:function(){var t=e(".ur-input-grids"),i=e('<div class="user-registration-dragged-me"/>');t.find(".user-registration-dragged-me").remove(),e.each(t.find(".ur-grid-list-item"),function(){var t=e(this);0===e(this).find(".ur-selected-item").length&&t.append(i.clone())})}},s={register:function(){this.register_add_new_row(),this.register_remove_row(),this.change_ur_grids(),this.remove_selected_item(),this.clone_selected_item()},register_add_new_row:function(){var t=this;e("body").on("click",".ur-add-new-row",function(){var r=e(this).attr("data-total-rows");e(this).attr("data-total-rows",parseInt(r)+1);var a=e(this).closest(".ur-input-grids").find(".ur-single-row").eq(0).clone();a.attr("data-row-id",parseInt(r)+1),a.find(".ur-grid-lists").html(""),a.find(".ur-grids").find("span").removeClass("ur-active-grid"),a.find(".ur-grids").find('span[data-id="'+i.active_grid+'"]').addClass("ur-active-grid");var s=n.get_grid_lists(i.active_grid);a.find(".ur-grid-lists").append(s.html()),a.insertBefore(".ur-add-new-row"),a.show(),t.render_draggable_sortable(),n.manage_empty_grid(),e(document).trigger("user_registration_row_added",[a])})},register_remove_row:function(){var t=this;e("body").on("click",".ur-remove-row",function(){if(e(".ur-input-grids").find(".ur-single-row:visible").length>1){var i=e(this);ur_confirmation(g.i18n_are_you_sure_want_to_delete,{confirm:function(){var r,a=i.prev();(r=a.hasClass("ur-add-new-row")?a.clone():i.clone().attr("class","dashicons-minus ur-remove-row")).hasClass("ur-add-new-row")&&i.closest(".ur-single-row").prev().find(".ur-remove-row").before(r);var n=i.closest(".ur-single-row");e(document).trigger("user_registration_row_deleted",[n]),n.remove(),t.check_grid(),c(),Swal.fire({type:"success",title:"Successfully deleted!",showConfirmButton:!1,timer:1e3})}})}else ur_alert(g.i18n_at_least_one_row_need_to_select)})},change_ur_grids:function(){var t=this;e(document).on("click",".ur-grids .ur-edit-grid",function(t){t.stopPropagation(),e(this).siblings(".ur-toggle-grid-content").stop(!0).slideToggle(200)}),e(document).on("click",function(){e(".ur-toggle-grid-content").stop(!0).slideUp(200)}),e(document).on("click",".ur-grids .ur-toggle-grid-content .ur-grid-selector",function(){var i=e(this).closest(".ur-single-row"),r=e(this).attr("data-grid"),a=n.get_grid_lists(r);i.find(".ur-grid-lists .ur-grid-list-item").length!==parseInt(r)&&(i.find("button.ur-edit-grid").html(e(this).html()),e.each(i.find(".ur-grid-lists .ur-grid-list-item"),function(){e(this).children("*").each(function(){a.find(".ur-grid-list-item").eq(0).append(e(this).clone())})}),i.find(".ur-grid-lists").eq(0).hide(),a.clone().insertAfter(i.find(".ur-grid-lists")),i.find(".ur-grid-lists").eq(0).remove(),t.render_draggable_sortable(),n.manage_empty_grid())})},render_draggable_sortable:function(){e(".ur-grid-list-item").sortable({containment:".ur-input-grids",over:function(){e(this).addClass("ur-sortable-active"),n.manage_empty_grid()},out:function(){e(this).removeClass("ur-sortable-active"),n.manage_empty_grid()},revert:!0,connectWith:".ur-grid-list-item"}).disableSelection(),e(".ur-input-grids").sortable({containment:".ur-builder-wrapper",tolerance:"pointer",revert:"invalid",placeholder:"ur-single-row",forceHelperSize:!0,over:function(){e(this).addClass("ur-sortable-active")},out:function(){e(this).removeClass("ur-sortable-active")}}),e("#ur-draggabled .draggable").draggable({connectToSortable:".ur-grid-list-item",containment:".ur-registered-from",helper:function(){return e(this).clone().insertAfter(e(this).closest(".ur-tab-contents").siblings(".ur-tab-lists"))},revert:"invalid",stop:function(i,a){if(0!==e(a.helper).closest(".ur-grid-list-item").length){var s=e.trim(e(a.helper).attr("data-field-id").replace("user_registration_","")),l=e(".ur-input-grids").find('.ur-field[data-field-key="'+s+'"]').length,d=e.makeArray(t.form_one_time_draggable_fields);if(l>0&&e.inArray(s,d)>=0)return r(g.i18n_user_required_field_already_there),void e(a.helper).remove();var o=e(a.helper),u=e(o).attr("data-field-id");if(void 0!==u){var c=e(a.helper).closest(".ur-grid-list-item").find('li[data-field-id="'+e(this).attr("data-field-id")+'"]');n.populate_dropped_node(c,u)}}}}).disableSelection()},remove_selected_item:function(){var t=this;e("body").on("click",".ur-selected-item .ur-action-buttons .ur-trash",function(i){var r=e(this).closest(".ur-selected-item ").find("[data-field='field_name']").val();return e(this).closest(".ur-selected-item ").remove(),t.check_grid(),n.manage_empty_grid(),c(),jQuery('[class*="urcl-settings-rules_field_"] option[value="'+r+'"]').remove(),!1})},clone_selected_item:function(){e("body").on("click",".ur-selected-item .ur-action-buttons .ur-clone",function(){var i=e(this).closest(".ur-selected-item ").find(".ur-field").attr("data-field-key");if(e(".ur-input-grids").find('.ur-field[data-field-key="'+i+'"]').length>0&&e.inArray(i,t.form_one_time_draggable_fields)>-1)r(g.i18n_user_required_field_already_there_could_not_clone);else{var a=e(this).closest(".ur-selected-item ").clone(),n=a.find('input[data-field="field_name"]'),s=n.val().match(/\d+/g),l=s.length>0?s[s.length-1]:"",d=n.val().replace(l,"");a.find('input[data-field="field_name"]').attr("value",d+(new Date).getTime()),e(this).closest(".ur-grid-list-item").append(a)}})},check_grid:function(){e(".ur-tabs").tabs({disabled:[1]}),e(".ur-tabs").find("a").eq(0).trigger("click",["triggered_click"]),e(".ur-tabs").find('[aria-controls="ur-tab-field-options"]').addClass("ur-no-pointer"),e(".ur-selected-item").removeClass("ur-item-active")}};n.init(),s.register()})},e(".ur-input-grids").ur_form_builder(),e(".ur-tabs .ur-tab-lists").find("a.nav-tab").click(function(){e(".ur-tabs .ur-tab-lists").find("a.nav-tab").removeClass("active"),e(this).addClass("active")}),e(".ur-tabs").tabs(),e(".ur-tabs").find("a").eq(0).trigger("click",["triggered_click"]),e(".ur-tabs").tabs({disabled:[1]});var a,n;e.fn.select2.amd.require(["select2/selection/single","select2/selection/placeholder","select2/dropdown","select2/dropdown/search","select2/dropdown/attachBody","select2/utils","select2/selection/eventRelay"],function(t,i,r,s,l,d,o){function u(){}function c(){}a=d.Decorate(t,i),a=d.Decorate(a,o),n=d.Decorate(r,s),n=d.Decorate(n,l),u.prototype.render=function(t){var i=this,r=t.call(this),a=e('<button class="button button-secondary button-medium ur-unselect-all-countries-button" type="button">Unselect All</button>');return a.on("click",function(){i.$element.val([]),i.$element.trigger("change"),i.trigger("close")}),r.find(".select2-dropdown").prepend(a),r},n=d.Decorate(n,u),c.prototype.render=function(t){var i=this,r=t.call(this),a=e('<button class="button button-secondary button-medium ur-select-all-countries-button" type="button">Select All</button>');return a.on("click",function(){var t=[];i.$element.find("option").each(function(){t.push(e(this).val())}),i.$element.val(t),i.$element.trigger("change"),i.trigger("close")}),r.find(".select2-dropdown").prepend(a),r},n=d.Decorate(n,c)}),e(document).on("click",".ur-selected-item",function(){e(".ur-registered-inputs").find("ul li.ur-no-pointer").removeClass("ur-no-pointer"),e(".ur-selected-item").removeClass("ur-item-active"),e(this).addClass("ur-item-active"),function(t){var i=t.find(".ur-advance-setting-block").clone(),r=t.find(".ur-general-setting-block").clone(),a=e("<form id='ur-setting-form'/>");e("#ur-tab-field-options").html(""),a.append(r),a.append(i),e("#ur-tab-field-options").append(a),e("#ur-tab-field-options").find(".ur-advance-setting-block").show(),e("#ur-tab-field-options").find(".ur-general-setting-block").show(),1===e(".ur-item-active").length&&(e(".ur-tabs").tabs("enable",1),e(".ur-tabs").find("a").eq(1).trigger("click",["triggered_click"])),e(".ur-options-list").sortable({containment:".ur-general-setting-options"})}(e(this)),s(),e(document).trigger("update_perfect_scrollbar");var t=e(this).find(".ur-field").data("field-key");if("country"===t||"billing_country"===t||"shipping_country"===t){var i=e("#ur-setting-form select.ur-settings-selected-countries");i.on("change",function(t){var i=e(this).val(),r="",a=this;Array.isArray(i)&&i.forEach(function(t){var i=e(a).find('option[value="'+t+'"]').html();r+='<option value="'+t+'">'+i+"</option>"}),e("#ur-setting-form select.ur-settings-default-value").html(r),e(".ur-selected-item.ur-item-active select.ur-settings-default-value").html(r)}).select2({placeholder:"Select countries...",selectionAdapter:a,dropdownAdapter:n,templateResult:function(t){return t.id?e("<div></div>").text(t.text).addClass("wrap"):t.text},templateSelection:function(e){if(!e.id)return e.text;var t=0;return i.val()&&(t=i.val().length),"Selected "+t+" country(s)"}}).on("select2:close",function(t){setTimeout(function(){e(":focus").blur()},1)})}}),e(".ur_import_form_action_button").on("click",function(){var i=e("#jsonfile").prop("files")[0],r=new FormData;r.append("jsonfile",i),r.append("action","user_registration_import_form_action"),r.append("security",t.ur_import_form_save),e.ajax({url:t.ajax_url,dataType:"json",cache:!1,contentType:!1,processData:!1,data:r,type:"post",beforeSend:function(){e(".ur_import_form_action_button").closest(".publishing-action").append('<span class="spinner is-active" style="float: left;margin-top: 6px;"></span>'),e(".ur-import_notice").remove()},complete:function(t){var i="";e(".ur_import_form_action_button").closest(".publishing-action").find(".spinner").remove(),e(".ur-import_notice").remove(),i=!0===t.responseJSON.success?'<div id="message" class="updated inline ur-import_notice"><p><strong>'+t.responseJSON.data.message+"</strong></p></div>":'<div id="message" class="error inline ur-import_notice"><p><strong>'+t.responseJSON.data.message+"</strong></p></div>",e(".ur-export-users-page").prepend(i),e("#jsonfile").val("")}})}),e(".ur_save_form_action_button").on("click",function(){i()}),e(document.body).on("click",".ur-quick-links-content",function(e){e.stopPropagation()}),e(document.body).on("click",".ur-button-quick-links",function(t){t.stopPropagation(),e(".ur-quick-links-content").slideToggle()}),e(document.body).on("click",function(t){e(".ur-quick-links-content").is(":hidden")||e(".ur-quick-links-content").slideToggle()}),e(window).on("keydown",function(e){if((e.ctrlKey||e.metaKey)&&"s"===String.fromCharCode(e.which).toLowerCase())return e.preventDefault(),i(),!1})}),e(document).on("click",".ur-message .ur-message-close",function(){$message=e(this).closest(".ur-message"),a($message)}),e(document).ready(function(){var t=!1;e("#load_flatpickr").click(function(){var i=e('#profile-page form#your-profile input[type="date"]');i.attr("type","text"),i.val(e("#formated_date").val());var r,a=i.attr("id");t||(e(this).attr("data-date-format",i.data("date-format")),e(this).attr("data-mode",i.data("mode")),e(this).attr("data-min-date",i.data("min-date")),e(this).attr("data-max-date",i.data("max-date")),e(this).attr("data-default-date",e("#formated_date").val()),r=e(this).flatpickr({disableMobile:!0,onChange:function(t,i,r){e("#"+a).val(i)}}),t=!0),r&&r.open()})}),e(document).on("click",".ur-toggle-heading",function(){e(this).hasClass("closed")?e(this).removeClass("closed"):e(this).addClass("closed");var t=e(this).find(" ~ .ur-registered-list")[0];e(t).slideToggle(),e(this).siblings(".ur-toggle-content").slideToggle()}),e(document).on("click",".ur-options-list .add",function(t){t.preventDefault();var i=e(this),r=e(".ur-selected-item.ur-item-active"),a=i.parent("li").index(),n=i.parent("li").clone(!0,!0);n.find('input[data-field="options"]').val(""),n.find('input[data-field="default_value"]').removeAttr("checked"),i.parent("li").after(n),r.find(".ur-general-setting-options .ur-options-list > li:nth( "+a+" )").after(n.clone(!0,!0)),i.closest(".ur-general-setting-block").hasClass("ur-general-setting-radio")?o(i):i.closest(".ur-general-setting-block").hasClass("ur-general-setting-checkbox")&&d(i)}),e(document).on("click",".ur-options-list .remove",function(t){t.preventDefault();var i=e(this),r=e(this).closest("ul");$any_siblings=r.find("li"),$wrapper=e(".ur-selected-item.ur-item-active"),this_index=i.parent("li").index(),r.find("li").length>1&&(i.parent("li").remove(),$wrapper.find(".ur-general-setting-options .ur-options-list > li:nth( "+this_index+" )").remove(),$any_siblings.closest(".ur-general-setting-block").hasClass("ur-general-setting-radio")?o($any_siblings):$any_siblings.closest(".ur-general-setting-block").hasClass("ur-general-setting-checkbox")&&d($any_siblings))}),e(document).on("sortstop",".ur-options-list",function(t,i){var r=e(this);!function(t){var i=t.clone(!0,!0),r=e(".ur-selected-item.ur-item-active").find(".ur-general-setting-options .ur-options-list");r.html(""),r.replaceWith(i)}(r),r.closest(".ur-general-setting-block").hasClass("ur-general-setting-radio")?o(r):r.closest(".ur-general-setting-block").hasClass("ur-general-setting-checkbox")&&d(r)})}(jQuery,window.user_registration_admin_data);
assets/js/admin/settings.js CHANGED
@@ -94,4 +94,25 @@
94
  $('#user_registration_integration_setting_recaptcha_site_secret').closest('tr').show();
95
  }
96
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  })(jQuery);
94
  $('#user_registration_integration_setting_recaptcha_site_secret').closest('tr').show();
95
  }
96
  }
97
+ $( '.ur-redirect-to-login-page' ).ready( function() {
98
+
99
+ var $url = $( '.ur-redirect-to-login-page' ),
100
+ $check = $( '#user_registration_login_options_prevent_core_login' ),
101
+ $redirect = $('#user_registration_login_options_login_redirect_url');
102
+
103
+ if ( ! $check.attr( 'checked' ) ) {
104
+ $url.val('').closest( '.single_select_page' ).css( 'display', 'none' );
105
+ } else {
106
+ $redirect.attr( 'required', true );
107
+ }
108
+ });
109
+
110
+ $( '#user_registration_login_options_prevent_core_login' ).change( function() {
111
+ var $url = $( '#user_registration_login_options_prevent_core_login' );
112
+
113
+ $('.single_select_page').toggle();
114
+ $( '#user_registration_login_options_login_redirect_url' ).attr( 'required', function() {
115
+ return ( 'checked' === $url.attr( 'checked' ) ) ? 'required' : false;
116
+ });
117
+ });
118
  })(jQuery);
assets/js/admin/settings.min.js CHANGED
@@ -1 +1 @@
1
- !function(t){function e(e){"v3"==e?(t("#user_registration_integration_setting_recaptcha_site_key_v3").closest("tr").show(),t("#user_registration_integration_setting_recaptcha_site_secret_v3").closest("tr").show(),t("#user_registration_integration_setting_recaptcha_site_key").closest("tr").hide(),t("#user_registration_integration_setting_recaptcha_site_secret").closest("tr").hide()):(t("#user_registration_integration_setting_recaptcha_site_key_v3").closest("tr").hide(),t("#user_registration_integration_setting_recaptcha_site_secret_v3").closest("tr").hide(),t("#user_registration_integration_setting_recaptcha_site_key").closest("tr").show(),t("#user_registration_integration_setting_recaptcha_site_secret").closest("tr").show())}t("select#user_registration_allowed_screens").change(function(){"specific"===t(this).val()?(t(this).closest("tr").next("tr").hide(),t(this).closest("tr").next().next("tr").show()):"all_except"===t(this).val()?(t(this).closest("tr").next("tr").show(),t(this).closest("tr").next().next("tr").hide()):(t(this).closest("tr").next("tr").hide(),t(this).closest("tr").next().next("tr").hide())}).change(),t(".colorpick").iris({change:function(e,i){t(this).parent().find(".colorpickpreview").css({backgroundColor:i.color.toString()})},hide:!0,border:!0}).click(function(){t(".iris-picker").hide(),t(this).closest("td").find(".iris-picker").show()}),t("body").click(function(){t(".iris-picker").hide()}),t(".colorpick").click(function(t){t.stopPropagation()}),t(function(){var e=!1;t("input, textarea, select, checkbox").change(function(){e=!0}),t(".ur-nav-tab-wrapper a").click(function(){window.onbeforeunload=e?function(){return user_registration_settings_params.i18n_nav_warning}:""}),t(".submit input").click(function(){window.onbeforeunload=""})}),t(".user-registration").on("click",".select_all",function(){return t(this).closest("td").find("select option").attr("selected","selected"),t(this).closest("td").find("select").trigger("change"),!1}),t(".user-registration").on("click",".select_none",function(){return t(this).closest("td").find("select option").removeAttr("selected"),t(this).closest("td").find("select").trigger("change"),!1});var i=t(".user-registration").find('input[name="user_registration_integration_setting_recaptcha_version"]:checked').val();i!=undefined&&e(i),t(".user-registration").on("change",'input[name="user_registration_integration_setting_recaptcha_version"]',function(){e(t(this).val())})}(jQuery);
1
+ !function(t){function e(e){"v3"==e?(t("#user_registration_integration_setting_recaptcha_site_key_v3").closest("tr").show(),t("#user_registration_integration_setting_recaptcha_site_secret_v3").closest("tr").show(),t("#user_registration_integration_setting_recaptcha_site_key").closest("tr").hide(),t("#user_registration_integration_setting_recaptcha_site_secret").closest("tr").hide()):(t("#user_registration_integration_setting_recaptcha_site_key_v3").closest("tr").hide(),t("#user_registration_integration_setting_recaptcha_site_secret_v3").closest("tr").hide(),t("#user_registration_integration_setting_recaptcha_site_key").closest("tr").show(),t("#user_registration_integration_setting_recaptcha_site_secret").closest("tr").show())}t("select#user_registration_allowed_screens").change(function(){"specific"===t(this).val()?(t(this).closest("tr").next("tr").hide(),t(this).closest("tr").next().next("tr").show()):"all_except"===t(this).val()?(t(this).closest("tr").next("tr").show(),t(this).closest("tr").next().next("tr").hide()):(t(this).closest("tr").next("tr").hide(),t(this).closest("tr").next().next("tr").hide())}).change(),t(".colorpick").iris({change:function(e,i){t(this).parent().find(".colorpickpreview").css({backgroundColor:i.color.toString()})},hide:!0,border:!0}).click(function(){t(".iris-picker").hide(),t(this).closest("td").find(".iris-picker").show()}),t("body").click(function(){t(".iris-picker").hide()}),t(".colorpick").click(function(t){t.stopPropagation()}),t(function(){var e=!1;t("input, textarea, select, checkbox").change(function(){e=!0}),t(".ur-nav-tab-wrapper a").click(function(){window.onbeforeunload=e?function(){return user_registration_settings_params.i18n_nav_warning}:""}),t(".submit input").click(function(){window.onbeforeunload=""})}),t(".user-registration").on("click",".select_all",function(){return t(this).closest("td").find("select option").attr("selected","selected"),t(this).closest("td").find("select").trigger("change"),!1}),t(".user-registration").on("click",".select_none",function(){return t(this).closest("td").find("select option").removeAttr("selected"),t(this).closest("td").find("select").trigger("change"),!1});var i=t(".user-registration").find('input[name="user_registration_integration_setting_recaptcha_version"]:checked').val();i!=undefined&&e(i),t(".user-registration").on("change",'input[name="user_registration_integration_setting_recaptcha_version"]',function(){e(t(this).val())}),t(".ur-redirect-to-login-page").ready(function(){var e=t(".ur-redirect-to-login-page"),i=t("#user_registration_login_options_prevent_core_login"),r=t("#user_registration_login_options_login_redirect_url");i.attr("checked")?r.attr("required",!0):e.val("").closest(".single_select_page").css("display","none")}),t("#user_registration_login_options_prevent_core_login").change(function(){var e=t("#user_registration_login_options_prevent_core_login");t(".single_select_page").toggle(),t("#user_registration_login_options_login_redirect_url").attr("required",function(){return"checked"===e.attr("checked")&&"required"})})}(jQuery);
assets/js/frontend/password-strength-meter.js CHANGED
@@ -50,7 +50,7 @@ jQuery(function ( $ ) {
50
  } else if ( 0 === meter.length ) {
51
  var html = '<div class="user-registration-password-strength" aria-live="polite" data-min-strength="' + minimum_password_strength + '"></div>';
52
  password_field.closest( '.field-user_pass' ).after( html );
53
- $( '#password_1' ).after( html );
54
  $(document.body).trigger('ur-password-strength-added');
55
  }
56
  },
@@ -83,6 +83,8 @@ jQuery(function ( $ ) {
83
 
84
  if( strength >= minimum_password_strength ) {
85
  submit_button.removeAttr('disabled');
 
 
86
  }
87
 
88
  switch ( strength ) {
50
  } else if ( 0 === meter.length ) {
51
  var html = '<div class="user-registration-password-strength" aria-live="polite" data-min-strength="' + minimum_password_strength + '"></div>';
52
  password_field.closest( '.field-user_pass' ).after( html );
53
+ $( '#password_1' ).closest('.password-input-group').after( html );
54
  $(document.body).trigger('ur-password-strength-added');
55
  }
56
  },
83
 
84
  if( strength >= minimum_password_strength ) {
85
  submit_button.removeAttr('disabled');
86
+ } else {
87
+ submit_button.attr('disabled', 'disabled');
88
  }
89
 
90
  switch ( strength ) {
assets/js/frontend/password-strength-meter.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(s){var t=ur_password_strength_meter_params.pwsL10n,r={init:function(){var t=this;s(document.body).on("keyup change",'input[name="user_pass"], .user-registration-ResetPassword input[name="password_1"], .user-registration-EditAccountForm input[name="password_1"], input[name="password_1"].user-registration-Input--password',function(){"no"!==s(this).closest("form").attr("data-enable-strength-password")&&t.strengthMeter(s(this))})},strengthMeter:function(t){var e=t.closest("form"),a=s(t,e);r.includeMeter(e,a),r.checkPasswordStrength(e,a)},includeMeter:function(t,r){var e=t.attr("data-minimum-password-strength"),a=t.find(".user-registration-password-strength"),n=t.find(".password-input-group");if(""===r.val())a.remove(),s(document.body).trigger("ur-password-strength-removed");else if(0===a.length){var i='<div class="user-registration-password-strength" aria-live="polite" data-min-strength="'+e+'"></div>';n.closest(".field-user_pass").after(i),s("#password_1").after(i),s(document.body).trigger("ur-password-strength-added")}},checkPasswordStrength:function(s,r){var e=s.find(".user-registration-password-strength"),a=s.find(".user-registration-password-hint"),n='<small class="user-registration-password-hint">'+ur_password_strength_meter_params.i18n_password_hint+"</small>",i=s.find('input[type="submit"].user-registration-Button'),o=s.attr("data-minimum-password-strength"),d=wp.passwordStrength.userInputBlacklist();d.push(s.find('input[data-id="user_email"]').val()),d.push(s.find('input[data-id="user_login"]').val());var u=wp.passwordStrength.meter(r.val(),d);switch(e.removeClass("short bad good strong"),a.remove(),s.find(".user-registration-password-strength").attr("data-current-strength",u),u>=o&&i.removeAttr("disabled"),u){case 0:e.addClass("short").html(t.shortpw),e.after(n);break;case 1:e.addClass("bad").html(t.bad),e.after(n);break;case 2:e.addClass("good").html(t.good),e.after(n);break;case 3:case 4:e.addClass("strong").html(t.strong);break;case 5:e.addClass("short").html(t.mismatch)}return u}};r.init()});
1
+ jQuery(function(s){var t=ur_password_strength_meter_params.pwsL10n,r={init:function(){var t=this;s(document.body).on("keyup change",'input[name="user_pass"], .user-registration-ResetPassword input[name="password_1"], .user-registration-EditAccountForm input[name="password_1"], input[name="password_1"].user-registration-Input--password',function(){"no"!==s(this).closest("form").attr("data-enable-strength-password")&&t.strengthMeter(s(this))})},strengthMeter:function(t){var e=t.closest("form"),a=s(t,e);r.includeMeter(e,a),r.checkPasswordStrength(e,a)},includeMeter:function(t,r){var e=t.attr("data-minimum-password-strength"),a=t.find(".user-registration-password-strength"),n=t.find(".password-input-group");if(""===r.val())a.remove(),s(document.body).trigger("ur-password-strength-removed");else if(0===a.length){var i='<div class="user-registration-password-strength" aria-live="polite" data-min-strength="'+e+'"></div>';n.closest(".field-user_pass").after(i),s("#password_1").closest(".password-input-group").after(i),s(document.body).trigger("ur-password-strength-added")}},checkPasswordStrength:function(s,r){var e=s.find(".user-registration-password-strength"),a=s.find(".user-registration-password-hint"),n='<small class="user-registration-password-hint">'+ur_password_strength_meter_params.i18n_password_hint+"</small>",i=s.find('input[type="submit"].user-registration-Button'),d=s.attr("data-minimum-password-strength"),o=wp.passwordStrength.userInputBlacklist();o.push(s.find('input[data-id="user_email"]').val()),o.push(s.find('input[data-id="user_login"]').val());var u=wp.passwordStrength.meter(r.val(),o);switch(e.removeClass("short bad good strong"),a.remove(),s.find(".user-registration-password-strength").attr("data-current-strength",u),u>=d?i.removeAttr("disabled"):i.attr("disabled","disabled"),u){case 0:e.addClass("short").html(t.shortpw),e.after(n);break;case 1:e.addClass("bad").html(t.bad),e.after(n);break;case 2:e.addClass("good").html(t.good),e.after(n);break;case 3:case 4:e.addClass("strong").html(t.strong);break;case 5:e.addClass("short").html(t.mismatch)}return u}};r.init()});
assets/js/frontend/user-registration.js CHANGED
@@ -50,11 +50,11 @@
50
  * For real time email matching
51
  */
52
  rules.user_confirm_email = {
53
- equalTo: '#user_email',
54
  };
55
  messages.user_confirm_email = user_registration_params.message_confirm_email_fields;
56
- }
57
-
58
  if ( $this.hasClass('edit-password') ) {
59
  /**
60
  * Password matching for `Change Password` form
@@ -68,7 +68,7 @@
68
  * Password matching for registration form
69
  */
70
  rules.user_confirm_password = {
71
- equalTo: '#user_pass',
72
  };
73
  messages.user_confirm_password = user_registration_params.message_confirm_password_fields;
74
  }
@@ -80,7 +80,7 @@
80
  messages: messages,
81
  errorPlacement: function (error, element) {
82
  if ( element.is( '#password_2' ) ) {
83
- element.parent().append(error);
84
  } else if ( 'radio' === element.attr('type') || 'checkbox' === element.attr('type') || 'password' === element.attr('type') ) {
85
  element.parent().parent().parent().append(error);
86
  } else if ( element.is('select') && element.attr('class').match(/date-month|date-day|date-year/) ) {
@@ -119,7 +119,7 @@
119
  $parent.removeClass('user-registration-has-error');
120
  },
121
  submitHandler: function (form) {
122
-
123
  // Return `true` for `Change Password` form to allow submission
124
  if ( $(form).hasClass('edit-password') ) {
125
  return true;
@@ -633,17 +633,23 @@
633
  var current_task = ( $(this).hasClass( 'dashicons-hidden' ) ) ? 'show' : 'hide';
634
  var $password_field = $(this).closest( '.user-registration-form-row' ).find( 'input[name="password"]' );
635
 
 
636
  if( $password_field.length === 0 ) {
637
  $password_field = $(this).closest( '.field-user_pass' ).find( 'input[name="user_pass"]' );
638
  }
639
  if( $password_field.length === 0 ) {
640
  $password_field = $(this).closest( '.field-user_confirm_password' ).find( 'input[name="user_confirm_password"]' );
641
  }
 
 
 
 
 
642
  if( $password_field.length === 0 ) {
643
- $password_field = $(this).closest( '.field-user_pass' ).find( 'input[name="user_registration_user_pass"]' );
644
  }
645
  if( $password_field.length === 0 ) {
646
- $password_field = $(this).closest( '.field-user_confirm_password' ).find( 'input[name="user_registration_user_confirm_password"]' );
647
  }
648
 
649
  if( $password_field.length > 0 ) {
50
  * For real time email matching
51
  */
52
  rules.user_confirm_email = {
53
+ equalTo: '.user-registration #user_email',
54
  };
55
  messages.user_confirm_email = user_registration_params.message_confirm_email_fields;
56
+ }
57
+
58
  if ( $this.hasClass('edit-password') ) {
59
  /**
60
  * Password matching for `Change Password` form
68
  * Password matching for registration form
69
  */
70
  rules.user_confirm_password = {
71
+ equalTo: '.user-registration #user_pass',
72
  };
73
  messages.user_confirm_password = user_registration_params.message_confirm_password_fields;
74
  }
80
  messages: messages,
81
  errorPlacement: function (error, element) {
82
  if ( element.is( '#password_2' ) ) {
83
+ element.parent().after(error);
84
  } else if ( 'radio' === element.attr('type') || 'checkbox' === element.attr('type') || 'password' === element.attr('type') ) {
85
  element.parent().parent().parent().append(error);
86
  } else if ( element.is('select') && element.attr('class').match(/date-month|date-day|date-year/) ) {
119
  $parent.removeClass('user-registration-has-error');
120
  },
121
  submitHandler: function (form) {
122
+
123
  // Return `true` for `Change Password` form to allow submission
124
  if ( $(form).hasClass('edit-password') ) {
125
  return true;
633
  var current_task = ( $(this).hasClass( 'dashicons-hidden' ) ) ? 'show' : 'hide';
634
  var $password_field = $(this).closest( '.user-registration-form-row' ).find( 'input[name="password"]' );
635
 
636
+ // Hide/show password for user registration form
637
  if( $password_field.length === 0 ) {
638
  $password_field = $(this).closest( '.field-user_pass' ).find( 'input[name="user_pass"]' );
639
  }
640
  if( $password_field.length === 0 ) {
641
  $password_field = $(this).closest( '.field-user_confirm_password' ).find( 'input[name="user_confirm_password"]' );
642
  }
643
+
644
+ // Hide/show password for edit password form
645
+ if( $password_field.length === 0 ) {
646
+ $password_field = $(this).closest( '.user-registration-form-row' ).find( 'input[name="password_current"]' );
647
+ }
648
  if( $password_field.length === 0 ) {
649
+ $password_field = $(this).closest( '.user-registration-form-row' ).find( 'input[name="password_1"]' );
650
  }
651
  if( $password_field.length === 0 ) {
652
+ $password_field = $(this).closest( '.user-registration-form-row' ).find( 'input[name="password_2"]' );
653
  }
654
 
655
  if( $password_field.length > 0 ) {
assets/js/frontend/user-registration.min.js CHANGED
@@ -1 +1 @@
1
- function request_recaptcha_token(){0!==jQuery(".ur-frontend-form").find("form.register #ur-recaptcha-node #node_recaptcha_register.g-recaptcha-v3").length&&grecaptcha.ready(function(){grecaptcha.execute(ur_google_recaptcha_code.site_key,{action:"register"}).then(function(e){jQuery("form.register").find("#g-recaptcha-response").text(e)})});0!==jQuery(".ur-frontend-form").find("form.login .ur-form-row .ur-form-grid #ur-recaptcha-node #node_recaptcha_login.g-recaptcha-v3").length&&grecaptcha.ready(function(){grecaptcha.execute(ur_google_recaptcha_code.site_key,{action:"login"}).then(function(e){jQuery("form.login").find("#g-recaptcha-response").text(e)})})}!function(e){({$user_registration:e(".ur-frontend-form form.register, .ur-frontend-form form.edit-password"),init:function(){this.load_validation(),this.init_inputMask(),this.init_tiptip(),this.$user_registration.on("input validate change",".input-text, select, input:checkbox input:radio",this.validate_field)},init_inputMask:function(){"undefined"!=typeof e.fn.inputmask&&e(".ur-masked-input").inputmask()},init_tiptip:function(){if("undefined"!=typeof tipTip){e(".user-registration-help-tip").tipTip({attribute:"title",fadeIn:50,fadeOut:50,delay:200})}},load_validation:function(){if("undefined"==typeof e.fn.validate)return!1;e.validator.methods.email=function(e,r){var a=new RegExp(/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i);return this.optional(r)||a.test(e)},this.$user_registration.each(function(){var r=e(this),a={},t={};r.find("#user_confirm_email").length&&(a.user_confirm_email={equalTo:"#user_email"},t.user_confirm_email=user_registration_params.message_confirm_email_fields),r.hasClass("edit-password")?(a.password_2={equalTo:"#password_1"},t.password_2=user_registration_params.message_confirm_password_fields):r.hasClass("register")&&r.find("#user_confirm_password").length&&(a.user_confirm_password={equalTo:"#user_pass"},t.user_confirm_password=user_registration_params.message_confirm_password_fields),r.validate({errorClass:"user-registration-error",validClass:"user-registration-valid",rules:a,messages:t,errorPlacement:function(e,r){if(r.is("#password_2"))r.parent().append(e);else if("radio"===r.attr("type")||"checkbox"===r.attr("type")||"password"===r.attr("type"))r.parent().parent().parent().append(e);else if(r.is("select")&&r.attr("class").match(/date-month|date-day|date-year/))0===r.parent().find("label.user-registration-error:visible").length&&r.parent().find("select:last").after(e);else if(r.hasClass("ur-smart-phone-field")){var a=r.closest("p.form-row");a.find("#"+r.data("id")+"-error").remove(),a.append(e)}else r.hasClass("urfu-file-input")?e.insertAfter(r.parent().parent()):e.insertAfter(r)},highlight:function(r,a,t){var i=e(r);i.closest(".form-row"),i.attr("name")},unhighlight:function(r,a,t){var i=e(r),s=i.closest(".form-row"),n=i.attr("name");"radio"===i.attr("type")||"checkbox"===i.attr("type")?s.find("input[name='"+n+"']").addClass(t).removeClass(a):i.addClass(t).removeClass(a),s.removeClass("user-registration-has-error")},submitHandler:function(r){return!!e(r).hasClass("edit-password")}})})},validate_field:function(r){e.extend(e.validator.messages,{required:user_registration_params.message_required_fields,url:user_registration_params.message_url_fields,email:user_registration_params.message_email_fields,number:user_registration_params.message_number_fields,confirmpassword:user_registration_params.message_confirm_password_fields});var a=e(this),t=a.closest(".form-row"),i=!0,s=t.is(".validate-required"),n=t.is(".validate-email"),o=r.type;if("input"===o&&t.removeClass("user-registration-invalid user-registration-invalid-required-field user-registration-invalid-email user-registration-validated"),"validate"===o||"change"===o){if(s&&("checkbox"!==a.attr("type")||a.is(":checked")?""===a.val()&&(t.removeClass("user-registration-validated").addClass("user-registration-invalid user-registration-invalid-required-field"),i=!1):(t.removeClass("user-registration-validated").addClass("user-registration-invalid user-registration-invalid-required-field"),i=!1)),n&&a.val()){new RegExp(/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i).test(a.val())||(t.removeClass("user-registration-validated").addClass("user-registration-invalid user-registration-invalid-email"),i=!1)}i&&t.removeClass("user-registration-invalid user-registration-invalid-required-field user-registration-invalid-email").addClass("user-registration-validated")}}}).init();var r=user_registration_params.ursL10n;e.fn.ur_form_submission=function(){return this.each(function(){var a=e(this),t=[],i=user_registration_params.form_required_fields,s={init:function(){},get_form_data:function(){var r=this,t=[],i=a.closest(".ur-frontend-form").find(".ur-form-grid").find(".ur-frontend-field"),s=new Array;e.each(i,function(){var i=e(this).attr("name");if(a.closest(".ur-frontend-form").find(".ur-form-grid").find('.ur-frontend-field[name="'+i+'"]').length<2){var n=r.get_fieldwise_data(e(this));t.push(n)}else e.inArray(i,s)<0&&s.push(i)});for(var n=0;n<s.length;n++){var o=a.closest(".ur-frontend-form").find(".ur-form-grid").find('.ur-frontend-field[name="'+s[n]+'"]'),u=(o.get(0).tagName.toLowerCase(),"undefined"!==o.eq(0).attr("type")?o.eq(0).attr("type"):"null"),d=new Array;if(e.each(o,function(){var r=e(this),a="";switch(r.get(0).tagName.toLowerCase()){case"input":switch(u){case"checkbox":case"radio":a=r.prop("checked")?r.val():"";break;default:a=r.val()}break;case"select":case"textarea":a=r.val()}""!==a&&d.push(a)}),"checkbox"==u)var l=JSON.stringify(d);else if("radio"==u)l=d[0];else l=o.val();var f=s[n];f=f.replace("[]","");var p={value:l,field_type:u,label:o.eq(0).attr("data-label"),field_name:f};t.push(p)}return e(document).trigger("user_registration_frontend_form_data_filter",[t]),t},get_fieldwise_data:function(r){var a={},s=r.get(0).tagName.toLowerCase(),n="undefined"!==r.attr("type")?r.attr("type"):"null",o=r.get(0).className.split(" ")[0];switch(a.value="",s){case"input":switch(n){case"checkbox":case"radio":a.value=r.prop("checked")?r.val():"";break;default:a.value=r.val()}break;case"select":a.value=r.val();break;case"textarea":switch(o){case"wysiwyg":tinyMCE.triggerSave(),a.value=r.val();break;default:a.value=r.val()}}return e(document).trigger("user_registration_frontend_form_data_render",[r,a]),a.field_type="undefined"!==r.eq(0).attr("type")?r.eq(0).attr("type"):"null",r.attr("data-label")!==undefined?a.label=r.attr("data-label"):r.prev().length&&"label"===r.prev().get(0).tagName.toLowerCase()?a.label=r.prev().text():a.label=a.field_type,r.attr("name")!==undefined&&""!==r.attr("name")?(a.field_name=r.attr("name"),a.field_name=a.field_name.replace("[]","")):a.field_name="",e.inArray(a.field_name,e.trim(i))>=0&&t.push(a.field_name),a},show_message:function(r,a,t){t.find(".ur-message").remove();var i=e('<div class="ur-message user-registration-'+a+'" id="ur-submit-message-node"/>');i.append(r),t.append(i)}},n={init:function(){this.form_submit_event()},form_submit_event:function(){e("form.register").on("submit",function(a){var t=e(this);if(e.extend(e.validator.messages,{required:user_registration_params.message_required_fields,url:user_registration_params.message_url_fields,email:user_registration_params.message_email_fields,number:user_registration_params.message_number_fields,confirmpassword:user_registration_params.message_confirm_password_fields}),t.find(".user-registration-password-strength").length>0){var i=t.find(".user-registration-password-strength").attr("data-current-strength"),n=t.find(".user-registration-password-strength").attr("data-min-strength");if(parseInt(i,0)<parseInt(n,0)){if(""!=t.find("#user_pass").val()){t.find("#user_pass_error").remove();var o='<label id="user_pass_error" class="user-registration-error" for="user_pass">'+r.password_strength_error+".</label>";t.find(".user-registration-password-hint").after(o),t.find("#user_pass").attr("aria-invalid",!0),t.find("#user_pass").focus()}return!1}}var u=e(".ur-smart-phone-field");if("true"===u.attr("aria-invalid")){(l=u.closest("p.form-row")).find("#"+u.data("id")+"-error").remove();var d='<label id="'+u.data("id")+'-error" class="user-registration-error" for="'+u.data("id")+'">'+user_registration_params.message_validate_phone_number+"</label>";return l.append(d),l.find("#"+u.data("id")).attr("aria-invalid",!0),!0}if(1===e(".uraf-profile-picture-upload").find(".user-registration-error").length){var l,f=e(".uraf-profile-picture-upload").find(".uraf-profile-picture-input");(l=e(".uraf-profile-picture-upload")).find("#"+f.attr("name")+"-error").remove(),l.find(".uraf-profile-picture-file-error").remove();var p='<label id="'+f.attr("name")+'-error" class="user-registration-error" for="'+f.attr("name")+'">'+user_registration_params.message_required_fields+"</label>";l.find("button.wp_uraf_profile_picture_upload").after(p)}if(t.valid()){a.preventDefault(),t.find(".ur-submit-button").prop("disabled",!0);var c,_=0,m="0",g=t.find("#g-recaptcha-response").val();try{c=JSON.stringify(s.get_form_data())}catch(h){c=""}1===e(this).closest("form").find('input[name="ur-user-form-id"]').length&&(_=e(this).closest("form").find('input[name="ur-user-form-id"]').val()),1===e(this).closest("form").find('input[name="ur_frontend_form_nonce"]').length&&(m=e(this).closest("form").find('input[name="ur_frontend_form_nonce"]').val());var F={action:"user_registration_user_form_submit",security:user_registration_params.user_registration_form_data_save,form_data:c,captchaResponse:g,form_id:_,ur_frontend_form_nonce:m};if(e(document).trigger("user_registration_frontend_before_form_submit",[F,t]),"undefined"!=typeof ur_google_recaptcha_code&&"1"===ur_google_recaptcha_code.is_captcha_enable){if(0===(g=t.find("#g-recaptcha-response").val()).length)return void s.show_message("<p>"+r.captcha_error+"</p>","error",t);"v3"==ur_google_recaptcha_code.version?request_recaptcha_token():grecaptcha.reset()}t.find(".ur-submit-button").find("span").addClass("ur-front-spinner"),e.ajax({url:user_registration_params.ajax_url,data:F,type:"POST",async:!0,complete:function(a){t.find(".ur-submit-button").find("span").removeClass("ur-front-spinner");var i=t.find('input[name="ur-redirect-url"]').val(),n=e('<ul class=""/>'),o="error";try{var u=e.parseJSON(a.responseText);"undefined"!=typeof u.success&&!0===u.success&&"undefined"!=typeof u.data.paypal_redirect&&(window.location=u.data.paypal_redirect),"undefined"!=typeof u.success&&!0===u.success&&(o="message"),"message"===o?(e(".user-registration-password-hint").remove(),e(".user-registration-password-strength").remove(),"admin_approval"==u.data.form_login_option?n.append("<li>"+r.user_under_approval+"</li>"):"email_confirmation"==u.data.form_login_option?n.append("<li>"+r.user_email_pending+"</li>"):"payment"==u.data.form_login_option?n.append("<li>"+u.data.message+"</li>"):n.append("<li>"+r.user_successfully_saved+"</li>"),t[0].reset(),jQuery("#billing_country").trigger("change"),jQuery("#shipping_country").trigger("change"),void 0!==i&&""!==i?window.setTimeout(function(){window.location=i},1e3):"undefined"!=typeof u.data.auto_login&&u.data.auto_login&&location.reload()):"error"===o&&("object"==typeof u.data.message?e.each(u.data.message,function(e,r){n.append("<li>"+r+"</li>")}):n.append("<li>"+u.data.message+"</li>"))}catch(d){n.append("<li>"+d.message+"</li>")}s.show_message(n,o,t),e(document).trigger("user_registration_frontend_after_ajax_complete",[a.responseText,o,t]),t.find(".ur-submit-button").prop("disabled",!1)}})}})}};s.init(),n.init()})},e(function(){e("form.register").ur_form_submission();var a=!1,t=e("#load_flatpickr").attr("data-id"),i=e(".ur-frontend-form #"+t);i.attr("type","text"),i.val(e("#formated_date").val()),e("#load_flatpickr").click(function(){var r;a||(e(this).attr("data-date-format",i.data("date-format")),e(this).attr("data-mode",i.data("mode")),e(this).attr("data-min-date",i.data("min-date")),e(this).attr("data-max-date",i.data("max-date")),e(this).attr("data-default-date",e("#formated_date").val()),r=e(this).flatpickr({disableMobile:!0,onChange:function(r,a,i){e("#"+t).val(a)}}),a=!0),r&&r.open()}),e("form.register, form.edit-password").on("focusout","#user_pass, #password_1",function(){$this=e(this);var a=e(this).attr("name"),t=e(this).data("id"),i=$this.closest("form").attr("data-enable-strength-password");if("yes"===i||"1"===i){var s=$this.closest("form"),n=s.attr("data-minimum-password-strength"),o=wp.passwordStrength.userInputBlacklist();o.push(s.find('input[data-id="user_email"]').val()),o.push(s.find('input[data-id="user_login"]').val());if(wp.passwordStrength.meter($this.val(),o)<n&&""!==$this.val()){s.find("#"+t+"_error").remove();var u='<label id="'+t+'_error" class="user-registration-error" for="'+a+'">'+r.password_strength_error+".</label>";s.find(".user-registration-password-hint").after(u)}}})}),e(function(){request_recaptcha_token()}),e(function(){e(".user-registration-EditProfileForm.edit-profile .field-country").length>0&&e(".field-country").each(function(){var r=e(this).find(".ur-data-holder").data("option-value"),a=e(this).find(".ur-data-holder").data("option-html"),t=e(this).find("select");r&&a&&(0===t.find('option[value="'+r+'"]').length&&t.append("<option class='ur-remove' selected='selected' value='"+r+"'>"+a+"</option>"),e(this).on("click",function(){e(this).find(".ur-remove").remove()}))})}),e(document).on("click",".password_preview",function(a){a.preventDefault();var t=e(this).hasClass("dashicons-hidden")?"show":"hide",i=e(this).closest(".user-registration-form-row").find('input[name="password"]');if(0===i.length&&(i=e(this).closest(".field-user_pass").find('input[name="user_pass"]')),0===i.length&&(i=e(this).closest(".field-user_confirm_password").find('input[name="user_confirm_password"]')),0===i.length&&(i=e(this).closest(".field-user_pass").find('input[name="user_registration_user_pass"]')),0===i.length&&(i=e(this).closest(".field-user_confirm_password").find('input[name="user_registration_user_confirm_password"]')),i.length>0)switch(t){case"show":i.attr("type","text"),e(this).removeClass("dashicons-hidden").addClass("dashicons-visibility"),e(this).attr("title",r.hide_password_title);break;case"hide":i.attr("type","password"),e(this).removeClass("dashicons-visibility").addClass("dashicons-hidden"),e(this).attr("title",r.show_password_title)}})}(jQuery);var google_recaptcha_user_registration,onloadURCallback=function(){0!==jQuery(".ur-frontend-form").find("form.register #ur-recaptcha-node #node_recaptcha_register").length&&(google_recaptcha_user_registration=grecaptcha.render("node_recaptcha_register",{sitekey:ur_google_recaptcha_code.site_key,theme:"light",style:"transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;"}));0!==jQuery(".ur-frontend-form").find("form.login .ur-form-row .ur-form-grid #ur-recaptcha-node #node_recaptcha_login").length&&grecaptcha.render("node_recaptcha_login",{sitekey:ur_google_recaptcha_code.site_key,theme:"light",style:"transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;"})};
1
+ function request_recaptcha_token(){0!==jQuery(".ur-frontend-form").find("form.register #ur-recaptcha-node #node_recaptcha_register.g-recaptcha-v3").length&&grecaptcha.ready(function(){grecaptcha.execute(ur_google_recaptcha_code.site_key,{action:"register"}).then(function(e){jQuery("form.register").find("#g-recaptcha-response").text(e)})});0!==jQuery(".ur-frontend-form").find("form.login .ur-form-row .ur-form-grid #ur-recaptcha-node #node_recaptcha_login.g-recaptcha-v3").length&&grecaptcha.ready(function(){grecaptcha.execute(ur_google_recaptcha_code.site_key,{action:"login"}).then(function(e){jQuery("form.login").find("#g-recaptcha-response").text(e)})})}!function(e){({$user_registration:e(".ur-frontend-form form.register, .ur-frontend-form form.edit-password"),init:function(){this.load_validation(),this.init_inputMask(),this.init_tiptip(),this.$user_registration.on("input validate change",".input-text, select, input:checkbox input:radio",this.validate_field)},init_inputMask:function(){"undefined"!=typeof e.fn.inputmask&&e(".ur-masked-input").inputmask()},init_tiptip:function(){if("undefined"!=typeof tipTip){e(".user-registration-help-tip").tipTip({attribute:"title",fadeIn:50,fadeOut:50,delay:200})}},load_validation:function(){if("undefined"==typeof e.fn.validate)return!1;e.validator.methods.email=function(e,r){var a=new RegExp(/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i);return this.optional(r)||a.test(e)},this.$user_registration.each(function(){var r=e(this),a={},t={};r.find("#user_confirm_email").length&&(a.user_confirm_email={equalTo:".user-registration #user_email"},t.user_confirm_email=user_registration_params.message_confirm_email_fields),r.hasClass("edit-password")?(a.password_2={equalTo:"#password_1"},t.password_2=user_registration_params.message_confirm_password_fields):r.hasClass("register")&&r.find("#user_confirm_password").length&&(a.user_confirm_password={equalTo:".user-registration #user_pass"},t.user_confirm_password=user_registration_params.message_confirm_password_fields),r.validate({errorClass:"user-registration-error",validClass:"user-registration-valid",rules:a,messages:t,errorPlacement:function(e,r){if(r.is("#password_2"))r.parent().after(e);else if("radio"===r.attr("type")||"checkbox"===r.attr("type")||"password"===r.attr("type"))r.parent().parent().parent().append(e);else if(r.is("select")&&r.attr("class").match(/date-month|date-day|date-year/))0===r.parent().find("label.user-registration-error:visible").length&&r.parent().find("select:last").after(e);else if(r.hasClass("ur-smart-phone-field")){var a=r.closest("p.form-row");a.find("#"+r.data("id")+"-error").remove(),a.append(e)}else r.hasClass("urfu-file-input")?e.insertAfter(r.parent().parent()):e.insertAfter(r)},highlight:function(r,a,t){var i=e(r);i.closest(".form-row"),i.attr("name")},unhighlight:function(r,a,t){var i=e(r),s=i.closest(".form-row"),n=i.attr("name");"radio"===i.attr("type")||"checkbox"===i.attr("type")?s.find("input[name='"+n+"']").addClass(t).removeClass(a):i.addClass(t).removeClass(a),s.removeClass("user-registration-has-error")},submitHandler:function(r){return!!e(r).hasClass("edit-password")}})})},validate_field:function(r){e.extend(e.validator.messages,{required:user_registration_params.message_required_fields,url:user_registration_params.message_url_fields,email:user_registration_params.message_email_fields,number:user_registration_params.message_number_fields,confirmpassword:user_registration_params.message_confirm_password_fields});var a=e(this),t=a.closest(".form-row"),i=!0,s=t.is(".validate-required"),n=t.is(".validate-email"),o=r.type;if("input"===o&&t.removeClass("user-registration-invalid user-registration-invalid-required-field user-registration-invalid-email user-registration-validated"),"validate"===o||"change"===o){if(s&&("checkbox"!==a.attr("type")||a.is(":checked")?""===a.val()&&(t.removeClass("user-registration-validated").addClass("user-registration-invalid user-registration-invalid-required-field"),i=!1):(t.removeClass("user-registration-validated").addClass("user-registration-invalid user-registration-invalid-required-field"),i=!1)),n&&a.val()){new RegExp(/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i).test(a.val())||(t.removeClass("user-registration-validated").addClass("user-registration-invalid user-registration-invalid-email"),i=!1)}i&&t.removeClass("user-registration-invalid user-registration-invalid-required-field user-registration-invalid-email").addClass("user-registration-validated")}}}).init();var r=user_registration_params.ursL10n;e.fn.ur_form_submission=function(){return this.each(function(){var a=e(this),t=[],i=user_registration_params.form_required_fields,s={init:function(){},get_form_data:function(){var r=this,t=[],i=a.closest(".ur-frontend-form").find(".ur-form-grid").find(".ur-frontend-field"),s=new Array;e.each(i,function(){var i=e(this).attr("name");if(a.closest(".ur-frontend-form").find(".ur-form-grid").find('.ur-frontend-field[name="'+i+'"]').length<2){var n=r.get_fieldwise_data(e(this));t.push(n)}else e.inArray(i,s)<0&&s.push(i)});for(var n=0;n<s.length;n++){var o=a.closest(".ur-frontend-form").find(".ur-form-grid").find('.ur-frontend-field[name="'+s[n]+'"]'),u=(o.get(0).tagName.toLowerCase(),"undefined"!==o.eq(0).attr("type")?o.eq(0).attr("type"):"null"),d=new Array;if(e.each(o,function(){var r=e(this),a="";switch(r.get(0).tagName.toLowerCase()){case"input":switch(u){case"checkbox":case"radio":a=r.prop("checked")?r.val():"";break;default:a=r.val()}break;case"select":case"textarea":a=r.val()}""!==a&&d.push(a)}),"checkbox"==u)var l=JSON.stringify(d);else if("radio"==u)l=d[0];else l=o.val();var f=s[n];f=f.replace("[]","");var c={value:l,field_type:u,label:o.eq(0).attr("data-label"),field_name:f};t.push(c)}return e(document).trigger("user_registration_frontend_form_data_filter",[t]),t},get_fieldwise_data:function(r){var a={},s=r.get(0).tagName.toLowerCase(),n="undefined"!==r.attr("type")?r.attr("type"):"null",o=r.get(0).className.split(" ")[0];switch(a.value="",s){case"input":switch(n){case"checkbox":case"radio":a.value=r.prop("checked")?r.val():"";break;default:a.value=r.val()}break;case"select":a.value=r.val();break;case"textarea":switch(o){case"wysiwyg":tinyMCE.triggerSave(),a.value=r.val();break;default:a.value=r.val()}}return e(document).trigger("user_registration_frontend_form_data_render",[r,a]),a.field_type="undefined"!==r.eq(0).attr("type")?r.eq(0).attr("type"):"null",r.attr("data-label")!==undefined?a.label=r.attr("data-label"):r.prev().length&&"label"===r.prev().get(0).tagName.toLowerCase()?a.label=r.prev().text():a.label=a.field_type,r.attr("name")!==undefined&&""!==r.attr("name")?(a.field_name=r.attr("name"),a.field_name=a.field_name.replace("[]","")):a.field_name="",e.inArray(a.field_name,e.trim(i))>=0&&t.push(a.field_name),a},show_message:function(r,a,t){t.find(".ur-message").remove();var i=e('<div class="ur-message user-registration-'+a+'" id="ur-submit-message-node"/>');i.append(r),t.append(i)}},n={init:function(){this.form_submit_event()},form_submit_event:function(){e("form.register").on("submit",function(a){var t=e(this);if(e.extend(e.validator.messages,{required:user_registration_params.message_required_fields,url:user_registration_params.message_url_fields,email:user_registration_params.message_email_fields,number:user_registration_params.message_number_fields,confirmpassword:user_registration_params.message_confirm_password_fields}),t.find(".user-registration-password-strength").length>0){var i=t.find(".user-registration-password-strength").attr("data-current-strength"),n=t.find(".user-registration-password-strength").attr("data-min-strength");if(parseInt(i,0)<parseInt(n,0)){if(""!=t.find("#user_pass").val()){t.find("#user_pass_error").remove();var o='<label id="user_pass_error" class="user-registration-error" for="user_pass">'+r.password_strength_error+".</label>";t.find(".user-registration-password-hint").after(o),t.find("#user_pass").attr("aria-invalid",!0),t.find("#user_pass").focus()}return!1}}var u=e(".ur-smart-phone-field");if("true"===u.attr("aria-invalid")){(l=u.closest("p.form-row")).find("#"+u.data("id")+"-error").remove();var d='<label id="'+u.data("id")+'-error" class="user-registration-error" for="'+u.data("id")+'">'+user_registration_params.message_validate_phone_number+"</label>";return l.append(d),l.find("#"+u.data("id")).attr("aria-invalid",!0),!0}if(1===e(".uraf-profile-picture-upload").find(".user-registration-error").length){var l,f=e(".uraf-profile-picture-upload").find(".uraf-profile-picture-input");(l=e(".uraf-profile-picture-upload")).find("#"+f.attr("name")+"-error").remove(),l.find(".uraf-profile-picture-file-error").remove();var c='<label id="'+f.attr("name")+'-error" class="user-registration-error" for="'+f.attr("name")+'">'+user_registration_params.message_required_fields+"</label>";l.find("button.wp_uraf_profile_picture_upload").after(c)}if(t.valid()){a.preventDefault(),t.find(".ur-submit-button").prop("disabled",!0);var p,_=0,m="0",g=t.find("#g-recaptcha-response").val();try{p=JSON.stringify(s.get_form_data())}catch(h){p=""}1===e(this).closest("form").find('input[name="ur-user-form-id"]').length&&(_=e(this).closest("form").find('input[name="ur-user-form-id"]').val()),1===e(this).closest("form").find('input[name="ur_frontend_form_nonce"]').length&&(m=e(this).closest("form").find('input[name="ur_frontend_form_nonce"]').val());var F={action:"user_registration_user_form_submit",security:user_registration_params.user_registration_form_data_save,form_data:p,captchaResponse:g,form_id:_,ur_frontend_form_nonce:m};if(e(document).trigger("user_registration_frontend_before_form_submit",[F,t]),"undefined"!=typeof ur_google_recaptcha_code&&"1"===ur_google_recaptcha_code.is_captcha_enable){if(0===(g=t.find("#g-recaptcha-response").val()).length)return void s.show_message("<p>"+r.captcha_error+"</p>","error",t);"v3"==ur_google_recaptcha_code.version?request_recaptcha_token():grecaptcha.reset()}t.find(".ur-submit-button").find("span").addClass("ur-front-spinner"),e.ajax({url:user_registration_params.ajax_url,data:F,type:"POST",async:!0,complete:function(a){t.find(".ur-submit-button").find("span").removeClass("ur-front-spinner");var i=t.find('input[name="ur-redirect-url"]').val(),n=e('<ul class=""/>'),o="error";try{var u=e.parseJSON(a.responseText);"undefined"!=typeof u.success&&!0===u.success&&"undefined"!=typeof u.data.paypal_redirect&&(window.location=u.data.paypal_redirect),"undefined"!=typeof u.success&&!0===u.success&&(o="message"),"message"===o?(e(".user-registration-password-hint").remove(),e(".user-registration-password-strength").remove(),"admin_approval"==u.data.form_login_option?n.append("<li>"+r.user_under_approval+"</li>"):"email_confirmation"==u.data.form_login_option?n.append("<li>"+r.user_email_pending+"</li>"):"payment"==u.data.form_login_option?n.append("<li>"+u.data.message+"</li>"):n.append("<li>"+r.user_successfully_saved+"</li>"),t[0].reset(),jQuery("#billing_country").trigger("change"),jQuery("#shipping_country").trigger("change"),void 0!==i&&""!==i?window.setTimeout(function(){window.location=i},1e3):"undefined"!=typeof u.data.auto_login&&u.data.auto_login&&location.reload()):"error"===o&&("object"==typeof u.data.message?e.each(u.data.message,function(e,r){n.append("<li>"+r+"</li>")}):n.append("<li>"+u.data.message+"</li>"))}catch(d){n.append("<li>"+d.message+"</li>")}s.show_message(n,o,t),e(document).trigger("user_registration_frontend_after_ajax_complete",[a.responseText,o,t]),t.find(".ur-submit-button").prop("disabled",!1)}})}})}};s.init(),n.init()})},e(function(){e("form.register").ur_form_submission();var a=!1,t=e("#load_flatpickr").attr("data-id"),i=e(".ur-frontend-form #"+t);i.attr("type","text"),i.val(e("#formated_date").val()),e("#load_flatpickr").click(function(){var r;a||(e(this).attr("data-date-format",i.data("date-format")),e(this).attr("data-mode",i.data("mode")),e(this).attr("data-min-date",i.data("min-date")),e(this).attr("data-max-date",i.data("max-date")),e(this).attr("data-default-date",e("#formated_date").val()),r=e(this).flatpickr({disableMobile:!0,onChange:function(r,a,i){e("#"+t).val(a)}}),a=!0),r&&r.open()}),e("form.register, form.edit-password").on("focusout","#user_pass, #password_1",function(){$this=e(this);var a=e(this).attr("name"),t=e(this).data("id"),i=$this.closest("form").attr("data-enable-strength-password");if("yes"===i||"1"===i){var s=$this.closest("form"),n=s.attr("data-minimum-password-strength"),o=wp.passwordStrength.userInputBlacklist();o.push(s.find('input[data-id="user_email"]').val()),o.push(s.find('input[data-id="user_login"]').val());if(wp.passwordStrength.meter($this.val(),o)<n&&""!==$this.val()){s.find("#"+t+"_error").remove();var u='<label id="'+t+'_error" class="user-registration-error" for="'+a+'">'+r.password_strength_error+".</label>";s.find(".user-registration-password-hint").after(u)}}})}),e(function(){request_recaptcha_token()}),e(function(){e(".user-registration-EditProfileForm.edit-profile .field-country").length>0&&e(".field-country").each(function(){var r=e(this).find(".ur-data-holder").data("option-value"),a=e(this).find(".ur-data-holder").data("option-html"),t=e(this).find("select");r&&a&&(0===t.find('option[value="'+r+'"]').length&&t.append("<option class='ur-remove' selected='selected' value='"+r+"'>"+a+"</option>"),e(this).on("click",function(){e(this).find(".ur-remove").remove()}))})}),e(document).on("click",".password_preview",function(a){a.preventDefault();var t=e(this).hasClass("dashicons-hidden")?"show":"hide",i=e(this).closest(".user-registration-form-row").find('input[name="password"]');if(0===i.length&&(i=e(this).closest(".field-user_pass").find('input[name="user_pass"]')),0===i.length&&(i=e(this).closest(".field-user_confirm_password").find('input[name="user_confirm_password"]')),0===i.length&&(i=e(this).closest(".user-registration-form-row").find('input[name="password_current"]')),0===i.length&&(i=e(this).closest(".user-registration-form-row").find('input[name="password_1"]')),0===i.length&&(i=e(this).closest(".user-registration-form-row").find('input[name="password_2"]')),i.length>0)switch(t){case"show":i.attr("type","text"),e(this).removeClass("dashicons-hidden").addClass("dashicons-visibility"),e(this).attr("title",r.hide_password_title);break;case"hide":i.attr("type","password"),e(this).removeClass("dashicons-visibility").addClass("dashicons-hidden"),e(this).attr("title",r.show_password_title)}})}(jQuery);var google_recaptcha_user_registration,onloadURCallback=function(){0!==jQuery(".ur-frontend-form").find("form.register #ur-recaptcha-node #node_recaptcha_register").length&&(google_recaptcha_user_registration=grecaptcha.render("node_recaptcha_register",{sitekey:ur_google_recaptcha_code.site_key,theme:"light",style:"transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;"}));0!==jQuery(".ur-frontend-form").find("form.login .ur-form-row .ur-form-grid #ur-recaptcha-node #node_recaptcha_login").length&&grecaptcha.render("node_recaptcha_login",{sitekey:ur_google_recaptcha_code.site_key,theme:"light",style:"transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;"})};
includes/abstracts/abstract-ur-form-field.php CHANGED
@@ -215,13 +215,14 @@ abstract class UR_Form_Field {
215
  if ( 'select' === $field_key ) {
216
  $option_data = isset( $data['advance_setting']->options ) ? explode( ',', $data['advance_setting']->options ) : array(); // Backward compatibility. Modified since 1.5.7
217
  $option_data = isset( $data['general_setting']->options ) ? $data['general_setting']->options : $option_data;
218
-
219
  $options = array();
 
220
  if ( is_array( $option_data ) ) {
221
  foreach ( $option_data as $index_data => $option ) {
222
- $options[ $option ] = $option;
223
- $form_data['options'] = $options;
224
  }
 
 
225
  }
226
  }
227
 
@@ -232,9 +233,10 @@ abstract class UR_Form_Field {
232
  $options = array();
233
  if ( is_array( $option_data ) ) {
234
  foreach ( $option_data as $index_data => $option ) {
235
- $options[ $option ] = $option;
236
- $form_data['options'] = $options;
237
  }
 
 
238
  }
239
  }
240
 
@@ -245,9 +247,10 @@ abstract class UR_Form_Field {
245
  $options = array();
246
  if ( is_array( $option_data ) ) {
247
  foreach ( $option_data as $index_data => $option ) {
248
- $options[ $option ] = $option;
249
- $form_data['options'] = $options;
250
  }
 
 
251
  }
252
  }
253
  /** Redundant Codes End. */
@@ -474,16 +477,20 @@ abstract class UR_Form_Field {
474
 
475
  $settings = "<div class='ur-general-setting-block " . esc_attr( $class ) . "'>";
476
  $settings .= '<h2 class="ur-toggle-heading">' . esc_html__( 'General Settings', 'user-registration' ) . '</h2><hr>';
 
477
  $settings .= $this->get_field_general_settings();
478
  $settings .= '</div>';
 
479
 
480
  $advance_settings = $this->get_field_advance_settings();
481
 
482
  if ( ! empty( $advance_settings ) ) {
483
  $settings .= "<div class='ur-advance-setting-block'>";
484
  $settings .= '<h2 class="ur-toggle-heading">' . __( 'Advance Settings', 'user-registration' ) . '</h2><hr>';
 
485
  $settings .= $advance_settings;
486
  $settings .= '</div>';
 
487
  }
488
 
489
  // Redundent code start.
215
  if ( 'select' === $field_key ) {
216
  $option_data = isset( $data['advance_setting']->options ) ? explode( ',', $data['advance_setting']->options ) : array(); // Backward compatibility. Modified since 1.5.7
217
  $option_data = isset( $data['general_setting']->options ) ? $data['general_setting']->options : $option_data;
 
218
  $options = array();
219
+
220
  if ( is_array( $option_data ) ) {
221
  foreach ( $option_data as $index_data => $option ) {
222
+ $options[ $option ] = ur_string_translation( $form_id, 'user_registration_' . $data['general_setting']->field_name . '_option_' . ( ++$index_data ), $option );
 
223
  }
224
+
225
+ $form_data['options'] = $options;
226
  }
227
  }
228
 
233
  $options = array();
234
  if ( is_array( $option_data ) ) {
235
  foreach ( $option_data as $index_data => $option ) {
236
+ $options[ $option ] = ur_string_translation( $form_id, 'user_registration_' . $data['general_setting']->field_name . '_option_' . ( ++$index_data ), $option );
 
237
  }
238
+
239
+ $form_data['options'] = $options;
240
  }
241
  }
242
 
247
  $options = array();
248
  if ( is_array( $option_data ) ) {
249
  foreach ( $option_data as $index_data => $option ) {
250
+ $options[ $option ] = ur_string_translation( $form_id, 'user_registration_' . $data['general_setting']->field_name . '_option_' . ( ++$index_data ), $option );
 
251
  }
252
+
253
+ $form_data['options'] = $options;
254
  }
255
  }
256
  /** Redundant Codes End. */
477
 
478
  $settings = "<div class='ur-general-setting-block " . esc_attr( $class ) . "'>";
479
  $settings .= '<h2 class="ur-toggle-heading">' . esc_html__( 'General Settings', 'user-registration' ) . '</h2><hr>';
480
+ $settings .= '<div class="ur-toggle-content">';
481
  $settings .= $this->get_field_general_settings();
482
  $settings .= '</div>';
483
+ $settings .= '</div>';
484
 
485
  $advance_settings = $this->get_field_advance_settings();
486
 
487
  if ( ! empty( $advance_settings ) ) {
488
  $settings .= "<div class='ur-advance-setting-block'>";
489
  $settings .= '<h2 class="ur-toggle-heading">' . __( 'Advance Settings', 'user-registration' ) . '</h2><hr>';
490
+ $settings .= '<div class="ur-toggle-content">';
491
  $settings .= $advance_settings;
492
  $settings .= '</div>';
493
+ $settings .= '</div>';
494
  }
495
 
496
  // Redundent code start.
includes/admin/class-ur-admin-menus.php CHANGED
@@ -121,6 +121,11 @@ if ( ! class_exists( 'UR_Admin_Menus', false ) ) :
121
  'label' => 'Multi Select2',
122
  'icon' => 'ur-icon ur-icon-multi-select',
123
  ),
 
 
 
 
 
124
  ),
125
  ),
126
  array(
121
  'label' => 'Multi Select2',
122
  'icon' => 'ur-icon ur-icon-multi-select',
123
  ),
124
+ array(
125
+ 'id' => 'user_registration_profile_picture',
126
+ 'label' => 'Profile Picture',
127
+ 'icon' => 'ur-icon ur-icon-user-display-name',
128
+ ),
129
  ),
130
  ),
131
  array(
includes/admin/class-ur-admin-settings.php CHANGED
@@ -255,6 +255,9 @@ class UR_Admin_Settings {
255
  if ( ! isset( $value['desc_tip'] ) ) {
256
  $value['desc_tip'] = false;
257
  }
 
 
 
258
  if ( ! isset( $value['placeholder'] ) ) {
259
  $value['placeholder'] = '';
260
  }
@@ -522,6 +525,7 @@ class UR_Admin_Settings {
522
  if ( ! isset( $value['checkboxgroup'] ) || 'end' === $value['checkboxgroup'] ) {
523
  ?>
524
  </fieldset>
 
525
  </td>
526
  </tr>
527
  <?php
@@ -529,6 +533,7 @@ class UR_Admin_Settings {
529
  ?>
530
  </fieldset>
531
  <?php
 
532
  }
533
  break;
534
 
@@ -612,6 +617,8 @@ class UR_Admin_Settings {
612
  $description = '';
613
  $tooltip_html = '';
614
 
 
 
615
  if ( true === $value['desc_tip'] ) {
616
  $tooltip_html = $value['desc'];
617
  } elseif ( ! empty( $value['desc_tip'] ) ) {
@@ -621,6 +628,10 @@ class UR_Admin_Settings {
621
  $description = $value['desc'];
622
  }
623
 
 
 
 
 
624
  if ( $description && in_array( $value['type'], array( 'textarea', 'radio' ) ) ) {
625
  $description = '<p style="margin-top:0">' . wp_kses_post( $description ) . '</p>';
626
  } elseif ( $description && in_array( $value['type'], array( 'checkbox' ) ) ) {
@@ -629,12 +640,19 @@ class UR_Admin_Settings {
629
  $description = '<span class="description">' . wp_kses_post( $description ) . '</span>';
630
  }
631
 
 
 
 
 
 
 
632
  if ( $tooltip_html ) {
633
  $tooltip_html = ur_help_tip( $tooltip_html );
634
  }
635
 
636
  return array(
637
  'description' => $description,
 
638
  'tooltip_html' => $tooltip_html,
639
  );
640
  }
255
  if ( ! isset( $value['desc_tip'] ) ) {
256
  $value['desc_tip'] = false;
257
  }
258
+ if ( ! isset( $value['desc_field'] ) ) {
259
+ $value['desc_field'] = false;
260
+ }
261
  if ( ! isset( $value['placeholder'] ) ) {
262
  $value['placeholder'] = '';
263
  }
525
  if ( ! isset( $value['checkboxgroup'] ) || 'end' === $value['checkboxgroup'] ) {
526
  ?>
527
  </fieldset>
528
+ <?php echo $desc_field; ?>
529
  </td>
530
  </tr>
531
  <?php
533
  ?>
534
  </fieldset>
535
  <?php
536
+ echo $desc_field;
537
  }
538
  break;
539
 
617
  $description = '';
618
  $tooltip_html = '';
619
 
620
+ $desc_field = '';
621
+
622
  if ( true === $value['desc_tip'] ) {
623
  $tooltip_html = $value['desc'];
624
  } elseif ( ! empty( $value['desc_tip'] ) ) {
628
  $description = $value['desc'];
629
  }
630
 
631
+ if ( ! empty( $value['desc_field'] ) ) {
632
+ $desc_field = $value['desc_field'];
633
+ }
634
+
635
  if ( $description && in_array( $value['type'], array( 'textarea', 'radio' ) ) ) {
636
  $description = '<p style="margin-top:0">' . wp_kses_post( $description ) . '</p>';
637
  } elseif ( $description && in_array( $value['type'], array( 'checkbox' ) ) ) {
640
  $description = '<span class="description">' . wp_kses_post( $description ) . '</span>';
641
  }
642
 
643
+ if ( $desc_field && in_array( $value['type'], array( 'textarea', 'radio', 'checkbox' ) ) ) {
644
+ $desc_field = '<p class="description">' . wp_kses_post( $desc_field ) . '</p>';
645
+ } elseif ( $desc_field ) {
646
+ $desc_field = '<span class="description">' . wp_kses_post( $desc_field ) . '</span>';
647
+ }
648
+
649
  if ( $tooltip_html ) {
650
  $tooltip_html = ur_help_tip( $tooltip_html );
651
  }
652
 
653
  return array(
654
  'description' => $description,
655
+ 'desc_field' => $desc_field,
656
  'tooltip_html' => $tooltip_html,
657
  );
658
  }
includes/admin/class-ur-admin-user-list-manager.php CHANGED
@@ -182,9 +182,9 @@ class UR_Admin_User_List_Manager {
182
  public function add_column_head( $columns ) {
183
 
184
  $the_columns['ur_user_user_registered_source'] = __( 'Source', 'user-registration' );
185
- $newcol = array_slice( $columns, 0, -1 );
186
- $newcol = array_merge( $newcol, $the_columns );
187
- $columns = array_merge( $newcol, array_slice( $columns, 1 ) );
188
 
189
  return $columns;
190
  }
@@ -200,33 +200,35 @@ class UR_Admin_User_List_Manager {
200
  */
201
  public function add_column_cell( $val, $column_name, $user_id ) {
202
 
 
 
203
  if ( $column_name == 'ur_user_user_status' ) {
204
  $user_manager = new UR_Admin_User_Manager( $user_id );
205
  $status = $user_manager->get_user_status();
206
- return UR_Admin_User_Manager::get_status_label( $status );
207
- } else if( $column_name == 'ur_user_user_registered_source' ) {
208
  $user_metas = get_user_meta( $user_id );
209
 
210
- if( isset( $user_metas['user_registration_social_connect_bypass_current_password'] ) ) {
211
- $networks = array( 'facebook', 'linkedin', 'google', 'twitter');
212
 
213
- foreach( $networks as $network ){
214
 
215
- if( isset( $user_metas['user_registration_social_connect_' . $network . '_username'] ) ) {
216
  return ucfirst( $network );
217
- }
218
  }
219
- } else if( isset( $user_metas['ur_form_id'] ) ) {
220
- $form_post = get_post( $user_metas['ur_form_id'][0] );
 
221
 
222
- if( ! empty( $form_post ) ){
223
  return $form_post->post_title;
224
- } else {
225
- return '-';
226
- }
227
  } else {
228
  return '-';
229
  }
 
 
 
230
  }
231
  return $val;
232
  }
182
  public function add_column_head( $columns ) {
183
 
184
  $the_columns['ur_user_user_registered_source'] = __( 'Source', 'user-registration' );
185
+ $newcol = array_slice( $columns, 0, -1 );
186
+ $newcol = array_merge( $newcol, $the_columns );
187
+ $columns = array_merge( $newcol, array_slice( $columns, 1 ) );
188
 
189
  return $columns;
190
  }
200
  */
201
  public function add_column_cell( $val, $column_name, $user_id ) {
202
 
203
+ $form_id = ur_get_form_id_by_userid( $user_id );
204
+
205
  if ( $column_name == 'ur_user_user_status' ) {
206
  $user_manager = new UR_Admin_User_Manager( $user_id );
207
  $status = $user_manager->get_user_status();
208
+ return $status;
209
+ } elseif ( $column_name == 'ur_user_user_registered_source' ) {
210
  $user_metas = get_user_meta( $user_id );
211
 
212
+ if ( isset( $user_metas['user_registration_social_connect_bypass_current_password'] ) ) {
213
+ $networks = array( 'facebook', 'linkedin', 'google', 'twitter' );
214
 
215
+ foreach ( $networks as $network ) {
216
 
217
+ if ( isset( $user_metas[ 'user_registration_social_connect_' . $network . '_username' ] ) ) {
218
  return ucfirst( $network );
 
219
  }
220
+ }
221
+ } elseif ( isset( $user_metas['ur_form_id'] ) ) {
222
+ $form_post = get_post( $user_metas['ur_form_id'][0] );
223
 
224
+ if ( ! empty( $form_post ) ) {
225
  return $form_post->post_title;
 
 
 
226
  } else {
227
  return '-';
228
  }
229
+ } else {
230
+ return '-';
231
+ }
232
  }
233
  return $val;
234
  }
includes/admin/class-ur-admin-user-manager.php CHANGED
@@ -137,19 +137,42 @@ class UR_Admin_User_Manager {
137
  }
138
 
139
  $user_status = get_user_meta( $this->user->ID, 'ur_user_status', true );
140
-
141
- // If the exact_value is true, allow to understand if an user has status "approved" or has registered when the plugin wash not active
142
- if ( $exact_value ) {
143
- return $user_status;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  }
145
 
146
- // If the status is empty it's assume that user registered when the plugin was not active, then it is allowed
147
- $user_status = ( $user_status == '' || $user_status == array() ) ? self::APPROVED : $user_status;
148
-
149
- // If the value requested is not the exact value, than store it in the object
150
- $this->user_status = $user_status;
151
-
152
- return $user_status;
153
  }
154
 
155
  /**
137
  }
138
 
139
  $user_status = get_user_meta( $this->user->ID, 'ur_user_status', true );
140
+ $label = '';
141
+ if ( $user_status !== '' ) {
142
+
143
+ // If the exact_value is true, allow to understand if an user has status "approved" or has registered when the plugin wash not active
144
+ if ( $exact_value ) {
145
+ return $user_status;
146
+ }
147
+
148
+ // If the status is empty it's assume that user registered when the plugin was not active, then it is allowed
149
+ $user_status = ( $user_status == array() ) ? self::APPROVED : $user_status;
150
+
151
+ if ( '1' === $user_status ) {
152
+ $label = __( 'approved', 'user-registration' );
153
+ }
154
+
155
+ if ( '0' === $user_status ) {
156
+ $label = __( 'pending', 'user-registration' );
157
+ }
158
+
159
+ if ( '-1' === $user_status ) {
160
+ $label = __( 'denied', 'user-registration' );
161
+ }
162
+ } else {
163
+ $val = get_user_meta( $this->user->ID, 'ur_confirm_email', true );
164
+ $token = get_user_meta( $this->user->ID, 'ur_confirm_email_token', true );
165
+
166
+ if ( '1' === $val ) {
167
+ $label = __( 'verified', 'user-registration' );
168
+ } elseif ( '0' === $val && isset( $token ) ) {
169
+ $label = __( 'pending', 'user-registration' );
170
+ } elseif ( '' === $val ) {
171
+ $label = __( 'approved', 'user-registration' );
172
+ }
173
  }
174
 
175
+ return ucfirst( $label );
 
 
 
 
 
 
176
  }
177
 
178
  /**
includes/admin/settings/class-ur-settings-general.php CHANGED
@@ -373,30 +373,30 @@ if ( ! class_exists( 'UR_Settings_General' ) ) :
373
 
374
  array(
375
  'title' => __( 'Enable remember me', 'user-registration' ),
376
- 'desc' => __( 'Check to enable/disable remember me.', 'user-registration' ),
377
  'id' => 'user_registration_login_options_remember_me',
378
  'type' => 'checkbox',
379
- 'desc_tip' => true,
380
  'css' => 'min-width: 350px;',
381
  'default' => 'yes',
382
  ),
383
 
384
  array(
385
  'title' => __( 'Enable lost password', 'user-registration' ),
386
- 'desc' => __( 'Check to enable/disable lost password.', 'user-registration' ),
387
  'id' => 'user_registration_login_options_lost_password',
388
  'type' => 'checkbox',
389
- 'desc_tip' => true,
390
  'css' => 'min-width: 350px;',
391
  'default' => 'yes',
392
  ),
393
 
394
  array(
395
  'title' => __( 'Enable google reCaptcha', 'user-registration' ),
396
- 'desc' => sprintf( __( 'Enable %1$s %2$s reCaptcha %3$s support', 'user-registration' ), '<a title="', 'Please make sure the site key and secret are not empty in setting page." href="' . admin_url() . 'admin.php?page=user-registration-settings&tab=integration" target="_blank">', '</a>' ),
397
  'id' => 'user_registration_login_options_enable_recaptcha',
398
  'type' => 'checkbox',
399
- 'desc_tip' => true,
400
  'css' => 'min-width: 350px;',
401
  'default' => 'no',
402
  ),
@@ -421,13 +421,25 @@ if ( ! class_exists( 'UR_Settings_General' ) ) :
421
  ),
422
 
423
  array(
424
- 'title' => __( 'Prevent Core Login', 'user-registration' ),
425
- 'desc' => __( 'Check to disable WordPress default login or registration page.', 'user-registration' ),
426
- 'id' => 'user_registration_login_options_prevent_core_login',
427
- 'type' => 'checkbox',
 
 
 
 
 
 
 
 
 
 
 
428
  'desc_tip' => true,
429
  'css' => 'min-width: 350px;',
430
- 'default' => 'no',
 
431
  ),
432
 
433
  array(
373
 
374
  array(
375
  'title' => __( 'Enable remember me', 'user-registration' ),
376
+ 'desc' => __( 'Enable', 'user-registration' ),
377
  'id' => 'user_registration_login_options_remember_me',
378
  'type' => 'checkbox',
379
+ 'desc_tip' => __( 'Check to enable/disable remember me.', 'user-registration' ),
380
  'css' => 'min-width: 350px;',
381
  'default' => 'yes',
382
  ),
383
 
384
  array(
385
  'title' => __( 'Enable lost password', 'user-registration' ),
386
+ 'desc' => __( 'Enable', 'user-registration' ),
387
  'id' => 'user_registration_login_options_lost_password',
388
  'type' => 'checkbox',
389
+ 'desc_tip' => __( 'Check to enable/disable lost password.', 'user-registration' ),
390
  'css' => 'min-width: 350px;',
391
  'default' => 'yes',
392
  ),
393
 
394
  array(
395
  'title' => __( 'Enable google reCaptcha', 'user-registration' ),
396
+ 'desc' => __( 'Enable', 'user-registration' ),
397
  'id' => 'user_registration_login_options_enable_recaptcha',
398
  'type' => 'checkbox',
399
+ 'desc_tip' => sprintf( __( 'Enable %1$s %2$s reCaptcha %3$s support', 'user-registration' ), '<a title="', 'Please make sure the site key and secret are not empty in setting page." href="' . admin_url() . 'admin.php?page=user-registration-settings&tab=integration" target="_blank">', '</a>' ),
400
  'css' => 'min-width: 350px;',
401
  'default' => 'no',
402
  ),
421
  ),
422
 
423
  array(
424
+ 'title' => __( 'Prevent Core Login', 'user-registration' ),
425
+ 'desc' => __( 'Enable Prevent Core Login', 'user-registration' ),
426
+ 'id' => 'user_registration_login_options_prevent_core_login',
427
+ 'type' => 'checkbox',
428
+ 'desc_tip' => __( 'Check to disable WordPress default login or registration page.', 'user-registration' ),
429
+ 'css' => 'min-width: 350px;',
430
+ 'default' => 'no',
431
+ 'desc_field' => __( 'Please make sure that you have created a login or my-account page which has a login form before enabling this option. Learn how to create a login form <a href="https://docs.wpeverest.com/docs/user-registration/registration-form-and-login-form/how-to-show-login-form/" target="_blank">here</a>.', 'user-registration' ),
432
+ ),
433
+
434
+ array(
435
+ 'title' => __( 'Redirect to Login Page', 'user-registration' ),
436
+ 'desc' => __( 'Select the login page where you wants to redirect.', 'user-registration' ),
437
+ 'id' => 'user_registration_login_options_login_redirect_url',
438
+ 'type' => 'single_select_page',
439
  'desc_tip' => true,
440
  'css' => 'min-width: 350px;',
441
+ 'class' => 'ur-redirect-to-login-page',
442
+ 'default' => '',
443
  ),
444
 
445
  array(
includes/admin/views/html-admin-page-addons.php CHANGED
@@ -10,7 +10,7 @@ if ( ! defined( 'ABSPATH' ) ) {
10
  }
11
 
12
  ?>
13
- <div class="wrap restaurantpress ur_addons_wrap">
14
  <nav class="nav-tab-wrapper ur-nav-tab-wrapper">
15
  <a href="<?php echo esc_url( admin_url( 'admin.php?page=user-registration-addons' ) ); ?>" class="nav-tab nav-tab-active"><?php _e( 'Browse Extensions', 'user-registration' ); ?></a>
16
  </nav>
10
  }
11
 
12
  ?>
13
+ <div class="wrap ur_addons_wrap">
14
  <nav class="nav-tab-wrapper ur-nav-tab-wrapper">
15
  <a href="<?php echo esc_url( admin_url( 'admin.php?page=user-registration-addons' ) ); ?>" class="nav-tab nav-tab-active"><?php _e( 'Browse Extensions', 'user-registration' ); ?></a>
16
  </nav>
includes/admin/views/html-admin-page-forms.php CHANGED
@@ -66,6 +66,15 @@ if ( ! defined( 'ABSPATH' ) ) {
66
 
67
  <div class="ur-tab-contents" >
68
  <div id="ur-tab-registered-fields" class="ur-tab-content">
 
 
 
 
 
 
 
 
 
69
  <h2 class='ur-toggle-heading'><?php echo __( 'Default User Fields', 'user-registration' ); ?></h2>
70
  <hr/>
71
  <?php $this->get_registered_user_form_fields(); ?>
66
 
67
  <div class="ur-tab-contents" >
68
  <div id="ur-tab-registered-fields" class="ur-tab-content">
69
+ <div class="ur-search-input ur-search-fields">
70
+ <input id="ur-search-fields" class="ur-type-text" type="text" placeholder="Search Fields..." />
71
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24" fill="#a1a4b9"><path d="M21.71,20.29,18,16.61A9,9,0,1,0,16.61,18l3.68,3.68a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM11,18a7,7,0,1,1,7-7A7,7,0,0,1,11,18Z"/></svg>
72
+ </div>
73
+ <div class="ur-fields-not-found" hidden>
74
+ <img src="<?php echo esc_attr( plugin_dir_url( UR_PLUGIN_FILE ) . 'assets/images/not-found.png' ); ?>" />
75
+ <h3 class="ur-fields-not-found-title">Whoops!</h3>
76
+ <span>There is not any field that you were searching for.</span>
77
+ </div>
78
  <h2 class='ur-toggle-heading'><?php echo __( 'Default User Fields', 'user-registration' ); ?></h2>
79
  <hr/>
80
  <?php $this->get_registered_user_form_fields(); ?>
includes/class-ur-user-approval.php CHANGED
@@ -27,19 +27,19 @@ class UR_User_Approval {
27
  // Additional checks
28
  add_action( 'after_setup_theme', array( $this, 'check_status_on_page' ) );
29
 
30
- // Handle user Sign in
31
  add_action( 'user_registration_after_register_user_action', array( $this, 'set_user_status' ), 10, 3 );
32
  add_action( 'user_register', array( $this, 'send_request_notification_to_admin' ), 10, 1 );
33
  add_filter( 'wp_login_errors', array( $this, 'registration_completed_message' ) );
34
 
35
- // Handle user Sign on
36
  add_action( 'wp_login', array( $this, 'track_first_login' ), 10, 2 );
37
  add_filter( 'wp_authenticate_user', array( $this, 'check_status_on_login' ), 10, 2 );
38
 
39
- // Handle Lost Password Page
40
  add_filter( 'allow_password_reset', array( $this, 'allow_password_reset' ), 10, 2 );
41
 
42
- // When the approval status of an user change
43
  add_action(
44
  'ur_user_status_updated',
45
  array(
@@ -51,9 +51,6 @@ class UR_User_Approval {
51
  );
52
  add_action( 'ur_user_user_denied', array( $this, 'disconnect_user_session' ) );
53
 
54
- // Try to hide the not approved users from any theme or plugin request in frontend
55
- add_action( 'pre_get_users', array( $this, 'hide_not_approved_users_in_frontend' ) );
56
-
57
  do_action( 'ur_user_construct' );
58
 
59
  }
@@ -61,12 +58,12 @@ class UR_User_Approval {
61
  /**
62
  * Display a message the provide instruction after the use regsitration and remove the login form from there
63
  *
64
- * @param $errors
65
  * @return mixed
66
  */
67
  public function registration_completed_message( $errors ) {
68
 
69
- if ( ! ( isset( $_GET['checkemail'] ) && $_GET['checkemail'] == 'registered' ) ) {
70
  return $errors;
71
  }
72
 
@@ -76,8 +73,8 @@ class UR_User_Approval {
76
  /**
77
  * Save a flag that ensure if an user has ever loggedin while the plugin is activated
78
  *
79
- * @param $user_login
80
- * @param $user
81
  */
82
  public function track_first_login( $user_login, $user ) {
83
 
@@ -93,11 +90,9 @@ class UR_User_Approval {
93
  * Send the email to the user that alert if the approvalrequest has been approved or rejected.
94
  * If the request is approved and the user needs to receive the password, a new password will be generated and sent
95
  *
96
- * @param $status
97
- * @param $user_id
98
- * @param $alert_user
99
- *
100
- * @throws \Exception
101
  */
102
  public function send_notification_to_user_about_status_changing( $status, $user_id, $alert_user ) {
103
 
@@ -109,8 +104,8 @@ class UR_User_Approval {
109
 
110
  $user_manager = new UR_Admin_User_Manager( $user_id );
111
 
112
- // Avoid to send multiple times the same email
113
- if ( $status == $user_manager->get_user_status() ) {
114
  return;
115
  }
116
 
@@ -120,18 +115,16 @@ class UR_User_Approval {
120
  $email = isset( $user_data->user_email ) ? $user_data->user_email : '';
121
 
122
  UR_Emailer::status_change_email( $email, $username, $status );
123
-
124
- return;
125
  }
126
 
127
  /**
128
  * Send an email to the admin in order to alert the a new user requests to be approved
129
  *
130
- * @param $user_id
131
  */
132
  public function send_request_notification_to_admin( $user_id ) {
133
 
134
- // If the user is created by admin or if the admin alert is disabled, doesn't send the email to the admin
135
  if ( $this->is_admin_creation_process() ) {
136
  return;
137
  }
@@ -139,9 +132,11 @@ class UR_User_Approval {
139
  }
140
 
141
  /**
142
- * Set the status of the user right after the registration
143
  *
144
- * @param $user_id
 
 
145
  */
146
  public function set_user_status( $form_data, $form_id, $user_id ) {
147
 
@@ -149,14 +144,14 @@ class UR_User_Approval {
149
 
150
  $status = UR_Admin_User_Manager::PENDING;
151
 
152
- // If the user is created by admin in the backend, than automatically approve him
153
  if ( $this->is_admin_creation_process() ) {
154
  $status = UR_Admin_User_Manager::APPROVED;
155
  }
156
 
157
  $user_manager = new UR_Admin_User_Manager( $user_id );
158
 
159
- // The user have to be not alerted on status creation, it will be always pending or approved
160
  $alert_user = false;
161
 
162
  $user_manager->save_status( $status, $alert_user );
@@ -166,12 +161,10 @@ class UR_User_Approval {
166
  /**
167
  * Check the status of an user on login.
168
  *
169
- * @param $user
170
- *
171
- * WP_Error
172
  *
173
  * @return \WP_Error
174
- * @throws \Exception
175
  */
176
  public function check_status_on_login( WP_User $user, $password ) {
177
 
@@ -209,8 +202,8 @@ class UR_User_Approval {
209
  $instance = new UR_Email_Confirmation();
210
  $url = wp_nonce_url( $url . '?ur_resend_id=' . $instance->crypt_the_string( $user->ID, 'e' ) . '&ur_resend_token=true', 'ur_resend_token' );
211
 
212
- if ( $email_status === '0' ) {
213
- $message = '<strong>' . __( 'ERROR:', 'user-registration' ) . '</strong> ' . sprintf( __( 'Your account is still pending approval. Verify your email by clicking on the link sent to your email. %s', 'user-registration' ), '<a id="resend-email" href="' . esc_url( $url ) . '">' . __( 'Resend Verification Link', 'user-registration' ) . '</a>' );
214
  return new WP_Error( 'user_email_not_verified', $message );
215
  }
216
  return $user;
@@ -219,7 +212,7 @@ class UR_User_Approval {
219
 
220
  do_action( 'ur_user_before_check_payment_status_on_login', $payment_status, $user );
221
 
222
- if ( ! empty( $payment_status ) && $payment_status !== 'completed' ) {
223
 
224
  $user_id = $user->ID;
225
  $instance = new User_Registration_Payments_Process();
@@ -247,6 +240,10 @@ class UR_User_Approval {
247
  $form_id = ur_get_form_id_by_userid( get_current_user_id() );
248
 
249
  if ( 'admin_approval' === ur_get_single_post_meta( $form_id, 'user_registration_form_setting_login_options', get_option( 'user_registration_general_setting_login_options', 'default' ) ) ) {
 
 
 
 
250
  $status = ur_get_user_approval_status( get_current_user_id() );
251
 
252
  $user_manager = new UR_Admin_User_Manager();
@@ -257,7 +254,7 @@ class UR_User_Approval {
257
 
258
  do_action( 'ur_user_before_check_status_on_page', $status, $user_manager );
259
 
260
- if ( $status == UR_Admin_User_Manager::APPROVED ) {
261
  return;
262
  }
263
 
@@ -275,15 +272,15 @@ class UR_User_Approval {
275
  }
276
 
277
  /**
278
- * Disconnect an user selected by id
279
  *
280
- * @param $user_id
281
  */
282
  public function disconnect_user_session( $user_id ) {
283
  $form_id = ur_get_form_id_by_userid( $user_id );
284
 
285
  if ( 'admin_approval' === ur_get_single_post_meta( $form_id, 'user_registration_form_setting_login_options', get_option( 'user_registration_general_setting_login_options', 'default' ) ) ) {
286
- // get all sessions for user with ID $user_id
287
  $sessions = WP_Session_Tokens::get_instance( $user_id );
288
 
289
  // we have got the sessions, destroy them all!
@@ -320,11 +317,11 @@ class UR_User_Approval {
320
  * in this way it ensure a compatibility with all other plugin and themes, avoiding to show unapproved users
321
  * (for instance in members page of buddypress or Extrafooter of Woffice)
322
  *
323
- * @param \WP_Query $query
324
  */
325
  public function hide_not_approved_users_in_frontend( $query ) {
326
 
327
- // If this is not a frontend page, then do nothing
328
  if ( is_admin() ) {
329
  return;
330
  }
@@ -333,7 +330,7 @@ class UR_User_Approval {
333
  return;
334
  }
335
 
336
- // Otherwise display only approved users
337
  $meta_query = array(
338
  'relation' => 'OR',
339
  array(
27
  // Additional checks
28
  add_action( 'after_setup_theme', array( $this, 'check_status_on_page' ) );
29
 
30
+ // Handle user Sign in.
31
  add_action( 'user_registration_after_register_user_action', array( $this, 'set_user_status' ), 10, 3 );
32
  add_action( 'user_register', array( $this, 'send_request_notification_to_admin' ), 10, 1 );
33
  add_filter( 'wp_login_errors', array( $this, 'registration_completed_message' ) );
34
 
35
+ // Handle user Sign on.
36
  add_action( 'wp_login', array( $this, 'track_first_login' ), 10, 2 );
37
  add_filter( 'wp_authenticate_user', array( $this, 'check_status_on_login' ), 10, 2 );
38
 
39
+ // Handle Lost Password Page.
40
  add_filter( 'allow_password_reset', array( $this, 'allow_password_reset' ), 10, 2 );
41
 
42
+ // When the approval status of an user change.
43
  add_action(
44
  'ur_user_status_updated',
45
  array(
51
  );
52
  add_action( 'ur_user_user_denied', array( $this, 'disconnect_user_session' ) );
53
 
 
 
 
54
  do_action( 'ur_user_construct' );
55
 
56
  }
58
  /**
59
  * Display a message the provide instruction after the use regsitration and remove the login form from there
60
  *
61
+ * @param array $errors Errors.
62
  * @return mixed
63
  */
64
  public function registration_completed_message( $errors ) {
65
 
66
+ if ( ! ( isset( $_GET['checkemail'] ) && 'registered' === $_GET['checkemail'] ) ) {
67
  return $errors;
68
  }
69
 
73
  /**
74
  * Save a flag that ensure if an user has ever loggedin while the plugin is activated
75
  *
76
+ * @param mixed $user_login Username.
77
+ * @param mixed $user Users Object.
78
  */
79
  public function track_first_login( $user_login, $user ) {
80
 
90
  * Send the email to the user that alert if the approvalrequest has been approved or rejected.
91
  * If the request is approved and the user needs to receive the password, a new password will be generated and sent
92
  *
93
+ * @param mixed $status Status.
94
+ * @param int $user_id User ID.
95
+ * @param mixed $alert_user Alert User.
 
 
96
  */
97
  public function send_notification_to_user_about_status_changing( $status, $user_id, $alert_user ) {
98
 
104
 
105
  $user_manager = new UR_Admin_User_Manager( $user_id );
106
 
107
+ // Avoid to send multiple times the same email.
108
+ if ( $status === $user_manager->get_user_status() ) {
109
  return;
110
  }
111
 
115
  $email = isset( $user_data->user_email ) ? $user_data->user_email : '';
116
 
117
  UR_Emailer::status_change_email( $email, $username, $status );
 
 
118
  }
119
 
120
  /**
121
  * Send an email to the admin in order to alert the a new user requests to be approved
122
  *
123
+ * @param int $user_id User ID.
124
  */
125
  public function send_request_notification_to_admin( $user_id ) {
126
 
127
+ // If the user is created by admin or if the admin alert is disabled, doesn't send the email to the admin.
128
  if ( $this->is_admin_creation_process() ) {
129
  return;
130
  }
132
  }
133
 
134
  /**
135
+ * Set the status of the user right after the registration.
136
  *
137
+ * @param mixed $form_data Form Data.
138
+ * @param int $form_id Form ID.
139
+ * @param int $user_id User ID.
140
  */
141
  public function set_user_status( $form_data, $form_id, $user_id ) {
142
 
144
 
145
  $status = UR_Admin_User_Manager::PENDING;
146
 
147
+ // If the user is created by admin in the backend, than automatically approve him.
148
  if ( $this->is_admin_creation_process() ) {
149
  $status = UR_Admin_User_Manager::APPROVED;
150
  }
151
 
152
  $user_manager = new UR_Admin_User_Manager( $user_id );
153
 
154
+ // The user have to be not alerted on status creation, it will be always pending or approved.
155
  $alert_user = false;
156
 
157
  $user_manager->save_status( $status, $alert_user );
161
  /**
162
  * Check the status of an user on login.
163
  *
164
+ * @param WP_User $user Users.
165
+ * @param string $password Password.
 
166
  *
167
  * @return \WP_Error
 
168
  */
169
  public function check_status_on_login( WP_User $user, $password ) {
170
 
202
  $instance = new UR_Email_Confirmation();
203
  $url = wp_nonce_url( $url . '?ur_resend_id=' . $instance->crypt_the_string( $user->ID, 'e' ) . '&ur_resend_token=true', 'ur_resend_token' );
204
 
205
+ if ( '0' === $email_status ) {
206
+ $message = '<strong>' . esc_html__( 'ERROR:', 'user-registration' ) . '</strong> ' . sprintf( __( 'Your account is still pending approval. Verify your email by clicking on the link sent to your email. %s', 'user-registration' ), '<a id="resend-email" href="' . esc_url( $url ) . '">' . __( 'Resend Verification Link', 'user-registration' ) . '</a>' );
207
  return new WP_Error( 'user_email_not_verified', $message );
208
  }
209
  return $user;
212
 
213
  do_action( 'ur_user_before_check_payment_status_on_login', $payment_status, $user );
214
 
215
+ if ( ! empty( $payment_status ) && 'completed' !== $payment_status ) {
216
 
217
  $user_id = $user->ID;
218
  $instance = new User_Registration_Payments_Process();
240
  $form_id = ur_get_form_id_by_userid( get_current_user_id() );
241
 
242
  if ( 'admin_approval' === ur_get_single_post_meta( $form_id, 'user_registration_form_setting_login_options', get_option( 'user_registration_general_setting_login_options', 'default' ) ) ) {
243
+
244
+ // Try to hide the not approved users from any theme or plugin request in frontend.
245
+ add_action( 'pre_get_users', array( $this, 'hide_not_approved_users_in_frontend' ) );
246
+
247
  $status = ur_get_user_approval_status( get_current_user_id() );
248
 
249
  $user_manager = new UR_Admin_User_Manager();
254
 
255
  do_action( 'ur_user_before_check_status_on_page', $status, $user_manager );
256
 
257
+ if ( UR_Admin_User_Manager::APPROVED === $status ) {
258
  return;
259
  }
260
 
272
  }
273
 
274
  /**
275
+ * Disconnect an user selected by id.
276
  *
277
+ * @param int $user_id User Id.
278
  */
279
  public function disconnect_user_session( $user_id ) {
280
  $form_id = ur_get_form_id_by_userid( $user_id );
281
 
282
  if ( 'admin_approval' === ur_get_single_post_meta( $form_id, 'user_registration_form_setting_login_options', get_option( 'user_registration_general_setting_login_options', 'default' ) ) ) {
283
+ // get all sessions for user with ID $user_id.
284
  $sessions = WP_Session_Tokens::get_instance( $user_id );
285
 
286
  // we have got the sessions, destroy them all!
317
  * in this way it ensure a compatibility with all other plugin and themes, avoiding to show unapproved users
318
  * (for instance in members page of buddypress or Extrafooter of Woffice)
319
  *
320
+ * @param \WP_Query $query Query.
321
  */
322
  public function hide_not_approved_users_in_frontend( $query ) {
323
 
324
+ // If this is not a frontend page, then do nothing.
325
  if ( is_admin() ) {
326
  return;
327
  }
330
  return;
331
  }
332
 
333
+ // Otherwise display only approved users.
334
  $meta_query = array(
335
  'relation' => 'OR',
336
  array(
includes/frontend/class-ur-frontend-form-handler.php CHANGED
@@ -105,7 +105,7 @@ class UR_Frontend_Form_Handler {
105
  }
106
 
107
  $success_params['form_login_option'] = $login_option;
108
- $success_params = apply_filters( 'user_registration_success_params', $success_params, self::$valid_form_data, $form_id, $user_id );
109
 
110
  wp_send_json_success( $success_params );
111
  }
105
  }
106
 
107
  $success_params['form_login_option'] = $login_option;
108
+ $success_params = apply_filters( 'user_registration_success_params', $success_params, self::$valid_form_data, $form_id, $user_id );
109
 
110
  wp_send_json_success( $success_params );
111
  }
includes/frontend/class-ur-frontend.php CHANGED
@@ -78,10 +78,21 @@ class UR_Frontend {
78
  */
79
  public function prevent_core_login_page() {
80
  global $action;
 
 
 
81
 
82
- if ( ! ( defined( 'UR_DISABLE_PREVENT_CORE_LOGIN' ) && true === UR_DISABLE_PREVENT_CORE_LOGIN ) && 'yes' === get_option( 'user_registration_login_options_prevent_core_login', 'no' ) ) {
 
 
 
 
 
 
 
 
83
  if ( 'register' === $action || 'login' === $action ) {
84
- $myaccount_page = add_query_arg( $_GET, ur_get_page_permalink( 'myaccount' ) ); // phpcs:ignore WordPress.Security.NonceVerification
85
  wp_safe_redirect( $myaccount_page );
86
  exit;
87
  }
78
  */
79
  public function prevent_core_login_page() {
80
  global $action;
81
+ $login_page = get_post( get_option( 'user_registration_login_options_login_redirect_url', 'unset' ) );
82
+ $myaccount_page = get_post( get_option( 'user_registration_myaccount_page_id' ) );
83
+ $matched = 0;
84
 
85
+ if ( ! empty( $login_page ) ) {
86
+ $matched = preg_match( '/\[user_registration_my_account(\s\S+){0,3}\]|\[user_registration_login(\s\S+){0,3}\]/', $login_page->post_content );
87
+ $page_id = $login_page->ID;
88
+ } elseif ( ! empty( $myaccount_page ) ) {
89
+ $matched = preg_match( '/\[user_registration_my_account(\s\S+){0,3}\]|\[user_registration_login(\s\S+){0,3}\]/', $myaccount_page->post_content );
90
+ $page_id = $myaccount_page->ID;
91
+ }
92
+
93
+ if ( ! ( defined( 'UR_DISABLE_PREVENT_CORE_LOGIN' ) && true === UR_DISABLE_PREVENT_CORE_LOGIN ) && 'yes' === get_option( 'user_registration_login_options_prevent_core_login', 'no' ) && 1 <= absint( $matched ) ) {
94
  if ( 'register' === $action || 'login' === $action ) {
95
+ $myaccount_page = get_permalink( $page_id );
96
  wp_safe_redirect( $myaccount_page );
97
  exit;
98
  }
includes/functions-ur-core.php CHANGED
@@ -922,6 +922,17 @@ function ur_admin_form_settings_fields( $form_id ) {
922
  'custom_attributes' => array(),
923
  'default' => ur_get_single_post_meta( $form_id, 'user_registration_form_setting_redirect_options', get_option( 'user_registration_general_setting_redirect_options', '' ) ), // Getting redirect options from global settings for backward compatibility.
924
  ),
 
 
 
 
 
 
 
 
 
 
 
925
  array(
926
  'type' => 'text',
927
  'label' => __( 'Form Submit Button Label', 'user-registration' ),
922
  'custom_attributes' => array(),
923
  'default' => ur_get_single_post_meta( $form_id, 'user_registration_form_setting_redirect_options', get_option( 'user_registration_general_setting_redirect_options', '' ) ), // Getting redirect options from global settings for backward compatibility.
924
  ),
925
+ array(
926
+ 'type' => 'text',
927
+ 'label' => __( 'Form Submit Button Custom Class', 'user-registration' ),
928
+ 'description' => '',
929
+ 'required' => false,
930
+ 'id' => 'user_registration_form_setting_form_submit_class',
931
+ 'class' => array( 'ur-enhanced-select' ),
932
+ 'input_class' => array(),
933
+ 'custom_attributes' => array(),
934
+ 'default' => ur_get_single_post_meta( $form_id, 'user_registration_form_setting_form_submit_class', '' ),
935
+ ),
936
  array(
937
  'type' => 'text',
938
  'label' => __( 'Form Submit Button Label', 'user-registration' ),
includes/functions-ur-template.php CHANGED
@@ -368,8 +368,12 @@ if ( ! function_exists( 'user_registration_form_field' ) ) {
368
 
369
  $custom_attributes[] = 'data-allow_clear="true"';
370
  foreach ( $args['options'] as $option_key => $option_text ) {
371
-
372
- $options .= '<option value="' . esc_attr( trim( $option_key ) ) . '" ' . selected( $value, trim( $option_key ), false ) . '>' . esc_attr( trim( $option_text ) ) . '</option>';
 
 
 
 
373
  }
374
 
375
  $field .= '<select data-rules="' . esc_attr( $rules ) . '" data-id="' . esc_attr( $key ) . '" name="' . esc_attr( $key ) . '" id="' . esc_attr( $args['id'] ) . '" class="select ' . esc_attr( implode( ' ', $args['input_class'] ) ) . '" ' . implode( ' ', $custom_attributes ) . ' data-placeholder="' . esc_attr( $args['placeholder'] ) . '">
368
 
369
  $custom_attributes[] = 'data-allow_clear="true"';
370
  foreach ( $args['options'] as $option_key => $option_text ) {
371
+ $selected_attribute = '';
372
+
373
+ if ( empty( $args['placeholder'] ) ) {
374
+ $selected_attribute = selected( $value, trim( $option_key ), false );
375
+ }
376
+ $options .= '<option value="' . esc_attr( trim( $option_key ) ) . '" ' . $selected_attribute . '>' . esc_attr( trim( $option_text ) ) . '</option>';
377
  }
378
 
379
  $field .= '<select data-rules="' . esc_attr( $rules ) . '" data-id="' . esc_attr( $key ) . '" name="' . esc_attr( $key ) . '" id="' . esc_attr( $args['id'] ) . '" class="select ' . esc_attr( implode( ' ', $args['input_class'] ) ) . '" ' . implode( ' ', $custom_attributes ) . ' data-placeholder="' . esc_attr( $args['placeholder'] ) . '">
includes/shortcodes/class-ur-shortcode-my-account.php CHANGED
@@ -108,7 +108,7 @@ class UR_Shortcode_My_Account {
108
  }
109
  }
110
 
111
- // Start output buffer since the html may need discarding for BW compatibility
112
  ob_start();
113
 
114
  if ( isset( $wp->query_vars['user-logout'] ) ) {
@@ -117,14 +117,14 @@ class UR_Shortcode_My_Account {
117
 
118
  do_action( 'before-user-registration-my-account-shortcode' );
119
 
120
- // Collect notices before output
121
  include_once UR_ABSPATH . 'includes/functions-ur-notice.php';
122
  $notices = ur_get_notices();
123
 
124
- // Output the new account page
125
  self::my_account( $atts );
126
 
127
- // Send output buffer
128
  ob_end_flush();
129
  }
130
  }
@@ -151,7 +151,7 @@ class UR_Shortcode_My_Account {
151
  wp_enqueue_script( 'ur-my-account' );
152
 
153
  $user_id = get_current_user_id();
154
- $form_id = ur_get_form_id_by_userid( $user_id );
155
 
156
  $profile = user_registration_form_data( $user_id, $form_id );
157
 
@@ -166,7 +166,7 @@ class UR_Shortcode_My_Account {
166
  return;
167
  }
168
 
169
- // Prepare values
170
  foreach ( $profile as $key => $field ) {
171
  $value = get_user_meta( get_current_user_id(), $key, true );
172
  $profile[ $key ]['value'] = apply_filters( 'user_registration_my_account_edit_profile_field_value', $value, $key );
@@ -178,7 +178,7 @@ class UR_Shortcode_My_Account {
178
  } elseif ( isset( $user_data->$new_key ) && in_array( $new_key, ur_get_user_table_fields() ) ) {
179
  $profile[ $key ]['value'] = apply_filters( 'user_registration_my_account_edit_profile_field_value', $user_data->$new_key, $key );
180
 
181
- } elseif ( isset( $user_data->display_name ) && $key === 'user_registration_display_name' ) {
182
  $profile[ $key ]['value'] = apply_filters( 'user_registration_my_account_edit_profile_field_value', $user_data->display_name, $key );
183
  }
184
  }
@@ -200,11 +200,11 @@ class UR_Shortcode_My_Account {
200
  */
201
  public static function edit_account() {
202
  $user_id = get_current_user_id();
203
- $form_id = ur_get_form_id_by_userid( $user_id );
204
  $enable_strong_password = ur_get_single_post_meta( $form_id, 'user_registration_form_setting_enable_strong_password' );
205
- $minimum_password_strength = ur_get_single_post_meta( $form_id, 'user_registration_form_setting_minimum_password_strength');
206
 
207
- if ( 'yes' === $enable_strong_password ) {
208
  wp_enqueue_script( 'ur-password-strength-meter' );
209
  }
210
 
@@ -232,38 +232,42 @@ class UR_Shortcode_My_Account {
232
  * Process reset key / login from email confirmation link
233
  */
234
  } elseif ( ! empty( $_GET['show-reset-form'] ) ) {
 
235
  if ( isset( $_COOKIE[ 'wp-resetpass-' . COOKIEHASH ] ) && 0 < strpos( $_COOKIE[ 'wp-resetpass-' . COOKIEHASH ], ':' ) ) {
236
  list( $rp_login, $rp_key ) = array_map( 'ur_clean', explode( ':', wp_unslash( $_COOKIE[ 'wp-resetpass-' . COOKIEHASH ] ), 2 ) );
237
  $user = self::check_password_reset_key( $rp_key, $rp_login );
238
- $form_id = ur_get_form_id_by_userid( $user->ID );
239
- $enable_strong_password = ur_get_single_post_meta( $form_id, 'user_registration_form_setting_enable_strong_password' );
240
- $minimum_password_strength = ur_get_single_post_meta( $form_id, 'user_registration_form_setting_minimum_password_strength' );
241
-
242
- if ( 'yes' === $enable_strong_password ) {
243
-
244
- // Enqueue script.
245
- wp_enqueue_script( 'ur-password-strength-meter' );
246
- wp_localize_script( 'ur-password-strength-meter', 'enable_strong_password', $enable_strong_password );
247
- }
248
 
249
- // reset key / login is correct, display reset password form with hidden key / login values
250
- if ( is_object( $user ) ) {
251
- return ur_get_template(
252
- 'myaccount/form-reset-password.php',
253
- array(
254
- 'key' => $rp_key,
255
- 'login' => $rp_login,
256
- 'enable_strong_password' => $enable_strong_password,
257
- 'minimum_password_strength' => $minimum_password_strength,
258
- )
259
- );
260
- } else {
261
- self::set_reset_password_cookie();
 
 
 
 
 
 
 
 
 
 
 
 
 
262
  }
263
  }
264
  }
265
 
266
- // Show lost password form by default
267
  ur_get_template(
268
  'myaccount/form-lost-password.php',
269
  array(
@@ -333,7 +337,7 @@ class UR_Shortcode_My_Account {
333
  // Get password reset key (function introduced in WordPress 4.4).
334
  $key = get_password_reset_key( $user_data );
335
 
336
- // Send email notification
337
  if ( UR_Emailer::lost_password_email( $user_login, $user_data, $key ) == false ) {
338
  ur_add_notice( __( 'The email could not be sent. Contact your site administrator. ', 'user-registration' ), 'error' );
339
  return false;
@@ -347,9 +351,9 @@ class UR_Shortcode_My_Account {
347
  *
348
  * @uses $wpdb WordPress Database object
349
  *
350
- * @param string $key Hash to validate sending user's password
351
- * @param string $login The user login
352
- * @return WP_User|bool User's database row on success, false for invalid keys
353
  */
354
  public static function check_password_reset_key( $key, $login ) {
355
  // Check for the password reset key.
@@ -367,8 +371,8 @@ class UR_Shortcode_My_Account {
367
  /**
368
  * Handles resetting the user's password.
369
  *
370
- * @param object $user The user
371
- * @param string $new_pass New password for the user in plaintext
372
  */
373
  public static function reset_password( $user, $new_pass ) {
374
  do_action( 'password_reset', $user, $new_pass );
108
  }
109
  }
110
 
111
+ // Start output buffer since the html may need discarding for BW compatibility.
112
  ob_start();
113
 
114
  if ( isset( $wp->query_vars['user-logout'] ) ) {
117
 
118
  do_action( 'before-user-registration-my-account-shortcode' );
119
 
120
+ // Collect notices before output.
121
  include_once UR_ABSPATH . 'includes/functions-ur-notice.php';
122
  $notices = ur_get_notices();
123
 
124
+ // Output the new account page.
125
  self::my_account( $atts );
126
 
127
+ // Send output buffer.
128
  ob_end_flush();
129
  }
130
  }
151
  wp_enqueue_script( 'ur-my-account' );
152
 
153
  $user_id = get_current_user_id();
154
+ $form_id = ur_get_form_id_by_userid( $user_id );
155
 
156
  $profile = user_registration_form_data( $user_id, $form_id );
157
 
166
  return;
167
  }
168
 
169
+ // Prepare values.
170
  foreach ( $profile as $key => $field ) {
171
  $value = get_user_meta( get_current_user_id(), $key, true );
172
  $profile[ $key ]['value'] = apply_filters( 'user_registration_my_account_edit_profile_field_value', $value, $key );
178
  } elseif ( isset( $user_data->$new_key ) && in_array( $new_key, ur_get_user_table_fields() ) ) {
179
  $profile[ $key ]['value'] = apply_filters( 'user_registration_my_account_edit_profile_field_value', $user_data->$new_key, $key );
180
 
181
+ } elseif ( isset( $user_data->display_name ) && 'user_registration_display_name' === $key ) {
182
  $profile[ $key ]['value'] = apply_filters( 'user_registration_my_account_edit_profile_field_value', $user_data->display_name, $key );
183
  }
184
  }
200
  */
201
  public static function edit_account() {
202
  $user_id = get_current_user_id();
203
+ $form_id = ur_get_form_id_by_userid( $user_id );
204
  $enable_strong_password = ur_get_single_post_meta( $form_id, 'user_registration_form_setting_enable_strong_password' );
205
+ $minimum_password_strength = ur_get_single_post_meta( $form_id, 'user_registration_form_setting_minimum_password_strength' );
206
 
207
+ if ( 'yes' === $enable_strong_password || '1' === $enable_strong_password ) {
208
  wp_enqueue_script( 'ur-password-strength-meter' );
209
  }
210
 
232
  * Process reset key / login from email confirmation link
233
  */
234
  } elseif ( ! empty( $_GET['show-reset-form'] ) ) {
235
+
236
  if ( isset( $_COOKIE[ 'wp-resetpass-' . COOKIEHASH ] ) && 0 < strpos( $_COOKIE[ 'wp-resetpass-' . COOKIEHASH ], ':' ) ) {
237
  list( $rp_login, $rp_key ) = array_map( 'ur_clean', explode( ':', wp_unslash( $_COOKIE[ 'wp-resetpass-' . COOKIEHASH ] ), 2 ) );
238
  $user = self::check_password_reset_key( $rp_key, $rp_login );
 
 
 
 
 
 
 
 
 
 
239
 
240
+ if ( ! empty( $user ) ) {
241
+ $form_id = ur_get_form_id_by_userid( $user->ID );
242
+ $enable_strong_password = ur_get_single_post_meta( $form_id, 'user_registration_form_setting_enable_strong_password' );
243
+ $minimum_password_strength = ur_get_single_post_meta( $form_id, 'user_registration_form_setting_minimum_password_strength' );
244
+
245
+ if ( 'yes' === $enable_strong_password || '1' === $enable_strong_password ) {
246
+
247
+ // Enqueue script.
248
+ wp_enqueue_script( 'ur-password-strength-meter' );
249
+ wp_localize_script( 'ur-password-strength-meter', 'enable_strong_password', $enable_strong_password );
250
+ }
251
+
252
+ // reset key / login is correct, display reset password form with hidden key / login values.
253
+ if ( is_object( $user ) ) {
254
+ return ur_get_template(
255
+ 'myaccount/form-reset-password.php',
256
+ array(
257
+ 'key' => $rp_key,
258
+ 'login' => $rp_login,
259
+ 'enable_strong_password' => $enable_strong_password,
260
+ 'minimum_password_strength' => $minimum_password_strength,
261
+ )
262
+ );
263
+ } else {
264
+ self::set_reset_password_cookie();
265
+ }
266
  }
267
  }
268
  }
269
 
270
+ // Show lost password form by default.
271
  ur_get_template(
272
  'myaccount/form-lost-password.php',
273
  array(
337
  // Get password reset key (function introduced in WordPress 4.4).
338
  $key = get_password_reset_key( $user_data );
339
 
340
+ // Send email notification.
341
  if ( UR_Emailer::lost_password_email( $user_login, $user_data, $key ) == false ) {
342
  ur_add_notice( __( 'The email could not be sent. Contact your site administrator. ', 'user-registration' ), 'error' );
343
  return false;
351
  *
352
  * @uses $wpdb WordPress Database object
353
  *
354
+ * @param string $key Hash to validate sending user's password.
355
+ * @param string $login The user login.
356
+ * @return WP_User|bool User's database row on success, false for invalid keys.
357
  */
358
  public static function check_password_reset_key( $key, $login ) {
359
  // Check for the password reset key.
371
  /**
372
  * Handles resetting the user's password.
373
  *
374
+ * @param object $user The user.
375
+ * @param string $new_pass New password for the user in plaintext.
376
  */
377
  public static function reset_password( $user, $new_pass ) {
378
  do_action( 'password_reset', $user, $new_pass );
languages/user-registration.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the User Registration package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: User Registration 1.8.0\n"
6
  "Report-Msgid-Bugs-To: wpeverest@gmail.com\n"
7
- "POT-Creation-Date: 2020-02-13 10:30:49+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -13,12 +13,12 @@ msgstr ""
13
  "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
14
  "X-Generator: grunt-wp-i18n 1.0.3\n"
15
 
16
- #: includes/abstracts/abstract-ur-form-field.php:476
17
  #: includes/admin/functions-ur-admin.php:425
18
  msgid "General Settings"
19
  msgstr ""
20
 
21
- #: includes/abstracts/abstract-ur-form-field.php:484
22
  msgid "Advance Settings"
23
  msgstr ""
24
 
@@ -45,7 +45,7 @@ msgstr ""
45
 
46
  #: includes/admin/class-ur-admin-export-users.php:52
47
  #: includes/admin/class-ur-admin-import-export-forms.php:51
48
- #: includes/admin/class-ur-admin-menus.php:505
49
  #: includes/admin/class-ur-admin-notices.php:121
50
  #: includes/admin/class-ur-admin-settings.php:68
51
  #: includes/admin/class-ur-admin-status.php:169
@@ -118,15 +118,15 @@ msgstr ""
118
  msgid "Please select json file to import form data."
119
  msgstr ""
120
 
121
- #: includes/admin/class-ur-admin-menus.php:416
122
  msgid "Copy of "
123
  msgstr ""
124
 
125
- #: includes/admin/class-ur-admin-menus.php:480
126
  msgid "You do not have permissions to edit forms!"
127
  msgstr ""
128
 
129
- #: includes/admin/class-ur-admin-menus.php:509
130
  msgid "You do not have permissions to delete forms!"
131
  msgstr ""
132
 
@@ -134,74 +134,74 @@ msgstr ""
134
  msgid "User Registration"
135
  msgstr ""
136
 
137
- #: includes/admin/class-ur-admin-menus.php:584
138
  msgid "User Registration settings"
139
  msgstr ""
140
 
141
- #: includes/admin/class-ur-admin-menus.php:585
142
- #: includes/class-ur-install.php:639
143
  msgid "Settings"
144
  msgstr ""
145
 
146
- #: includes/admin/class-ur-admin-menus.php:601
147
  msgid "User Registration Status"
148
  msgstr ""
149
 
150
- #: includes/admin/class-ur-admin-menus.php:602
151
  #: includes/class-ur-email-confirmation.php:135
152
  msgid "Status"
153
  msgstr ""
154
 
155
- #: includes/admin/class-ur-admin-menus.php:618
156
- #: includes/admin/class-ur-admin-menus.php:619
157
- #: includes/admin/class-ur-admin-menus.php:667
158
  msgid "Add New"
159
  msgstr ""
160
 
161
- #: includes/admin/class-ur-admin-menus.php:635
162
  msgid "User Registration extensions"
163
  msgstr ""
164
 
165
- #: includes/admin/class-ur-admin-menus.php:636
166
  msgid "Extensions"
167
  msgstr ""
168
 
169
- #: includes/admin/class-ur-admin-menus.php:673
170
  msgid "Search Registration"
171
  msgstr ""
172
 
173
- #: includes/admin/class-ur-admin-menus.php:690
174
  msgid "Create Form"
175
  msgstr ""
176
 
177
- #: includes/admin/class-ur-admin-menus.php:692
178
  msgid "Update form"
179
  msgstr ""
180
 
181
- #: includes/admin/class-ur-admin-menus.php:736
182
  msgid "User Registration endpoints"
183
  msgstr ""
184
 
185
- #: includes/admin/class-ur-admin-menus.php:760
186
  #: includes/admin/settings/class-ur-settings-general.php:175
187
  #: includes/class-ur-query.php:78
188
  msgid "Lost password"
189
  msgstr ""
190
 
191
- #: includes/admin/class-ur-admin-menus.php:798
192
  msgid "Select all"
193
  msgstr ""
194
 
195
- #: includes/admin/class-ur-admin-menus.php:802
196
  msgid "Add to menu"
197
  msgstr ""
198
 
199
- #: includes/admin/class-ur-admin-menus.php:847
200
- #: includes/admin/views/html-admin-page-forms.php:107
201
  msgid "Untitled"
202
  msgstr ""
203
 
204
- #: includes/admin/class-ur-admin-menus.php:946
205
  msgid "Empty form data"
206
  msgstr ""
207
 
@@ -329,7 +329,7 @@ msgstr ""
329
  msgid "The changes you made will be lost if you navigate away from this page."
330
  msgstr ""
331
 
332
- #: includes/admin/class-ur-admin-settings.php:556
333
  msgid "Select a page&hellip;"
334
  msgstr ""
335
 
@@ -366,33 +366,33 @@ msgstr[1] ""
366
  msgid "Source"
367
  msgstr ""
368
 
369
- #: includes/admin/class-ur-admin-user-list-manager.php:247
370
  msgid "All statuses"
371
  msgstr ""
372
 
373
- #: includes/admin/class-ur-admin-user-list-manager.php:249
374
  msgid "All approval statuses"
375
  msgstr ""
376
 
377
- #: includes/admin/class-ur-admin-user-list-manager.php:258
378
  msgid "Filter"
379
  msgstr ""
380
 
381
- #: includes/admin/class-ur-admin-user-list-manager.php:339
382
- #: includes/admin/class-ur-admin-user-list-manager.php:340
383
  msgid "Approve"
384
  msgstr ""
385
 
386
- #: includes/admin/class-ur-admin-user-list-manager.php:342
387
- #: includes/admin/class-ur-admin-user-list-manager.php:343
388
  msgid "Deny"
389
  msgstr ""
390
 
391
- #: includes/admin/class-ur-admin-user-list-manager.php:417
392
  msgid "Approval Status"
393
  msgstr ""
394
 
395
- #: includes/admin/class-ur-admin-user-list-manager.php:430
396
  msgid "If user has access to sign in or not."
397
  msgstr ""
398
 
@@ -400,18 +400,27 @@ msgstr ""
400
  msgid "Impossible to create an UR_Admin_User_Manager object. Unkwon data type."
401
  msgstr ""
402
 
403
- #: includes/admin/class-ur-admin-user-manager.php:312
 
 
404
  msgid "approved"
405
  msgstr ""
406
 
407
- #: includes/admin/class-ur-admin-user-manager.php:316
 
 
408
  msgid "pending"
409
  msgstr ""
410
 
411
- #: includes/admin/class-ur-admin-user-manager.php:320
 
412
  msgid "denied"
413
  msgstr ""
414
 
 
 
 
 
415
  #: includes/admin/class-ur-admin.php:121
416
  #. translators: 1: WooCommerce 2:: five stars
417
  msgid "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
@@ -654,7 +663,7 @@ msgid "Success Messages"
654
  msgstr ""
655
 
656
  #: includes/admin/settings/class-ur-settings-general.php:219
657
- #: includes/functions-ur-core.php:994
658
  msgid "Manual login after registration"
659
  msgstr ""
660
 
@@ -670,7 +679,7 @@ msgid "User successfully registered."
670
  msgstr ""
671
 
672
  #: includes/admin/settings/class-ur-settings-general.php:229
673
- #: includes/functions-ur-core.php:995
674
  msgid "Email confirmation to login"
675
  msgstr ""
676
 
@@ -688,7 +697,7 @@ msgid ""
688
  msgstr ""
689
 
690
  #: includes/admin/settings/class-ur-settings-general.php:239
691
- #: includes/functions-ur-core.php:997
692
  msgid "Admin approval after registration"
693
  msgstr ""
694
 
@@ -801,7 +810,7 @@ msgid "Captcha code error, please try again."
801
  msgstr ""
802
 
803
  #: includes/admin/settings/class-ur-settings-general.php:358
804
- #: includes/functions-ur-core.php:949
805
  msgid "Form Template"
806
  msgstr ""
807
 
@@ -810,27 +819,27 @@ msgid "Choose the login form template."
810
  msgstr ""
811
 
812
  #: includes/admin/settings/class-ur-settings-general.php:366
813
- #: includes/functions-ur-core.php:956
814
  msgid "Default"
815
  msgstr ""
816
 
817
  #: includes/admin/settings/class-ur-settings-general.php:367
818
- #: includes/functions-ur-core.php:957
819
  msgid "Bordered"
820
  msgstr ""
821
 
822
  #: includes/admin/settings/class-ur-settings-general.php:368
823
- #: includes/functions-ur-core.php:958
824
  msgid "Flat"
825
  msgstr ""
826
 
827
  #: includes/admin/settings/class-ur-settings-general.php:369
828
- #: includes/functions-ur-core.php:959
829
  msgid "Rounded"
830
  msgstr ""
831
 
832
  #: includes/admin/settings/class-ur-settings-general.php:370
833
- #: includes/functions-ur-core.php:960
834
  msgid "Rounded Edge"
835
  msgstr ""
836
 
@@ -839,6 +848,12 @@ msgid "Enable remember me"
839
  msgstr ""
840
 
841
  #: includes/admin/settings/class-ur-settings-general.php:376
 
 
 
 
 
 
842
  msgid "Check to enable/disable remember me."
843
  msgstr ""
844
 
@@ -846,7 +861,7 @@ msgstr ""
846
  msgid "Enable lost password"
847
  msgstr ""
848
 
849
- #: includes/admin/settings/class-ur-settings-general.php:386
850
  msgid "Check to enable/disable lost password."
851
  msgstr ""
852
 
@@ -854,7 +869,7 @@ msgstr ""
854
  msgid "Enable google reCaptcha"
855
  msgstr ""
856
 
857
- #: includes/admin/settings/class-ur-settings-general.php:396
858
  msgid "Enable %1$s %2$s reCaptcha %3$s support"
859
  msgstr ""
860
 
@@ -884,9 +899,30 @@ msgid "Prevent Core Login"
884
  msgstr ""
885
 
886
  #: includes/admin/settings/class-ur-settings-general.php:425
 
 
 
 
887
  msgid "Check to disable WordPress default login or registration page."
888
  msgstr ""
889
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
890
  #: includes/admin/settings/class-ur-settings-import-export.php:27
891
  msgid "Import/Export"
892
  msgstr ""
@@ -1043,14 +1079,14 @@ msgstr ""
1043
 
1044
  #: includes/admin/settings/emails/class-ur-settings-admin-email.php:100
1045
  msgid ""
1046
- "Hi Admin, <br/>\r\n"
1047
- "\r\n"
1048
  "A new user {{username}} - {{email}} has successfully registered to your "
1049
- "site <a href=\"{{home_url}}\">{{blog_info}}</a>. <br/>\r\n"
1050
- "\r\n"
1051
  "Please review the user role and details at '<b>Users</b>' menu in your WP "
1052
- "dashboard. <br/>\r\n"
1053
- "\r\n"
1054
  "Thank You!"
1055
  msgstr ""
1056
 
@@ -1079,13 +1115,13 @@ msgstr ""
1079
 
1080
  #: includes/admin/settings/emails/class-ur-settings-awaiting-admin-approval-email.php:92
1081
  msgid ""
1082
- "Hi {{username}}, <br/>\r\n"
1083
- "\r\n"
1084
- "You have registered on <a href=\"{{home_url}}\">{{blog_info}}</a>. <br/>\r\n"
1085
- "\r\n"
1086
  "Please wait until the site admin approves your registration. You will be "
1087
- "notified after it is approved. <br/>\r\n"
1088
- "\r\n"
1089
  "Thank You!"
1090
  msgstr ""
1091
 
@@ -1107,14 +1143,14 @@ msgstr ""
1107
 
1108
  #: includes/admin/settings/emails/class-ur-settings-email-confirmation.php:86
1109
  msgid ""
1110
- "Hi {{username}}, <br/>\r\n"
1111
- "\r\n"
1112
- "You have registered on <a href=\"{{home_url}}\">{{blog_info}}</a>. <br/>\r\n"
1113
- "\r\n"
1114
  "Please click on this verification link "
1115
  "{{home_url}}/{{ur_login}}?ur_token={{email_token}} to confirm registration. "
1116
- "<br/>\r\n"
1117
- "\r\n"
1118
  "Thank You!"
1119
  msgstr ""
1120
 
@@ -1138,13 +1174,13 @@ msgstr ""
1138
 
1139
  #: includes/admin/settings/emails/class-ur-settings-profile-details-changed-email.php:103
1140
  msgid ""
1141
- "User has changed profile information for the following account:<br/>\r\n"
1142
- "\r\n"
1143
- "SiteName: {{blog_info}} <br/>\r\n"
1144
- "Username: {{username}} <br/>\r\n"
1145
- "\r\n"
1146
- "{{all_fields}}\r\n"
1147
- "<br/>\r\n"
1148
  "Thank You!"
1149
  msgstr ""
1150
 
@@ -1170,15 +1206,15 @@ msgstr ""
1170
 
1171
  #: includes/admin/settings/emails/class-ur-settings-registration-approved-email.php:92
1172
  msgid ""
1173
- "Hi {{username}}, <br/>\r\n"
1174
- "\r\n"
1175
  "Your registration on <a href=\"{{home_url}}\">{{blog_info}}</a> has been "
1176
- "approved. <br/>\r\n"
1177
- "\r\n"
1178
  "Please visit '<b>My Account</b>' page to edit your account details and "
1179
  "create your user profile on <a href=\"{{home_url}}\">{{blog_info}}</a>. "
1180
- "<br/>\r\n"
1181
- "\r\n"
1182
  "Thank You!"
1183
  msgstr ""
1184
 
@@ -1204,13 +1240,13 @@ msgstr ""
1204
 
1205
  #: includes/admin/settings/emails/class-ur-settings-registration-denied-email.php:92
1206
  msgid ""
1207
- "Hi {{username}}, <br/>\r\n"
1208
- "\r\n"
1209
- "You have registered on <a href=\"{{home_url}}\">{{blog_info}}</a>. <br/>\r\n"
1210
- "\r\n"
1211
  "Unfortunately your registration is denied. Sorry for the inconvenience. "
1212
- "<br/>\r\n"
1213
- "\r\n"
1214
  "Thank You!"
1215
  msgstr ""
1216
 
@@ -1234,15 +1270,15 @@ msgstr ""
1234
 
1235
  #: includes/admin/settings/emails/class-ur-settings-registration-pending-email.php:95
1236
  msgid ""
1237
- "Hi {{username}}, <br/>\r\n"
1238
- "\r\n"
1239
  "Your registration on <a href=\"{{home_url}}\">{{blog_info}}</a> has been "
1240
- "changed to pending. <br/>\r\n"
1241
- "\r\n"
1242
- "Sorry for the inconvenience. <br/>\r\n"
1243
- "\r\n"
1244
- "You will be notified after it is approved. <br/>\r\n"
1245
- "\r\n"
1246
  "Thank You!"
1247
  msgstr ""
1248
 
@@ -1302,15 +1338,15 @@ msgstr ""
1302
 
1303
  #: includes/admin/settings/emails/class-ur-settings-successfully-registered-email.php:91
1304
  msgid ""
1305
- "Hi {{username}}, <br/>\r\n"
1306
- "\r\n"
1307
  "You have successfully completed user registration on <a "
1308
- "href=\"{{home_url}}\">{{blog_info}}</a>. <br/>\r\n"
1309
- "\r\n"
1310
  "Please visit '<b>My Account</b>' page to edit your account details and "
1311
  "create your user profile on <a href=\"{{home_url}}\">{{blog_info}}</a>. "
1312
- "<br/>\r\n"
1313
- "\r\n"
1314
  "Thank You!"
1315
  msgstr ""
1316
 
@@ -1384,23 +1420,23 @@ msgstr ""
1384
  msgid "Form Setting"
1385
  msgstr ""
1386
 
1387
- #: includes/admin/views/html-admin-page-forms.php:69
1388
  msgid "Default User Fields"
1389
  msgstr ""
1390
 
1391
- #: includes/admin/views/html-admin-page-forms.php:72
1392
  msgid "Extra Fields"
1393
  msgstr ""
1394
 
1395
- #: includes/admin/views/html-admin-page-forms.php:119
1396
  msgid "Get Support"
1397
  msgstr ""
1398
 
1399
- #: includes/admin/views/html-admin-page-forms.php:120
1400
  msgid "Create Login Form"
1401
  msgstr ""
1402
 
1403
- #: includes/admin/views/html-admin-page-forms.php:121
1404
  msgid "Documentation"
1405
  msgstr ""
1406
 
@@ -1615,23 +1651,23 @@ msgstr ""
1615
  #: includes/class-ur-form-handler.php:346
1616
  #: includes/class-ur-form-handler.php:350
1617
  #: includes/class-ur-form-handler.php:359
1618
- #: includes/class-ur-user-approval.php:192
1619
- #: includes/class-ur-user-approval.php:197
1620
- #: includes/class-ur-user-approval.php:213
1621
- #: includes/class-ur-user-approval.php:227 includes/functions-ur-account.php:53
1622
  #: includes/functions-ur-account.php:56
1623
  msgid "ERROR:"
1624
  msgstr ""
1625
 
1626
  #: includes/class-ur-email-confirmation.php:370
1627
- #: includes/class-ur-user-approval.php:213
1628
  msgid ""
1629
  "Your account is still pending approval. Verify your email by clicking on "
1630
  "the link sent to your email. %s"
1631
  msgstr ""
1632
 
1633
  #: includes/class-ur-email-confirmation.php:370
1634
- #: includes/class-ur-user-approval.php:213
1635
  msgid "Resend Verification Link"
1636
  msgstr ""
1637
 
@@ -1789,27 +1825,27 @@ msgid ""
1789
  "and symbols like ! \" ? $ % ^ & )."
1790
  msgstr ""
1791
 
1792
- #: includes/class-ur-install.php:369
1793
  msgid "Default form"
1794
  msgstr ""
1795
 
1796
- #: includes/class-ur-install.php:639
1797
  msgid "View User Registration settings"
1798
  msgstr ""
1799
 
1800
- #: includes/class-ur-install.php:655
1801
  msgid "View User Registration documentation"
1802
  msgstr ""
1803
 
1804
- #: includes/class-ur-install.php:655
1805
  msgid "Docs"
1806
  msgstr ""
1807
 
1808
- #: includes/class-ur-install.php:656
1809
  msgid "Visit free customer support"
1810
  msgstr ""
1811
 
1812
- #: includes/class-ur-install.php:656
1813
  msgid "Free support"
1814
  msgstr ""
1815
 
@@ -2140,25 +2176,25 @@ msgstr ""
2140
  msgid "Profile Details"
2141
  msgstr ""
2142
 
2143
- #: includes/class-ur-user-approval.php:192
2144
  msgid "Your account is still pending approval."
2145
  msgstr ""
2146
 
2147
- #: includes/class-ur-user-approval.php:197
2148
  msgid "Your account has been denied."
2149
  msgstr ""
2150
 
2151
- #: includes/class-ur-user-approval.php:227
2152
  msgid ""
2153
  "Your account is still pending payment. Process the payment by clicking on "
2154
  "this: %s"
2155
  msgstr ""
2156
 
2157
- #: includes/class-ur-user-approval.php:227
2158
  msgid "link"
2159
  msgstr ""
2160
 
2161
- #: includes/class-ur-user-approval.php:310
2162
  msgid ""
2163
  "Your account is still awaiting admin approval. Reset Password is not "
2164
  "allowed."
@@ -3536,32 +3572,36 @@ msgid "This option lets you enter redirect path after successful user registrati
3536
  msgstr ""
3537
 
3538
  #: includes/functions-ur-core.php:927
3539
- msgid "Form Submit Button Label"
3540
  msgstr ""
3541
 
3542
  #: includes/functions-ur-core.php:938
 
 
 
 
3543
  msgid "Enable %1$s %2$s reCaptcha %3$s Support"
3544
  msgstr ""
3545
 
3546
- #: includes/functions-ur-core.php:967
3547
  msgid "Custom CSS class"
3548
  msgstr ""
3549
 
3550
- #: includes/functions-ur-core.php:996
3551
  msgid "Auto login after registration"
3552
  msgstr ""
3553
 
3554
- #: includes/functions-ur-core.php:1186
3555
  msgid ""
3556
  "The class <code>%s</code> provided by user_registration_logging_class "
3557
  "filter must implement <code>UR_Logger_Interface</code>."
3558
  msgstr ""
3559
 
3560
- #: includes/functions-ur-core.php:1287
3561
  msgid "Disable emails"
3562
  msgstr ""
3563
 
3564
- #: includes/functions-ur-core.php:1288
3565
  msgid "Disable all emails sent after registration."
3566
  msgstr ""
3567
 
@@ -3576,7 +3616,7 @@ msgstr ""
3576
  msgid "required"
3577
  msgstr ""
3578
 
3579
- #: includes/functions-ur-template.php:396
3580
  msgid "Choose an option"
3581
  msgstr ""
3582
 
@@ -3606,20 +3646,20 @@ msgstr ""
3606
  msgid "No profile details found."
3607
  msgstr ""
3608
 
3609
- #: includes/shortcodes/class-ur-shortcode-my-account.php:289
3610
  msgid "Enter a username or email address."
3611
  msgstr ""
3612
 
3613
- #: includes/shortcodes/class-ur-shortcode-my-account.php:310
3614
- #: includes/shortcodes/class-ur-shortcode-my-account.php:315
3615
  msgid "Invalid username or email."
3616
  msgstr ""
3617
 
3618
- #: includes/shortcodes/class-ur-shortcode-my-account.php:325
3619
  msgid "Password reset is not allowed for this user"
3620
  msgstr ""
3621
 
3622
- #: includes/shortcodes/class-ur-shortcode-my-account.php:338
3623
  msgid "The email could not be sent. Contact your site administrator. "
3624
  msgstr ""
3625
 
@@ -3680,17 +3720,17 @@ msgstr ""
3680
  msgid "Current password"
3681
  msgstr ""
3682
 
3683
- #: templates/myaccount/form-edit-password.php:44
3684
  #: templates/myaccount/form-reset-password.php:32
3685
  msgid "New password"
3686
  msgstr ""
3687
 
3688
- #: templates/myaccount/form-edit-password.php:48
3689
  msgid "Confirm new password"
3690
  msgstr ""
3691
 
3692
- #: templates/myaccount/form-edit-password.php:61
3693
- #: templates/myaccount/form-edit-profile.php:168
3694
  msgid "Save changes"
3695
  msgstr ""
3696
 
@@ -3966,22 +4006,22 @@ msgctxt "The action on users list page"
3966
  msgid "Unverify"
3967
  msgstr ""
3968
 
3969
- #: includes/class-ur-install.php:308
3970
  msgctxt "Page slug"
3971
  msgid "my-account"
3972
  msgstr ""
3973
 
3974
- #: includes/class-ur-install.php:317
3975
  msgctxt "Page slug"
3976
  msgid "registration"
3977
  msgstr ""
3978
 
3979
- #: includes/class-ur-install.php:309
3980
  msgctxt "Page title"
3981
  msgid "My Account"
3982
  msgstr ""
3983
 
3984
- #: includes/class-ur-install.php:318
3985
  msgctxt "Page title"
3986
  msgid "Registration"
3987
  msgstr ""
2
  # This file is distributed under the same license as the User Registration package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: User Registration 1.8.2\n"
6
  "Report-Msgid-Bugs-To: wpeverest@gmail.com\n"
7
+ "POT-Creation-Date: 2020-03-18 10:43:45+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
13
  "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
14
  "X-Generator: grunt-wp-i18n 1.0.3\n"
15
 
16
+ #: includes/abstracts/abstract-ur-form-field.php:479
17
  #: includes/admin/functions-ur-admin.php:425
18
  msgid "General Settings"
19
  msgstr ""
20
 
21
+ #: includes/abstracts/abstract-ur-form-field.php:489
22
  msgid "Advance Settings"
23
  msgstr ""
24
 
45
 
46
  #: includes/admin/class-ur-admin-export-users.php:52
47
  #: includes/admin/class-ur-admin-import-export-forms.php:51
48
+ #: includes/admin/class-ur-admin-menus.php:510
49
  #: includes/admin/class-ur-admin-notices.php:121
50
  #: includes/admin/class-ur-admin-settings.php:68
51
  #: includes/admin/class-ur-admin-status.php:169
118
  msgid "Please select json file to import form data."
119
  msgstr ""
120
 
121
+ #: includes/admin/class-ur-admin-menus.php:421
122
  msgid "Copy of "
123
  msgstr ""
124
 
125
+ #: includes/admin/class-ur-admin-menus.php:485
126
  msgid "You do not have permissions to edit forms!"
127
  msgstr ""
128
 
129
+ #: includes/admin/class-ur-admin-menus.php:514
130
  msgid "You do not have permissions to delete forms!"
131
  msgstr ""
132
 
134
  msgid "User Registration"
135
  msgstr ""
136
 
137
+ #: includes/admin/class-ur-admin-menus.php:589
138
  msgid "User Registration settings"
139
  msgstr ""
140
 
141
+ #: includes/admin/class-ur-admin-menus.php:590
142
+ #: includes/class-ur-install.php:638
143
  msgid "Settings"
144
  msgstr ""
145
 
146
+ #: includes/admin/class-ur-admin-menus.php:606
147
  msgid "User Registration Status"
148
  msgstr ""
149
 
150
+ #: includes/admin/class-ur-admin-menus.php:607
151
  #: includes/class-ur-email-confirmation.php:135
152
  msgid "Status"
153
  msgstr ""
154
 
155
+ #: includes/admin/class-ur-admin-menus.php:623
156
+ #: includes/admin/class-ur-admin-menus.php:624
157
+ #: includes/admin/class-ur-admin-menus.php:672
158
  msgid "Add New"
159
  msgstr ""
160
 
161
+ #: includes/admin/class-ur-admin-menus.php:640
162
  msgid "User Registration extensions"
163
  msgstr ""
164
 
165
+ #: includes/admin/class-ur-admin-menus.php:641
166
  msgid "Extensions"
167
  msgstr ""
168
 
169
+ #: includes/admin/class-ur-admin-menus.php:678
170
  msgid "Search Registration"
171
  msgstr ""
172
 
173
+ #: includes/admin/class-ur-admin-menus.php:695
174
  msgid "Create Form"
175
  msgstr ""
176
 
177
+ #: includes/admin/class-ur-admin-menus.php:697
178
  msgid "Update form"
179
  msgstr ""
180
 
181
+ #: includes/admin/class-ur-admin-menus.php:741
182
  msgid "User Registration endpoints"
183
  msgstr ""
184
 
185
+ #: includes/admin/class-ur-admin-menus.php:765
186
  #: includes/admin/settings/class-ur-settings-general.php:175
187
  #: includes/class-ur-query.php:78
188
  msgid "Lost password"
189
  msgstr ""
190
 
191
+ #: includes/admin/class-ur-admin-menus.php:803
192
  msgid "Select all"
193
  msgstr ""
194
 
195
+ #: includes/admin/class-ur-admin-menus.php:807
196
  msgid "Add to menu"
197
  msgstr ""
198
 
199
+ #: includes/admin/class-ur-admin-menus.php:852
200
+ #: includes/admin/views/html-admin-page-forms.php:116
201
  msgid "Untitled"
202
  msgstr ""
203
 
204
+ #: includes/admin/class-ur-admin-menus.php:951
205
  msgid "Empty form data"
206
  msgstr ""
207
 
329
  msgid "The changes you made will be lost if you navigate away from this page."
330
  msgstr ""
331
 
332
+ #: includes/admin/class-ur-admin-settings.php:561
333
  msgid "Select a page&hellip;"
334
  msgstr ""
335
 
366
  msgid "Source"
367
  msgstr ""
368
 
369
+ #: includes/admin/class-ur-admin-user-list-manager.php:249
370
  msgid "All statuses"
371
  msgstr ""
372
 
373
+ #: includes/admin/class-ur-admin-user-list-manager.php:251
374
  msgid "All approval statuses"
375
  msgstr ""
376
 
377
+ #: includes/admin/class-ur-admin-user-list-manager.php:260
378
  msgid "Filter"
379
  msgstr ""
380
 
381
+ #: includes/admin/class-ur-admin-user-list-manager.php:341
382
+ #: includes/admin/class-ur-admin-user-list-manager.php:342
383
  msgid "Approve"
384
  msgstr ""
385
 
386
+ #: includes/admin/class-ur-admin-user-list-manager.php:344
387
+ #: includes/admin/class-ur-admin-user-list-manager.php:345
388
  msgid "Deny"
389
  msgstr ""
390
 
391
+ #: includes/admin/class-ur-admin-user-list-manager.php:419
392
  msgid "Approval Status"
393
  msgstr ""
394
 
395
+ #: includes/admin/class-ur-admin-user-list-manager.php:432
396
  msgid "If user has access to sign in or not."
397
  msgstr ""
398
 
400
  msgid "Impossible to create an UR_Admin_User_Manager object. Unkwon data type."
401
  msgstr ""
402
 
403
+ #: includes/admin/class-ur-admin-user-manager.php:152
404
+ #: includes/admin/class-ur-admin-user-manager.php:171
405
+ #: includes/admin/class-ur-admin-user-manager.php:335
406
  msgid "approved"
407
  msgstr ""
408
 
409
+ #: includes/admin/class-ur-admin-user-manager.php:156
410
+ #: includes/admin/class-ur-admin-user-manager.php:169
411
+ #: includes/admin/class-ur-admin-user-manager.php:339
412
  msgid "pending"
413
  msgstr ""
414
 
415
+ #: includes/admin/class-ur-admin-user-manager.php:160
416
+ #: includes/admin/class-ur-admin-user-manager.php:343
417
  msgid "denied"
418
  msgstr ""
419
 
420
+ #: includes/admin/class-ur-admin-user-manager.php:167
421
+ msgid "verified"
422
+ msgstr ""
423
+
424
  #: includes/admin/class-ur-admin.php:121
425
  #. translators: 1: WooCommerce 2:: five stars
426
  msgid "If you like %1$s please leave us a %2$s rating. A huge thanks in advance!"
663
  msgstr ""
664
 
665
  #: includes/admin/settings/class-ur-settings-general.php:219
666
+ #: includes/functions-ur-core.php:1005
667
  msgid "Manual login after registration"
668
  msgstr ""
669
 
679
  msgstr ""
680
 
681
  #: includes/admin/settings/class-ur-settings-general.php:229
682
+ #: includes/functions-ur-core.php:1006
683
  msgid "Email confirmation to login"
684
  msgstr ""
685
 
697
  msgstr ""
698
 
699
  #: includes/admin/settings/class-ur-settings-general.php:239
700
+ #: includes/functions-ur-core.php:1008
701
  msgid "Admin approval after registration"
702
  msgstr ""
703
 
810
  msgstr ""
811
 
812
  #: includes/admin/settings/class-ur-settings-general.php:358
813
+ #: includes/functions-ur-core.php:960
814
  msgid "Form Template"
815
  msgstr ""
816
 
819
  msgstr ""
820
 
821
  #: includes/admin/settings/class-ur-settings-general.php:366
822
+ #: includes/functions-ur-core.php:967
823
  msgid "Default"
824
  msgstr ""
825
 
826
  #: includes/admin/settings/class-ur-settings-general.php:367
827
+ #: includes/functions-ur-core.php:968
828
  msgid "Bordered"
829
  msgstr ""
830
 
831
  #: includes/admin/settings/class-ur-settings-general.php:368
832
+ #: includes/functions-ur-core.php:969
833
  msgid "Flat"
834
  msgstr ""
835
 
836
  #: includes/admin/settings/class-ur-settings-general.php:369
837
+ #: includes/functions-ur-core.php:970
838
  msgid "Rounded"
839
  msgstr ""
840
 
841
  #: includes/admin/settings/class-ur-settings-general.php:370
842
+ #: includes/functions-ur-core.php:971
843
  msgid "Rounded Edge"
844
  msgstr ""
845
 
848
  msgstr ""
849
 
850
  #: includes/admin/settings/class-ur-settings-general.php:376
851
+ #: includes/admin/settings/class-ur-settings-general.php:386
852
+ #: includes/admin/settings/class-ur-settings-general.php:396
853
+ msgid "Enable"
854
+ msgstr ""
855
+
856
+ #: includes/admin/settings/class-ur-settings-general.php:379
857
  msgid "Check to enable/disable remember me."
858
  msgstr ""
859
 
861
  msgid "Enable lost password"
862
  msgstr ""
863
 
864
+ #: includes/admin/settings/class-ur-settings-general.php:389
865
  msgid "Check to enable/disable lost password."
866
  msgstr ""
867
 
869
  msgid "Enable google reCaptcha"
870
  msgstr ""
871
 
872
+ #: includes/admin/settings/class-ur-settings-general.php:399
873
  msgid "Enable %1$s %2$s reCaptcha %3$s support"
874
  msgstr ""
875
 
899
  msgstr ""
900
 
901
  #: includes/admin/settings/class-ur-settings-general.php:425
902
+ msgid "Enable Prevent Core Login"
903
+ msgstr ""
904
+
905
+ #: includes/admin/settings/class-ur-settings-general.php:428
906
  msgid "Check to disable WordPress default login or registration page."
907
  msgstr ""
908
 
909
+ #: includes/admin/settings/class-ur-settings-general.php:431
910
+ msgid ""
911
+ "Please make sure that you have created a login or my-account page which has "
912
+ "a login form before enabling this option. Learn how to create a login form "
913
+ "<a "
914
+ "href=\"https://docs.wpeverest.com/docs/user-registration/registration-form-"
915
+ "and-login-form/how-to-show-login-form/\" target=\"_blank\">here</a>."
916
+ msgstr ""
917
+
918
+ #: includes/admin/settings/class-ur-settings-general.php:435
919
+ msgid "Redirect to Login Page"
920
+ msgstr ""
921
+
922
+ #: includes/admin/settings/class-ur-settings-general.php:436
923
+ msgid "Select the login page where you wants to redirect."
924
+ msgstr ""
925
+
926
  #: includes/admin/settings/class-ur-settings-import-export.php:27
927
  msgid "Import/Export"
928
  msgstr ""
1079
 
1080
  #: includes/admin/settings/emails/class-ur-settings-admin-email.php:100
1081
  msgid ""
1082
+ "Hi Admin, <br/>\n"
1083
+ "\n"
1084
  "A new user {{username}} - {{email}} has successfully registered to your "
1085
+ "site <a href=\"{{home_url}}\">{{blog_info}}</a>. <br/>\n"
1086
+ "\n"
1087
  "Please review the user role and details at '<b>Users</b>' menu in your WP "
1088
+ "dashboard. <br/>\n"
1089
+ "\n"
1090
  "Thank You!"
1091
  msgstr ""
1092
 
1115
 
1116
  #: includes/admin/settings/emails/class-ur-settings-awaiting-admin-approval-email.php:92
1117
  msgid ""
1118
+ "Hi {{username}}, <br/>\n"
1119
+ "\n"
1120
+ "You have registered on <a href=\"{{home_url}}\">{{blog_info}}</a>. <br/>\n"
1121
+ "\n"
1122
  "Please wait until the site admin approves your registration. You will be "
1123
+ "notified after it is approved. <br/>\n"
1124
+ "\n"
1125
  "Thank You!"
1126
  msgstr ""
1127
 
1143
 
1144
  #: includes/admin/settings/emails/class-ur-settings-email-confirmation.php:86
1145
  msgid ""
1146
+ "Hi {{username}}, <br/>\n"
1147
+ "\n"
1148
+ "You have registered on <a href=\"{{home_url}}\">{{blog_info}}</a>. <br/>\n"
1149
+ "\n"
1150
  "Please click on this verification link "
1151
  "{{home_url}}/{{ur_login}}?ur_token={{email_token}} to confirm registration. "
1152
+ "<br/>\n"
1153
+ "\n"
1154
  "Thank You!"
1155
  msgstr ""
1156
 
1174
 
1175
  #: includes/admin/settings/emails/class-ur-settings-profile-details-changed-email.php:103
1176
  msgid ""
1177
+ "User has changed profile information for the following account:<br/>\n"
1178
+ "\n"
1179
+ "SiteName: {{blog_info}} <br/>\n"
1180
+ "Username: {{username}} <br/>\n"
1181
+ "\n"
1182
+ "{{all_fields}}\n"
1183
+ "<br/>\n"
1184
  "Thank You!"
1185
  msgstr ""
1186
 
1206
 
1207
  #: includes/admin/settings/emails/class-ur-settings-registration-approved-email.php:92
1208
  msgid ""
1209
+ "Hi {{username}}, <br/>\n"
1210
+ "\n"
1211
  "Your registration on <a href=\"{{home_url}}\">{{blog_info}}</a> has been "
1212
+ "approved. <br/>\n"
1213
+ "\n"
1214
  "Please visit '<b>My Account</b>' page to edit your account details and "
1215
  "create your user profile on <a href=\"{{home_url}}\">{{blog_info}}</a>. "
1216
+ "<br/>\n"
1217
+ "\n"
1218
  "Thank You!"
1219
  msgstr ""
1220
 
1240
 
1241
  #: includes/admin/settings/emails/class-ur-settings-registration-denied-email.php:92
1242
  msgid ""
1243
+ "Hi {{username}}, <br/>\n"
1244
+ "\n"
1245
+ "You have registered on <a href=\"{{home_url}}\">{{blog_info}}</a>. <br/>\n"
1246
+ "\n"
1247
  "Unfortunately your registration is denied. Sorry for the inconvenience. "
1248
+ "<br/>\n"
1249
+ "\n"
1250
  "Thank You!"
1251
  msgstr ""
1252
 
1270
 
1271
  #: includes/admin/settings/emails/class-ur-settings-registration-pending-email.php:95
1272
  msgid ""
1273
+ "Hi {{username}}, <br/>\n"
1274
+ "\n"
1275
  "Your registration on <a href=\"{{home_url}}\">{{blog_info}}</a> has been "
1276
+ "changed to pending. <br/>\n"
1277
+ "\n"
1278
+ "Sorry for the inconvenience. <br/>\n"
1279
+ "\n"
1280
+ "You will be notified after it is approved. <br/>\n"
1281
+ "\n"
1282
  "Thank You!"
1283
  msgstr ""
1284
 
1338
 
1339
  #: includes/admin/settings/emails/class-ur-settings-successfully-registered-email.php:91
1340
  msgid ""
1341
+ "Hi {{username}}, <br/>\n"
1342
+ "\n"
1343
  "You have successfully completed user registration on <a "
1344
+ "href=\"{{home_url}}\">{{blog_info}}</a>. <br/>\n"
1345
+ "\n"
1346
  "Please visit '<b>My Account</b>' page to edit your account details and "
1347
  "create your user profile on <a href=\"{{home_url}}\">{{blog_info}}</a>. "
1348
+ "<br/>\n"
1349
+ "\n"
1350
  "Thank You!"
1351
  msgstr ""
1352
 
1420
  msgid "Form Setting"
1421
  msgstr ""
1422
 
1423
+ #: includes/admin/views/html-admin-page-forms.php:78
1424
  msgid "Default User Fields"
1425
  msgstr ""
1426
 
1427
+ #: includes/admin/views/html-admin-page-forms.php:81
1428
  msgid "Extra Fields"
1429
  msgstr ""
1430
 
1431
+ #: includes/admin/views/html-admin-page-forms.php:128
1432
  msgid "Get Support"
1433
  msgstr ""
1434
 
1435
+ #: includes/admin/views/html-admin-page-forms.php:129
1436
  msgid "Create Login Form"
1437
  msgstr ""
1438
 
1439
+ #: includes/admin/views/html-admin-page-forms.php:130
1440
  msgid "Documentation"
1441
  msgstr ""
1442
 
1651
  #: includes/class-ur-form-handler.php:346
1652
  #: includes/class-ur-form-handler.php:350
1653
  #: includes/class-ur-form-handler.php:359
1654
+ #: includes/class-ur-user-approval.php:185
1655
+ #: includes/class-ur-user-approval.php:190
1656
+ #: includes/class-ur-user-approval.php:206
1657
+ #: includes/class-ur-user-approval.php:220 includes/functions-ur-account.php:53
1658
  #: includes/functions-ur-account.php:56
1659
  msgid "ERROR:"
1660
  msgstr ""
1661
 
1662
  #: includes/class-ur-email-confirmation.php:370
1663
+ #: includes/class-ur-user-approval.php:206
1664
  msgid ""
1665
  "Your account is still pending approval. Verify your email by clicking on "
1666
  "the link sent to your email. %s"
1667
  msgstr ""
1668
 
1669
  #: includes/class-ur-email-confirmation.php:370
1670
+ #: includes/class-ur-user-approval.php:206
1671
  msgid "Resend Verification Link"
1672
  msgstr ""
1673
 
1825
  "and symbols like ! \" ? $ % ^ & )."
1826
  msgstr ""
1827
 
1828
+ #: includes/class-ur-install.php:368
1829
  msgid "Default form"
1830
  msgstr ""
1831
 
1832
+ #: includes/class-ur-install.php:638
1833
  msgid "View User Registration settings"
1834
  msgstr ""
1835
 
1836
+ #: includes/class-ur-install.php:654
1837
  msgid "View User Registration documentation"
1838
  msgstr ""
1839
 
1840
+ #: includes/class-ur-install.php:654
1841
  msgid "Docs"
1842
  msgstr ""
1843
 
1844
+ #: includes/class-ur-install.php:655
1845
  msgid "Visit free customer support"
1846
  msgstr ""
1847
 
1848
+ #: includes/class-ur-install.php:655
1849
  msgid "Free support"
1850
  msgstr ""
1851
 
2176
  msgid "Profile Details"
2177
  msgstr ""
2178
 
2179
+ #: includes/class-ur-user-approval.php:185
2180
  msgid "Your account is still pending approval."
2181
  msgstr ""
2182
 
2183
+ #: includes/class-ur-user-approval.php:190
2184
  msgid "Your account has been denied."
2185
  msgstr ""
2186
 
2187
+ #: includes/class-ur-user-approval.php:220
2188
  msgid ""
2189
  "Your account is still pending payment. Process the payment by clicking on "
2190
  "this: %s"
2191
  msgstr ""
2192
 
2193
+ #: includes/class-ur-user-approval.php:220
2194
  msgid "link"
2195
  msgstr ""
2196
 
2197
+ #: includes/class-ur-user-approval.php:307
2198
  msgid ""
2199
  "Your account is still awaiting admin approval. Reset Password is not "
2200
  "allowed."
3572
  msgstr ""
3573
 
3574
  #: includes/functions-ur-core.php:927
3575
+ msgid "Form Submit Button Custom Class"
3576
  msgstr ""
3577
 
3578
  #: includes/functions-ur-core.php:938
3579
+ msgid "Form Submit Button Label"
3580
+ msgstr ""
3581
+
3582
+ #: includes/functions-ur-core.php:949
3583
  msgid "Enable %1$s %2$s reCaptcha %3$s Support"
3584
  msgstr ""
3585
 
3586
+ #: includes/functions-ur-core.php:978
3587
  msgid "Custom CSS class"
3588
  msgstr ""
3589
 
3590
+ #: includes/functions-ur-core.php:1007
3591
  msgid "Auto login after registration"
3592
  msgstr ""
3593
 
3594
+ #: includes/functions-ur-core.php:1197
3595
  msgid ""
3596
  "The class <code>%s</code> provided by user_registration_logging_class "
3597
  "filter must implement <code>UR_Logger_Interface</code>."
3598
  msgstr ""
3599
 
3600
+ #: includes/functions-ur-core.php:1298
3601
  msgid "Disable emails"
3602
  msgstr ""
3603
 
3604
+ #: includes/functions-ur-core.php:1299
3605
  msgid "Disable all emails sent after registration."
3606
  msgstr ""
3607
 
3616
  msgid "required"
3617
  msgstr ""
3618
 
3619
+ #: includes/functions-ur-template.php:400
3620
  msgid "Choose an option"
3621
  msgstr ""
3622
 
3646
  msgid "No profile details found."
3647
  msgstr ""
3648
 
3649
+ #: includes/shortcodes/class-ur-shortcode-my-account.php:293
3650
  msgid "Enter a username or email address."
3651
  msgstr ""
3652
 
3653
+ #: includes/shortcodes/class-ur-shortcode-my-account.php:314
3654
+ #: includes/shortcodes/class-ur-shortcode-my-account.php:319
3655
  msgid "Invalid username or email."
3656
  msgstr ""
3657
 
3658
+ #: includes/shortcodes/class-ur-shortcode-my-account.php:329
3659
  msgid "Password reset is not allowed for this user"
3660
  msgstr ""
3661
 
3662
+ #: includes/shortcodes/class-ur-shortcode-my-account.php:342
3663
  msgid "The email could not be sent. Contact your site administrator. "
3664
  msgstr ""
3665
 
3720
  msgid "Current password"
3721
  msgstr ""
3722
 
3723
+ #: templates/myaccount/form-edit-password.php:51
3724
  #: templates/myaccount/form-reset-password.php:32
3725
  msgid "New password"
3726
  msgstr ""
3727
 
3728
+ #: templates/myaccount/form-edit-password.php:62
3729
  msgid "Confirm new password"
3730
  msgstr ""
3731
 
3732
+ #: templates/myaccount/form-edit-password.php:82
3733
+ #: templates/myaccount/form-edit-profile.php:171
3734
  msgid "Save changes"
3735
  msgstr ""
3736
 
4006
  msgid "Unverify"
4007
  msgstr ""
4008
 
4009
+ #: includes/class-ur-install.php:307
4010
  msgctxt "Page slug"
4011
  msgid "my-account"
4012
  msgstr ""
4013
 
4014
+ #: includes/class-ur-install.php:316
4015
  msgctxt "Page slug"
4016
  msgid "registration"
4017
  msgstr ""
4018
 
4019
+ #: includes/class-ur-install.php:308
4020
  msgctxt "Page title"
4021
  msgid "My Account"
4022
  msgstr ""
4023
 
4024
+ #: includes/class-ur-install.php:317
4025
  msgctxt "Page title"
4026
  msgid "Registration"
4027
  msgstr ""
readme.txt CHANGED
@@ -1,185 +1,198 @@
1
- === User Registration - Custom Registration Form, Login And User Profile For WordPress ===
2
- Contributors: WPEverest
3
- Tags: user registration, registration, user profile, registration form, login form,
4
- Requires at least: 4.0
5
- Requires PHP: 5.3
6
- Tested up to: 5.3.2
7
- Stable tag: 1.8.1
8
- License: GPLv3
9
- License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
-
11
- Drag and drop user registration form and login form builder
12
-
13
- == Description ==
14
-
15
- User Registration plugin provides you with an easy way to create frontend user registration form and login form. Drag and Drop fields make ordering and creating forms extremely easy. The plugin is lightweight, extendible, and can be used to create any type of registration form.
16
-
17
- Beside registration form, the plugin also supports beautiful frontend profile account page for profile edit, password change, Log out and more. Users can visit their account page after registration and view the details they have filled and can make changes if necessary.
18
-
19
- The registration forms are 100% mobile responsive and optimized to display on any devices.
20
-
21
-
22
- View [All features](https://wpeverest.com/wordpress-plugins/user-registration/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro)
23
-
24
- View [Demo](http://demo.wpeverest.com/user-registration/)
25
-
26
- Get [Free Support](https://wpeverest.com/support-forum/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro)
27
-
28
- Check [Documentation](http://docs.wpeverest.com/docs/user-registration/)
29
-
30
- = User Registration Plugin in action: =
31
-
32
- [youtube https://www.youtube.com/watch?v=zNhNvj8jPhM]
33
-
34
- ### Features And Options:
35
- * Simple, Clean and Beautiful WordPress Registration Forms
36
- * Drag and Drop Fields
37
- * Unlimited Registration Forms
38
- * Inbuilt Login Form
39
- * Frontend Profile account page
40
- * Multiple Column Design
41
- * Multiple Form template designs
42
- * Shortcode Support
43
- * Google reCaptcha Support (v2 and v3)
44
- * Email notifications
45
- * Email Customizers
46
- * Form Duplicate Option
47
- * Admin approval option for registration
48
- * Auto login option
49
- * Email confirmation to register
50
- * Enable/Disable Strong Password
51
- * Default User Role Selection Option
52
- * Support for profile image upload
53
- * Form Preview Option on backend
54
- * User data export in CSV
55
- * Import/Export registration form
56
- * Well Documented
57
- * Translation ready
58
-
59
- ### Premium Addons
60
-
61
- User Registration can be easily extended with some premium addons.
62
-
63
- * [Style Customizer](https://wpeverest.com/wordpress-plugins/user-registration/style-customizer/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows users to customize design elements like color, font size, font color, border, margin, padding and more for registration and login form.
64
-
65
- * [Multi Step Form](https://wpeverest.com/wordpress-plugins/user-registration/multi-part/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows users to break lengthy registration form into multiple pages.
66
-
67
- * [Social Connect](https://wpeverest.com/wordpress-plugins/user-registration/social-connect/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows users to register/login to your site with social platforms like Facebook, Twitter, Google+ or LinkedIn.
68
-
69
- * [Content Restriction](https://wpeverest.com/wordpress-plugins/user-registration/content-restriction/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows you to restrict full or partial content from page, post to only logged in users or logged in users with specific roles. Check our article for [content restriction](https://wpeverest.com/blog/restrict-content-in-wordpress/)
70
-
71
- * [File Upload](https://wpeverest.com/wordpress-plugins/user-registration/file-upload/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows you to add upload field in registration form so that users can upload documents, images and more.
72
-
73
- * [WooCommerce Integration](https://wpeverest.com/wordpress-plugins/user-registration/woocommerce/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Integrates and syncs WooCommerce related information to user registration account page like orders, customer details, billings plus allows you to create extended registration page with woocommerce fields. Check [detail guide](https://wpeverest.com/blog/woocommerce-registration-form/)
74
-
75
- * [MailChimp](https://wpeverest.com/wordpress-plugins/user-registration/mailchimp/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Lets you sync your registered users with MailChimp list. Automatically add users to your selected MailChimp list upon registration.
76
-
77
- * [Advanced Fields](https://wpeverest.com/wordpress-plugins/user-registration/advanced-fields/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Lets you add advanced extra fields such as WYSIWYG, Time picker, Phone Number, HTML, Section title in form.
78
-
79
- * [Conditional Logic](https://wpeverest.com/wordpress-plugins/user-registration/conditional-logic/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Lets you apply conditions to your fields. Conditional Logic allows you to show or hide certain fields based upon other field’s value.
80
-
81
- * [Profile Connect](https://wpeverest.com/wordpress-plugins/user-registration/profile-connect/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows admin to connect users registered via other forms to User Registration selected form.
82
-
83
- * [PDF Form Submission](https://wpeverest.com/wordpress-plugins/user-registration/pdf-form-submission/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Lets you export user's data in PDF, PDF file as email attachment on form submission.
84
-
85
- * [Payments (PayPal)](https://wpeverest.com/wordpress-plugins/user-registration/payments/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Integrates PayPal into your forms for registration fee payments, donations, and more.
86
-
87
- * [Geolocation](https://wpeverest.com/wordpress-plugins/user-registration/geolocation/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Collects and stores users geolocation data along with their form filled information.
88
-
89
- * [LearnDash](https://wpeverest.com/wordpress-plugins/user-registration/learndash/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows users to view their registered learndash courses, course progresses, expiry date on my account section and more.
90
-
91
- * [Invite Codes](https://wpeverest.com/wordpress-plugins/user-registration/invite-codes/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows you to restrict the registration on your site to only users with invite codes. Check our [invitation code guide](https://wpeverest.com/blog/user-registration-invitation-code/)
92
-
93
- * [Field Visibility](https://wpeverest.com/wordpress-plugins/user-registration/field-visibility/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows you to hide registration fields on the registration form but show it in the account profile page and vice versa. Also, make selective fields read-only on profile page, registration form or both.
94
-
95
- == Installation ==
96
-
97
- 1. Install the plugin either via the WordPress.org plugin directory, or by uploading the files to your server (in the /wp-content/plugins/ directory).
98
- 2. Activate the User Registration plugin through the 'Plugins' menu in WordPress.
99
- 3. Go to User Registration->Add New and start creating a registration form.
100
-
101
- == Frequently Asked Questions ==
102
-
103
- = Do I need to have coding skills to use the User Registration Plugin? =
104
-
105
- No, you don't need any coding skills. One can simply drag and drop fields, arrange them and use built-in shortcodes to display the form.
106
-
107
- = Does the plugin work with any WordPress themes?
108
-
109
- Yes, the plugin is designed to work with any themes that have been coded following WordPress guidelines.
110
-
111
- = How can admin access registered users data?
112
-
113
- All the users registered via the registration forms and their data can be accessed from the Users menu in the WordPress Dashboard.
114
-
115
- = Can a user edit their profile informaton after registration?
116
-
117
- Yes, a registered user can access their profile details via the account page. One can create an [account profile page](https://docs.wpeverest.com/docs/user-registration/registration-form-and-login-form/how-to-show-account-profile/) for their user using the shortcode available.
118
-
119
- = Does the plugin come with a login form as well?
120
-
121
- Yes, the plugin has a shortcode for the login form.
122
-
123
- == Screenshots ==
124
-
125
- 1. Form Fields
126
- 2. Form Fields - Fullscreen Mode
127
- 3. Field Options
128
- 4. Form Settings
129
- 5. General Options
130
- 6. Login Options
131
- 7. Frontend Messages
132
- 8. Google reCaptcha
133
- 9. General Email Settings
134
- 10. Export Users
135
- 11. Import/Export Forms
136
- 12. Gutenberg Block
137
- 13. Registration Form
138
- 14. Login Form
139
- 15. User Account Page - Horizontal Layout
140
- 16. User Account Page - Vertical Layout
141
-
142
- == Changelog ==
143
-
144
- = 1.8.1 - 13/02/2020
145
- * Fix - Fatal error while installing the plugin.
146
- * Fix - SweetAlert issue.
147
-
148
- = 1.8.0 - 12/02/2020
149
- * Feature - Login option introduced for individual forms.
150
- * Feature - Allows selective country selection in country field.
151
- * Enhancement - Date field
152
- * Enhancement - Conditional logic in edit profile.
153
- * Enhancement - Real time password matching.
154
- * Enhancement - Real time email matching.
155
- * Enhancement - Modal popup with documentation links on form creation.
156
- * Enhancement - Form settings dropdown changed to checkbox.
157
- * Enhancement - Premium fields showcase.
158
- * Tweak - Toggle feature added for field option's setting.
159
- * Tweak - SweetAlert2 added in frontend.
160
- * Tweak - CDN styling swapped with local file.
161
- * Fix - Exclude unwanted fields in edit profile.
162
- * Fix - Broken reset password link.
163
-
164
- = 1.7.6 - 30/12/2019 =
165
- * Enhancement - Registered user source.
166
- * Tweak - Remove inline css from recaptcha.
167
- * Fix - Email attachment hook mismatch arguments.
168
- * Fix - wp_authenticate_user filter mismatch arguments.
169
- * Fix - Hide/show password enabled in edit profile.
170
-
171
- = 1.7.5 - 13/12/2019 =
172
- * Enhancement - Redirect URL after logout.
173
- * Enhancement - Password field eye icon.
174
- * Fix - Escaping attribute in checkbox field.
175
- * Fix - Remove admin notice from form builder.
176
- * Fix - Case sensitive in confirm password.
177
- * Fix - Invite code field name made non editable.
178
-
179
- = 1.7.4 - 21/11/2019 =
180
- * Feature - WPML Plugin Compatibility.
181
- * Tweak - Country Field Default Value.
182
- * Tweak - Icons alignment to support WordPress v5.3.
183
- * Fix - HTML field Form Duplication.
184
-
185
- [See changelog for all versions](https://raw.githubusercontent.com/wpeverest/user-registration/master/CHANGELOG.txt).
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === User Registration - Custom Registration Form, Login And User Profile For WordPress ===
2
+ Contributors: WPEverest
3
+ Tags: user registration, registration, user profile, registration form, login form,
4
+ Requires at least: 4.0
5
+ Requires PHP: 5.3
6
+ Tested up to: 5.3.2
7
+ Stable tag: 1.8.2
8
+ License: GPLv3
9
+ License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
+
11
+ Drag and drop user registration form and login form builder
12
+
13
+ == Description ==
14
+
15
+ User Registration plugin provides you with an easy way to create frontend user registration form and login form. Drag and Drop fields make ordering and creating forms extremely easy. The plugin is lightweight, extendible, and can be used to create any type of registration form.
16
+
17
+ Beside registration form, the plugin also supports beautiful frontend profile account page for profile edit, password change, Log out and more. Users can visit their account page after registration and view the details they have filled and can make changes if necessary.
18
+
19
+ The registration forms are 100% mobile responsive and optimized to display on any devices.
20
+
21
+
22
+ View [All features](https://wpeverest.com/wordpress-plugins/user-registration/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro)
23
+
24
+ View [Demo](http://demo.wpeverest.com/user-registration/)
25
+
26
+ Get [Free Support](https://wpeverest.com/support-forum/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro)
27
+
28
+ Check [Documentation](http://docs.wpeverest.com/docs/user-registration/)
29
+
30
+ = User Registration Plugin in action: =
31
+
32
+ [youtube https://www.youtube.com/watch?v=zNhNvj8jPhM]
33
+
34
+ ### Features And Options:
35
+ * Simple, Clean and Beautiful WordPress Registration Forms
36
+ * Drag and Drop Fields
37
+ * Unlimited Registration Forms
38
+ * Inbuilt Login Form
39
+ * Frontend Profile account page
40
+ * Multiple Column Design
41
+ * Multiple Form template designs
42
+ * Shortcode Support
43
+ * Google reCaptcha Support (v2 and v3)
44
+ * Email notifications
45
+ * Email Customizers
46
+ * Form Duplicate Option
47
+ * Admin approval option for registration
48
+ * Auto login option
49
+ * Email confirmation to register
50
+ * Enable/Disable Strong Password
51
+ * Default User Role Selection Option
52
+ * Support for profile image upload
53
+ * Form Preview Option on backend
54
+ * User data export in CSV
55
+ * Import/Export registration form
56
+ * Well Documented
57
+ * Translation ready
58
+
59
+ ### Premium Addons
60
+
61
+ User Registration can be easily extended with some premium addons.
62
+
63
+ * [Style Customizer](https://wpeverest.com/wordpress-plugins/user-registration/style-customizer/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows users to customize design elements like color, font size, font color, border, margin, padding and more for registration and login form.
64
+
65
+ * [Multi Step Form](https://wpeverest.com/wordpress-plugins/user-registration/multi-part/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows users to break lengthy registration form into multiple pages.
66
+
67
+ * [Social Connect](https://wpeverest.com/wordpress-plugins/user-registration/social-connect/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows users to register/login to your site with social platforms like Facebook, Twitter, Google+ or LinkedIn.
68
+
69
+ * [Content Restriction](https://wpeverest.com/wordpress-plugins/user-registration/content-restriction/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows you to restrict full or partial content from page, post to only logged in users or logged in users with specific roles. Check our article for [content restriction](https://wpeverest.com/blog/restrict-content-in-wordpress/)
70
+
71
+ * [File Upload](https://wpeverest.com/wordpress-plugins/user-registration/file-upload/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows you to add upload field in registration form so that users can upload documents, images and more.
72
+
73
+ * [WooCommerce Integration](https://wpeverest.com/wordpress-plugins/user-registration/woocommerce/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Integrates and syncs WooCommerce related information to user registration account page like orders, customer details, billings plus allows you to create extended registration page with woocommerce fields. Check [detail guide](https://wpeverest.com/blog/woocommerce-registration-form/)
74
+
75
+ * [MailChimp](https://wpeverest.com/wordpress-plugins/user-registration/mailchimp/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Lets you sync your registered users with MailChimp list. Automatically add users to your selected MailChimp list upon registration.
76
+
77
+ * [Advanced Fields](https://wpeverest.com/wordpress-plugins/user-registration/advanced-fields/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Lets you add advanced extra fields such as WYSIWYG, Time picker, Phone Number, HTML, Section title in form.
78
+
79
+ * [Conditional Logic](https://wpeverest.com/wordpress-plugins/user-registration/conditional-logic/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Lets you apply conditions to your fields. Conditional Logic allows you to show or hide certain fields based upon other field’s value.
80
+
81
+ * [Profile Connect](https://wpeverest.com/wordpress-plugins/user-registration/profile-connect/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows admin to connect users registered via other forms to User Registration selected form.
82
+
83
+ * [PDF Form Submission](https://wpeverest.com/wordpress-plugins/user-registration/pdf-form-submission/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Lets you export user's data in PDF, PDF file as email attachment on form submission.
84
+
85
+ * [Payments (PayPal)](https://wpeverest.com/wordpress-plugins/user-registration/payments/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Integrates PayPal into your forms for registration fee payments, donations, and more.
86
+
87
+ * [Geolocation](https://wpeverest.com/wordpress-plugins/user-registration/geolocation/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Collects and stores users geolocation data along with their form filled information.
88
+
89
+ * [LearnDash](https://wpeverest.com/wordpress-plugins/user-registration/learndash/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows users to view their registered learndash courses, course progresses, expiry date on my account section and more.
90
+
91
+ * [Invite Codes](https://wpeverest.com/wordpress-plugins/user-registration/invite-codes/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows you to restrict the registration on your site to only users with invite codes. Check our [invitation code guide](https://wpeverest.com/blog/user-registration-invitation-code/)
92
+
93
+ * [Field Visibility](https://wpeverest.com/wordpress-plugins/user-registration/field-visibility/?utm_source=wporg&utm_medium=link&utm_campaign=ur-upgrade-to-pro) - Allows you to hide registration fields on the registration form but show it in the account profile page and vice versa. Also, make selective fields read-only on profile page, registration form or both.
94
+
95
+ == Installation ==
96
+
97
+ 1. Install the plugin either via the WordPress.org plugin directory, or by uploading the files to your server (in the /wp-content/plugins/ directory).
98
+ 2. Activate the User Registration plugin through the 'Plugins' menu in WordPress.
99
+ 3. Go to User Registration->Add New and start creating a registration form.
100
+
101
+ == Frequently Asked Questions ==
102
+
103
+ = Do I need to have coding skills to use the User Registration Plugin? =
104
+
105
+ No, you don't need any coding skills. One can simply drag and drop fields, arrange them and use built-in shortcodes to display the form.
106
+
107
+ = Does the plugin work with any WordPress themes?
108
+
109
+ Yes, the plugin is designed to work with any themes that have been coded following WordPress guidelines.
110
+
111
+ = How can admin access registered users data?
112
+
113
+ All the users registered via the registration forms and their data can be accessed from the Users menu in the WordPress Dashboard.
114
+
115
+ = Can a user edit their profile informaton after registration?
116
+
117
+ Yes, a registered user can access their profile details via the account page. One can create an [account profile page](https://docs.wpeverest.com/docs/user-registration/registration-form-and-login-form/how-to-show-account-profile/) for their user using the shortcode available.
118
+
119
+ = Does the plugin come with a login form as well?
120
+
121
+ Yes, the plugin has a shortcode for the login form.
122
+
123
+ == Screenshots ==
124
+
125
+ 1. Form Fields
126
+ 2. Form Fields - Fullscreen Mode
127
+ 3. Field Options
128
+ 4. Form Settings
129
+ 5. General Options
130
+ 6. Login Options
131
+ 7. Frontend Messages
132
+ 8. Google reCaptcha
133
+ 9. General Email Settings
134
+ 10. Export Users
135
+ 11. Import/Export Forms
136
+ 12. Gutenberg Block
137
+ 13. Registration Form
138
+ 14. Login Form
139
+ 15. User Account Page - Horizontal Layout
140
+ 16. User Account Page - Vertical Layout
141
+
142
+ == Changelog ==
143
+
144
+ = 1.8.2 - 18/03/2020
145
+ * Feature - Search Field introduced in form builder.
146
+ * Enhancement - Prevent Core Login enabled with redirect login page.
147
+ * Enhancement - WPML on multiple choice options.
148
+ * Refactor - Remove unnecessary CSS codes.
149
+ * Tweak - Custom class in submit button.
150
+ * Tweak - Password strength meter and password visibility enabled in change password.
151
+ * Fix - User Approval status in Users Section.
152
+ * Fix - Toggle option in field option's setting.
153
+ * Fix - pre_get_users hook placement.
154
+ * Fix - Password reset link validation.
155
+ * Fix - Incompatibility with password fields of other registration plugins.
156
+
157
+ = 1.8.1 - 13/02/2020
158
+ * Fix - Fatal error while installing the plugin.
159
+ * Fix - SweetAlert issue.
160
+
161
+ = 1.8.0 - 12/02/2020
162
+ * Feature - Login option introduced for individual forms.
163
+ * Feature - Allows selective country selection in country field.
164
+ * Enhancement - Date field
165
+ * Enhancement - Conditional logic in edit profile.
166
+ * Enhancement - Real time password matching.
167
+ * Enhancement - Real time email matching.
168
+ * Enhancement - Modal popup with documentation links on form creation.
169
+ * Enhancement - Form settings dropdown changed to checkbox.
170
+ * Enhancement - Premium fields showcase.
171
+ * Tweak - Toggle feature added for field option's setting.
172
+ * Tweak - SweetAlert2 added in frontend.
173
+ * Tweak - CDN styling swapped with local file.
174
+ * Fix - Exclude unwanted fields in edit profile.
175
+ * Fix - Broken reset password link.
176
+
177
+ = 1.7.6 - 30/12/2019 =
178
+ * Enhancement - Registered user source.
179
+ * Tweak - Remove inline css from recaptcha.
180
+ * Fix - Email attachment hook mismatch arguments.
181
+ * Fix - wp_authenticate_user filter mismatch arguments.
182
+ * Fix - Hide/show password enabled in edit profile.
183
+
184
+ = 1.7.5 - 13/12/2019 =
185
+ * Enhancement - Redirect URL after logout.
186
+ * Enhancement - Password field eye icon.
187
+ * Fix - Escaping attribute in checkbox field.
188
+ * Fix - Remove admin notice from form builder.
189
+ * Fix - Case sensitive in confirm password.
190
+ * Fix - Invite code field name made non editable.
191
+
192
+ = 1.7.4 - 21/11/2019 =
193
+ * Feature - WPML Plugin Compatibility.
194
+ * Tweak - Country Field Default Value.
195
+ * Tweak - Icons alignment to support WordPress v5.3.
196
+ * Fix - HTML field Form Duplication.
197
+
198
+ [See changelog for all versions](https://raw.githubusercontent.com/wpeverest/user-registration/master/CHANGELOG.txt).
templates/form-registration.php CHANGED
@@ -72,14 +72,14 @@ do_action( 'user_registration_before_registration_form', $form_id );
72
 
73
  foreach ( $data as $grid_key => $grid_data ) {
74
  ?>
75
- <div class="ur-form-grid ur-grid-<?php echo( $grid_key + 1 ); ?>"
76
  style="width:<?php echo $width; ?>%">
77
  <?php
78
  foreach ( $grid_data as $grid_data_key => $single_item ) {
79
 
80
  if ( isset( $single_item->field_key ) ) {
81
  ?>
82
- <div class="ur-field-item field-<?php echo $single_item->field_key; ?>">
83
  <?php
84
  $frontend->user_registration_frontend_form( $single_item, $form_id );
85
  $is_field_exists = true;
@@ -108,14 +108,15 @@ do_action( 'user_registration_before_registration_form', $form_id );
108
 
109
  $btn_container_class = apply_filters( 'user_registration_form_btn_container_class', array(), $form_id );
110
  ?>
111
- <div class="ur-button-container <?php echo esc_html( implode( ' ', $btn_container_class ) ); ?>" >
112
  <?php
113
  do_action( 'user_registration_before_form_buttons', $form_id );
114
 
115
  $submit_btn_class = apply_filters( 'user_registration_form_submit_btn_class', array(), $form_id );
 
116
  ?>
117
 
118
- <button type="submit" class="btn button ur-submit-button <?php echo esc_html( implode( ' ', $submit_btn_class ) ); ?>">
119
  <span></span>
120
  <?php
121
  $submit = ur_get_form_setting_by_key( $form_id, 'user_registration_form_setting_form_submit_label' );
72
 
73
  foreach ( $data as $grid_key => $grid_data ) {
74
  ?>
75
+ <div class="ur-form-grid ur-grid-<?php echo esc_attr( $grid_key + 1 ); ?>"
76
  style="width:<?php echo $width; ?>%">
77
  <?php
78
  foreach ( $grid_data as $grid_data_key => $single_item ) {
79
 
80
  if ( isset( $single_item->field_key ) ) {
81
  ?>
82
+ <div class="ur-field-item field-<?php echo esc_attr( $single_item->field_key ); ?>">
83
  <?php
84
  $frontend->user_registration_frontend_form( $single_item, $form_id );
85
  $is_field_exists = true;
108
 
109
  $btn_container_class = apply_filters( 'user_registration_form_btn_container_class', array(), $form_id );
110
  ?>
111
+ <div class="ur-button-container <?php echo esc_attr( implode( ' ', $btn_container_class ) ); ?>" >
112
  <?php
113
  do_action( 'user_registration_before_form_buttons', $form_id );
114
 
115
  $submit_btn_class = apply_filters( 'user_registration_form_submit_btn_class', array(), $form_id );
116
+ $submit_btn_class = array_merge( $submit_btn_class, (array) ur_get_form_setting_by_key( $form_id, 'user_registration_form_setting_form_submit_class' ) );
117
  ?>
118
 
119
+ <button type="submit" class="btn button ur-submit-button <?php echo esc_attr( implode( ' ', $submit_btn_class ) ); ?>">
120
  <span></span>
121
  <?php
122
  $submit = ur_get_form_setting_by_key( $form_id, 'user_registration_form_setting_form_submit_label' );
templates/myaccount/form-edit-password.php CHANGED
@@ -35,18 +35,39 @@ do_action( 'user_registration_before_change_password_form' );
35
  <legend><?php _e( 'Change Password', 'user-registration' ); ?></legend>
36
 
37
  <?php if ( apply_filters( 'user_registration_change_password_current_password_display', true ) ) { ?>
38
- <p class="user-registration-form-row user-registration-form-row--wide form-row form-row-wide">
39
  <label for="password_current"><?php _e( 'Current password', 'user-registration' ); ?></label>
 
40
  <input type="password" class="user-registration-Input user-registration-Input--password input-text" name="password_current" id="password_current" />
 
 
 
 
 
 
41
  </p>
42
  <?php } ?>
43
- <p class="user-registration-form-row user-registration-form-row--wide form-row form-row-wide">
44
  <label for="password_1"><?php _e( 'New password', 'user-registration' ); ?></label>
 
45
  <input type="password" class="user-registration-Input user-registration-Input--password input-text" name="password_1" id="password_1" />
 
 
 
 
 
 
46
  </p>
47
- <p class="user-registration-form-row user-registration-form-row--wide form-row form-row-wide">
48
  <label for="password_2"><?php _e( 'Confirm new password', 'user-registration' ); ?></label>
 
49
  <input type="password" class="user-registration-Input user-registration-Input--password input-text" name="password_2" id="password_2" />
 
 
 
 
 
 
50
  </p>
51
  </fieldset>
52
  <div class="clear"></div>
35
  <legend><?php _e( 'Change Password', 'user-registration' ); ?></legend>
36
 
37
  <?php if ( apply_filters( 'user_registration_change_password_current_password_display', true ) ) { ?>
38
+ <p class="user-registration-form-row user-registration-form-row--wide form-row form-row-wide hide_show_password">
39
  <label for="password_current"><?php _e( 'Current password', 'user-registration' ); ?></label>
40
+ <span class="password-input-group">
41
  <input type="password" class="user-registration-Input user-registration-Input--password input-text" name="password_current" id="password_current" />
42
+ <?php
43
+ if ( 'yes' === get_option( 'user_registration_login_option_hide_show_password', 'no' ) ) {
44
+ echo '<a href="javaScript:void(0)" class="password_preview dashicons dashicons-hidden" title=" Show password "></a>';
45
+ }
46
+ ?>
47
+ </span>
48
  </p>
49
  <?php } ?>
50
+ <p class="user-registration-form-row user-registration-form-row--wide form-row form-row-wide hide_show_password">
51
  <label for="password_1"><?php _e( 'New password', 'user-registration' ); ?></label>
52
+ <span class="password-input-group">
53
  <input type="password" class="user-registration-Input user-registration-Input--password input-text" name="password_1" id="password_1" />
54
+ <?php
55
+ if ( 'yes' === get_option( 'user_registration_login_option_hide_show_password', 'no' ) ) {
56
+ echo '<a href="javaScript:void(0)" class="password_preview dashicons dashicons-hidden" title=" Show password "></a>';
57
+ }
58
+ ?>
59
+ </span>
60
  </p>
61
+ <p class="user-registration-form-row user-registration-form-row--wide form-row form-row-wide hide_show_password">
62
  <label for="password_2"><?php _e( 'Confirm new password', 'user-registration' ); ?></label>
63
+ <span class="password-input-group">
64
  <input type="password" class="user-registration-Input user-registration-Input--password input-text" name="password_2" id="password_2" />
65
+ <?php
66
+ if ( 'yes' === get_option( 'user_registration_login_option_hide_show_password', 'no' ) ) {
67
+ echo '<a href="javaScript:void(0)" class="password_preview dashicons dashicons-hidden" title=" Show password "></a>';
68
+ }
69
+ ?>
70
+ </span>
71
  </p>
72
  </fieldset>
73
  <div class="clear"></div>
templates/myaccount/form-edit-profile.php CHANGED
@@ -162,10 +162,13 @@ do_action( 'user_registration_before_edit_profile_form' ); ?>
162
  <?php } ?>
163
 
164
  </div>
165
- <?php do_action( 'user_registration_edit_profile_form' ); ?>
 
 
 
166
  <p>
167
  <?php wp_nonce_field( 'save_profile_details' ); ?>
168
- <input type="submit" class="user-registration-Button button" name="save_account_details" value="<?php esc_attr_e( 'Save changes', 'user-registration' ); ?>" />
169
  <input type="hidden" name="action" value="save_profile_details" />
170
  </p>
171
  </div>
162
  <?php } ?>
163
 
164
  </div>
165
+ <?php
166
+ do_action( 'user_registration_edit_profile_form' );
167
+ $submit_btn_class = apply_filters( 'user_registration_form_update_btn_class', array() );
168
+ ?>
169
  <p>
170
  <?php wp_nonce_field( 'save_profile_details' ); ?>
171
+ <input type="submit" class="user-registration-Button button <?php echo esc_attr( implode( ' ', $submit_btn_class) ); ?>" name="save_account_details" value="<?php esc_attr_e( 'Save changes', 'user-registration' ); ?>" />
172
  <input type="hidden" name="action" value="save_profile_details" />
173
  </p>
174
  </div>
user-registration.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: User Registration
4
  * Plugin URI: https://wpeverest.com/plugins/user-registration
5
  * Description: Drag and Drop user registration form and login form builder.
6
- * Version: 1.8.1
7
  * Author: WPEverest
8
  * Author URI: https://wpeverest.com
9
  * Text Domain: user-registration
@@ -31,7 +31,7 @@ if ( ! class_exists( 'UserRegistration' ) ) :
31
  *
32
  * @var string
33
  */
34
- public $version = '1.8.1';
35
 
36
  /**
37
  * Session instance.
3
  * Plugin Name: User Registration
4
  * Plugin URI: https://wpeverest.com/plugins/user-registration
5
  * Description: Drag and Drop user registration form and login form builder.
6
+ * Version: 1.8.2
7
  * Author: WPEverest
8
  * Author URI: https://wpeverest.com
9
  * Text Domain: user-registration
31
  *
32
  * @var string
33
  */
34
+ public $version = '1.8.2';
35
 
36
  /**
37
  * Session instance.